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