8ef4dc07cd
Some of the exclusions were too aggressive. Restrict them to only the important classes, which exposes some more places this plugin applies. Change-Id: I1b2d1fb24391adc71ed0984f94168f61a149479f Reviewed-on: https://gerrit.libreoffice.org/c/core/+/165154 Tested-by: Jenkins Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
194 lines
10 KiB
C++
194 lines
10 KiB
C++
/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
|
|
/*
|
|
* This file is part of the LibreOffice project.
|
|
*
|
|
* This Source Code Form is subject to the terms of the Mozilla Public
|
|
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
* file, You can obtain one at http://mozilla.org/MPL/2.0/.
|
|
*
|
|
* This file incorporates work covered by the following license notice:
|
|
*
|
|
* Licensed to the Apache Software Foundation (ASF) under one or more
|
|
* contributor license agreements. See the NOTICE file distributed
|
|
* with this work for additional information regarding copyright
|
|
* ownership. The ASF licenses this file to you under the Apache
|
|
* License, Version 2.0 (the "License"); you may not use this file
|
|
* except in compliance with the License. You may obtain a copy of
|
|
* the License at http://www.apache.org/licenses/LICENSE-2.0 .
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include <sal/config.h>
|
|
|
|
#include <unordered_map>
|
|
#include <utility>
|
|
#include <vector>
|
|
|
|
#include <com/sun/star/frame/XFrame.hpp>
|
|
#include <com/sun/star/frame/XDispatch.hpp>
|
|
#include <com/sun/star/frame/XDispatchProvider.hpp>
|
|
#include <com/sun/star/frame/FeatureStateEvent.hpp>
|
|
#include <com/sun/star/frame/XFrameActionListener.hpp>
|
|
#include <com/sun/star/frame/XPopupMenuController.hpp>
|
|
#include <com/sun/star/awt/XSystemDependentMenuPeer.hpp>
|
|
#include <com/sun/star/container/XIndexAccess.hpp>
|
|
#include <com/sun/star/frame/XUIControllerFactory.hpp>
|
|
#include <com/sun/star/ui/XUIConfigurationListener.hpp>
|
|
#include <com/sun/star/ui/XImageManager.hpp>
|
|
#include <com/sun/star/ui/XAcceleratorConfiguration.hpp>
|
|
#include <com/sun/star/util/XURLTransformer.hpp>
|
|
|
|
#include <rtl/ustring.hxx>
|
|
#include <vcl/menu.hxx>
|
|
#include <vcl/timer.hxx>
|
|
#include <comphelper/compbase.hxx>
|
|
#include <cppuhelper/weakref.hxx>
|
|
#include <framework/addonsoptions.hxx>
|
|
|
|
namespace framework
|
|
{
|
|
|
|
struct PopupControllerEntry
|
|
{
|
|
css::uno::WeakReference< css::frame::XDispatchProvider > m_xDispatchProvider;
|
|
};
|
|
|
|
typedef std::unordered_map< OUString, PopupControllerEntry > PopupControllerCache;
|
|
|
|
class MenuBarManager final :
|
|
public comphelper::WeakComponentImplHelper<
|
|
css::frame::XStatusListener,
|
|
css::frame::XFrameActionListener,
|
|
css::ui::XUIConfigurationListener,
|
|
css::awt::XSystemDependentMenuPeer>
|
|
{
|
|
public:
|
|
MenuBarManager(
|
|
const css::uno::Reference< css::uno::XComponentContext >& xContext,
|
|
const css::uno::Reference< css::frame::XFrame >& rFrame,
|
|
const css::uno::Reference< css::util::XURLTransformer >& _xURLTransformer,
|
|
const css::uno::Reference< css::frame::XDispatchProvider >& rDispatchProvider,
|
|
const OUString& aModuleIdentifier,
|
|
Menu* pMenu,
|
|
bool bDelete,
|
|
bool bHasMenuBar = true );
|
|
|
|
virtual ~MenuBarManager() override;
|
|
|
|
// XStatusListener
|
|
virtual void SAL_CALL statusChanged( const css::frame::FeatureStateEvent& Event ) override;
|
|
|
|
// XFrameActionListener
|
|
virtual void SAL_CALL frameAction( const css::frame::FrameActionEvent& Action ) override;
|
|
|
|
// XEventListener
|
|
virtual void SAL_CALL disposing( const css::lang::EventObject& Source ) override;
|
|
|
|
// XUIConfigurationListener
|
|
virtual void SAL_CALL elementInserted( const css::ui::ConfigurationEvent& Event ) override;
|
|
virtual void SAL_CALL elementRemoved( const css::ui::ConfigurationEvent& Event ) override;
|
|
virtual void SAL_CALL elementReplaced( const css::ui::ConfigurationEvent& Event ) override;
|
|
|
|
// XSystemDependentMenuPeer
|
|
virtual css::uno::Any SAL_CALL getMenuHandle( const css::uno::Sequence< sal_Int8 >& ProcessId, sal_Int16 SystemType ) override;
|
|
|
|
DECL_LINK( Select, Menu *, bool );
|
|
|
|
Menu* GetMenuBar() const { return m_pVCLMenu; }
|
|
|
|
// Configuration methods
|
|
static void FillMenuWithConfiguration( sal_uInt16& nId, Menu* pMenu,
|
|
const OUString& rModuleIdentifier,
|
|
const css::uno::Reference< css::container::XIndexAccess >& rItemContainer,
|
|
const css::uno::Reference< css::util::XURLTransformer >& rTransformer );
|
|
static void FillMenu( sal_uInt16& nId,
|
|
Menu* pMenu,
|
|
const OUString& rModuleIdentifier,
|
|
const css::uno::Reference< css::container::XIndexAccess >& rItemContainer,
|
|
const css::uno::Reference< css::frame::XDispatchProvider >& rDispatchProvider );
|
|
|
|
void FillMenuManager( Menu* pMenu,
|
|
const css::uno::Reference< css::frame::XFrame >& rFrame,
|
|
const css::uno::Reference< css::frame::XDispatchProvider >& rDispatchProvider,
|
|
const OUString& rModuleIdentifier,
|
|
bool bDelete );
|
|
void SetItemContainer( const css::uno::Reference< css::container::XIndexAccess >& rItemContainer );
|
|
void GetPopupController( PopupControllerCache& rPopupController );
|
|
|
|
private:
|
|
DECL_LINK( Activate, Menu *, bool );
|
|
DECL_LINK( Deactivate, Menu *, bool );
|
|
DECL_LINK( AsyncSettingsHdl, Timer *, void );
|
|
|
|
void disposing(std::unique_lock<std::mutex>&) override;
|
|
void RemoveListener();
|
|
void RequestImages();
|
|
void RetrieveImageManagers();
|
|
static bool MustBeHidden( PopupMenu* pPopupMenu, const css::uno::Reference< css::util::XURLTransformer >& rTransformer );
|
|
OUString RetrieveLabelFromCommand(const OUString& rCmdURL);
|
|
|
|
struct MenuItemHandler
|
|
{
|
|
MenuItemHandler( sal_uInt16 aItemId,
|
|
rtl::Reference< MenuBarManager > xManager,
|
|
css::uno::Reference< css::frame::XDispatch > xDispatch ) :
|
|
nItemId( aItemId ),
|
|
bMadeInvisible ( false ),
|
|
xSubMenuManager(std::move( xManager )),
|
|
xMenuItemDispatch(std::move( xDispatch )) {}
|
|
|
|
sal_uInt16 nItemId;
|
|
bool bMadeInvisible;
|
|
OUString aTargetFrame;
|
|
OUString aMenuItemURL;
|
|
OUString aParsedItemURL;
|
|
rtl::Reference< MenuBarManager > xSubMenuManager;
|
|
css::uno::Reference< css::frame::XDispatch > xMenuItemDispatch;
|
|
css::uno::Reference< css::frame::XPopupMenuController > xPopupMenuController;
|
|
css::uno::Reference< css::awt::XPopupMenu > xPopupMenu;
|
|
vcl::KeyCode aKeyCode;
|
|
};
|
|
|
|
void RetrieveShortcuts( std::vector< std::unique_ptr<MenuItemHandler> >& aMenuShortCuts );
|
|
static void FillMenuImages( css::uno::Reference< css::frame::XFrame > const & xFrame, Menu* _pMenu, bool bShowMenuImages );
|
|
static void impl_RetrieveShortcutsFromConfiguration( const css::uno::Reference< css::ui::XAcceleratorConfiguration >& rAccelCfg,
|
|
const css::uno::Sequence< OUString >& rCommands,
|
|
std::vector< std::unique_ptr<MenuItemHandler> >& aMenuShortCuts );
|
|
static void MergeAddonMenus( Menu* pMenuBar, const MergeMenuInstructionContainer&, const OUString& aModuleIdentifier );
|
|
|
|
MenuItemHandler* GetMenuItemHandler( sal_uInt16 nItemId );
|
|
bool CreatePopupMenuController( MenuItemHandler* pMenuItemHandler,
|
|
const css::uno::Reference< css::frame::XDispatchProvider >& rDispatchProvider,
|
|
const OUString& rModuleIdentifier );
|
|
void AddMenu(MenuBarManager* pSubMenuManager,const OUString& _sItemCommand,sal_uInt16 _nItemId);
|
|
static sal_uInt16 FillItemCommand(OUString& _rItemCommand, Menu* _pMenu,sal_uInt16 _nIndex);
|
|
void SetHdl();
|
|
|
|
bool m_bDeleteMenu;
|
|
bool m_bActive;
|
|
bool m_bShowMenuImages;
|
|
bool m_bRetrieveImages;
|
|
bool m_bAcceleratorCfg;
|
|
bool m_bHasMenuBar;
|
|
OUString m_aModuleIdentifier;
|
|
VclPtr<Menu> m_pVCLMenu;
|
|
css::uno::Reference< css::frame::XFrame > m_xFrame;
|
|
css::uno::Reference< css::frame::XUIControllerFactory > m_xPopupMenuControllerFactory;
|
|
::std::vector< std::unique_ptr<MenuItemHandler> > m_aMenuItemHandlerVector;
|
|
css::uno::Reference< css::frame::XDispatchProvider > m_xDispatchProvider;
|
|
css::uno::Reference< css::ui::XImageManager > m_xDocImageManager;
|
|
css::uno::Reference< css::ui::XImageManager > m_xModuleImageManager;
|
|
css::uno::Reference< css::ui::XAcceleratorConfiguration > m_xDocAcceleratorManager;
|
|
css::uno::Reference< css::ui::XAcceleratorConfiguration > m_xModuleAcceleratorManager;
|
|
css::uno::Reference< css::ui::XAcceleratorConfiguration > m_xGlobalAcceleratorManager;
|
|
css::uno::Reference< css::uno::XComponentContext > m_xContext;
|
|
css::uno::Reference< css::util::XURLTransformer > m_xURLTransformer;
|
|
css::uno::Reference< css::container::XIndexAccess > m_xDeferredItemContainer;
|
|
OUString m_sIconTheme;
|
|
Timer m_aAsyncSettingsTimer;
|
|
};
|
|
|
|
} // namespace
|
|
|
|
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|