]> git.saurik.com Git - wxWidgets.git/blame - docs/latex/wx/gridedit.tex
changes wxFRAME_EX_CONTEXTHELP value to avoid clash with wxWS_EX_TRANSIENT
[wxWidgets.git] / docs / latex / wx / gridedit.tex
CommitLineData
03817a5e
MB
1%
2% automatically generated by HelpGen from
3% grid.h at 11/May/00 18:30:18
4%
5
03817a5e
MB
6\section{\class{wxGridCellEditor}}\label{wxgridcelleditor}
7
2eebb742 8This class is responsible for providing and manipulating
03817a5e 9the in-place edit controls for the grid. Instances of wxGridCellEditor
2eebb742 10(actually, instances of derived classes since it is an abstract class) can be
03817a5e
MB
11associated with the cell attributes for individual cells, rows, columns, or
12even for the entire grid.
13
03817a5e
MB
14\wxheading{Derived from}
15
2eebb742 16wxGridCellWorker
03817a5e 17
cbc95b2c
MB
18\wxheading{See also}
19
20\helpref{wxGridCellTextEditor}{wxgridcelltexteditor},\rtfsp
21\helpref{wxGridCellFloatEditor}{wxgridcellfloateditor},\rtfsp
22\helpref{wxGridCellBoolEditor}{wxgridcellbooleditor},\rtfsp
23\helpref{wxGridCellNumberEditor}{wxgridcellnumbereditor},\rtfsp
24\helpref{wxGridCellChoiceEditor}{wxgridcellchoiceeditor}
03817a5e
MB
25
26\latexignore{\rtfignore{\wxheading{Members}}}
27
03817a5e
MB
28\membersection{wxGridCellEditor::wxGridCellEditor}\label{wxgridcelleditorwxgridcelleditor}
29
30\func{}{wxGridCellEditor}{\void}
31
03817a5e
MB
32\membersection{wxGridCellEditor::IsCreated}\label{wxgridcelleditoriscreated}
33
34\func{bool}{IsCreated}{\void}
35
03817a5e
MB
36\membersection{wxGridCellEditor::Create}\label{wxgridcelleditorcreate}
37
38\func{void}{Create}{\param{wxWindow* }{parent}, \param{wxWindowID }{id}, \param{wxEvtHandler* }{evtHandler}}
39
2eebb742 40Creates the actual edit control.
03817a5e
MB
41
42\membersection{wxGridCellEditor::SetSize}\label{wxgridcelleditorsetsize}
43
44\func{void}{SetSize}{\param{const wxRect\& }{rect}}
45
2eebb742 46Size and position the edit control.
03817a5e
MB
47
48\membersection{wxGridCellEditor::Show}\label{wxgridcelleditorshow}
49
50\func{void}{Show}{\param{bool }{show}, \param{wxGridCellAttr* }{attr = NULL}}
51
52Show or hide the edit control, use the specified attributes to set
2eebb742 53colours/fonts for it.
03817a5e
MB
54
55\membersection{wxGridCellEditor::PaintBackground}\label{wxgridcelleditorpaintbackground}
56
57\func{void}{PaintBackground}{\param{const wxRect\& }{rectCell}, \param{wxGridCellAttr* }{attr}}
58
59Draws the part of the cell not occupied by the control: the base class
2eebb742 60version just fills it with background colour from the attribute.
03817a5e
MB
61
62\membersection{wxGridCellEditor::BeginEdit}\label{wxgridcelleditorbeginedit}
63
64\func{void}{BeginEdit}{\param{int }{row}, \param{int }{col}, \param{wxGrid* }{grid}}
65
66Fetch the value from the table and prepare the edit control
2eebb742 67to begin editing. Set the focus to the edit control.
03817a5e
MB
68
69\membersection{wxGridCellEditor::EndEdit}\label{wxgridcelleditorendedit}
70
71\func{bool}{EndEdit}{\param{int }{row}, \param{int }{col}, \param{wxGrid* }{grid}}
72
73Complete the editing of the current cell. Returns true if the value has
2eebb742 74changed. If necessary, the control may be destroyed.
03817a5e
MB
75
76\membersection{wxGridCellEditor::Reset}\label{wxgridcelleditorreset}
77
78\func{void}{Reset}{\void}
79
2eebb742 80Reset the value in the control back to its starting value.
03817a5e
MB
81
82\membersection{wxGridCellEditor::StartingKey}\label{wxgridcelleditorstartingkey}
83
84\func{void}{StartingKey}{\param{wxKeyEvent\& }{event}}
85
86If the editor is enabled by pressing keys on the grid,
87this will be called to let the editor do something about
88that first key if desired.
89
03817a5e
MB
90\membersection{wxGridCellEditor::StartingClick}\label{wxgridcelleditorstartingclick}
91
92\func{void}{StartingClick}{\void}
93
2eebb742
JS
94If the editor is enabled by clicking on the cell, this method will be
95called.
03817a5e
MB
96
97\membersection{wxGridCellEditor::HandleReturn}\label{wxgridcelleditorhandlereturn}
98
99\func{void}{HandleReturn}{\param{wxKeyEvent\& }{event}}
100
101Some types of controls on some platforms may need some help
102with the Return key.
103
03817a5e
MB
104\membersection{wxGridCellEditor::Destroy}\label{wxgridcelleditordestroy}
105
106\func{void}{Destroy}{\void}
107
2eebb742 108Final cleanup.
03817a5e
MB
109
110\membersection{wxGridCellEditor::Clone}\label{wxgridcelleditorclone}
111
112\constfunc{wxGridCellEditor*}{Clone}{\void}
113
2eebb742 114Create a new object which is the copy of this one.
03817a5e
MB
115
116\membersection{wxGridCellEditor::\destruct{wxGridCellEditor}}\label{wxgridcelleditordtor}
117
118\func{}{\destruct{wxGridCellEditor}}{\void}
119
2eebb742 120The dtor is private because only DecRef() can delete us.
03817a5e 121
cbc95b2c
MB
122
123\section{\class{wxGridCellTextEditor}}\label{wxgridcelltexteditor}
124
125The editor for string/text data.
126
127\wxheading{Derived from}
128
129\helpref{wxGridCellEditor}{wxgridcelleditor}
130
131\wxheading{See also}
132
133\helpref{wxGridCellEditor}{wxgridcelleditor},\rtfsp
134\helpref{wxGridCellFloatEditor}{wxgridcellfloateditor},\rtfsp
135\helpref{wxGridCellBoolEditor}{wxgridcellbooleditor},\rtfsp
136\helpref{wxGridCellNumberEditor}{wxgridcellnumbereditor},\rtfsp
137\helpref{wxGridCellChoiceEditor}{wxgridcellchoiceeditor}
138
139\latexignore{\rtfignore{\wxheading{Members}}}
140
141
142\membersection{wxGridCellTextEditor::wxGridCellTextEditor}\label{wxgridcelltexteditorconstr}
143
144\func{}{wxGridCellTextEditor}{\void}
145
146Default constructor.
147
148\membersection{wxGridCellTextEditor::SetParameters}\label{wxgridcelltexteditorsetparameters}
149
150\func{void}{SetParameters}{\param{const wxString\& }{params}}
151
152The parameters string format is "n" where n is a number representing the maximum width.
153
154
155\section{\class{wxGridCellNumberEditor}}\label{wxgridcellnumbereditor}
156
157The editor for numeric integer data.
158
159\wxheading{Derived from}
160
161\helpref{wxGridCellTextEditor}{wxgridcelltexteditor}\\
162\helpref{wxGridCellEditor}{wxgridcelleditor}
163
164\wxheading{See also}
165
166\helpref{wxGridCellEditor}{wxgridcelleditor},\rtfsp
167\helpref{wxGridCellFloatEditor}{wxgridcellfloateditor},\rtfsp
168\helpref{wxGridCellBoolEditor}{wxgridcellbooleditor},\rtfsp
169\helpref{wxGridCellTextEditor}{wxgridcelltexteditor},\rtfsp
170\helpref{wxGridCellChoiceEditor}{wxgridcellchoiceeditor}
171
172
173\latexignore{\rtfignore{\wxheading{Members}}}
174
175
176\membersection{wxGridCellNumberEditor::wxGridCellNumberEditor}\label{wxgridcellnumbereditorconstr}
177
178\func{}{wxGridCellNumberEditor}{\param{int }{min = -1}, \param{int }{max = -1}}
179
180Allows to specify the range for acceptable data;
181if min == max == -1, no range checking is done
182
183
184\membersection{wxGridCellNumberEditor::GetString}\label{wxgridcellnumbereditorgetstring}
185
186\constfunc{wxString}{GetString}{\void}
187
188String representation of the value.
189
190
191\membersection{wxGridCellNumberEditor::HasRange}\label{wxgridcellnumbereditorhasrange}
192
193\constfunc{bool}{HasRange}{\void}
194
195If the return value is true, the editor uses a wxSpinCtrl to get user input,
196otherwise it uses a wxTextCtrl.
197
198
199\membersection{wxGridCellNumberEditor::SetParameters}\label{wxgridcellnumbereditorsetparameters}
200
201\func{void}{SetParameters}{\param{const wxString\& }{params}}
202
203Parameters string format is "min,max".
204
205
206\section{\class{wxGridCellFloatEditor}}\label{wxgridcellfloateditor}
207
208The editor for floating point numbers data.
209
210\wxheading{Derived from}
211
212\helpref{wxGridCellTextEditor}{wxgridcelltexteditor}\\
213\helpref{wxGridCellEditor}{wxgridcelleditor}
214
215\wxheading{See also}
216
217\helpref{wxGridCellEditor}{wxgridcelleditor},\rtfsp
218\helpref{wxGridCellNumberEditor}{wxgridcellnumbereditor},\rtfsp
219\helpref{wxGridCellBoolEditor}{wxgridcellbooleditor},\rtfsp
220\helpref{wxGridCellTextEditor}{wxgridcelltexteditor},\rtfsp
221\helpref{wxGridCellChoiceEditor}{wxgridcellchoiceeditor}
222
223
224\latexignore{\rtfignore{\wxheading{Members}}}
225
226
227\membersection{wxGridCellFloatEditor::wxGridCellFloatEditor}\label{wxgridcellfloateditorconstr}
228
229\func{}{wxGridCellFloatEditor}{\param{int }{width = -1}, \param{int }{precision = -1}}
230
231\docparam{width}{Minimum number of characters to be shown.}
232\docparam{precision}{Number of digits after the decimal dot.}
233
234
235\membersection{wxGridCellFloatEditor::SetParameters}\label{wxgridcellfloateditorsetparameters}
236
237\func{void}{SetParameters}{\param{const wxString\& }{params}}
238
239Parameters string format is "width,precision"
240
241
242\section{\class{wxGridCellBoolEditor}}\label{wxgridcellbooleditor}
243
244The editor for boolean data.
245
246\wxheading{Derived from}
247
248\helpref{wxGridCellEditor}{wxgridcelleditor}
249
250\wxheading{See also}
251
252\helpref{wxGridCellEditor}{wxgridcelleditor},\rtfsp
253\helpref{wxGridCellFloatEditor}{wxgridcellfloateditor},\rtfsp
254\helpref{wxGridCellNumberEditor}{wxgridcellnumbereditor},\rtfsp
255\helpref{wxGridCellTextEditor}{wxgridcelltexteditor},\rtfsp
256\helpref{wxGridCellChoiceEditor}{wxgridcellchoiceeditor}
257
258\latexignore{\rtfignore{\wxheading{Members}}}
259
260
261\membersection{wxGridCellBoolEditor::wxGridCellBoolEditor}\label{wxgridcellbooleditorconstr}
262
263\func{}{wxGridCellBoolEditor}{}
264
265Default constructor.
266
267
268\section{\class{wxGridCellChoiceEditor}}\label{wxgridcellchoiceeditor}
269
270The editor for string data allowing to choose from a list of strings.
271
272\wxheading{Derived from}
273
274\helpref{wxGridCellEditor}{wxgridcelleditor}
275
276\wxheading{See also}
277
278\helpref{wxGridCellEditor}{wxgridcelleditor},\rtfsp
279\helpref{wxGridCellFloatEditor}{wxgridcellfloateditor},\rtfsp
280\helpref{wxGridCellBoolEditor}{wxgridcellbooleditor},\rtfsp
281\helpref{wxGridCellTextEditor}{wxgridcelltexteditor},\rtfsp
282\helpref{wxGridCellNumberEditor}{wxgridcellnumbereditor}
283
284
285\latexignore{\rtfignore{\wxheading{Members}}}
286
287
288\membersection{wxGridCellChoiceEditor::wxGridCellChoiceEditor}\label{wxgridcellchoiceeditorconstr}
289
290\func{}{wxGridCellChoiceEditor}{\param{size\_t }{count = 0}, \param{const wxString }{choices[] = NULL}, \param{bool }{allowOthers = FALSE}}
291
292\docparam{count}{Number of strings from which the user can choose.}
293\docparam{choices}{An array of strings from which the user can choose.}
294\docparam{allowOthers}{If allowOthers if TRUE, the user can type a string not in choices array.}
295
296
297\membersection{wxGridCellChoiceEditor::SetParameters}\label{wxgridcellchoiceeditorsetparameters}
298
299\func{void}{SetParameters}{\param{const wxString\& }{params}}
300
301Parameters string format is "item1[,item2[...,itemN]]"
302