1 /////////////////////////////////////////////////////////////////////////////
3 // Purpose: wxComboCtrl sample
4 // Author: Jaakko Salli
6 // Created: Apr-30-2006
8 // Copyright: (c) Jaakko Salli
9 // Licence: wxWindows licence
10 /////////////////////////////////////////////////////////////////////////////
12 // ============================================================================
14 // ============================================================================
16 // ----------------------------------------------------------------------------
18 // ----------------------------------------------------------------------------
20 // For compilers that support precompilation, includes "wx/wx.h".
21 #include "wx/wxprec.h"
27 // for all others, include the necessary headers (this file is usually all you
28 // need because it includes almost all "standard" wxWidgets headers)
34 #error "Please set wxUSE_COMBOCTRL to 1 and rebuild the library."
40 #include "wx/odcombo.h"
42 // ----------------------------------------------------------------------------
44 // ----------------------------------------------------------------------------
46 // the application icon (under Windows and OS/2 it is in resources and even
47 // though we could still include the XPM here it would be unused)
48 #if !defined(__WXMSW__) && !defined(__WXPM__)
49 #include "../sample.xpm"
52 // ----------------------------------------------------------------------------
54 // ----------------------------------------------------------------------------
56 // Define a new application type, each program should derive a class from wxApp
57 class MyApp
: public wxApp
60 // override base class virtuals
61 // ----------------------------
63 // this one is called on application startup and is a good place for the app
64 // initialization (doing it here and not in the ctor allows to have an error
65 // return: if OnInit() returns false, the application terminates)
66 virtual bool OnInit();
69 // Define a new frame type: this is going to be our main frame
70 class MyFrame
: public wxFrame
74 MyFrame(const wxString
& title
);
77 // event handlers (these functions should _not_ be virtual)
78 void OnQuit(wxCommandEvent
& event
);
79 void OnAbout(wxCommandEvent
& event
);
81 void OnShowComparison( wxCommandEvent
& event
);
83 // log wxComboCtrl events
84 void OnComboBoxUpdate( wxCommandEvent
& event
);
86 void OnIdle( wxIdleEvent
& event
);
89 wxCheckBox
* m_cbUseAnim
;
95 // Common list of items for all dialogs.
96 wxArrayString m_arrItems
;
99 // any class wishing to process wxWidgets events must use this macro
100 DECLARE_EVENT_TABLE()
103 // ----------------------------------------------------------------------------
105 // ----------------------------------------------------------------------------
107 // IDs for the controls and the menu commands
110 ComboControl_Compare
= wxID_HIGHEST
,
113 ComboControl_Quit
= wxID_EXIT
,
115 // it is important for the id corresponding to the "About" command to have
116 // this standard value as otherwise it won't be handled properly under Mac
117 // (where it is special and put into the "Apple" menu)
118 ComboControl_About
= wxID_ABOUT
121 // ----------------------------------------------------------------------------
122 // event tables and other macros for wxWidgets
123 // ----------------------------------------------------------------------------
125 // the event tables connect the wxWidgets events with the functions (event
126 // handlers) which process them. It can be also done at run-time, but for the
127 // simple menu events like this the static method is much simpler.
128 BEGIN_EVENT_TABLE(MyFrame
, wxFrame
)
129 EVT_TEXT(wxID_ANY
,MyFrame::OnComboBoxUpdate
)
130 EVT_COMBOBOX(wxID_ANY
,MyFrame::OnComboBoxUpdate
)
132 EVT_MENU(ComboControl_Compare
, MyFrame::OnShowComparison
)
133 EVT_MENU(ComboControl_Quit
, MyFrame::OnQuit
)
134 EVT_MENU(ComboControl_About
, MyFrame::OnAbout
)
136 EVT_IDLE(MyFrame::OnIdle
)
139 // Create a new application object: this macro will allow wxWidgets to create
140 // the application object during program execution (it's better than using a
141 // static object for many reasons) and also implements the accessor function
142 // wxGetApp() which will return the reference of the right type (i.e. MyApp and
146 // ============================================================================
148 // ============================================================================
150 // ----------------------------------------------------------------------------
151 // the application class
152 // ----------------------------------------------------------------------------
154 // 'Main program' equivalent: the program execution "starts" here
157 // create the main application window
158 MyFrame
*frame
= new MyFrame(_T("wxComboCtrl and wxOwnerDrawnComboBox Sample"));
160 // and show it (the frames, unlike simple controls, are not shown when
161 // created initially)
164 // success: wxApp::OnRun() will be called which will enter the main message
165 // loop and the application will run. If we returned false here, the
166 // application would exit immediately.
171 // ----------------------------------------------------------------------------
172 // wxOwnerDrawnComboBox with custom paint list items
173 // ----------------------------------------------------------------------------
175 class wxPenStyleComboBox
: public wxOwnerDrawnComboBox
178 virtual void OnDrawItem( wxDC
& dc
,
183 if ( item
== wxNOT_FOUND
)
190 int penStyle
= wxSOLID
;
192 penStyle
= wxTRANSPARENT
;
193 else if ( item
== 2 )
195 else if ( item
== 3 )
196 penStyle
= wxLONG_DASH
;
197 else if ( item
== 4 )
198 penStyle
= wxSHORT_DASH
;
199 else if ( item
== 5 )
200 penStyle
= wxDOT_DASH
;
201 else if ( item
== 6 )
202 penStyle
= wxBDIAGONAL_HATCH
;
203 else if ( item
== 7 )
204 penStyle
= wxCROSSDIAG_HATCH
;
205 else if ( item
== 8 )
206 penStyle
= wxFDIAGONAL_HATCH
;
207 else if ( item
== 9 )
208 penStyle
= wxCROSS_HATCH
;
209 else if ( item
== 10 )
210 penStyle
= wxHORIZONTAL_HATCH
;
211 else if ( item
== 11 )
212 penStyle
= wxVERTICAL_HATCH
;
214 wxPen
pen( dc
.GetTextForeground(), 3, penStyle
);
216 // Get text colour as pen colour
219 if ( !(flags
& wxODCB_PAINTING_CONTROL
) )
221 dc
.DrawText(GetString( item
),
223 (r
.y
+ 0) + ( (r
.height
/2) - dc
.GetCharHeight() )/2
226 dc
.DrawLine( r
.x
+5, r
.y
+((r
.height
/4)*3), r
.x
+r
.width
- 5, r
.y
+((r
.height
/4)*3) );
230 dc
.DrawLine( r
.x
+5, r
.y
+r
.height
/2, r
.x
+r
.width
- 5, r
.y
+r
.height
/2 );
234 virtual void OnDrawBackground( wxDC
& dc
, const wxRect
& rect
,
235 int item
, int flags
) const
238 // If item is selected or even, or we are painting the
239 // combo control itself, use the default rendering.
240 if ( (flags
& (wxODCB_PAINTING_CONTROL
|wxODCB_PAINTING_SELECTED
)) ||
243 wxOwnerDrawnComboBox::OnDrawBackground(dc
,rect
,item
,flags
);
247 // Otherwise, draw every other background with different colour.
248 wxColour
bgCol(240,240,250);
249 dc
.SetBrush(wxBrush(bgCol
));
250 dc
.SetPen(wxPen(bgCol
));
251 dc
.DrawRectangle(rect
);
254 virtual wxCoord
OnMeasureItem( size_t item
) const
256 // Simply demonstrate the ability to have variable-height items
263 virtual wxCoord
OnMeasureItemWidth( size_t WXUNUSED(item
) ) const
265 return -1; // default - will be measured from text width
271 // ----------------------------------------------------------------------------
272 // wxListView Custom popup interface
273 // ----------------------------------------------------------------------------
275 #include <wx/listctrl.h>
277 class ListViewComboPopup
: public wxListView
, public wxComboPopup
284 m_itemHere
= -1; // hot item in list
287 virtual bool Create( wxWindow
* parent
)
289 return wxListView::Create(parent
,1,
290 wxPoint(0,0),wxDefaultSize
,
291 wxLC_LIST
|wxLC_SINGLE_SEL
|
292 wxLC_SORT_ASCENDING
|wxSIMPLE_BORDER
);
295 virtual wxWindow
*GetControl() { return this; }
297 virtual void SetStringValue( const wxString
& s
)
299 int n
= wxListView::FindItem(-1,s
);
300 if ( n
>= 0 && n
< GetItemCount() )
301 wxListView::Select(n
);
304 virtual wxString
GetStringValue() const
307 return wxListView::GetItemText(m_value
);
308 return wxEmptyString
;
312 // Popup event handlers
315 // Mouse hot-tracking
316 void OnMouseMove(wxMouseEvent
& event
)
318 // Move selection to cursor if it is inside the popup
321 int itemHere
= HitTest(event
.GetPosition(),resFlags
);
324 wxListView::Select(itemHere
,true);
325 m_itemHere
= itemHere
;
330 // On mouse left, set the value and close the popup
331 void OnMouseClick(wxMouseEvent
& WXUNUSED(event
))
333 m_value
= m_itemHere
;
339 // Utilies for item manipulation
342 void AddSelection( const wxString
& selstr
)
344 wxListView::InsertItem(GetItemCount(),selstr
);
349 int m_value
; // current item index
350 int m_itemHere
; // hot item in popup
353 DECLARE_EVENT_TABLE()
356 BEGIN_EVENT_TABLE(ListViewComboPopup
, wxListView
)
357 EVT_MOTION(ListViewComboPopup::OnMouseMove
)
358 // NOTE: Left down event is used instead of left up right now
359 // since MSW wxListCtrl doesn't seem to emit left ups
361 EVT_LEFT_DOWN(ListViewComboPopup::OnMouseClick
)
365 // ----------------------------------------------------------------------------
366 // wxTreeCtrl Custom popup interface
367 // ----------------------------------------------------------------------------
369 #include <wx/treectrl.h>
371 class TreeCtrlComboPopup
: public wxTreeCtrl
, public wxComboPopup
379 virtual bool Create( wxWindow
* parent
)
381 return wxTreeCtrl::Create(parent
,1,
382 wxPoint(0,0),wxDefaultSize
,
383 wxTR_HIDE_ROOT
|wxTR_HAS_BUTTONS
|
384 wxTR_SINGLE
|wxTR_LINES_AT_ROOT
|
388 virtual void OnShow()
390 // make sure selected item is visible
391 if ( m_value
.IsOk() )
392 EnsureVisible(m_value
);
395 virtual wxSize
GetAdjustedSize( int minWidth
,
396 int WXUNUSED(prefHeight
),
399 return wxSize(wxMax(300,minWidth
),wxMin(250,maxHeight
));
402 virtual wxWindow
*GetControl() { return this; }
404 // Needed by SetStringValue
405 wxTreeItemId
FindItemByText( wxTreeItemId parent
, const wxString
& text
)
407 wxTreeItemIdValue cookie
;
408 wxTreeItemId child
= GetFirstChild(parent
,cookie
);
409 while ( child
.IsOk() )
411 if ( GetItemText(child
) == text
)
415 if ( ItemHasChildren(child
) )
417 wxTreeItemId found
= FindItemByText(child
,text
);
421 child
= GetNextChild(parent
,cookie
);
423 return wxTreeItemId();
426 virtual void SetStringValue( const wxString
& s
)
428 wxTreeItemId root
= GetRootItem();
432 wxTreeItemId found
= FindItemByText(root
,s
);
435 m_value
= m_itemHere
= found
;
436 wxTreeCtrl::SelectItem(found
);
440 virtual wxString
GetStringValue() const
442 if ( m_value
.IsOk() )
443 return wxTreeCtrl::GetItemText(m_value
);
444 return wxEmptyString
;
448 // Popup event handlers
451 // Mouse hot-tracking
452 void OnMouseMove(wxMouseEvent
& event
)
455 wxTreeItemId itemHere
= HitTest(event
.GetPosition(),resFlags
);
456 if ( itemHere
.IsOk() && (resFlags
& wxTREE_HITTEST_ONITEMLABEL
) )
458 wxTreeCtrl::SelectItem(itemHere
,true);
459 m_itemHere
= itemHere
;
464 // On mouse left, set the value and close the popup
465 void OnMouseClick(wxMouseEvent
& event
)
468 wxTreeItemId itemHere
= HitTest(event
.GetPosition(),resFlags
);
469 if ( itemHere
.IsOk() && (resFlags
& wxTREE_HITTEST_ONITEMLABEL
) )
471 m_itemHere
= itemHere
;
481 wxTreeItemId m_value
; // current item index
482 wxTreeItemId m_itemHere
; // hot item in popup
485 DECLARE_EVENT_TABLE()
488 BEGIN_EVENT_TABLE(TreeCtrlComboPopup
, wxTreeCtrl
)
489 EVT_MOTION(TreeCtrlComboPopup::OnMouseMove
)
490 // NOTE: Left down event is used instead of left up right now
491 // since MSW wxTreeCtrl doesn't seem to emit left ups
493 EVT_LEFT_DOWN(TreeCtrlComboPopup::OnMouseClick
)
496 // ----------------------------------------------------------------------------
497 // wxComboCtrl with custom popup animation
498 // ----------------------------------------------------------------------------
500 class wxComboCtrlWithCustomPopupAnim
: public wxComboCtrl
504 virtual bool AnimateShow( const wxRect
& rect
, int WXUNUSED(flags
) )
506 MyFrame
* myFrame
= (MyFrame
*) ::wxGetTopLevelParent(this);
508 if ( !myFrame
->m_cbUseAnim
->GetValue() )
511 int width
= rect
.width
;
512 int height
= rect
.height
;
513 wxBitmap
bitmap( width
, height
, -1 );
515 wxMemoryDC
memdc( bitmap
);
516 memdc
.Blit( 0, 0, width
, height
, &dc
, rect
.x
, rect
.y
);
517 memdc
.SelectObject(wxNullBitmap
);
519 wxLongLong tStart
= ::wxGetLocalTimeMillis();
520 const int delay
= 300;
521 const int resolution
= 10;
523 int center_x
= rect
.x
+ (width
/2);
524 int center_y
= rect
.y
+ (height
/2);
526 double d_height
= (double) height
;
528 dc
.SetPen( *wxBLACK_PEN
);
529 dc
.SetBrush( *wxTRANSPARENT_BRUSH
);
532 wxLongLong t
= ::wxGetLocalTimeMillis();
533 int pos
= (int) (t
-tStart
).GetLo();
537 int w
= (((pos
*256)/delay
)*width
)/256;
539 double ratio
= ((double)w
/ (double)width
);
540 int h
= (int)(d_height
* ratio
);
541 dc
.DrawRectangle( center_x
- w
/2, center_y
- h
/2, w
, h
);
542 wxMilliSleep( resolution
);
544 dc
.DrawBitmap( bitmap
, rect
.x
, rect
.y
);
546 if ( IsPopupWindowState(Hidden
) )
556 // ----------------------------------------------------------------------------
557 // wxComboCtrl with entirely custom button action (opens file dialog)
558 // ----------------------------------------------------------------------------
560 class wxFileSelectorCombo
: public wxComboCtrl
563 wxFileSelectorCombo() : wxComboCtrl() { Init(); }
565 wxFileSelectorCombo(wxWindow
*parent
,
566 wxWindowID id
= wxID_ANY
,
567 const wxString
& value
= wxEmptyString
,
568 const wxPoint
& pos
= wxDefaultPosition
,
569 const wxSize
& size
= wxDefaultSize
,
571 const wxValidator
& validator
= wxDefaultValidator
,
572 const wxString
& name
= wxComboBoxNameStr
)
576 Create(parent
,id
,value
,
578 // Style flag wxCC_STD_BUTTON makes the button
579 // behave more like a standard push button.
580 style
| wxCC_STD_BUTTON
,
584 // Prepare custom button bitmap (just '...' text)
587 dc
.SelectObject(bmp
);
589 // Draw transparent background
590 wxColour
magic(255,0,255);
591 wxBrush
magicBrush(magic
);
592 dc
.SetBrush( magicBrush
);
593 dc
.SetPen( *wxTRANSPARENT_PEN
);
594 dc
.DrawRectangle(0,0,bmp
.GetWidth(),bmp
.GetHeight());
597 wxString str
= wxT("...");
599 dc
.GetTextExtent(str
, &w
, &h
, 0, 0);
600 dc
.DrawText(str
, (bmp
.GetWidth()-w
)/2, (bmp
.GetHeight()-h
)/2);
602 dc
.SelectObject( wxNullBitmap
);
604 // Finalize transparency with a mask
605 wxMask
*mask
= new wxMask( bmp
, magic
);
608 SetButtonBitmaps(bmp
,true);
611 virtual void OnButtonClick()
613 // Show standard wxFileDialog on button click
615 wxFileDialog
dlg(this,
619 wxT("All files (*.*)|*.*"),
622 if ( dlg
.ShowModal() == wxID_OK
)
624 SetValue(dlg
.GetPath());
628 // Implement empty DoSetPopupControl to prevent assertion failure.
629 virtual void DoSetPopupControl(wxComboPopup
* WXUNUSED(popup
))
636 // Initialize member variables here
640 // ----------------------------------------------------------------------------
642 // ----------------------------------------------------------------------------
645 MyFrame::MyFrame(const wxString
& title
)
646 : wxFrame(NULL
, wxID_ANY
, title
)
648 wxBoxSizer
* topSizer
;
649 wxBoxSizer
* topRowSizer
;
650 wxBoxSizer
* colSizer
;
651 wxBoxSizer
* rowSizer
;
653 // set the frame icon
654 SetIcon(wxICON(sample
));
658 wxMenu
*fileMenu
= new wxMenu
;
660 // the "About" item should be in the help menu
661 wxMenu
*helpMenu
= new wxMenu
;
662 helpMenu
->Append(ComboControl_About
, _T("&About...\tF1"), _T("Show about dialog"));
664 fileMenu
->Append(ComboControl_Compare
, _T("&Compare against wxComboBox..."),
665 _T("Show some wxOwnerDrawnComboBoxes side-by-side with native wxComboBoxes."));
666 fileMenu
->AppendSeparator();
667 fileMenu
->Append(ComboControl_Quit
, _T("E&xit\tAlt-X"), _T("Quit this program"));
669 // now append the freshly created menu to the menu bar...
670 wxMenuBar
*menuBar
= new wxMenuBar();
671 menuBar
->Append(fileMenu
, _T("&File"));
672 menuBar
->Append(helpMenu
, _T("&Help"));
674 // ... and attach this menu bar to the frame
676 #endif // wxUSE_MENUS
678 wxPanel
* panel
= new wxPanel(this);
680 // Prepare log window right away since it shows EVT_TEXTs
681 m_logWin
= new wxTextCtrl( panel
, 105, wxEmptyString
, wxDefaultPosition
,
682 wxSize(-1,125), wxTE_MULTILINE
|wxFULL_REPAINT_ON_RESIZE
);
683 m_logWin
->SetEditable(false);
684 wxLogTextCtrl
* logger
= new wxLogTextCtrl( m_logWin
);
685 m_logOld
= logger
->SetActiveTarget( logger
);
686 logger
->SetTimestamp( NULL
);
689 topSizer
= new wxBoxSizer( wxVERTICAL
);
691 topRowSizer
= new wxBoxSizer( wxHORIZONTAL
);
693 colSizer
= new wxBoxSizer( wxVERTICAL
);
697 wxGenericComboCtrl
* gcc
;
698 wxOwnerDrawnComboBox
* odc
;
700 // Create common strings array
701 m_arrItems
.Add( wxT("Solid") );
702 m_arrItems
.Add( wxT("Transparent") );
703 m_arrItems
.Add( wxT("Dot") );
704 m_arrItems
.Add( wxT("Long Dash") );
705 m_arrItems
.Add( wxT("Short Dash") );
706 m_arrItems
.Add( wxT("Dot Dash") );
707 m_arrItems
.Add( wxT("Backward Diagonal Hatch") );
708 m_arrItems
.Add( wxT("Cross-diagonal Hatch") );
709 m_arrItems
.Add( wxT("Forward Diagonal Hatch") );
710 m_arrItems
.Add( wxT("Cross Hatch") );
711 m_arrItems
.Add( wxT("Horizontal Hatch") );
712 m_arrItems
.Add( wxT("Vertical Hatch") );
716 // Create pen selector ODComboBox with owner-drawn items
718 rowSizer
= new wxBoxSizer( wxHORIZONTAL
);
719 rowSizer
->Add( new wxStaticText(panel
,wxID_ANY
,
720 wxT("OwnerDrawnComboBox with owner-drawn items:")), 1,
721 wxALIGN_CENTER_VERTICAL
|wxRIGHT
, 4 );
722 colSizer
->Add( rowSizer
, 0, wxEXPAND
|wxALL
, 5 );
724 rowSizer
= new wxBoxSizer( wxHORIZONTAL
);
727 // When defining derivative class for callbacks, we need
728 // to use two-stage creation (or redefine the common wx
730 odc
= new wxPenStyleComboBox();
731 odc
->Create(panel
,wxID_ANY
,wxEmptyString
,
732 wxDefaultPosition
, wxDefaultSize
,
734 wxCB_READONLY
//wxNO_BORDER | wxCB_READONLY
738 odc
->SetSelection(0);
740 rowSizer
->Add( odc
, 1, wxALIGN_CENTER_VERTICAL
|wxALL
, 4 );
741 rowSizer
->AddStretchSpacer(1);
742 colSizer
->Add( rowSizer
, 0, wxEXPAND
|wxALL
, 5 );
747 // Same but with changed button position
749 rowSizer
= new wxBoxSizer( wxHORIZONTAL
);
750 rowSizer
->Add( new wxStaticText(panel
,wxID_ANY
,
751 wxT("OwnerDrawnComboBox with owner-drawn items and button on the left:")), 1,
752 wxALIGN_CENTER_VERTICAL
|wxRIGHT
, 4 );
753 colSizer
->Add( rowSizer
, 0, wxEXPAND
|wxALL
, 5 );
755 rowSizer
= new wxBoxSizer( wxHORIZONTAL
);
758 // When defining derivative class for callbacks, we need
759 // to use two-stage creation (or redefine the common wx
761 odc
= new wxPenStyleComboBox();
762 odc
->Create(panel
,wxID_ANY
,wxEmptyString
,
763 wxDefaultPosition
, wxDefaultSize
,
765 wxCB_READONLY
//wxNO_BORDER | wxCB_READONLY
769 odc
->SetSelection(0);
771 // Use button size that is slightly smaller than the default.
772 wxSize butSize
= odc
->GetButtonSize();
773 odc
->SetButtonPosition(butSize
.x
- 2, // button width
774 butSize
.y
- 6, // button height
776 2 // horizontal spacing
779 rowSizer
->Add( odc
, 1, wxALIGN_CENTER_VERTICAL
|wxALL
, 4 );
780 rowSizer
->AddStretchSpacer(1);
781 colSizer
->Add( rowSizer
, 0, wxEXPAND
|wxALL
, 5 );
785 // List View wxComboCtrl
788 rowSizer
= new wxBoxSizer( wxHORIZONTAL
);
789 rowSizer
->Add( new wxStaticText(panel
,wxID_ANY
,wxT("List View wxComboCtrl:")), 1,
790 wxALIGN_CENTER_VERTICAL
|wxRIGHT
, 4 );
791 rowSizer
->Add( new wxStaticText(panel
,wxID_ANY
,wxT("Tree Ctrl wxComboControl:")), 1,
792 wxALIGN_CENTER_VERTICAL
|wxRIGHT
, 4 );
793 colSizer
->Add( rowSizer
, 0, wxEXPAND
|wxALL
, 5 );
795 rowSizer
= new wxBoxSizer( wxHORIZONTAL
);
796 cc
= new wxComboCtrlWithCustomPopupAnim();
797 cc
->Create(panel
, wxID_ANY
, wxEmptyString
);
799 // Make sure we use popup that allows focusing the listview.
800 cc
->UseAltPopupWindow();
802 cc
->SetPopupMinWidth(300);
804 ListViewComboPopup
* iface
= new ListViewComboPopup();
805 cc
->SetPopupControl(iface
);
808 for ( i
=0; i
<100; i
++ )
809 iface
->AddSelection( wxString::Format(wxT("Item %02i"),i
));
811 rowSizer
->Add( cc
, 1, wxALIGN_CENTER_VERTICAL
|wxALL
, 5 );
815 // Tree Ctrl wxComboCtrl
818 // Note that we test that wxGenericComboCtrl works
819 gcc
= new wxGenericComboCtrl(panel
,wxID_ANY
,wxEmptyString
,
820 wxDefaultPosition
, wxDefaultSize
);
822 // Make sure we use popup that allows focusing the treectrl.
823 gcc
->UseAltPopupWindow();
825 // Set popup interface right away, otherwise some of the calls
827 TreeCtrlComboPopup
* tcPopup
= new TreeCtrlComboPopup();
828 gcc
->SetPopupControl(tcPopup
);
830 // Add items using wxTreeCtrl methods directly
831 wxTreeItemId rootId
= tcPopup
->AddRoot(wxT("<hidden_root>"));
833 wxTreeItemId groupId
;
835 for ( i
=0; i
<4; i
++ )
837 groupId
= tcPopup
->AppendItem(rootId
,
838 wxString::Format(wxT("Branch %02i"),i
));
841 for ( n
=0; n
<25; n
++ )
842 tcPopup
->AppendItem(groupId
,
843 wxString::Format(wxT("Subitem %02i"),(i
*25)+n
));
846 gcc
->SetValue(wxT("Subitem 05"));
848 // Move button to left - it makes more sense for a tree ctrl
849 gcc
->SetButtonPosition(-1, // button width
852 0 // horizontal spacing
855 rowSizer
->Add( gcc
, 1, wxALIGN_CENTER_VERTICAL
|wxALL
, 5 );
857 colSizer
->Add( rowSizer
, 0, wxEXPAND
|wxALL
, 5 );
860 wxInitAllImageHandlers();
863 // Custom Dropbutton Bitmaps
864 // (second one uses blank button background)
866 rowSizer
= new wxBoxSizer( wxHORIZONTAL
);
867 rowSizer
->Add( new wxStaticText(panel
,wxID_ANY
,
868 wxT("OwnerDrawnComboBox with simple dropbutton graphics:")), 1,
869 wxALIGN_CENTER_VERTICAL
|wxRIGHT
, 4 );
871 colSizer
->Add( rowSizer
, 0, wxEXPAND
|wxALL
, 5 );
873 rowSizer
= new wxBoxSizer( wxHORIZONTAL
);
875 odc
= new wxOwnerDrawnComboBox(panel
,wxID_ANY
,wxEmptyString
,
876 wxDefaultPosition
, wxDefaultSize
,
878 (long)0 // wxCB_SORT // wxNO_BORDER | wxCB_READONLY
881 wxOwnerDrawnComboBox
* odc2
;
882 odc2
= new wxOwnerDrawnComboBox(panel
,wxID_ANY
,wxEmptyString
,
883 wxDefaultPosition
, wxDefaultSize
,
885 (long)0 // wxCB_SORT // wxNO_BORDER | wxCB_READONLY
888 // Load images from disk
889 wxImage
imgNormal(wxT("dropbutn.png"));
890 wxImage
imgPressed(wxT("dropbutp.png"));
891 wxImage
imgHover(wxT("dropbuth.png"));
893 if ( imgNormal
.IsOk() && imgPressed
.IsOk() && imgHover
.IsOk() )
895 wxBitmap
bmpNormal(imgNormal
);
896 wxBitmap
bmpPressed(imgPressed
);
897 wxBitmap
bmpHover(imgHover
);
898 odc
->SetButtonBitmaps(bmpNormal
,false,bmpPressed
,bmpHover
);
899 odc2
->SetButtonBitmaps(bmpNormal
,true,bmpPressed
,bmpHover
);
902 wxLogError(wxT("Dropbutton images not found"));
904 //odc2->SetButtonPosition(0, // width adjustment
905 // 0, // height adjustment
907 // 0 // horizontal spacing
910 rowSizer
->Add( odc
, 1, wxALIGN_CENTER_VERTICAL
|wxALL
, 4 );
911 rowSizer
->Add( odc2
, 1, wxALIGN_CENTER_VERTICAL
|wxALL
, 4 );
912 colSizer
->Add( rowSizer
, 0, wxEXPAND
|wxALL
, 5 );
917 // wxComboCtrl with totally custom button action (open file dialog)
919 rowSizer
= new wxBoxSizer( wxHORIZONTAL
);
920 rowSizer
->Add( new wxStaticText(panel
,wxID_ANY
,
921 wxT("wxComboCtrl with custom button action:")), 1,
922 wxALIGN_CENTER_VERTICAL
|wxRIGHT
, 4 );
925 colSizer
->Add( rowSizer
, 0, wxEXPAND
|wxALL
, 5 );
927 rowSizer
= new wxBoxSizer( wxHORIZONTAL
);
928 wxFileSelectorCombo
* fsc
;
930 fsc
= new wxFileSelectorCombo(panel
,wxID_ANY
,wxEmptyString
,
931 wxDefaultPosition
, wxDefaultSize
,
935 rowSizer
->Add( fsc
, 1, wxALIGN_CENTER_VERTICAL
|wxALL
, 4 );
936 colSizer
->Add( rowSizer
, 0, wxEXPAND
|wxALL
, 5 );
939 // Make sure GetFeatures is implemented
940 wxComboCtrl::GetFeatures();
943 topRowSizer
->Add( colSizer
, 1, wxALL
, 2 );
945 colSizer
= new wxBoxSizer( wxVERTICAL
);
947 wxStaticBoxSizer
* sbSizer
= new wxStaticBoxSizer( new wxStaticBox(panel
,
952 m_cbUseAnim
= new wxCheckBox(panel
, wxID_ANY
, wxT("Custom popup animation for ListView wxComboCtrl"));
953 m_cbUseAnim
->SetValue(true);
954 sbSizer
->Add( m_cbUseAnim
, 0, wxALL
, 3 );
956 colSizer
->Add( sbSizer
, 0, wxEXPAND
|wxALL
, 3 );
957 colSizer
->AddSpacer(8);
958 colSizer
->Add( new wxStaticText(panel
, wxID_ANY
, wxT("Log Messages:")), 0, wxTOP
|wxLEFT
, 3 );
959 colSizer
->Add( m_logWin
, 1, wxEXPAND
|wxALL
, 3 );
961 topRowSizer
->Add( colSizer
, 1, wxEXPAND
|wxALL
, 2 );
962 topSizer
->Add( topRowSizer
, 1, wxEXPAND
);
964 panel
->SetSizer( topSizer
);
965 topSizer
->SetSizeHints( panel
);
973 void MyFrame::OnComboBoxUpdate( wxCommandEvent
& event
)
975 // Don't show messages for the log output window (it'll crash)
976 if ( !event
.GetEventObject()->IsKindOf(CLASSINFO(wxComboCtrl
)) )
979 if ( event
.GetEventType() == wxEVT_COMMAND_COMBOBOX_SELECTED
)
980 wxLogDebug(wxT("EVT_COMBOBOX(id=%i,selection=%i)"),event
.GetId(),event
.GetSelection());
981 else if ( event
.GetEventType() == wxEVT_COMMAND_TEXT_UPDATED
)
982 wxLogDebug(wxT("EVT_TEXT(id=%i,string=\"%s\")"),event
.GetId(),event
.GetString().c_str());
985 void MyFrame::OnShowComparison( wxCommandEvent
& WXUNUSED(event
) )
988 // Show some wxOwnerDrawComboBoxes for comparison
991 wxBoxSizer
* colSizer
;
992 wxBoxSizer
* rowSizer
;
993 wxStaticBoxSizer
* groupSizer
;
996 wxOwnerDrawnComboBox
* odc
;
998 const int border
= 4;
1000 wxDialog
* dlg
= new wxDialog(this,wxID_ANY
,
1001 wxT("Compare against wxComboBox"),
1002 wxDefaultPosition
,wxDefaultSize
,
1003 wxDEFAULT_DIALOG_STYLE
|wxRESIZE_BORDER
);
1005 colSizer
= new wxBoxSizer( wxVERTICAL
);
1007 rowSizer
= new wxBoxSizer(wxHORIZONTAL
);
1009 groupSizer
= new wxStaticBoxSizer(new wxStaticBox(dlg
,wxID_ANY
,wxT(" wxOwnerDrawnComboBox ")),
1012 groupSizer
->Add( new wxStaticText(dlg
,wxID_ANY
,wxT("Writable, sorted:")), 0,
1013 wxALIGN_CENTER_VERTICAL
|wxRIGHT
|wxEXPAND
, border
);
1015 odc
= new wxOwnerDrawnComboBox(dlg
,wxID_ANY
,wxEmptyString
,
1016 wxDefaultPosition
, wxDefaultSize
,
1018 wxCB_SORT
// wxNO_BORDER|wxCB_READONLY
1021 odc
->Append(wxT("H - Appended Item")); // test sorting in append
1023 odc
->SetValue(wxT("Dot Dash"));
1025 groupSizer
->Add( odc
, 1, wxALIGN_CENTER_VERTICAL
|wxEXPAND
|wxALL
, border
);
1028 // Readonly ODComboBox
1029 groupSizer
->Add( new wxStaticText(dlg
,wxID_ANY
,wxT("Read-only:")), 0,
1030 wxALIGN_CENTER_VERTICAL
|wxRIGHT
, border
);
1032 odc
= new wxOwnerDrawnComboBox(dlg
,wxID_ANY
,wxEmptyString
,
1033 wxDefaultPosition
, wxDefaultSize
,
1035 wxCB_SORT
|wxCB_READONLY
// wxNO_BORDER|wxCB_READONLY
1038 odc
->SetValue(wxT("Dot Dash"));
1039 odc
->SetText(wxT("Dot Dash (Testing SetText)"));
1041 groupSizer
->Add( odc
, 1, wxALIGN_CENTER_VERTICAL
|wxEXPAND
|wxALL
, border
);
1044 // Disabled ODComboBox
1045 groupSizer
->Add( new wxStaticText(dlg
,wxID_ANY
,wxT("Disabled:")), 0,
1046 wxALIGN_CENTER_VERTICAL
|wxRIGHT
, border
);
1048 odc
= new wxOwnerDrawnComboBox(dlg
,wxID_ANY
,wxEmptyString
,
1049 wxDefaultPosition
, wxDefaultSize
,
1051 wxCB_SORT
|wxCB_READONLY
// wxNO_BORDER|wxCB_READONLY
1054 odc
->SetValue(wxT("Dot Dash"));
1057 groupSizer
->Add( odc
, 1, wxALIGN_CENTER_VERTICAL
|wxEXPAND
|wxALL
, border
);
1059 rowSizer
->Add( groupSizer
, 1, wxEXPAND
|wxALL
, border
);
1062 groupSizer
= new wxStaticBoxSizer(new wxStaticBox(dlg
,wxID_ANY
,wxT(" wxComboBox ")),
1068 groupSizer
->Add( new wxStaticText(dlg
,wxID_ANY
,wxT("Writable, sorted:")), 0,
1069 wxALIGN_CENTER_VERTICAL
|wxRIGHT
|wxEXPAND
, border
);
1071 cb
= new wxComboBox(dlg
,wxID_ANY
,wxEmptyString
,
1072 wxDefaultPosition
, wxDefaultSize
,
1074 wxCB_SORT
// wxNO_BORDER|wxCB_READONLY
1077 cb
->Append(wxT("H - Appended Item")); // test sorting in append
1079 cb
->SetValue(wxT("Dot Dash"));
1081 groupSizer
->Add( cb
, 1, wxALIGN_CENTER_VERTICAL
|wxEXPAND
|wxALL
, border
);
1084 // Readonly wxComboBox
1085 groupSizer
->Add( new wxStaticText(dlg
,wxID_ANY
,wxT("Read-only:")), 0,
1086 wxALIGN_CENTER_VERTICAL
|wxRIGHT
, border
);
1088 cb
= new wxComboBox(dlg
,wxID_ANY
,wxEmptyString
,
1089 wxDefaultPosition
, wxDefaultSize
,
1091 wxCB_SORT
|wxCB_READONLY
// wxNO_BORDER|wxCB_READONLY
1094 cb
->SetValue(wxT("Dot Dash"));
1096 groupSizer
->Add( cb
, 1, wxALIGN_CENTER_VERTICAL
|wxEXPAND
|wxALL
, border
);
1099 // Disabled wxComboBox
1100 groupSizer
->Add( new wxStaticText(dlg
,wxID_ANY
,wxT("Disabled:")), 0,
1101 wxALIGN_CENTER_VERTICAL
|wxRIGHT
, border
);
1103 cb
= new wxComboBox(dlg
,wxID_ANY
,wxEmptyString
,
1104 wxDefaultPosition
, wxDefaultSize
,
1106 wxCB_SORT
|wxCB_READONLY
// wxNO_BORDER|wxCB_READONLY
1109 cb
->SetValue(wxT("Dot Dash"));
1112 groupSizer
->Add( cb
, 1, wxALIGN_CENTER_VERTICAL
|wxEXPAND
|wxALL
, border
);
1114 rowSizer
->Add( groupSizer
, 1, wxEXPAND
|wxALL
, border
);
1116 colSizer
->Add( rowSizer
, 0, wxEXPAND
|wxALL
, border
);
1118 dlg
->SetSizer( colSizer
);
1119 colSizer
->SetSizeHints( dlg
);
1121 dlg
->SetSize(60,240);
1128 delete wxLog::SetActiveTarget(m_logOld
);
1131 void MyFrame::OnQuit(wxCommandEvent
& WXUNUSED(event
))
1133 // true is to force the frame to close
1137 void MyFrame::OnAbout(wxCommandEvent
& WXUNUSED(event
))
1139 wxMessageBox(wxString::Format(
1140 _T("Welcome to %s!\n")
1142 _T("This is the wxWidgets wxComboCtrl and wxOwnerDrawnComboBox sample\n")
1143 _T("running under %s."),
1145 wxGetOsDescription().c_str()
1147 _T("About wxComboCtrl sample"),
1148 wxOK
| wxICON_INFORMATION
,
1152 void MyFrame::OnIdle(wxIdleEvent
& event
)
1154 // This code is useful for debugging focus problems
1155 // (which are plentiful when dealing with popup windows).
1157 static wxWindow
* lastFocus
= (wxWindow
*) NULL
;
1159 wxWindow
* curFocus
= ::wxWindow::FindFocus();
1161 if ( curFocus
!= lastFocus
)
1163 const wxChar
* className
= wxT("<none>");
1165 className
= curFocus
->GetClassInfo()->GetClassName();
1166 lastFocus
= curFocus
;
1167 wxLogDebug( wxT("FOCUSED: %s %X"),
1169 (unsigned int)curFocus
);