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)
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 wxWindow
*GetControl() { return this; }
84 virtual void SetStringValue( const wxString
& value
);
85 virtual wxString
GetStringValue() const;
88 virtual void OnPopup();
89 virtual wxSize
GetAdjustedSize( int minWidth
, int prefHeight
, int maxHeight
);
90 virtual void PaintComboControl( wxDC
& dc
, const wxRect
& rect
);
91 virtual void OnComboKeyEvent( wxKeyEvent
& event
);
92 virtual void OnComboDoubleClick();
93 virtual bool LazyCreate();
96 void SetSelection( int item
);
97 void Insert( const wxString
& item
, int pos
);
98 int Append(const wxString
& item
);
100 void Delete( unsigned int item
);
101 void SetItemClientData(unsigned int n
, void* clientData
, wxClientDataType clientDataItemsType
);
102 void *GetItemClientData(unsigned int n
) const;
103 void SetString( int item
, const wxString
& str
);
104 wxString
GetString( int item
) const;
105 unsigned int GetCount() const;
106 int FindString(const wxString
& s
, bool bCase
= false) const;
107 int GetSelection() const;
109 //void Populate( int n, const wxString choices[] );
110 void Populate( const wxArrayString
& choices
);
111 void ClearClientDatas();
114 int GetItemAtPosition( const wxPoint
& pos
) { return HitTest(pos
); }
115 wxCoord
GetTotalHeight() const { return EstimateTotalHeight(); }
116 wxCoord
GetLineHeight(int line
) const { return OnGetRowHeight(line
); }
120 // Called by OnComboDoubleClick and OnComboKeyEvent
121 bool HandleKey( int keycode
, bool saturate
, wxChar unicode
= 0 );
123 // sends combobox select event from the parent combo control
124 void SendComboBoxEvent( int selection
);
126 // gets value, sends event and dismisses
127 void DismissWithEvent();
129 // OnMeasureItemWidth will be called on next GetAdjustedSize.
130 void ItemWidthChanged(unsigned int item
)
133 m_widthsDirty
= true;
136 // Callbacks for drawing and measuring items. Override in a derived class for
137 // owner-drawnness. Font, background and text colour have been prepared according
138 // to selection, focus and such.
140 // item: item index to be drawn, may be wxNOT_FOUND when painting combo control itself
141 // and there is no valid selection
142 // flags: wxODCB_PAINTING_CONTROL is set if painting to combo control instead of list
143 // NOTE: If wxVListBoxComboPopup is used with wxComboCtrl class not derived from
144 // wxOwnerDrawnComboBox, this method must be overridden.
145 virtual void OnDrawItem( wxDC
& dc
, const wxRect
& rect
, int item
, int flags
) const;
147 // This is same as in wxVListBox
148 virtual wxCoord
OnMeasureItem( size_t item
) const;
150 // Return item width, or -1 for calculating from text extent (default)
151 virtual wxCoord
OnMeasureItemWidth( size_t item
) const;
153 // Draw item and combo control background. Flags are same as with OnDrawItem.
154 // NB: Can't use name OnDrawBackground because of virtual function hiding warnings.
155 virtual void OnDrawBg(wxDC
& dc
, const wxRect
& rect
, int item
, int flags
) const;
157 // Additional wxVListBox implementation (no need to override in derived classes)
158 virtual void OnDrawItem(wxDC
& dc
, const wxRect
& rect
, size_t n
) const;
159 void OnDrawBackground(wxDC
& dc
, const wxRect
& rect
, size_t n
) const;
161 // filter mouse move events happening outside the list box
162 // move selection with cursor
163 void OnMouseMove(wxMouseEvent
& event
);
164 void OnMouseWheel(wxMouseEvent
& event
);
165 void OnKey(wxKeyEvent
& event
);
166 void OnLeftClick(wxMouseEvent
& event
);
168 // Return the widest item width (recalculating it if necessary)
169 int GetWidestItemWidth() { CalcWidths(); return m_widestWidth
; }
171 // Return the index of the widest item (recalculating it if necessary)
172 int GetWidestItem() { CalcWidths(); return m_widestItem
; }
174 // Stop partial completion (when some other event occurs)
175 void StopPartialCompletion();
177 wxArrayString m_strings
;
178 wxArrayPtrVoid m_clientDatas
;
182 //wxString m_stringValue; // displayed text (may be different than m_strings[m_value])
183 int m_value
; // selection
184 int m_itemHover
; // on which item the cursor is
185 int m_itemHeight
; // default item height (calculate from font size
186 // and used in the absence of callback)
187 wxClientDataType m_clientDataItemsType
;
191 // Cached item widths (in pixels).
194 // Width of currently widest item.
197 // Index of currently widest item.
200 // Measure some items in next GetAdjustedSize?
203 // Find widest item in next GetAdjustedSize?
206 // has the mouse been released on this control?
209 // Recalculate widths if they are dirty
212 // Partial completion string
213 wxString m_partialCompletionString
;
215 wxString m_stringValue
;
218 // Partial completion timer
219 wxTimer m_partialCompletionTimer
;
220 #endif // wxUSE_TIMER
222 DECLARE_EVENT_TABLE()
226 // ----------------------------------------------------------------------------
227 // wxOwnerDrawnComboBox: a generic wxComboBox that allows custom paint items
228 // in addition to many other types of customization already allowed by
230 // ----------------------------------------------------------------------------
232 class WXDLLIMPEXP_ADV wxOwnerDrawnComboBox
: public wxComboCtrl
,
233 public wxItemContainer
235 //friend class wxComboPopupWindow;
236 friend class wxVListBoxComboPopup
;
240 wxOwnerDrawnComboBox() : wxComboCtrl() { Init(); }
242 wxOwnerDrawnComboBox(wxWindow
*parent
,
244 const wxString
& value
,
248 const wxString choices
[],
250 const wxValidator
& validator
= wxDefaultValidator
,
251 const wxString
& name
= wxComboBoxNameStr
)
256 (void)Create(parent
, id
, value
, pos
, size
, n
,
257 choices
, style
, validator
, name
);
260 bool Create(wxWindow
*parent
,
262 const wxString
& value
= wxEmptyString
,
263 const wxPoint
& pos
= wxDefaultPosition
,
264 const wxSize
& size
= wxDefaultSize
,
266 const wxValidator
& validator
= wxDefaultValidator
,
267 const wxString
& name
= wxComboBoxNameStr
);
269 wxOwnerDrawnComboBox(wxWindow
*parent
,
271 const wxString
& value
,
274 const wxArrayString
& choices
,
276 const wxValidator
& validator
= wxDefaultValidator
,
277 const wxString
& name
= wxComboBoxNameStr
);
279 bool Create(wxWindow
*parent
,
281 const wxString
& value
,
285 const wxString choices
[],
287 const wxValidator
& validator
= wxDefaultValidator
,
288 const wxString
& name
= wxComboBoxNameStr
);
290 bool Create(wxWindow
*parent
,
292 const wxString
& value
,
295 const wxArrayString
& choices
,
297 const wxValidator
& validator
= wxDefaultValidator
,
298 const wxString
& name
= wxComboBoxNameStr
);
300 virtual ~wxOwnerDrawnComboBox();
302 // Prevent app from using wxComboPopup
303 void SetPopupControl(wxVListBoxComboPopup
* popup
)
305 DoSetPopupControl(popup
);
308 // wxControlWithItems methods
309 virtual void DoClear();
310 virtual void DoDeleteOneItem(unsigned int n
);
311 virtual unsigned int GetCount() const;
312 virtual wxString
GetString(unsigned int n
) const;
313 virtual void SetString(unsigned int n
, const wxString
& s
);
314 virtual int FindString(const wxString
& s
, bool bCase
= false) const;
315 virtual void Select(int n
);
316 virtual int GetSelection() const;
317 virtual void SetSelection(int n
) { Select(n
); }
320 // Prevent a method from being hidden
321 virtual void SetSelection(long from
, long to
)
323 wxComboCtrl::SetSelection(from
,to
);
326 // Return the widest item width (recalculating it if necessary)
327 virtual int GetWidestItemWidth() { EnsurePopupControl(); return GetVListBoxComboPopup()->GetWidestItemWidth(); }
329 // Return the index of the widest item (recalculating it if necessary)
330 virtual int GetWidestItem() { EnsurePopupControl(); return GetVListBoxComboPopup()->GetWidestItem(); }
332 virtual bool IsSorted() const { return HasFlag(wxCB_SORT
); }
334 wxCONTROL_ITEMCONTAINER_CLIENTDATAOBJECT_RECAST
338 // Callback for drawing. Font, background and text colour have been
339 // prepared according to selection, focus and such.
340 // item: item index to be drawn, may be wxNOT_FOUND when painting combo control itself
341 // and there is no valid selection
342 // flags: wxODCB_PAINTING_CONTROL is set if painting to combo control instead of list
343 virtual void OnDrawItem( wxDC
& dc
, const wxRect
& rect
, int item
, int flags
) const;
345 // Callback for item height, or -1 for default
346 virtual wxCoord
OnMeasureItem( size_t item
) const;
348 // Callback for item width, or -1 for default/undetermined
349 virtual wxCoord
OnMeasureItemWidth( size_t item
) const;
351 // Callback for background drawing. Flags are same as with
353 virtual void OnDrawBackground( wxDC
& dc
, const wxRect
& rect
, int item
, int flags
) const;
355 // NULL popup can be used to indicate default interface
356 virtual void DoSetPopupControl(wxComboPopup
* popup
);
358 // clears all allocated client datas
359 void ClearClientDatas();
361 wxVListBoxComboPopup
* GetVListBoxComboPopup() const
363 return (wxVListBoxComboPopup
*) m_popupInterface
;
366 virtual int DoInsertItems(const wxArrayStringsAdapter
& items
,
368 void **clientData
, wxClientDataType type
);
369 virtual void DoSetItemClientData(unsigned int n
, void* clientData
);
370 virtual void* DoGetItemClientData(unsigned int n
) const;
372 // temporary storage for the initial choices
373 //const wxString* m_baseChoices;
374 //int m_baseChoicesCount;
375 wxArrayString m_initChs
;
380 DECLARE_EVENT_TABLE()
382 DECLARE_DYNAMIC_CLASS(wxOwnerDrawnComboBox
)
386 #endif // wxUSE_ODCOMBOBOX