xref: /aoo4110/main/sw/source/ui/vba/vbaapplication.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_APPLICATION_HXX
24 #define SW_VBA_APPLICATION_HXX
25 
26 #include <ooo/vba/word/XApplication.hpp>
27 #include <ooo/vba/word/XDocument.hpp>
28 #include <ooo/vba/word/XWindow.hpp>
29 #include <ooo/vba/word/XSystem.hpp>
30 #include <ooo/vba/word/XOptions.hpp>
31 #include <ooo/vba/word/XSelection.hpp>
32 #include <ooo/vba/word/XAddins.hpp>
33 #include <vbahelper/vbahelperinterface.hxx>
34 #include <vbahelper/vbaapplicationbase.hxx>
35 #include <cppuhelper/implbase1.hxx>
36 
37 //typedef InheritedHelperInterfaceImpl1< ooo::vba::word::XApplication > SwVbaApplication_BASE;
38 typedef cppu::ImplInheritanceHelper1< VbaApplicationBase, ooo::vba::word::XApplication > SwVbaApplication_BASE;
39 
40 class SwVbaApplication : public SwVbaApplication_BASE
41 {
42 public:
43 	SwVbaApplication( css::uno::Reference< css::uno::XComponentContext >& m_xContext );
44 	virtual ~SwVbaApplication();
45 
46     virtual SfxObjectShell* GetDocShell( const css::uno::Reference< css::frame::XModel >& xModel ) throw (css::uno::RuntimeException);
47 
48 	// XApplication
49     virtual ::rtl::OUString SAL_CALL getName() throw (css::uno::RuntimeException);
50     virtual css::uno::Reference< ooo::vba::word::XSystem > SAL_CALL getSystem() throw (css::uno::RuntimeException);
51     virtual css::uno::Reference< ov::word::XDocument > SAL_CALL getActiveDocument() throw (css::uno::RuntimeException);
52     virtual css::uno::Reference< ov::word::XWindow > SAL_CALL getActiveWindow() throw (css::uno::RuntimeException);
53     virtual css::uno::Reference< ooo::vba::word::XOptions > SAL_CALL getOptions() throw (css::uno::RuntimeException);
54     virtual css::uno::Reference< ooo::vba::word::XSelection > SAL_CALL getSelection() throw (css::uno::RuntimeException);
55     virtual css::uno::Any SAL_CALL CommandBars( const css::uno::Any& aIndex ) throw (css::uno::RuntimeException);
56     virtual css::uno::Any SAL_CALL Documents( const css::uno::Any& aIndex ) throw (css::uno::RuntimeException);
57     virtual css::uno::Any SAL_CALL Addins( const css::uno::Any& aIndex ) throw (css::uno::RuntimeException);
58     virtual css::uno::Any SAL_CALL Dialogs( const css::uno::Any& aIndex ) throw (css::uno::RuntimeException);
59     virtual sal_Bool SAL_CALL getDisplayAutoCompleteTips() throw (css::uno::RuntimeException);
60     virtual void SAL_CALL setDisplayAutoCompleteTips( sal_Bool _displayAutoCompleteTips ) throw (css::uno::RuntimeException);
61     virtual sal_Int32 SAL_CALL getEnableCancelKey() throw (css::uno::RuntimeException);
62     virtual void SAL_CALL setEnableCancelKey( sal_Int32 _enableCancelKey ) throw (css::uno::RuntimeException);
63     virtual float SAL_CALL CentimetersToPoints( float _Centimeters ) throw (css::uno::RuntimeException);
64 	// XHelperInterface
65 	virtual rtl::OUString& getServiceImplName();
66 	virtual css::uno::Sequence<rtl::OUString> getServiceNames();
67 protected:
68     virtual css::uno::Reference< css::frame::XModel > getCurrentDocument() throw (css::uno::RuntimeException);
69 };
70 #endif /* SW_VBA_APPLICATION_HXX */
71