sync master with lastest vba changes
[ooovba.git] / reportdesign / source / ui / inc / toolboxcontroller.hxx
blob1cef7e951cd6345028ba3362cc10494d15cbc1e6
1 /*************************************************************************
3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
4 *
5 * Copyright 2008 by Sun Microsystems, Inc.
7 * OpenOffice.org - a multi-platform office productivity suite
9 * $RCSfile: toolboxcontroller.hxx,v $
10 * $Revision: 1.3 $
12 * This file is part of OpenOffice.org.
14 * OpenOffice.org is free software: you can redistribute it and/or modify
15 * it under the terms of the GNU Lesser General Public License version 3
16 * only, as published by the Free Software Foundation.
18 * OpenOffice.org is distributed in the hope that it will be useful,
19 * but WITHOUT ANY WARRANTY; without even the implied warranty of
20 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
21 * GNU Lesser General Public License version 3 for more details
22 * (a copy is included in the LICENSE file that accompanied this code).
24 * You should have received a copy of the GNU Lesser General Public License
25 * version 3 along with OpenOffice.org. If not, see
26 * <http://www.openoffice.org/license.html>
27 * for a copy of the LGPLv3 License.
29 ************************************************************************/
30 #ifndef RPTUI_TOOLBOXCONTROLLER_HXX
31 #define RPTUI_TOOLBOXCONTROLLER_HXX
33 #include <svtools/toolboxcontroller.hxx>
34 #include <comphelper/stl_types.hxx>
35 #include <com/sun/star/lang/XServiceInfo.hpp>
36 #include <com/sun/star/uno/XComponentContext.hpp>
37 #include <com/sun/star/frame/XSubToolbarController.hpp>
38 #include <cppuhelper/implbase2.hxx>
39 #include <comphelper/implementationreference.hxx>
41 class SfxToolBoxControl;
42 namespace rptui
44 typedef ::cppu::ImplHelper2 < ::com::sun::star::lang::XServiceInfo,
45 ::com::sun::star::frame::XSubToolbarController> TToolboxController_BASE;
46 typedef ::comphelper::ImplementationReference<SfxToolBoxControl,::com::sun::star::frame::XToolbarController> TToolbarHelper;
48 class OToolboxController : public ::svt::ToolboxController
49 ,public TToolboxController_BASE
51 DECLARE_STL_USTRINGACCESS_MAP(sal_Bool,TCommandState);
52 TCommandState m_aStates;
53 TToolbarHelper m_pToolbarController;
54 sal_uInt16 m_nToolBoxId;
55 sal_uInt16 m_nSlotId;
56 OToolboxController(const OToolboxController&);
57 void operator =(const OToolboxController&);
58 public:
59 OToolboxController(const ::com::sun::star::uno::Reference< ::com::sun::star::lang::XMultiServiceFactory >& _rxORB);
60 virtual ~OToolboxController();
62 // XInterface
63 virtual ::com::sun::star::uno::Any SAL_CALL queryInterface( const ::com::sun::star::uno::Type& aType ) throw (::com::sun::star::uno::RuntimeException);
64 virtual void SAL_CALL acquire() throw ();
65 virtual void SAL_CALL release() throw ();
66 // XServiceInfo
67 virtual ::rtl::OUString SAL_CALL getImplementationName() throw(::com::sun::star::uno::RuntimeException);
68 virtual ::com::sun::star::uno::Sequence< ::rtl::OUString> SAL_CALL getSupportedServiceNames() throw(::com::sun::star::uno::RuntimeException);
69 // need by registration
70 static ::rtl::OUString getImplementationName_Static() throw( ::com::sun::star::uno::RuntimeException );
71 static ::com::sun::star::uno::Sequence< ::rtl::OUString > getSupportedServiceNames_Static(void) throw( ::com::sun::star::uno::RuntimeException );
72 static ::com::sun::star::uno::Reference< ::com::sun::star::uno::XInterface > SAL_CALL
73 create(::com::sun::star::uno::Reference< ::com::sun::star::uno::XComponentContext > const & xContext);
74 virtual ::sal_Bool SAL_CALL supportsService( const ::rtl::OUString& ServiceName ) throw (::com::sun::star::uno::RuntimeException);
76 // XInitialization
77 virtual void SAL_CALL initialize( const ::com::sun::star::uno::Sequence< ::com::sun::star::uno::Any >& aArguments ) throw (::com::sun::star::uno::Exception, ::com::sun::star::uno::RuntimeException);
78 // XStatusListener
79 virtual void SAL_CALL statusChanged( const ::com::sun::star::frame::FeatureStateEvent& Event ) throw ( ::com::sun::star::uno::RuntimeException );
80 // XToolbarController
81 virtual ::com::sun::star::uno::Reference< ::com::sun::star::awt::XWindow > SAL_CALL createPopupWindow() throw (::com::sun::star::uno::RuntimeException);
83 // XSubToolbarController
84 virtual ::sal_Bool SAL_CALL opensSubToolbar( ) throw (::com::sun::star::uno::RuntimeException);
85 virtual ::rtl::OUString SAL_CALL getSubToolbarName( ) throw (::com::sun::star::uno::RuntimeException);
86 virtual void SAL_CALL functionSelected( const ::rtl::OUString& aCommand ) throw (::com::sun::star::uno::RuntimeException);
87 virtual void SAL_CALL updateImage( ) throw (::com::sun::star::uno::RuntimeException);
88 virtual ::com::sun::star::uno::Reference< ::com::sun::star::awt::XWindow > SAL_CALL createItemWindow( const ::com::sun::star::uno::Reference< ::com::sun::star::awt::XWindow >& Parent ) throw (::com::sun::star::uno::RuntimeException);
90 //..........................................................................
91 } // rptui
92 //..........................................................................
93 #endif //RPTUI_TOOLBOXCONTROLLER_HXX