xref: /aoo4110/main/sw/source/ui/vba/vbawindow.hxx (revision b1cdbd2c)
1 /**************************************************************
2  *
3  * Licensed to the Apache Software Foundation (ASF) under one
4  * or more contributor license agreements.  See the NOTICE file
5  * distributed with this work for additional information
6  * regarding copyright ownership.  The ASF licenses this file
7  * to you under the Apache License, Version 2.0 (the
8  * "License"); you may not use this file except in compliance
9  * with the License.  You may obtain a copy of the License at
10  *
11  *   http://www.apache.org/licenses/LICENSE-2.0
12  *
13  * Unless required by applicable law or agreed to in writing,
14  * software distributed under the License is distributed on an
15  * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
16  * KIND, either express or implied.  See the License for the
17  * specific language governing permissions and limitations
18  * under the License.
19  *
20  *************************************************************/
21 
22 
23 #ifndef SW_VBA_WINDOW_HXX
24 #define SW_VBA_WINDOW_HXX
25 #include <cppuhelper/implbase1.hxx>
26 #include <ooo/vba/word/XWindow.hpp>
27 #include <com/sun/star/uno/XComponentContext.hpp>
28 
29 #include <vbahelper/vbahelperinterface.hxx>
30 #include <vbahelper/vbawindowbase.hxx>
31 
32 typedef cppu::ImplInheritanceHelper1< VbaWindowBase, ov::word::XWindow > WindowImpl_BASE;
33 
34 class SwVbaWindow : public WindowImpl_BASE
35 {
36 public:
37     SwVbaWindow(
38         const css::uno::Reference< ov::XHelperInterface >& xParent,
39         const css::uno::Reference< css::uno::XComponentContext >& xContext,
40         const css::uno::Reference< css::frame::XModel >& xModel,
41         const css::uno::Reference< css::frame::XController >& xController )
42         throw (css::uno::RuntimeException);
43 
44     // Attributes
45     virtual css::uno::Any SAL_CALL getView() throw (css::uno::RuntimeException);
46     virtual void SAL_CALL setView( const css::uno::Any& _view ) throw (css::uno::RuntimeException);
47 	// Methods
48 	virtual void SAL_CALL Activate(  ) throw (css::uno::RuntimeException);
49 	virtual void SAL_CALL Close( const css::uno::Any& SaveChanges, const css::uno::Any& RouteDocument ) throw (css::uno::RuntimeException);
50     virtual css::uno::Any SAL_CALL Panes( const css::uno::Any& aIndex ) throw (css::uno::RuntimeException);
51     virtual css::uno::Any SAL_CALL ActivePane() throw (css::uno::RuntimeException);
52 	// XHelperInterface
53 	virtual rtl::OUString& getServiceImplName();
54 	virtual css::uno::Sequence<rtl::OUString> getServiceNames();
55 };
56 
57 #endif //SW_VBA_WINDOW_HXX
58