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