Version 7.6.3.2-android, tag libreoffice-7.6.3.2-android
[LibreOffice.git] / include / vcl / toolkit / ivctrl.hxx
blobca96bc8e5718d721f9f20e72959c1449b4e019f2
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 #pragma once
22 #if !defined(VCL_DLLIMPLEMENTATION) && !defined(TOOLKIT_DLLIMPLEMENTATION) && !defined(VCL_INTERNALS)
23 #error "don't use this in new code"
24 #endif
26 #include <memory>
27 #include <vcl/dllapi.h>
28 #include <vcl/ctrl.hxx>
29 #include <tools/link.hxx>
30 #include <vcl/image.hxx>
31 #include <o3tl/deleter.hxx>
32 #include <o3tl/typed_flags_set.hxx>
34 class SvxIconChoiceCtrl_Impl;
36 enum class SvxIconViewFlags
38 NONE = 0x0000,
39 POS_LOCKED = 0x0001,
40 SELECTED = 0x0002,
41 FOCUSED = 0x0004,
42 POS_MOVED = 0x0008, // Moved by Drag and Drop, but not logged
44 namespace o3tl
46 template<> struct typed_flags<SvxIconViewFlags> : is_typed_flags<SvxIconViewFlags, 0x000f> {};
49 enum class SvxIconChoiceCtrlTextMode
51 Full = 1, // Enlarge BoundRect southwards
52 Short // Shorten with "..."
55 enum class SvxIconChoiceCtrlPositionMode
57 Free, // Free pixel-perfect positioning
58 AutoArrange, // Auto arrange
61 class SvxIconChoiceCtrlEntry
63 Image aImage;
65 OUString aText;
66 OUString aQuickHelpText;
68 friend class SvxIconChoiceCtrl_Impl;
69 friend class IcnCursor_Impl;
70 friend class EntryList_Impl;
71 friend class IcnGridMap_Impl;
73 tools::Rectangle aRect; // Bounding-Rectangle of the entry
74 tools::Rectangle aGridRect; // Only valid in Grid-mode
75 sal_Int32 nPos;
78 The insert position in the Insertlist is equal to the (sort) order stated at the Insert
79 (-> Order of the anchors in the anchors-list!). In "AutoArrange" mode the visible order
80 can differ. The entries will be linked because of this.
82 SvxIconChoiceCtrlEntry* pblink; // backward (linker neighbour)
83 SvxIconChoiceCtrlEntry* pflink; // forward (rechter neighbour)
85 SvxIconChoiceCtrlTextMode eTextMode;
86 sal_uInt16 nX,nY; // for keyboard control
87 SvxIconViewFlags nFlags;
89 void ClearFlags( SvxIconViewFlags nMask ) { nFlags &= ~nMask; }
90 void SetFlags( SvxIconViewFlags nMask ) { nFlags |= nMask; }
91 void AssignFlags( SvxIconViewFlags _nFlags ) { nFlags = _nFlags; }
93 // set left neighbour (A <-> B ==> A <-> this <-> B)
94 void SetBacklink( SvxIconChoiceCtrlEntry* pA )
96 pA->pflink->pblink = this; // X <- B
97 this->pflink = pA->pflink; // X -> B
98 this->pblink = pA; // A <- X
99 pA->pflink = this; // A -> X
101 // Unlink (A <-> this <-> B ==> A <-> B)
102 void Unlink()
104 this->pblink->pflink = this->pflink;
105 this->pflink->pblink = this->pblink;
106 this->pflink = nullptr;
107 this->pblink = nullptr;
110 public:
111 SvxIconChoiceCtrlEntry( OUString aText, Image aImage );
113 const Image& GetImage () const { return aImage; }
114 void SetText ( const OUString& rText ) { aText = rText; }
115 const OUString& GetText () const { return aText; }
116 OUString VCL_DLLPUBLIC GetDisplayText() const;
117 void SetQuickHelpText( const OUString& rText ) { aQuickHelpText = rText; }
118 const OUString& GetQuickHelpText() const { return aQuickHelpText; }
120 SvxIconChoiceCtrlTextMode GetTextMode() const { return eTextMode; }
121 SvxIconViewFlags GetFlags() const { return nFlags; }
122 bool IsSelected() const { return bool(nFlags & SvxIconViewFlags::SELECTED); }
123 bool IsFocused() const { return bool(nFlags & SvxIconViewFlags::FOCUSED); }
124 bool IsPosLocked() const { return bool(nFlags & SvxIconViewFlags::POS_LOCKED); }
127 class SvxIconChoiceCtrlColumnInfo
129 tools::Long nWidth;
131 public:
132 SvxIconChoiceCtrlColumnInfo() :
133 nWidth( 100 ) {}
134 SvxIconChoiceCtrlColumnInfo( const SvxIconChoiceCtrlColumnInfo& );
136 void SetWidth( tools::Long nWd ) { nWidth = nWd; }
137 tools::Long GetWidth() const { return nWidth; }
142 Window-Bits:
143 WB_ICON // Text beneath the icon
144 WB_SMALL_ICON // Text right to the icon, position does not mind
145 WB_DETAILS // Text right to the icon, limited positioning
146 WB_BORDER
147 WB_NOHIDESELECTION // Draw selection inactively, if not focused.
148 WB_NOHSCROLL
149 WB_NOVSCROLL
150 WB_NOSELECTION
151 WB_SMART_ARRANGE // Keep Visible-Area at arrange
152 WB_ALIGN_TOP // Align line vy line LTR
153 WB_ALIGN_LEFT // Align columns from top to bottom
154 WB_NODRAGSELECTION // No selection with tracking rectangle
155 WB_NOCOLUMNHEADER // No Headerbar in Details view (Headerbar not implemented)
156 WB_NOPOINTERFOCUS // No GrabFocus at MouseButtonDown
157 WB_HIGHLIGHTFRAME // The entry beneath the mouse will be highlighted
158 WB_NOASYNCSELECTHDL // Do not collect events -> Selection handlers will be called synchronously
161 #define WB_ICON WB_RECTSTYLE
162 #define WB_SMALLICON WB_SMALLSTYLE
163 #define WB_DETAILS WB_VCENTER
164 #define WB_NOHSCROLL WB_SPIN
165 #define WB_NOVSCROLL WB_DRAG
166 #define WB_NOSELECTION WB_REPEAT
167 #define WB_NODRAGSELECTION WB_PATHELLIPSIS
168 #define WB_SMART_ARRANGE 0x01000000 // used to be WB_PASSWORD
169 #define WB_ALIGN_TOP WB_TOP
170 #define WB_ALIGN_LEFT WB_LEFT
171 #define WB_NOCOLUMNHEADER WB_CENTER
172 #define WB_HIGHLIGHTFRAME WB_IGNORETAB
173 #define WB_NOASYNCSELECTHDL WB_NOLABEL
175 class MnemonicGenerator;
177 class VCL_DLLPUBLIC SvtIconChoiceCtrl final : public Control
179 friend class SvxIconChoiceCtrl_Impl;
181 Link<SvtIconChoiceCtrl*,void> _aClickIconHdl;
182 std::unique_ptr<SvxIconChoiceCtrl_Impl, o3tl::default_delete<SvxIconChoiceCtrl_Impl>> _pImpl;
184 virtual void KeyInput( const KeyEvent& rKEvt ) override;
185 virtual void Command( const CommandEvent& rCEvt ) override;
186 virtual void Paint( vcl::RenderContext& rRenderContext, const tools::Rectangle& rRect ) override;
187 virtual void MouseButtonDown( const MouseEvent& rMEvt ) override;
188 virtual void MouseButtonUp( const MouseEvent& rMEvt ) override;
189 virtual void MouseMove( const MouseEvent& rMEvt ) override;
190 virtual void Resize() override;
191 virtual void GetFocus() override;
192 virtual void LoseFocus() override;
193 void ClickIcon();
194 virtual void DataChanged( const DataChangedEvent& rDCEvt ) override;
195 virtual void RequestHelp( const HelpEvent& rHEvt ) override;
196 static void DrawEntryImage(
197 SvxIconChoiceCtrlEntry const * pEntry,
198 const Point& rPos,
199 OutputDevice& rDev );
201 static OUString GetEntryText( SvxIconChoiceCtrlEntry const * pEntry );
203 virtual void FillLayoutData() const override;
205 void CallImplEventListeners(VclEventId nEvent, void* pData);
207 public:
209 SvtIconChoiceCtrl( vcl::Window* pParent, WinBits nWinStyle );
210 virtual ~SvtIconChoiceCtrl() override;
211 virtual void dispose() override;
213 WinBits GetStyle() const;
214 void SetSelectionMode(SelectionMode eMode);
216 void SetFont( const vcl::Font& rFont );
217 void SetPointFont( const vcl::Font& rFont );
219 void SetClickHdl( const Link<SvtIconChoiceCtrl*,void>& rLink ) { _aClickIconHdl = rLink; }
221 using Window::SetBackground;
222 void SetBackground( const Wallpaper& rWallpaper );
224 void ArrangeIcons();
227 SvxIconChoiceCtrlEntry* InsertEntry( const OUString& rText,
228 const Image& rImage);
230 void RemoveEntry(sal_Int32 nEntryListPos);
232 bool DoKeyInput( const KeyEvent& rKEvt );
234 sal_Int32 GetEntryCount() const;
235 SvxIconChoiceCtrlEntry* GetEntry( sal_Int32 nPos ) const;
236 sal_Int32 GetEntryListPos( SvxIconChoiceCtrlEntry const * pEntry ) const;
237 using Window::SetCursor;
238 void SetCursor( SvxIconChoiceCtrlEntry* pEntry );
239 SvxIconChoiceCtrlEntry* GetCursor() const;
241 // sal_uLong is the position of the selected element in the list
242 SvxIconChoiceCtrlEntry* GetSelectedEntry() const;
244 #ifdef DBG_UTIL
245 void SetEntryTextMode( SvxIconChoiceCtrlTextMode eMode, SvxIconChoiceCtrlEntry* pEntry );
246 #endif
248 tools::Rectangle GetBoundingBox( SvxIconChoiceCtrlEntry* pEntry ) const;
249 tools::Rectangle GetEntryCharacterBounds( const sal_Int32 _nEntryPos, const sal_Int32 _nCharacterIndex ) const;
251 void SetNoSelection();
253 // ACCESSIBILITY ==========================================================
255 /** Creates and returns the accessible object of the Box. */
256 virtual css::uno::Reference< css::accessibility::XAccessible > CreateAccessible() override;
259 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */