]>
Commit | Line | Data |
---|---|---|
a340b80d VZ |
1 | ///////////////////////////////////////////////////////////////////////////// |
2 | // Name: wx/odcombo.h | |
3 | // Purpose: wxOwnerDrawnComboBox and wxVListBoxPopup | |
4 | // Author: Jaakko Salli | |
5 | // Modified by: | |
6 | // Created: Apr-30-2006 | |
7 | // RCS-ID: $Id$ | |
8 | // Copyright: (c) Jaakko Salli | |
9 | // Licence: wxWindows licence | |
10 | ///////////////////////////////////////////////////////////////////////////// | |
11 | ||
12 | #ifndef _WX_ODCOMBO_H_ | |
13 | #define _WX_ODCOMBO_H_ | |
14 | ||
15 | #include "wx/defs.h" | |
16 | ||
a57d600f | 17 | #if wxUSE_ODCOMBOBOX |
a340b80d VZ |
18 | |
19 | #include "wx/combo.h" | |
20 | #include "wx/ctrlsub.h" | |
21 | #include "wx/vlbox.h" | |
f0fa8b47 | 22 | #include "wx/timer.h" |
a340b80d VZ |
23 | |
24 | ||
25 | // | |
26 | // New window styles for wxOwnerDrawnComboBox | |
27 | // | |
28 | enum | |
29 | { | |
30 | // Double-clicking cycles item if wxCB_READONLY is also used. | |
31 | wxODCB_DCLICK_CYCLES = wxCC_SPECIAL_DCLICK, | |
32 | ||
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 | |
37 | }; | |
38 | ||
39 | ||
40 | // | |
40b26d75 | 41 | // Callback flags (see wxOwnerDrawnComboBox::OnDrawItem) |
a340b80d | 42 | // |
3fedffdc | 43 | enum wxOwnerDrawnComboBoxPaintingFlags |
a340b80d VZ |
44 | { |
45 | // when set, we are painting the selected item in control, | |
46 | // not in the popup | |
ce22ac45 RR |
47 | wxODCB_PAINTING_CONTROL = 0x0001, |
48 | ||
49 | ||
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 | |
a340b80d VZ |
55 | }; |
56 | ||
57 | ||
58 | // ---------------------------------------------------------------------------- | |
59 | // wxVListBoxComboPopup is a wxVListBox customized to act as a popup control. | |
60 | // | |
61 | // Notes: | |
62 | // wxOwnerDrawnComboBox uses this as its popup. However, it always derives | |
a57d600f | 63 | // from native wxComboCtrl. If you need to use this popup with |
a340b80d VZ |
64 | // wxGenericComboControl, then remember that vast majority of item manipulation |
65 | // functionality is implemented in the wxVListBoxComboPopup class itself. | |
66 | // | |
67 | // ---------------------------------------------------------------------------- | |
68 | ||
69 | ||
c98e80d9 VZ |
70 | class WXDLLIMPEXP_ADV wxVListBoxComboPopup : public wxVListBox, |
71 | public wxComboPopup | |
a340b80d VZ |
72 | { |
73 | friend class wxOwnerDrawnComboBox; | |
74 | public: | |
75 | ||
6d0ce565 VZ |
76 | // init and dtor |
77 | wxVListBoxComboPopup() : wxVListBox(), wxComboPopup() { } | |
a340b80d VZ |
78 | virtual ~wxVListBoxComboPopup(); |
79 | ||
80 | // required virtuals | |
6d0ce565 | 81 | virtual void Init(); |
a340b80d | 82 | virtual bool Create(wxWindow* parent); |
c0c05e79 | 83 | virtual void SetFocus(); |
a340b80d VZ |
84 | virtual wxWindow *GetControl() { return this; } |
85 | virtual void SetStringValue( const wxString& value ); | |
86 | virtual wxString GetStringValue() const; | |
87 | ||
88 | // more customization | |
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 ); | |
c765e6fb | 93 | virtual void OnComboCharEvent( wxKeyEvent& event ); |
a340b80d VZ |
94 | virtual void OnComboDoubleClick(); |
95 | virtual bool LazyCreate(); | |
238b33ab | 96 | virtual bool FindItem(const wxString& item, wxString* trueItem); |
a340b80d VZ |
97 | |
98 | // Item management | |
99 | void SetSelection( int item ); | |
100 | void Insert( const wxString& item, int pos ); | |
101 | int Append(const wxString& item); | |
102 | void Clear(); | |
103 | void Delete( unsigned int item ); | |
104 | void SetItemClientData(unsigned int n, void* clientData, wxClientDataType clientDataItemsType); | |
105 | void *GetItemClientData(unsigned int n) const; | |
106 | void SetString( int item, const wxString& str ); | |
107 | wxString GetString( int item ) const; | |
108 | unsigned int GetCount() const; | |
9e6aca68 | 109 | int FindString(const wxString& s, bool bCase = false) const; |
6d0ce565 | 110 | int GetSelection() const; |
a340b80d | 111 | |
6d0ce565 VZ |
112 | //void Populate( int n, const wxString choices[] ); |
113 | void Populate( const wxArrayString& choices ); | |
a340b80d VZ |
114 | void ClearClientDatas(); |
115 | ||
116 | // helpers | |
117 | int GetItemAtPosition( const wxPoint& pos ) { return HitTest(pos); } | |
118 | wxCoord GetTotalHeight() const { return EstimateTotalHeight(); } | |
e02c72fa | 119 | wxCoord GetLineHeight(int line) const { return OnGetRowHeight(line); } |
a340b80d VZ |
120 | |
121 | protected: | |
122 | ||
c765e6fb VS |
123 | // Called by OnComboDoubleClick and OnCombo{Key,Char}Event |
124 | bool HandleKey( int keycode, bool saturate, wxChar keychar = 0 ); | |
a340b80d VZ |
125 | |
126 | // sends combobox select event from the parent combo control | |
6d0ce565 | 127 | void SendComboBoxEvent( int selection ); |
7ca4ac63 | 128 | |
6d0ce565 VZ |
129 | // gets value, sends event and dismisses |
130 | void DismissWithEvent(); | |
a340b80d | 131 | |
e5d63342 WS |
132 | // OnMeasureItemWidth will be called on next GetAdjustedSize. |
133 | void ItemWidthChanged(unsigned int item) | |
134 | { | |
135 | m_widths[item] = -1; | |
136 | m_widthsDirty = true; | |
137 | } | |
a340b80d | 138 | |
40b26d75 WS |
139 | // Callbacks for drawing and measuring items. Override in a derived class for |
140 | // owner-drawnness. Font, background and text colour have been prepared according | |
141 | // to selection, focus and such. | |
142 | // | |
143 | // item: item index to be drawn, may be wxNOT_FOUND when painting combo control itself | |
144 | // and there is no valid selection | |
145 | // flags: wxODCB_PAINTING_CONTROL is set if painting to combo control instead of list | |
3fedffdc FM |
146 | // |
147 | // NOTE: If wxVListBoxComboPopup is used with a wxComboCtrl class not derived from | |
40b26d75 | 148 | // wxOwnerDrawnComboBox, this method must be overridden. |
3fedffdc | 149 | virtual void OnDrawItem( wxDC& dc, const wxRect& rect, int item, int flags) const; |
a340b80d | 150 | |
40b26d75 | 151 | // This is same as in wxVListBox |
dcc8cf5a PC |
152 | virtual wxCoord OnMeasureItem( size_t item ) const; |
153 | ||
40b26d75 WS |
154 | // Return item width, or -1 for calculating from text extent (default) |
155 | virtual wxCoord OnMeasureItemWidth( size_t item ) const; | |
156 | ||
157 | // Draw item and combo control background. Flags are same as with OnDrawItem. | |
158 | // NB: Can't use name OnDrawBackground because of virtual function hiding warnings. | |
159 | virtual void OnDrawBg(wxDC& dc, const wxRect& rect, int item, int flags) const; | |
160 | ||
161 | // Additional wxVListBox implementation (no need to override in derived classes) | |
162 | virtual void OnDrawItem(wxDC& dc, const wxRect& rect, size_t n) const; | |
163 | void OnDrawBackground(wxDC& dc, const wxRect& rect, size_t n) const; | |
164 | ||
a340b80d VZ |
165 | // filter mouse move events happening outside the list box |
166 | // move selection with cursor | |
167 | void OnMouseMove(wxMouseEvent& event); | |
a340b80d | 168 | void OnKey(wxKeyEvent& event); |
c765e6fb | 169 | void OnChar(wxKeyEvent& event); |
a340b80d VZ |
170 | void OnLeftClick(wxMouseEvent& event); |
171 | ||
d9e0958c AB |
172 | // Return the widest item width (recalculating it if necessary) |
173 | int GetWidestItemWidth() { CalcWidths(); return m_widestWidth; } | |
174 | ||
175 | // Return the index of the widest item (recalculating it if necessary) | |
176 | int GetWidestItem() { CalcWidths(); return m_widestItem; } | |
177 | ||
dc8a1aa5 AB |
178 | // Stop partial completion (when some other event occurs) |
179 | void StopPartialCompletion(); | |
180 | ||
a340b80d VZ |
181 | wxArrayString m_strings; |
182 | wxArrayPtrVoid m_clientDatas; | |
a340b80d | 183 | |
6d0ce565 | 184 | wxFont m_useFont; |
a340b80d | 185 | |
6d0ce565 | 186 | //wxString m_stringValue; // displayed text (may be different than m_strings[m_value]) |
a340b80d VZ |
187 | int m_value; // selection |
188 | int m_itemHover; // on which item the cursor is | |
a340b80d VZ |
189 | int m_itemHeight; // default item height (calculate from font size |
190 | // and used in the absence of callback) | |
191 | wxClientDataType m_clientDataItemsType; | |
192 | ||
193 | private: | |
194 | ||
e5d63342 WS |
195 | // Cached item widths (in pixels). |
196 | wxArrayInt m_widths; | |
197 | ||
198 | // Width of currently widest item. | |
199 | int m_widestWidth; | |
200 | ||
201 | // Index of currently widest item. | |
202 | int m_widestItem; | |
203 | ||
204 | // Measure some items in next GetAdjustedSize? | |
205 | bool m_widthsDirty; | |
206 | ||
207 | // Find widest item in next GetAdjustedSize? | |
208 | bool m_findWidest; | |
209 | ||
a340b80d | 210 | // has the mouse been released on this control? |
e5d63342 | 211 | bool m_clicked; |
a340b80d | 212 | |
d9e0958c AB |
213 | // Recalculate widths if they are dirty |
214 | void CalcWidths(); | |
215 | ||
dc8a1aa5 AB |
216 | // Partial completion string |
217 | wxString m_partialCompletionString; | |
218 | ||
fdb47e62 VZ |
219 | wxString m_stringValue; |
220 | ||
f0fa8b47 | 221 | #if wxUSE_TIMER |
dc8a1aa5 AB |
222 | // Partial completion timer |
223 | wxTimer m_partialCompletionTimer; | |
f0fa8b47 | 224 | #endif // wxUSE_TIMER |
dc8a1aa5 | 225 | |
a340b80d VZ |
226 | DECLARE_EVENT_TABLE() |
227 | }; | |
228 | ||
229 | ||
230 | // ---------------------------------------------------------------------------- | |
231 | // wxOwnerDrawnComboBox: a generic wxComboBox that allows custom paint items | |
232 | // in addition to many other types of customization already allowed by | |
a57d600f | 233 | // the wxComboCtrl. |
a340b80d VZ |
234 | // ---------------------------------------------------------------------------- |
235 | ||
a57d600f | 236 | class WXDLLIMPEXP_ADV wxOwnerDrawnComboBox : public wxComboCtrl, |
c98e80d9 | 237 | public wxItemContainer |
a340b80d | 238 | { |
40b26d75 WS |
239 | //friend class wxComboPopupWindow; |
240 | friend class wxVListBoxComboPopup; | |
a340b80d VZ |
241 | public: |
242 | ||
243 | // ctors and such | |
a57d600f | 244 | wxOwnerDrawnComboBox() : wxComboCtrl() { Init(); } |
a340b80d VZ |
245 | |
246 | wxOwnerDrawnComboBox(wxWindow *parent, | |
247 | wxWindowID id, | |
248 | const wxString& value, | |
249 | const wxPoint& pos, | |
250 | const wxSize& size, | |
251 | int n, | |
252 | const wxString choices[], | |
253 | long style = 0, | |
254 | const wxValidator& validator = wxDefaultValidator, | |
255 | const wxString& name = wxComboBoxNameStr) | |
a57d600f | 256 | : wxComboCtrl() |
a340b80d VZ |
257 | { |
258 | Init(); | |
259 | ||
260 | (void)Create(parent, id, value, pos, size, n, | |
261 | choices, style, validator, name); | |
262 | } | |
263 | ||
264 | bool Create(wxWindow *parent, | |
265 | wxWindowID id, | |
1c4743aa | 266 | const wxString& value = wxEmptyString, |
a340b80d VZ |
267 | const wxPoint& pos = wxDefaultPosition, |
268 | const wxSize& size = wxDefaultSize, | |
269 | long style = 0, | |
270 | const wxValidator& validator = wxDefaultValidator, | |
271 | const wxString& name = wxComboBoxNameStr); | |
272 | ||
273 | wxOwnerDrawnComboBox(wxWindow *parent, | |
274 | wxWindowID id, | |
94daedc8 JS |
275 | const wxString& value = wxEmptyString, |
276 | const wxPoint& pos = wxDefaultPosition, | |
277 | const wxSize& size = wxDefaultSize, | |
278 | const wxArrayString& choices = wxArrayString(), | |
279 | long style = 0, | |
a340b80d VZ |
280 | const wxValidator& validator = wxDefaultValidator, |
281 | const wxString& name = wxComboBoxNameStr); | |
282 | ||
283 | bool Create(wxWindow *parent, | |
284 | wxWindowID id, | |
1c4743aa WS |
285 | const wxString& value, |
286 | const wxPoint& pos, | |
287 | const wxSize& size, | |
288 | int n, | |
289 | const wxString choices[], | |
a340b80d VZ |
290 | long style = 0, |
291 | const wxValidator& validator = wxDefaultValidator, | |
292 | const wxString& name = wxComboBoxNameStr); | |
293 | ||
294 | bool Create(wxWindow *parent, | |
295 | wxWindowID id, | |
296 | const wxString& value, | |
297 | const wxPoint& pos, | |
298 | const wxSize& size, | |
299 | const wxArrayString& choices, | |
300 | long style = 0, | |
301 | const wxValidator& validator = wxDefaultValidator, | |
302 | const wxString& name = wxComboBoxNameStr); | |
303 | ||
304 | virtual ~wxOwnerDrawnComboBox(); | |
305 | ||
db53c6ea WS |
306 | // Prevent app from using wxComboPopup |
307 | void SetPopupControl(wxVListBoxComboPopup* popup) | |
308 | { | |
309 | DoSetPopupControl(popup); | |
310 | } | |
6d0ce565 | 311 | |
a340b80d | 312 | // wxControlWithItems methods |
a340b80d VZ |
313 | virtual unsigned int GetCount() const; |
314 | virtual wxString GetString(unsigned int n) const; | |
315 | virtual void SetString(unsigned int n, const wxString& s); | |
9e6aca68 | 316 | virtual int FindString(const wxString& s, bool bCase = false) const; |
a340b80d VZ |
317 | virtual void Select(int n); |
318 | virtual int GetSelection() const; | |
9ff4b6cc | 319 | |
eae20c90 | 320 | // Override these just to maintain consistency with virtual methods |
9ff4b6cc | 321 | // between classes. |
eae20c90 | 322 | virtual void Clear(); |
9ff4b6cc JS |
323 | virtual void GetSelection(long *from, long *to) const; |
324 | ||
c0f48280 | 325 | virtual void SetSelection(int n) { Select(n); } |
a340b80d | 326 | |
7ca4ac63 WS |
327 | |
328 | // Prevent a method from being hidden | |
329 | virtual void SetSelection(long from, long to) | |
330 | { | |
331 | wxComboCtrl::SetSelection(from,to); | |
332 | } | |
333 | ||
d9e0958c AB |
334 | // Return the widest item width (recalculating it if necessary) |
335 | virtual int GetWidestItemWidth() { EnsurePopupControl(); return GetVListBoxComboPopup()->GetWidestItemWidth(); } | |
336 | ||
337 | // Return the index of the widest item (recalculating it if necessary) | |
338 | virtual int GetWidestItem() { EnsurePopupControl(); return GetVListBoxComboPopup()->GetWidestItem(); } | |
339 | ||
a236aa20 VZ |
340 | virtual bool IsSorted() const { return HasFlag(wxCB_SORT); } |
341 | ||
a340b80d VZ |
342 | wxCONTROL_ITEMCONTAINER_CLIENTDATAOBJECT_RECAST |
343 | ||
344 | protected: | |
470f357f PC |
345 | virtual void DoClear(); |
346 | virtual void DoDeleteOneItem(unsigned int n); | |
a340b80d | 347 | |
40b26d75 WS |
348 | // Callback for drawing. Font, background and text colour have been |
349 | // prepared according to selection, focus and such. | |
350 | // item: item index to be drawn, may be wxNOT_FOUND when painting combo control itself | |
351 | // and there is no valid selection | |
352 | // flags: wxODCB_PAINTING_CONTROL is set if painting to combo control instead of list | |
353 | virtual void OnDrawItem( wxDC& dc, const wxRect& rect, int item, int flags ) const; | |
354 | ||
355 | // Callback for item height, or -1 for default | |
356 | virtual wxCoord OnMeasureItem( size_t item ) const; | |
357 | ||
358 | // Callback for item width, or -1 for default/undetermined | |
359 | virtual wxCoord OnMeasureItemWidth( size_t item ) const; | |
360 | ||
361 | // Callback for background drawing. Flags are same as with | |
362 | // OnDrawItem. | |
363 | virtual void OnDrawBackground( wxDC& dc, const wxRect& rect, int item, int flags ) const; | |
364 | ||
db53c6ea WS |
365 | // NULL popup can be used to indicate default interface |
366 | virtual void DoSetPopupControl(wxComboPopup* popup); | |
367 | ||
a340b80d VZ |
368 | // clears all allocated client datas |
369 | void ClearClientDatas(); | |
370 | ||
57693473 VZ |
371 | wxVListBoxComboPopup* GetVListBoxComboPopup() const |
372 | { | |
373 | return (wxVListBoxComboPopup*) m_popupInterface; | |
374 | } | |
375 | ||
a236aa20 VZ |
376 | virtual int DoInsertItems(const wxArrayStringsAdapter& items, |
377 | unsigned int pos, | |
378 | void **clientData, wxClientDataType type); | |
a340b80d VZ |
379 | virtual void DoSetItemClientData(unsigned int n, void* clientData); |
380 | virtual void* DoGetItemClientData(unsigned int n) const; | |
a340b80d | 381 | |
6d0ce565 VZ |
382 | // temporary storage for the initial choices |
383 | //const wxString* m_baseChoices; | |
384 | //int m_baseChoicesCount; | |
385 | wxArrayString m_initChs; | |
386 | ||
a340b80d VZ |
387 | private: |
388 | void Init(); | |
389 | ||
390 | DECLARE_EVENT_TABLE() | |
391 | ||
392 | DECLARE_DYNAMIC_CLASS(wxOwnerDrawnComboBox) | |
393 | }; | |
394 | ||
395 | ||
a57d600f | 396 | #endif // wxUSE_ODCOMBOBOX |
7ca4ac63 | 397 | |
a340b80d VZ |
398 | #endif |
399 | // _WX_ODCOMBO_H_ |