% grid.h at 11/May/00 18:30:18
%
-
\section{\class{wxGridCellEditor}}\label{wxgridcelleditor}
-
-
-wxGridCellEditor: This class is responsible for providing and manipulating
+This class is responsible for providing and manipulating
the in-place edit controls for the grid. Instances of wxGridCellEditor
-(actually, instances of derived classes since it is an ABC) can be
+(actually, instances of derived classes since it is an abstract class) can be
associated with the cell attributes for individual cells, rows, columns, or
even for the entire grid.
-
\wxheading{Derived from}
-\helpref{wxGridCellWorker}{wxgridcellworker}
+wxGridCellWorker
\wxheading{Data structures}
\latexignore{\rtfignore{\wxheading{Members}}}
-
\membersection{wxGridCellEditor::wxGridCellEditor}\label{wxgridcelleditorwxgridcelleditor}
\func{}{wxGridCellEditor}{\void}
-
\membersection{wxGridCellEditor::IsCreated}\label{wxgridcelleditoriscreated}
\func{bool}{IsCreated}{\void}
-
\membersection{wxGridCellEditor::Create}\label{wxgridcelleditorcreate}
\func{void}{Create}{\param{wxWindow* }{parent}, \param{wxWindowID }{id}, \param{wxEvtHandler* }{evtHandler}}
-Creates the actual edit control
-
+Creates the actual edit control.
\membersection{wxGridCellEditor::SetSize}\label{wxgridcelleditorsetsize}
\func{void}{SetSize}{\param{const wxRect\& }{rect}}
-Size and position the edit control
-
+Size and position the edit control.
\membersection{wxGridCellEditor::Show}\label{wxgridcelleditorshow}
\func{void}{Show}{\param{bool }{show}, \param{wxGridCellAttr* }{attr = NULL}}
Show or hide the edit control, use the specified attributes to set
-colours/fonts for it
-
+colours/fonts for it.
\membersection{wxGridCellEditor::PaintBackground}\label{wxgridcelleditorpaintbackground}
\func{void}{PaintBackground}{\param{const wxRect\& }{rectCell}, \param{wxGridCellAttr* }{attr}}
Draws the part of the cell not occupied by the control: the base class
-version just fills it with background colour from the attribute
-
+version just fills it with background colour from the attribute.
\membersection{wxGridCellEditor::BeginEdit}\label{wxgridcelleditorbeginedit}
\func{void}{BeginEdit}{\param{int }{row}, \param{int }{col}, \param{wxGrid* }{grid}}
Fetch the value from the table and prepare the edit control
-to begin editing. Set the focus to the edit control.
-
+to begin editing. Set the focus to the edit control.
\membersection{wxGridCellEditor::EndEdit}\label{wxgridcelleditorendedit}
\func{bool}{EndEdit}{\param{int }{row}, \param{int }{col}, \param{wxGrid* }{grid}}
Complete the editing of the current cell. Returns true if the value has
-changed. If necessary, the control may be destroyed.
-
+changed. If necessary, the control may be destroyed.
\membersection{wxGridCellEditor::Reset}\label{wxgridcelleditorreset}
\func{void}{Reset}{\void}
-Reset the value in the control back to its starting value
-
+Reset the value in the control back to its starting value.
\membersection{wxGridCellEditor::StartingKey}\label{wxgridcelleditorstartingkey}
this will be called to let the editor do something about
that first key if desired.
-
\membersection{wxGridCellEditor::StartingClick}\label{wxgridcelleditorstartingclick}
\func{void}{StartingClick}{\void}
-if the editor is enabled by clicking on the cell, this method will be
-called
-
+If the editor is enabled by clicking on the cell, this method will be
+called.
\membersection{wxGridCellEditor::HandleReturn}\label{wxgridcelleditorhandlereturn}
Some types of controls on some platforms may need some help
with the Return key.
-
\membersection{wxGridCellEditor::Destroy}\label{wxgridcelleditordestroy}
\func{void}{Destroy}{\void}
-Final cleanup
-
+Final cleanup.
\membersection{wxGridCellEditor::Clone}\label{wxgridcelleditorclone}
\constfunc{wxGridCellEditor*}{Clone}{\void}
-create a new object which is the copy of this one
-
+Create a new object which is the copy of this one.
\membersection{wxGridCellEditor::\destruct{wxGridCellEditor}}\label{wxgridcelleditordtor}
\func{}{\destruct{wxGridCellEditor}}{\void}
-the dtor is private because only DecRef() can delete us
+The dtor is private because only DecRef() can delete us.