Line data Source code
1 : /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2 : /*
3 : * This file is part of the LibreOffice project.
4 : *
5 : * This Source Code Form is subject to the terms of the Mozilla Public
6 : * License, v. 2.0. If a copy of the MPL was not distributed with this
7 : * file, You can obtain one at http://mozilla.org/MPL/2.0/.
8 : *
9 : * This file incorporates work covered by the following license notice:
10 : *
11 : * Licensed to the Apache Software Foundation (ASF) under one or more
12 : * contributor license agreements. See the NOTICE file distributed
13 : * with this work for additional information regarding copyright
14 : * ownership. The ASF licenses this file to you under the Apache
15 : * License, Version 2.0 (the "License"); you may not use this file
16 : * except in compliance with the License. You may obtain a copy of
17 : * the License at http://www.apache.org/licenses/LICENSE-2.0 .
18 : */
19 : #ifndef INCLUDED_SW_SOURCE_UI_VBA_VBASYSTEM_HXX
20 : #define INCLUDED_SW_SOURCE_UI_VBA_VBASYSTEM_HXX
21 :
22 : #include <ooo/vba/word/XSystem.hpp>
23 : #include <vbahelper/vbahelperinterface.hxx>
24 : #include <cppuhelper/implbase1.hxx>
25 : #include <vbahelper/vbapropvalue.hxx>
26 :
27 : typedef InheritedHelperInterfaceImpl1< ooo::vba::word::XSystem > SwVbaSystem_BASE;
28 :
29 : class PrivateProfileStringListener : public PropListener
30 : {
31 : private:
32 : OUString maFileName;
33 : OString maGroupName;
34 : OString maKey;
35 : public:
36 0 : PrivateProfileStringListener(){};
37 : virtual ~PrivateProfileStringListener();
38 : void Initialize( const OUString& rFileName, const OString& rGroupName, const OString& rKey );
39 :
40 : //PropListener
41 : virtual void setValueEvent( const css::uno::Any& value ) SAL_OVERRIDE;
42 : virtual css::uno::Any getValueEvent() SAL_OVERRIDE;
43 : };
44 :
45 : class SwVbaSystem : public SwVbaSystem_BASE
46 : {
47 : private:
48 : PrivateProfileStringListener maPrivateProfileStringListener;
49 :
50 : public:
51 : explicit SwVbaSystem( css::uno::Reference< css::uno::XComponentContext >& m_xContext );
52 : virtual ~SwVbaSystem();
53 :
54 : // XSystem
55 : virtual sal_Int32 SAL_CALL getCursor() throw ( css::uno::RuntimeException, std::exception ) SAL_OVERRIDE;
56 : virtual void SAL_CALL setCursor( sal_Int32 _cursor ) throw ( css::uno::RuntimeException, std::exception ) SAL_OVERRIDE;
57 : virtual css::uno::Any SAL_CALL PrivateProfileString( const OUString& rFilename, const OUString& rSection, const OUString& rKey ) throw ( css::uno::RuntimeException, std::exception ) SAL_OVERRIDE;
58 :
59 : // XHelperInterface
60 : virtual OUString getServiceImplName() SAL_OVERRIDE;
61 : virtual css::uno::Sequence<OUString> getServiceNames() SAL_OVERRIDE;
62 : };
63 : #endif // INCLUDED_SW_SOURCE_UI_VBA_VBASYSTEM_HXX
64 :
65 : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|