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