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