]> git.saurik.com Git - wxWidgets.git/blame - interface/wx/odcombo.h
wxSocket::Initialize() and Shutdown() are for main thread only.
[wxWidgets.git] / interface / wx / odcombo.h
CommitLineData
23324ae1
FM
1/////////////////////////////////////////////////////////////////////////////
2// Name: odcombo.h
e54c96f1 3// Purpose: interface of wxOwnerDrawnComboBox
23324ae1
FM
4// Author: wxWidgets team
5// RCS-ID: $Id$
6// Licence: wxWindows license
7/////////////////////////////////////////////////////////////////////////////
8
3fedffdc
FM
9
10enum wxOwnerDrawnComboBoxPaintingFlags
11{
12 /**
13 Combo control is being painted, instead of a list item.
14 Argument item may be @c wxNOT_FOUND in this case.
15 */
16 wxODCB_PAINTING_CONTROL = 0x0001,
17
18 /**
19 An item with selection background is being painted.
20 DC text colour should already be correct.
21 */
22 wxODCB_PAINTING_SELECTED = 0x0002
23};
24
23324ae1
FM
25/**
26 @class wxOwnerDrawnComboBox
7c913512 27
23324ae1 28 wxOwnerDrawnComboBox is a combobox with owner-drawn list items.
74bf4e64 29 In essence, it is a wxComboCtrl with wxVListBox popup and wxControlWithItems
23324ae1 30 interface.
7c913512 31
23324ae1
FM
32 Implementing item drawing and measuring is similar to wxVListBox.
33 Application needs to subclass wxOwnerDrawnComboBox and implement
74bf4e64 34 OnDrawItem(), OnMeasureItem() and OnMeasureItemWidth().
7c913512 35
23324ae1 36 @beginStyleTable
8c6791e4 37 @style{wxODCB_DCLICK_CYCLES}
23324ae1
FM
38 Double-clicking cycles item if wxCB_READONLY is also used.
39 Synonymous with wxCC_SPECIAL_DCLICK.
8c6791e4 40 @style{wxODCB_STD_CONTROL_PAINT}
23324ae1
FM
41 Control itself is not custom painted using OnDrawItem. Even if this
42 style is not used, writable wxOwnerDrawnComboBox is never custom
74bf4e64 43 painted unless SetCustomPaintWidth() is called.
23324ae1 44 @endStyleTable
7c913512 45
3fedffdc
FM
46 @see wxComboCtrl window styles and @ref overview_windowstyles.
47
3051a44a 48 @beginEventEmissionTable{wxCommandEvent}
8c6791e4 49 @event{EVT_COMBOBOX(id, func)}
23324ae1 50 Process a wxEVT_COMMAND_COMBOBOX_SELECTED event, when an item on
74bf4e64 51 the list is selected. Note that calling GetValue() returns the new
23324ae1
FM
52 value of selection.
53 @endEventTable
7c913512 54
74bf4e64
FM
55 @see Events emitted by wxComboCtrl.
56
23324ae1
FM
57 @library{wxadv}
58 @category{ctrl}
7e59b885 59 @appearance{ownerdrawncombobox.png}
7c913512 60
e54c96f1 61 @see wxComboCtrl, wxComboBox, wxVListBox, wxCommandEvent
23324ae1
FM
62*/
63class wxOwnerDrawnComboBox : public wxComboCtrl
64{
65public:
74bf4e64
FM
66 /**
67 Default constructor.
68 */
69 wxOwnerDrawnComboBox();
8c6791e4 70
23324ae1
FM
71 //@{
72 /**
73 Constructor, creating and showing a owner-drawn combobox.
3c4f71cc 74
7c913512 75 @param parent
4cc4bfaf 76 Parent window. Must not be @NULL.
7c913512 77 @param id
74bf4e64 78 Window identifier. The value @c wxID_ANY indicates a default value.
7c913512 79 @param value
4cc4bfaf 80 Initial selection string. An empty string indicates no selection.
7c913512 81 @param pos
4cc4bfaf 82 Window position.
7c913512 83 @param size
3fedffdc
FM
84 Window size.
85 If ::wxDefaultSize is specified then the window is sized appropriately.
7c913512 86 @param n
4cc4bfaf 87 Number of strings with which to initialise the control.
7c913512 88 @param choices
4cc4bfaf 89 An array of strings with which to initialise the control.
7c913512 90 @param style
4cc4bfaf 91 Window style. See wxOwnerDrawnComboBox.
7c913512 92 @param validator
4cc4bfaf 93 Window validator.
7c913512 94 @param name
4cc4bfaf 95 Window name.
3c4f71cc 96
4cc4bfaf 97 @see Create(), wxValidator
23324ae1 98 */
7c913512 99 wxOwnerDrawnComboBox(wxWindow* parent, wxWindowID id,
e9c3992c 100 const wxString& value = wxEmptyString,
7c913512
FM
101 const wxPoint& pos = wxDefaultPosition,
102 const wxSize& size = wxDefaultSize,
103 int n = 0,
74bf4e64 104 const wxString[] choices = NULL,
7c913512
FM
105 long style = 0,
106 const wxValidator& validator = wxDefaultValidator,
107 const wxString& name = "comboBox");
792255cc
VZ
108 /**
109 Constructor, creating and showing a owner-drawn combobox.
110
111 @param parent
112 Parent window. Must not be @NULL.
113 @param id
114 Window identifier. The value @c wxID_ANY indicates a default value.
115 @param value
116 Initial selection string. An empty string indicates no selection.
117 @param pos
118 Window position.
119 @param size
120 Window size.
121 If ::wxDefaultSize is specified then the window is sized appropriately.
122 @param choices
123 An array of strings with which to initialise the control.
124 @param style
125 Window style. See wxOwnerDrawnComboBox.
126 @param validator
127 Window validator.
128 @param name
129 Window name.
130
131 @see Create(), wxValidator
132 */
7c913512
FM
133 wxOwnerDrawnComboBox(wxWindow* parent, wxWindowID id,
134 const wxString& value,
135 const wxPoint& pos,
136 const wxSize& size,
137 const wxArrayString& choices,
138 long style = 0,
139 const wxValidator& validator = wxDefaultValidator,
140 const wxString& name = "comboBox");
23324ae1
FM
141 //@}
142
143 /**
144 Destructor, destroying the owner-drawn combobox.
145 */
adaaa686 146 virtual ~wxOwnerDrawnComboBox();
23324ae1
FM
147
148 //@{
149 /**
74bf4e64
FM
150 Creates the combobox for two-step construction.
151 See wxOwnerDrawnComboBox() for further details.
152
153 @remarks Derived classes should call or replace this function.
23324ae1 154 */
57bf907d
FM
155 bool Create(wxWindow *parent,
156 wxWindowID id,
e9c3992c 157 const wxString& value = wxEmptyString,
23324ae1
FM
158 const wxPoint& pos = wxDefaultPosition,
159 const wxSize& size = wxDefaultSize,
23324ae1
FM
160 long style = 0,
161 const wxValidator& validator = wxDefaultValidator,
57bf907d
FM
162 const wxString& name = wxComboBoxNameStr);
163 bool Create(wxWindow *parent,
164 wxWindowID id,
165 const wxString& value,
166 const wxPoint& pos,
167 const wxSize& size,
168 int n,
169 const wxString choices[],
170 long style = 0,
171 const wxValidator& validator = wxDefaultValidator,
172 const wxString& name = wxComboBoxNameStr);
173 bool Create(wxWindow *parent,
174 wxWindowID id,
7c913512
FM
175 const wxString& value,
176 const wxPoint& pos,
177 const wxSize& size,
178 const wxArrayString& choices,
179 long style = 0,
180 const wxValidator& validator = wxDefaultValidator,
57bf907d 181 const wxString& name = wxComboBoxNameStr);
23324ae1
FM
182 //@}
183
184 /**
185 Returns index to the widest item in the list.
186 */
adaaa686 187 virtual int GetWidestItem();
23324ae1
FM
188
189 /**
190 Returns width of the widest item in the list.
191 */
adaaa686 192 virtual int GetWidestItemWidth();
23324ae1 193
5e6e278d
FM
194protected:
195
23324ae1
FM
196 /**
197 This method is used to draw the items background and, maybe, a border around it.
74bf4e64 198
23324ae1
FM
199 The base class version implements a reasonable default behaviour which consists
200 in drawing the selected item with the standard background colour and drawing a
201 border around the item if it is either selected or current.
3c4f71cc 202
74bf4e64 203 @remarks flags has the same meaning as with OnDrawItem().
23324ae1 204 */
fadc2df6
FM
205 virtual void OnDrawBackground(wxDC& dc, const wxRect& rect, int item,
206 int flags) const;
23324ae1
FM
207
208 /**
209 The derived class may implement this function to actually draw the item
74bf4e64
FM
210 with the given index on the provided DC.
211
212 If function is not implemented, the item text is simply drawn, as if the control
213 was a normal combobox.
3c4f71cc 214
7c913512 215 @param dc
4cc4bfaf 216 The device context to use for drawing
7c913512 217 @param rect
4cc4bfaf
FM
218 The bounding rectangle for the item being drawn (DC clipping
219 region is set to this rectangle before calling this function)
7c913512 220 @param item
4cc4bfaf 221 The index of the item to be drawn
7c913512 222 @param flags
3fedffdc 223 A combination of the ::wxOwnerDrawnComboBoxPaintingFlags enumeration values.
23324ae1 224 */
fadc2df6
FM
225 virtual void OnDrawItem(wxDC& dc, const wxRect& rect, int item,
226 int flags) const;
23324ae1
FM
227
228 /**
229 The derived class may implement this method to return the height of the
230 specified item (in pixels).
74bf4e64 231
23324ae1
FM
232 The default implementation returns text height, as if this control was
233 a normal combobox.
234 */
0004982c 235 virtual wxCoord OnMeasureItem(size_t item) const;
23324ae1
FM
236
237 /**
238 The derived class may implement this method to return the width of the
239 specified item (in pixels). If -1 is returned, then the item text width
240 is used.
74bf4e64 241
23324ae1
FM
242 The default implementation returns -1.
243 */
0004982c 244 virtual wxCoord OnMeasureItemWidth(size_t item) const;
23324ae1 245};
e54c96f1 246