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 // -----------------------------------------------------------------------
24 /** @section wxPGPropArgCls
26 Most property grid functions have this type as their argument, as it can
27 convey a property by either a pointer or name.
29 class WXDLLIMPEXP_PROPGRID wxPGPropArgCls
33 wxPGPropArgCls( const wxPGProperty
* property
)
35 m_ptr
.property
= (wxPGProperty
*) property
;
38 wxPGPropArgCls( const wxString
& str
)
40 m_ptr
.stringName
= &str
;
43 wxPGPropArgCls( const wxPGPropArgCls
& id
)
48 // This is only needed for wxPython bindings
49 wxPGPropArgCls( wxString
* str
, bool WXUNUSED(deallocPtr
) )
51 m_ptr
.stringName
= str
;
52 m_flags
= IsWxString
| OwnsWxString
;
56 if ( m_flags
& OwnsWxString
)
57 delete m_ptr
.stringName
;
59 wxPGProperty
* GetPtr() const
61 wxCHECK( m_flags
== IsProperty
, NULL
);
62 return m_ptr
.property
;
64 wxPGPropArgCls( const char* str
)
70 wxPGPropArgCls( const wchar_t* str
)
72 m_ptr
.wcharName
= str
;
76 /** This constructor is required for NULL. */
79 m_ptr
.property
= NULL
;
82 wxPGProperty
* GetPtr( wxPropertyGridInterface
* iface
) const;
83 wxPGProperty
* GetPtr( const wxPropertyGridInterface
* iface
) const
85 return GetPtr((wxPropertyGridInterface
*)iface
);
87 wxPGProperty
* GetPtr0() const { return m_ptr
.property
; }
88 bool HasName() const { return (m_flags
!= IsProperty
); }
89 const wxString
& GetName() const { return *m_ptr
.stringName
; }
103 wxPGProperty
* property
;
104 const char* charName
;
106 const wchar_t* wcharName
;
108 const wxString
* stringName
;
110 unsigned char m_flags
;
115 typedef const wxPGPropArgCls
& wxPGPropArg
;
117 // -----------------------------------------------------------------------
120 void wxPGTypeOperationFailed( const wxPGProperty
* p
,
121 const wxString
& typestr
,
122 const wxString
& op
);
124 void wxPGGetFailed( const wxPGProperty
* p
, const wxString
& typestr
);
126 // -----------------------------------------------------------------------
128 // Helper macro that does necessary preparations when calling
129 // some wxPGProperty's member function.
130 #define wxPG_PROP_ARG_CALL_PROLOG_0(PROPERTY) \
131 PROPERTY *p = (PROPERTY*)id.GetPtr(this); \
134 #define wxPG_PROP_ARG_CALL_PROLOG_RETVAL_0(PROPERTY, RETVAL) \
135 PROPERTY *p = (PROPERTY*)id.GetPtr(this); \
136 if ( !p ) return RETVAL;
138 #define wxPG_PROP_ARG_CALL_PROLOG() \
139 wxPG_PROP_ARG_CALL_PROLOG_0(wxPGProperty)
141 #define wxPG_PROP_ARG_CALL_PROLOG_RETVAL(RVAL) \
142 wxPG_PROP_ARG_CALL_PROLOG_RETVAL_0(wxPGProperty, RVAL)
144 #define wxPG_PROP_ID_CONST_CALL_PROLOG() \
145 wxPG_PROP_ARG_CALL_PROLOG_0(const wxPGProperty)
147 #define wxPG_PROP_ID_CONST_CALL_PROLOG_RETVAL(RVAL) \
148 wxPG_PROP_ARG_CALL_PROLOG_RETVAL_0(const wxPGProperty, RVAL)
150 // -----------------------------------------------------------------------
153 /** @class wxPropertyGridInterface
155 Most of the shared property manipulation interface shared by wxPropertyGrid,
156 wxPropertyGridPage, and wxPropertyGridManager is defined in this class.
159 - In separate wxPropertyGrid component this class was known as
160 wxPropertyContainerMethods.
165 class WXDLLIMPEXP_PROPGRID wxPropertyGridInterface
170 virtual ~wxPropertyGridInterface() { }
173 Appends property to the list.
175 wxPropertyGrid assumes ownership of the object.
176 Becomes child of most recently added category.
178 - wxPropertyGrid takes the ownership of the property pointer.
179 - If appending a category with name identical to a category already in
180 the wxPropertyGrid, then newly created category is deleted, and most
181 recently added category (under which properties are appended) is set
182 to the one with same name. This allows easier adding of items to same
183 categories in multiple passes.
184 - Does not automatically redraw the control, so you may need to call
185 Refresh when calling this function after control has been shown for
188 wxPGProperty
* Append( wxPGProperty
* property
);
190 wxPGProperty
* AppendIn( wxPGPropArg id
, wxPGProperty
* newproperty
);
193 In order to add new items into a property with fixed children (for
194 instance, wxFlagsProperty), you need to call this method. After
195 populating has been finished, you need to call EndAddChildren.
197 void BeginAddChildren( wxPGPropArg id
);
199 /** Deletes all properties.
201 virtual void Clear() = 0;
204 Clears current selection, if any.
207 If set to @false, deselecting the property will always work,
208 even if its editor had invalid value in it.
210 @return Returns @true if successful or if there was no selection. May
211 fail if validation was enabled and active editor had invalid
214 @remarks In wxPropertyGrid 1.4, this member function used to send
215 wxPG_EVT_SELECTED. In wxWidgets 2.9 and later, it no longer
218 bool ClearSelection( bool validation
= false );
220 /** Resets modified status of all properties.
222 void ClearModifiedStatus();
224 /** Collapses given category or property with children.
225 Returns true if actually collapses.
227 bool Collapse( wxPGPropArg id
);
229 /** Collapses all items that can be collapsed.
232 Return false if failed (may fail if editor value cannot be validated).
234 bool CollapseAll() { return ExpandAll(false); }
237 Changes value of a property, as if from an editor.
238 Use this instead of SetPropertyValue() if you need the value to run
239 through validation process, and also send the property change event.
242 Returns true if value was successfully changed.
244 bool ChangePropertyValue( wxPGPropArg id
, wxVariant newValue
);
247 Deletes a property by id. If category is deleted, all children are
248 automatically deleted as well.
250 void DeleteProperty( wxPGPropArg id
);
253 Removes and returns a property.
256 Pointer or name of a property.
258 @remarks Removed property cannot have any children.
260 wxPGProperty
* RemoveProperty( wxPGPropArg id
);
262 /** Disables property. */
263 bool DisableProperty( wxPGPropArg id
) { return EnableProperty(id
,false); }
266 Returns true if all property grid data changes have been committed.
268 Usually only returns false if value in active editor has been
269 invalidated by a wxValidator.
271 bool EditorValidate();
274 Enables or disables property, depending on whether enable is true or
277 bool EnableProperty( wxPGPropArg id
, bool enable
= true );
279 /** Called after population of property with fixed children has finished.
281 void EndAddChildren( wxPGPropArg id
);
283 /** Expands given category or property with children.
284 Returns true if actually expands.
286 bool Expand( wxPGPropArg id
);
288 /** Expands all items that can be expanded.
290 bool ExpandAll( bool expand
= true );
292 /** Returns id of first child of given property.
294 Does not return sub-properties!
296 wxPGProperty
* GetFirstChild( wxPGPropArg id
)
298 wxPG_PROP_ARG_CALL_PROLOG_RETVAL(wxNullProperty
)
300 if ( !p
->GetChildCount() || p
->HasFlag(wxPG_PROP_AGGREGATE
) )
301 return wxNullProperty
;
307 /** Returns iterator class instance.
309 See @ref propgrid_iterator_flags. Value wxPG_ITERATE_DEFAULT causes
310 iteration over everything except private child properties.
312 Property to start iteration from. If NULL, then first child of root
315 Either wxTOP or wxBOTTOM. wxTOP will indicate that iterations start
316 from the first property from the top, and wxBOTTOM means that the
317 iteration will instead begin from bottommost valid item.
319 wxPropertyGridIterator
GetIterator( int flags
= wxPG_ITERATE_DEFAULT
,
320 wxPGProperty
* firstProp
= NULL
)
322 return wxPropertyGridIterator( m_pState
, flags
, firstProp
);
325 wxPropertyGridConstIterator
326 GetIterator( int flags
= wxPG_ITERATE_DEFAULT
,
327 wxPGProperty
* firstProp
= NULL
) const
329 return wxPropertyGridConstIterator( m_pState
, flags
, firstProp
);
332 wxPropertyGridIterator
GetIterator( int flags
, int startPos
)
334 return wxPropertyGridIterator( m_pState
, flags
, startPos
);
337 wxPropertyGridConstIterator
GetIterator( int flags
, int startPos
) const
339 return wxPropertyGridConstIterator( m_pState
, flags
, startPos
);
343 /** Returns id of first item, whether it is a category or property.
345 @link iteratorflags List of iterator flags@endlink
347 wxPGProperty
* GetFirst( int flags
= wxPG_ITERATE_ALL
)
349 wxPropertyGridIterator
it( m_pState
, flags
, wxNullProperty
, 1 );
353 const wxPGProperty
* GetFirst( int flags
= wxPG_ITERATE_ALL
) const
355 return ((wxPropertyGridInterface
*)this)->GetFirst(flags
);
359 Returns pointer to a property with given name (case-sensitive).
360 If there is no property with such name, @NULL pointer is returned.
362 @remarks Properties which have non-category, non-root parent
363 can not be accessed globally by their name. Instead, use
364 "<property>.<subproperty>" instead of "<subproperty>".
366 wxPGProperty
* GetProperty( const wxString
& name
) const
368 return GetPropertyByName(name
);
371 /** Returns map-like storage of property's attributes.
373 Note that if extra style wxPG_EX_WRITEONLY_BUILTIN_ATTRIBUTES is set,
374 then builtin-attributes are not included in the storage.
376 const wxPGAttributeStorage
& GetPropertyAttributes( wxPGPropArg id
) const
378 // If 'id' refers to invalid property, then we will return dummy
379 // attributes (ie. root property's attributes, which contents should
380 // should always be empty and of no consequence).
381 wxPG_PROP_ARG_CALL_PROLOG_RETVAL(m_pState
->DoGetRoot()->GetAttributes());
382 return p
->GetAttributes();
385 /** Adds to 'targetArr' pointers to properties that have given
386 flags 'flags' set. However, if 'inverse' is set to true, then
387 only properties without given flags are stored.
389 Property flags to use.
391 Iterator flags to use. Default is everything expect private children.
393 void GetPropertiesWithFlag( wxArrayPGProperty
* targetArr
,
394 wxPGProperty::FlagType flags
,
395 bool inverse
= false,
396 int iterFlags
= wxPG_ITERATE_PROPERTIES
|
397 wxPG_ITERATE_HIDDEN
|
398 wxPG_ITERATE_CATEGORIES
) const;
400 /** Returns value of given attribute. If none found, returns NULL-variant.
402 wxVariant
GetPropertyAttribute( wxPGPropArg id
,
403 const wxString
& attrName
) const
405 wxPG_PROP_ARG_CALL_PROLOG_RETVAL(wxNullVariant
)
406 return p
->GetAttribute(attrName
);
409 /** Returns pointer of property's nearest parent category. If no category
412 wxPropertyCategory
* GetPropertyCategory( wxPGPropArg id
) const
414 wxPG_PROP_ID_CONST_CALL_PROLOG_RETVAL(NULL
)
415 return m_pState
->GetPropertyCategory(p
);
419 /** Returns client data (void*) of a property. */
420 void* GetPropertyClientData( wxPGPropArg id
) const
422 wxPG_PROP_ARG_CALL_PROLOG_RETVAL(NULL
)
423 return p
->GetClientData();
428 Returns first property which label matches given string.
430 NULL if none found. Note that this operation is extremely slow when
431 compared to GetPropertyByName().
433 wxPGProperty
* GetPropertyByLabel( const wxString
& label
) const;
435 /** Returns property with given name. NULL if none found.
437 wxPGProperty
* GetPropertyByName( const wxString
& name
) const;
439 /** Returns child property 'subname' of property 'name'. Same as
440 calling GetPropertyByName("name.subname"), albeit slightly faster.
442 wxPGProperty
* GetPropertyByName( const wxString
& name
,
443 const wxString
& subname
) const;
445 /** Returns property's editor. */
446 const wxPGEditor
* GetPropertyEditor( wxPGPropArg id
) const
448 wxPG_PROP_ARG_CALL_PROLOG_RETVAL(NULL
)
449 return p
->GetEditorClass();
452 /** Returns help string associated with a property. */
453 wxString
GetPropertyHelpString( wxPGPropArg id
) const
455 wxPG_PROP_ARG_CALL_PROLOG_RETVAL(m_emptyString
)
456 return p
->GetHelpString();
459 /** Returns property's custom value image (NULL of none). */
460 wxBitmap
* GetPropertyImage( wxPGPropArg id
) const
462 wxPG_PROP_ARG_CALL_PROLOG_RETVAL(NULL
)
463 return p
->GetValueImage();
466 /** Returns label of a property. */
467 const wxString
& GetPropertyLabel( wxPGPropArg id
)
469 wxPG_PROP_ARG_CALL_PROLOG_RETVAL(m_emptyString
)
470 return p
->GetLabel();
473 /** Returns name of a property, by which it is globally accessible. */
474 wxString
GetPropertyName( wxPGProperty
* property
)
476 return property
->GetName();
479 /** Returns parent item of a property. */
480 wxPGProperty
* GetPropertyParent( wxPGPropArg id
)
482 wxPG_PROP_ARG_CALL_PROLOG_RETVAL(wxNullProperty
)
483 return p
->GetParent();
487 /** Returns validator of a property as a reference, which you
488 can pass to any number of SetPropertyValidator.
490 wxValidator
* GetPropertyValidator( wxPGPropArg id
)
492 wxPG_PROP_ARG_CALL_PROLOG_RETVAL(NULL
)
493 return p
->GetValidator();
497 /** Returns value as wxVariant. To get wxObject pointer from it,
498 you will have to use WX_PG_VARIANT_TO_WXOBJECT(VARIANT,CLASSNAME) macro.
500 If property value is unspecified, Null variant is returned.
502 wxVariant
GetPropertyValue( wxPGPropArg id
)
504 wxPG_PROP_ARG_CALL_PROLOG_RETVAL(wxVariant())
505 return p
->GetValue();
508 wxString
GetPropertyValueAsString( wxPGPropArg id
) const;
509 long GetPropertyValueAsLong( wxPGPropArg id
) const;
510 unsigned long GetPropertyValueAsULong( wxPGPropArg id
) const
512 return (unsigned long) GetPropertyValueAsLong(id
);
515 int GetPropertyValueAsInt( wxPGPropArg id
) const
516 { return (int)GetPropertyValueAsLong(id
); }
518 bool GetPropertyValueAsBool( wxPGPropArg id
) const;
519 double GetPropertyValueAsDouble( wxPGPropArg id
) const;
521 #define wxPG_PROP_ID_GETPROPVAL_CALL_PROLOG_RETVAL(TYPENAME, DEFVAL) \
522 wxPG_PROP_ARG_CALL_PROLOG_RETVAL(DEFVAL) \
523 wxString typeName(wxS(TYPENAME)); \
524 wxVariant value = p->GetValue(); \
525 if ( value.GetType() != typeName ) \
527 wxPGGetFailed(p, typeName); \
531 #define wxPG_PROP_ID_GETPROPVAL_CALL_PROLOG_RETVAL_WFALLBACK(TYPENAME, DEFVAL) \
532 wxPG_PROP_ARG_CALL_PROLOG_RETVAL(DEFVAL) \
533 wxVariant value = p->GetValue(); \
534 if ( value.GetType() != wxS(TYPENAME) ) \
537 wxArrayString GetPropertyValueAsArrayString( wxPGPropArg id ) const
539 wxPG_PROP_ID_GETPROPVAL_CALL_PROLOG_RETVAL("arrstring",
541 return value
.GetArrayString();
545 wxLongLong_t
GetPropertyValueAsLongLong( wxPGPropArg id
) const
547 wxPG_PROP_ARG_CALL_PROLOG_RETVAL(0)
548 return p
->GetValue().GetLongLong().GetValue();
551 wxULongLong_t
GetPropertyValueAsULongLong( wxPGPropArg id
) const
553 wxPG_PROP_ARG_CALL_PROLOG_RETVAL(0)
554 return p
->GetValue().GetULongLong().GetValue();
558 wxArrayInt
GetPropertyValueAsArrayInt( wxPGPropArg id
) const
560 wxPG_PROP_ID_GETPROPVAL_CALL_PROLOG_RETVAL("wxArrayInt",
568 wxDateTime
GetPropertyValueAsDateTime( wxPGPropArg id
) const
570 wxPG_PROP_ID_GETPROPVAL_CALL_PROLOG_RETVAL("datetime",
572 return value
.GetDateTime();
577 /** Returns a wxVariant list containing wxVariant versions of all
578 property values. Order is not guaranteed.
580 Use wxPG_KEEP_STRUCTURE to retain category structure; each sub
581 category will be its own wxVariantList of wxVariant.
582 Use wxPG_INC_ATTRIBUTES to include property attributes as well.
583 Each attribute will be stored as list variant named
584 "@@<propname>@@attr."
587 wxVariant
GetPropertyValues( const wxString
& listname
= wxEmptyString
,
588 wxPGProperty
* baseparent
= NULL
, long flags
= 0 ) const
590 return m_pState
->DoGetPropertyValues(listname
, baseparent
, flags
);
594 /** Returns currently selected property. */
595 wxPGProperty
* GetSelection() const
597 return m_pState
->GetSelection();
601 wxPropertyGridPageState
* GetState() const { return m_pState
; }
604 /** Similar to GetIterator(), but instead returns wxPGVIterator instance,
605 which can be useful for forward-iterating through arbitrary property
609 See @ref propgrid_iterator_flags.
611 virtual wxPGVIterator
GetVIterator( int flags
) const;
613 /** Hides or reveals a property.
615 If true, hides property, otherwise reveals it.
617 By default changes are applied recursively. Set this paramter
618 wxPG_DONT_RECURSE to prevent this.
620 bool HideProperty( wxPGPropArg id
,
622 int flags
= wxPG_RECURSE
);
624 #if wxPG_INCLUDE_ADVPROPS
625 /** Initializes *all* property types. Causes references to most object
626 files in the library, so calling this may cause significant increase
627 in executable size when linking with static library.
629 static void InitAllTypeHandlers();
631 static void InitAllTypeHandlers() { }
635 /** Inserts property to the property container.
638 New property is inserted just prior to this. Available only
639 in the first variant. There are two versions of this function
640 to allow this parameter to be either an id or name to
644 Pointer to the inserted property. wxPropertyGrid will take
645 ownership of this object.
648 New property is inserted under this category. Available only
649 in the second variant. There are two versions of this function
650 to allow this parameter to be either an id or name to
654 Index under category. Available only in the second variant.
655 If index is < 0, property is appended in category.
658 Returns id for the property,
662 - wxPropertyGrid takes the ownership of the property pointer.
664 - While Append may be faster way to add items, make note that when
665 both types of data storage (categoric and
666 non-categoric) are active, Insert becomes even more slow. This is
667 especially true if current mode is non-categoric.
674 wxPGProperty* my_cat_id = propertygrid->Append(
675 new wxPropertyCategory("My Category") );
679 // insert into category - using second variant
680 wxPGProperty* my_item_id_1 = propertygrid->Insert(
681 my_cat_id, 0, new wxStringProperty("My String 1") );
683 // insert before to first item - using first variant
684 wxPGProperty* my_item_id_2 = propertygrid->Insert(
685 my_item_id, new wxStringProperty("My String 2") );
690 wxPGProperty
* Insert( wxPGPropArg priorThis
, wxPGProperty
* newproperty
);
691 wxPGProperty
* Insert( wxPGPropArg parent
,
693 wxPGProperty
* newproperty
);
696 /** Returns true if property is a category. */
697 bool IsPropertyCategory( wxPGPropArg id
) const
699 wxPG_PROP_ARG_CALL_PROLOG_RETVAL(false)
700 return p
->IsCategory();
703 /** Returns true if property is enabled. */
704 bool IsPropertyEnabled( wxPGPropArg id
) const
706 wxPG_PROP_ARG_CALL_PROLOG_RETVAL(false)
707 return (!(p
->GetFlags() & wxPG_PROP_DISABLED
))?true:false;
711 Returns true if given property is expanded.
713 Naturally, always returns false for properties that cannot be expanded.
715 bool IsPropertyExpanded( wxPGPropArg id
) const;
718 Returns true if property has been modified after value set or modify
719 flag clear by software.
721 bool IsPropertyModified( wxPGPropArg id
) const
723 wxPG_PROP_ARG_CALL_PROLOG_RETVAL(false)
724 return ( (p
->GetFlags() & wxPG_PROP_MODIFIED
) ? true : false );
728 Returns true if property is shown (ie hideproperty with true not
731 bool IsPropertyShown( wxPGPropArg id
) const
733 wxPG_PROP_ARG_CALL_PROLOG_RETVAL(false)
734 return (!(p
->GetFlags() & wxPG_PROP_HIDDEN
))?true:false;
737 /** Returns true if property value is set to unspecified.
739 bool IsPropertyValueUnspecified( wxPGPropArg id
) const
741 wxPG_PROP_ARG_CALL_PROLOG_RETVAL(false)
742 return p
->IsValueUnspecified();
746 Disables (limit = true) or enables (limit = false) wxTextCtrl editor of
747 a property, if it is not the sole mean to edit the value.
749 void LimitPropertyEditing( wxPGPropArg id
, bool limit
= true );
751 /** If state is shown in it's grid, refresh it now.
753 virtual void RefreshGrid( wxPropertyGridPageState
* state
= NULL
);
755 #if wxPG_INCLUDE_ADVPROPS
757 Initializes additional property editors (SpinCtrl etc.). Causes
758 references to most object files in the library, so calling this may
759 cause significant increase in executable size when linking with static
762 static void RegisterAdditionalEditors();
764 static void RegisterAdditionalEditors() { }
767 /** Replaces property with id with newly created property. For example,
768 this code replaces existing property named "Flags" with one that
769 will have different set of items:
771 pg->ReplaceProperty("Flags",
772 wxFlagsProperty("Flags", wxPG_LABEL, newItems))
774 For more info, see wxPropertyGrid::Insert.
776 wxPGProperty
* ReplaceProperty( wxPGPropArg id
, wxPGProperty
* property
);
778 /** @anchor propgridinterface_editablestate_flags
780 Flags for wxPropertyGridInterface::SaveEditableState() and
781 wxPropertyGridInterface::RestoreEditableState().
783 enum EditableStateFlags
785 /** Include selected property. */
786 SelectionState
= 0x01,
787 /** Include expanded/collapsed property information. */
788 ExpandedState
= 0x02,
789 /** Include scrolled position. */
790 ScrollPosState
= 0x04,
791 /** Include selected page information.
792 Only applies to wxPropertyGridManager. */
794 /** Include splitter position. Stored for each page. */
795 SplitterPosState
= 0x10,
796 /** Include description box size.
797 Only applies to wxPropertyGridManager. */
801 Include all supported user editable state information.
802 This is usually the default value. */
803 AllStates
= SelectionState
|
812 Restores user-editable state.
814 See also wxPropertyGridInterface::SaveEditableState().
817 String generated by SaveEditableState.
820 Which parts to restore from source string. See @ref
821 propgridinterface_editablestate_flags "list of editable state
825 False if there was problem reading the string.
828 If some parts of state (such as scrolled or splitter position) fail to
829 restore correctly, please make sure that you call this function after
830 wxPropertyGrid size has been set (this may sometimes be tricky when
833 bool RestoreEditableState( const wxString
& src
,
834 int restoreStates
= AllStates
);
837 Used to acquire user-editable state (selected property, expanded
838 properties, scrolled position, splitter positions).
840 @param includedStates
841 Which parts of state to include. See @ref
842 propgridinterface_editablestate_flags "list of editable state flags".
844 wxString
SaveEditableState( int includedStates
= AllStates
) const;
847 Lets user to set the strings listed in the choice dropdown of a
848 wxBoolProperty. Defaults are "True" and "False", so changing them to,
849 say, "Yes" and "No" may be useful in some less technical applications.
851 static void SetBoolChoices( const wxString
& trueChoice
,
852 const wxString
& falseChoice
);
854 /** Sets an attribute for this property.
856 Text identifier of attribute. See @ref propgrid_property_attributes.
860 Optional. Use wxPG_RECURSE to set the attribute to child properties
863 void SetPropertyAttribute( wxPGPropArg id
,
864 const wxString
& attrName
,
868 DoSetPropertyAttribute(id
,attrName
,value
,argFlags
);
871 /** Sets property attribute for all applicapple properties.
872 Be sure to use this method only after all properties have been
875 void SetPropertyAttributeAll( const wxString
& attrName
, wxVariant value
);
878 Sets background colour of a property.
881 Property name or pointer.
884 New background colour.
887 If True, child properties are affected recursively. Property
888 categories are skipped if this flag is used.
890 void SetPropertyBackgroundColour( wxPGPropArg id
,
891 const wxColour
& colour
,
892 bool recursively
= true );
894 /** Resets text and background colours of given property.
896 void SetPropertyColoursToDefault( wxPGPropArg id
);
899 Sets text colour of a property.
902 Property name or pointer.
905 New background colour.
908 If True, child properties are affected recursively. Property
909 categories are skipped if this flag is used.
911 void SetPropertyTextColour( wxPGPropArg id
,
913 bool recursively
= true );
916 Returns background colour of first cell of a property.
918 wxColour
GetPropertyBackgroundColour( wxPGPropArg id
) const
920 wxPG_PROP_ARG_CALL_PROLOG_RETVAL(wxColour())
921 return p
->GetCell(0).GetBgCol();
925 Returns text colour of first cell of a property.
927 wxColour
GetPropertyTextColour( wxPGPropArg id
) const
929 wxPG_PROP_ARG_CALL_PROLOG_RETVAL(wxColour())
930 return p
->GetCell(0).GetFgCol();
933 /** Sets text, bitmap, and colours for given column's cell.
936 - You can set label cell by setting column to 0.
937 - You can use wxPG_LABEL as text to use default text for column.
939 void SetPropertyCell( wxPGPropArg id
,
941 const wxString
& text
= wxEmptyString
,
942 const wxBitmap
& bitmap
= wxNullBitmap
,
943 const wxColour
& fgCol
= wxNullColour
,
944 const wxColour
& bgCol
= wxNullColour
);
947 /** Sets client data (void*) of a property.
949 This untyped client data has to be deleted manually.
951 void SetPropertyClientData( wxPGPropArg id
, void* clientData
)
953 wxPG_PROP_ARG_CALL_PROLOG()
954 p
->SetClientData(clientData
);
957 /** Sets editor for a property.
960 For builtin editors, use wxPGEditor_X, where X is builtin editor's
961 name (TextCtrl, Choice, etc. see wxPGEditor documentation for full
964 For custom editors, use pointer you received from
965 wxPropertyGrid::RegisterEditorClass().
967 void SetPropertyEditor( wxPGPropArg id
, const wxPGEditor
* editor
)
969 wxPG_PROP_ARG_CALL_PROLOG()
970 wxCHECK_RET( editor
, wxT("unknown/NULL editor") );
971 p
->SetEditor(editor
);
976 /** Sets editor control of a property. As editor argument, use
977 editor name string, such as "TextCtrl" or "Choice".
979 void SetPropertyEditor( wxPGPropArg id
, const wxString
& editorName
)
981 SetPropertyEditor(id
,GetEditorByName(editorName
));
984 /** Sets label of a property.
986 void SetPropertyLabel( wxPGPropArg id
, const wxString
& newproplabel
);
989 Sets name of a property.
992 Name or pointer of property which name to change.
995 New name for property.
997 void SetPropertyName( wxPGPropArg id
, const wxString
& newName
)
999 wxPG_PROP_ARG_CALL_PROLOG()
1000 m_pState
->DoSetPropertyName( p
, newName
);
1004 Sets property (and, recursively, its children) to have read-only value.
1005 In other words, user cannot change the value in the editor, but they
1008 This is mainly for use with textctrl editor. Not all other editors fully
1011 By default changes are applied recursively. Set this paramter
1012 wxPG_DONT_RECURSE to prevent this.
1014 void SetPropertyReadOnly( wxPGPropArg id
,
1016 int flags
= wxPG_RECURSE
)
1018 wxPG_PROP_ARG_CALL_PROLOG()
1019 if ( flags
& wxPG_RECURSE
)
1020 p
->SetFlagRecursively(wxPG_PROP_READONLY
, set
);
1022 p
->ChangeFlag(wxPG_PROP_READONLY
, set
);
1025 /** Sets property's value to unspecified.
1026 If it has children (it may be category), then the same thing is done to
1029 void SetPropertyValueUnspecified( wxPGPropArg id
)
1031 wxPG_PROP_ARG_CALL_PROLOG()
1032 wxVariant nullVariant
;
1033 SetPropVal(p
, nullVariant
);
1038 Sets property values from a list of wxVariants.
1040 void SetPropertyValues( const wxVariantList
& list
,
1041 wxPGPropArg defaultCategory
= wxNullProperty
)
1044 if ( defaultCategory
.HasName() ) p
= defaultCategory
.GetPtr(this);
1045 else p
= defaultCategory
.GetPtr0();
1046 m_pState
->DoSetPropertyValues(list
, p
);
1050 Sets property values from a list of wxVariants.
1052 void SetPropertyValues( const wxVariant
& list
,
1053 wxPGPropArg defaultCategory
= wxNullProperty
)
1055 SetPropertyValues(list
.GetList(),defaultCategory
);
1059 /** Associates the help string with property.
1061 By default, text is shown either in the manager's "description"
1062 text box or in the status bar. If extra window style
1063 wxPG_EX_HELP_AS_TOOLTIPS is used, then the text will appear as a
1066 void SetPropertyHelpString( wxPGPropArg id
, const wxString
& helpString
)
1068 wxPG_PROP_ARG_CALL_PROLOG()
1069 p
->SetHelpString(helpString
);
1072 /** Set wxBitmap in front of the value.
1074 - Bitmap will be scaled to a size returned by
1075 wxPropertyGrid::GetImageSize();
1077 void SetPropertyImage( wxPGPropArg id
, wxBitmap
& bmp
)
1079 wxPG_PROP_ARG_CALL_PROLOG()
1080 p
->SetValueImage(bmp
);
1084 /** Sets max length of property's text.
1086 bool SetPropertyMaxLength( wxPGPropArg id
, int maxLen
);
1088 #if wxUSE_VALIDATORS
1089 /** Sets validator of a property.
1091 void SetPropertyValidator( wxPGPropArg id
, const wxValidator
& validator
)
1093 wxPG_PROP_ARG_CALL_PROLOG()
1094 p
->SetValidator(validator
);
1099 /** Sets value (long integer) of a property.
1101 void SetPropertyValue( wxPGPropArg id
, long value
)
1104 SetPropVal( id
, v
);
1107 /** Sets value (integer) of a property.
1109 void SetPropertyValue( wxPGPropArg id
, int value
)
1111 wxVariant
v((long)value
);
1112 SetPropVal( id
, v
);
1114 /** Sets value (floating point) of a property.
1116 void SetPropertyValue( wxPGPropArg id
, double value
)
1119 SetPropVal( id
, v
);
1121 /** Sets value (bool) of a property.
1123 void SetPropertyValue( wxPGPropArg id
, bool value
)
1126 SetPropVal( id
, v
);
1129 void SetPropertyValue( wxPGPropArg id
, const wchar_t* value
)
1131 SetPropertyValueString( id
, wxString(value
) );
1134 void SetPropertyValue( wxPGPropArg id
, const char* value
)
1136 SetPropertyValueString( id
, wxString(value
) );
1138 void SetPropertyValue( wxPGPropArg id
, const wxString
& value
)
1140 SetPropertyValueString( id
, value
);
1143 /** Sets value (wxArrayString) of a property.
1145 void SetPropertyValue( wxPGPropArg id
, const wxArrayString
& value
)
1148 SetPropVal( id
, v
);
1152 void SetPropertyValue( wxPGPropArg id
, const wxDateTime
& value
)
1155 SetPropVal( id
, v
);
1159 /** Sets value (wxObject*) of a property.
1161 void SetPropertyValue( wxPGPropArg id
, wxObject
* value
)
1164 SetPropVal( id
, v
);
1167 void SetPropertyValue( wxPGPropArg id
, wxObject
& value
)
1169 wxVariant
v(&value
);
1170 SetPropVal( id
, v
);
1174 /** Sets value (wxLongLong&) of a property.
1176 void SetPropertyValue( wxPGPropArg id
, wxLongLong_t value
)
1178 wxVariant v
= WXVARIANT(wxLongLong(value
));
1179 SetPropVal( id
, v
);
1181 /** Sets value (wxULongLong&) of a property.
1183 void SetPropertyValue( wxPGPropArg id
, wxULongLong_t value
)
1185 wxVariant v
= WXVARIANT(wxULongLong(value
));
1186 SetPropVal( id
, v
);
1190 /** Sets value (wxArrayInt&) of a property.
1192 void SetPropertyValue( wxPGPropArg id
, const wxArrayInt
& value
)
1194 wxVariant v
= WXVARIANT(value
);
1195 SetPropVal( id
, v
);
1199 /** Sets value (wxString) of a property.
1202 This method uses wxPGProperty::SetValueFromString, which all properties
1203 should implement. This means that there should not be a type error,
1204 and instead the string is converted to property's actual value type.
1206 void SetPropertyValueString( wxPGPropArg id
, const wxString
& value
);
1208 /** Sets value (wxVariant&) of a property.
1211 Use wxPropertyGrid::ChangePropertyValue() instead if you need to run
1212 through validation process and send property change event.
1214 void SetPropertyValue( wxPGPropArg id
, wxVariant value
)
1216 SetPropVal( id
, value
);
1220 /** Sets value (wxVariant&) of a property. Same as SetPropertyValue, but
1221 accepts reference. */
1222 void SetPropVal( wxPGPropArg id
, wxVariant
& value
);
1225 /** Adjusts how wxPropertyGrid behaves when invalid value is entered
1228 See @link vfbflags list of valid flags values@endlink
1230 void SetValidationFailureBehavior( int vfbFlags
);
1233 Sorts all properties recursively.
1236 This can contain any of the following options:
1237 wxPG_SORT_TOP_LEVEL_ONLY: Only sort categories and their
1238 immediate children. Sorting done by wxPG_AUTO_SORT option
1241 @see SortChildren, wxPropertyGrid::SetSortFunction
1243 void Sort( int flags
= 0 );
1246 Sorts children of a property.
1249 Name or pointer to a property.
1252 This can contain any of the following options:
1253 wxPG_RECURSE: Sorts recursively.
1255 @see Sort, wxPropertyGrid::SetSortFunction
1257 void SortChildren( wxPGPropArg id
, int flags
= 0 )
1259 wxPG_PROP_ARG_CALL_PROLOG()
1260 m_pState
->DoSortChildren(p
, flags
);
1263 // GetPropertyByName With nice assertion error message.
1264 wxPGProperty
* GetPropertyByNameA( const wxString
& name
) const;
1266 static wxPGEditor
* GetEditorByName( const wxString
& editorName
);
1268 virtual void RefreshProperty( wxPGProperty
* p
) = 0;
1273 In derived class, implement to set editable state component with
1274 given name to given value.
1276 virtual bool SetEditableStateItem( const wxString
& name
, wxVariant value
)
1284 In derived class, implement to return editable state component with
1287 virtual wxVariant
GetEditableStateItem( const wxString
& name
) const
1290 return wxNullVariant
;
1293 // Returns page state data for given (sub) page (-1 means current page).
1294 virtual wxPropertyGridPageState
* GetPageState( int pageIndex
) const
1296 if ( pageIndex
<= 0 )
1301 virtual bool DoSelectPage( int WXUNUSED(index
) ) { return true; }
1303 // Default call's m_pState's BaseGetPropertyByName
1304 virtual wxPGProperty
* DoGetPropertyByName( const wxString
& name
) const;
1308 // Deriving classes must set this (it must be only or current page).
1309 wxPropertyGridPageState
* m_pState
;
1311 // Intermediate version needed due to wxVariant copying inefficiency
1312 void DoSetPropertyAttribute( wxPGPropArg id
,
1313 const wxString
& name
,
1314 wxVariant
& value
, long argFlags
);
1316 // Empty string object to return from member functions returning const
1318 wxString m_emptyString
;
1321 // Cannot be GetGrid() due to ambiguity issues.
1322 wxPropertyGrid
* GetPropertyGrid()
1324 return m_pState
->GetGrid();
1327 // Cannot be GetGrid() due to ambiguity issues.
1328 const wxPropertyGrid
* GetPropertyGrid() const
1330 return (const wxPropertyGrid
*) m_pState
->GetGrid();
1332 #endif // #ifndef SWIG
1334 friend class wxPropertyGrid
;
1335 friend class wxPropertyGridManager
;
1338 #endif // wxUSE_PROPGRID
1340 #endif // __WX_PROPGRID_PROPGRIDIFACE_H__