]>
Commit | Line | Data |
---|---|---|
a340b80d VZ |
1 | /////////////////////////////////////////////////////////////////////////////// |
2 | // Name: wx/combo.h | |
a57d600f | 3 | // Purpose: wxComboCtrl declaration |
a340b80d VZ |
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_COMBOCONTROL_H_BASE_ | |
13 | #define _WX_COMBOCONTROL_H_BASE_ | |
14 | ||
15 | ||
16 | /* | |
17 | A few words about all the classes defined in this file are probably in | |
a57d600f | 18 | order: why do we need extra wxComboCtrl and wxComboPopup classes? |
a340b80d VZ |
19 | |
20 | This is because a traditional combobox is a combination of a text control | |
21 | (with a button allowing to open the pop down list) with a listbox and | |
22 | wxComboBox class is exactly such control, however we want to also have other | |
23 | combinations - in fact, we want to allow anything at all to be used as pop | |
24 | down list, not just a wxListBox. | |
25 | ||
a57d600f | 26 | So we define a base wxComboCtrl which can use any control as pop down |
a340b80d | 27 | list and wxComboBox deriving from it which implements the standard wxWidgets |
a57d600f | 28 | combobox API. wxComboCtrl needs to be told somehow which control to use |
a340b80d VZ |
29 | and this is done by SetPopupControl(). However, we need something more than |
30 | just a wxControl in this method as, for example, we need to call | |
31 | SetSelection("initial text value") and wxControl doesn't have such method. | |
32 | So we also need a wxComboPopup which is just a very simple interface which | |
33 | must be implemented by a control to be usable as a popup. | |
34 | ||
35 | We couldn't derive wxComboPopup from wxControl as this would make it | |
36 | impossible to have a class deriving from both wxListBx and from it, so | |
37 | instead it is just a mix-in. | |
38 | */ | |
39 | ||
40 | ||
41 | #include "wx/defs.h" | |
42 | ||
a57d600f | 43 | #if wxUSE_COMBOCTRL |
a340b80d | 44 | |
dbaf49a9 | 45 | #include "wx/control.h" |
a340b80d | 46 | #include "wx/renderer.h" // this is needed for wxCONTROL_XXX flags |
7e983dab | 47 | #include "wx/bitmap.h" // wxBitmap used by-value |
a340b80d | 48 | |
dbaf49a9 | 49 | class WXDLLIMPEXP_CORE wxTextCtrl; |
a340b80d VZ |
50 | class WXDLLEXPORT wxComboPopup; |
51 | ||
52 | // | |
a57d600f | 53 | // New window styles for wxComboCtrlBase |
a340b80d VZ |
54 | // |
55 | enum | |
56 | { | |
57 | // Double-clicking a read-only combo triggers call to popup's OnComboPopup. | |
58 | // In wxOwnerDrawnComboBox, for instance, it cycles item. | |
59 | wxCC_SPECIAL_DCLICK = 0x0100, | |
60 | ||
61 | // Use keyboard behaviour alternate to platform default: | |
62 | // Up an down keys will show popup instead of cycling value. | |
63 | wxCC_ALT_KEYS = 0x0200, | |
64 | ||
65 | // Dropbutton acts like standard push button. | |
899eacc7 | 66 | wxCC_STD_BUTTON = 0x0400 |
a340b80d VZ |
67 | }; |
68 | ||
69 | ||
a57d600f | 70 | // wxComboCtrl internal flags |
a340b80d VZ |
71 | enum |
72 | { | |
73 | // First those that can be passed to Customize. | |
74 | // It is Windows style for all flags to be clear. | |
75 | ||
76 | // Button is preferred outside the border (GTK style) | |
77 | wxCC_BUTTON_OUTSIDE_BORDER = 0x0001, | |
78 | // Show popup on mouse up instead of mouse down (which is the Windows style) | |
79 | wxCC_POPUP_ON_MOUSE_UP = 0x0002, | |
80 | // All text is not automatically selected on click | |
81 | wxCC_NO_TEXT_AUTO_SELECT = 0x0004, | |
82 | ||
83 | // Internal use: signals creation is complete | |
84 | wxCC_IFLAG_CREATED = 0x0100, | |
85 | // Internal use: really put button outside | |
86 | wxCC_IFLAG_BUTTON_OUTSIDE = 0x0200, | |
87 | // Internal use: SetTextIndent has been called | |
88 | wxCC_IFLAG_INDENT_SET = 0x0400, | |
89 | // Internal use: Set wxTAB_TRAVERSAL to parent when popup is dismissed | |
899eacc7 | 90 | wxCC_IFLAG_PARENT_TAB_TRAVERSAL = 0x0800 |
a340b80d VZ |
91 | }; |
92 | ||
93 | ||
94 | // Flags used by PreprocessMouseEvent and HandleButtonMouseEvent | |
95 | enum | |
96 | { | |
899eacc7 | 97 | wxCC_MF_ON_BUTTON = 0x0001 // cursor is on dropbutton area |
a340b80d VZ |
98 | }; |
99 | ||
100 | ||
a57d600f VZ |
101 | // Namespace for wxComboCtrl feature flags |
102 | struct wxComboCtrlFeatures | |
a340b80d VZ |
103 | { |
104 | enum | |
105 | { | |
106 | MovableButton = 0x0001, // Button can be on either side of control | |
107 | BitmapButton = 0x0002, // Button may be replaced with bitmap | |
108 | ButtonSpacing = 0x0004, // Button can have spacing from the edge | |
109 | // of the control | |
110 | TextIndent = 0x0008, // SetTextIndent can be used | |
111 | PaintControl = 0x0010, // Combo control itself can be custom painted | |
112 | PaintWritable = 0x0020, // A variable-width area in front of writable | |
113 | // combo control's textctrl can be custom | |
114 | // painted | |
115 | Borderless = 0x0040, // wxNO_BORDER window style works | |
116 | ||
117 | // There are no feature flags for... | |
118 | // PushButtonBitmapBackground - if its in wxRendererNative, then it should be | |
119 | // not an issue to have it automatically under the bitmap. | |
120 | ||
121 | All = MovableButton|BitmapButton| | |
122 | ButtonSpacing|TextIndent| | |
123 | PaintControl|PaintWritable| | |
899eacc7 | 124 | Borderless |
a340b80d VZ |
125 | }; |
126 | }; | |
127 | ||
128 | ||
a57d600f | 129 | class WXDLLEXPORT wxComboCtrlBase : public wxControl |
a340b80d VZ |
130 | { |
131 | friend class wxComboPopup; | |
132 | public: | |
133 | // ctors and such | |
a57d600f | 134 | wxComboCtrlBase() : wxControl() { Init(); } |
a340b80d VZ |
135 | |
136 | bool Create(wxWindow *parent, | |
137 | wxWindowID id, | |
138 | const wxString& value, | |
139 | const wxPoint& pos, | |
140 | const wxSize& size, | |
141 | long style, | |
142 | const wxValidator& validator, | |
143 | const wxString& name); | |
144 | ||
a57d600f | 145 | virtual ~wxComboCtrlBase(); |
a340b80d VZ |
146 | |
147 | // show/hide popup window | |
148 | virtual void ShowPopup(); | |
149 | virtual void HidePopup(); | |
150 | ||
151 | // Override for totally custom combo action | |
152 | virtual void OnButtonClick(); | |
153 | ||
154 | // return true if the popup is currently shown | |
155 | bool IsPopupShown() const { return m_isPopupShown; } | |
156 | ||
157 | // set interface class instance derived from wxComboPopup | |
6d0ce565 VZ |
158 | // NULL popup can be used to indicate default in a derived class |
159 | virtual void SetPopupControl( wxComboPopup* popup ); | |
a340b80d VZ |
160 | |
161 | // get interface class instance derived from wxComboPopup | |
e4e11217 WS |
162 | wxComboPopup* GetPopupControl() |
163 | { | |
164 | EnsurePopupControl(); | |
165 | return m_popupInterface; | |
166 | } | |
a340b80d VZ |
167 | |
168 | // get the popup window containing the popup control | |
169 | wxWindow *GetPopupWindow() const { return m_winPopup; } | |
170 | ||
a340b80d VZ |
171 | // Get the text control which is part of the combobox. |
172 | wxTextCtrl *GetTextCtrl() const { return m_text; } | |
173 | ||
174 | // get the dropdown button which is part of the combobox | |
175 | // note: its not necessarily a wxButton or wxBitmapButton | |
176 | wxWindow *GetButton() const { return m_btn; } | |
177 | ||
178 | // forward these methods to all subcontrols | |
179 | virtual bool Enable(bool enable = true); | |
180 | virtual bool Show(bool show = true); | |
181 | virtual bool SetFont(const wxFont& font); | |
a340b80d VZ |
182 | |
183 | // wxTextCtrl methods - for readonly combo they should return | |
184 | // without errors. | |
185 | virtual wxString GetValue() const; | |
186 | virtual void SetValue(const wxString& value); | |
187 | virtual void Copy(); | |
188 | virtual void Cut(); | |
189 | virtual void Paste(); | |
190 | virtual void SetInsertionPoint(long pos); | |
191 | virtual void SetInsertionPointEnd(); | |
192 | virtual long GetInsertionPoint() const; | |
193 | virtual long GetLastPosition() const; | |
194 | virtual void Replace(long from, long to, const wxString& value); | |
195 | virtual void Remove(long from, long to); | |
196 | virtual void SetSelection(long from, long to); | |
197 | virtual void Undo(); | |
198 | ||
6d0ce565 VZ |
199 | // This method sets the text without affecting list selection |
200 | // (ie. wxComboPopup::SetStringValue doesn't get called). | |
201 | void SetText(const wxString& value); | |
202 | ||
a340b80d VZ |
203 | // |
204 | // Popup customization methods | |
205 | // | |
206 | ||
207 | // Sets minimum width of the popup. If wider than combo control, it will extend to the left. | |
208 | // Remarks: | |
209 | // * Value -1 indicates the default. | |
210 | // * Custom popup may choose to ignore this (wxOwnerDrawnComboBox does not). | |
211 | void SetPopupMinWidth( int width ) | |
212 | { | |
213 | m_widthMinPopup = width; | |
214 | } | |
215 | ||
216 | // Sets preferred maximum height of the popup. | |
217 | // Remarks: | |
218 | // * Value -1 indicates the default. | |
219 | // * Custom popup may choose to ignore this (wxOwnerDrawnComboBox does not). | |
220 | void SetPopupMaxHeight( int height ) | |
221 | { | |
222 | m_heightPopup = height; | |
223 | } | |
224 | ||
225 | // Extends popup size horizontally, relative to the edges of the combo control. | |
226 | // Remarks: | |
227 | // * Popup minimum width may override extLeft (ie. it has higher precedence). | |
228 | // * Values 0 indicate default. | |
229 | // * Custom popup may not take this fully into account (wxOwnerDrawnComboBox takes). | |
230 | void SetPopupExtents( int extLeft, int extRight ) | |
231 | { | |
232 | m_extLeft = extLeft; | |
233 | m_extRight = extRight; | |
234 | } | |
235 | ||
236 | // Set width, in pixels, of custom paint area in writable combo. | |
237 | // In read-only, used to indicate area that is not covered by the | |
238 | // focus rectangle (which may or may not be drawn, depending on the | |
239 | // popup type). | |
240 | void SetCustomPaintWidth( int width ); | |
241 | int GetCustomPaintWidth() const { return m_widthCustomPaint; } | |
242 | ||
243 | // Set side of the control to which the popup will align itself. | |
244 | // Valid values are wxLEFT, wxRIGHT and 0. The default value 0 wmeans | |
245 | // that the side of the button will be used. | |
246 | void SetPopupAnchor( int anchorSide ) | |
247 | { | |
248 | m_anchorSide = anchorSide; | |
249 | } | |
250 | ||
251 | // Set position of dropdown button. | |
252 | // width: 0 > for specific custom width, negative to adjust to smaller than default | |
253 | // height: 0 > for specific custom height, negative to adjust to smaller than default | |
254 | // side: wxLEFT or wxRIGHT, indicates on which side the button will be placed. | |
255 | // spacingX: empty space on sides of the button. Default is 0. | |
256 | // Remarks: | |
257 | // There is no spacingY - the button will be centered vertically. | |
6d0ce565 VZ |
258 | void SetButtonPosition( int width = 0, |
259 | int height = 0, | |
260 | int side = wxRIGHT, | |
261 | int spacingX = 0 ); | |
a340b80d VZ |
262 | |
263 | ||
264 | // | |
265 | // Sets dropbutton to be drawn with custom bitmaps. | |
266 | // | |
267 | // bmpNormal: drawn when cursor is not on button | |
6d0ce565 VZ |
268 | // pushButtonBg: Draw push button background below the image. |
269 | // NOTE! This is usually only properly supported on platforms with appropriate | |
270 | // method in wxRendererNative. | |
a340b80d VZ |
271 | // bmpPressed: drawn when button is depressed |
272 | // bmpHover: drawn when cursor hovers on button. This is ignored on platforms | |
273 | // that do not generally display hover differently. | |
274 | // bmpDisabled: drawn when combobox is disabled. | |
275 | void SetButtonBitmaps( const wxBitmap& bmpNormal, | |
6d0ce565 | 276 | bool pushButtonBg = false, |
a340b80d VZ |
277 | const wxBitmap& bmpPressed = wxNullBitmap, |
278 | const wxBitmap& bmpHover = wxNullBitmap, | |
279 | const wxBitmap& bmpDisabled = wxNullBitmap ); | |
280 | ||
281 | // | |
282 | // This will set the space in pixels between left edge of the control and the | |
283 | // text, regardless whether control is read-only (ie. no wxTextCtrl) or not. | |
284 | // Platform-specific default can be set with value-1. | |
285 | // Remarks | |
286 | // * This method may do nothing on some native implementations. | |
287 | void SetTextIndent( int indent ); | |
288 | ||
289 | // Returns actual indentation in pixels. | |
290 | wxCoord GetTextIndent() const | |
291 | { | |
292 | return m_absIndent; | |
293 | } | |
294 | ||
295 | // | |
296 | // Utilies needed by the popups or native implementations | |
297 | // | |
298 | ||
299 | // Draws focus background (on combo control) in a way typical on platform. | |
300 | // Unless you plan to paint your own focus indicator, you should always call this | |
301 | // in your wxComboPopup::PaintComboControl implementation. | |
302 | // In addition, it sets pen and text colour to what looks good and proper | |
303 | // against the background. | |
304 | // flags: wxRendererNative flags: wxCONTROL_ISSUBMENU: is drawing a list item instead of combo control | |
305 | // wxCONTROL_SELECTED: list item is selected | |
306 | // wxCONTROL_DISABLED: control/item is disabled | |
307 | virtual void DrawFocusBackground( wxDC& dc, const wxRect& rect, int flags ); | |
308 | ||
6d0ce565 | 309 | // Returns true if focus indicator should be drawn in the control. |
a340b80d VZ |
310 | bool ShouldDrawFocus() const |
311 | { | |
312 | const wxWindow* curFocus = FindFocus(); | |
313 | return ( !m_isPopupShown && | |
314 | (curFocus == this || (m_btn && curFocus == m_btn)) && | |
315 | (m_windowStyle & wxCB_READONLY) ); | |
316 | } | |
317 | ||
318 | // These methods return references to appropriate dropbutton bitmaps | |
319 | const wxBitmap& GetBitmapNormal() const { return m_bmpNormal; } | |
320 | const wxBitmap& GetBitmapPressed() const { return m_bmpPressed; } | |
321 | const wxBitmap& GetBitmapHover() const { return m_bmpHover; } | |
322 | const wxBitmap& GetBitmapDisabled() const { return m_bmpDisabled; } | |
323 | ||
324 | // Return internal flags | |
325 | wxUint32 GetInternalFlags() const { return m_iFlags; } | |
326 | ||
327 | // Return true if Create has finished | |
328 | bool IsCreated() const { return m_iFlags & wxCC_IFLAG_CREATED ? true : false; } | |
329 | ||
a340b80d VZ |
330 | // common code to be called on popup hide/dismiss |
331 | void OnPopupDismiss(); | |
332 | ||
333 | protected: | |
334 | ||
335 | // | |
336 | // Override these for customization purposes | |
337 | // | |
338 | ||
339 | // called from wxSizeEvent handler | |
340 | virtual void OnResize() = 0; | |
341 | ||
342 | // Return native text identation (for pure text, not textctrl) | |
343 | virtual wxCoord GetNativeTextIndent() const; | |
344 | ||
345 | // Called in syscolourchanged handler and base create | |
346 | virtual void OnThemeChange(); | |
347 | ||
348 | // Creates wxTextCtrl. | |
349 | // extraStyle: Extra style parameters | |
350 | void CreateTextCtrl( int extraStyle, const wxValidator& validator ); | |
351 | ||
352 | // Installs standard input handler to combo (and optionally to the textctrl) | |
353 | void InstallInputHandlers( bool alsoTextCtrl = true ); | |
354 | ||
355 | // Draws dropbutton. Using wxRenderer or bitmaps, as appropriate. | |
356 | void DrawButton( wxDC& dc, const wxRect& rect, bool paintBg = true ); | |
357 | ||
358 | // Call if cursor is on button area or mouse is captured for the button. | |
359 | //bool HandleButtonMouseEvent( wxMouseEvent& event, bool isInside ); | |
360 | bool HandleButtonMouseEvent( wxMouseEvent& event, int flags ); | |
361 | ||
362 | // Conversion to double-clicks and some basic filtering | |
363 | // returns true if event was consumed or filtered (event type is also set to 0 in this case) | |
364 | //bool PreprocessMouseEvent( wxMouseEvent& event, bool isOnButtonArea ); | |
365 | bool PreprocessMouseEvent( wxMouseEvent& event, int flags ); | |
366 | ||
367 | // | |
368 | // This will handle left_down and left_dclick events outside button in a Windows-like manner. | |
369 | // If you need alternate behaviour, it is recommended you manipulate and filter events to it | |
370 | // instead of building your own handling routine (for reference, on wxEVT_LEFT_DOWN it will | |
371 | // toggle popup and on wxEVT_LEFT_DCLICK it will do the same or run the popup's dclick method, | |
372 | // if defined - you should pass events of other types of it for common processing). | |
373 | void HandleNormalMouseEvent( wxMouseEvent& event ); | |
374 | ||
375 | // Creates popup window, calls interface->Create(), etc | |
376 | void CreatePopup(); | |
377 | ||
7ca4ac63 WS |
378 | // Destroy popup window and all related constructs |
379 | void DestroyPopup(); | |
380 | ||
a340b80d VZ |
381 | // override the base class virtuals involved in geometry calculations |
382 | virtual void DoMoveWindow(int x, int y, int width, int height); | |
383 | virtual wxSize DoGetBestSize() const; | |
384 | ||
6d0ce565 VZ |
385 | // ensures there is atleast the default popup |
386 | void EnsurePopupControl(); | |
387 | ||
a340b80d VZ |
388 | // Recalculates button and textctrl areas. Called when size or button setup change. |
389 | // btnWidth: default/calculated width of the dropbutton. 0 means unchanged, | |
390 | // just recalculate. | |
391 | void CalculateAreas( int btnWidth = 0 ); | |
392 | ||
393 | // Standard textctrl positioning routine. Just give it platform-dependant | |
394 | // textctrl coordinate adjustment. | |
395 | void PositionTextCtrl( int textCtrlXAdjust, int textCtrlYAdjust ); | |
396 | ||
397 | // event handlers | |
398 | void OnSizeEvent( wxSizeEvent& event ); | |
399 | void OnFocusEvent(wxFocusEvent& event); | |
400 | void OnTextCtrlEvent(wxCommandEvent& event); | |
401 | void OnSysColourChanged(wxSysColourChangedEvent& event); | |
402 | ||
a57d600f | 403 | // Set customization flags (directs how wxComboCtrlBase helpers behave) |
a340b80d VZ |
404 | void Customize( wxUint32 flags ) { m_iFlags |= flags; } |
405 | ||
406 | // Dispatches size event and refreshes | |
407 | void RecalcAndRefresh(); | |
408 | ||
dcc8cf5a PC |
409 | #if wxUSE_TOOLTIPS |
410 | virtual void DoSetToolTip( wxToolTip *tip ); | |
411 | #endif | |
412 | ||
a340b80d VZ |
413 | // Used by OnPaints of derived classes |
414 | wxBitmap& GetBufferBitmap(const wxSize& sz) const; | |
415 | ||
416 | // This is used when m_text is hidden (readonly). | |
417 | wxString m_valueString; | |
418 | ||
419 | // the text control and button we show all the time | |
420 | wxTextCtrl* m_text; | |
421 | wxWindow* m_btn; | |
422 | ||
423 | // wxPopupWindow or similar containing the window managed by the interface. | |
424 | wxWindow* m_winPopup; | |
425 | ||
426 | // the popup control/panel | |
427 | wxWindow* m_popup; | |
428 | ||
429 | // popup interface | |
6d0ce565 | 430 | wxComboPopup* m_popupInterface; |
a340b80d VZ |
431 | |
432 | // this is for this control itself | |
433 | wxEvtHandler* m_extraEvtHandler; | |
434 | ||
435 | // this is for text | |
436 | wxEvtHandler* m_textEvtHandler; | |
437 | ||
438 | // this is for the top level window | |
439 | wxEvtHandler* m_toplevEvtHandler; | |
440 | ||
441 | // this is for the control in popup | |
442 | wxEvtHandler* m_popupExtraHandler; | |
443 | ||
444 | // needed for "instant" double-click handling | |
445 | wxLongLong m_timeLastMouseUp; | |
446 | ||
447 | // used to prevent immediate re-popupping incase closed popup | |
448 | // by clicking on the combo control (needed because of inconsistent | |
449 | // transient implementation across platforms). | |
450 | wxLongLong m_timeCanAcceptClick; | |
451 | ||
452 | // how much popup should expand to the left/right of the control | |
453 | wxCoord m_extLeft; | |
454 | wxCoord m_extRight; | |
455 | ||
456 | // minimum popup width | |
457 | wxCoord m_widthMinPopup; | |
458 | ||
459 | // preferred popup height | |
460 | wxCoord m_heightPopup; | |
461 | ||
462 | // how much of writable combo is custom-paint by callback? | |
463 | // also used to indicate area that is not covered by "blue" | |
464 | // selection indicator. | |
465 | wxCoord m_widthCustomPaint; | |
466 | ||
467 | // absolute text indentation, in pixels | |
468 | wxCoord m_absIndent; | |
469 | ||
470 | // side on which the popup is aligned | |
471 | int m_anchorSide; | |
472 | ||
473 | // Width of the "fake" border | |
474 | wxCoord m_widthCustomBorder; | |
475 | ||
476 | // The button and textctrl click/paint areas | |
477 | wxRect m_tcArea; | |
478 | wxRect m_btnArea; | |
479 | ||
480 | // current button state (uses renderer flags) | |
481 | int m_btnState; | |
482 | ||
483 | // button position | |
484 | int m_btnWid; | |
485 | int m_btnHei; | |
486 | int m_btnSide; | |
487 | int m_btnSpacingX; | |
488 | ||
489 | // last default button width | |
490 | int m_btnWidDefault; | |
491 | ||
492 | // custom dropbutton bitmaps | |
493 | wxBitmap m_bmpNormal; | |
494 | wxBitmap m_bmpPressed; | |
495 | wxBitmap m_bmpHover; | |
496 | wxBitmap m_bmpDisabled; | |
497 | ||
498 | // area used by the button | |
499 | wxSize m_btnSize; | |
500 | ||
501 | // platform-dependant customization and other flags | |
502 | wxUint32 m_iFlags; | |
503 | ||
504 | // draw blank button background under bitmap? | |
505 | bool m_blankButtonBg; | |
506 | ||
507 | // is the popup window currenty shown? | |
508 | bool m_isPopupShown; | |
509 | ||
510 | // Set to 1 on mouse down, 0 on mouse up. Used to eliminate down-less mouse ups. | |
511 | bool m_downReceived; | |
512 | ||
513 | private: | |
514 | void Init(); | |
515 | ||
516 | DECLARE_EVENT_TABLE() | |
517 | ||
a57d600f | 518 | DECLARE_ABSTRACT_CLASS(wxComboCtrlBase) |
a340b80d VZ |
519 | }; |
520 | ||
521 | ||
522 | // ---------------------------------------------------------------------------- | |
523 | // wxComboPopup is the interface which must be implemented by a control to be | |
a57d600f | 524 | // used as a popup by wxComboCtrl |
a340b80d VZ |
525 | // ---------------------------------------------------------------------------- |
526 | ||
527 | ||
528 | // wxComboPopup internal flags | |
529 | enum | |
530 | { | |
a57d600f | 531 | wxCP_IFLAG_CREATED = 0x0001 // Set by wxComboCtrlBase after Create is called |
a340b80d VZ |
532 | }; |
533 | ||
534 | ||
535 | class WXDLLEXPORT wxComboPopup | |
536 | { | |
a57d600f | 537 | friend class wxComboCtrlBase; |
a340b80d | 538 | public: |
6d0ce565 | 539 | wxComboPopup() |
a340b80d | 540 | { |
a57d600f | 541 | m_combo = (wxComboCtrlBase*) NULL; |
a340b80d VZ |
542 | m_iFlags = 0; |
543 | } | |
544 | ||
6d0ce565 VZ |
545 | // This is called immediately after construction finishes. m_combo member |
546 | // variable has been initialized before the call. | |
547 | // NOTE: It is not in constructor so the derived class doesn't need to redefine | |
548 | // a default constructor of its own. | |
549 | virtual void Init() { }; | |
550 | ||
a340b80d VZ |
551 | virtual ~wxComboPopup(); |
552 | ||
553 | // Create the popup child control. | |
554 | // Return true for success. | |
555 | virtual bool Create(wxWindow* parent) = 0; | |
556 | ||
557 | // We must have an associated control which is subclassed by the combobox. | |
558 | virtual wxWindow *GetControl() = 0; | |
559 | ||
560 | // Called immediately after the popup is shown | |
561 | virtual void OnPopup(); | |
562 | ||
563 | // Called when popup is dismissed | |
564 | virtual void OnDismiss(); | |
565 | ||
566 | // Called just prior to displaying popup. | |
567 | // Default implementation does nothing. | |
568 | virtual void SetStringValue( const wxString& value ); | |
569 | ||
570 | // Gets displayed string representation of the value. | |
571 | virtual wxString GetStringValue() const = 0; | |
572 | ||
573 | // This is called to custom paint in the combo control itself (ie. not the popup). | |
574 | // Default implementation draws value as string. | |
575 | virtual void PaintComboControl( wxDC& dc, const wxRect& rect ); | |
576 | ||
a57d600f | 577 | // Receives key events from the parent wxComboCtrl. |
a340b80d VZ |
578 | // Events not handled should be skipped, as usual. |
579 | virtual void OnComboKeyEvent( wxKeyEvent& event ); | |
580 | ||
581 | // Implement if you need to support special action when user | |
a57d600f | 582 | // double-clicks on the parent wxComboCtrl. |
a340b80d VZ |
583 | virtual void OnComboDoubleClick(); |
584 | ||
585 | // Return final size of popup. Called on every popup, just prior to OnShow. | |
586 | // minWidth = preferred minimum width for window | |
587 | // prefHeight = preferred height. Only applies if > 0, | |
588 | // maxHeight = max height for window, as limited by screen size | |
589 | // and should only be rounded down, if necessary. | |
590 | virtual wxSize GetAdjustedSize( int minWidth, int prefHeight, int maxHeight ); | |
591 | ||
592 | // Return true if you want delay call to Create until the popup is shown | |
593 | // for the first time. It is more efficient, but note that it is often | |
594 | // more convenient to have the control created immediately. | |
595 | // Default returns false. | |
596 | virtual bool LazyCreate(); | |
597 | ||
598 | // | |
599 | // Utilies | |
600 | // | |
601 | ||
602 | // Hides the popup | |
603 | void Dismiss(); | |
604 | ||
605 | // Returns true if Create has been called. | |
606 | bool IsCreated() const | |
607 | { | |
608 | return (m_iFlags & wxCP_IFLAG_CREATED) ? true : false; | |
609 | } | |
610 | ||
6d0ce565 | 611 | // Default PaintComboControl behaviour |
a57d600f | 612 | static void DefaultPaintComboControl( wxComboCtrlBase* combo, |
6d0ce565 VZ |
613 | wxDC& dc, |
614 | const wxRect& rect ); | |
615 | ||
a340b80d | 616 | protected: |
a57d600f | 617 | wxComboCtrlBase* m_combo; |
a340b80d | 618 | wxUint32 m_iFlags; |
6d0ce565 VZ |
619 | |
620 | private: | |
a57d600f VZ |
621 | // Called in wxComboCtrlBase::SetPopupControl |
622 | void InitBase(wxComboCtrlBase *combo) | |
6d0ce565 VZ |
623 | { |
624 | m_combo = combo; | |
625 | } | |
a340b80d VZ |
626 | }; |
627 | ||
628 | ||
629 | // ---------------------------------------------------------------------------- | |
630 | // include the platform-dependent header defining the real class | |
631 | // ---------------------------------------------------------------------------- | |
632 | ||
633 | #if defined(__WXUNIVERSAL__) | |
634 | // No native universal (but it must still be first in the list) | |
635 | #elif defined(__WXMSW__) | |
636 | #include "wx/msw/combo.h" | |
637 | #endif | |
638 | ||
639 | // Any ports may need generic as an alternative | |
640 | #include "wx/generic/combo.h" | |
641 | ||
a57d600f | 642 | #endif // wxUSE_COMBOCTRL |
a340b80d VZ |
643 | |
644 | #endif | |
645 | // _WX_COMBOCONTROL_H_BASE_ |