/* -*- 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 #include #include namespace com::sun::star::frame { class XFrame; } namespace svt { class AcceleratorExecute; } namespace weld { class Toolbar; } namespace sfx2::sidebar { class FocusManager; class SidebarController; /** The tab bar is the container for the individual tabs. */ class TabBar final : public InterimItemWindow { public: /** DeckMenuData has entries for display name, and a flag: - isCurrentDeck for the deck selection data - isEnabled for the show/hide menu */ class DeckMenuData { public: OUString msDisplayName; bool mbIsCurrentDeck; bool mbIsActive; bool mbIsEnabled; }; typedef ::std::function& rMenuData)> PopupMenuProvider; TabBar ( vcl::Window* pParentWindow, const css::uno::Reference& rxFrame, const ::std::function& rDeckActivationFunctor, const PopupMenuProvider& rPopupMenuProvider, SidebarController* rParentSidebarController); weld::Container* GetContainer() { return m_xContainer.get(); } virtual ~TabBar() override; virtual void dispose() override; virtual void DataChanged (const DataChangedEvent& rDataChangedEvent) override; virtual bool EventNotify (NotifyEvent& rEvent) override; static sal_Int32 GetDefaultWidth(); void SetDecks ( const ResourceManager::DeckContextDescriptorContainer& rDecks); void HighlightDeck (std::u16string_view rsDeckId); void RemoveDeckHighlight (); OUString const & GetDeckIdForIndex (const sal_Int32 nIndex) const; void ToggleHideFlag (const sal_Int32 nIndex); void RestoreHideFlags(); void UpdateFocusManager (FocusManager& rFocusManager); /// Enables/Disables the menu button. Used by LoKit. void EnableMenuButton(const bool bEnable); private: css::uno::Reference mxFrame; // This unusual auxiliary builder is because without a toplevel GtkWindow // gtk will warn on loading a .ui with an accelerator defined, so use a // temporary toplevel to suppress that and move the contents after load std::unique_ptr mxAuxBuilder; std::unique_ptr mxTempToplevel; std::unique_ptr mxContents; std::unique_ptr mxMenuButton; std::unique_ptr mxMainMenu; std::unique_ptr mxSubMenu; std::unique_ptr mxMeasureBox; class Item { private: TabBar& mrTabBar; std::unique_ptr mxBuilder; public: Item(TabBar& rTabBar); ~Item(); DECL_LINK(HandleClick, const OString&, void); std::unique_ptr mxButton; OUString msDeckId; ::std::function maDeckActivationFunctor; bool mbIsHidden; bool mbIsHiddenByDefault; }; typedef ::std::vector> ItemContainer; ItemContainer maItems; const ::std::function maDeckActivationFunctor; PopupMenuProvider maPopupMenuProvider; void CreateTabItem(weld::Toolbar& rButton, const DeckDescriptor& rDeckDescriptor); css::uno::Reference GetItemImage(const DeckDescriptor& rDeskDescriptor) const; void UpdateButtonIcons(); DECL_LINK(OnToolboxClicked, weld::Toggleable&, void); SidebarController* pParentSidebarController; std::unique_ptr mpAccel; }; } // end of namespace sfx2::sidebar /* vim:set shiftwidth=4 softtabstop=4 expandtab: */