lok: calc - send other views our selection in their co-ordinates.
[LibreOffice.git] / include / vcl / tabctrl.hxx
blobcf058d7a1e79dcc5072411c629735e3e086965dd
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 #ifndef INCLUDED_VCL_TABCTRL_HXX
21 #define INCLUDED_VCL_TABCTRL_HXX
23 #include <vcl/dllapi.h>
24 #include <vcl/ctrl.hxx>
25 #include <vcl/toolbox.hxx>
26 #include <vcl/button.hxx>
27 #include <vcl/EnumContext.hxx>
28 #include <vcl/NotebookbarContextControl.hxx>
30 class ImplTabItem;
31 struct ImplTabCtrlData;
32 class TabPage;
33 class ListBox;
35 #ifndef TAB_APPEND
36 #define TAB_APPEND (sal_uInt16(0xFFFF))
37 #define TAB_PAGE_NOTFOUND (sal_uInt16(0xFFFF))
38 #endif /* !TAB_APPEND */
40 #define TAB_OFFSET 3
41 #define TAB_TABOFFSET_X 3
42 #define TAB_TABOFFSET_Y 3
43 #define TAB_EXTRASPACE_X 6
44 #define TAB_BORDER_LEFT 1
45 #define TAB_BORDER_TOP 1
46 #define TAB_BORDER_RIGHT 2
47 #define TAB_BORDER_BOTTOM 2
49 class VCL_DLLPUBLIC TabControl : public Control
51 protected:
52 std::unique_ptr<ImplTabCtrlData> mpTabCtrlData;
53 long mnLastWidth;
54 long mnLastHeight;
55 sal_uInt16 mnActPageId;
56 sal_uInt16 mnCurPageId;
57 bool mbFormat;
58 bool mbRestoreHelpId;
59 bool mbSmallInvalidate;
60 bool mbLayoutDirty;
61 Link<TabControl*,void> maActivateHdl;
62 Link<TabControl*,bool> maDeactivateHdl;
64 using Control::ImplInitSettings;
65 SAL_DLLPRIVATE void ImplInitSettings( bool bBackground );
66 SAL_DLLPRIVATE ImplTabItem* ImplGetItem( sal_uInt16 nId ) const;
67 SAL_DLLPRIVATE ImplTabItem* ImplGetItem(const Point& rPt) const;
68 SAL_DLLPRIVATE Size ImplGetItemSize( ImplTabItem* pItem, long nMaxWidth );
69 SAL_DLLPRIVATE tools::Rectangle ImplGetTabRect( sal_uInt16 nPos, long nWidth = -1, long nHeight = -1 );
70 SAL_DLLPRIVATE tools::Rectangle ImplGetTabRect(const ImplTabItem*, long nWidth = -1, long nHeight = -1);
71 SAL_DLLPRIVATE void ImplChangeTabPage( sal_uInt16 nId, sal_uInt16 nOldId );
72 SAL_DLLPRIVATE bool ImplPosCurTabPage();
73 virtual void ImplActivateTabPage( bool bNext );
74 SAL_DLLPRIVATE void ImplShowFocus();
75 SAL_DLLPRIVATE void ImplDrawItem(vcl::RenderContext& rRenderContext, ImplTabItem const * pItem,
76 const tools::Rectangle& rCurRect, bool bFirstInGroup,
77 bool bLastInGroup);
78 SAL_DLLPRIVATE void ImplFreeLayoutData();
79 SAL_DLLPRIVATE bool ImplHandleKeyEvent( const KeyEvent& rKeyEvent );
81 DECL_DLLPRIVATE_LINK( ImplListBoxSelectHdl, ListBox&, void );
82 DECL_DLLPRIVATE_LINK( ImplWindowEventListener, VclWindowEvent&, void );
84 using Window::ImplInit;
85 SAL_DLLPRIVATE void ImplInit( vcl::Window* pParent, WinBits nStyle );
87 virtual void FillLayoutData() const override;
88 virtual const vcl::Font& GetCanonicalFont( const StyleSettings& _rStyle ) const override;
89 virtual const Color& GetCanonicalTextColor( const StyleSettings& _rStyle ) const override;
90 virtual bool ImplPlaceTabs( long nWidth );
91 SAL_DLLPRIVATE Size ImplCalculateRequisition(sal_uInt16& nHeaderHeight) const;
93 public:
94 TabControl( vcl::Window* pParent,
95 WinBits nStyle = WB_STDTABCONTROL );
96 virtual ~TabControl() override;
97 virtual void dispose() override;
99 virtual void MouseButtonDown( const MouseEvent& rMEvt ) override;
100 virtual void KeyInput( const KeyEvent& rKEvt ) override;
101 virtual void Paint( vcl::RenderContext& rRenderContext, const tools::Rectangle& rRect ) override;
102 virtual void Resize() override;
103 virtual void GetFocus() override;
104 virtual void LoseFocus() override;
105 virtual void RequestHelp( const HelpEvent& rHEvt ) override;
106 virtual void Command( const CommandEvent& rCEvt ) override;
107 virtual bool EventNotify( NotifyEvent& rNEvt ) override;
108 virtual void StateChanged( StateChangedType nType ) override;
109 virtual void DataChanged( const DataChangedEvent& rDCEvt ) override;
110 virtual bool PreNotify( NotifyEvent& rNEvt ) override;
112 virtual void ActivatePage();
113 bool DeactivatePage();
115 virtual Size GetOptimalSize() const override;
117 void SetTabPageSizePixel( const Size& rSize );
119 // pixel offset for the tab items, default is (0,0)
120 void SetItemsOffset( const Point& rOffs );
121 Point GetItemsOffset() const;
123 void InsertPage( sal_uInt16 nPageId, const OUString& rText,
124 sal_uInt16 nPos = TAB_APPEND );
125 void RemovePage( sal_uInt16 nPageId );
127 void SetPageEnabled(sal_uInt16 nPageId, bool bEnable = true);
128 void SetPageVisible(sal_uInt16 nPageId, bool bVisible = true);
130 sal_uInt16 GetPagePos( sal_uInt16 nPageId ) const;
131 sal_uInt16 GetPageCount() const;
132 sal_uInt16 GetPageId( sal_uInt16 nPos ) const;
133 sal_uInt16 GetPageId(const Point& rPos) const;
134 sal_uInt16 GetPageId( const OString& rName ) const;
136 void SetCurPageId(sal_uInt16 nPageId);
137 sal_uInt16 GetCurPageId() const;
139 void SelectTabPage( sal_uInt16 nPageId );
141 void SetTabPage(sal_uInt16 nPageId, TabPage* pPage);
142 TabPage* GetTabPage( sal_uInt16 nPageId ) const;
144 void SetPageText( sal_uInt16 nPageId, const OUString& rText );
145 OUString const & GetPageText( sal_uInt16 nPageId ) const;
147 void SetHelpText( sal_uInt16 nPageId, const OUString& rText );
148 const OUString& GetHelpText( sal_uInt16 nPageId ) const;
150 void SetPageName( sal_uInt16 nPageId, const OString& rName ) const;
151 OString GetPageName( sal_uInt16 nPageId ) const;
153 void SetPageImage( sal_uInt16 nPageId, const Image& rImage );
155 using Control::SetHelpId;
156 using Control::GetHelpId;
158 void SetActivatePageHdl( const Link<TabControl*,void>& rLink ) { maActivateHdl = rLink; }
159 void SetDeactivatePageHdl( const Link<TabControl*, bool>& rLink ) { maDeactivateHdl = rLink; }
161 // returns (control relative) bounding rectangle for the
162 // character at index nIndex relative to the text of page nPageId
163 using Control::GetCharacterBounds;
164 tools::Rectangle GetCharacterBounds( sal_uInt16 nPageId, long nIndex ) const;
166 // returns the index relative to the text of page nPageId (also returned)
167 // at position rPoint (control relative)
168 using Control::GetIndexForPoint;
169 long GetIndexForPoint( const Point& rPoint, sal_uInt16& rPageId ) const;
171 // returns the rectangle of the tab for page nPageId
172 tools::Rectangle GetTabBounds( sal_uInt16 nPageId ) const;
174 virtual void SetPosPixel(const Point& rPos) override;
175 virtual void SetSizePixel(const Size& rNewSize) override;
176 virtual void SetPosSizePixel(const Point& rNewPos, const Size& rNewSize) override;
178 virtual Size calculateRequisition() const;
179 void setAllocation(const Size &rAllocation);
181 std::vector<sal_uInt16> GetPageIDs() const;
183 virtual FactoryFunction GetUITestFactory() const override;
185 virtual void queue_resize(StateChangedType eReason = StateChangedType::Layout) override;
188 class NotebookBar;
190 class VCL_DLLPUBLIC NotebookbarTabControlBase : public TabControl,
191 public NotebookbarContextControl
193 public:
194 NotebookbarTabControlBase( vcl::Window* pParent );
195 ~NotebookbarTabControlBase() override;
196 void dispose() override;
198 void SetContext( vcl::EnumContext::Context eContext ) override;
199 void SetIconClickHdl( Link<NotebookBar*, void> aHdl );
200 void SetToolBox( ToolBox* pToolBox );
201 ToolBox* GetToolBox() { return m_pShortcuts; }
202 PushButton* GetOpenMenu() { return m_pOpenMenu; }
204 virtual Size calculateRequisition() const override;
205 static sal_uInt16 GetHeaderHeight();
207 protected:
208 virtual bool ImplPlaceTabs( long nWidth ) override;
209 virtual void ImplActivateTabPage( bool bNext ) override;
211 private:
212 bool bLastContextWasSupported;
213 vcl::EnumContext::Context eLastContext;
214 Link<NotebookBar*,void> m_aIconClickHdl;
215 static sal_uInt16 m_nHeaderHeight;
216 VclPtr<ToolBox> m_pShortcuts;
217 VclPtr<PushButton> m_pOpenMenu;
218 DECL_LINK(OpenMenu, Button*, void);
221 #endif // INCLUDED_VCL_TABCTRL_HXX
223 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */