1 /////////////////////////////////////////////////////////////////////////////
2 // Name: wx/propgeid/propgridiface.h
3 // Purpose: wxPropertyGridInterface class
4 // Author: Jaakko Salli
8 // Copyright: (c) Jaakko Salli
9 // Licence: wxWindows license
10 /////////////////////////////////////////////////////////////////////////////
12 #ifndef __WX_PROPGRID_PROPGRIDIFACE_H__
13 #define __WX_PROPGRID_PROPGRIDIFACE_H__
17 #include "wx/propgrid/property.h"
18 #include "wx/propgrid/propgridpagestate.h"
20 // -----------------------------------------------------------------------
22 /** @section wxPGPropArgCls
24 Most property grid functions have this type as their argument, as it can
25 convey a property by either a pointer or name.
27 class WXDLLIMPEXP_PROPGRID wxPGPropArgCls
31 wxPGPropArgCls( const wxPGProperty
* property
)
33 m_ptr
.property
= (wxPGProperty
*) property
;
36 wxPGPropArgCls( const wxString
& str
)
38 m_ptr
.stringName
= &str
;
41 wxPGPropArgCls( const wxPGPropArgCls
& id
)
46 // This is only needed for wxPython bindings
47 wxPGPropArgCls( wxString
* str
, bool WXUNUSED(deallocPtr
) )
49 m_ptr
.stringName
= str
;
50 m_flags
= IsWxString
| OwnsWxString
;
54 if ( m_flags
& OwnsWxString
)
55 delete m_ptr
.stringName
;
57 wxPGProperty
* GetPtr() const
59 wxCHECK( m_flags
== IsProperty
, NULL
);
60 return m_ptr
.property
;
62 wxPGPropArgCls( const char* str
)
68 wxPGPropArgCls( const wchar_t* str
)
70 m_ptr
.wcharName
= str
;
74 /** This constructor is required for NULL. */
77 m_ptr
.property
= NULL
;
80 wxPGProperty
* GetPtr( wxPropertyGridInterface
* iface
) const;
81 wxPGProperty
* GetPtr( const wxPropertyGridInterface
* iface
) const
83 return GetPtr((wxPropertyGridInterface
*)iface
);
85 wxPGProperty
* GetPtr0() const { return m_ptr
.property
; }
86 bool HasName() const { return (m_flags
!= IsProperty
); }
87 const wxString
& GetName() const { return *m_ptr
.stringName
; }
101 wxPGProperty
* property
;
102 const char* charName
;
104 const wchar_t* wcharName
;
106 const wxString
* stringName
;
108 unsigned char m_flags
;
111 typedef const wxPGPropArgCls
& wxPGPropArg
;
113 // -----------------------------------------------------------------------
116 void wxPGTypeOperationFailed( const wxPGProperty
* p
,
117 const wxString
& typestr
,
118 const wxString
& op
);
120 void wxPGGetFailed( const wxPGProperty
* p
, const wxString
& typestr
);
122 // -----------------------------------------------------------------------
124 // Helper macro that does necessary preparations when calling
125 // some wxPGProperty's member function.
126 #define wxPG_PROP_ARG_CALL_PROLOG_0(PROPERTY) \
127 PROPERTY *p = (PROPERTY*)id.GetPtr(this); \
130 #define wxPG_PROP_ARG_CALL_PROLOG_RETVAL_0(PROPERTY, RETVAL) \
131 PROPERTY *p = (PROPERTY*)id.GetPtr(this); \
132 if ( !p ) return RETVAL;
134 #define wxPG_PROP_ARG_CALL_PROLOG() \
135 wxPG_PROP_ARG_CALL_PROLOG_0(wxPGProperty)
137 #define wxPG_PROP_ARG_CALL_PROLOG_RETVAL(RVAL) \
138 wxPG_PROP_ARG_CALL_PROLOG_RETVAL_0(wxPGProperty, RVAL)
140 #define wxPG_PROP_ID_CONST_CALL_PROLOG() \
141 wxPG_PROP_ARG_CALL_PROLOG_0(const wxPGProperty)
143 #define wxPG_PROP_ID_CONST_CALL_PROLOG_RETVAL(RVAL) \
144 wxPG_PROP_ARG_CALL_PROLOG_RETVAL_0(const wxPGProperty, RVAL)
146 // -----------------------------------------------------------------------
149 /** @class wxPropertyGridInterface
151 Most of the shared property manipulation interface shared by wxPropertyGrid,
152 wxPropertyGridPage, and wxPropertyGridManager is defined in this class.
155 - In separate wxPropertyGrid component this class was known as
156 wxPropertyContainerMethods.
161 class WXDLLIMPEXP_PROPGRID wxPropertyGridInterface
166 virtual ~wxPropertyGridInterface() { }
169 Appends property to the list.
171 wxPropertyGrid assumes ownership of the object.
172 Becomes child of most recently added category.
174 - wxPropertyGrid takes the ownership of the property pointer.
175 - If appending a category with name identical to a category already in
176 the wxPropertyGrid, then newly created category is deleted, and most
177 recently added category (under which properties are appended) is set
178 to the one with same name. This allows easier adding of items to same
179 categories in multiple passes.
180 - Does not automatically redraw the control, so you may need to call
181 Refresh when calling this function after control has been shown for
184 wxPGProperty
* Append( wxPGProperty
* property
);
186 wxPGProperty
* AppendIn( wxPGPropArg id
, wxPGProperty
* newproperty
);
189 In order to add new items into a property with fixed children (for
190 instance, wxFlagsProperty), you need to call this method. After
191 populating has been finished, you need to call EndAddChildren.
193 void BeginAddChildren( wxPGPropArg id
);
195 /** Deletes all properties.
197 virtual void Clear() = 0;
200 Clears current selection, if any.
203 If set to @false, deselecting the property will always work,
204 even if its editor had invalid value in it.
206 @return Returns @true if successful or if there was no selection. May
207 fail if validation was enabled and active editor had invalid
210 @remarks In wxPropertyGrid 1.4, this member function used to send
211 wxPG_EVT_SELECTED. In wxWidgets 2.9 and later, it no longer
214 bool ClearSelection( bool validation
= false );
216 /** Resets modified status of all properties.
218 void ClearModifiedStatus();
220 /** Collapses given category or property with children.
221 Returns true if actually collapses.
223 bool Collapse( wxPGPropArg id
);
225 /** Collapses all items that can be collapsed.
228 Return false if failed (may fail if editor value cannot be validated).
230 bool CollapseAll() { return ExpandAll(false); }
233 Changes value of a property, as if from an editor.
234 Use this instead of SetPropertyValue() if you need the value to run
235 through validation process, and also send the property change event.
238 Returns true if value was successfully changed.
240 bool ChangePropertyValue( wxPGPropArg id
, wxVariant newValue
);
243 Removes and deletes a property and any children.
246 Pointer or name of a property.
248 @remarks If you delete a property in a wxPropertyGrid event
249 handler, the actual deletion is postponed until the next
252 This functions deselects selected property, if any.
253 Validation failure option wxPG_VFB_STAY_IN_PROPERTY is not
254 respected, ie. selection is cleared even if editor had
257 void DeleteProperty( wxPGPropArg id
);
260 Removes a property. Does not delete the property object, but
264 Pointer or name of a property.
266 @remarks Removed property cannot have any children.
268 Also, if you remove property in a wxPropertyGrid event
269 handler, the actual removal is postponed until the next
272 wxPGProperty
* RemoveProperty( wxPGPropArg id
);
274 /** Disables property. */
275 bool DisableProperty( wxPGPropArg id
) { return EnableProperty(id
,false); }
278 Returns true if all property grid data changes have been committed.
280 Usually only returns false if value in active editor has been
281 invalidated by a wxValidator.
283 bool EditorValidate();
286 Enables or disables property, depending on whether enable is true or
289 bool EnableProperty( wxPGPropArg id
, bool enable
= true );
291 /** Called after population of property with fixed children has finished.
293 void EndAddChildren( wxPGPropArg id
);
295 /** Expands given category or property with children.
296 Returns true if actually expands.
298 bool Expand( wxPGPropArg id
);
300 /** Expands all items that can be expanded.
302 bool ExpandAll( bool expand
= true );
304 /** Returns id of first child of given property.
306 Does not return sub-properties!
308 wxPGProperty
* GetFirstChild( wxPGPropArg id
)
310 wxPG_PROP_ARG_CALL_PROLOG_RETVAL(wxNullProperty
)
312 if ( !p
->GetChildCount() || p
->HasFlag(wxPG_PROP_AGGREGATE
) )
313 return wxNullProperty
;
319 /** Returns iterator class instance.
321 See @ref propgrid_iterator_flags. Value wxPG_ITERATE_DEFAULT causes
322 iteration over everything except private child properties.
324 Property to start iteration from. If NULL, then first child of root
327 Either wxTOP or wxBOTTOM. wxTOP will indicate that iterations start
328 from the first property from the top, and wxBOTTOM means that the
329 iteration will instead begin from bottommost valid item.
331 wxPropertyGridIterator
GetIterator( int flags
= wxPG_ITERATE_DEFAULT
,
332 wxPGProperty
* firstProp
= NULL
)
334 return wxPropertyGridIterator( m_pState
, flags
, firstProp
);
337 wxPropertyGridConstIterator
338 GetIterator( int flags
= wxPG_ITERATE_DEFAULT
,
339 wxPGProperty
* firstProp
= NULL
) const
341 return wxPropertyGridConstIterator( m_pState
, flags
, firstProp
);
344 wxPropertyGridIterator
GetIterator( int flags
, int startPos
)
346 return wxPropertyGridIterator( m_pState
, flags
, startPos
);
349 wxPropertyGridConstIterator
GetIterator( int flags
, int startPos
) const
351 return wxPropertyGridConstIterator( m_pState
, flags
, startPos
);
355 /** Returns id of first item, whether it is a category or property.
357 @link iteratorflags List of iterator flags@endlink
359 wxPGProperty
* GetFirst( int flags
= wxPG_ITERATE_ALL
)
361 wxPropertyGridIterator
it( m_pState
, flags
, wxNullProperty
, 1 );
365 const wxPGProperty
* GetFirst( int flags
= wxPG_ITERATE_ALL
) const
367 return ((wxPropertyGridInterface
*)this)->GetFirst(flags
);
371 Returns pointer to a property with given name (case-sensitive).
372 If there is no property with such name, @NULL pointer is returned.
374 @remarks Properties which have non-category, non-root parent
375 can not be accessed globally by their name. Instead, use
376 "<property>.<subproperty>" instead of "<subproperty>".
378 wxPGProperty
* GetProperty( const wxString
& name
) const
380 return GetPropertyByName(name
);
383 /** Returns map-like storage of property's attributes.
385 Note that if extra style wxPG_EX_WRITEONLY_BUILTIN_ATTRIBUTES is set,
386 then builtin-attributes are not included in the storage.
388 const wxPGAttributeStorage
& GetPropertyAttributes( wxPGPropArg id
) const
390 // If 'id' refers to invalid property, then we will return dummy
391 // attributes (ie. root property's attributes, which contents should
392 // should always be empty and of no consequence).
393 wxPG_PROP_ARG_CALL_PROLOG_RETVAL(m_pState
->DoGetRoot()->GetAttributes());
394 return p
->GetAttributes();
397 /** Adds to 'targetArr' pointers to properties that have given
398 flags 'flags' set. However, if 'inverse' is set to true, then
399 only properties without given flags are stored.
401 Property flags to use.
403 Iterator flags to use. Default is everything expect private children.
405 void GetPropertiesWithFlag( wxArrayPGProperty
* targetArr
,
406 wxPGProperty::FlagType flags
,
407 bool inverse
= false,
408 int iterFlags
= wxPG_ITERATE_PROPERTIES
|
409 wxPG_ITERATE_HIDDEN
|
410 wxPG_ITERATE_CATEGORIES
) const;
412 /** Returns value of given attribute. If none found, returns NULL-variant.
414 wxVariant
GetPropertyAttribute( wxPGPropArg id
,
415 const wxString
& attrName
) const
417 wxPG_PROP_ARG_CALL_PROLOG_RETVAL(wxNullVariant
)
418 return p
->GetAttribute(attrName
);
421 /** Returns pointer of property's nearest parent category. If no category
424 wxPropertyCategory
* GetPropertyCategory( wxPGPropArg id
) const
426 wxPG_PROP_ID_CONST_CALL_PROLOG_RETVAL(NULL
)
427 return m_pState
->GetPropertyCategory(p
);
430 /** Returns client data (void*) of a property. */
431 void* GetPropertyClientData( wxPGPropArg id
) const
433 wxPG_PROP_ARG_CALL_PROLOG_RETVAL(NULL
)
434 return p
->GetClientData();
438 Returns first property which label matches given string.
440 NULL if none found. Note that this operation is extremely slow when
441 compared to GetPropertyByName().
443 wxPGProperty
* GetPropertyByLabel( const wxString
& label
) const;
445 /** Returns property with given name. NULL if none found.
447 wxPGProperty
* GetPropertyByName( const wxString
& name
) const;
449 /** Returns child property 'subname' of property 'name'. Same as
450 calling GetPropertyByName("name.subname"), albeit slightly faster.
452 wxPGProperty
* GetPropertyByName( const wxString
& name
,
453 const wxString
& subname
) const;
455 /** Returns property's editor. */
456 const wxPGEditor
* GetPropertyEditor( wxPGPropArg id
) const
458 wxPG_PROP_ARG_CALL_PROLOG_RETVAL(NULL
)
459 return p
->GetEditorClass();
462 /** Returns help string associated with a property. */
463 wxString
GetPropertyHelpString( wxPGPropArg id
) const
465 wxPG_PROP_ARG_CALL_PROLOG_RETVAL(m_emptyString
)
466 return p
->GetHelpString();
469 /** Returns property's custom value image (NULL of none). */
470 wxBitmap
* GetPropertyImage( wxPGPropArg id
) const
472 wxPG_PROP_ARG_CALL_PROLOG_RETVAL(NULL
)
473 return p
->GetValueImage();
476 /** Returns label of a property. */
477 const wxString
& GetPropertyLabel( wxPGPropArg id
)
479 wxPG_PROP_ARG_CALL_PROLOG_RETVAL(m_emptyString
)
480 return p
->GetLabel();
483 /** Returns name of a property, by which it is globally accessible. */
484 wxString
GetPropertyName( wxPGProperty
* property
)
486 return property
->GetName();
489 /** Returns parent item of a property. */
490 wxPGProperty
* GetPropertyParent( wxPGPropArg id
)
492 wxPG_PROP_ARG_CALL_PROLOG_RETVAL(wxNullProperty
)
493 return p
->GetParent();
497 /** Returns validator of a property as a reference, which you
498 can pass to any number of SetPropertyValidator.
500 wxValidator
* GetPropertyValidator( wxPGPropArg id
)
502 wxPG_PROP_ARG_CALL_PROLOG_RETVAL(NULL
)
503 return p
->GetValidator();
507 /** Returns value as wxVariant. To get wxObject pointer from it,
508 you will have to use WX_PG_VARIANT_TO_WXOBJECT(VARIANT,CLASSNAME) macro.
510 If property value is unspecified, Null variant is returned.
512 wxVariant
GetPropertyValue( wxPGPropArg id
)
514 wxPG_PROP_ARG_CALL_PROLOG_RETVAL(wxVariant())
515 return p
->GetValue();
518 wxString
GetPropertyValueAsString( wxPGPropArg id
) const;
519 long GetPropertyValueAsLong( wxPGPropArg id
) const;
520 unsigned long GetPropertyValueAsULong( wxPGPropArg id
) const
522 return (unsigned long) GetPropertyValueAsLong(id
);
524 int GetPropertyValueAsInt( wxPGPropArg id
) const
525 { return (int)GetPropertyValueAsLong(id
); }
526 bool GetPropertyValueAsBool( wxPGPropArg id
) const;
527 double GetPropertyValueAsDouble( wxPGPropArg id
) const;
529 #define wxPG_PROP_ID_GETPROPVAL_CALL_PROLOG_RETVAL(TYPENAME, DEFVAL) \
530 wxPG_PROP_ARG_CALL_PROLOG_RETVAL(DEFVAL) \
531 wxString typeName(wxS(TYPENAME)); \
532 wxVariant value = p->GetValue(); \
533 if ( value.GetType() != typeName ) \
535 wxPGGetFailed(p, typeName); \
539 #define wxPG_PROP_ID_GETPROPVAL_CALL_PROLOG_RETVAL_WFALLBACK(TYPENAME, DEFVAL) \
540 wxPG_PROP_ARG_CALL_PROLOG_RETVAL(DEFVAL) \
541 wxVariant value = p->GetValue(); \
542 if ( value.GetType() != wxS(TYPENAME) ) \
545 wxArrayString GetPropertyValueAsArrayString( wxPGPropArg id ) const
547 wxPG_PROP_ID_GETPROPVAL_CALL_PROLOG_RETVAL("arrstring",
549 return value
.GetArrayString();
553 wxLongLong_t
GetPropertyValueAsLongLong( wxPGPropArg id
) const
555 wxPG_PROP_ARG_CALL_PROLOG_RETVAL(0)
556 return p
->GetValue().GetLongLong().GetValue();
559 wxULongLong_t
GetPropertyValueAsULongLong( wxPGPropArg id
) const
561 wxPG_PROP_ARG_CALL_PROLOG_RETVAL(0)
562 return p
->GetValue().GetULongLong().GetValue();
566 wxArrayInt
GetPropertyValueAsArrayInt( wxPGPropArg id
) const
568 wxPG_PROP_ID_GETPROPVAL_CALL_PROLOG_RETVAL("wxArrayInt",
576 wxDateTime
GetPropertyValueAsDateTime( wxPGPropArg id
) const
578 wxPG_PROP_ID_GETPROPVAL_CALL_PROLOG_RETVAL("datetime",
580 return value
.GetDateTime();
584 /** Returns a wxVariant list containing wxVariant versions of all
585 property values. Order is not guaranteed.
587 Use wxPG_KEEP_STRUCTURE to retain category structure; each sub
588 category will be its own wxVariantList of wxVariant.
589 Use wxPG_INC_ATTRIBUTES to include property attributes as well.
590 Each attribute will be stored as list variant named
591 "@@<propname>@@attr."
594 wxVariant
GetPropertyValues( const wxString
& listname
= wxEmptyString
,
595 wxPGProperty
* baseparent
= NULL
, long flags
= 0 ) const
597 return m_pState
->DoGetPropertyValues(listname
, baseparent
, flags
);
601 Returns currently selected property. NULL if none.
603 @remarks When wxPG_EX_MULTIPLE_SELECTION extra style is used, this
604 member function returns the focused property, that is the
605 one which can have active editor.
607 wxPGProperty
* GetSelection() const;
610 Returns list of currently selected properties.
612 @remarks wxArrayPGProperty should be compatible with std::vector API.
614 const wxArrayPGProperty
& GetSelectedProperties() const
616 return m_pState
->m_selection
;
619 wxPropertyGridPageState
* GetState() const { return m_pState
; }
621 /** Similar to GetIterator(), but instead returns wxPGVIterator instance,
622 which can be useful for forward-iterating through arbitrary property
626 See @ref propgrid_iterator_flags.
628 virtual wxPGVIterator
GetVIterator( int flags
) const;
630 /** Hides or reveals a property.
632 If true, hides property, otherwise reveals it.
634 By default changes are applied recursively. Set this paramter
635 wxPG_DONT_RECURSE to prevent this.
637 bool HideProperty( wxPGPropArg id
,
639 int flags
= wxPG_RECURSE
);
641 #if wxPG_INCLUDE_ADVPROPS
642 /** Initializes *all* property types. Causes references to most object
643 files in the library, so calling this may cause significant increase
644 in executable size when linking with static library.
646 static void InitAllTypeHandlers();
648 static void InitAllTypeHandlers() { }
652 /** Inserts property to the property container.
655 New property is inserted just prior to this. Available only
656 in the first variant. There are two versions of this function
657 to allow this parameter to be either an id or name to
661 Pointer to the inserted property. wxPropertyGrid will take
662 ownership of this object.
665 New property is inserted under this category. Available only
666 in the second variant. There are two versions of this function
667 to allow this parameter to be either an id or name to
671 Index under category. Available only in the second variant.
672 If index is < 0, property is appended in category.
675 Returns id for the property,
679 - wxPropertyGrid takes the ownership of the property pointer.
681 - While Append may be faster way to add items, make note that when
682 both types of data storage (categoric and
683 non-categoric) are active, Insert becomes even more slow. This is
684 especially true if current mode is non-categoric.
691 wxPGProperty* my_cat_id = propertygrid->Append(
692 new wxPropertyCategory("My Category") );
696 // insert into category - using second variant
697 wxPGProperty* my_item_id_1 = propertygrid->Insert(
698 my_cat_id, 0, new wxStringProperty("My String 1") );
700 // insert before to first item - using first variant
701 wxPGProperty* my_item_id_2 = propertygrid->Insert(
702 my_item_id, new wxStringProperty("My String 2") );
707 wxPGProperty
* Insert( wxPGPropArg priorThis
, wxPGProperty
* newproperty
);
708 wxPGProperty
* Insert( wxPGPropArg parent
,
710 wxPGProperty
* newproperty
);
713 /** Returns true if property is a category. */
714 bool IsPropertyCategory( wxPGPropArg id
) const
716 wxPG_PROP_ARG_CALL_PROLOG_RETVAL(false)
717 return p
->IsCategory();
720 /** Returns true if property is enabled. */
721 bool IsPropertyEnabled( wxPGPropArg id
) const
723 wxPG_PROP_ARG_CALL_PROLOG_RETVAL(false)
724 return (!(p
->GetFlags() & wxPG_PROP_DISABLED
))?true:false;
728 Returns true if given property is expanded.
730 Naturally, always returns false for properties that cannot be expanded.
732 bool IsPropertyExpanded( wxPGPropArg id
) const;
735 Returns true if property has been modified after value set or modify
736 flag clear by software.
738 bool IsPropertyModified( wxPGPropArg id
) const
740 wxPG_PROP_ARG_CALL_PROLOG_RETVAL(false)
741 return ( (p
->GetFlags() & wxPG_PROP_MODIFIED
) ? true : false );
745 Returns true if property is selected.
747 bool IsPropertySelected( wxPGPropArg id
) const
749 wxPG_PROP_ARG_CALL_PROLOG_RETVAL(false)
750 return m_pState
->DoIsPropertySelected(p
);
754 Returns true if property is shown (ie hideproperty with true not
757 bool IsPropertyShown( wxPGPropArg id
) const
759 wxPG_PROP_ARG_CALL_PROLOG_RETVAL(false)
760 return (!(p
->GetFlags() & wxPG_PROP_HIDDEN
))?true:false;
763 /** Returns true if property value is set to unspecified.
765 bool IsPropertyValueUnspecified( wxPGPropArg id
) const
767 wxPG_PROP_ARG_CALL_PROLOG_RETVAL(false)
768 return p
->IsValueUnspecified();
772 Disables (limit = true) or enables (limit = false) wxTextCtrl editor of
773 a property, if it is not the sole mean to edit the value.
775 void LimitPropertyEditing( wxPGPropArg id
, bool limit
= true );
777 /** If state is shown in it's grid, refresh it now.
779 virtual void RefreshGrid( wxPropertyGridPageState
* state
= NULL
);
781 #if wxPG_INCLUDE_ADVPROPS
783 Initializes additional property editors (SpinCtrl etc.). Causes
784 references to most object files in the library, so calling this may
785 cause significant increase in executable size when linking with static
788 static void RegisterAdditionalEditors();
790 static void RegisterAdditionalEditors() { }
793 /** Replaces property with id with newly created property. For example,
794 this code replaces existing property named "Flags" with one that
795 will have different set of items:
797 pg->ReplaceProperty("Flags",
798 wxFlagsProperty("Flags", wxPG_LABEL, newItems))
800 For more info, see wxPropertyGrid::Insert.
802 wxPGProperty
* ReplaceProperty( wxPGPropArg id
, wxPGProperty
* property
);
804 /** @anchor propgridinterface_editablestate_flags
806 Flags for wxPropertyGridInterface::SaveEditableState() and
807 wxPropertyGridInterface::RestoreEditableState().
809 enum EditableStateFlags
811 /** Include selected property. */
812 SelectionState
= 0x01,
813 /** Include expanded/collapsed property information. */
814 ExpandedState
= 0x02,
815 /** Include scrolled position. */
816 ScrollPosState
= 0x04,
817 /** Include selected page information.
818 Only applies to wxPropertyGridManager. */
820 /** Include splitter position. Stored for each page. */
821 SplitterPosState
= 0x10,
822 /** Include description box size.
823 Only applies to wxPropertyGridManager. */
827 Include all supported user editable state information.
828 This is usually the default value. */
829 AllStates
= SelectionState
|
838 Restores user-editable state.
840 See also wxPropertyGridInterface::SaveEditableState().
843 String generated by SaveEditableState.
846 Which parts to restore from source string. See @ref
847 propgridinterface_editablestate_flags "list of editable state
851 False if there was problem reading the string.
854 If some parts of state (such as scrolled or splitter position) fail to
855 restore correctly, please make sure that you call this function after
856 wxPropertyGrid size has been set (this may sometimes be tricky when
859 bool RestoreEditableState( const wxString
& src
,
860 int restoreStates
= AllStates
);
863 Used to acquire user-editable state (selected property, expanded
864 properties, scrolled position, splitter positions).
866 @param includedStates
867 Which parts of state to include. See @ref
868 propgridinterface_editablestate_flags "list of editable state flags".
870 wxString
SaveEditableState( int includedStates
= AllStates
) const;
873 Lets user to set the strings listed in the choice dropdown of a
874 wxBoolProperty. Defaults are "True" and "False", so changing them to,
875 say, "Yes" and "No" may be useful in some less technical applications.
877 static void SetBoolChoices( const wxString
& trueChoice
,
878 const wxString
& falseChoice
);
881 Set proportion of a auto-stretchable column. wxPG_SPLITTER_AUTO_CENTER
882 window style needs to be used to indicate that columns are auto-
885 @returns Returns @false on failure.
887 @remarks You should call this for individual pages of
888 wxPropertyGridManager (if used).
890 @see GetColumnProportion()
892 bool SetColumnProportion( unsigned int column
, int proportion
);
895 Returns auto-resize proportion of the given column.
897 @see SetColumnProportion()
899 int GetColumnProportion( unsigned int column
) const
901 return m_pState
->DoGetColumnProportion(column
);
904 /** Sets an attribute for this property.
906 Text identifier of attribute. See @ref propgrid_property_attributes.
910 Optional. Use wxPG_RECURSE to set the attribute to child properties
913 void SetPropertyAttribute( wxPGPropArg id
,
914 const wxString
& attrName
,
918 DoSetPropertyAttribute(id
,attrName
,value
,argFlags
);
921 /** Sets property attribute for all applicapple properties.
922 Be sure to use this method only after all properties have been
925 void SetPropertyAttributeAll( const wxString
& attrName
, wxVariant value
);
928 Sets background colour of a property.
931 Property name or pointer.
934 New background colour.
937 Default is wxPG_RECURSE which causes colour to be set recursively.
938 Omit this flag to only set colour for the property in question
939 and not any of its children.
941 void SetPropertyBackgroundColour( wxPGPropArg id
,
942 const wxColour
& colour
,
943 int flags
= wxPG_RECURSE
);
945 /** Resets text and background colours of given property.
947 void SetPropertyColoursToDefault( wxPGPropArg id
);
950 Sets text colour of a property.
953 Property name or pointer.
956 New background colour.
959 Default is wxPG_RECURSE which causes colour to be set recursively.
960 Omit this flag to only set colour for the property in question
961 and not any of its children.
963 void SetPropertyTextColour( wxPGPropArg id
,
965 int flags
= wxPG_RECURSE
);
968 Returns background colour of first cell of a property.
970 wxColour
GetPropertyBackgroundColour( wxPGPropArg id
) const
972 wxPG_PROP_ARG_CALL_PROLOG_RETVAL(wxColour())
973 return p
->GetCell(0).GetBgCol();
977 Returns text colour of first cell of a property.
979 wxColour
GetPropertyTextColour( wxPGPropArg id
) const
981 wxPG_PROP_ARG_CALL_PROLOG_RETVAL(wxColour())
982 return p
->GetCell(0).GetFgCol();
985 /** Sets text, bitmap, and colours for given column's cell.
988 - You can set label cell by setting column to 0.
989 - You can use wxPG_LABEL as text to use default text for column.
991 void SetPropertyCell( wxPGPropArg id
,
993 const wxString
& text
= wxEmptyString
,
994 const wxBitmap
& bitmap
= wxNullBitmap
,
995 const wxColour
& fgCol
= wxNullColour
,
996 const wxColour
& bgCol
= wxNullColour
);
998 /** Sets client data (void*) of a property.
1000 This untyped client data has to be deleted manually.
1002 void SetPropertyClientData( wxPGPropArg id
, void* clientData
)
1004 wxPG_PROP_ARG_CALL_PROLOG()
1005 p
->SetClientData(clientData
);
1008 /** Sets editor for a property.
1011 For builtin editors, use wxPGEditor_X, where X is builtin editor's
1012 name (TextCtrl, Choice, etc. see wxPGEditor documentation for full
1015 For custom editors, use pointer you received from
1016 wxPropertyGrid::RegisterEditorClass().
1018 void SetPropertyEditor( wxPGPropArg id
, const wxPGEditor
* editor
)
1020 wxPG_PROP_ARG_CALL_PROLOG()
1021 wxCHECK_RET( editor
, wxT("unknown/NULL editor") );
1022 p
->SetEditor(editor
);
1026 /** Sets editor control of a property. As editor argument, use
1027 editor name string, such as "TextCtrl" or "Choice".
1029 void SetPropertyEditor( wxPGPropArg id
, const wxString
& editorName
)
1031 SetPropertyEditor(id
,GetEditorByName(editorName
));
1034 /** Sets label of a property.
1036 void SetPropertyLabel( wxPGPropArg id
, const wxString
& newproplabel
);
1039 Sets name of a property.
1042 Name or pointer of property which name to change.
1045 New name for property.
1047 void SetPropertyName( wxPGPropArg id
, const wxString
& newName
)
1049 wxPG_PROP_ARG_CALL_PROLOG()
1050 m_pState
->DoSetPropertyName( p
, newName
);
1054 Sets property (and, recursively, its children) to have read-only value.
1055 In other words, user cannot change the value in the editor, but they
1058 This is mainly for use with textctrl editor. Not all other editors fully
1061 By default changes are applied recursively. Set this paramter
1062 wxPG_DONT_RECURSE to prevent this.
1064 void SetPropertyReadOnly( wxPGPropArg id
,
1066 int flags
= wxPG_RECURSE
)
1068 wxPG_PROP_ARG_CALL_PROLOG()
1069 if ( flags
& wxPG_RECURSE
)
1070 p
->SetFlagRecursively(wxPG_PROP_READONLY
, set
);
1072 p
->ChangeFlag(wxPG_PROP_READONLY
, set
);
1075 /** Sets property's value to unspecified.
1076 If it has children (it may be category), then the same thing is done to
1079 void SetPropertyValueUnspecified( wxPGPropArg id
)
1081 wxPG_PROP_ARG_CALL_PROLOG()
1082 p
->SetValueToUnspecified();
1086 Sets property values from a list of wxVariants.
1088 void SetPropertyValues( const wxVariantList
& list
,
1089 wxPGPropArg defaultCategory
= wxNullProperty
)
1092 if ( defaultCategory
.HasName() ) p
= defaultCategory
.GetPtr(this);
1093 else p
= defaultCategory
.GetPtr0();
1094 m_pState
->DoSetPropertyValues(list
, p
);
1098 Sets property values from a list of wxVariants.
1100 void SetPropertyValues( const wxVariant
& list
,
1101 wxPGPropArg defaultCategory
= wxNullProperty
)
1103 SetPropertyValues(list
.GetList(),defaultCategory
);
1106 /** Associates the help string with property.
1108 By default, text is shown either in the manager's "description"
1109 text box or in the status bar. If extra window style
1110 wxPG_EX_HELP_AS_TOOLTIPS is used, then the text will appear as a
1113 void SetPropertyHelpString( wxPGPropArg id
, const wxString
& helpString
)
1115 wxPG_PROP_ARG_CALL_PROLOG()
1116 p
->SetHelpString(helpString
);
1119 /** Set wxBitmap in front of the value.
1121 - Bitmap will be scaled to a size returned by
1122 wxPropertyGrid::GetImageSize();
1124 void SetPropertyImage( wxPGPropArg id
, wxBitmap
& bmp
)
1126 wxPG_PROP_ARG_CALL_PROLOG()
1127 p
->SetValueImage(bmp
);
1131 /** Sets max length of property's text.
1133 bool SetPropertyMaxLength( wxPGPropArg id
, int maxLen
);
1135 #if wxUSE_VALIDATORS
1136 /** Sets validator of a property.
1138 void SetPropertyValidator( wxPGPropArg id
, const wxValidator
& validator
)
1140 wxPG_PROP_ARG_CALL_PROLOG()
1141 p
->SetValidator(validator
);
1145 /** Sets value (long integer) of a property.
1147 void SetPropertyValue( wxPGPropArg id
, long value
)
1150 SetPropVal( id
, v
);
1153 /** Sets value (integer) of a property.
1155 void SetPropertyValue( wxPGPropArg id
, int value
)
1157 wxVariant
v((long)value
);
1158 SetPropVal( id
, v
);
1160 /** Sets value (floating point) of a property.
1162 void SetPropertyValue( wxPGPropArg id
, double value
)
1165 SetPropVal( id
, v
);
1167 /** Sets value (bool) of a property.
1169 void SetPropertyValue( wxPGPropArg id
, bool value
)
1172 SetPropVal( id
, v
);
1175 void SetPropertyValue( wxPGPropArg id
, const wchar_t* value
)
1177 SetPropertyValueString( id
, wxString(value
) );
1180 void SetPropertyValue( wxPGPropArg id
, const char* value
)
1182 SetPropertyValueString( id
, wxString(value
) );
1184 void SetPropertyValue( wxPGPropArg id
, const wxString
& value
)
1186 SetPropertyValueString( id
, value
);
1189 /** Sets value (wxArrayString) of a property.
1191 void SetPropertyValue( wxPGPropArg id
, const wxArrayString
& value
)
1194 SetPropVal( id
, v
);
1198 void SetPropertyValue( wxPGPropArg id
, const wxDateTime
& value
)
1201 SetPropVal( id
, v
);
1205 /** Sets value (wxObject*) of a property.
1207 void SetPropertyValue( wxPGPropArg id
, wxObject
* value
)
1210 SetPropVal( id
, v
);
1213 void SetPropertyValue( wxPGPropArg id
, wxObject
& value
)
1215 wxVariant
v(&value
);
1216 SetPropVal( id
, v
);
1220 /** Sets value (wxLongLong&) of a property.
1222 void SetPropertyValue( wxPGPropArg id
, wxLongLong_t value
)
1224 wxVariant v
= WXVARIANT(wxLongLong(value
));
1225 SetPropVal( id
, v
);
1227 /** Sets value (wxULongLong&) of a property.
1229 void SetPropertyValue( wxPGPropArg id
, wxULongLong_t value
)
1231 wxVariant v
= WXVARIANT(wxULongLong(value
));
1232 SetPropVal( id
, v
);
1236 /** Sets value (wxArrayInt&) of a property.
1238 void SetPropertyValue( wxPGPropArg id
, const wxArrayInt
& value
)
1240 wxVariant v
= WXVARIANT(value
);
1241 SetPropVal( id
, v
);
1244 /** Sets value (wxString) of a property.
1247 This method uses wxPGProperty::SetValueFromString, which all properties
1248 should implement. This means that there should not be a type error,
1249 and instead the string is converted to property's actual value type.
1251 void SetPropertyValueString( wxPGPropArg id
, const wxString
& value
);
1253 /** Sets value (wxVariant&) of a property.
1256 Use wxPropertyGrid::ChangePropertyValue() instead if you need to run
1257 through validation process and send property change event.
1259 void SetPropertyValue( wxPGPropArg id
, wxVariant value
)
1261 SetPropVal( id
, value
);
1264 /** Sets value (wxVariant&) of a property. Same as SetPropertyValue, but
1265 accepts reference. */
1266 void SetPropVal( wxPGPropArg id
, wxVariant
& value
);
1268 /** Adjusts how wxPropertyGrid behaves when invalid value is entered
1271 See @link vfbflags list of valid flags values@endlink
1273 void SetValidationFailureBehavior( int vfbFlags
);
1276 Sorts all properties recursively.
1279 This can contain any of the following options:
1280 wxPG_SORT_TOP_LEVEL_ONLY: Only sort categories and their
1281 immediate children. Sorting done by wxPG_AUTO_SORT option
1284 @see SortChildren, wxPropertyGrid::SetSortFunction
1286 void Sort( int flags
= 0 );
1289 Sorts children of a property.
1292 Name or pointer to a property.
1295 This can contain any of the following options:
1296 wxPG_RECURSE: Sorts recursively.
1298 @see Sort, wxPropertyGrid::SetSortFunction
1300 void SortChildren( wxPGPropArg id
, int flags
= 0 )
1302 wxPG_PROP_ARG_CALL_PROLOG()
1303 m_pState
->DoSortChildren(p
, flags
);
1306 // GetPropertyByName With nice assertion error message.
1307 wxPGProperty
* GetPropertyByNameA( const wxString
& name
) const;
1309 static wxPGEditor
* GetEditorByName( const wxString
& editorName
);
1311 // NOTE: This function reselects the property and may cause
1312 // excess flicker, so to just call Refresh() on a rect
1313 // of single property, call DrawItem() instead.
1314 virtual void RefreshProperty( wxPGProperty
* p
) = 0;
1318 bool DoClearSelection( bool validation
= false,
1322 In derived class, implement to set editable state component with
1323 given name to given value.
1325 virtual bool SetEditableStateItem( const wxString
& name
, wxVariant value
)
1333 In derived class, implement to return editable state component with
1336 virtual wxVariant
GetEditableStateItem( const wxString
& name
) const
1339 return wxNullVariant
;
1342 // Returns page state data for given (sub) page (-1 means current page).
1343 virtual wxPropertyGridPageState
* GetPageState( int pageIndex
) const
1345 if ( pageIndex
<= 0 )
1350 virtual bool DoSelectPage( int WXUNUSED(index
) ) { return true; }
1352 // Default call's m_pState's BaseGetPropertyByName
1353 virtual wxPGProperty
* DoGetPropertyByName( const wxString
& name
) const;
1355 // Deriving classes must set this (it must be only or current page).
1356 wxPropertyGridPageState
* m_pState
;
1358 // Intermediate version needed due to wxVariant copying inefficiency
1359 void DoSetPropertyAttribute( wxPGPropArg id
,
1360 const wxString
& name
,
1361 wxVariant
& value
, long argFlags
);
1363 // Empty string object to return from member functions returning const
1365 wxString m_emptyString
;
1368 // Cannot be GetGrid() due to ambiguity issues.
1369 wxPropertyGrid
* GetPropertyGrid()
1373 return m_pState
->GetGrid();
1376 // Cannot be GetGrid() due to ambiguity issues.
1377 const wxPropertyGrid
* GetPropertyGrid() const
1381 return static_cast<const wxPropertyGrid
*>(m_pState
->GetGrid());
1384 friend class wxPropertyGrid
;
1385 friend class wxPropertyGridManager
;
1388 #endif // wxUSE_PROPGRID
1390 #endif // __WX_PROPGRID_PROPGRIDIFACE_H__