1 /////////////////////////////////////////////////////////////////////////////
3 // Purpose: wxOwnerDrawnComboBox and wxVListBoxPopup
4 // Author: Jaakko Salli
6 // Created: Apr-30-2006
8 // Copyright: (c) Jaakko Salli
9 // Licence: wxWindows licence
10 /////////////////////////////////////////////////////////////////////////////
12 #ifndef _WX_ODCOMBO_H_
13 #define _WX_ODCOMBO_H_
20 #include "wx/ctrlsub.h"
26 // New window styles for wxOwnerDrawnComboBox
30 // Double-clicking cycles item if wxCB_READONLY is also used.
31 wxODCB_DCLICK_CYCLES
= wxCC_SPECIAL_DCLICK
,
33 // If used, control itself is not custom paint using callback.
34 // Even if this is not used, writable combo is never custom paint
35 // until SetCustomPaintWidth is called
36 wxODCB_STD_CONTROL_PAINT
= 0x1000
41 // Callback flags (see wxOwnerDrawnComboBox::OnDrawItem)
43 enum wxOwnerDrawnComboBoxPaintingFlags
45 // when set, we are painting the selected item in control,
47 wxODCB_PAINTING_CONTROL
= 0x0001,
50 // when set, we are painting an item which should have
51 // focus rectangle painted in the background. Text colour
52 // and clipping region are then appropriately set in
53 // the default OnDrawBackground implementation.
54 wxODCB_PAINTING_SELECTED
= 0x0002
58 // ----------------------------------------------------------------------------
59 // wxVListBoxComboPopup is a wxVListBox customized to act as a popup control.
62 // wxOwnerDrawnComboBox uses this as its popup. However, it always derives
63 // from native wxComboCtrl. If you need to use this popup with
64 // wxGenericComboControl, then remember that vast majority of item manipulation
65 // functionality is implemented in the wxVListBoxComboPopup class itself.
67 // ----------------------------------------------------------------------------
70 class WXDLLIMPEXP_ADV wxVListBoxComboPopup
: public wxVListBox
,
73 friend class wxOwnerDrawnComboBox
;
77 wxVListBoxComboPopup() : wxVListBox(), wxComboPopup() { }
78 virtual ~wxVListBoxComboPopup();
82 virtual bool Create(wxWindow
* parent
);
83 virtual void SetFocus();
84 virtual wxWindow
*GetControl() { return this; }
85 virtual void SetStringValue( const wxString
& value
);
86 virtual wxString
GetStringValue() const;
89 virtual void OnPopup();
90 virtual wxSize
GetAdjustedSize( int minWidth
, int prefHeight
, int maxHeight
);
91 virtual void PaintComboControl( wxDC
& dc
, const wxRect
& rect
);
92 virtual void OnComboKeyEvent( wxKeyEvent
& event
);
93 virtual void OnComboCharEvent( wxKeyEvent
& event
);
94 virtual void OnComboDoubleClick();
95 virtual bool LazyCreate();
98 void SetSelection( int item
);
99 void Insert( const wxString
& item
, int pos
);
100 int Append(const wxString
& item
);
102 void Delete( unsigned int item
);
103 void SetItemClientData(unsigned int n
, void* clientData
, wxClientDataType clientDataItemsType
);
104 void *GetItemClientData(unsigned int n
) const;
105 void SetString( int item
, const wxString
& str
);
106 wxString
GetString( int item
) const;
107 unsigned int GetCount() const;
108 int FindString(const wxString
& s
, bool bCase
= false) const;
109 int GetSelection() const;
111 //void Populate( int n, const wxString choices[] );
112 void Populate( const wxArrayString
& choices
);
113 void ClearClientDatas();
116 int GetItemAtPosition( const wxPoint
& pos
) { return HitTest(pos
); }
117 wxCoord
GetTotalHeight() const { return EstimateTotalHeight(); }
118 wxCoord
GetLineHeight(int line
) const { return OnGetRowHeight(line
); }
122 // Called by OnComboDoubleClick and OnCombo{Key,Char}Event
123 bool HandleKey( int keycode
, bool saturate
, wxChar keychar
= 0 );
125 // sends combobox select event from the parent combo control
126 void SendComboBoxEvent( int selection
);
128 // gets value, sends event and dismisses
129 void DismissWithEvent();
131 // OnMeasureItemWidth will be called on next GetAdjustedSize.
132 void ItemWidthChanged(unsigned int item
)
135 m_widthsDirty
= true;
138 // Callbacks for drawing and measuring items. Override in a derived class for
139 // owner-drawnness. Font, background and text colour have been prepared according
140 // to selection, focus and such.
142 // item: item index to be drawn, may be wxNOT_FOUND when painting combo control itself
143 // and there is no valid selection
144 // flags: wxODCB_PAINTING_CONTROL is set if painting to combo control instead of list
146 // NOTE: If wxVListBoxComboPopup is used with a wxComboCtrl class not derived from
147 // wxOwnerDrawnComboBox, this method must be overridden.
148 virtual void OnDrawItem( wxDC
& dc
, const wxRect
& rect
, int item
, int flags
) const;
150 // This is same as in wxVListBox
151 virtual wxCoord
OnMeasureItem( size_t item
) const;
153 // Return item width, or -1 for calculating from text extent (default)
154 virtual wxCoord
OnMeasureItemWidth( size_t item
) const;
156 // Draw item and combo control background. Flags are same as with OnDrawItem.
157 // NB: Can't use name OnDrawBackground because of virtual function hiding warnings.
158 virtual void OnDrawBg(wxDC
& dc
, const wxRect
& rect
, int item
, int flags
) const;
160 // Additional wxVListBox implementation (no need to override in derived classes)
161 virtual void OnDrawItem(wxDC
& dc
, const wxRect
& rect
, size_t n
) const;
162 void OnDrawBackground(wxDC
& dc
, const wxRect
& rect
, size_t n
) const;
164 // filter mouse move events happening outside the list box
165 // move selection with cursor
166 void OnMouseMove(wxMouseEvent
& event
);
167 void OnMouseWheel(wxMouseEvent
& event
);
168 void OnKey(wxKeyEvent
& event
);
169 void OnChar(wxKeyEvent
& event
);
170 void OnLeftClick(wxMouseEvent
& event
);
172 // Return the widest item width (recalculating it if necessary)
173 int GetWidestItemWidth() { CalcWidths(); return m_widestWidth
; }
175 // Return the index of the widest item (recalculating it if necessary)
176 int GetWidestItem() { CalcWidths(); return m_widestItem
; }
178 // Stop partial completion (when some other event occurs)
179 void StopPartialCompletion();
181 wxArrayString m_strings
;
182 wxArrayPtrVoid m_clientDatas
;
186 //wxString m_stringValue; // displayed text (may be different than m_strings[m_value])
187 int m_value
; // selection
188 int m_itemHover
; // on which item the cursor is
189 int m_itemHeight
; // default item height (calculate from font size
190 // and used in the absence of callback)
191 wxClientDataType m_clientDataItemsType
;
195 // Cached item widths (in pixels).
198 // Width of currently widest item.
201 // Index of currently widest item.
204 // Measure some items in next GetAdjustedSize?
207 // Find widest item in next GetAdjustedSize?
210 // has the mouse been released on this control?
213 // Recalculate widths if they are dirty
216 // Partial completion string
217 wxString m_partialCompletionString
;
219 wxString m_stringValue
;
222 // Partial completion timer
223 wxTimer m_partialCompletionTimer
;
224 #endif // wxUSE_TIMER
226 DECLARE_EVENT_TABLE()
230 // ----------------------------------------------------------------------------
231 // wxOwnerDrawnComboBox: a generic wxComboBox that allows custom paint items
232 // in addition to many other types of customization already allowed by
234 // ----------------------------------------------------------------------------
236 class WXDLLIMPEXP_ADV wxOwnerDrawnComboBox
: public wxComboCtrl
,
237 public wxItemContainer
239 //friend class wxComboPopupWindow;
240 friend class wxVListBoxComboPopup
;
244 wxOwnerDrawnComboBox() : wxComboCtrl() { Init(); }
246 wxOwnerDrawnComboBox(wxWindow
*parent
,
248 const wxString
& value
,
252 const wxString choices
[],
254 const wxValidator
& validator
= wxDefaultValidator
,
255 const wxString
& name
= wxComboBoxNameStr
)
260 (void)Create(parent
, id
, value
, pos
, size
, n
,
261 choices
, style
, validator
, name
);
264 bool Create(wxWindow
*parent
,
266 const wxString
& value
= wxEmptyString
,
267 const wxPoint
& pos
= wxDefaultPosition
,
268 const wxSize
& size
= wxDefaultSize
,
270 const wxValidator
& validator
= wxDefaultValidator
,
271 const wxString
& name
= wxComboBoxNameStr
);
273 wxOwnerDrawnComboBox(wxWindow
*parent
,
275 const wxString
& value
,
278 const wxArrayString
& choices
,
280 const wxValidator
& validator
= wxDefaultValidator
,
281 const wxString
& name
= wxComboBoxNameStr
);
283 bool Create(wxWindow
*parent
,
285 const wxString
& value
,
289 const wxString choices
[],
291 const wxValidator
& validator
= wxDefaultValidator
,
292 const wxString
& name
= wxComboBoxNameStr
);
294 bool Create(wxWindow
*parent
,
296 const wxString
& value
,
299 const wxArrayString
& choices
,
301 const wxValidator
& validator
= wxDefaultValidator
,
302 const wxString
& name
= wxComboBoxNameStr
);
304 virtual ~wxOwnerDrawnComboBox();
306 // Prevent app from using wxComboPopup
307 void SetPopupControl(wxVListBoxComboPopup
* popup
)
309 DoSetPopupControl(popup
);
312 // wxControlWithItems methods
313 virtual unsigned int GetCount() const;
314 virtual wxString
GetString(unsigned int n
) const;
315 virtual void SetString(unsigned int n
, const wxString
& s
);
316 virtual int FindString(const wxString
& s
, bool bCase
= false) const;
317 virtual void Select(int n
);
318 virtual int GetSelection() const;
319 virtual void SetSelection(int n
) { Select(n
); }
322 // Prevent a method from being hidden
323 virtual void SetSelection(long from
, long to
)
325 wxComboCtrl::SetSelection(from
,to
);
328 // Return the widest item width (recalculating it if necessary)
329 virtual int GetWidestItemWidth() { EnsurePopupControl(); return GetVListBoxComboPopup()->GetWidestItemWidth(); }
331 // Return the index of the widest item (recalculating it if necessary)
332 virtual int GetWidestItem() { EnsurePopupControl(); return GetVListBoxComboPopup()->GetWidestItem(); }
334 virtual bool IsSorted() const { return HasFlag(wxCB_SORT
); }
336 wxCONTROL_ITEMCONTAINER_CLIENTDATAOBJECT_RECAST
339 virtual void DoClear();
340 virtual void DoDeleteOneItem(unsigned int n
);
342 // Callback for drawing. Font, background and text colour have been
343 // prepared according to selection, focus and such.
344 // item: item index to be drawn, may be wxNOT_FOUND when painting combo control itself
345 // and there is no valid selection
346 // flags: wxODCB_PAINTING_CONTROL is set if painting to combo control instead of list
347 virtual void OnDrawItem( wxDC
& dc
, const wxRect
& rect
, int item
, int flags
) const;
349 // Callback for item height, or -1 for default
350 virtual wxCoord
OnMeasureItem( size_t item
) const;
352 // Callback for item width, or -1 for default/undetermined
353 virtual wxCoord
OnMeasureItemWidth( size_t item
) const;
355 // Callback for background drawing. Flags are same as with
357 virtual void OnDrawBackground( wxDC
& dc
, const wxRect
& rect
, int item
, int flags
) const;
359 // NULL popup can be used to indicate default interface
360 virtual void DoSetPopupControl(wxComboPopup
* popup
);
362 // clears all allocated client datas
363 void ClearClientDatas();
365 wxVListBoxComboPopup
* GetVListBoxComboPopup() const
367 return (wxVListBoxComboPopup
*) m_popupInterface
;
370 virtual int DoInsertItems(const wxArrayStringsAdapter
& items
,
372 void **clientData
, wxClientDataType type
);
373 virtual void DoSetItemClientData(unsigned int n
, void* clientData
);
374 virtual void* DoGetItemClientData(unsigned int n
) const;
376 // temporary storage for the initial choices
377 //const wxString* m_baseChoices;
378 //int m_baseChoicesCount;
379 wxArrayString m_initChs
;
384 DECLARE_EVENT_TABLE()
386 DECLARE_DYNAMIC_CLASS(wxOwnerDrawnComboBox
)
390 #endif // wxUSE_ODCOMBOBOX