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 :
20 : #ifndef INCLUDED_FRAMEWORK_INC_UIELEMENT_NEWMENUCONTROLLER_HXX
21 : #define INCLUDED_FRAMEWORK_INC_UIELEMENT_NEWMENUCONTROLLER_HXX
22 :
23 : #include <macros/xserviceinfo.hxx>
24 : #include <stdtypes.h>
25 :
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/XDispatchProvider.hpp>
32 : #include <com/sun/star/frame/XDispatch.hpp>
33 : #include <com/sun/star/frame/XStatusListener.hpp>
34 : #include <com/sun/star/frame/XPopupMenuController.hpp>
35 : #include <com/sun/star/beans/XPropertySet.hpp>
36 : #include <com/sun/star/ui/XAcceleratorConfiguration.hpp>
37 :
38 : #include <svtools/popupmenucontrollerbase.hxx>
39 : #include <toolkit/awt/vclxmenu.hxx>
40 : #include <cppuhelper/weak.hxx>
41 : #include <rtl/ustring.hxx>
42 : #include <vcl/accel.hxx>
43 : #include <vcl/menu.hxx>
44 : #include <boost/unordered_map.hpp>
45 :
46 : namespace framework
47 : {
48 0 : struct NewDocument
49 : {
50 : ::com::sun::star::util::URL aTargetURL;
51 : ::com::sun::star::uno::Sequence< ::com::sun::star::beans::PropertyValue > aArgSeq;
52 : ::com::sun::star::uno::Reference< ::com::sun::star::frame::XDispatch > xDispatch;
53 : };
54 :
55 : class NewMenuController : public svt::PopupMenuControllerBase
56 : {
57 : using svt::PopupMenuControllerBase::disposing;
58 :
59 : public:
60 : NewMenuController( const ::com::sun::star::uno::Reference< ::com::sun::star::uno::XComponentContext >& xContext );
61 : virtual ~NewMenuController();
62 :
63 : // XServiceInfo
64 : DECLARE_XSERVICEINFO
65 :
66 : // XInitialization
67 : 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, std::exception) SAL_OVERRIDE;
68 :
69 : // XStatusListener
70 : virtual void SAL_CALL statusChanged( const ::com::sun::star::frame::FeatureStateEvent& Event ) throw ( ::com::sun::star::uno::RuntimeException, std::exception ) SAL_OVERRIDE;
71 :
72 : // XMenuListener
73 : virtual void SAL_CALL itemSelected( const ::com::sun::star::awt::MenuEvent& rEvent ) throw (::com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE;
74 : virtual void SAL_CALL itemActivated( const ::com::sun::star::awt::MenuEvent& rEvent ) throw (::com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE;
75 :
76 : // XEventListener
77 : virtual void SAL_CALL disposing( const com::sun::star::lang::EventObject& Source ) throw ( ::com::sun::star::uno::RuntimeException, std::exception ) SAL_OVERRIDE;
78 :
79 : DECL_STATIC_LINK( NewMenuController, ExecuteHdl_Impl, NewDocument* );
80 :
81 : private:
82 : virtual void impl_setPopupMenu() SAL_OVERRIDE;
83 0 : struct AddInfo
84 : {
85 : OUString aTargetFrame;
86 : OUString aImageId;
87 : };
88 :
89 : typedef ::boost::unordered_map< int, AddInfo > AddInfoForId;
90 :
91 : void fillPopupMenu( com::sun::star::uno::Reference< com::sun::star::awt::XPopupMenu >& rPopupMenu );
92 : void retrieveShortcutsFromConfiguration( const ::com::sun::star::uno::Reference< ::com::sun::star::ui::XAcceleratorConfiguration >& rAccelCfg,
93 : const ::com::sun::star::uno::Sequence< OUString >& rCommands,
94 : std::vector< KeyCode >& aMenuShortCuts );
95 : void setAccelerators( PopupMenu* pPopupMenu );
96 : void determineAndSetNewDocAccel( PopupMenu* pPopupMenu, const KeyCode& rKeyCode );
97 : void setMenuImages( PopupMenu* pPopupMenu, bool bSetImages );
98 :
99 : private:
100 : // members
101 : bool m_bShowImages : 1,
102 : m_bNewMenu : 1,
103 : m_bModuleIdentified : 1,
104 : m_bAcceleratorCfg : 1;
105 : AddInfoForId m_aAddInfoForItem;
106 : OUString m_aTargetFrame;
107 : OUString m_aModuleIdentifier;
108 : OUString m_aEmptyDocURL;
109 : ::com::sun::star::uno::Reference< ::com::sun::star::uno::XComponentContext > m_xContext;
110 : ::com::sun::star::uno::Reference< ::com::sun::star::ui::XAcceleratorConfiguration > m_xDocAcceleratorManager;
111 : ::com::sun::star::uno::Reference< ::com::sun::star::ui::XAcceleratorConfiguration > m_xModuleAcceleratorManager;
112 : ::com::sun::star::uno::Reference< ::com::sun::star::ui::XAcceleratorConfiguration > m_xGlobalAcceleratorManager;
113 : };
114 : }
115 :
116 : #endif // INCLUDED_FRAMEWORK_INC_UIELEMENT_NEWMENUCONTROLLER_HXX
117 :
118 : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|