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