]>
Commit | Line | Data |
---|---|---|
1 | ///////////////////////////////////////////////////////////////////////////// | |
2 | // Name: combo.h | |
3 | // Purpose: interface of wxComboCtrl and wxComboPopup | |
4 | // Author: wxWidgets team | |
5 | // RCS-ID: $Id$ | |
6 | // Licence: wxWindows license | |
7 | ///////////////////////////////////////////////////////////////////////////// | |
8 | ||
9 | /** | |
10 | @class wxComboPopup | |
11 | ||
12 | In order to use a custom popup with wxComboCtrl, an interface class must be | |
13 | derived from wxComboPopup. | |
14 | ||
15 | For more information on how to use it, see @ref comboctrl_custompopup. | |
16 | ||
17 | @library{wxcore} | |
18 | @category{ctrl} | |
19 | ||
20 | @see wxComboCtrl | |
21 | */ | |
22 | class wxComboPopup | |
23 | { | |
24 | public: | |
25 | /** | |
26 | Default constructor. It is recommended that internal variables are | |
27 | prepared in Init() instead (because m_combo is not valid in | |
28 | constructor). | |
29 | */ | |
30 | wxComboPopup(); | |
31 | ||
32 | /** | |
33 | The derived class must implement this to create the popup control. | |
34 | ||
35 | @return @true if the call succeeded, @false otherwise. | |
36 | */ | |
37 | virtual bool Create(wxWindow* parent) = 0; | |
38 | ||
39 | /** | |
40 | Utility function that hides the popup. | |
41 | */ | |
42 | void Dismiss(); | |
43 | ||
44 | /** | |
45 | The derived class may implement this to return adjusted size for the | |
46 | popup control, according to the variables given. | |
47 | ||
48 | @param minWidth | |
49 | Preferred minimum width. | |
50 | @param prefHeight | |
51 | Preferred height. May be -1 to indicate no preference. | |
52 | @param maxHeight | |
53 | Max height for window, as limited by screen size. | |
54 | ||
55 | @remarks This function is called each time popup is about to be shown. | |
56 | */ | |
57 | virtual wxSize GetAdjustedSize(int minWidth, int prefHeight, int maxHeight); | |
58 | ||
59 | /** | |
60 | The derived class must implement this to return pointer to the | |
61 | associated control created in Create(). | |
62 | */ | |
63 | virtual wxWindow* GetControl() = 0; | |
64 | ||
65 | /** | |
66 | The derived class must implement this to return string representation | |
67 | of the value. | |
68 | */ | |
69 | virtual wxString GetStringValue() const = 0; | |
70 | ||
71 | /** | |
72 | The derived class must implement this to initialize its internal | |
73 | variables. This method is called immediately after construction | |
74 | finishes. m_combo member variable has been initialized before the call. | |
75 | */ | |
76 | virtual void Init(); | |
77 | ||
78 | /** | |
79 | Utility method that returns @true if Create has been called. | |
80 | ||
81 | Useful in conjunction with LazyCreate(). | |
82 | */ | |
83 | bool IsCreated() const; | |
84 | ||
85 | /** | |
86 | The derived class may implement this to return @true if it wants to | |
87 | delay call to Create() until the popup is shown for the first time. It | |
88 | is more efficient, but on the other hand it is often more convenient to | |
89 | have the control created immediately. | |
90 | ||
91 | @remarks Base implementation returns @false. | |
92 | */ | |
93 | virtual bool LazyCreate(); | |
94 | ||
95 | /** | |
96 | The derived class may implement this to do something when the parent | |
97 | wxComboCtrl gets double-clicked. | |
98 | */ | |
99 | virtual void OnComboDoubleClick(); | |
100 | ||
101 | /** | |
102 | The derived class may implement this to receive key events from the | |
103 | parent wxComboCtrl. | |
104 | ||
105 | Events not handled should be skipped, as usual. | |
106 | */ | |
107 | virtual void OnComboKeyEvent(wxKeyEvent& event); | |
108 | ||
109 | /** | |
110 | The derived class may implement this to do special processing when | |
111 | popup is hidden. | |
112 | */ | |
113 | virtual void OnDismiss(); | |
114 | ||
115 | /** | |
116 | The derived class may implement this to do special processing when | |
117 | popup is shown. | |
118 | */ | |
119 | virtual void OnPopup(); | |
120 | ||
121 | /** | |
122 | The derived class may implement this to paint the parent wxComboCtrl. | |
123 | ||
124 | Default implementation draws value as string. | |
125 | */ | |
126 | virtual void PaintComboControl(wxDC& dc, const wxRect& rect); | |
127 | ||
128 | /** | |
129 | The derived class must implement this to receive string value changes | |
130 | from wxComboCtrl. | |
131 | */ | |
132 | virtual void SetStringValue(const wxString& value); | |
133 | ||
134 | /** | |
135 | Parent wxComboCtrl. This is parameter has been prepared before Init() | |
136 | is called. | |
137 | */ | |
138 | wxComboCtrl m_combo; | |
139 | }; | |
140 | ||
141 | ||
142 | ||
143 | /** | |
144 | Features enabled for wxComboCtrl. | |
145 | ||
146 | @see wxComboCtrl::GetFeatures() | |
147 | */ | |
148 | struct wxComboCtrlFeatures | |
149 | { | |
150 | enum | |
151 | { | |
152 | MovableButton = 0x0001, ///< Button can be on either side of control. | |
153 | BitmapButton = 0x0002, ///< Button may be replaced with bitmap. | |
154 | ButtonSpacing = 0x0004, ///< Button can have spacing from the edge | |
155 | ///< of the control. | |
156 | TextIndent = 0x0008, ///< wxComboCtrl::SetTextIndent() can be used. | |
157 | PaintControl = 0x0010, ///< Combo control itself can be custom painted. | |
158 | PaintWritable = 0x0020, ///< A variable-width area in front of writable | |
159 | ///< combo control's textctrl can be custom | |
160 | ///< painted. | |
161 | Borderless = 0x0040, ///< wxNO_BORDER window style works. | |
162 | ||
163 | All = MovableButton | BitmapButton | ButtonSpacing | | |
164 | TextIndent | PaintControl | PaintWritable | | |
165 | Borderless ///< All features. | |
166 | }; | |
167 | }; | |
168 | ||
169 | ||
170 | /** | |
171 | @class wxComboCtrl | |
172 | ||
173 | A combo control is a generic combobox that allows totally custom popup. In | |
174 | addition it has other customization features. For instance, position and | |
175 | size of the dropdown button can be changed. | |
176 | ||
177 | @section comboctrl_custompopup Setting Custom Popup for wxComboCtrl | |
178 | ||
179 | wxComboCtrl needs to be told somehow which control to use and this is done | |
180 | by SetPopupControl(). However, we need something more than just a wxControl | |
181 | in this method as, for example, we need to call | |
182 | SetStringValue("initial text value") and wxControl doesn't have such | |
183 | method. So we also need a wxComboPopup which is an interface which must be | |
184 | implemented by a control to be usable as a popup. | |
185 | ||
186 | We couldn't derive wxComboPopup from wxControl as this would make it | |
187 | impossible to have a class deriving from a wxWidgets control and from it, | |
188 | so instead it is just a mix-in. | |
189 | ||
190 | Here's a minimal sample of wxListView popup: | |
191 | ||
192 | @code | |
193 | #include <wx/combo.h> | |
194 | #include <wx/listctrl.h> | |
195 | ||
196 | class wxListViewComboPopup : public wxListView, public wxComboPopup | |
197 | { | |
198 | public: | |
199 | // Initialize member variables | |
200 | virtual void Init() | |
201 | { | |
202 | m_value = -1; | |
203 | } | |
204 | ||
205 | // Create popup control | |
206 | virtual bool Create(wxWindow* parent) | |
207 | { | |
208 | return wxListView::Create(parent,1,wxPoint(0,0),wxDefaultSize); | |
209 | } | |
210 | ||
211 | // Return pointer to the created control | |
212 | virtual wxWindow *GetControl() { return this; } | |
213 | ||
214 | // Translate string into a list selection | |
215 | virtual void SetStringValue(const wxString& s) | |
216 | { | |
217 | int n = wxListView::FindItem(-1,s); | |
218 | if ( n >= 0 && n < wxListView::GetItemCount() ) | |
219 | wxListView::Select(n); | |
220 | } | |
221 | ||
222 | // Get list selection as a string | |
223 | virtual wxString GetStringValue() const | |
224 | { | |
225 | if ( m_value >= 0 ) | |
226 | return wxListView::GetItemText(m_value); | |
227 | return wxEmptyString; | |
228 | } | |
229 | ||
230 | // Do mouse hot-tracking (which is typical in list popups) | |
231 | void OnMouseMove(wxMouseEvent& event) | |
232 | { | |
233 | // TODO: Move selection to cursor | |
234 | } | |
235 | ||
236 | // On mouse left up, set the value and close the popup | |
237 | void OnMouseClick(wxMouseEvent& WXUNUSED(event)) | |
238 | { | |
239 | m_value = wxListView::GetFirstSelected(); | |
240 | ||
241 | // TODO: Send event as well | |
242 | ||
243 | Dismiss(); | |
244 | } | |
245 | ||
246 | protected: | |
247 | ||
248 | int m_value; // current item index | |
249 | ||
250 | private: | |
251 | DECLARE_EVENT_TABLE() | |
252 | }; | |
253 | ||
254 | BEGIN_EVENT_TABLE(wxListViewComboPopup, wxListView) | |
255 | EVT_MOTION(wxListViewComboPopup::OnMouseMove) | |
256 | EVT_LEFT_UP(wxListViewComboPopup::OnMouseClick) | |
257 | END_EVENT_TABLE() | |
258 | @endcode | |
259 | ||
260 | Here's how you would create and populate it in a dialog constructor: | |
261 | ||
262 | @code | |
263 | wxComboCtrl* comboCtrl = new wxComboCtrl(this, wxID_ANY, wxEmptyString); | |
264 | ||
265 | wxListViewComboPopup* popupCtrl = new wxListViewComboPopup(); | |
266 | ||
267 | comboCtrl->SetPopupControl(popupCtrl); | |
268 | ||
269 | // Populate using wxListView methods | |
270 | popupCtrl->InsertItem(popupCtrl->GetItemCount(), "First Item"); | |
271 | popupCtrl->InsertItem(popupCtrl->GetItemCount(), "Second Item"); | |
272 | popupCtrl->InsertItem(popupCtrl->GetItemCount(), "Third Item"); | |
273 | @endcode | |
274 | ||
275 | @beginStyleTable | |
276 | @style{wxCB_READONLY} | |
277 | Text will not be editable. | |
278 | @style{wxCB_SORT} | |
279 | Sorts the entries in the list alphabetically. | |
280 | @style{wxTE_PROCESS_ENTER} | |
281 | The control will generate the event wxEVT_COMMAND_TEXT_ENTER | |
282 | (otherwise pressing Enter key is either processed internally by the | |
283 | control or used for navigation between dialog controls). Windows | |
284 | only. | |
285 | @style{wxCC_SPECIAL_DCLICK} | |
286 | Double-clicking triggers a call to popup's OnComboDoubleClick. | |
287 | Actual behaviour is defined by a derived class. For instance, | |
288 | wxOwnerDrawnComboBox will cycle an item. This style only applies if | |
289 | wxCB_READONLY is used as well. | |
290 | @style{wxCC_STD_BUTTON} | |
291 | Drop button will behave more like a standard push button. | |
292 | @endStyleTable | |
293 | ||
294 | @beginEventTable{wxCommandEvent} | |
295 | @event{EVT_TEXT(id, func)} | |
296 | Process a wxEVT_COMMAND_TEXT_UPDATED event, when the text changes. | |
297 | @event{EVT_TEXT_ENTER(id, func)} | |
298 | Process a wxEVT_COMMAND_TEXT_ENTER event, when RETURN is pressed in | |
299 | the combo control. | |
300 | @endEventTable | |
301 | ||
302 | @library{wxbase} | |
303 | @category{ctrl} | |
304 | <!-- @appearance{comboctrl.png} --> | |
305 | ||
306 | @see wxComboBox, wxChoice, wxOwnerDrawnComboBox, wxComboPopup, | |
307 | wxCommandEvent | |
308 | */ | |
309 | class wxComboCtrl : public wxControl | |
310 | { | |
311 | public: | |
312 | /** | |
313 | Default constructor. | |
314 | */ | |
315 | wxComboCtrl(); | |
316 | ||
317 | /** | |
318 | Constructor, creating and showing a combo control. | |
319 | ||
320 | @param parent | |
321 | Parent window. Must not be @NULL. | |
322 | @param id | |
323 | Window identifier. The value wxID_ANY indicates a default value. | |
324 | @param value | |
325 | Initial selection string. An empty string indicates no selection. | |
326 | @param pos | |
327 | Window position. | |
328 | @param size | |
329 | Window size. If wxDefaultSize is specified then the window is sized | |
330 | appropriately. | |
331 | @param style | |
332 | Window style. See wxComboCtrl. | |
333 | @param validator | |
334 | Window validator. | |
335 | @param name | |
336 | Window name. | |
337 | ||
338 | @see Create(), wxValidator | |
339 | */ | |
340 | wxComboCtrl(wxWindow* parent, wxWindowID id = wxID_ANY, | |
341 | const wxString& value = wxEmptyString, | |
342 | const wxPoint& pos = wxDefaultPosition, | |
343 | const wxSize& size = wxDefaultSize, | |
344 | long style = 0, | |
345 | const wxValidator& validator = wxDefaultValidator, | |
346 | const wxString& name = wxComboBoxNameStr); | |
347 | ||
348 | /** | |
349 | Destructor, destroying the combo control. | |
350 | */ | |
351 | virtual ~wxComboCtrl(); | |
352 | ||
353 | /** | |
354 | Copies the selected text to the clipboard. | |
355 | */ | |
356 | virtual void Copy(); | |
357 | ||
358 | /** | |
359 | Creates the combo control for two-step construction. Derived classes | |
360 | should call or replace this function. See wxComboCtrl() for further | |
361 | details. | |
362 | */ | |
363 | bool Create(wxWindow* parent, wxWindowID id = wxID_ANY, | |
364 | const wxString& value = wxEmptyString, | |
365 | const wxPoint& pos = wxDefaultPosition, | |
366 | const wxSize& size = wxDefaultSize, | |
367 | long style = 0, | |
368 | const wxValidator& validator = wxDefaultValidator, | |
369 | const wxString& name = wxComboBoxNameStr); | |
370 | ||
371 | /** | |
372 | Copies the selected text to the clipboard and removes the selection. | |
373 | */ | |
374 | virtual void Cut(); | |
375 | ||
376 | /** | |
377 | Enables or disables popup animation, if any, depending on the value of | |
378 | the argument. | |
379 | */ | |
380 | void EnablePopupAnimation(bool enable = true); | |
381 | ||
382 | /** | |
383 | Returns disabled button bitmap that has been set with | |
384 | SetButtonBitmaps(). | |
385 | ||
386 | @return A reference to the disabled state bitmap. | |
387 | */ | |
388 | const wxBitmap& GetBitmapDisabled() const; | |
389 | ||
390 | /** | |
391 | Returns button mouse hover bitmap that has been set with | |
392 | SetButtonBitmaps(). | |
393 | ||
394 | @return A reference to the mouse hover state bitmap. | |
395 | */ | |
396 | const wxBitmap& GetBitmapHover() const; | |
397 | ||
398 | /** | |
399 | Returns default button bitmap that has been set with | |
400 | SetButtonBitmaps(). | |
401 | ||
402 | @return A reference to the normal state bitmap. | |
403 | */ | |
404 | const wxBitmap& GetBitmapNormal() const; | |
405 | ||
406 | /** | |
407 | Returns depressed button bitmap that has been set with | |
408 | SetButtonBitmaps(). | |
409 | ||
410 | @return A reference to the depressed state bitmap. | |
411 | */ | |
412 | const wxBitmap& GetBitmapPressed() const; | |
413 | ||
414 | /** | |
415 | Returns current size of the dropdown button. | |
416 | */ | |
417 | wxSize GetButtonSize(); | |
418 | ||
419 | /** | |
420 | Returns custom painted area in control. | |
421 | ||
422 | @see SetCustomPaintWidth(). | |
423 | */ | |
424 | int GetCustomPaintWidth() const; | |
425 | ||
426 | /** | |
427 | Returns features supported by wxComboCtrl. If needed feature is | |
428 | missing, you need to instead use wxGenericComboCtrl, which however may | |
429 | lack a native look and feel (but otherwise sports identical API). | |
430 | ||
431 | @return Value returned is a combination of the flags defined in | |
432 | wxComboCtrlFeatures. | |
433 | */ | |
434 | static int GetFeatures(); | |
435 | ||
436 | /** | |
437 | Returns the insertion point for the combo control's text field. | |
438 | ||
439 | @note Under Windows, this function always returns 0 if the combo | |
440 | control doesn't have the focus. | |
441 | */ | |
442 | virtual long GetInsertionPoint() const; | |
443 | ||
444 | /** | |
445 | Returns the last position in the combo control text field. | |
446 | */ | |
447 | virtual long GetLastPosition() const; | |
448 | ||
449 | /** | |
450 | Returns current popup interface that has been set with | |
451 | SetPopupControl(). | |
452 | */ | |
453 | wxComboPopup* GetPopupControl(); | |
454 | ||
455 | /** | |
456 | Returns popup window containing the popup control. | |
457 | */ | |
458 | wxWindow* GetPopupWindow() const; | |
459 | ||
460 | /** | |
461 | Get the text control which is part of the combo control. | |
462 | */ | |
463 | wxTextCtrl* GetTextCtrl() const; | |
464 | ||
465 | /** | |
466 | Returns actual indentation in pixels. | |
467 | */ | |
468 | wxCoord GetTextIndent() const; | |
469 | ||
470 | /** | |
471 | Returns area covered by the text field (includes everything except | |
472 | borders and the dropdown button). | |
473 | */ | |
474 | const wxRect& GetTextRect() const; | |
475 | ||
476 | /** | |
477 | Returns text representation of the current value. For writable combo | |
478 | control it always returns the value in the text field. | |
479 | */ | |
480 | virtual wxString GetValue() const; | |
481 | ||
482 | /** | |
483 | Dismisses the popup window. | |
484 | */ | |
485 | virtual void HidePopup(); | |
486 | ||
487 | /** | |
488 | Returns @true if the popup is currently shown | |
489 | */ | |
490 | bool IsPopupShown() const; | |
491 | ||
492 | /** | |
493 | Returns @true if the popup window is in the given state. Possible | |
494 | values are: | |
495 | ||
496 | @beginTable | |
497 | @row2col{wxComboCtrl::Hidden, Popup window is hidden.} | |
498 | @row2col{wxComboCtrl::Animating, Popup window is being shown, but the | |
499 | popup animation has not yet finished.} | |
500 | @row2col{wxComboCtrl::Visible, Popup window is fully visible.} | |
501 | @endTable | |
502 | */ | |
503 | bool IsPopupWindowState(int state) const; | |
504 | ||
505 | /** | |
506 | Implement in a derived class to define what happens on dropdown button | |
507 | click. Default action is to show the popup. | |
508 | ||
509 | @note If you implement this to do something else than show the popup, | |
510 | you must then also implement DoSetPopupControl() to always return | |
511 | @NULL. | |
512 | */ | |
513 | virtual void OnButtonClick(); | |
514 | ||
515 | /** | |
516 | Pastes text from the clipboard to the text field. | |
517 | */ | |
518 | virtual void Paste(); | |
519 | ||
520 | /** | |
521 | Removes the text between the two positions in the combo control text | |
522 | field. | |
523 | ||
524 | @param from | |
525 | The first position. | |
526 | @param to | |
527 | The last position. | |
528 | */ | |
529 | virtual void Remove(long from, long to); | |
530 | ||
531 | /** | |
532 | Replaces the text between two positions with the given text, in the | |
533 | combo control text field. | |
534 | ||
535 | @param from | |
536 | The first position. | |
537 | @param to | |
538 | The second position. | |
539 | @param text | |
540 | The text to insert. | |
541 | */ | |
542 | virtual void Replace(long from, long to, const wxString& text); | |
543 | ||
544 | /** | |
545 | Sets custom dropdown button graphics. | |
546 | ||
547 | @param bmpNormal | |
548 | Default button image. | |
549 | @param pushButtonBg | |
550 | If @true, blank push button background is painted below the image. | |
551 | @param bmpPressed | |
552 | Depressed button image. | |
553 | @param bmpHover | |
554 | Button image when mouse hovers above it. This should be ignored on | |
555 | platforms and themes that do not generally draw different kind of | |
556 | button on mouse hover. | |
557 | @param bmpDisabled | |
558 | Disabled button image. | |
559 | */ | |
560 | void SetButtonBitmaps(const wxBitmap& bmpNormal, | |
561 | bool pushButtonBg = false, | |
562 | const wxBitmap& bmpPressed = wxNullBitmap, | |
563 | const wxBitmap& bmpHover = wxNullBitmap, | |
564 | const wxBitmap& bmpDisabled = wxNullBitmap); | |
565 | ||
566 | /** | |
567 | Sets size and position of dropdown button. | |
568 | ||
569 | @param width | |
570 | Button width. Value = 0 specifies default. | |
571 | @param height | |
572 | Button height. Value = 0 specifies default. | |
573 | @param side | |
574 | Indicates which side the button will be placed. Value can be wxLEFT | |
575 | or wxRIGHT. | |
576 | @param spacingX | |
577 | Horizontal spacing around the button. Default is 0. | |
578 | */ | |
579 | void SetButtonPosition(int width = -1, int height = -1, | |
580 | int side = wxRIGHT, int spacingX = 0); | |
581 | ||
582 | /** | |
583 | Set width, in pixels, of custom painted area in control without | |
584 | @c wxCB_READONLY style. In read-only wxOwnerDrawnComboBox, this is used | |
585 | to indicate area that is not covered by the focus rectangle. | |
586 | */ | |
587 | void SetCustomPaintWidth(int width); | |
588 | ||
589 | /** | |
590 | Sets the insertion point in the text field. | |
591 | ||
592 | @param pos | |
593 | The new insertion point. | |
594 | */ | |
595 | virtual void SetInsertionPoint(long pos); | |
596 | ||
597 | /** | |
598 | Sets the insertion point at the end of the combo control text field. | |
599 | */ | |
600 | virtual void SetInsertionPointEnd(); | |
601 | ||
602 | /** | |
603 | Set side of the control to which the popup will align itself. Valid | |
604 | values are @c wxLEFT, @c wxRIGHT and 0. The default value 0 means that | |
605 | the most appropriate side is used (which, currently, is always | |
606 | @c wxLEFT). | |
607 | */ | |
608 | void SetPopupAnchor(int anchorSide); | |
609 | ||
610 | /** | |
611 | Set popup interface class derived from wxComboPopup. This method should | |
612 | be called as soon as possible after the control has been created, | |
613 | unless OnButtonClick() has been overridden. | |
614 | */ | |
615 | void SetPopupControl(wxComboPopup* popup); | |
616 | ||
617 | /** | |
618 | Extends popup size horizontally, relative to the edges of the combo | |
619 | control. | |
620 | ||
621 | @param extLeft | |
622 | How many pixel to extend beyond the left edge of the control. | |
623 | Default is 0. | |
624 | @param extRight | |
625 | How many pixel to extend beyond the right edge of the control. | |
626 | Default is 0. | |
627 | ||
628 | @remarks Popup minimum width may override arguments. It is up to the | |
629 | popup to fully take this into account. | |
630 | */ | |
631 | void SetPopupExtents(int extLeft, int extRight); | |
632 | ||
633 | /** | |
634 | Sets preferred maximum height of the popup. | |
635 | ||
636 | @remarks Value -1 indicates the default. | |
637 | */ | |
638 | void SetPopupMaxHeight(int height); | |
639 | ||
640 | /** | |
641 | Sets minimum width of the popup. If wider than combo control, it will | |
642 | extend to the left. | |
643 | ||
644 | @remarks Value -1 indicates the default. Also, popup implementation may | |
645 | choose to ignore this. | |
646 | */ | |
647 | void SetPopupMinWidth(int width); | |
648 | ||
649 | /** | |
650 | Selects the text between the two positions, in the combo control text | |
651 | field. | |
652 | ||
653 | @param from | |
654 | The first position. | |
655 | @param to | |
656 | The second position. | |
657 | */ | |
658 | virtual void SetSelection(long from, long to); | |
659 | ||
660 | /** | |
661 | Sets the text for the text field without affecting the popup. Thus, | |
662 | unlike SetValue(), it works equally well with combo control using | |
663 | @c wxCB_READONLY style. | |
664 | */ | |
665 | void SetText(const wxString& value); | |
666 | ||
667 | /** | |
668 | This will set the space in pixels between left edge of the control and | |
669 | the text, regardless whether control is read-only or not. Value -1 can | |
670 | be given to indicate platform default. | |
671 | */ | |
672 | void SetTextIndent(int indent); | |
673 | ||
674 | /** | |
675 | Sets the text for the combo control text field. | |
676 | ||
677 | @note For a combo control with @c wxCB_READONLY style the string must | |
678 | be accepted by the popup (for instance, exist in the dropdown | |
679 | list), otherwise the call to SetValue() is ignored. | |
680 | */ | |
681 | virtual void SetValue(const wxString& value); | |
682 | ||
683 | /** | |
684 | Same as SetValue(), but also sends wxCommandEvent of type | |
685 | wxEVT_COMMAND_TEXT_UPDATED if @a withEvent is @true. | |
686 | */ | |
687 | void SetValueWithEvent(const wxString& value, bool withEvent = true); | |
688 | ||
689 | /** | |
690 | Show the popup. | |
691 | */ | |
692 | virtual void ShowPopup(); | |
693 | ||
694 | /** | |
695 | Undoes the last edit in the text field. Windows only. | |
696 | */ | |
697 | virtual void Undo(); | |
698 | ||
699 | /** | |
700 | Enable or disable usage of an alternative popup window, which | |
701 | guarantees ability to focus the popup control, and allows common native | |
702 | controls to function normally. This alternative popup window is usually | |
703 | a wxDialog, and as such, when it is shown, its parent top-level window | |
704 | will appear as if the focus has been lost from it. | |
705 | */ | |
706 | void UseAltPopupWindow(bool enable = true); | |
707 | ||
708 | protected: | |
709 | ||
710 | /** | |
711 | This member function is not normally called in application code. | |
712 | Instead, it can be implemented in a derived class to create a custom | |
713 | popup animation. | |
714 | ||
715 | The parameters are the same as those for DoShowPopup(). | |
716 | ||
717 | @return @true if animation finishes before the function returns, | |
718 | @false otherwise. In the latter case you need to manually call | |
719 | DoShowPopup() after the animation ends. | |
720 | */ | |
721 | virtual bool AnimateShow(const wxRect& rect, int flags); | |
722 | ||
723 | /** | |
724 | This member function is not normally called in application code. | |
725 | Instead, it can be implemented in a derived class to return default | |
726 | wxComboPopup, incase @a popup is @NULL. | |
727 | ||
728 | @note If you have implemented OnButtonClick() to do something else than | |
729 | show the popup, then DoSetPopupControl() must always set @a popup | |
730 | to @NULL. | |
731 | */ | |
732 | virtual void DoSetPopupControl(wxComboPopup* popup); | |
733 | ||
734 | /** | |
735 | This member function is not normally called in application code. | |
736 | Instead, it must be called in a derived class to make sure popup is | |
737 | properly shown after a popup animation has finished (but only if | |
738 | AnimateShow() did not finish the animation within its function scope). | |
739 | ||
740 | @param rect | |
741 | Position to show the popup window at, in screen coordinates. | |
742 | @param flags | |
743 | Combination of any of the following: | |
744 | @beginTable | |
745 | @row2col{wxComboCtrl::ShowAbove, | |
746 | Popup is shown above the control instead of below.} | |
747 | @row2col{wxComboCtrl::CanDeferShow, | |
748 | Showing the popup can be deferred to happen sometime after | |
749 | ShowPopup() has finished. In this case, AnimateShow() must | |
750 | return false.} | |
751 | @endTable | |
752 | */ | |
753 | virtual void DoShowPopup(const wxRect& rect, int flags); | |
754 | }; | |
755 |