1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
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 .
22 #if !defined(VCL_DLLIMPLEMENTATION) && !defined(TOOLKIT_DLLIMPLEMENTATION) && !defined(VCL_INTERNALS)
23 #error "don't use this in new code"
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
42 POS_MOVED
= 0x0008, // Moved by Drag and Drop, but not logged
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
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
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)
104 this->pblink
->pflink
= this->pflink
;
105 this->pflink
->pblink
= this->pblink
;
106 this->pflink
= nullptr;
107 this->pblink
= nullptr;
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
132 SvxIconChoiceCtrlColumnInfo() :
134 SvxIconChoiceCtrlColumnInfo( const SvxIconChoiceCtrlColumnInfo
& );
136 void SetWidth( tools::Long nWd
) { nWidth
= nWd
; }
137 tools::Long
GetWidth() const { return nWidth
; }
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
147 WB_NOHIDESELECTION // Draw selection inactively, if not focused.
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
;
194 virtual void DataChanged( const DataChangedEvent
& rDCEvt
) override
;
195 virtual void RequestHelp( const HelpEvent
& rHEvt
) override
;
196 static void DrawEntryImage(
197 SvxIconChoiceCtrlEntry
const * pEntry
,
199 OutputDevice
& rDev
);
201 static OUString
GetEntryText( SvxIconChoiceCtrlEntry
const * pEntry
);
203 virtual void FillLayoutData() const override
;
205 void CallImplEventListeners(VclEventId nEvent
, void* pData
);
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
);
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;
245 void SetEntryTextMode( SvxIconChoiceCtrlTextMode eMode
, SvxIconChoiceCtrlEntry
* pEntry
);
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: */