calc: on editing invalidation of view with different zoom is wrong
[LibreOffice.git] / framework / inc / uielement / toolbarsmenucontroller.hxx
blob99d64775d6b68469d66ff120f1216457ac4cf3e2
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 // XInitialization
52 virtual void SAL_CALL initialize( const css::uno::Sequence< css::uno::Any >& aArguments ) override;
54 // XStatusListener
55 virtual void SAL_CALL statusChanged( const css::frame::FeatureStateEvent& Event ) override;
57 // XMenuListener
58 virtual void SAL_CALL itemSelected( const css::awt::MenuEvent& rEvent ) override;
59 virtual void SAL_CALL itemActivated( const css::awt::MenuEvent& rEvent ) override;
61 // XEventListener
62 virtual void SAL_CALL disposing( const css::lang::EventObject& Source ) override;
64 struct ExecuteInfo
66 css::uno::Reference< css::frame::XDispatch > xDispatch;
67 css::util::URL aTargetURL;
68 css::uno::Sequence< css::beans::PropertyValue > aArgs;
71 DECL_STATIC_LINK( ToolbarsMenuController, ExecuteHdl_Impl, void*, void );
73 private:
74 void fillPopupMenu( css::uno::Reference< css::awt::XPopupMenu > const & rPopupMenu );
75 css::uno::Sequence< css::uno::Sequence< css::beans::PropertyValue > > getLayoutManagerToolbars( const css::uno::Reference< css::frame::XLayoutManager >& rLayoutManager );
76 css::uno::Reference< css::frame::XDispatch > getDispatchFromCommandURL( const OUString& rCommandURL );
77 void addCommand( css::uno::Reference< css::awt::XPopupMenu > const & rPopupMenu, const OUString& rCommandURL, const OUString& aLabel );
79 css::uno::Reference< css::uno::XComponentContext > m_xContext;
80 css::uno::Reference< css::container::XNameAccess > m_xPersistentWindowState;
81 css::uno::Reference< css::ui::XUIConfigurationManager > m_xModuleCfgMgr;
82 css::uno::Reference< css::ui::XUIConfigurationManager > m_xDocCfgMgr;
83 bool m_bResetActive;
84 std::vector< OUString > m_aCommandVector;
85 IntlWrapper m_aIntlWrapper;
89 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */