LibreOffice Module vcl (master) 1
tabctrl.hxx
Go to the documentation of this file.
1/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2/*
3 * This file is part of the LibreOffice project.
4 *
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/.
8 *
9 * This file incorporates work covered by the following license notice:
10 *
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 .
18 */
19
20#ifndef INCLUDED_VCL_TABCTRL_HXX
21#define INCLUDED_VCL_TABCTRL_HXX
22
23#include <config_options.h>
24#include <vcl/dllapi.h>
25#include <vcl/ctrl.hxx>
26#include <vcl/EnumContext.hxx>
28
29class ImplTabItem;
30struct ImplTabCtrlData;
31class TabPage;
32class Button;
33class PushButton;
34class ListBox;
35class ToolBox;
36
37#ifndef TAB_APPEND
38#define TAB_APPEND (sal_uInt16(0xFFFF))
39#define TAB_PAGE_NOTFOUND (sal_uInt16(0xFFFF))
40#endif /* !TAB_APPEND */
41
43{
44protected:
45 std::unique_ptr<ImplTabCtrlData> mpTabCtrlData;
48 sal_uInt16 mnActPageId;
49 sal_uInt16 mnCurPageId;
57
59 SAL_DLLPRIVATE void ImplInitSettings( bool bBackground );
60 SAL_DLLPRIVATE ImplTabItem* ImplGetItem( sal_uInt16 nId ) const;
61 SAL_DLLPRIVATE ImplTabItem* ImplGetItem(const Point& rPt) const;
62 SAL_DLLPRIVATE Size ImplGetItemSize( ImplTabItem* pItem, tools::Long nMaxWidth );
63 SAL_DLLPRIVATE tools::Rectangle ImplGetTabRect( sal_uInt16 nPos, tools::Long nWidth = -1, tools::Long nHeight = -1 );
64 SAL_DLLPRIVATE tools::Rectangle ImplGetTabRect(const ImplTabItem*, tools::Long nWidth, tools::Long nHeight);
65 SAL_DLLPRIVATE void ImplChangeTabPage( sal_uInt16 nId, sal_uInt16 nOldId );
66 SAL_DLLPRIVATE bool ImplPosCurTabPage();
67 virtual void ImplActivateTabPage( bool bNext );
68 SAL_DLLPRIVATE void ImplShowFocus();
69 SAL_DLLPRIVATE void ImplDrawItem(vcl::RenderContext& rRenderContext, ImplTabItem const * pItem,
70 const tools::Rectangle& rCurRect, bool bFirstInGroup,
71 bool bLastInGroup);
72 SAL_DLLPRIVATE bool ImplHandleKeyEvent( const KeyEvent& rKeyEvent );
73
74 DECL_DLLPRIVATE_LINK( ImplListBoxSelectHdl, ListBox&, void );
75 DECL_DLLPRIVATE_LINK( ImplWindowEventListener, VclWindowEvent&, void );
76
77 using Window::ImplInit;
78 SAL_DLLPRIVATE void ImplInit( vcl::Window* pParent, WinBits nStyle );
79
80 virtual const vcl::Font& GetCanonicalFont( const StyleSettings& _rStyle ) const override;
81 virtual const Color& GetCanonicalTextColor( const StyleSettings& _rStyle ) const override;
82 virtual bool ImplPlaceTabs( tools::Long nWidth );
83 SAL_DLLPRIVATE Size ImplCalculateRequisition(sal_uInt16& nHeaderHeight) const;
84
85public:
86 TabControl( vcl::Window* pParent,
87 WinBits nStyle = WB_STDTABCONTROL );
88 virtual ~TabControl() override;
89 virtual void dispose() override;
90
91 virtual void MouseButtonDown( const MouseEvent& rMEvt ) override;
92 virtual void KeyInput( const KeyEvent& rKEvt ) override;
93 virtual void Paint( vcl::RenderContext& rRenderContext, const tools::Rectangle& rRect ) override;
94 virtual void Resize() override;
95 virtual void GetFocus() override;
96 virtual void LoseFocus() override;
97 virtual void RequestHelp( const HelpEvent& rHEvt ) override;
98 virtual void Command( const CommandEvent& rCEvt ) override;
99 virtual bool EventNotify( NotifyEvent& rNEvt ) override;
100 virtual void StateChanged( StateChangedType nType ) override;
101 virtual void DataChanged( const DataChangedEvent& rDCEvt ) override;
102 virtual bool PreNotify( NotifyEvent& rNEvt ) override;
103
104 void ActivatePage();
105 bool DeactivatePage();
106
107 virtual Size GetOptimalSize() const override;
108
109 void SetTabPageSizePixel( const Size& rSize );
110
111 void InsertPage( sal_uInt16 nPageId, const OUString& rText,
112 sal_uInt16 nPos = TAB_APPEND );
113 void RemovePage( sal_uInt16 nPageId );
114
115 void SetPageEnabled(sal_uInt16 nPageId, bool bEnable = true);
116 void SetPageVisible(sal_uInt16 nPageId, bool bVisible = true);
117
118 sal_uInt16 GetPagePos( sal_uInt16 nPageId ) const;
119 sal_uInt16 GetPageCount() const;
120 sal_uInt16 GetPageId( sal_uInt16 nPos ) const;
121 sal_uInt16 GetPageId(const Point& rPos) const;
122 sal_uInt16 GetPageId( const OUString& rName ) const;
123
124 void SetCurPageId(sal_uInt16 nPageId);
125 sal_uInt16 GetCurPageId() const;
126
127 void SelectTabPage( sal_uInt16 nPageId );
128
129 void SetTabPage(sal_uInt16 nPageId, TabPage* pPage);
130 TabPage* GetTabPage( sal_uInt16 nPageId ) const;
131
132 void SetPageText( sal_uInt16 nPageId, const OUString& rText );
133 OUString const & GetPageText( sal_uInt16 nPageId ) const;
134
135 void SetHelpText( sal_uInt16 nPageId, const OUString& rText );
136 const OUString& GetHelpText( sal_uInt16 nPageId ) const;
137
138 void SetPageName( sal_uInt16 nPageId, const OUString& rName ) const;
139 OUString GetPageName( sal_uInt16 nPageId ) const;
140
141 void SetAccessibleName( sal_uInt16 nItemId, const OUString& rStr );
142 OUString GetAccessibleName( sal_uInt16 nItemId ) const;
143
144 void SetAccessibleDescription( sal_uInt16 nItemId, const OUString& rStr );
145 OUString GetAccessibleDescription( sal_uInt16 nItemId ) const;
146
147 void SetPageImage( sal_uInt16 nPageId, const Image& rImage );
148
149 using Control::SetHelpId;
150 using Control::GetHelpId;
151
152 void SetActivatePageHdl( const Link<TabControl*,void>& rLink ) { maActivateHdl = rLink; }
153 void SetDeactivatePageHdl( const Link<TabControl*, bool>& rLink ) { maDeactivateHdl = rLink; }
154
155 // returns the rectangle of the tab for page nPageId
156 tools::Rectangle GetTabBounds( sal_uInt16 nPageId ) const;
157
158 virtual void SetPosPixel(const Point& rPos) override;
159 virtual void SetSizePixel(const Size& rNewSize) override;
160 virtual void SetPosSizePixel(const Point& rNewPos, const Size& rNewSize) override;
161
162 virtual Size calculateRequisition() const;
163 void setAllocation(const Size &rAllocation);
164
165 std::vector<sal_uInt16> GetPageIDs() const;
166
167 virtual FactoryFunction GetUITestFactory() const override;
168
169 virtual void queue_resize(StateChangedType eReason = StateChangedType::Layout) override;
170
171 virtual bool set_property(const OUString &rKey, const OUString &rValue) override;
172
173 virtual void DumpAsPropertyTree(tools::JsonWriter&) override;
174};
175
176class NotebookBar;
177
178class UNLESS_MERGELIBS(VCL_DLLPUBLIC) NotebookbarTabControlBase : public TabControl,
179 public NotebookbarContextControl
180{
181public:
182 NotebookbarTabControlBase( vcl::Window* pParent );
183 ~NotebookbarTabControlBase() override;
184 void dispose() override;
185
186 void SetContext( vcl::EnumContext::Context eContext ) override;
187 void SetIconClickHdl( Link<NotebookBar*, void> aHdl );
188 void SetToolBox( ToolBox* pToolBox );
189 ToolBox* GetToolBox() { return m_pShortcuts; }
190 Control* GetOpenMenu();
191
192 virtual Size calculateRequisition() const override;
193 static sal_uInt16 GetHeaderHeight();
194
195protected:
196 virtual bool ImplPlaceTabs( tools::Long nWidth ) override;
197 virtual void ImplActivateTabPage( bool bNext ) override;
198
199private:
200 bool bLastContextWasSupported;
201 vcl::EnumContext::Context eLastContext;
202 Link<NotebookBar*,void> m_aIconClickHdl;
203 static sal_uInt16 m_nHeaderHeight;
204 VclPtr<ToolBox> m_pShortcuts;
205 VclPtr<PushButton> m_pOpenMenu;
206 DECL_DLLPRIVATE_LINK(OpenMenu, Button*, void);
207};
208
209#endif // INCLUDED_VCL_TABCTRL_HXX
210
211/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
Definition: ctrl.hxx:80
virtual const Color & GetCanonicalTextColor(const StyleSettings &_rStyle) const
Definition: ctrl.cxx:408
virtual bool EventNotify(NotifyEvent &rNEvt) override
Definition: ctrl.cxx:225
virtual void StateChanged(StateChangedType nStateChange) override
Definition: ctrl.cxx:256
virtual void Resize() override
Definition: ctrl.cxx:77
virtual Size GetOptimalSize() const override
Definition: ctrl.cxx:369
void ImplInitSettings()
Definition: ctrl.cxx:423
virtual const vcl::Font & GetCanonicalFont(const StyleSettings &_rStyle) const
Definition: ctrl.cxx:403
virtual void dispose() override
This is intended to be used to clear any locally held references to other Window-subclass objects.
Definition: ctrl.cxx:61
Definition: image.hxx:40
A widget used to choose from a list of items and which has no entry.
Definition: lstbox.hxx:83
This implements Widget Layout-based notebook-like menu bar.
Definition: notebookbar.hxx:28
Some things multiple-inherit from VclAbstractDialog and OutputDevice, so we need to use virtual inher...
Definition: outdev.hxx:170
bool mbShowTabs
Definition: tabctrl.hxx:51
void SetDeactivatePageHdl(const Link< TabControl *, bool > &rLink)
Definition: tabctrl.hxx:153
bool mbRestoreHelpId
Definition: tabctrl.hxx:52
virtual Size calculateRequisition() const
Definition: tabctrl.cxx:2104
Link< TabControl *, bool > maDeactivateHdl
Definition: tabctrl.hxx:56
DECL_DLLPRIVATE_LINK(ImplWindowEventListener, VclWindowEvent &, void)
sal_uInt16 mnCurPageId
Definition: tabctrl.hxx:49
std::unique_ptr< ImplTabCtrlData > mpTabCtrlData
Definition: tabctrl.hxx:45
DECL_DLLPRIVATE_LINK(ImplListBoxSelectHdl, ListBox &, void)
virtual void dispose() override
This is intended to be used to clear any locally held references to other Window-subclass objects.
Definition: tabctrl.cxx:200
tools::Long mnLastWidth
Definition: tabctrl.hxx:46
virtual void ImplActivateTabPage(bool bNext)
Definition: tabctrl.cxx:732
bool mbSmallInvalidate
Definition: tabctrl.hxx:53
sal_uInt16 mnActPageId
Definition: tabctrl.hxx:48
bool mbLayoutDirty
Definition: tabctrl.hxx:54
virtual bool ImplPlaceTabs(tools::Long nWidth)
Definition: tabctrl.cxx:391
bool mbFormat
Definition: tabctrl.hxx:50
Link< TabControl *, void > maActivateHdl
Definition: tabctrl.hxx:55
void SetActivatePageHdl(const Link< TabControl *, void > &rLink)
Definition: tabctrl.hxx:152
tools::Long mnLastHeight
Definition: tabctrl.hxx:47
A toolbar: contains all those icons, typically below the menu bar.
Definition: toolbox.hxx:74
virtual void GetFocus()
Definition: window.cxx:1841
virtual void RequestHelp(const HelpEvent &rHEvt)
Definition: window.cxx:1869
void SetHelpText(const OUString &rHelpText)
Definition: window2.cxx:1246
virtual void SetSizePixel(const Size &rNewSize)
Definition: window2.cxx:1288
virtual void Command(const CommandEvent &rCEvt)
Definition: window.cxx:1923
virtual void queue_resize(StateChangedType eReason=StateChangedType::Layout)
Definition: window2.cxx:1353
virtual void MouseButtonDown(const MouseEvent &rMEvt)
Definition: mouse.cxx:420
void SetAccessibleDescription(const OUString &rDescr)
virtual void KeyInput(const KeyEvent &rKEvt)
Definition: window.cxx:1805
virtual void Paint(vcl::RenderContext &rRenderContext, const tools::Rectangle &rRect)
Definition: paint.cxx:1020
const OUString & GetHelpId() const
Definition: window2.cxx:859
virtual bool PreNotify(NotifyEvent &rNEvt)
Definition: event.cxx:52
void SetAccessibleName(const OUString &rName)
virtual void DumpAsPropertyTree(tools::JsonWriter &)
Dumps itself and potentially its children to a property tree, to be written easily to JSON.
Definition: window.cxx:3356
virtual void DataChanged(const DataChangedEvent &rDCEvt)
Definition: event.cxx:36
virtual void LoseFocus()
Definition: window.cxx:1855
OUString GetAccessibleName() const
virtual void SetPosPixel(const Point &rNewPos)
Definition: window2.cxx:1283
virtual bool set_property(const OUString &rKey, const OUString &rValue)
Definition: window2.cxx:1478
virtual void SetPosSizePixel(const Point &rNewPos, const Size &rNewSize)
Definition: window2.cxx:1294
OUString GetAccessibleDescription() const
SAL_DLLPRIVATE void ImplInit(vcl::Window *pParent, WinBits nStyle, SystemParentData *pSystemParentData)
Definition: window.cxx:941
const OUString & GetHelpText() const
Definition: window.cxx:3090
virtual FactoryFunction GetUITestFactory() const
Definition: window.cxx:3941
void SetHelpId(const OUString &)
Definition: window2.cxx:854
virtual void SetCurPageId(const OUString &rName) override
#define VCL_DLLPUBLIC
Definition: dllapi.h:29
std::function< std::unique_ptr< UIObject >(vcl::Window *)> FactoryFunction
long Long
#define TAB_APPEND
Definition: tabctrl.hxx:38
StateChangedType
Definition: window.hxx:291
sal_Int64 WinBits
Definition: wintypes.hxx:109
WinBits const WB_STDTABCONTROL
Definition: wintypes.hxx:219