allow customizing the string values returned by wxGridCellBoolEditor::GetValue() (feature request 1557790)

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@42567 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Vadim Zeitlin
2006-10-28 13:57:38 +00:00
parent a4e73390a6
commit 9c71a1386d
3 changed files with 60 additions and 15 deletions

View File

@@ -33,6 +33,25 @@ The editor for boolean data.
Default constructor.
\membersection{wxGridCellBoolEditor::IsTrueValue}\label{wxgridcellbooleditoristruevalue}
\func{static bool}{IsTrueValue}{\param{const wxString\& }{value}}
Returns \true if the given \arg{value} is equal to the string representation of
the truth value we currently use (see
\helpref{UseStringValues}{wxgridcellbooleditorusestringvalues}).
\membersection{wxGridCellBoolEditor::UseStringValues}\label{wxgridcellbooleditorusestringvalues}
\func{static void}{UseStringValues}{\param{const wxString\& }{valueTrue = \_T("1")}, \param{const wxString\& }{valueFalse = \_T("")}}
This method allows to customize the values returned by GetValue() method for
the cell using this editor. By default, the default values of the arguments are
used, i.e. \texttt{"1"} is returned if the cell is checked and an empty string
otherwise, using this method allows to change this.
\section{\class{wxGridCellChoiceEditor}}\label{wxgridcellchoiceeditor}
The editor for string data allowing to choose from a list of strings.