]> git.saurik.com Git - wxWidgets.git/blame - interface/wx/propgrid/propgridiface.h
wxSocket::Initialize() and Shutdown() are for main thread only.
[wxWidgets.git] / interface / wx / propgrid / propgridiface.h
CommitLineData
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
effb029c
JS
11/**
12 @class wxPropertyGridInterface
1c4293cb
VZ
13
14 Most of the shared property manipulation interface shared by wxPropertyGrid,
15 wxPropertyGridPage, and wxPropertyGridManager is defined in this class.
16
17 @remarks
effb029c
JS
18 - In separate wxPropertyGrid component this class was known as
19 wxPropertyContainerMethods.
1c4293cb 20
bba3f9b5
JS
21 - wxPropertyGridInterface's property operation member functions all accept
22 a special wxPGPropArg id argument, using which you can refer to properties
23 either by their pointer (for performance) or by their name (for conveniency).
24
1c4293cb
VZ
25 @library{wxpropgrid}
26 @category{propgrid}
27*/
28class WXDLLIMPEXP_PROPGRID wxPropertyGridInterface
29{
30public:
31
32 /** Destructor */
33 virtual ~wxPropertyGridInterface() { }
34
effb029c
JS
35 /**
36 Appends property to the list. wxPropertyGrid assumes ownership of the
37 object. Becomes child of most recently added category.
38
1c4293cb
VZ
39 @remarks
40 - wxPropertyGrid takes the ownership of the property pointer.
effb029c
JS
41 - If appending a category with name identical to a category already in
42 the wxPropertyGrid, then newly created category is deleted, and most
43 recently added category (under which properties are appended) is set
44 to the one with same name. This allows easier adding of items to same
45 categories in multiple passes.
46 - Does not automatically redraw the control, so you may need to call
47 Refresh() when calling this function after control has been shown for
48 the first time.
1621f192
JS
49 - This functions deselects selected property, if any. Validation
50 failure option wxPG_VFB_STAY_IN_PROPERTY is not respected, ie.
51 selection is cleared even if editor had invalid value.
1c4293cb
VZ
52 */
53 wxPGProperty* Append( wxPGProperty* property );
54
effb029c
JS
55 /**
56 Same as Append(), but appends under given parent property.
57
58 @param id
59 Name or pointer to parent property.
60
61 @param newProperty
62 Property to be added.
63 */
64 wxPGProperty* AppendIn( wxPGPropArg id, wxPGProperty* newProperty );
65
66 /**
67 In order to add new items into a property with private children (for
0ad10f30
FM
68 instance, wxFlagsProperty), you need to call this method.
69 After populating has been finished, you need to call EndAddChildren().
1c4293cb 70
effb029c 71 @see EndAddChildren()
1c4293cb
VZ
72 */
73 void BeginAddChildren( wxPGPropArg id );
74
effb029c
JS
75 /**
76 Deletes all properties.
1621f192
JS
77
78 @remarks This functions deselects selected property, if any. Validation
79 failure option wxPG_VFB_STAY_IN_PROPERTY is not respected, ie.
80 selection is cleared even if editor had invalid value.
1c4293cb
VZ
81 */
82 virtual void Clear() = 0;
83
effb029c 84 /**
1621f192
JS
85 Clears current selection, if any.
86
87 @param validation
88 If set to @false, deselecting the property will always work,
89 even if its editor had invalid value in it.
effb029c 90
1621f192
JS
91 @return Returns @true if successful or if there was no selection. May
92 fail if validation was enabled and active editor had invalid
93 value.
01b5ad3b
JS
94
95 @remarks In wxPropertyGrid 1.4, this member function used to send
96 wxPG_EVT_SELECTED. In wxWidgets 2.9 and later, it no longer
97 does that.
98
99 @see wxPropertyGrid::SelectProperty()
effb029c 100 */
1621f192 101 bool ClearSelection( bool validation = false);
1c4293cb 102
effb029c
JS
103 /**
104 Resets modified status of all properties.
1c4293cb 105 */
effb029c
JS
106 void ClearModifiedStatus();
107
108 /**
109 Collapses given category or property with children.
1c4293cb 110
effb029c 111 @return Returns @true if actually collapsed.
1621f192
JS
112
113 @remarks This function may deselect selected property, if any. Validation
114 failure option wxPG_VFB_STAY_IN_PROPERTY is not respected, ie.
115 selection is cleared even if editor had invalid value.
1c4293cb
VZ
116 */
117 bool Collapse( wxPGPropArg id );
118
effb029c
JS
119 /**
120 Collapses all items that can be collapsed.
1c4293cb 121
1621f192
JS
122 @remarks This functions clears selection. Validation failure option
123 wxPG_VFB_STAY_IN_PROPERTY is not respected, ie. selection
124 is cleared even if editor had invalid value.
1c4293cb 125 */
effb029c 126 bool CollapseAll();
1c4293cb 127
effb029c
JS
128 /**
129 Changes value of a property, as if by user. Use this instead of
130 SetPropertyValue() if you need the value to run through validation
131 process, and also send the property change event.
1c4293cb 132
effb029c 133 @return Returns @true if value was successfully changed.
1c4293cb
VZ
134 */
135 bool ChangePropertyValue( wxPGPropArg id, wxVariant newValue );
136
effb029c
JS
137 /**
138 Deletes a property.
1621f192
JS
139
140 @remarks This functions deselects selected property, if any. Validation
141 failure option wxPG_VFB_STAY_IN_PROPERTY is not respected, ie.
142 selection is cleared even if editor had invalid value.
effb029c 143 */
1c4293cb
VZ
144 void DeleteProperty( wxPGPropArg id );
145
effb029c
JS
146 /**
147 Disables a property.
148 */
149 bool DisableProperty( wxPGPropArg id );
1c4293cb 150
effb029c 151 /**
0ad10f30
FM
152 Returns @true if all property grid data changes have been committed. Usually
153 only returns @false if value in active editor has been invalidated by a
1c4293cb
VZ
154 wxValidator.
155 */
156 bool EditorValidate();
157
effb029c
JS
158 /**
159 Enables or disables property.
160
161 @param id
162 Name or pointer to a property.
effb029c
JS
163 @param enable
164 If @false, property is disabled instead.
165 */
1c4293cb
VZ
166 bool EnableProperty( wxPGPropArg id, bool enable = true );
167
effb029c
JS
168 /**
169 Called after population of property with fixed children has finished.
170
171 @see BeginAddChildren()
1c4293cb
VZ
172 */
173 void EndAddChildren( wxPGPropArg id );
174
effb029c
JS
175 /**
176 Expands given category or property with children.
177
178 @return Returns @true if actually expanded.
1621f192
JS
179
180 @remarks This function may deselect selected property, if any. Validation
181 failure option wxPG_VFB_STAY_IN_PROPERTY is not respected, ie.
182 selection is cleared even if editor had invalid value.
1c4293cb
VZ
183 */
184 bool Expand( wxPGPropArg id );
185
effb029c
JS
186 /**
187 Expands all items that can be expanded.
1621f192
JS
188
189 @remarks This functions clears selection. Validation failure option
190 wxPG_VFB_STAY_IN_PROPERTY is not respected, ie. selection
191 is cleared even if editor had invalid value.
1c4293cb
VZ
192 */
193 bool ExpandAll( bool expand = true );
194
effb029c
JS
195 /**
196 Returns id of first child of given property.
1c4293cb 197
effb029c
JS
198 @remarks Does not return private children!
199 */
200 wxPGProperty* GetFirstChild( wxPGPropArg id );
1c4293cb
VZ
201
202 //@{
0ad10f30
FM
203 /**
204 Returns iterator class instance.
bba3f9b5 205
1c4293cb 206 @param flags
bba3f9b5
JS
207 See @ref propgrid_iterator_flags. Value wxPG_ITERATE_DEFAULT causes
208 iteration over everything except private child properties.
1c4293cb 209 @param firstProp
0ad10f30 210 Property to start iteration from. If @NULL, then first child of root
effb029c 211 is used.
bba3f9b5 212
0ad10f30
FM
213 @beginWxPythonOnly
214 <b>wxPython Note:</b> Instead of ++ operator, use Next() method, and
215 instead of * operator, use GetProperty() method.
216 @endWxPythonOnly
217 */
218 wxPropertyGridIterator GetIterator( int flags = wxPG_ITERATE_DEFAULT,
219 wxPGProperty* firstProp = NULL );
220 wxPropertyGridConstIterator GetIterator( int flags = wxPG_ITERATE_DEFAULT,
221 wxPGProperty* firstProp = NULL ) const;
222 //@}
223
224 //@{
225 /**
226 Returns iterator class instance.
227
228 @param flags
229 See @ref propgrid_iterator_flags. Value wxPG_ITERATE_DEFAULT causes
230 iteration over everything except private child properties.
1c4293cb 231 @param startPos
effb029c
JS
232 Either wxTOP or wxBOTTOM. wxTOP will indicate that iterations start
233 from the first property from the top, and wxBOTTOM means that the
234 iteration will instead begin from bottommost valid item.
235
0ad10f30 236 @beginWxPythonOnly
effb029c
JS
237 <b>wxPython Note:</b> Instead of ++ operator, use Next() method, and
238 instead of * operator, use GetProperty() method.
0ad10f30 239 @endWxPythonOnly
effb029c 240 */
effb029c
JS
241 wxPropertyGridIterator GetIterator( int flags, int startPos );
242 wxPropertyGridConstIterator GetIterator( int flags, int startPos ) const;
1c4293cb
VZ
243 //@}
244
effb029c
JS
245 /**
246 Returns id of first item that matches given criteria.
247
1c4293cb 248 @param flags
effb029c 249 See @ref propgrid_iterator_flags.
1c4293cb 250 */
effb029c 251 wxPGProperty* GetFirst( int flags = wxPG_ITERATE_ALL );
1c4293cb 252
effb029c 253 /**
d85635c5
JS
254 Returns pointer to a property with given name (case-sensitive).
255 If there is no property with such name, @NULL pointer is returned.
256
257 @remarks Properties which have non-category, non-root parent
258 can not be accessed globally by their name. Instead, use
259 "<property>.<subproperty>" instead of "<subproperty>".
1c4293cb 260 */
0ad10f30 261 wxPGProperty* GetProperty( const wxString& name ) const;
1c4293cb 262
effb029c 263 /**
0ad10f30
FM
264 Adds to 'targetArr' pointers to properties that have given flags 'flags' set.
265 However, if @a 'inverse' is set to @true, then only properties without
266 given flags are stored.
effb029c 267
0ad10f30
FM
268 @param targetArr
269 @todo docme
1c4293cb 270 @param flags
effb029c 271 Property flags to use.
0ad10f30
FM
272 @param inverse
273 @todo docme
1c4293cb 274 @param iterFlags
effb029c
JS
275 Iterator flags to use. Default is everything expect private children.
276 See @ref propgrid_iterator_flags.
1c4293cb
VZ
277 */
278 void GetPropertiesWithFlag( wxArrayPGProperty* targetArr,
279 wxPGProperty::FlagType flags,
280 bool inverse = false,
281 int iterFlags = (wxPG_ITERATE_PROPERTIES|wxPG_ITERATE_HIDDEN|wxPG_ITERATE_CATEGORIES) ) const;
282
effb029c
JS
283 /**
284 Returns value of given attribute. If none found, returns wxNullVariant.
1c4293cb 285 */
effb029c 286 wxVariant GetPropertyAttribute( wxPGPropArg id, const wxString& attrName ) const;
1c4293cb 287
e2ca6599
JS
288 /**
289 Returns background colour of first cell of a property.
290 */
291 wxColour GetPropertyBackgroundColour( wxPGPropArg id ) const;
292
effb029c
JS
293 /**
294 Returns pointer of property's nearest parent category. If no category
0ad10f30 295 found, returns @NULL.
1c4293cb 296 */
effb029c 297 wxPropertyCategory* GetPropertyCategory( wxPGPropArg id ) const;
1c4293cb
VZ
298
299 /** Returns client data (void*) of a property. */
effb029c 300 void* GetPropertyClientData( wxPGPropArg id ) const;
1c4293cb 301
effb029c 302 /**
0ad10f30 303 Returns first property which label matches given string. @NULL if none
effb029c
JS
304 found. Note that this operation is very slow when compared to
305 GetPropertyByName().
1c4293cb
VZ
306 */
307 wxPGProperty* GetPropertyByLabel( const wxString& label ) const;
308
effb029c 309 /**
d85635c5
JS
310 Returns pointer to a property with given name (case-sensitive).
311 If there is no property with such name, @NULL pointer is returned.
312
313 @remarks Properties which have non-category, non-root parent
314 can not be accessed globally by their name. Instead, use
315 "<property>.<subproperty>" instead of "<subproperty>".
1c4293cb
VZ
316 */
317 wxPGProperty* GetPropertyByName( const wxString& name ) const;
318
effb029c
JS
319 /**
320 Returns child property 'subname' of property 'name'. Same as
1c4293cb
VZ
321 calling GetPropertyByName("name.subname"), albeit slightly faster.
322 */
effb029c
JS
323 wxPGProperty* GetPropertyByName( const wxString& name,
324 const wxString& subname ) const;
1c4293cb 325
effb029c
JS
326 /**
327 Returns property's editor.
328 */
329 const wxPGEditor* GetPropertyEditor( wxPGPropArg id ) const;
1c4293cb 330
effb029c
JS
331 /**
332 Returns help string associated with a property.
333 */
334 wxString GetPropertyHelpString( wxPGPropArg id ) const;
1c4293cb 335
effb029c 336 /**
0ad10f30 337 Returns property's custom value image (@NULL of none).
effb029c
JS
338 */
339 wxBitmap* GetPropertyImage( wxPGPropArg id ) const;
1c4293cb
VZ
340
341 /** Returns label of a property. */
effb029c 342 const wxString& GetPropertyLabel( wxPGPropArg id );
1c4293cb 343
effb029c
JS
344 /** Returns property's name, by which it is globally accessible. */
345 wxString GetPropertyName( wxPGProperty* property );
1c4293cb 346
e2ca6599
JS
347 /**
348 Returns text colour of first cell of a property.
349 */
350 wxColour GetPropertyTextColour( wxPGPropArg id ) const;
351
effb029c
JS
352 /**
353 Returns validator of a property as a reference, which you
1c4293cb
VZ
354 can pass to any number of SetPropertyValidator.
355 */
effb029c 356 wxValidator* GetPropertyValidator( wxPGPropArg id );
1c4293cb 357
effb029c
JS
358 /**
359 Returns property's value as wxVariant.
1c4293cb
VZ
360
361 If property value is unspecified, Null variant is returned.
362 */
effb029c 363 wxVariant GetPropertyValue( wxPGPropArg id );
1c4293cb 364
effb029c
JS
365 /** Return's property's value as wxArrayInt. */
366 wxArrayInt GetPropertyValueAsArrayInt( wxPGPropArg id ) const;
367
368 /** Returns property's value as wxArrayString. */
369 wxArrayString GetPropertyValueAsArrayString( wxPGPropArg id ) const;
370
371 /** Returns property's value as bool */
1c4293cb 372 bool GetPropertyValueAsBool( wxPGPropArg id ) const;
1c4293cb 373
effb029c
JS
374 /** Return's property's value as wxDateTime. */
375 wxDateTime GetPropertyValueAsDateTime( wxPGPropArg id ) const;
1c4293cb 376
effb029c
JS
377 /** Returns property's value as double-precision floating point number. */
378 double GetPropertyValueAsDouble( wxPGPropArg id ) const;
1c4293cb 379
effb029c
JS
380 /** Returns property's value as integer */
381 int GetPropertyValueAsInt( wxPGPropArg id ) const;
1c4293cb 382
effb029c
JS
383 /** Returns property's value as integer */
384 long GetPropertyValueAsLong( wxPGPropArg id ) const;
1c4293cb 385
effb029c
JS
386 /** Returns property's value as native signed 64-bit integer. */
387 wxLongLong_t GetPropertyValueAsLongLong( wxPGPropArg id ) const;
1c4293cb 388
effb029c
JS
389 /**
390 Returns property's value as wxString. If property does not
391 use string value type, then its value is converted using
392 wxPGProperty::GetValueAsString().
393 */
394 wxString GetPropertyValueAsString( wxPGPropArg id ) const;
1c4293cb 395
effb029c
JS
396 /** Returns property's value as unsigned integer */
397 unsigned long GetPropertyValueAsULong( wxPGPropArg id ) const;
1c4293cb 398
effb029c
JS
399 /** Returns property's value as native unsigned 64-bit integer. */
400 wxULongLong_t GetPropertyValueAsULongLong( wxPGPropArg id ) const;
401
402 /**
403 Returns a wxVariant list containing wxVariant versions of all
1c4293cb 404 property values. Order is not guaranteed.
effb029c 405
0ad10f30
FM
406 @param listname
407 @todo docme
408 @param baseparent
409 @todo docme
1c4293cb 410 @param flags
effb029c
JS
411 Use wxPG_KEEP_STRUCTURE to retain category structure; each sub
412 category will be its own wxVariantList of wxVariant.
413
414 Use wxPG_INC_ATTRIBUTES to include property attributes as well.
415 Each attribute will be stored as list variant named
416 "@@<propname>@@attr."
1c4293cb
VZ
417 */
418 wxVariant GetPropertyValues( const wxString& listname = wxEmptyString,
0ad10f30 419 wxPGProperty* baseparent = NULL, long flags = 0 ) const;
1c4293cb 420
fc72fab6
JS
421 /**
422 Returns list of currently selected properties.
423
424 @remarks wxArrayPGProperty should be compatible with std::vector API.
425 */
426 const wxArrayPGProperty& GetSelectedProperties() const;
427
428 /**
429 Returns currently selected property. NULL if none.
430
431 @remarks When wxPG_EX_MULTIPLE_SELECTION extra style is used, this
432 member function returns the focused property, that is the
433 one which can have active editor.
434 */
effb029c 435 wxPGProperty* GetSelection() const;
1c4293cb 436
effb029c
JS
437 /**
438 Similar to GetIterator(), but instead returns wxPGVIterator instance,
1c4293cb
VZ
439 which can be useful for forward-iterating through arbitrary property
440 containers.
441
442 @param flags
bba3f9b5
JS
443 See @ref propgrid_iterator_flags.
444
effb029c
JS
445 <b>wxPython Note:</b> Instead of ++ operator, use Next() method, and
446 instead of * operator, use GetProperty() method.
1c4293cb
VZ
447 */
448 virtual wxPGVIterator GetVIterator( int flags ) const;
449
effb029c
JS
450 /**
451 Hides or reveals a property.
452
0ad10f30
FM
453 @param id
454 @todo docme
1c4293cb 455 @param hide
effb029c 456 If @true, hides property, otherwise reveals it.
1c4293cb 457 @param flags
effb029c
JS
458 By default changes are applied recursively. Set this parameter
459 wxPG_DONT_RECURSE to prevent this.
1c4293cb
VZ
460 */
461 bool HideProperty( wxPGPropArg id, bool hide = true, int flags = wxPG_RECURSE );
462
effb029c
JS
463 /**
464 Initializes *all* property types. Causes references to most object
1c4293cb
VZ
465 files in the library, so calling this may cause significant increase
466 in executable size when linking with static library.
467 */
468 static void InitAllTypeHandlers();
469
0ad10f30
FM
470 /**
471 Inserts property to the property container.
1c4293cb
VZ
472
473 @param priorThis
effb029c
JS
474 New property is inserted just prior to this. Available only
475 in the first variant. There are two versions of this function
476 to allow this parameter to be either an id or name to
477 a property.
effb029c
JS
478 @param newProperty
479 Pointer to the inserted property. wxPropertyGrid will take
480 ownership of this object.
1c4293cb 481
effb029c 482 @return Returns newProperty.
1c4293cb
VZ
483
484 @remarks
485
486 - wxPropertyGrid takes the ownership of the property pointer.
487
488 - While Append may be faster way to add items, make note that when
489 both types of data storage (categoric and
490 non-categoric) are active, Insert becomes even more slow. This is
491 especially true if current mode is non-categoric.
492
1621f192
JS
493 - This functions deselects selected property, if any. Validation
494 failure option wxPG_VFB_STAY_IN_PROPERTY is not respected, ie.
495 selection is cleared even if editor had invalid value.
496
1c4293cb
VZ
497 Example of use:
498
499 @code
500
501 // append category
502 wxPGProperty* my_cat_id = propertygrid->Append( new wxPropertyCategory("My Category") );
503
504 ...
505
506 // insert into category - using second variant
507 wxPGProperty* my_item_id_1 = propertygrid->Insert( my_cat_id, 0, new wxStringProperty("My String 1") );
508
509 // insert before to first item - using first variant
510 wxPGProperty* my_item_id_2 = propertygrid->Insert( my_item_id, new wxStringProperty("My String 2") );
511
512 @endcode
1c4293cb 513 */
effb029c 514 wxPGProperty* Insert( wxPGPropArg priorThis, wxPGProperty* newProperty );
0ad10f30
FM
515
516 /**
517 Inserts property to the property container.
518 See the other overload for more details.
519
520 @param parent
521 New property is inserted under this category. Available only
522 in the second variant. There are two versions of this function
523 to allow this parameter to be either an id or name to
524 a property.
525 @param index
526 Index under category. Available only in the second variant.
527 If index is < 0, property is appended in category.
528 @param newProperty
529 Pointer to the inserted property. wxPropertyGrid will take
530 ownership of this object.
531
532 @return Returns newProperty.
533 */
effb029c 534 wxPGProperty* Insert( wxPGPropArg parent, int index, wxPGProperty* newProperty );
1c4293cb 535
effb029c
JS
536 /** Returns @true if property is a category. */
537 bool IsPropertyCategory( wxPGPropArg id ) const;
1c4293cb 538
effb029c
JS
539 /** Returns @true if property is enabled. */
540 bool IsPropertyEnabled( wxPGPropArg id ) const;
1c4293cb 541
effb029c 542 /**
0ad10f30 543 Returns @true if given property is expanded. Naturally, always returns
effb029c 544 @false for properties that cannot be expanded.
1c4293cb
VZ
545 */
546 bool IsPropertyExpanded( wxPGPropArg id ) const;
547
effb029c
JS
548 /**
549 Returns @true if property has been modified after value set or modify
550 flag clear by software.
1c4293cb 551 */
effb029c 552 bool IsPropertyModified( wxPGPropArg id ) const;
1c4293cb 553
fc72fab6
JS
554 /**
555 Returns true if property is selected.
556 */
557 virtual bool IsPropertySelected( wxPGPropArg id ) const;
558
effb029c 559 /**
0ad10f30 560 Returns @true if property is shown (ie. HideProperty() with @true not
effb029c 561 called for it).
1c4293cb 562 */
effb029c 563 bool IsPropertyShown( wxPGPropArg id ) const;
1c4293cb 564
effb029c 565 /**
0ad10f30 566 Returns @true if property value is set to unspecified.
1c4293cb 567 */
effb029c 568 bool IsPropertyValueUnspecified( wxPGPropArg id ) const;
1c4293cb 569
effb029c
JS
570 /**
571 Disables (limit = @true) or enables (limit = @false) wxTextCtrl editor
572 of a property, if it is not the sole mean to edit the value.
1c4293cb 573 */
effb029c 574 void LimitPropertyEditing( wxPGPropArg id, bool limit = true );
1c4293cb 575
effb029c
JS
576 /**
577 Initializes additional property editors (SpinCtrl etc.). Causes
578 references to most object files in the library, so calling this may
579 cause significant increase in executable size when linking with static
580 library.
1c4293cb
VZ
581 */
582 static void RegisterAdditionalEditors();
583
f915d44b
JS
584 /**
585 Removes and returns a property.
586
587 @param id
588 Pointer or name of a property.
589
590 @remarks Removed property cannot have any children.
591 */
592 wxPGProperty* RemoveProperty( wxPGPropArg id );
593
effb029c
JS
594 /**
595 Replaces property with id with newly created one. For example,
1c4293cb
VZ
596 this code replaces existing property named "Flags" with one that
597 will have different set of items:
effb029c 598
1c4293cb
VZ
599 @code
600 pg->ReplaceProperty("Flags",
601 wxFlagsProperty("Flags", wxPG_LABEL, newItems))
602 @endcode
effb029c
JS
603
604 @see Insert()
1c4293cb
VZ
605 */
606 wxPGProperty* ReplaceProperty( wxPGPropArg id, wxPGProperty* property );
607
effb029c
JS
608 /**
609 @anchor propgridinterface_editablestate_flags
1c4293cb
VZ
610
611 Flags for wxPropertyGridInterface::SaveEditableState() and
612 wxPropertyGridInterface::RestoreEditableState().
613 */
614 enum EditableStateFlags
615 {
616 /** Include selected property. */
617 SelectionState = 0x01,
618 /** Include expanded/collapsed property information. */
619 ExpandedState = 0x02,
620 /** Include scrolled position. */
621 ScrollPosState = 0x04,
effb029c
JS
622 /** Include selected page information. Only applies to
623 wxPropertyGridManager. */
1c4293cb
VZ
624 PageState = 0x08,
625 /** Include splitter position. Stored for each page. */
626 SplitterPosState = 0x10,
62805170
JS
627 /** Include description box size.
628 Only applies to wxPropertyGridManager. */
629 DescBoxState = 0x20,
630
631 /**
632 Include all supported user editable state information.
633 This is usually the default value. */
634 AllStates = SelectionState |
635 ExpandedState |
636 ScrollPosState |
637 PageState |
638 SplitterPosState |
639 DescBoxState
1c4293cb
VZ
640 };
641
effb029c
JS
642 /**
643 Restores user-editable state. See also wxPropertyGridInterface::SaveEditableState().
1c4293cb
VZ
644
645 @param src
646 String generated by SaveEditableState.
647
648 @param restoreStates
649 Which parts to restore from source string. See @ref propgridinterface_editablestate_flags
650 "list of editable state flags".
651
effb029c 652 @return Returns @false if there was problem reading the string.
1c4293cb 653
effb029c
JS
654 @remarks If some parts of state (such as scrolled or splitter position)
655 fail to restore correctly, please make sure that you call this
656 function after wxPropertyGrid size has been set (this may
657 sometimes be tricky when sizers are used).
1c4293cb
VZ
658 */
659 bool RestoreEditableState( const wxString& src,
660 int restoreStates = AllStates );
661
effb029c
JS
662 /**
663 Used to acquire user-editable state (selected property, expanded
664 properties, scrolled position, splitter positions).
1c4293cb
VZ
665
666 @param includedStates
667 Which parts of state to include. See @ref propgridinterface_editablestate_flags
668 "list of editable state flags".
669 */
670 wxString SaveEditableState( int includedStates = AllStates ) const;
671
effb029c
JS
672 /**
673 Sets strings listed in the choice dropdown of a wxBoolProperty.
674
675 Defaults are "True" and "False", so changing them to, say, "Yes" and
676 "No" may be useful in some less technical applications.
1c4293cb 677 */
effb029c
JS
678 static void SetBoolChoices( const wxString& trueChoice,
679 const wxString& falseChoice );
680
effb029c
JS
681 /**
682 Sets an attribute for this property.
683
0ad10f30
FM
684 @param id
685 @todo docme
686 @param attrName
effb029c 687 Text identifier of attribute. See @ref propgrid_property_attributes.
1c4293cb 688 @param value
effb029c 689 Value of attribute.
1c4293cb 690 @param argFlags
0ad10f30
FM
691 Optional.
692 Use wxPG_RECURSE to set the attribute to child properties recursively.
1802a91d
JS
693
694 @remarks Setting attribute's value to Null variant will simply remove it
0ad10f30 695 from property's set of attributes.
1c4293cb 696 */
effb029c
JS
697 void SetPropertyAttribute( wxPGPropArg id, const wxString& attrName,
698 wxVariant value, long argFlags = 0 );
1c4293cb 699
effb029c
JS
700 /**
701 Sets property attribute for all applicapple properties.
3c26d11b
JS
702 Be sure to use this method only after all properties have been
703 added to the grid.
704 */
705 void SetPropertyAttributeAll( const wxString& attrName, wxVariant value );
706
e2ca6599
JS
707 /**
708 Sets background colour of a property.
709
710 @param id
711 Property name or pointer.
712
713 @param colour
714 New background colour.
715
716 @param recursively
717 If True, child properties are affected recursively. Property
718 categories are skipped if this flag is used.
719 */
720 void SetPropertyBackgroundColour( wxPGPropArg id,
721 const wxColour& colour,
722 bool recursively = true );
723
effb029c
JS
724 /**
725 Sets text, bitmap, and colours for given column's cell.
1c4293cb
VZ
726
727 @remarks
effb029c 728 - You can set label cell by using column 0.
1c4293cb
VZ
729 - You can use wxPG_LABEL as text to use default text for column.
730 */
731 void SetPropertyCell( wxPGPropArg id,
732 int column,
733 const wxString& text = wxEmptyString,
734 const wxBitmap& bitmap = wxNullBitmap,
735 const wxColour& fgCol = wxNullColour,
effb029c
JS
736 const wxColour& bgCol = wxNullColour );
737
738 /**
739 Sets client data (void*) of a property.
1c4293cb 740
1c4293cb
VZ
741 @remarks
742 This untyped client data has to be deleted manually.
743 */
effb029c 744 void SetPropertyClientData( wxPGPropArg id, void* clientData );
1c4293cb 745
e2ca6599
JS
746 /**
747 Resets text and background colours of given property.
748 */
749 void SetPropertyColoursToDefault( wxPGPropArg id );
750
effb029c
JS
751 /**
752 Sets editor for a property.
1c4293cb 753
0ad10f30
FM
754 @param id
755 @todo docme
1c4293cb 756 @param editor
effb029c
JS
757 For builtin editors, use wxPGEditor_X, where X is builtin editor's
758 name (TextCtrl, Choice, etc. see wxPGEditor documentation for full
759 list).
1c4293cb
VZ
760
761 For custom editors, use pointer you received from wxPropertyGrid::RegisterEditorClass().
762 */
effb029c 763 void SetPropertyEditor( wxPGPropArg id, const wxPGEditor* editor );
1c4293cb 764
effb029c
JS
765 /**
766 Sets editor control of a property. As editor argument, use
1c4293cb
VZ
767 editor name string, such as "TextCtrl" or "Choice".
768 */
effb029c 769 void SetPropertyEditor( wxPGPropArg id, const wxString& editorName );
1c4293cb 770
effb029c
JS
771 /**
772 Sets label of a property.
258ccb95 773
1c4293cb 774 @remarks
258ccb95
JS
775 - Properties under same parent may have same labels. However,
776 property names must still remain unique.
1c4293cb
VZ
777 */
778 void SetPropertyLabel( wxPGPropArg id, const wxString& newproplabel );
779
020b0041
JS
780 /**
781 Sets name of a property.
782
783 @param id
784 Name or pointer of property which name to change.
785
786 @param newName
787 New name for property.
788 */
789 void SetPropertyName( wxPGPropArg id, const wxString& newName );
790
effb029c
JS
791 /**
792 Sets property (and, recursively, its children) to have read-only value.
793 In other words, user cannot change the value in the editor, but they can
794 still copy it.
795
796 @remarks This is mainly for use with textctrl editor. Only some other
797 editors fully support it.
798
799 @param id
800 Property name or pointer.
801
802 @param set
803 Use @true to enable read-only, @false to disable it.
1c4293cb 804
1c4293cb 805 @param flags
effb029c
JS
806 By default changes are applied recursively. Set this parameter
807 wxPG_DONT_RECURSE to prevent this.
1c4293cb 808 */
effb029c
JS
809 void SetPropertyReadOnly( wxPGPropArg id, bool set = true,
810 int flags = wxPG_RECURSE );
1c4293cb 811
effb029c
JS
812 /**
813 Sets property's value to unspecified. If it has children (it may be
814 category), then the same thing is done to them.
1c4293cb
VZ
815 */
816 void SetPropertyValueUnspecified( wxPGPropArg id );
817
effb029c 818 /**
c9cc9a2f 819 Sets property values from a list of wxVariants.
1c4293cb 820 */
effb029c
JS
821 void SetPropertyValues( const wxVariantList& list,
822 wxPGPropArg defaultCategory = wxNullProperty );
1c4293cb 823
c9cc9a2f
JS
824 /**
825 Sets property values from a list of wxVariants.
826 */
effb029c
JS
827 void SetPropertyValues( const wxVariant& list,
828 wxPGPropArg defaultCategory = wxNullProperty );
1c4293cb 829
effb029c
JS
830 /**
831 Associates the help string with property.
832
833 @remarks By default, text is shown either in the manager's "description"
834 text box or in the status bar. If extra window style
835 wxPG_EX_HELP_AS_TOOLTIPS is used, then the text will appear as
836 a tooltip.
1c4293cb 837 */
effb029c 838 void SetPropertyHelpString( wxPGPropArg id, const wxString& helpString );
1c4293cb 839
effb029c
JS
840 /**
841 Set wxBitmap in front of the value.
842
843 @remarks Bitmap will be scaled to a size returned by
844 wxPropertyGrid::GetImageSize();
1c4293cb 845 */
effb029c 846 void SetPropertyImage( wxPGPropArg id, wxBitmap& bmp );
1c4293cb 847
effb029c
JS
848 /**
849 Sets max length of property's text.
1c4293cb
VZ
850 */
851 bool SetPropertyMaxLength( wxPGPropArg id, int maxLen );
852
e2ca6599
JS
853
854 /**
855 Sets text colour of a property.
856
857 @param id
858 Property name or pointer.
859
860 @param colour
861 New background colour.
862
863 @param recursively
864 If True, child properties are affected recursively. Property
865 categories are skipped if this flag is used.
866 */
867 void SetPropertyTextColour( wxPGPropArg id,
088441b5 868 const wxColour& colour,
e2ca6599
JS
869 bool recursively = true );
870
effb029c
JS
871 /**
872 Sets validator of a property.
1c4293cb 873 */
effb029c 874 void SetPropertyValidator( wxPGPropArg id, const wxValidator& validator );
1c4293cb 875
effb029c
JS
876 /** Sets value (integer) of a property. */
877 void SetPropertyValue( wxPGPropArg id, long value );
1c4293cb 878
effb029c
JS
879 /** Sets value (integer) of a property. */
880 void SetPropertyValue( wxPGPropArg id, int value );
1c4293cb 881
effb029c
JS
882 /** Sets value (floating point) of a property. */
883 void SetPropertyValue( wxPGPropArg id, double value );
1c4293cb 884
effb029c
JS
885 /** Sets value (bool) of a property. */
886 void SetPropertyValue( wxPGPropArg id, bool value );
1c4293cb 887
effb029c
JS
888 /** Sets value (string) of a property. */
889 void SetPropertyValue( wxPGPropArg id, const wxString& value );
1c4293cb 890
effb029c
JS
891 /** Sets value (wxArrayString) of a property. */
892 void SetPropertyValue( wxPGPropArg id, const wxArrayString& value );
1c4293cb 893
effb029c
JS
894 /** Sets value (wxDateTime) of a property. */
895 void SetPropertyValue( wxPGPropArg id, const wxDateTime& value );
1c4293cb 896
effb029c
JS
897 /** Sets value (wxObject*) of a property. */
898 void SetPropertyValue( wxPGPropArg id, wxObject* value );
1c4293cb 899
effb029c
JS
900 /** Sets value (wxObject&) of a property. */
901 void SetPropertyValue( wxPGPropArg id, wxObject& value );
902
903 /** Sets value (native 64-bit int) of a property. */
904 void SetPropertyValue( wxPGPropArg id, wxLongLong_t value );
905
906 /** Sets value (native 64-bit unsigned int) of a property. */
907 void SetPropertyValue( wxPGPropArg id, wxULongLong_t value );
908
909 /** Sets value (wxArrayInt&) of a property. */
910 void SetPropertyValue( wxPGPropArg id, const wxArrayInt& value );
911
912 /**
913 Sets value (wxString) of a property.
914
915 @remarks This method uses wxPGProperty::SetValueFromString(), which all
916 properties should implement. This means that there should not be
917 a type error, and instead the string is converted to property's
918 actual value type.
1c4293cb
VZ
919 */
920 void SetPropertyValueString( wxPGPropArg id, const wxString& value );
921
effb029c
JS
922 /**
923 Sets value (wxVariant&) of a property.
bba3f9b5 924
effb029c
JS
925 @remarks Use wxPropertyGrid::ChangePropertyValue() instead if you need to
926 run through validation process and send property change event.
1c4293cb 927 */
effb029c 928 void SetPropertyValue( wxPGPropArg id, wxVariant value );
1c4293cb 929
effb029c
JS
930 /**
931 Adjusts how wxPropertyGrid behaves when invalid value is entered
1c4293cb 932 in a property.
effb029c 933
1c4293cb 934 @param vfbFlags
effb029c 935 See @ref propgrid_vfbflags for possible values.
1c4293cb
VZ
936 */
937 void SetValidationFailureBehavior( int vfbFlags );
938
43396981 939 /**
0eb877f2
JS
940 Sorts all properties recursively.
941
942 @param flags
943 This can contain any of the following options:
944 wxPG_SORT_TOP_LEVEL_ONLY: Only sort categories and their
945 immediate children. Sorting done by wxPG_AUTO_SORT option
946 uses this.
43396981
JS
947
948 @see SortChildren, wxPropertyGrid::SetSortFunction
949 */
0eb877f2 950 void Sort( int flags = 0 );
43396981
JS
951
952 /**
953 Sorts children of a property.
954
955 @param id
956 Name or pointer to a property.
957
0eb877f2
JS
958 @param flags
959 This can contain any of the following options:
960 wxPG_RECURSE: Sorts recursively.
43396981
JS
961
962 @see Sort, wxPropertyGrid::SetSortFunction
963 */
0eb877f2 964 void SortChildren( wxPGPropArg id, int flags = 0 );
43396981 965
effb029c
JS
966 /**
967 Returns editor pointer of editor with given name;
968 */
1c4293cb 969 static wxPGEditor* GetEditorByName( const wxString& editorName );
1c4293cb
VZ
970};
971