bump product version to 4.1.6.2
[LibreOffice.git] / framework / inc / uielement / controlmenucontroller.hxx
blob68d93517f08dfe8151993177ccf324f4a094cbf4
1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2 /*
3 * This file is part of the LibreOffice project.
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/.
9 * This file incorporates work covered by the following license notice:
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 .
20 #ifndef __FRAMEWORK_UIELEMENT_CONTROLMENUCONTROLLER_HXX_
21 #define __FRAMEWORK_UIELEMENT_CONTROLMENUCONTROLLER_HXX_
23 #include <macros/xserviceinfo.hxx>
24 #include <stdtypes.h>
26 #include <com/sun/star/lang/XServiceInfo.hpp>
27 #include <com/sun/star/lang/XTypeProvider.hpp>
28 #include <com/sun/star/lang/XInitialization.hpp>
29 #include <com/sun/star/lang/XMultiServiceFactory.hpp>
30 #include <com/sun/star/frame/XFrame.hpp>
31 #include <com/sun/star/frame/XDispatch.hpp>
32 #include <com/sun/star/frame/XStatusListener.hpp>
33 #include <com/sun/star/frame/XPopupMenuController.hpp>
34 #include <com/sun/star/frame/status/Verb.hpp>
35 #include <com/sun/star/frame/XModel.hpp>
37 #include <svtools/popupmenucontrollerbase.hxx>
38 #include <toolkit/awt/vclxmenu.hxx>
39 #include <cppuhelper/weak.hxx>
40 #include <rtl/ustring.hxx>
42 class PopupMenu;
43 namespace framework
45 class ControlMenuController : public svt::PopupMenuControllerBase
47 using svt::PopupMenuControllerBase::disposing;
49 public:
50 ControlMenuController( const ::com::sun::star::uno::Reference< ::com::sun::star::lang::XMultiServiceFactory >& xServiceManager );
51 virtual ~ControlMenuController();
53 // XServiceInfo
54 DECLARE_XSERVICEINFO
56 // XPopupMenuController
57 virtual void SAL_CALL updatePopupMenu() throw (::com::sun::star::uno::RuntimeException);
59 // XInitialization
60 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);
62 // XStatusListener
63 virtual void SAL_CALL statusChanged( const ::com::sun::star::frame::FeatureStateEvent& Event ) throw ( ::com::sun::star::uno::RuntimeException );
65 // XMenuListener
66 virtual void SAL_CALL activate( const ::com::sun::star::awt::MenuEvent& rEvent ) throw (::com::sun::star::uno::RuntimeException);
68 // XEventListener
69 virtual void SAL_CALL disposing( const com::sun::star::lang::EventObject& Source ) throw ( ::com::sun::star::uno::RuntimeException );
71 private:
72 virtual void impl_setPopupMenu();
73 virtual void impl_select(const ::com::sun::star::uno::Reference< ::com::sun::star::frame::XDispatch >& _xDispatch,const ::com::sun::star::util::URL& aURL);
75 class UrlToDispatchMap : public ::boost::unordered_map< OUString,
76 com::sun::star::uno::Reference< com::sun::star::frame::XDispatch >,
77 OUStringHash,
78 ::std::equal_to< OUString > >
80 public:
81 inline void free()
83 UrlToDispatchMap().swap( *this );
87 void updateImagesPopupMenu( PopupMenu* pPopupMenu );
88 void fillPopupMenu( com::sun::star::uno::Reference< com::sun::star::awt::XPopupMenu >& rPopupMenu );
90 sal_Bool m_bShowMenuImages : 1;
91 PopupMenu* m_pResPopupMenu;
92 UrlToDispatchMap m_aURLToDispatchMap;
96 #endif // __FRAMEWORK_UIELEMENT_CONTROLMENUCONTROLLER_HXX_
98 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */