1*46dbaceeSAndrew Rist /**************************************************************
2cdf0e10cSrcweir  *
3*46dbaceeSAndrew Rist  * Licensed to the Apache Software Foundation (ASF) under one
4*46dbaceeSAndrew Rist  * or more contributor license agreements.  See the NOTICE file
5*46dbaceeSAndrew Rist  * distributed with this work for additional information
6*46dbaceeSAndrew Rist  * regarding copyright ownership.  The ASF licenses this file
7*46dbaceeSAndrew Rist  * to you under the Apache License, Version 2.0 (the
8*46dbaceeSAndrew Rist  * "License"); you may not use this file except in compliance
9*46dbaceeSAndrew Rist  * with the License.  You may obtain a copy of the License at
10*46dbaceeSAndrew Rist  *
11*46dbaceeSAndrew Rist  *   http://www.apache.org/licenses/LICENSE-2.0
12*46dbaceeSAndrew Rist  *
13*46dbaceeSAndrew Rist  * Unless required by applicable law or agreed to in writing,
14*46dbaceeSAndrew Rist  * software distributed under the License is distributed on an
15*46dbaceeSAndrew Rist  * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
16*46dbaceeSAndrew Rist  * KIND, either express or implied.  See the License for the
17*46dbaceeSAndrew Rist  * specific language governing permissions and limitations
18*46dbaceeSAndrew Rist  * under the License.
19*46dbaceeSAndrew Rist  *
20*46dbaceeSAndrew Rist  *************************************************************/
21*46dbaceeSAndrew Rist 
22*46dbaceeSAndrew Rist 
23cdf0e10cSrcweir 
24cdf0e10cSrcweir // MARKER(update_precomp.py): autogen include statement, do not remove
25cdf0e10cSrcweir 
26cdf0e10cSrcweir 
27cdf0e10cSrcweir #ifndef EXTENSIONS_OOOIMPROVEMENT_CORECONTROLLER_HXX
28cdf0e10cSrcweir #define EXTENSIONS_OOOIMPROVEMENT_CORECONTROLLER_HXX
29cdf0e10cSrcweir 
30cdf0e10cSrcweir #include <com/sun/star/lang/XServiceInfo.hpp>
31cdf0e10cSrcweir #include <com/sun/star/oooimprovement/XCoreController.hpp>
32cdf0e10cSrcweir #include <com/sun/star/uno/XComponentContext.hpp>
33cdf0e10cSrcweir #include <com/sun/star/lang/XMultiServiceFactory.hpp>
34cdf0e10cSrcweir #include <cppuhelper/implbase2.hxx>
35cdf0e10cSrcweir 
36cdf0e10cSrcweir 
37cdf0e10cSrcweir namespace oooimprovement
38cdf0e10cSrcweir {
39cdf0e10cSrcweir     #ifdef css
40cdf0e10cSrcweir         #error css defined globally
41cdf0e10cSrcweir     #endif
42cdf0e10cSrcweir     #define css ::com::sun::star
43cdf0e10cSrcweir     class CoreController : public ::cppu::WeakImplHelper2<
44cdf0e10cSrcweir         css::oooimprovement::XCoreController,
45cdf0e10cSrcweir         css::lang::XServiceInfo>
46cdf0e10cSrcweir     {
47cdf0e10cSrcweir         public:
48cdf0e10cSrcweir             // css::lang::XServiceInfo - static version
49cdf0e10cSrcweir             static ::rtl::OUString SAL_CALL getImplementationName_static();
50cdf0e10cSrcweir             static css::uno::Sequence< ::rtl::OUString> SAL_CALL getSupportedServiceNames_static();
51cdf0e10cSrcweir             //static css::uno::Reference< css::uno::XInterface> SAL_CALL Create(
52cdf0e10cSrcweir             //    const css::uno::Reference<css::uno::XComponentContext>& context);
53cdf0e10cSrcweir 
54cdf0e10cSrcweir             static css::uno::Reference< css::uno::XInterface> SAL_CALL Create(
55cdf0e10cSrcweir                 const css::uno::Reference< css::lang::XMultiServiceFactory>& sm);
56cdf0e10cSrcweir 
57cdf0e10cSrcweir         protected:
58cdf0e10cSrcweir             CoreController(const css::uno::Reference< css::uno::XComponentContext>& context);
59cdf0e10cSrcweir             CoreController(const css::uno::Reference< css::lang::XMultiServiceFactory>& sm);
60cdf0e10cSrcweir             virtual ~CoreController();
61cdf0e10cSrcweir 
62cdf0e10cSrcweir             // css::oooimprovement::XCoreController
63cdf0e10cSrcweir             virtual sal_Bool SAL_CALL enablingUiEventsLoggerAllowed(sal_Int16 version)
64cdf0e10cSrcweir                 throw(css::uno::RuntimeException);
65cdf0e10cSrcweir             virtual sal_Bool SAL_CALL showBuiltinOptionsPage(sal_Int16 version)
66cdf0e10cSrcweir                 throw(css::uno::RuntimeException);
67cdf0e10cSrcweir 
68cdf0e10cSrcweir             // css::lang::XServiceInfo
69cdf0e10cSrcweir             virtual ::rtl::OUString SAL_CALL getImplementationName()
70cdf0e10cSrcweir                 throw(css::uno::RuntimeException);
71cdf0e10cSrcweir             virtual ::sal_Bool SAL_CALL supportsService(const ::rtl::OUString& service_name)
72cdf0e10cSrcweir                 throw(css::uno::RuntimeException);
73cdf0e10cSrcweir             virtual css::uno::Sequence< ::rtl::OUString> SAL_CALL getSupportedServiceNames()
74cdf0e10cSrcweir                 throw(css::uno::RuntimeException);
75cdf0e10cSrcweir 
76cdf0e10cSrcweir         private:
77cdf0e10cSrcweir             css::uno::Reference< css::lang::XMultiServiceFactory> m_ServiceFactory;
78cdf0e10cSrcweir     };
79cdf0e10cSrcweir     #undef css
80cdf0e10cSrcweir }
81cdf0e10cSrcweir #endif
82