1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
|
/* -*- 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 <sfx2/sidebar/ResourceManager.hxx>
#include <vcl/InterimItemWindow.hxx>
#include <functional>
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
{
friend class TabBarUIObject;
public:
typedef ::std::function<void (
weld::Menu& rMainMenu, weld::Menu& rSubMenu)> PopupMenuSignalConnectFunction;
TabBar (
vcl::Window* pParentWindow,
const css::uno::Reference<css::frame::XFrame>& rxFrame,
::std::function<void (const OUString& rsDeckId)> aDeckActivationFunctor,
PopupMenuSignalConnectFunction aPopupMenuSignalConnectFunction,
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 UpdateFocusManager (FocusManager& rFocusManager);
/// Enables/Disables the menu button. Used by LoKit.
void EnableMenuButton(const bool bEnable);
void UpdateMenus();
virtual FactoryFunction GetUITestFactory() const override;
private:
css::uno::Reference<css::frame::XFrame> 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<weld::Builder> mxAuxBuilder;
std::unique_ptr<weld::Box> mxTempToplevel;
std::unique_ptr<weld::Widget> mxContents;
std::unique_ptr<weld::MenuButton> mxMenuButton;
std::unique_ptr<weld::Menu> mxMainMenu;
std::unique_ptr<weld::Menu> mxSubMenu;
std::unique_ptr<weld::Widget> mxMeasureBox;
class Item
{
private:
TabBar& mrTabBar;
std::unique_ptr<weld::Builder> mxBuilder;
public:
Item(TabBar& rTabBar);
~Item();
DECL_LINK(HandleClick, const OUString&, void);
std::unique_ptr<weld::Toolbar> mxButton;
OUString msDeckId;
typedef ::std::function<void (const OUString& rsDeckId)> DeckActivationFunctor;
DeckActivationFunctor maDeckActivationFunctor;
bool mbIsHidden;
bool mbIsHiddenByDefault;
};
typedef ::std::vector<std::unique_ptr<Item>> ItemContainer;
ItemContainer maItems;
const Item::DeckActivationFunctor maDeckActivationFunctor;
void CreateTabItem(weld::Toolbar& rButton, const DeckDescriptor& rDeckDescriptor);
css::uno::Reference<css::graphic::XGraphic> GetItemImage(const DeckDescriptor& rDeskDescriptor) const;
void UpdateButtonIcons();
SidebarController& mrParentSidebarController;
};
} // end of namespace sfx2::sidebar
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|