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_MACROSMENUCONTROLLER_HXX
21 : #define INCLUDED_FRAMEWORK_INC_UIELEMENT_MACROSMENUCONTROLLER_HXX
22 :
23 : #include <macros/xserviceinfo.hxx>
24 : #include <stdtypes.h>
25 : #include <com/sun/star/lang/XServiceInfo.hpp>
26 : #include <com/sun/star/lang/XTypeProvider.hpp>
27 : #include <com/sun/star/lang/XInitialization.hpp>
28 : #include <com/sun/star/lang/XMultiServiceFactory.hpp>
29 : #include <com/sun/star/frame/XFrame.hpp>
30 : #include <com/sun/star/frame/XDispatch.hpp>
31 : #include <com/sun/star/frame/XDispatchProvider.hpp>
32 : #include <com/sun/star/frame/XStatusListener.hpp>
33 : #include <com/sun/star/container/XNameAccess.hpp>
34 : #include <com/sun/star/frame/XPopupMenuController.hpp>
35 : #include <svtools/popupmenucontrollerbase.hxx>
36 : #include <toolkit/awt/vclxmenu.hxx>
37 : #include <cppuhelper/weak.hxx>
38 : #include <vcl/menu.hxx>
39 : #include <rtl/ustring.hxx>
40 :
41 : namespace framework
42 : {
43 : class MacrosMenuController : public svt::PopupMenuControllerBase
44 : {
45 : using svt::PopupMenuControllerBase::disposing;
46 :
47 0 : struct ExecuteInfo
48 : {
49 : ::com::sun::star::uno::Reference< ::com::sun::star::frame::XDispatch > xDispatch;
50 : ::com::sun::star::util::URL aTargetURL;
51 : ::com::sun::star::uno::Sequence< ::com::sun::star::beans::PropertyValue > aArgs;
52 : };
53 : DECL_STATIC_LINK( MacrosMenuController, ExecuteHdl_Impl, ExecuteInfo* );
54 : ::com::sun::star::uno::Reference< ::com::sun::star::uno::XComponentContext > m_xContext;
55 : ::com::sun::star::uno::Reference< ::com::sun::star::frame::XDispatchProvider > m_xDispatchProvider;
56 : OUString m_aModuleIdentifier;
57 : ::com::sun::star::uno::Reference< ::com::sun::star::container::XNameAccess > m_xUICommandLabels;
58 :
59 : public:
60 : MacrosMenuController( const ::com::sun::star::uno::Reference< ::com::sun::star::uno::XComponentContext >& xContext );
61 : virtual ~MacrosMenuController();
62 :
63 : // XServiceInfo
64 : DECLARE_XSERVICEINFO
65 :
66 : // XStatusListener
67 : virtual void SAL_CALL statusChanged( const ::com::sun::star::frame::FeatureStateEvent& Event ) throw ( ::com::sun::star::uno::RuntimeException, std::exception ) SAL_OVERRIDE;
68 :
69 : // XEventListener
70 : virtual void SAL_CALL disposing( const com::sun::star::lang::EventObject& Source ) throw ( ::com::sun::star::uno::RuntimeException, std::exception ) SAL_OVERRIDE;
71 :
72 : private:
73 : virtual void impl_select(const ::com::sun::star::uno::Reference< ::com::sun::star::frame::XDispatch >& _xDispatch,const ::com::sun::star::util::URL& aURL) SAL_OVERRIDE;
74 : void fillPopupMenu( com::sun::star::uno::Reference< com::sun::star::awt::XPopupMenu >& rPopupMenu );
75 : OUString RetrieveLabelFromCommand(const OUString& rCmdURL);
76 : void addScriptItems( PopupMenu* pPopupMenu, sal_uInt16 startItemId );
77 : };
78 : }
79 :
80 : #endif // INCLUDED_FRAMEWORK_INC_UIELEMENT_MACROSMENUCONTROLLER_HXX
81 :
82 : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|