Property that manages a list of strings.
__init__ |
|
ArrayStringToString |
Generates contents for string dst based on the contents of list of strings src. |
ConvertArrayToString |
|
CreateEditorDialog |
|
DoSetAttribute |
Reimplement this member function to add special handling for attributes of this property. |
GenerateValueAsString |
|
OnButtonClick |
|
OnCustomStringEdit |
|
OnEvent |
Events received by editor widgets are processed here. |
OnSetValue |
This virtual function is called after m_value has been set. |
StringToValue |
Converts text into Variant value appropriate for this property. |
ValueToString |
Converts property value into a text representation. |
wx.propgrid.
ArrayStringProperty
(PGProperty)¶Possible constructors:
ArrayStringProperty(label=PG_LABEL, name=PG_LABEL, value=[])
Property that manages a list of strings.
__init__
(self, label=PG_LABEL, name=PG_LABEL, value=[])¶Parameters: |
|
---|
ArrayStringToString
(dst, src, delimiter, flags)¶Generates contents for string dst based on the contents of list of strings src.
Parameters: |
|
---|
ConvertArrayToString
(self, arr, pString, delimiter)¶Parameters: |
|
---|
CreateEditorDialog
(self)¶Return type: | wx.propgrid.PGArrayEditorDialog |
---|
DoSetAttribute
(self, name, value)¶Reimplement this member function to add special handling for attributes of this property.
Parameters: |
|
---|---|
Return type: | bool |
Returns: | Return |
Note
To actually set property attribute values from the application, use wx.propgrid.PGProperty.SetAttribute
instead.
GenerateValueAsString
(self)¶OnButtonClick
(self, propgrid, primary, cbt)¶Parameters: |
|
---|---|
Return type: | bool |
OnCustomStringEdit
(self, parent, value)¶Parameters: |
|
---|---|
Return type: | bool |
OnEvent
(self, propgrid, wnd_primary, event)¶Events received by editor widgets are processed here.
Note that editor class usually processes most events. Some, such as button press events of TextCtrlAndButton class, can be handled here. Also, if custom handling for regular events is desired, then that can also be done (for example, wx.propgrid.SystemColourProperty custom handles wxEVT_CHOICE
to display colour picker dialog when ‘custom’ selection is made).
If the event causes value to be changed, SetValueInEvent
should be called to set the new value.
The parameter event is the associated wx.Event.
Parameters: |
|
---|
return True
if any changes in value should be reported.
Return type: | bool |
---|
Note
OnSetValue
(self)¶This virtual function is called after m_value has been set.
Note
OnSetValue
will not be called.OnSetValue
provides a good opportunity to convert supported values into internal type.StringToValue
(self, variant, text, argFlags=0)¶Converts text into Variant value appropriate for this property.
Parameters: |
|
---|---|
Return type: | bool |
You might want to take into account that m_value is Null variant if property value is unspecified (which is usually only case if you explicitly enabled that sort behaviour).
Returns: | Returns True if resulting Variant value was different. |
---|
Note
Default implementation converts semicolon delimited tokens into child values. Only works for properties with children.
ValueToString
(self, value, argFlags=0)¶Converts property value into a text representation.
Parameters: |
|
---|---|
Return type: |
|
Note
Default implementation calls GenerateComposedValue
.