]>
Commit | Line | Data |
---|---|---|
1c4293cb VZ |
1 | ///////////////////////////////////////////////////////////////////////////// |
2 | // Name: property.h | |
3 | // Purpose: interface of wxPGProperty | |
4 | // Author: wxWidgets team | |
de003797 | 5 | // RCS-ID: $Id$ |
1c4293cb VZ |
6 | // Licence: wxWindows license |
7 | ///////////////////////////////////////////////////////////////////////////// | |
8 | ||
9 | ||
10 | #define wxNullProperty ((wxPGProperty*)NULL) | |
11 | ||
12 | ||
0ad10f30 FM |
13 | /** |
14 | @section propgrid_property_attributes wxPropertyGrid Property Attribute Identifiers | |
1c4293cb | 15 | |
0ad10f30 FM |
16 | wxPGProperty::SetAttribute() and wxPropertyGridInterface::SetPropertyAttribute() |
17 | accept one of these as attribute name argument. | |
1c4293cb | 18 | |
0ad10f30 FM |
19 | You can use strings instead of constants. |
20 | However, some of these constants are redefined to use cached strings which | |
21 | may reduce your binary size by some amount. | |
1c4293cb VZ |
22 | |
23 | @{ | |
24 | */ | |
25 | ||
26 | /** Set default value for property. | |
27 | */ | |
28 | #define wxPG_ATTR_DEFAULT_VALUE wxS("DefaultValue") | |
29 | ||
30 | /** Universal, int or double. Minimum value for numeric properties. | |
31 | */ | |
32 | #define wxPG_ATTR_MIN wxS("Min") | |
33 | ||
34 | /** Universal, int or double. Maximum value for numeric properties. | |
35 | */ | |
36 | #define wxPG_ATTR_MAX wxS("Max") | |
37 | ||
38 | /** Universal, string. When set, will be shown as text after the displayed | |
39 | text value. Alternatively, if third column is enabled, text will be shown | |
40 | there (for any type of property). | |
41 | */ | |
42 | #define wxPG_ATTR_UNITS wxS("Units") | |
43 | ||
44 | /** Universal, string. When set, will be shown in property's value cell | |
45 | when displayed value string is empty, or value is unspecified. | |
46 | */ | |
47 | #define wxPG_ATTR_INLINE_HELP wxS("InlineHelp") | |
48 | ||
66fb9e12 JS |
49 | /** Universal, wxArrayString. Set to enable auto-completion in any |
50 | wxTextCtrl-based property editor. | |
51 | */ | |
52 | #define wxPG_ATTR_AUTOCOMPLETE wxS("AutoComplete") | |
53 | ||
16372f0d JS |
54 | /** wxBoolProperty and wxFlagsProperty specific. Value type is bool. |
55 | Default value is False. | |
56 | ||
57 | When set to True, bool property will use check box instead of a | |
58 | combo box as its editor control. If you set this attribute | |
59 | for a wxFlagsProperty, it is automatically applied to child | |
60 | bool properties. | |
1c4293cb VZ |
61 | */ |
62 | #define wxPG_BOOL_USE_CHECKBOX wxS("UseCheckbox") | |
63 | ||
16372f0d JS |
64 | /** wxBoolProperty and wxFlagsProperty specific. Value type is bool. |
65 | Default value is False. | |
66 | ||
67 | Set to True for the bool property to cycle value on double click | |
68 | (instead of showing the popup listbox). If you set this attribute | |
69 | for a wxFlagsProperty, it is automatically applied to child | |
70 | bool properties. | |
1c4293cb VZ |
71 | */ |
72 | #define wxPG_BOOL_USE_DOUBLE_CLICK_CYCLING wxS("UseDClickCycling") | |
73 | ||
74 | /** wxFloatProperty (and similar) specific, int, default -1. Sets the (max) precision | |
75 | used when floating point value is rendered as text. The default -1 means infinite | |
76 | precision. | |
77 | */ | |
78 | #define wxPG_FLOAT_PRECISION wxS("Precision") | |
79 | ||
80 | /** The text will be echoed as asterisks (wxTE_PASSWORD will be passed to textctrl etc). | |
81 | */ | |
82 | #define wxPG_STRING_PASSWORD wxS("Password") | |
83 | ||
84 | /** Define base used by a wxUIntProperty. Valid constants are | |
85 | wxPG_BASE_OCT, wxPG_BASE_DEC, wxPG_BASE_HEX and wxPG_BASE_HEXL | |
86 | (lowercase characters). | |
87 | */ | |
88 | #define wxPG_UINT_BASE wxS("Base") | |
89 | ||
90 | /** Define prefix rendered to wxUIntProperty. Accepted constants | |
91 | wxPG_PREFIX_NONE, wxPG_PREFIX_0x, and wxPG_PREFIX_DOLLAR_SIGN. | |
92 | <b>Note:</b> Only wxPG_PREFIX_NONE works with Decimal and Octal | |
93 | numbers. | |
94 | */ | |
95 | #define wxPG_UINT_PREFIX wxS("Prefix") | |
96 | ||
97 | /** wxFileProperty/wxImageFileProperty specific, wxChar*, default is detected/varies. | |
98 | Sets the wildcard used in the triggered wxFileDialog. Format is the | |
99 | same. | |
100 | */ | |
101 | #define wxPG_FILE_WILDCARD wxS("Wildcard") | |
102 | ||
103 | /** wxFileProperty/wxImageFileProperty specific, int, default 1. | |
104 | When 0, only the file name is shown (i.e. drive and directory are hidden). | |
105 | */ | |
106 | #define wxPG_FILE_SHOW_FULL_PATH wxS("ShowFullPath") | |
107 | ||
108 | /** Specific to wxFileProperty and derived properties, wxString, default empty. | |
109 | If set, then the filename is shown relative to the given path string. | |
110 | */ | |
111 | #define wxPG_FILE_SHOW_RELATIVE_PATH wxS("ShowRelativePath") | |
112 | ||
113 | /** Specific to wxFileProperty and derived properties, wxString, default is empty. | |
114 | Sets the initial path of where to look for files. | |
115 | */ | |
116 | #define wxPG_FILE_INITIAL_PATH wxS("InitialPath") | |
117 | ||
118 | /** Specific to wxFileProperty and derivatives, wxString, default is empty. | |
119 | Sets a specific title for the dir dialog. | |
120 | */ | |
121 | #define wxPG_FILE_DIALOG_TITLE wxS("DialogTitle") | |
122 | ||
123 | /** Specific to wxDirProperty, wxString, default is empty. | |
124 | Sets a specific message for the dir dialog. | |
125 | */ | |
126 | #define wxPG_DIR_DIALOG_MESSAGE wxS("DialogMessage") | |
127 | ||
128 | /** Sets displayed date format for wxDateProperty. | |
129 | */ | |
130 | #define wxPG_DATE_FORMAT wxS("DateFormat") | |
131 | ||
132 | /** Sets wxDatePickerCtrl window style used with wxDateProperty. Default | |
b6fd0b42 JS |
133 | is wxDP_DEFAULT | wxDP_SHOWCENTURY. Using wxDP_ALLOWNONE will enable |
134 | better unspecified value support in the editor. | |
1c4293cb VZ |
135 | */ |
136 | #define wxPG_DATE_PICKER_STYLE wxS("PickerStyle") | |
137 | ||
138 | /** SpinCtrl editor, int or double. How much number changes when button is | |
139 | pressed (or up/down on keybard). | |
140 | */ | |
141 | #define wxPG_ATTR_SPINCTRL_STEP wxS("Step") | |
142 | ||
0ad10f30 | 143 | /** SpinCtrl editor, bool. If @true, value wraps at Min/Max. |
1c4293cb VZ |
144 | */ |
145 | #define wxPG_ATTR_SPINCTRL_WRAP wxS("Wrap") | |
146 | ||
18e046a7 JS |
147 | /** SpinCtrl editor, bool. If @true, value can also by changed by moving |
148 | mouse when left mouse button is being pressed. | |
149 | */ | |
150 | #define wxPG_ATTR_SPINCTRL_MOTIONSPIN wxS("MotionSpin") | |
151 | ||
1c4293cb VZ |
152 | /** wxMultiChoiceProperty, int. If 0, no user strings allowed. If 1, user strings |
153 | appear before list strings. If 2, user strings appear after list string. | |
154 | */ | |
155 | #define wxPG_ATTR_MULTICHOICE_USERSTRINGMODE wxS("UserStringMode") | |
156 | ||
157 | /** wxColourProperty and its kind, int, default 1. Setting this attribute to 0 hides custom | |
158 | colour from property's list of choices. | |
159 | */ | |
160 | #define wxPG_COLOUR_ALLOW_CUSTOM wxS("AllowCustom") | |
161 | ||
1c4293cb VZ |
162 | /** @} |
163 | */ | |
164 | ||
1c4293cb | 165 | |
0ad10f30 FM |
166 | |
167 | /** | |
168 | @class wxPGProperty | |
1c4293cb VZ |
169 | |
170 | wxPGProperty is base class for all wxPropertyGrid properties. In | |
171 | sections below we cover few related topics. | |
172 | ||
173 | @li @ref pgproperty_properties | |
174 | @li @ref pgproperty_creating | |
175 | ||
176 | @section pgproperty_properties Supplied Ready-to-use Property Classes | |
177 | ||
178 | Here is a list and short description of supplied fully-functional | |
179 | property classes. They are located in either props.h or advprops.h. | |
180 | ||
181 | @li @ref wxArrayStringProperty | |
182 | @li @ref wxBoolProperty | |
183 | @li @ref wxColourProperty | |
184 | @li @ref wxCursorProperty | |
185 | @li @ref wxDateProperty | |
186 | @li @ref wxDirProperty | |
187 | @li @ref wxEditEnumProperty | |
188 | @li @ref wxEnumProperty | |
189 | @li @ref wxFileProperty | |
190 | @li @ref wxFlagsProperty | |
191 | @li @ref wxFloatProperty | |
192 | @li @ref wxFontProperty | |
193 | @li @ref wxImageFileProperty | |
194 | @li @ref wxIntProperty | |
195 | @li @ref wxLongStringProperty | |
196 | @li @ref wxMultiChoiceProperty | |
197 | @li @ref wxPropertyCategory | |
198 | @li @ref wxStringProperty | |
199 | @li @ref wxSystemColourProperty | |
200 | @li @ref wxUIntProperty | |
201 | ||
202 | @subsection wxPropertyCategory | |
203 | ||
204 | Not an actual property per se, but a header for a group of properties. | |
205 | Regardless inherits from wxPGProperty. | |
206 | ||
207 | @subsection wxStringProperty | |
208 | ||
209 | Simple string property. wxPG_STRING_PASSWORD attribute may be used | |
210 | to echo value as asterisks and use wxTE_PASSWORD for wxTextCtrl. | |
66fb9e12 JS |
211 | wxPG_ATTR_AUTOCOMPLETE attribute may be used to enable auto-completion |
212 | (use a wxArrayString value), and is also supported by any property that | |
213 | happens to use a wxTextCtrl-based editor. | |
1c4293cb | 214 | |
bb6720bb JS |
215 | @remarks wxStringProperty has a special trait: if it has value of |
216 | "<composed>", and also has child properties, then its displayed | |
217 | value becomes composition of child property values, similar as | |
218 | with wxFontProperty, for instance. | |
1c4293cb VZ |
219 | |
220 | @subsection wxIntProperty | |
221 | ||
222 | Like wxStringProperty, but converts text to a signed long integer. | |
223 | wxIntProperty seamlessly supports 64-bit integers (ie. wxLongLong). | |
a6162a3e JS |
224 | To safely convert variant to integer, use code like this: |
225 | ||
226 | @code | |
227 | wxLongLong ll; | |
228 | ll << property->GetValue(); | |
229 | ||
230 | // or | |
231 | wxLongLong ll = propertyGrid->GetPropertyValueAsLong(property); | |
232 | @endcode | |
1c4293cb VZ |
233 | |
234 | @subsection wxUIntProperty | |
235 | ||
236 | Like wxIntProperty, but displays value as unsigned int. To set | |
237 | the prefix used globally, manipulate wxPG_UINT_PREFIX string attribute. | |
238 | To set the globally used base, manipulate wxPG_UINT_BASE int | |
239 | attribute. Regardless of current prefix, understands (hex) values starting | |
240 | with both "0x" and "$". | |
a6162a3e JS |
241 | Like wxIntProperty, wxUIntProperty seamlessly supports 64-bit unsigned |
242 | integers (ie. wxULongLong). Same wxVariant safety rules apply. | |
1c4293cb VZ |
243 | |
244 | @subsection wxFloatProperty | |
245 | ||
246 | Like wxStringProperty, but converts text to a double-precision floating point. | |
247 | Default float-to-text precision is 6 decimals, but this can be changed | |
248 | by modifying wxPG_FLOAT_PRECISION attribute. | |
249 | ||
250 | @subsection wxBoolProperty | |
251 | ||
252 | Represents a boolean value. wxChoice is used as editor control, by the | |
253 | default. wxPG_BOOL_USE_CHECKBOX attribute can be set to true inorder to use | |
254 | check box instead. | |
255 | ||
256 | @subsection wxLongStringProperty | |
257 | ||
258 | Like wxStringProperty, but has a button that triggers a small text editor | |
259 | dialog. Note that in long string values, tabs are represented by "\t" and | |
260 | line break by "\n". | |
261 | ||
3a89adc1 JS |
262 | To display custom dialog on button press, you can subclass |
263 | wxLongStringProperty and implement OnButtonClick, like this: | |
264 | ||
265 | @code | |
266 | virtual bool OnButtonClick( wxPropertyGrid* propGrid, wxString& value ) | |
267 | { | |
3a89adc1 JS |
268 | wxSize dialogSize(...size of your dialog...); |
269 | ||
270 | wxPoint dlgPos = propGrid->GetGoodEditorDialogPosition(this, | |
271 | dialogSize) | |
272 | ||
273 | // Create dialog dlg at dlgPos. Use value as initial string | |
274 | // value. | |
275 | ... | |
276 | ||
277 | if ( dlg.ShowModal() == wxID_OK ) | |
278 | { | |
279 | value = dlg.GetStringValue); | |
280 | return true; | |
281 | } | |
282 | return false; | |
283 | } | |
284 | @endcode | |
285 | ||
286 | Also, if you wish not to have line breaks and tabs translated to | |
287 | escape sequences, then do following in constructor of your subclass: | |
288 | ||
289 | @code | |
290 | m_flags |= wxPG_PROP_NO_ESCAPE; | |
291 | @endcode | |
292 | ||
1c4293cb VZ |
293 | @subsection wxDirProperty |
294 | ||
295 | Like wxLongStringProperty, but the button triggers dir selector instead. | |
296 | Supported properties (all with string value): wxPG_DIR_DIALOG_MESSAGE. | |
297 | ||
298 | @subsection wxFileProperty | |
299 | ||
300 | Like wxLongStringProperty, but the button triggers file selector instead. | |
301 | Default wildcard is "All files..." but this can be changed by setting | |
302 | wxPG_FILE_WILDCARD attribute (see wxFileDialog for format details). | |
0ad10f30 | 303 | Attribute wxPG_FILE_SHOW_FULL_PATH can be set to @false inorder to show |
1c4293cb VZ |
304 | only the filename, not the entire path. |
305 | ||
306 | @subsection wxEnumProperty | |
307 | ||
308 | Represents a single selection from a list of choices - | |
309 | wxOwnerDrawnComboBox is used to edit the value. | |
310 | ||
311 | @subsection wxFlagsProperty | |
312 | ||
16372f0d JS |
313 | Represents a bit set that fits in a long integer. wxBoolProperty sub- |
314 | properties are created for editing individual bits. Textctrl is created to | |
315 | manually edit the flags as a text; a continous sequence of spaces, commas | |
316 | and semicolons are considered as a flag id separator. | |
317 | ||
318 | <b>Note:</b> When changing "choices" (ie. flag labels) of wxFlagsProperty, | |
319 | you will need to use wxPGProperty::SetChoices() - otherwise they will not | |
320 | get updated properly. | |
321 | ||
322 | wxFlagsProperty supports the same attributes as wxBoolProperty. | |
1c4293cb VZ |
323 | |
324 | @subsection wxArrayStringProperty | |
325 | ||
326 | Allows editing of a list of strings in wxTextCtrl and in a separate dialog. | |
327 | ||
328 | @subsection wxDateProperty | |
329 | ||
330 | wxDateTime property. Default editor is DatePickerCtrl, altough TextCtrl | |
331 | should work as well. wxPG_DATE_FORMAT attribute can be used to change | |
332 | string wxDateTime::Format uses (altough default is recommended as it is | |
333 | locale-dependant), and wxPG_DATE_PICKER_STYLE allows changing window | |
334 | style given to DatePickerCtrl (default is wxDP_DEFAULT|wxDP_SHOWCENTURY). | |
b6fd0b42 | 335 | Using wxDP_ALLOWNONE will enable better unspecified value support. |
1c4293cb VZ |
336 | |
337 | @subsection wxEditEnumProperty | |
338 | ||
339 | Represents a string that can be freely edited or selected from list of choices - | |
340 | custom combobox control is used to edit the value. | |
341 | ||
342 | @subsection wxMultiChoiceProperty | |
343 | ||
344 | Allows editing a multiple selection from a list of strings. This is | |
345 | property is pretty much built around concept of wxMultiChoiceDialog. | |
346 | It uses wxArrayString value. | |
347 | ||
348 | @subsection wxImageFileProperty | |
349 | ||
350 | Like wxFileProperty, but has thumbnail of the image in front of | |
351 | the filename and autogenerates wildcard from available image handlers. | |
352 | ||
353 | @subsection wxColourProperty | |
354 | ||
355 | <b>Useful alternate editor:</b> Choice. | |
356 | ||
357 | Represents wxColour. wxButton is used to trigger a colour picker dialog. | |
d61d8cff JS |
358 | There are various sub-classing opportunities with this class. See |
359 | below in wxSystemColourProperty section for details. | |
1c4293cb VZ |
360 | |
361 | @subsection wxFontProperty | |
362 | ||
363 | Represents wxFont. Various sub-properties are used to edit individual | |
364 | subvalues. | |
365 | ||
366 | @subsection wxSystemColourProperty | |
367 | ||
368 | Represents wxColour and a system colour index. wxChoice is used to edit | |
369 | the value. Drop-down list has color images. Note that value type | |
d61d8cff JS |
370 | is wxColourPropertyValue instead of wxColour (which wxColourProperty |
371 | uses). | |
372 | ||
1c4293cb VZ |
373 | @code |
374 | class wxColourPropertyValue : public wxObject | |
375 | { | |
376 | public: | |
377 | // An integer value relating to the colour, and which exact | |
378 | // meaning depends on the property with which it is used. | |
379 | // | |
380 | // For wxSystemColourProperty: | |
381 | // Any of wxSYS_COLOUR_XXX, or any web-colour ( use wxPG_TO_WEB_COLOUR | |
382 | // macro - (currently unsupported) ), or wxPG_COLOUR_CUSTOM. | |
383 | wxUint32 m_type; | |
384 | ||
385 | // Resulting colour. Should be correct regardless of type. | |
386 | wxColour m_colour; | |
387 | }; | |
388 | @endcode | |
0ad10f30 | 389 | |
d61d8cff JS |
390 | in wxSystemColourProperty, and its derived class wxColourProperty, there |
391 | are various sub-classing features. To set basic list list of colour | |
392 | names, call wxPGProperty::SetChoices(). | |
393 | ||
394 | @code | |
395 | // Override in derived class to customize how colours are translated | |
396 | // to strings. | |
397 | virtual wxString ColourToString( const wxColour& col, int index ) const; | |
398 | ||
399 | // Returns index of entry that triggers colour picker dialog | |
400 | // (default is last). | |
401 | virtual int GetCustomColourIndex() const; | |
402 | ||
403 | // Helper function to show the colour dialog | |
404 | bool QueryColourFromUser( wxVariant& variant ) const; | |
405 | ||
406 | // Returns colour for given choice. | |
407 | // Default function returns wxSystemSettings::GetColour(index). | |
408 | virtual wxColour GetColour( int index ) const; | |
409 | @endcode | |
1c4293cb VZ |
410 | |
411 | @subsection wxCursorProperty | |
412 | ||
413 | Represents a wxCursor. wxChoice is used to edit the value. | |
414 | Drop-down list has cursor images under some (wxMSW) platforms. | |
415 | ||
416 | ||
417 | @section pgproperty_creating Creating Custom Properties | |
418 | ||
419 | New properties can be created by subclassing wxPGProperty or one | |
420 | of the provided property classes, and (re)implementing necessary | |
421 | member functions. Below, each virtual member function has ample | |
422 | documentation about its purpose and any odd details which to keep | |
423 | in mind. | |
424 | ||
425 | Here is a very simple 'template' code: | |
426 | ||
427 | @code | |
428 | class MyProperty : public wxPGProperty | |
429 | { | |
430 | public: | |
431 | // All arguments of ctor must have a default value - | |
432 | // use wxPG_LABEL for label and name | |
433 | MyProperty( const wxString& label = wxPG_LABEL, | |
434 | const wxString& name = wxPG_LABEL, | |
435 | const wxString& value = wxEmptyString ) | |
436 | { | |
437 | // m_value is wxVariant | |
438 | m_value = value; | |
439 | } | |
440 | ||
441 | virtual ~MyProperty() { } | |
442 | ||
443 | const wxPGEditor* DoGetEditorClass() const | |
444 | { | |
445 | // Determines editor used by property. | |
446 | // You can replace 'TextCtrl' below with any of these | |
447 | // builtin-in property editor identifiers: Choice, ComboBox, | |
448 | // TextCtrlAndButton, ChoiceAndButton, CheckBox, SpinCtrl, | |
449 | // DatePickerCtrl. | |
450 | return wxPGEditor_TextCtrl; | |
451 | } | |
452 | ||
1425eca5 JS |
453 | virtual wxString ValueToString( wxVariant& value, |
454 | int argFlags ) const | |
1c4293cb | 455 | { |
1425eca5 | 456 | // TODO: Convert given property value to a string |
1c4293cb VZ |
457 | } |
458 | ||
459 | virtual bool StringToValue( wxVariant& variant, const wxString& text, int argFlags ) | |
460 | { | |
461 | // TODO: Adapt string to property value. | |
462 | } | |
463 | ||
464 | protected: | |
465 | }; | |
466 | @endcode | |
467 | ||
468 | Since wxPGProperty derives from wxObject, you can use standard | |
469 | DECLARE_DYNAMIC_CLASS and IMPLEMENT_DYNAMIC_CLASS macros. From the | |
470 | above example they were omitted for sake of simplicity, and besides, | |
471 | they are only really needed if you need to use wxRTTI with your | |
472 | property class. | |
473 | ||
0372d42e JS |
474 | You can change the 'value type' of a property by simply assigning different |
475 | type of variant with SetValue. <b>It is mandatory to implement | |
476 | wxVariantData class for all data types used as property values.</b> | |
477 | You can use macros declared in wxPropertyGrid headers. For instance: | |
1c4293cb VZ |
478 | |
479 | @code | |
480 | // In header file: | |
0372d42e JS |
481 | // (If you need to have export declaration, use version of macros |
482 | // with _EXPORTED postfix) | |
483 | WX_PG_DECLARE_VARIANT_DATA(MyDataClass) | |
1c4293cb VZ |
484 | |
485 | // In sources file: | |
0372d42e JS |
486 | WX_PG_IMPLEMENT_VARIANT_DATA(MyDataClass) |
487 | ||
488 | // Or, if you don't have valid == operator: | |
489 | WX_PG_IMPLEMENT_VARIANT_DATA_DUMMY_EQ(MyDataClass) | |
1c4293cb VZ |
490 | @endcode |
491 | ||
492 | @library{wxpropgrid} | |
493 | @category{propgrid} | |
494 | */ | |
495 | class wxPGProperty : public wxObject | |
496 | { | |
497 | public: | |
498 | typedef wxUint32 FlagType; | |
499 | ||
bb6720bb JS |
500 | /** |
501 | Default constructor. | |
1c4293cb VZ |
502 | */ |
503 | wxPGProperty(); | |
504 | ||
bb6720bb JS |
505 | /** |
506 | Constructor. | |
1c4293cb VZ |
507 | Non-abstract property classes should have constructor of this style: |
508 | ||
509 | @code | |
510 | ||
bb6720bb | 511 | MyProperty( const wxString& label, const wxString& name, const T& value ) |
1c4293cb VZ |
512 | : wxPGProperty() |
513 | { | |
514 | // Generally recommended way to set the initial value | |
515 | // (as it should work in pretty much 100% of cases). | |
516 | wxVariant variant; | |
517 | variant << value; | |
518 | SetValue(variant); | |
519 | ||
48a32cf6 JS |
520 | // If has private child properties then create them here. |
521 | // For example: | |
522 | // AddPrivateChild( new wxStringProperty("Subprop 1", | |
523 | // wxPG_LABEL, | |
524 | // value.GetSubProp1())); | |
1c4293cb VZ |
525 | } |
526 | ||
527 | @endcode | |
528 | */ | |
529 | wxPGProperty( const wxString& label, const wxString& name ); | |
530 | ||
bb6720bb JS |
531 | /** |
532 | Virtual destructor. It is customary for derived properties to implement this. | |
533 | */ | |
1c4293cb VZ |
534 | virtual ~wxPGProperty(); |
535 | ||
bb6720bb JS |
536 | /** |
537 | This virtual function is called after m_value has been set. | |
1c4293cb VZ |
538 | |
539 | @remarks | |
540 | - If m_value was set to Null variant (ie. unspecified value), OnSetValue() | |
541 | will not be called. | |
542 | - m_value may be of any variant type. Typically properties internally support only | |
543 | one variant type, and as such OnSetValue() provides a good opportunity to convert | |
544 | supported values into internal type. | |
545 | - Default implementation does nothing. | |
546 | */ | |
547 | virtual void OnSetValue(); | |
548 | ||
bb6720bb JS |
549 | /** |
550 | Override this to return something else than m_value as the value. | |
1c4293cb | 551 | */ |
0ad10f30 | 552 | virtual wxVariant DoGetValue() const; |
1c4293cb | 553 | |
bb6720bb JS |
554 | /** |
555 | Implement this function in derived class to check the value. | |
0ad10f30 | 556 | Return @true if it is ok. Returning @false prevents property change events |
1c4293cb VZ |
557 | from occurring. |
558 | ||
559 | @remarks | |
0ad10f30 | 560 | - Default implementation always returns @true. |
1c4293cb VZ |
561 | */ |
562 | virtual bool ValidateValue( wxVariant& value, wxPGValidationInfo& validationInfo ) const; | |
563 | ||
bb6720bb | 564 | /** |
9e6bebdc JS |
565 | Converts text into wxVariant value appropriate for this property. |
566 | ||
567 | @param variant | |
568 | On function entry this is the old value (should not be wxNullVariant | |
569 | in normal cases). Translated value must be assigned back to it. | |
570 | ||
571 | @param text | |
572 | Text to be translated into variant. | |
573 | ||
1c4293cb | 574 | @param argFlags |
9e6bebdc JS |
575 | If wxPG_FULL_VALUE is set, returns complete, storable value instead |
576 | of displayable one (they may be different). | |
577 | If wxPG_COMPOSITE_FRAGMENT is set, text is interpreted as a part of | |
1425eca5 | 578 | composite property string value (as generated by ValueToString() |
9e6bebdc | 579 | called with this same flag). |
1c4293cb | 580 | |
9e6bebdc JS |
581 | @return Returns @true if resulting wxVariant value was different. |
582 | ||
583 | @remarks Default implementation converts semicolon delimited tokens into | |
584 | child values. Only works for properties with children. | |
585 | ||
586 | You might want to take into account that m_value is Null variant | |
587 | if property value is unspecified (which is usually only case if | |
588 | you explicitly enabled that sort behavior). | |
1c4293cb VZ |
589 | */ |
590 | virtual bool StringToValue( wxVariant& variant, const wxString& text, int argFlags = 0 ) const; | |
591 | ||
bb6720bb | 592 | /** |
9e6bebdc JS |
593 | Converts integer (possibly a choice selection) into wxVariant value |
594 | appropriate for this property. | |
595 | ||
596 | @param variant | |
597 | On function entry this is the old value (should not be wxNullVariant | |
598 | in normal cases). Translated value must be assigned back to it. | |
9e6bebdc JS |
599 | @param number |
600 | Integer to be translated into variant. | |
1c4293cb | 601 | @param argFlags |
9e6bebdc JS |
602 | If wxPG_FULL_VALUE is set, returns complete, storable value instead |
603 | of displayable one. | |
604 | ||
605 | @return Returns @true if resulting wxVariant value was different. | |
1c4293cb VZ |
606 | |
607 | @remarks | |
608 | - If property is not supposed to use choice or spinctrl or other editor | |
609 | with int-based value, it is not necessary to implement this method. | |
610 | - Default implementation simply assign given int to m_value. | |
9e6bebdc JS |
611 | - If property uses choice control, and displays a dialog on some choice |
612 | items, then it is preferred to display that dialog in IntToValue | |
613 | instead of OnEvent. | |
0ad10f30 | 614 | - You might want to take into account that m_value is Mull variant if |
9e6bebdc JS |
615 | property value is unspecified (which is usually only case if you |
616 | explicitly enabled that sort behavior). | |
1c4293cb | 617 | */ |
0ad10f30 | 618 | virtual bool IntToValue( wxVariant& variant, int number, int argFlags = 0 ) const; |
1c4293cb | 619 | |
bb6720bb | 620 | /** |
1425eca5 | 621 | Converts property value into a text representation. |
1c4293cb | 622 | |
1425eca5 JS |
623 | @param value |
624 | Value to be converted. | |
1425eca5 JS |
625 | @param argFlags |
626 | If 0 (default value), then displayed string is returned. | |
627 | If wxPG_FULL_VALUE is set, returns complete, storable string value | |
628 | instead of displayable. If wxPG_EDITABLE_VALUE is set, returns | |
0ad10f30 FM |
629 | string value that must be editable in textctrl. |
630 | If wxPG_COMPOSITE_FRAGMENT is set, returns text that is appropriate to | |
631 | display as a part of string property's composite text representation. | |
1425eca5 JS |
632 | |
633 | @remarks Default implementation calls GenerateComposedValue(). | |
1c4293cb | 634 | */ |
1425eca5 | 635 | virtual wxString ValueToString( wxVariant& value, int argFlags = 0 ) const; |
1c4293cb | 636 | |
bb6720bb JS |
637 | /** |
638 | Converts string to a value, and if successful, calls SetValue() on it. | |
1c4293cb | 639 | Default behavior is to do nothing. |
0ad10f30 | 640 | |
1c4293cb | 641 | @param text |
0ad10f30 FM |
642 | String to get the value from. |
643 | @param flags | |
644 | @todo docme | |
645 | ||
646 | @return @true if value was changed. | |
1c4293cb VZ |
647 | */ |
648 | bool SetValueFromString( const wxString& text, int flags = 0 ); | |
649 | ||
bb6720bb JS |
650 | /** |
651 | Converts integer to a value, and if succesful, calls SetValue() on it. | |
1c4293cb | 652 | Default behavior is to do nothing. |
0ad10f30 | 653 | |
1c4293cb | 654 | @param value |
0ad10f30 | 655 | Int to get the value from. |
1c4293cb | 656 | @param flags |
0ad10f30 FM |
657 | If has wxPG_FULL_VALUE, then the value given is a actual value and not an index. |
658 | ||
659 | @return @true if value was changed. | |
1c4293cb VZ |
660 | */ |
661 | bool SetValueFromInt( long value, int flags = 0 ); | |
662 | ||
bb6720bb JS |
663 | /** |
664 | Returns size of the custom painted image in front of property. This method | |
1c4293cb VZ |
665 | must be overridden to return non-default value if OnCustomPaint is to be |
666 | called. | |
0ad10f30 | 667 | |
1c4293cb | 668 | @param item |
0ad10f30 FM |
669 | Normally -1, but can be an index to the property's list of items. |
670 | ||
1c4293cb VZ |
671 | @remarks |
672 | - Default behavior is to return wxSize(0,0), which means no image. | |
673 | - Default image width or height is indicated with dimension -1. | |
674 | - You can also return wxPG_DEFAULT_IMAGE_SIZE which equals wxSize(-1, -1). | |
675 | */ | |
676 | virtual wxSize OnMeasureImage( int item = -1 ) const; | |
677 | ||
bb6720bb JS |
678 | /** |
679 | Events received by editor widgets are processed here. Note that editor class | |
1c4293cb VZ |
680 | usually processes most events. Some, such as button press events of |
681 | TextCtrlAndButton class, can be handled here. Also, if custom handling | |
682 | for regular events is desired, then that can also be done (for example, | |
683 | wxSystemColourProperty custom handles wxEVT_COMMAND_CHOICE_SELECTED | |
684 | to display colour picker dialog when 'custom' selection is made). | |
685 | ||
0ad10f30 FM |
686 | If the event causes value to be changed, SetValueInEvent() should be called |
687 | to set the new value. | |
688 | ||
689 | The parameter @a event is the associated wxEvent. | |
1c4293cb | 690 | |
1c4293cb | 691 | @retval |
0ad10f30 FM |
692 | Should return @true if any changes in value should be reported. |
693 | ||
1c4293cb VZ |
694 | @remarks |
695 | - If property uses choice control, and displays a dialog on some choice items, | |
696 | then it is preferred to display that dialog in IntToValue instead of OnEvent. | |
697 | */ | |
698 | virtual bool OnEvent( wxPropertyGrid* propgrid, wxWindow* wnd_primary, wxEvent& event ); | |
699 | ||
bb6720bb JS |
700 | /** |
701 | Called after value of a child property has been altered. Note that this function is | |
1c4293cb VZ |
702 | usually called at the time that value of this property, or given child property, is |
703 | still pending for change. | |
704 | ||
705 | Sample pseudo-code implementation: | |
706 | ||
707 | @code | |
708 | void MyProperty::ChildChanged( wxVariant& thisValue, int childIndex, wxVariant& childValue ) const | |
709 | { | |
710 | // Acquire reference to actual type of data stored in variant | |
711 | // (TFromVariant only exists if wxPropertyGrid's wxVariant-macros were used to create | |
712 | // the variant class). | |
713 | T& data = TFromVariant(thisValue); | |
714 | ||
715 | // Copy childValue into data. | |
716 | switch ( childIndex ) | |
717 | { | |
718 | case 0: | |
719 | data.SetSubProp1( childvalue.GetLong() ); | |
720 | break; | |
721 | case 1: | |
722 | data.SetSubProp2( childvalue.GetString() ); | |
723 | break; | |
724 | ... | |
725 | } | |
726 | } | |
727 | @endcode | |
728 | ||
729 | @param thisValue | |
0ad10f30 | 730 | Value of this property, that should be altered. |
1c4293cb | 731 | @param childIndex |
0ad10f30 | 732 | Index of child changed (you can use Item(childIndex) to get). |
1c4293cb | 733 | @param childValue |
0ad10f30 | 734 | Value of the child property. |
1c4293cb VZ |
735 | */ |
736 | virtual void ChildChanged( wxVariant& thisValue, int childIndex, wxVariant& childValue ) const; | |
737 | ||
bb6720bb JS |
738 | /** |
739 | Returns pointer to an instance of used editor. | |
1c4293cb VZ |
740 | */ |
741 | virtual const wxPGEditor* DoGetEditorClass() const; | |
742 | ||
bb6720bb JS |
743 | /** |
744 | Returns pointer to the wxValidator that should be used | |
0ad10f30 | 745 | with the editor of this property (@NULL for no validator). |
1c4293cb VZ |
746 | Setting validator explicitly via SetPropertyValidator |
747 | will override this. | |
748 | ||
749 | In most situations, code like this should work well | |
750 | (macros are used to maintain one actual validator instance, | |
751 | so on the second call the function exits within the first | |
752 | macro): | |
753 | ||
754 | @code | |
755 | ||
756 | wxValidator* wxMyPropertyClass::DoGetValidator () const | |
757 | { | |
758 | WX_PG_DOGETVALIDATOR_ENTRY() | |
759 | ||
760 | wxMyValidator* validator = new wxMyValidator(...); | |
761 | ||
762 | ... prepare validator... | |
763 | ||
764 | WX_PG_DOGETVALIDATOR_EXIT(validator) | |
765 | } | |
766 | ||
767 | @endcode | |
768 | ||
769 | @remarks | |
770 | You can get common filename validator by returning | |
771 | wxFileProperty::GetClassValidator(). wxDirProperty, | |
772 | for example, uses it. | |
773 | */ | |
774 | virtual wxValidator* DoGetValidator () const; | |
775 | ||
bb6720bb JS |
776 | /** |
777 | Override to paint an image in front of the property value text or drop-down | |
1c4293cb VZ |
778 | list item (but only if wxPGProperty::OnMeasureImage is overridden as well). |
779 | ||
780 | If property's OnMeasureImage() returns size that has height != 0 but less than | |
781 | row height ( < 0 has special meanings), wxPropertyGrid calls this method to | |
782 | draw a custom image in a limited area in front of the editor control or | |
783 | value text/graphics, and if control has drop-down list, then the image is | |
784 | drawn there as well (even in the case OnMeasureImage() returned higher height | |
785 | than row height). | |
786 | ||
787 | NOTE: Following applies when OnMeasureImage() returns a "flexible" height ( | |
788 | using wxPG_FLEXIBLE_SIZE(W,H) macro), which implies variable height items: | |
789 | If rect.x is < 0, then this is a measure item call, which means that | |
790 | dc is invalid and only thing that should be done is to set paintdata.m_drawnHeight | |
791 | to the height of the image of item at index paintdata.m_choiceItem. This call | |
792 | may be done even as often as once every drop-down popup show. | |
793 | ||
794 | @param dc | |
795 | wxDC to paint on. | |
796 | @param rect | |
797 | Box reserved for custom graphics. Includes surrounding rectangle, if any. | |
798 | If x is < 0, then this is a measure item call (see above). | |
799 | @param paintdata | |
e342075f JS |
800 | wxPGPaintData structure with much useful data about painted item. |
801 | @code | |
802 | struct wxPGPaintData | |
803 | { | |
804 | // wxPropertyGrid. | |
805 | const wxPropertyGrid* m_parent; | |
806 | ||
807 | // Normally -1, otherwise index to drop-down list item that has to be drawn. | |
808 | int m_choiceItem; | |
809 | ||
810 | // Set to drawn width in OnCustomPaint (optional). | |
811 | int m_drawnWidth; | |
812 | ||
813 | // In a measure item call, set this to the height of item at m_choiceItem index | |
939d9364 | 814 | int m_drawnHeight; |
e342075f JS |
815 | }; |
816 | @endcode | |
1c4293cb VZ |
817 | |
818 | @remarks | |
819 | - You can actually exceed rect width, but if you do so then paintdata.m_drawnWidth | |
820 | must be set to the full width drawn in pixels. | |
821 | - Due to technical reasons, rect's height will be default even if custom height | |
822 | was reported during measure call. | |
823 | - Brush is guaranteed to be default background colour. It has been already used to | |
824 | clear the background of area being painted. It can be modified. | |
825 | - Pen is guaranteed to be 1-wide 'black' (or whatever is the proper colour) pen for | |
826 | drawing framing rectangle. It can be changed as well. | |
827 | ||
1425eca5 | 828 | @see ValueToString() |
1c4293cb VZ |
829 | */ |
830 | virtual void OnCustomPaint( wxDC& dc, const wxRect& rect, wxPGPaintData& paintdata ); | |
831 | ||
bb6720bb JS |
832 | /** |
833 | Returns used wxPGCellRenderer instance for given property column (label=0, value=1). | |
1c4293cb VZ |
834 | |
835 | Default implementation returns editor's renderer for all columns. | |
836 | */ | |
837 | virtual wxPGCellRenderer* GetCellRenderer( int column ) const; | |
838 | ||
bb6720bb JS |
839 | /** |
840 | Returns which choice is currently selected. Only applies to properties | |
939d9364 JS |
841 | which have choices. |
842 | ||
843 | Needs to reimplemented in derived class if property value does not | |
844 | map directly to a choice. Integer as index, bool, and string usually do. | |
845 | */ | |
846 | virtual int GetChoiceSelection() const; | |
847 | ||
bb6720bb JS |
848 | /** |
849 | Refresh values of child properties. Automatically called after value is set. | |
1c4293cb VZ |
850 | */ |
851 | virtual void RefreshChildren(); | |
852 | ||
bb6720bb JS |
853 | /** |
854 | Special handling for attributes of this property. | |
1c4293cb | 855 | |
0ad10f30 | 856 | If returns @false, then the attribute will be automatically stored in |
1c4293cb VZ |
857 | m_attributes. |
858 | ||
0ad10f30 | 859 | Default implementation simply returns @false. |
1c4293cb VZ |
860 | */ |
861 | virtual bool DoSetAttribute( const wxString& name, wxVariant& value ); | |
862 | ||
bb6720bb JS |
863 | /** |
864 | Returns value of an attribute. | |
1c4293cb VZ |
865 | |
866 | Override if custom handling of attributes is needed. | |
867 | ||
0ad10f30 | 868 | Default implementation simply return @NULL variant. |
1c4293cb VZ |
869 | */ |
870 | virtual wxVariant DoGetAttribute( const wxString& name ) const; | |
871 | ||
bb6720bb JS |
872 | /** |
873 | Returns instance of a new wxPGEditorDialogAdapter instance, which is | |
1c4293cb VZ |
874 | used when user presses the (optional) button next to the editor control; |
875 | ||
0ad10f30 | 876 | Default implementation returns @NULL (ie. no action is generated when |
1c4293cb VZ |
877 | button is pressed). |
878 | */ | |
879 | virtual wxPGEditorDialogAdapter* GetEditorDialog() const; | |
880 | ||
d8812c6e JS |
881 | /** |
882 | Called whenever validation has failed with given pending value. | |
883 | ||
884 | @remarks If you implement this in your custom property class, please | |
885 | remember to call the baser implementation as well, since they | |
886 | may use it to revert property into pre-change state. | |
887 | */ | |
888 | virtual void OnValidationFailure( wxVariant& pendingValue ); | |
889 | ||
bb6720bb JS |
890 | /** |
891 | Append a new choice to property's list of choices. | |
939d9364 JS |
892 | |
893 | @param label | |
894 | Label for added choice. | |
895 | ||
896 | @param value | |
897 | Value for new choice. Do not specify if you wish this | |
898 | to equal choice index. | |
899 | ||
900 | @return | |
901 | Index to added choice. | |
902 | */ | |
903 | int AddChoice( const wxString& label, int value = wxPG_INVALID_VALUE ); | |
904 | ||
bb6720bb | 905 | /** |
48a32cf6 | 906 | Adds a private child property. |
2fd4a524 | 907 | |
48a32cf6 JS |
908 | @deprecated Use AddPrivateChild() instead. |
909 | ||
910 | @see AddPrivateChild() | |
911 | */ | |
912 | wxDEPRECATED( void AddChild( wxPGProperty* prop ) ); | |
913 | ||
914 | /** | |
915 | Adds a private child property. If you use this instead of | |
916 | wxPropertyGridInterface::Insert() or | |
917 | wxPropertyGridInterface::AppendIn(), then property's parental | |
918 | type will automatically be set up to wxPG_PROP_AGGREGATE. In other | |
919 | words, all properties of this property will become private. | |
bb6720bb | 920 | */ |
48a32cf6 | 921 | void AddPrivateChild( wxPGProperty* prop ); |
bb6720bb JS |
922 | |
923 | /** | |
924 | Adapts list variant into proper value using consecutive | |
925 | ChildChanged() calls. | |
926 | */ | |
927 | void AdaptListToValue( wxVariant& list, wxVariant* value ) const; | |
928 | ||
48a32cf6 JS |
929 | /** |
930 | Use this member function to add independent (ie. regular) children to | |
931 | a property. | |
932 | ||
933 | @return Appended childProperty. | |
934 | ||
935 | @remarks wxPropertyGrid is not automatically refreshed by this | |
936 | function. | |
937 | ||
938 | @see InsertChild(), AddPrivateChild() | |
939 | */ | |
940 | wxPGProperty* AppendChild( wxPGProperty* childProperty ); | |
941 | ||
bb6720bb JS |
942 | /** |
943 | Determines, recursively, if all children are not unspecified. | |
944 | ||
945 | @param pendingList | |
946 | Assumes members in this wxVariant list as pending | |
947 | replacement values. | |
948 | */ | |
949 | bool AreAllChildrenSpecified( wxVariant* pendingList = NULL ) const; | |
950 | ||
951 | /** | |
0ad10f30 | 952 | Returns @true if children of this property are component values (for instance, |
1c4293cb VZ |
953 | points size, face name, and is_underlined are component values of a font). |
954 | */ | |
0ad10f30 | 955 | bool AreChildrenComponents() const; |
1c4293cb | 956 | |
91c818f8 JS |
957 | /** |
958 | Deletes children of the property. | |
959 | */ | |
960 | void DeleteChildren(); | |
961 | ||
bb6720bb JS |
962 | /** |
963 | Removes entry from property's wxPGChoices and editor control (if it is active). | |
1c4293cb VZ |
964 | |
965 | If selected item is deleted, then the value is set to unspecified. | |
966 | */ | |
967 | void DeleteChoice( int index ); | |
968 | ||
bb6720bb JS |
969 | /** Deletes all child properties. */ |
970 | void Empty(); | |
971 | ||
1425eca5 | 972 | /** |
c82a80e8 | 973 | Composes text from values of child properties. |
1425eca5 | 974 | */ |
c82a80e8 | 975 | wxString GenerateComposedValue() const; |
1c4293cb | 976 | |
bb6720bb JS |
977 | /** |
978 | Returns property attribute value, null variant if not found. | |
979 | */ | |
980 | wxVariant GetAttribute( const wxString& name ) const; | |
1c4293cb | 981 | |
bb6720bb JS |
982 | /** Returns named attribute, as string, if found. Otherwise defVal is returned. |
983 | */ | |
984 | wxString GetAttribute( const wxString& name, const wxString& defVal ) const; | |
1c4293cb | 985 | |
bb6720bb | 986 | /** Returns named attribute, as long, if found. Otherwise defVal is returned. |
939d9364 | 987 | */ |
bb6720bb | 988 | long GetAttributeAsLong( const wxString& name, long defVal ) const; |
1c4293cb | 989 | |
bb6720bb | 990 | /** Returns named attribute, as double, if found. Otherwise defVal is returned. |
1c4293cb | 991 | */ |
bb6720bb | 992 | double GetAttributeAsDouble( const wxString& name, double defVal ) const; |
1c4293cb | 993 | |
bb6720bb JS |
994 | /** |
995 | Returns attributes as list wxVariant. | |
996 | */ | |
997 | wxVariant GetAttributesAsList() const; | |
1c4293cb | 998 | |
bb6720bb | 999 | /** |
0ad10f30 | 1000 | Returns editor used for given column. @NULL for no editor. |
1c4293cb | 1001 | */ |
0ad10f30 | 1002 | const wxPGEditor* GetColumnEditor( int column ) const; |
1c4293cb | 1003 | |
bb6720bb | 1004 | /** Returns property's base name (ie. parent's name is not added in any case) */ |
0ad10f30 | 1005 | const wxString& GetBaseName() const; |
1c4293cb | 1006 | |
bb6720bb | 1007 | /** |
d7e2b522 | 1008 | Returns wxPGCell of given column. |
1c4293cb | 1009 | */ |
d7e2b522 | 1010 | const wxPGCell& GetCell( unsigned int column ) const; |
1c4293cb | 1011 | |
bb6720bb JS |
1012 | /** |
1013 | Returns number of child properties. | |
1014 | */ | |
1015 | unsigned int GetChildCount() const; | |
1016 | ||
1017 | /** | |
1018 | Returns height of children, recursively, and | |
1019 | by taking expanded/collapsed status into account. | |
1020 | ||
1021 | @param lh | |
1022 | Line height. Pass result of GetGrid()->GetRowHeight() here. | |
1023 | ||
1024 | @param iMax | |
1025 | Only used (internally) when finding property y-positions. | |
1026 | */ | |
1027 | int GetChildrenHeight( int lh, int iMax = -1 ) const; | |
1028 | ||
1029 | /** | |
1030 | Returns read-only reference to property's list of choices. | |
1031 | */ | |
1032 | const wxPGChoices& GetChoices() const; | |
1033 | ||
1034 | /** | |
1035 | Returns client data (void*) of a property. | |
1036 | */ | |
1037 | void* GetClientData() const; | |
1038 | ||
1039 | /** Sets managed client object of a property. | |
1040 | */ | |
1041 | wxClientData *GetClientObject() const; | |
1042 | ||
1043 | /** | |
1044 | Returns property's default value. If property's value type is not | |
1045 | a built-in one, and "DefaultValue" attribute is not defined, then | |
1046 | this function usually returns Null variant. | |
1047 | */ | |
1048 | wxVariant GetDefaultValue() const; | |
1049 | ||
40924780 | 1050 | /** Returns property's displayed text. |
bb6720bb | 1051 | */ |
0ad10f30 | 1052 | wxString GetDisplayedString() const; |
1c4293cb | 1053 | |
bb6720bb JS |
1054 | /** |
1055 | Returns wxPGEditor that will be used and created when | |
1056 | property becomes selected. Returns more accurate value | |
1057 | than DoGetEditorClass(). | |
1058 | */ | |
1059 | const wxPGEditor* GetEditorClass() const; | |
1060 | ||
1c4293cb VZ |
1061 | /** Returns property grid where property lies. */ |
1062 | wxPropertyGrid* GetGrid() const; | |
1063 | ||
bb6720bb JS |
1064 | /** |
1065 | Returns owner wxPropertyGrid, but only if one is currently on a page | |
1066 | displaying this property. | |
1067 | */ | |
1c4293cb VZ |
1068 | wxPropertyGrid* GetGridIfDisplayed() const; |
1069 | ||
bb6720bb JS |
1070 | /** |
1071 | Returns property's help or description text. | |
1072 | ||
1073 | @see SetHelpString() | |
1c4293cb | 1074 | */ |
bb6720bb | 1075 | const wxString& GetHelpString() const; |
1c4293cb | 1076 | |
bb6720bb JS |
1077 | /** |
1078 | Returns position in parent's array. | |
1079 | */ | |
1080 | unsigned int GetIndexInParent() const; | |
1c4293cb | 1081 | |
bb6720bb | 1082 | /** Returns property's label. */ |
0ad10f30 | 1083 | const wxString& GetLabel() const; |
1c4293cb | 1084 | |
bb6720bb JS |
1085 | /** |
1086 | Returns last visible child property, recursively. | |
1c4293cb | 1087 | */ |
bb6720bb | 1088 | const wxPGProperty* GetLastVisibleSubItem() const; |
1c4293cb | 1089 | |
bb6720bb JS |
1090 | /** |
1091 | Returns highest level non-category, non-root parent. Useful when you | |
17e3ad2a | 1092 | have nested properties with children. |
1c4293cb | 1093 | |
bb6720bb JS |
1094 | @remarks If immediate parent is root or category, this will return the |
1095 | property itself. | |
1096 | */ | |
1097 | wxPGProperty* GetMainParent() const; | |
1c4293cb | 1098 | |
bb6720bb | 1099 | /** Returns maximum allowed length of property's text value. |
1c4293cb | 1100 | */ |
0ad10f30 | 1101 | int GetMaxLength() const; |
1c4293cb | 1102 | |
bb6720bb JS |
1103 | /** Returns property's name with all (non-category, non-root) parents. */ |
1104 | wxString GetName() const; | |
1105 | ||
1106 | /** Return parent of property */ | |
0ad10f30 | 1107 | wxPGProperty* GetParent() const; |
bb6720bb JS |
1108 | |
1109 | /** | |
0ad10f30 | 1110 | Returns (direct) child property with given name (or @NULL if not found). |
1c4293cb | 1111 | */ |
bb6720bb JS |
1112 | wxPGProperty* GetPropertyByName( const wxString& name ) const; |
1113 | ||
1114 | /** Gets assignable version of property's validator. */ | |
1115 | wxValidator* GetValidator() const; | |
1c4293cb | 1116 | |
bb6720bb JS |
1117 | /** |
1118 | Returns property's value. | |
1119 | */ | |
0ad10f30 | 1120 | wxVariant GetValue() const; |
1c4293cb | 1121 | |
bb6720bb | 1122 | /** |
0ad10f30 | 1123 | Returns bitmap that appears next to value text. Only returns non-@NULL |
bb6720bb JS |
1124 | bitmap if one was set with SetValueImage(). |
1125 | */ | |
1126 | wxBitmap* GetValueImage() const; | |
1c4293cb | 1127 | |
1425eca5 JS |
1128 | /** Returns text representation of property's value. |
1129 | ||
1130 | @param argFlags | |
1131 | If 0 (default value), then displayed string is returned. | |
1132 | If wxPG_FULL_VALUE is set, returns complete, storable string value | |
1133 | instead of displayable. If wxPG_EDITABLE_VALUE is set, returns | |
1134 | string value that must be editable in textctrl. If | |
1135 | wxPG_COMPOSITE_FRAGMENT is set, returns text that is appropriate to | |
1136 | display as a part of string property's composite text | |
1137 | representation. | |
1138 | ||
1139 | @remarks In older versions, this function used to be overridden to convert | |
1140 | property's value into a string representation. This function is | |
1141 | now handled by ValueToString(), and overriding this function now | |
1142 | will result in run-time assertion failure. | |
1143 | */ | |
1144 | virtual wxString GetValueAsString( int argFlags = 0 ) const; | |
1145 | ||
1146 | /** Synonymous to GetValueAsString(). | |
1147 | ||
1148 | @deprecated Use GetValueAsString() instead. | |
bb6720bb JS |
1149 | |
1150 | @see GetValueAsString() | |
1151 | */ | |
1425eca5 | 1152 | wxDEPRECATED( wxString GetValueString( int argFlags = 0 ) const ); |
bb6720bb JS |
1153 | |
1154 | /** | |
1155 | Returns value type used by this property. | |
1156 | */ | |
0ad10f30 | 1157 | wxString GetValueType() const; |
1c4293cb | 1158 | |
bb6720bb JS |
1159 | /** |
1160 | Returns coordinate to the top y of the property. Note that the | |
1161 | position of scrollbars is not taken into account. | |
1c4293cb | 1162 | */ |
bb6720bb | 1163 | int GetY() const; |
1c4293cb | 1164 | |
bb6720bb | 1165 | /** |
0ad10f30 | 1166 | Returns @true if property has even one visible child. |
1c4293cb VZ |
1167 | */ |
1168 | bool HasVisibleChildren() const; | |
1169 | ||
bb6720bb JS |
1170 | /** |
1171 | Hides or reveals the property. | |
1172 | ||
1173 | @param hide | |
1174 | @true for hide, @false for reveal. | |
1175 | ||
1176 | @param flags | |
1177 | By default changes are applied recursively. Set this parameter wxPG_DONT_RECURSE to prevent this. | |
1178 | */ | |
1179 | bool Hide( bool hide, int flags = wxPG_RECURSE ); | |
1180 | ||
1181 | /** | |
1182 | Returns index of given child property. wxNOT_FOUND if | |
1183 | given property is not child of this. | |
1184 | */ | |
1185 | int Index( const wxPGProperty* p ) const; | |
1186 | ||
48a32cf6 JS |
1187 | /** |
1188 | Use this member function to add independent (ie. regular) children to | |
1189 | a property. | |
1190 | ||
1191 | @return Inserted childProperty. | |
1192 | ||
1193 | @remarks wxPropertyGrid is not automatically refreshed by this | |
1194 | function. | |
1195 | ||
1196 | @see AppendChild(), AddPrivateChild() | |
1197 | */ | |
1198 | wxPGProperty* InsertChild( int index, wxPGProperty* childProperty ); | |
1199 | ||
bb6720bb JS |
1200 | /** |
1201 | Inserts a new choice to property's list of choices. | |
939d9364 JS |
1202 | |
1203 | @param label | |
1204 | Text for new choice | |
1205 | ||
1206 | @param index | |
1207 | Insertion position. Use wxNOT_FOUND to append. | |
1208 | ||
1209 | @param value | |
1210 | Value for new choice. Do not specify if you wish this | |
1211 | to equal choice index. | |
1c4293cb VZ |
1212 | */ |
1213 | int InsertChoice( const wxString& label, int index, int value = wxPG_INVALID_VALUE ); | |
1214 | ||
bb6720bb JS |
1215 | /** |
1216 | Returns @true if this property is actually a wxPropertyCategory. | |
1c4293cb | 1217 | */ |
bb6720bb | 1218 | bool IsCategory() const; |
1c4293cb | 1219 | |
bb6720bb JS |
1220 | /** |
1221 | Returns @true if property is enabled. | |
1c4293cb | 1222 | */ |
bb6720bb | 1223 | bool IsEnabled() const; |
1c4293cb | 1224 | |
bb6720bb JS |
1225 | /** |
1226 | Returns @true if property has visible children. | |
1c4293cb | 1227 | */ |
bb6720bb | 1228 | bool IsExpanded() const; |
1c4293cb | 1229 | |
bb6720bb JS |
1230 | /** |
1231 | Returns @true if this property is actually a wxRootProperty. | |
1c4293cb | 1232 | */ |
0ad10f30 | 1233 | bool IsRoot() const; |
1c4293cb | 1234 | |
bb6720bb JS |
1235 | /** |
1236 | Returns @true if candidateParent is some parent of this property. | |
1c4293cb | 1237 | */ |
bb6720bb | 1238 | bool IsSomeParent( wxPGProperty* candidateParent ) const; |
1c4293cb | 1239 | |
bb6720bb JS |
1240 | /** |
1241 | Returns true if property has editable wxTextCtrl when selected. | |
1c4293cb | 1242 | |
bb6720bb JS |
1243 | @remarks Altough disabled properties do not displayed editor, they still |
1244 | return @true here as being disabled is considered a temporary | |
1245 | condition (unlike being read-only or having limited editing enabled). | |
1c4293cb | 1246 | */ |
bb6720bb | 1247 | bool IsTextEditable() const; |
1c4293cb | 1248 | |
bb6720bb JS |
1249 | /** |
1250 | Returns @true if property's value is considered unspecified. This | |
1251 | usually means that value is Null variant. | |
1c4293cb | 1252 | */ |
bb6720bb | 1253 | bool IsValueUnspecified() const; |
1c4293cb | 1254 | |
bb6720bb JS |
1255 | /** |
1256 | Returns true if all parents expanded. | |
1c4293cb | 1257 | */ |
bb6720bb | 1258 | bool IsVisible() const; |
1c4293cb | 1259 | |
bb6720bb JS |
1260 | /** |
1261 | Returns child property at index i. | |
1c4293cb | 1262 | */ |
68bcfd2c | 1263 | wxPGProperty* Item( unsigned int i ) const; |
1c4293cb | 1264 | |
bb6720bb JS |
1265 | /** |
1266 | If property's editor is active, then update it's value. | |
1c4293cb VZ |
1267 | */ |
1268 | void RefreshEditor(); | |
1269 | ||
bb6720bb JS |
1270 | /** |
1271 | Sets an attribute for this property. | |
1272 | ||
1c4293cb | 1273 | @param name |
bb6720bb JS |
1274 | Text identifier of attribute. See @ref propgrid_property_attributes. |
1275 | ||
1c4293cb | 1276 | @param value |
bb6720bb | 1277 | Value of attribute. |
1802a91d JS |
1278 | |
1279 | @remarks Setting attribute's value to Null variant will simply remove it | |
1280 | from property's set of attributes. | |
1c4293cb VZ |
1281 | */ |
1282 | void SetAttribute( const wxString& name, wxVariant value ); | |
1283 | ||
d7e2b522 JS |
1284 | /** |
1285 | Sets property's background colour. | |
1286 | ||
1287 | @param colour | |
1288 | Background colour to use. | |
1289 | ||
1290 | @param recursively | |
1291 | If @true, children are affected recursively, and any categories | |
1292 | are not. | |
1293 | */ | |
1294 | void SetBackgroundColour( const wxColour& colour, | |
1295 | bool recursively = false ); | |
1296 | ||
bb6720bb JS |
1297 | /** |
1298 | Sets editor for a property. | |
1c4293cb VZ |
1299 | |
1300 | @param editor | |
bb6720bb JS |
1301 | For builtin editors, use wxPGEditor_X, where X is builtin editor's |
1302 | name (TextCtrl, Choice, etc. see wxPGEditor documentation for full list). | |
1c4293cb VZ |
1303 | |
1304 | For custom editors, use pointer you received from wxPropertyGrid::RegisterEditorClass(). | |
1305 | */ | |
bb6720bb | 1306 | void SetEditor( const wxPGEditor* editor ); |
1c4293cb | 1307 | |
bb6720bb JS |
1308 | /** |
1309 | Sets editor for a property, by editor name. | |
1c4293cb | 1310 | */ |
bb6720bb | 1311 | void SetEditor( const wxString& editorName ); |
1c4293cb | 1312 | |
bb6720bb JS |
1313 | /** |
1314 | Sets cell information for given column. | |
1c4293cb | 1315 | */ |
d7e2b522 | 1316 | void SetCell( int column, const wxPGCell& cell ); |
1c4293cb | 1317 | |
bb6720bb JS |
1318 | /** |
1319 | Sets new set of choices for property. | |
1c4293cb | 1320 | |
bb6720bb | 1321 | @remarks This operation clears the property value. |
1c4293cb | 1322 | */ |
bb6720bb | 1323 | bool SetChoices( wxPGChoices& choices ); |
1c4293cb | 1324 | |
bb6720bb JS |
1325 | /** |
1326 | Sets client data (void*) of a property. | |
1c4293cb | 1327 | |
bb6720bb | 1328 | @remarks This untyped client data has to be deleted manually. |
1c4293cb | 1329 | */ |
bb6720bb | 1330 | void SetClientData( void* clientData ); |
1c4293cb | 1331 | |
bb6720bb JS |
1332 | /** Returns client object of a property. |
1333 | */ | |
1334 | void SetClientObject(wxClientData* clientObject); | |
1c4293cb | 1335 | |
bb6720bb JS |
1336 | /** |
1337 | Sets selected choice and changes property value. | |
1c4293cb | 1338 | |
bb6720bb JS |
1339 | Tries to retain value type, although currently if it is not string, |
1340 | then it is forced to integer. | |
1c4293cb | 1341 | */ |
bb6720bb | 1342 | void SetChoiceSelection( int newValue ); |
1c4293cb | 1343 | |
0ce8e27f JS |
1344 | /** Set default value of a property. Synonymous to |
1345 | ||
1346 | @code | |
1347 | SetAttribute("DefaultValue", value); | |
1348 | @endcode | |
1349 | */ | |
1350 | void SetDefaultValue( wxVariant& value ); | |
1351 | ||
bb6720bb JS |
1352 | /** |
1353 | Sets property's help string, which is shown, for example, in | |
1354 | wxPropertyGridManager's description text box. | |
1c4293cb | 1355 | */ |
bb6720bb | 1356 | void SetHelpString( const wxString& helpString ); |
1c4293cb | 1357 | |
bb6720bb JS |
1358 | /** |
1359 | Sets property's label. | |
1c4293cb | 1360 | |
bb6720bb JS |
1361 | @remarks Properties under same parent may have same labels. However, |
1362 | property names must still remain unique. | |
258ccb95 | 1363 | */ |
0ad10f30 | 1364 | void SetLabel( const wxString& label ); |
1c4293cb | 1365 | |
bb6720bb JS |
1366 | /** |
1367 | Set max length of text in text editor. | |
1c4293cb | 1368 | */ |
bb6720bb | 1369 | bool SetMaxLength( int maxLen ); |
1c4293cb | 1370 | |
bb6720bb JS |
1371 | /** |
1372 | Sets property's "is it modified?" flag. Affects children recursively. | |
1c4293cb | 1373 | */ |
bb6720bb | 1374 | void SetModifiedStatus( bool modified ); |
1c4293cb | 1375 | |
bb6720bb JS |
1376 | /** |
1377 | Sets new (base) name for property. | |
1c4293cb | 1378 | */ |
bb6720bb | 1379 | void SetName( const wxString& newName ); |
1c4293cb | 1380 | |
2fd4a524 JS |
1381 | /** |
1382 | Changes what sort of parent this property is for its children. | |
1383 | ||
1384 | @param flag | |
1385 | Use one of the following values: wxPG_PROP_MISC_PARENT (for generic | |
1386 | parents), wxPG_PROP_CATEGORY (for categories), or | |
1387 | wxPG_PROP_AGGREGATE (for derived property classes with private | |
1388 | children). | |
1389 | ||
48a32cf6 | 1390 | @remarks You generally do not need to call this function. |
2fd4a524 JS |
1391 | */ |
1392 | void SetParentalType( int flag ); | |
1393 | ||
d7e2b522 JS |
1394 | /** |
1395 | Sets property's text colour. | |
1396 | ||
1397 | @param colour | |
1398 | Text colour to use. | |
1399 | ||
1400 | @param recursively | |
1401 | If @true, children are affected recursively, and any categories | |
1402 | are not. | |
1403 | */ | |
1404 | void SetTextColour( const wxColour& colour, | |
1405 | bool recursively = false ); | |
1406 | ||
bb6720bb JS |
1407 | /** Sets wxValidator for a property */ |
1408 | void SetValidator( const wxValidator& validator ); | |
1c4293cb | 1409 | |
bb6720bb JS |
1410 | /** |
1411 | Call this to set value of the property. Unlike methods in wxPropertyGrid, | |
1412 | this does not automatically update the display. | |
1c4293cb VZ |
1413 | |
1414 | @remarks | |
bb6720bb JS |
1415 | Use wxPropertyGrid::ChangePropertyValue() instead if you need to run through |
1416 | validation process and send property change event. | |
1c4293cb | 1417 | |
bb6720bb JS |
1418 | If you need to change property value in event, based on user input, use |
1419 | SetValueInEvent() instead. | |
1c4293cb | 1420 | |
0ad10f30 FM |
1421 | @param value |
1422 | The value to set. | |
bb6720bb JS |
1423 | @param pList |
1424 | Pointer to list variant that contains child values. Used to indicate | |
0ad10f30 | 1425 | which children should be marked as modified. Usually you just use @NULL. |
bb6720bb | 1426 | @param flags |
e777bd14 JS |
1427 | wxPG_SETVAL_REFRESH_EDITOR is set by default, to refresh editor |
1428 | and redraw properties. | |
1c4293cb | 1429 | */ |
e777bd14 JS |
1430 | void SetValue( wxVariant value, wxVariant* pList = NULL, |
1431 | int flags = wxPG_SETVAL_REFRESH_EDITOR ); | |
1c4293cb | 1432 | |
bb6720bb JS |
1433 | /** |
1434 | Set wxBitmap in front of the value. This bitmap may be ignored | |
1435 | by custom cell renderers. | |
1c4293cb | 1436 | */ |
bb6720bb | 1437 | void SetValueImage( wxBitmap& bmp ); |
1c4293cb | 1438 | |
bb6720bb JS |
1439 | /** |
1440 | Call this function in OnEvent(), OnButtonClick() etc. to change the | |
1441 | property value based on user input. | |
939d9364 | 1442 | |
bb6720bb JS |
1443 | @remarks This method is const since it doesn't actually modify value, but posts |
1444 | given variant as pending value, stored in wxPropertyGrid. | |
1c4293cb | 1445 | */ |
bb6720bb | 1446 | void SetValueInEvent( wxVariant value ) const; |
1c4293cb | 1447 | |
bb6720bb JS |
1448 | /** |
1449 | Sets property's value to unspecified (ie. Null variant). | |
1c4293cb | 1450 | */ |
bb6720bb | 1451 | void SetValueToUnspecified(); |
1c4293cb | 1452 | |
bb6720bb JS |
1453 | /** |
1454 | Call with @false in OnSetValue() to cancel value changes after all | |
1455 | (ie. cancel @true returned by StringToValue() or IntToValue()). | |
1456 | */ | |
1457 | void SetWasModified( bool set = true ); | |
1c4293cb | 1458 | |
bb6720bb JS |
1459 | /** |
1460 | Updates composed values of parent non-category properties, recursively. | |
1461 | Returns topmost property updated. | |
1462 | */ | |
1463 | wxPGProperty* UpdateParentValues(); | |
1c4293cb | 1464 | |
bb6720bb | 1465 | /** |
0ad10f30 | 1466 | Returns @true if containing grid uses wxPG_EX_AUTO_UNSPECIFIED_VALUES. |
1c4293cb | 1467 | */ |
bb6720bb | 1468 | bool UsesAutoUnspecified() const; |
1c4293cb VZ |
1469 | }; |
1470 | ||
1471 | ||
0ad10f30 FM |
1472 | /** |
1473 | @class wxPGChoices | |
1c4293cb VZ |
1474 | |
1475 | Helper class for managing choices of wxPropertyGrid properties. | |
e1ef506e JS |
1476 | Each entry can have label, value, bitmap, text colour, and background |
1477 | colour. | |
16372f0d | 1478 | |
e1ef506e JS |
1479 | wxPGChoices uses reference counting, similar to other wxWidgets classes. |
1480 | This means that assignment operator and copy constructor only copy the | |
1481 | reference and not the actual data. Use Copy() member function to create a | |
1482 | real copy. | |
1483 | ||
1484 | @remarks If you do not specify value for entry, index is used. | |
1c4293cb VZ |
1485 | |
1486 | @library{wxpropgrid} | |
1487 | @category{propgrid} | |
1488 | */ | |
1489 | class WXDLLIMPEXP_PROPGRID wxPGChoices | |
1490 | { | |
1491 | public: | |
1492 | typedef long ValArrItem; | |
1493 | ||
bb6720bb JS |
1494 | /** |
1495 | Default constructor. | |
1496 | */ | |
1497 | wxPGChoices(); | |
1c4293cb | 1498 | |
e1ef506e JS |
1499 | /** |
1500 | Copy constructor, uses reference counting. To create a real copy, | |
1501 | use Copy() member function instead. | |
1502 | */ | |
bb6720bb | 1503 | wxPGChoices( const wxPGChoices& a ); |
1c4293cb VZ |
1504 | |
1505 | /** Constructor. */ | |
bb6720bb | 1506 | wxPGChoices( const wxChar** labels, const long* values = NULL ); |
1c4293cb VZ |
1507 | |
1508 | /** Constructor. */ | |
bb6720bb | 1509 | wxPGChoices( const wxArrayString& labels, const wxArrayInt& values = wxArrayInt() ); |
1c4293cb | 1510 | |
bb6720bb JS |
1511 | /** Constructor. */ |
1512 | wxPGChoices( wxPGChoicesData* data ); | |
1c4293cb VZ |
1513 | |
1514 | /** Destructor. */ | |
bb6720bb | 1515 | ~wxPGChoices(); |
1c4293cb | 1516 | |
bb6720bb JS |
1517 | /** |
1518 | Adds to current. If did not have own copies, creates them now. If was empty, | |
1c4293cb VZ |
1519 | identical to set except that creates copies. |
1520 | */ | |
1521 | void Add( const wxChar** labels, const ValArrItem* values = NULL ); | |
1522 | ||
1523 | /** Version that works with wxArrayString. */ | |
1524 | void Add( const wxArrayString& arr, const ValArrItem* values = NULL ); | |
1525 | ||
1526 | /** Version that works with wxArrayString and wxArrayInt. */ | |
1527 | void Add( const wxArrayString& arr, const wxArrayInt& arrint ); | |
1528 | ||
1529 | /** Adds single item. */ | |
1530 | wxPGChoiceEntry& Add( const wxString& label, int value = wxPG_INVALID_VALUE ); | |
1531 | ||
1532 | /** Adds a single item, with bitmap. */ | |
bb6720bb JS |
1533 | wxPGChoiceEntry& Add( const wxString& label, const wxBitmap& bitmap, |
1534 | int value = wxPG_INVALID_VALUE ); | |
1c4293cb VZ |
1535 | |
1536 | /** Adds a single item with full entry information. */ | |
0ad10f30 | 1537 | wxPGChoiceEntry& Add( const wxPGChoiceEntry& entry ); |
1c4293cb | 1538 | |
bb6720bb | 1539 | /** Adds single item, sorted. */ |
1c4293cb VZ |
1540 | wxPGChoiceEntry& AddAsSorted( const wxString& label, int value = wxPG_INVALID_VALUE ); |
1541 | ||
bb6720bb | 1542 | /** |
e1ef506e JS |
1543 | Assigns choices data, using reference counting. To create a real copy, |
1544 | use Copy() member function instead. | |
bb6720bb | 1545 | */ |
0ad10f30 | 1546 | void Assign( const wxPGChoices& a ); |
1c4293cb | 1547 | |
bb6720bb JS |
1548 | /** |
1549 | Assigns data from another set of choices. | |
1550 | */ | |
1c4293cb VZ |
1551 | void AssignData( wxPGChoicesData* data ); |
1552 | ||
bb6720bb JS |
1553 | /** |
1554 | Deletes all items. | |
1555 | */ | |
0ad10f30 | 1556 | void Clear(); |
1c4293cb | 1557 | |
e1ef506e JS |
1558 | /** |
1559 | Returns a real copy of the choices. | |
1560 | */ | |
1561 | wxPGChoices Copy() const; | |
1562 | ||
bb6720bb JS |
1563 | /** |
1564 | Returns labe of item. | |
1565 | */ | |
68bcfd2c | 1566 | const wxString& GetLabel( unsigned int ind ) const; |
1c4293cb | 1567 | |
bb6720bb JS |
1568 | /** |
1569 | Returns number of items. | |
1570 | */ | |
68bcfd2c | 1571 | unsigned int GetCount() const; |
1c4293cb | 1572 | |
bb6720bb JS |
1573 | /** |
1574 | Returns value of item; | |
1575 | */ | |
68bcfd2c | 1576 | int GetValue( unsigned int ind ) const; |
1c4293cb | 1577 | |
bb6720bb JS |
1578 | /** |
1579 | Returns array of values matching the given strings. Unmatching strings | |
1c4293cb VZ |
1580 | result in wxPG_INVALID_VALUE entry in array. |
1581 | */ | |
1582 | wxArrayInt GetValuesForStrings( const wxArrayString& strings ) const; | |
1583 | ||
bb6720bb JS |
1584 | /** |
1585 | Returns array of indices matching given strings. Unmatching strings | |
0ad10f30 | 1586 | are added to 'unmatched', if not @NULL. |
1c4293cb | 1587 | */ |
bb6720bb JS |
1588 | wxArrayInt GetIndicesForStrings( const wxArrayString& strings, |
1589 | wxArrayString* unmatched = NULL ) const; | |
1c4293cb | 1590 | |
14bac4b5 JS |
1591 | /** Returns property at given virtual y coordinate. |
1592 | */ | |
1593 | wxPGProperty* GetItemAtY( unsigned int y ) const; | |
1594 | ||
bb6720bb JS |
1595 | /** |
1596 | Returns @true if item at given index has a valid value; | |
1c4293cb | 1597 | */ |
bb6720bb | 1598 | bool HasValue( unsigned int i ) const; |
1c4293cb | 1599 | |
bb6720bb JS |
1600 | /** |
1601 | Returns index of item with given label. | |
1602 | */ | |
1603 | int Index( const wxString& label ) const; | |
1c4293cb | 1604 | |
bb6720bb JS |
1605 | /** |
1606 | Returns index of item with given value. | |
1607 | */ | |
1c4293cb VZ |
1608 | int Index( int val ) const; |
1609 | ||
bb6720bb JS |
1610 | /** |
1611 | Inserts single item. | |
1612 | */ | |
1c4293cb VZ |
1613 | wxPGChoiceEntry& Insert( const wxString& label, int index, int value = wxPG_INVALID_VALUE ); |
1614 | ||
bb6720bb JS |
1615 | /** |
1616 | Inserts a single item with full entry information. | |
1617 | */ | |
1c4293cb VZ |
1618 | wxPGChoiceEntry& Insert( const wxPGChoiceEntry& entry, int index ); |
1619 | ||
bb6720bb | 1620 | /** |
0ad10f30 | 1621 | Returns @false if this is a constant empty set of choices, |
1c4293cb VZ |
1622 | which should not be modified. |
1623 | */ | |
0ad10f30 | 1624 | bool IsOk() const; |
1c4293cb | 1625 | |
bb6720bb JS |
1626 | /** |
1627 | Returns item at given index. | |
1628 | */ | |
0ad10f30 | 1629 | const wxPGChoiceEntry& Item( unsigned int i ) const; |
1c4293cb | 1630 | |
bb6720bb JS |
1631 | /** |
1632 | Returns item at given index. | |
1633 | */ | |
0ad10f30 | 1634 | wxPGChoiceEntry& Item( unsigned int i ); |
1c4293cb | 1635 | |
bb6720bb JS |
1636 | /** |
1637 | Removes count items starting at position nIndex. | |
1638 | */ | |
1c4293cb VZ |
1639 | void RemoveAt(size_t nIndex, size_t count = 1); |
1640 | ||
bb6720bb JS |
1641 | /** |
1642 | Sets contents from lists of strings and values. | |
1c4293cb | 1643 | */ |
bb6720bb | 1644 | void Set( const wxChar** labels, const long* values = NULL ); |
1c4293cb | 1645 | |
bb6720bb JS |
1646 | /** |
1647 | Sets contents from lists of strings and values. | |
1648 | */ | |
1649 | void Set( const wxArrayString& labels, const wxArrayInt& values = wxArrayInt() ); | |
1c4293cb | 1650 | |
bb6720bb JS |
1651 | /** |
1652 | Creates exclusive copy of current choices. | |
1653 | */ | |
2728c3bf | 1654 | void AllocExclusive(); |
1c4293cb | 1655 | |
bb6720bb JS |
1656 | /** |
1657 | Returns array of choice labels. | |
1658 | */ | |
1c4293cb VZ |
1659 | wxArrayString GetLabels() const; |
1660 | ||
0ad10f30 | 1661 | void operator= (const wxPGChoices& a); |
1c4293cb | 1662 | |
0ad10f30 FM |
1663 | wxPGChoiceEntry& operator[](unsigned int i); |
1664 | const wxPGChoiceEntry& operator[](unsigned int i) const; | |
1c4293cb VZ |
1665 | }; |
1666 | ||
1667 | // ----------------------------------------------------------------------- |