Update git submodules
[LibreOffice.git] / framework / inc / uielement / toolbarsmenucontroller.hxx
blob23d07ef509d655e8c6d219684927acdf9e6eb2a4
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 #pragma once
22 #include <com/sun/star/frame/XDispatch.hpp>
23 #include <com/sun/star/frame/XLayoutManager.hpp>
24 #include <com/sun/star/container/XNameAccess.hpp>
25 #include <com/sun/star/ui/XUIConfigurationManager.hpp>
27 #include <svtools/popupmenucontrollerbase.hxx>
28 #include <rtl/ustring.hxx>
29 #include <unotools/intlwrapper.hxx>
31 #include <vector>
33 namespace framework
35 class ToolbarsMenuController final : public svt::PopupMenuControllerBase
37 using svt::PopupMenuControllerBase::disposing;
39 public:
40 ToolbarsMenuController( const css::uno::Reference< css::uno::XComponentContext >& xContext );
41 virtual ~ToolbarsMenuController() override;
43 /* interface XServiceInfo */
44 virtual OUString SAL_CALL getImplementationName() override;
45 virtual sal_Bool SAL_CALL supportsService( const OUString& sServiceName ) override;
46 virtual css::uno::Sequence< OUString > SAL_CALL getSupportedServiceNames() override;
48 // XPopupMenuController
49 virtual void SAL_CALL setPopupMenu( const css::uno::Reference< css::awt::XPopupMenu >& PopupMenu ) override;
51 // XStatusListener
52 virtual void SAL_CALL statusChanged( const css::frame::FeatureStateEvent& Event ) override;
54 // XMenuListener
55 virtual void SAL_CALL itemSelected( const css::awt::MenuEvent& rEvent ) override;
56 virtual void SAL_CALL itemActivated( const css::awt::MenuEvent& rEvent ) override;
58 // XEventListener
59 virtual void SAL_CALL disposing( const css::lang::EventObject& Source ) override;
61 struct ExecuteInfo
63 css::uno::Reference< css::frame::XDispatch > xDispatch;
64 css::util::URL aTargetURL;
67 DECL_STATIC_LINK( ToolbarsMenuController, ExecuteHdl_Impl, void*, void );
69 private:
70 // XInitialization
71 virtual void initializeImpl( std::unique_lock<std::mutex>& rGuard, const css::uno::Sequence< css::uno::Any >& aArguments ) override;
73 void fillPopupMenu( css::uno::Reference< css::awt::XPopupMenu > const & rPopupMenu );
74 static css::uno::Sequence< css::uno::Sequence< css::beans::PropertyValue > > getLayoutManagerToolbars( const css::uno::Reference< css::frame::XLayoutManager >& rLayoutManager );
75 css::uno::Reference< css::frame::XDispatch > getDispatchFromCommandURL( const OUString& rCommandURL );
76 void addCommand( css::uno::Reference< css::awt::XPopupMenu > const & rPopupMenu, const OUString& rCommandURL, const OUString& aLabel );
78 css::uno::Reference< css::uno::XComponentContext > m_xContext;
79 css::uno::Reference< css::container::XNameAccess > m_xPersistentWindowState;
80 css::uno::Reference< css::ui::XUIConfigurationManager > m_xModuleCfgMgr;
81 css::uno::Reference< css::ui::XUIConfigurationManager > m_xDocCfgMgr;
82 bool m_bResetActive;
83 std::vector< OUString > m_aCommandVector;
84 IntlWrapper m_aIntlWrapper;
88 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */