]>
Commit | Line | Data |
---|---|---|
23324ae1 FM |
1 | ///////////////////////////////////////////////////////////////////////////// |
2 | // Name: grid.h | |
afe0e400 | 3 | // Purpose: interface of wxGrid and related classes |
23324ae1 FM |
4 | // Author: wxWidgets team |
5 | // RCS-ID: $Id$ | |
6 | // Licence: wxWindows license | |
7 | ///////////////////////////////////////////////////////////////////////////// | |
8 | ||
8b9ef005 BP |
9 | /** |
10 | @class wxGridCellRenderer | |
11 | ||
12 | This class is responsible for actually drawing the cell in the grid. You | |
13 | may pass it to the wxGridCellAttr (below) to change the format of one given | |
14 | cell or to wxGrid::SetDefaultRenderer() to change the view of all cells. | |
15 | This is an abstract class, and you will normally use one of the predefined | |
16 | derived classes or derive your own class from it. | |
17 | ||
18 | @library{wxadv} | |
19 | @category{grid} | |
20 | ||
21 | @see wxGridCellBoolRenderer, wxGridCellFloatRenderer, | |
22 | wxGridCellNumberRenderer, wxGridCellStringRenderer | |
23 | */ | |
24 | class wxGridCellRenderer | |
25 | { | |
26 | public: | |
27 | /** | |
28 | This function must be implemented in derived classes to return a copy | |
29 | of itself. | |
30 | */ | |
31 | virtual wxGridCellRenderer* Clone() const = 0; | |
32 | ||
33 | /** | |
34 | Draw the given cell on the provided DC inside the given rectangle using | |
35 | the style specified by the attribute and the default or selected state | |
36 | corresponding to the isSelected value. | |
37 | ||
38 | This pure virtual function has a default implementation which will | |
39 | prepare the DC using the given attribute: it will draw the rectangle | |
40 | with the background colour from attr and set the text colour and font. | |
41 | */ | |
42 | virtual void Draw(wxGrid& grid, wxGridCellAttr& attr, wxDC& dc, | |
43 | const wxRect& rect, int row, int col, | |
44 | bool isSelected) = 0; | |
45 | ||
46 | /** | |
47 | Get the preferred size of the cell for its contents. | |
48 | */ | |
49 | virtual wxSize GetBestSize(wxGrid& grid, wxGridCellAttr& attr, wxDC& dc, | |
50 | int row, int col) = 0; | |
51 | }; | |
52 | ||
53 | /** | |
54 | @class wxGridCellBoolRenderer | |
55 | ||
56 | This class may be used to format boolean data in a cell. | |
57 | ||
58 | @library{wxadv} | |
59 | @category{grid} | |
60 | ||
61 | @see wxGridCellRenderer, wxGridCellFloatRenderer, wxGridCellNumberRenderer, | |
62 | wxGridCellStringRenderer | |
63 | */ | |
64 | class wxGridCellBoolRenderer : public wxGridCellRenderer | |
65 | { | |
66 | public: | |
67 | /** | |
68 | Default constructor. | |
69 | */ | |
70 | wxGridCellBoolRenderer(); | |
71 | }; | |
72 | ||
23324ae1 FM |
73 | /** |
74 | @class wxGridCellFloatRenderer | |
7c913512 | 75 | |
23324ae1 | 76 | This class may be used to format floating point data in a cell. |
7c913512 | 77 | |
23324ae1 | 78 | @library{wxadv} |
42b5841f | 79 | @category{grid} |
7c913512 | 80 | |
afe0e400 BP |
81 | @see wxGridCellRenderer, wxGridCellBoolRenderer, wxGridCellNumberRenderer, |
82 | wxGridCellStringRenderer | |
23324ae1 FM |
83 | */ |
84 | class wxGridCellFloatRenderer : public wxGridCellStringRenderer | |
85 | { | |
86 | public: | |
87 | /** | |
7c913512 | 88 | @param width |
4cc4bfaf | 89 | Minimum number of characters to be shown. |
7c913512 | 90 | @param precision |
4cc4bfaf | 91 | Number of digits after the decimal dot. |
23324ae1 FM |
92 | */ |
93 | wxGridCellFloatRenderer(int width = -1, int precision = -1); | |
94 | ||
95 | /** | |
42b5841f | 96 | Returns the precision. |
23324ae1 | 97 | */ |
328f5751 | 98 | int GetPrecision() const; |
23324ae1 FM |
99 | |
100 | /** | |
42b5841f | 101 | Returns the width. |
23324ae1 | 102 | */ |
328f5751 | 103 | int GetWidth() const; |
23324ae1 FM |
104 | |
105 | /** | |
106 | Parameters string format is "width[,precision]". | |
107 | */ | |
adaaa686 | 108 | virtual void SetParameters(const wxString& params); |
23324ae1 FM |
109 | |
110 | /** | |
42b5841f | 111 | Sets the precision. |
23324ae1 FM |
112 | */ |
113 | void SetPrecision(int precision); | |
114 | ||
115 | /** | |
42b5841f | 116 | Sets the width. |
23324ae1 FM |
117 | */ |
118 | void SetWidth(int width); | |
119 | }; | |
120 | ||
23324ae1 | 121 | /** |
8b9ef005 | 122 | @class wxGridCellNumberRenderer |
7c913512 | 123 | |
8b9ef005 | 124 | This class may be used to format integer data in a cell. |
5039f140 | 125 | |
8b9ef005 BP |
126 | @library{wxadv} |
127 | @category{grid} | |
5039f140 | 128 | |
8b9ef005 BP |
129 | @see wxGridCellRenderer, wxGridCellBoolRenderer, wxGridCellFloatRenderer, |
130 | wxGridCellStringRenderer | |
131 | */ | |
132 | class wxGridCellNumberRenderer : public wxGridCellStringRenderer | |
133 | { | |
134 | public: | |
135 | /** | |
136 | Default constructor. | |
137 | */ | |
138 | wxGridCellNumberRenderer(); | |
139 | }; | |
5039f140 | 140 | |
8b9ef005 BP |
141 | /** |
142 | @class wxGridCellStringRenderer | |
143 | ||
144 | This class may be used to format string data in a cell; it is the default | |
145 | for string cells. | |
7c913512 | 146 | |
23324ae1 | 147 | @library{wxadv} |
42b5841f | 148 | @category{grid} |
8b9ef005 BP |
149 | |
150 | @see wxGridCellRenderer, wxGridCellBoolRenderer, wxGridCellFloatRenderer, | |
151 | wxGridCellNumberRenderer | |
23324ae1 | 152 | */ |
8b9ef005 | 153 | class wxGridCellStringRenderer : public wxGridCellRenderer |
23324ae1 FM |
154 | { |
155 | public: | |
afe0e400 BP |
156 | /** |
157 | Default constructor. | |
8b9ef005 BP |
158 | */ |
159 | wxGridCellStringRenderer(); | |
160 | }; | |
23324ae1 | 161 | |
3c4f71cc | 162 | |
77d2c45c | 163 | |
8b9ef005 BP |
164 | /** |
165 | @class wxGridCellEditor | |
23324ae1 | 166 | |
8b9ef005 BP |
167 | This class is responsible for providing and manipulating the in-place edit |
168 | controls for the grid. Instances of wxGridCellEditor (actually, instances | |
169 | of derived classes since it is an abstract class) can be associated with | |
170 | the cell attributes for individual cells, rows, columns, or even for the | |
171 | entire grid. | |
77d2c45c | 172 | |
8b9ef005 BP |
173 | @library{wxadv} |
174 | @category{grid} | |
3c4f71cc | 175 | |
8b9ef005 BP |
176 | @see wxGridCellBoolEditor, wxGridCellChoiceEditor, wxGridCellFloatEditor, |
177 | wxGridCellNumberEditor, wxGridCellTextEditor | |
178 | */ | |
179 | class wxGridCellEditor | |
180 | { | |
181 | public: | |
77d2c45c | 182 | /** |
8b9ef005 BP |
183 | Default constructor. |
184 | */ | |
185 | wxGridCellEditor(); | |
77d2c45c VZ |
186 | |
187 | /** | |
8b9ef005 BP |
188 | Fetch the value from the table and prepare the edit control to begin |
189 | editing. Sets the focus to the edit control. | |
190 | */ | |
191 | virtual void BeginEdit(int row, int col, wxGrid* grid) = 0; | |
77d2c45c | 192 | |
8b9ef005 BP |
193 | /** |
194 | Create a new object which is the copy of this one. | |
195 | */ | |
196 | virtual wxGridCellEditor* Clone() const = 0; | |
23324ae1 FM |
197 | |
198 | /** | |
8b9ef005 BP |
199 | Creates the actual edit control. |
200 | */ | |
201 | virtual void Create(wxWindow* parent, wxWindowID id, | |
202 | wxEvtHandler* evtHandler) = 0; | |
3c4f71cc | 203 | |
afe0e400 | 204 | /** |
8b9ef005 BP |
205 | Final cleanup. |
206 | */ | |
207 | virtual void Destroy(); | |
23324ae1 | 208 | |
10a4531d | 209 | /** |
8b9ef005 BP |
210 | Complete the editing of the current cell. If necessary, the control may |
211 | be destroyed. | |
10a4531d | 212 | |
8b9ef005 BP |
213 | @return @true if the value has changed. |
214 | */ | |
215 | virtual bool EndEdit(int row, int col, wxGrid* grid) = 0; | |
10a4531d | 216 | |
afe0e400 | 217 | /** |
8b9ef005 BP |
218 | Some types of controls on some platforms may need some help with the |
219 | Return key. | |
220 | */ | |
221 | virtual void HandleReturn(wxKeyEvent& event); | |
3c4f71cc | 222 | |
afe0e400 | 223 | /** |
8b9ef005 BP |
224 | Returns @true if the edit control has been created. |
225 | */ | |
226 | bool IsCreated(); | |
23324ae1 FM |
227 | |
228 | /** | |
8b9ef005 BP |
229 | Draws the part of the cell not occupied by the control: the base class |
230 | version just fills it with background colour from the attribute. | |
231 | */ | |
232 | virtual void PaintBackground(const wxRect& rectCell, wxGridCellAttr* attr); | |
23324ae1 FM |
233 | |
234 | /** | |
8b9ef005 BP |
235 | Reset the value in the control back to its starting value. |
236 | */ | |
237 | virtual void Reset() = 0; | |
3c4f71cc | 238 | |
8b9ef005 BP |
239 | /** |
240 | Size and position the edit control. | |
241 | */ | |
242 | virtual void SetSize(const wxRect& rect); | |
23324ae1 FM |
243 | |
244 | /** | |
8b9ef005 BP |
245 | Show or hide the edit control, use the specified attributes to set |
246 | colours/fonts for it. | |
247 | */ | |
248 | virtual void Show(bool show, wxGridCellAttr* attr = NULL); | |
3c4f71cc | 249 | |
8b9ef005 BP |
250 | /** |
251 | If the editor is enabled by clicking on the cell, this method will be | |
252 | called. | |
253 | */ | |
254 | virtual void StartingClick(); | |
23324ae1 FM |
255 | |
256 | /** | |
8b9ef005 BP |
257 | If the editor is enabled by pressing keys on the grid, this will be |
258 | called to let the editor do something about that first key if desired. | |
259 | */ | |
260 | virtual void StartingKey(wxKeyEvent& event); | |
3c4f71cc | 261 | |
8b9ef005 | 262 | protected: |
23324ae1 FM |
263 | |
264 | /** | |
8b9ef005 BP |
265 | The destructor is private because only DecRef() can delete us. |
266 | */ | |
267 | virtual ~wxGridCellEditor(); | |
268 | }; | |
3c4f71cc | 269 | |
8b9ef005 BP |
270 | /** |
271 | @class wxGridCellBoolEditor | |
23324ae1 | 272 | |
8b9ef005 | 273 | Grid cell editor for boolean data. |
23324ae1 | 274 | |
8b9ef005 BP |
275 | @library{wxadv} |
276 | @category{grid} | |
23324ae1 | 277 | |
8b9ef005 BP |
278 | @see wxGridCellEditor, wxGridCellChoiceEditor, wxGridCellFloatEditor, |
279 | wxGridCellNumberEditor, wxGridCellTextEditor | |
280 | */ | |
281 | class wxGridCellBoolEditor : public wxGridCellEditor | |
282 | { | |
283 | public: | |
23324ae1 | 284 | /** |
8b9ef005 BP |
285 | Default constructor. |
286 | */ | |
287 | wxGridCellBoolEditor(); | |
5039f140 | 288 | |
8b9ef005 BP |
289 | /** |
290 | Returns @true if the given @a value is equal to the string | |
291 | representation of the truth value we currently use (see | |
292 | UseStringValues()). | |
293 | */ | |
294 | static bool IsTrueValue(const wxString& value); | |
3c4f71cc | 295 | |
23324ae1 | 296 | /** |
8b9ef005 BP |
297 | This method allows you to customize the values returned by GetValue() |
298 | for the cell using this editor. By default, the default values of the | |
299 | arguments are used, i.e. @c "1" is returned if the cell is checked and | |
300 | an empty string otherwise. | |
301 | */ | |
302 | static void UseStringValues(const wxString& valueTrue = "1", | |
303 | const wxString& valueFalse = wxEmptyString) const; | |
304 | }; | |
3c4f71cc | 305 | |
8b9ef005 BP |
306 | /** |
307 | @class wxGridCellChoiceEditor | |
23324ae1 | 308 | |
8b9ef005 BP |
309 | Grid cell editor for string data providing the user a choice from a list of |
310 | strings. | |
5039f140 | 311 | |
8b9ef005 BP |
312 | @library{wxadv} |
313 | @category{grid} | |
23324ae1 | 314 | |
8b9ef005 BP |
315 | @see wxGridCellEditor, wxGridCellBoolEditor, wxGridCellFloatEditor, |
316 | wxGridCellNumberEditor, wxGridCellTextEditor | |
317 | */ | |
318 | class wxGridCellChoiceEditor : public wxGridCellEditor | |
319 | { | |
320 | public: | |
23324ae1 | 321 | /** |
8b9ef005 BP |
322 | @param count |
323 | Number of strings from which the user can choose. | |
324 | @param choices | |
325 | An array of strings from which the user can choose. | |
326 | @param allowOthers | |
327 | If allowOthers is @true, the user can type a string not in choices | |
328 | array. | |
329 | */ | |
330 | wxGridCellChoiceEditor(size_t count = 0, | |
331 | const wxString choices[] = NULL, | |
332 | bool allowOthers = false); | |
333 | /** | |
334 | @param choices | |
335 | An array of strings from which the user can choose. | |
336 | @param allowOthers | |
337 | If allowOthers is @true, the user can type a string not in choices | |
338 | array. | |
339 | */ | |
340 | wxGridCellChoiceEditor(const wxArrayString& choices, | |
341 | bool allowOthers = false); | |
23324ae1 FM |
342 | |
343 | /** | |
8b9ef005 BP |
344 | Parameters string format is "item1[,item2[...,itemN]]" |
345 | */ | |
346 | virtual void SetParameters(const wxString& params); | |
347 | }; | |
23324ae1 | 348 | |
8b9ef005 BP |
349 | /** |
350 | @class wxGridCellTextEditor | |
3c4f71cc | 351 | |
8b9ef005 | 352 | Grid cell editor for string/text data. |
23324ae1 | 353 | |
8b9ef005 BP |
354 | @library{wxadv} |
355 | @category{grid} | |
afe0e400 | 356 | |
8b9ef005 BP |
357 | @see wxGridCellEditor, wxGridCellBoolEditor, wxGridCellChoiceEditor, |
358 | wxGridCellFloatEditor, wxGridCellNumberEditor | |
359 | */ | |
360 | class wxGridCellTextEditor : public wxGridCellEditor | |
361 | { | |
362 | public: | |
23324ae1 | 363 | /** |
8b9ef005 BP |
364 | Default constructor. |
365 | */ | |
366 | wxGridCellTextEditor(); | |
23324ae1 FM |
367 | |
368 | /** | |
8b9ef005 BP |
369 | The parameters string format is "n" where n is a number representing |
370 | the maximum width. | |
371 | */ | |
372 | virtual void SetParameters(const wxString& params); | |
373 | }; | |
5039f140 | 374 | |
8b9ef005 BP |
375 | /** |
376 | @class wxGridCellFloatEditor | |
23324ae1 | 377 | |
8b9ef005 | 378 | The editor for floating point numbers data. |
3c4f71cc | 379 | |
8b9ef005 BP |
380 | @library{wxadv} |
381 | @category{grid} | |
23324ae1 | 382 | |
8b9ef005 BP |
383 | @see wxGridCellEditor, wxGridCellNumberEditor, wxGridCellBoolEditor, |
384 | wxGridCellTextEditor, wxGridCellChoiceEditor | |
385 | */ | |
386 | class wxGridCellFloatEditor : public wxGridCellTextEditor | |
387 | { | |
388 | public: | |
23324ae1 | 389 | /** |
8b9ef005 BP |
390 | @param width |
391 | Minimum number of characters to be shown. | |
392 | @param precision | |
393 | Number of digits after the decimal dot. | |
394 | */ | |
395 | wxGridCellFloatEditor(int width = -1, int precision = -1); | |
23324ae1 FM |
396 | |
397 | /** | |
8b9ef005 BP |
398 | Parameters string format is "width,precision" |
399 | */ | |
400 | virtual void SetParameters(const wxString& params); | |
401 | }; | |
23324ae1 | 402 | |
8b9ef005 BP |
403 | /** |
404 | @class wxGridCellNumberEditor | |
3c4f71cc | 405 | |
8b9ef005 | 406 | Grid cell editor for numeric integer data. |
5039f140 | 407 | |
8b9ef005 BP |
408 | @library{wxadv} |
409 | @category{grid} | |
23324ae1 | 410 | |
8b9ef005 BP |
411 | @see wxGridCellEditor, wxGridCellBoolEditor, wxGridCellChoiceEditor, |
412 | wxGridCellFloatEditor, wxGridCellTextEditor | |
413 | */ | |
414 | class wxGridCellNumberEditor : public wxGridCellTextEditor | |
415 | { | |
416 | public: | |
23324ae1 | 417 | /** |
8b9ef005 BP |
418 | Allows you to specify the range for acceptable data. Values equal to |
419 | -1 for both @a min and @a max indicate that no range checking should be | |
420 | done. | |
421 | */ | |
422 | wxGridCellNumberEditor(int min = -1, int max = -1); | |
3c4f71cc | 423 | |
23324ae1 | 424 | |
afe0e400 | 425 | /** |
8b9ef005 BP |
426 | Parameters string format is "min,max". |
427 | */ | |
428 | virtual void SetParameters(const wxString& params); | |
429 | ||
430 | protected: | |
3c4f71cc | 431 | |
afe0e400 | 432 | /** |
8b9ef005 BP |
433 | If the return value is @true, the editor uses a wxSpinCtrl to get user |
434 | input, otherwise it uses a wxTextCtrl. | |
435 | */ | |
436 | bool HasRange() const; | |
23324ae1 | 437 | |
afe0e400 | 438 | /** |
8b9ef005 BP |
439 | String representation of the value. |
440 | */ | |
441 | wxString GetString() const; | |
442 | }; | |
23324ae1 | 443 | |
23324ae1 | 444 | |
3c4f71cc | 445 | |
8b9ef005 BP |
446 | /** |
447 | @class wxGridCellAttr | |
23324ae1 | 448 | |
8b9ef005 BP |
449 | This class can be used to alter the cells' appearance in the grid by |
450 | changing their attributes from the defaults. An object of this class may be | |
451 | returned by wxGridTableBase::GetAttr(). | |
5039f140 | 452 | |
8b9ef005 BP |
453 | @library{wxadv} |
454 | @category{grid} | |
455 | */ | |
456 | class wxGridCellAttr | |
457 | { | |
458 | public: | |
afe0e400 | 459 | /** |
8b9ef005 BP |
460 | Default constructor. |
461 | */ | |
462 | wxGridCellAttr(); | |
23324ae1 | 463 | /** |
8b9ef005 BP |
464 | Constructor specifying some of the often used attributes. |
465 | */ | |
466 | wxGridCellAttr(const wxColour& colText, const wxColour& colBack, | |
467 | const wxFont& font, int hAlign, int vAlign); | |
5039f140 | 468 | |
afe0e400 | 469 | /** |
8b9ef005 BP |
470 | Creates a new copy of this object. |
471 | */ | |
472 | wxGridCellAttr* Clone() const; | |
23324ae1 FM |
473 | |
474 | /** | |
8b9ef005 BP |
475 | This class is reference counted: it is created with ref count of 1, so |
476 | calling DecRef() once will delete it. Calling IncRef() allows to lock | |
477 | it until the matching DecRef() is called. | |
478 | */ | |
479 | void DecRef(); | |
23324ae1 FM |
480 | |
481 | /** | |
8b9ef005 BP |
482 | See SetAlignment() for the returned values. |
483 | */ | |
484 | void GetAlignment(int* hAlign, int* vAlign) const; | |
23324ae1 FM |
485 | |
486 | /** | |
8b9ef005 BP |
487 | Returns the background colour. |
488 | */ | |
489 | const wxColour& GetBackgroundColour() const; | |
23324ae1 | 490 | |
23324ae1 | 491 | /** |
8b9ef005 BP |
492 | Returns the cell editor. |
493 | */ | |
494 | wxGridCellEditor* GetEditor(const wxGrid* grid, int row, int col) const; | |
23324ae1 FM |
495 | |
496 | /** | |
8b9ef005 BP |
497 | Returns the font. |
498 | */ | |
499 | const wxFont& GetFont() const; | |
23324ae1 FM |
500 | |
501 | /** | |
8b9ef005 BP |
502 | Returns the cell renderer. |
503 | */ | |
504 | wxGridCellRenderer* GetRenderer(const wxGrid* grid, int row, int col) const; | |
23324ae1 FM |
505 | |
506 | /** | |
8b9ef005 BP |
507 | Returns the text colour. |
508 | */ | |
509 | const wxColour& GetTextColour() const; | |
5e6e278d FM |
510 | |
511 | /** | |
8b9ef005 BP |
512 | Returns @true if this attribute has a valid alignment set. |
513 | */ | |
514 | bool HasAlignment() const; | |
7c913512 | 515 | |
23324ae1 | 516 | /** |
8b9ef005 | 517 | Returns @true if this attribute has a valid background colour set. |
23324ae1 | 518 | */ |
8b9ef005 | 519 | bool HasBackgroundColour() const; |
23324ae1 | 520 | |
23324ae1 | 521 | /** |
8b9ef005 | 522 | Returns @true if this attribute has a valid cell editor set. |
23324ae1 | 523 | */ |
8b9ef005 | 524 | bool HasEditor() const; |
23324ae1 FM |
525 | |
526 | /** | |
8b9ef005 | 527 | Returns @true if this attribute has a valid font set. |
23324ae1 | 528 | */ |
8b9ef005 | 529 | bool HasFont() const; |
23324ae1 FM |
530 | |
531 | /** | |
8b9ef005 | 532 | Returns @true if this attribute has a valid cell renderer set. |
23324ae1 | 533 | */ |
8b9ef005 | 534 | bool HasRenderer() const; |
23324ae1 FM |
535 | |
536 | /** | |
8b9ef005 | 537 | Returns @true if this attribute has a valid text colour set. |
23324ae1 | 538 | */ |
8b9ef005 | 539 | bool HasTextColour() const; |
23324ae1 FM |
540 | |
541 | /** | |
8b9ef005 BP |
542 | This class is reference counted: it is created with ref count of 1, so |
543 | calling DecRef() once will delete it. Calling IncRef() allows to lock | |
544 | it until the matching DecRef() is called. | |
23324ae1 | 545 | */ |
8b9ef005 | 546 | void IncRef(); |
23324ae1 FM |
547 | |
548 | /** | |
8b9ef005 | 549 | Returns @true if this cell is set as read-only. |
23324ae1 | 550 | */ |
8b9ef005 | 551 | bool IsReadOnly() const; |
23324ae1 FM |
552 | |
553 | /** | |
8b9ef005 BP |
554 | Sets the alignment. @a hAlign can be one of @c wxALIGN_LEFT, |
555 | @c wxALIGN_CENTRE or @c wxALIGN_RIGHT and @a vAlign can be one of | |
556 | @c wxALIGN_TOP, @c wxALIGN_CENTRE or @c wxALIGN_BOTTOM. | |
23324ae1 | 557 | */ |
8b9ef005 | 558 | void SetAlignment(int hAlign, int vAlign); |
23324ae1 FM |
559 | |
560 | /** | |
8b9ef005 | 561 | Sets the background colour. |
23324ae1 | 562 | */ |
8b9ef005 | 563 | void SetBackgroundColour(const wxColour& colBack); |
23324ae1 FM |
564 | |
565 | /** | |
8b9ef005 | 566 | @todo Needs documentation. |
23324ae1 | 567 | */ |
8b9ef005 | 568 | void SetDefAttr(wxGridCellAttr* defAttr); |
23324ae1 FM |
569 | |
570 | /** | |
8b9ef005 | 571 | Sets the editor to be used with the cells with this attribute. |
23324ae1 | 572 | */ |
8b9ef005 | 573 | void SetEditor(wxGridCellEditor* editor); |
23324ae1 FM |
574 | |
575 | /** | |
8b9ef005 | 576 | Sets the font. |
23324ae1 | 577 | */ |
8b9ef005 | 578 | void SetFont(const wxFont& font); |
23324ae1 FM |
579 | |
580 | /** | |
8b9ef005 | 581 | Sets the cell as read-only. |
23324ae1 | 582 | */ |
8b9ef005 | 583 | void SetReadOnly(bool isReadOnly = true); |
23324ae1 FM |
584 | |
585 | /** | |
8b9ef005 BP |
586 | Sets the renderer to be used for cells with this attribute. Takes |
587 | ownership of the pointer. | |
23324ae1 | 588 | */ |
8b9ef005 | 589 | void SetRenderer(wxGridCellRenderer* renderer); |
5e6e278d FM |
590 | |
591 | /** | |
8b9ef005 | 592 | Sets the text colour. |
5e6e278d | 593 | */ |
8b9ef005 | 594 | void SetTextColour(const wxColour& colText); |
23324ae1 FM |
595 | }; |
596 | ||
597 | ||
e54c96f1 | 598 | |
23324ae1 | 599 | /** |
8b9ef005 | 600 | @class wxGridTableBase |
7c913512 | 601 | |
8b9ef005 BP |
602 | The almost abstract base class for grid tables. |
603 | ||
604 | A grid table is responsible for storing the grid data and, indirectly, grid | |
605 | cell attributes. The data can be stored in the way most convenient for the | |
606 | application but has to be provided in string form to wxGrid. It is also | |
607 | possible to provide cells values in other formats if appropriate, e.g. as | |
608 | numbers. | |
609 | ||
610 | This base class is not quite abstract as it implements a trivial strategy | |
611 | for storing the attributes by forwarding it to wxGridCellAttrProvider and | |
612 | also provides stubs for some other functions. However it does have a number | |
613 | of pure virtual methods which must be implemented in the derived classes. | |
614 | ||
615 | @see wxGridStringTable | |
7c913512 | 616 | |
23324ae1 | 617 | @library{wxadv} |
42b5841f | 618 | @category{grid} |
23324ae1 | 619 | */ |
8b9ef005 | 620 | class wxGridTableBase : public wxObject |
23324ae1 FM |
621 | { |
622 | public: | |
623 | /** | |
624 | Default constructor. | |
8b9ef005 BP |
625 | */ |
626 | wxGridTableBase(); | |
23324ae1 FM |
627 | |
628 | /** | |
8b9ef005 BP |
629 | Destructor frees the attribute provider if it was created. |
630 | */ | |
631 | virtual ~wxGridTableBase(); | |
23324ae1 | 632 | |
8b9ef005 BP |
633 | /** |
634 | Must be overridden to return the number of rows in the table. | |
e54c96f1 | 635 | |
8b9ef005 BP |
636 | For backwards compatibility reasons, this method is not const. |
637 | Use GetRowsCount() instead of it in const methods of derived table | |
638 | classes. | |
639 | */ | |
640 | virtual int GetNumberRows() = 0; | |
7c913512 | 641 | |
8b9ef005 BP |
642 | /** |
643 | Must be overridden to return the number of columns in the table. | |
7c913512 | 644 | |
8b9ef005 BP |
645 | For backwards compatibility reasons, this method is not const. |
646 | Use GetColsCount() instead of it in const methods of derived table | |
647 | classes, | |
648 | */ | |
649 | virtual int GetNumberCols() = 0; | |
7c913512 | 650 | |
23324ae1 | 651 | /** |
8b9ef005 | 652 | Return the number of rows in the table. |
23324ae1 | 653 | |
8b9ef005 BP |
654 | This method is not virtual and is only provided as a convenience for |
655 | the derived classes which can't call GetNumberRows() without a | |
656 | @c const_cast from their const methods. | |
657 | */ | |
658 | int GetRowsCount() const; | |
23324ae1 | 659 | |
8b9ef005 BP |
660 | /** |
661 | Return the number of columns in the table. | |
e54c96f1 | 662 | |
8b9ef005 BP |
663 | This method is not virtual and is only provided as a convenience for |
664 | the derived classes which can't call GetNumberCols() without a | |
665 | @c const_cast from their const methods. | |
666 | */ | |
667 | int GetColsCount() const; | |
7c913512 | 668 | |
7c913512 | 669 | |
23324ae1 | 670 | /** |
8b9ef005 BP |
671 | @name Table Cell Accessors |
672 | */ | |
673 | //@{ | |
23324ae1 FM |
674 | |
675 | /** | |
8acad210 VZ |
676 | May be overridden to implement testing for empty cells. |
677 | ||
678 | This method is used by the grid to test if the given cell is not used | |
679 | and so whether a neighbouring cell may overflow into it. By default it | |
680 | only returns true if the value of the given cell, as returned by | |
681 | GetValue(), is empty. | |
8b9ef005 | 682 | */ |
8acad210 | 683 | virtual bool IsEmptyCell(int row, int col); |
e54c96f1 | 684 | |
8b9ef005 BP |
685 | /** |
686 | Same as IsEmptyCell() but taking wxGridCellCoords. | |
7c913512 | 687 | |
8b9ef005 BP |
688 | Notice that this method is not virtual, only IsEmptyCell() should be |
689 | overridden. | |
690 | */ | |
691 | bool IsEmpty(const wxGridCellCoords& coords); | |
7c913512 | 692 | |
afe0e400 | 693 | /** |
8b9ef005 BP |
694 | Must be overridden to implement accessing the table values as text. |
695 | */ | |
696 | virtual wxString GetValue(int row, int col) = 0; | |
23324ae1 FM |
697 | |
698 | /** | |
8b9ef005 BP |
699 | Must be overridden to implement setting the table values as text. |
700 | */ | |
701 | virtual void SetValue(int row, int col, const wxString& value) = 0; | |
23324ae1 FM |
702 | |
703 | /** | |
8b9ef005 | 704 | Returns the type of the value in the given cell. |
23324ae1 | 705 | |
8b9ef005 BP |
706 | By default all cells are strings and this method returns |
707 | @c wxGRID_VALUE_STRING. | |
708 | */ | |
709 | virtual wxString GetTypeName(int row, int col); | |
23324ae1 FM |
710 | |
711 | /** | |
8b9ef005 BP |
712 | Returns true if the value of the given cell can be accessed as if it |
713 | were of the specified type. | |
23324ae1 | 714 | |
8b9ef005 BP |
715 | By default the cells can only be accessed as strings. Note that a cell |
716 | could be accessible in different ways, e.g. a numeric cell may return | |
717 | @true for @c wxGRID_VALUE_NUMBER but also for @c wxGRID_VALUE_STRING | |
718 | indicating that the value can be coerced to a string form. | |
719 | */ | |
720 | virtual bool CanGetValueAs(int row, int col, const wxString& typeName); | |
23324ae1 FM |
721 | |
722 | /** | |
8b9ef005 BP |
723 | Returns true if the value of the given cell can be set as if it were of |
724 | the specified type. | |
23324ae1 | 725 | |
8b9ef005 BP |
726 | @see CanGetValueAs() |
727 | */ | |
728 | virtual bool CanSetValueAs(int row, int col, const wxString& typeName); | |
e54c96f1 | 729 | |
8b9ef005 BP |
730 | /** |
731 | Returns the value of the given cell as a long. | |
7c913512 | 732 | |
8b9ef005 BP |
733 | This should only be called if CanGetValueAs() returns @true when called |
734 | with @c wxGRID_VALUE_NUMBER argument. Default implementation always | |
735 | return 0. | |
736 | */ | |
737 | virtual long GetValueAsLong(int row, int col); | |
7c913512 | 738 | |
afe0e400 | 739 | /** |
8b9ef005 | 740 | Returns the value of the given cell as a double. |
23324ae1 | 741 | |
8b9ef005 BP |
742 | This should only be called if CanGetValueAs() returns @true when called |
743 | with @c wxGRID_VALUE_FLOAT argument. Default implementation always | |
744 | return 0.0. | |
745 | */ | |
746 | virtual double GetValueAsDouble(int row, int col); | |
23324ae1 FM |
747 | |
748 | /** | |
8b9ef005 | 749 | Returns the value of the given cell as a boolean. |
23324ae1 | 750 | |
8b9ef005 BP |
751 | This should only be called if CanGetValueAs() returns @true when called |
752 | with @c wxGRID_VALUE_BOOL argument. Default implementation always | |
753 | return false. | |
754 | */ | |
755 | virtual bool GetValueAsBool(int row, int col); | |
23324ae1 FM |
756 | |
757 | /** | |
8b9ef005 BP |
758 | Returns the value of the given cell as a user-defined type. |
759 | ||
760 | This should only be called if CanGetValueAs() returns @true when called | |
761 | with @a typeName. Default implementation always return @NULL. | |
762 | */ | |
763 | virtual void *GetValueAsCustom(int row, int col, const wxString& typeName); | |
23324ae1 FM |
764 | |
765 | /** | |
8b9ef005 BP |
766 | Sets the value of the given cell as a long. |
767 | ||
768 | This should only be called if CanSetValueAs() returns @true when called | |
769 | with @c wxGRID_VALUE_NUMBER argument. Default implementation doesn't do | |
770 | anything. | |
771 | */ | |
772 | virtual void SetValueAsLong(int row, int col, long value); | |
23324ae1 FM |
773 | |
774 | /** | |
8b9ef005 BP |
775 | Sets the value of the given cell as a double. |
776 | ||
777 | This should only be called if CanSetValueAs() returns @true when called | |
778 | with @c wxGRID_VALUE_FLOAT argument. Default implementation doesn't do | |
779 | anything. | |
780 | */ | |
781 | virtual void SetValueAsDouble(int row, int col, double value); | |
23324ae1 FM |
782 | |
783 | /** | |
8b9ef005 BP |
784 | Sets the value of the given cell as a boolean. |
785 | ||
786 | This should only be called if CanSetValueAs() returns @true when called | |
787 | with @c wxGRID_VALUE_BOOL argument. Default implementation doesn't do | |
788 | anything. | |
789 | */ | |
790 | virtual void SetValueAsBool( int row, int col, bool value ); | |
23324ae1 FM |
791 | |
792 | /** | |
8b9ef005 BP |
793 | Sets the value of the given cell as a user-defined type. |
794 | ||
795 | This should only be called if CanSetValueAs() returns @true when called | |
796 | with @a typeName. Default implementation doesn't do anything. | |
797 | */ | |
798 | virtual void SetValueAsCustom(int row, int col, const wxString& typeName, | |
799 | void *value); | |
800 | ||
801 | //@} | |
802 | ||
23324ae1 FM |
803 | |
804 | /** | |
8b9ef005 BP |
805 | Called by the grid when the table is associated with it. |
806 | ||
807 | The default implementation stores the pointer and returns it from its | |
808 | GetView() and so only makes sense if the table cannot be associated | |
809 | with more than one grid at a time. | |
810 | */ | |
811 | virtual void SetView(wxGrid *grid); | |
23324ae1 FM |
812 | |
813 | /** | |
8b9ef005 BP |
814 | Returns the last grid passed to SetView(). |
815 | */ | |
816 | virtual wxGrid *GetView() const; | |
817 | ||
23324ae1 FM |
818 | |
819 | /** | |
8b9ef005 | 820 | @name Table Structure Modifiers |
23324ae1 | 821 | |
8b9ef005 BP |
822 | Notice that none of these functions are pure virtual as they don't have |
823 | to be implemented if the table structure is never modified after | |
824 | creation, i.e. neither rows nor columns are never added or deleted but | |
825 | that you do need to implement them if they are called, i.e. if your | |
826 | code either calls them directly or uses the matching wxGrid methods, as | |
827 | by default they simply do nothing which is definitely inappropriate. | |
828 | */ | |
829 | //@{ | |
23324ae1 | 830 | |
8b9ef005 BP |
831 | /** |
832 | Clear the table contents. | |
e54c96f1 | 833 | |
8b9ef005 BP |
834 | This method is used by wxGrid::ClearGrid(). |
835 | */ | |
836 | virtual void Clear(); | |
7c913512 | 837 | |
8b9ef005 BP |
838 | /** |
839 | Insert additional rows into the table. | |
7c913512 | 840 | |
8b9ef005 BP |
841 | @param pos |
842 | The position of the first new row. | |
843 | @param numRows | |
844 | The number of rows to insert. | |
845 | */ | |
846 | virtual bool InsertRows(size_t pos = 0, size_t numRows = 1); | |
7c913512 | 847 | |
23324ae1 | 848 | /** |
8b9ef005 BP |
849 | Append additional rows at the end of the table. |
850 | ||
851 | This method is provided in addition to InsertRows() as some data models | |
852 | may only support appending rows to them but not inserting them at | |
853 | arbitrary locations. In such case you may implement this method only | |
854 | and leave InsertRows() unimplemented. | |
855 | ||
856 | @param numRows | |
857 | The number of rows to add. | |
858 | */ | |
859 | virtual bool AppendRows(size_t numRows = 1); | |
23324ae1 FM |
860 | |
861 | /** | |
8b9ef005 | 862 | Delete rows from the table. |
afe0e400 | 863 | |
8b9ef005 BP |
864 | @param pos |
865 | The first row to delete. | |
866 | @param numRows | |
867 | The number of rows to delete. | |
868 | */ | |
869 | virtual bool DeleteRows(size_t pos = 0, size_t numRows = 1); | |
870 | ||
871 | /** | |
872 | Exactly the same as InsertRows() but for columns. | |
873 | */ | |
874 | virtual bool InsertCols(size_t pos = 0, size_t numCols = 1); | |
23324ae1 FM |
875 | |
876 | /** | |
8b9ef005 BP |
877 | Exactly the same as AppendRows() but for columns. |
878 | */ | |
879 | virtual bool AppendCols(size_t numCols = 1); | |
23324ae1 | 880 | |
8b9ef005 BP |
881 | /** |
882 | Exactly the same as DeleteRows() but for columns. | |
883 | */ | |
884 | virtual bool DeleteCols(size_t pos = 0, size_t numCols = 1); | |
e54c96f1 | 885 | |
8b9ef005 | 886 | //@} |
7c913512 | 887 | |
8b9ef005 BP |
888 | /** |
889 | @name Table Row and Column Labels | |
7c913512 | 890 | |
8b9ef005 BP |
891 | By default the numbers are used for labeling rows and Latin letters for |
892 | labeling columns. If the table has more than 26 columns, the pairs of | |
893 | letters are used starting from the 27-th one and so on, i.e. the | |
894 | sequence of labels is A, B, ..., Z, AA, AB, ..., AZ, BA, ..., ..., ZZ, | |
895 | AAA, ... | |
896 | */ | |
897 | //@{ | |
7c913512 | 898 | |
23324ae1 | 899 | /** |
8b9ef005 BP |
900 | Return the label of the specified row. |
901 | */ | |
902 | virtual wxString GetRowLabelValue(int row); | |
23324ae1 | 903 | |
8b9ef005 BP |
904 | /** |
905 | Return the label of the specified column. | |
906 | */ | |
907 | virtual wxString GetColLabelValue(int col); | |
5e6e278d | 908 | |
23324ae1 | 909 | /** |
8b9ef005 | 910 | Set the given label for the specified row. |
5e6e278d | 911 | |
8b9ef005 BP |
912 | The default version does nothing, i.e. the label is not stored. You |
913 | must override this method in your derived class if you wish | |
914 | wxGrid::SetRowLabelValue() to work. | |
915 | */ | |
916 | virtual void SetRowLabelValue(int row, const wxString& label); | |
23324ae1 FM |
917 | |
918 | /** | |
8b9ef005 BP |
919 | Exactly the same as SetRowLabelValue() but for columns. |
920 | */ | |
921 | virtual void SetColLabelValue(int col, const wxString& label); | |
23324ae1 | 922 | |
8b9ef005 | 923 | //@} |
23324ae1 FM |
924 | |
925 | ||
8b9ef005 BP |
926 | /** |
927 | @name Attributes Management | |
e54c96f1 | 928 | |
8b9ef005 BP |
929 | By default the attributes management is delegated to |
930 | wxGridCellAttrProvider class. You may override the methods in this | |
931 | section to handle the attributes directly if, for example, they can be | |
932 | computed from the cell values. | |
933 | */ | |
934 | //@{ | |
7c913512 | 935 | |
8b9ef005 BP |
936 | /** |
937 | Associate this attributes provider with the table. | |
7c913512 | 938 | |
8b9ef005 BP |
939 | The table takes ownership of @a attrProvider pointer and will delete it |
940 | when it doesn't need it any more. The pointer can be @NULL, however | |
941 | this won't disable attributes management in the table but will just | |
942 | result in a default attributes being recreated the next time any of the | |
943 | other functions in this section is called. To completely disable the | |
944 | attributes support, should this be needed, you need to override | |
945 | CanHaveAttributes() to return @false. | |
946 | */ | |
947 | void SetAttrProvider(wxGridCellAttrProvider *attrProvider); | |
afe0e400 | 948 | |
23324ae1 | 949 | /** |
8b9ef005 | 950 | Returns the attribute provider currently being used. |
23324ae1 | 951 | |
8b9ef005 BP |
952 | This function may return @NULL if the attribute provider hasn't been |
953 | neither associated with this table by SetAttrProvider() nor created on | |
954 | demand by any other methods. | |
955 | */ | |
956 | wxGridCellAttrProvider *GetAttrProvider() const; | |
23324ae1 FM |
957 | |
958 | /** | |
8b9ef005 | 959 | Return the attribute for the given cell. |
23324ae1 | 960 | |
8b9ef005 BP |
961 | By default this function is simply forwarded to |
962 | wxGridCellAttrProvider::GetAttr() but it may be overridden to handle | |
963 | attributes directly in the table. | |
964 | */ | |
965 | virtual wxGridCellAttr *GetAttr(int row, int col, | |
966 | wxGridCellAttr::wxAttrKind kind); | |
23324ae1 FM |
967 | |
968 | /** | |
8b9ef005 | 969 | Set attribute of the specified cell. |
23324ae1 | 970 | |
8b9ef005 BP |
971 | By default this function is simply forwarded to |
972 | wxGridCellAttrProvider::SetAttr(). | |
973 | ||
974 | The table takes ownership of @a attr, i.e. will call DecRef() on it. | |
975 | */ | |
976 | virtual void SetAttr(wxGridCellAttr* attr, int row, int col); | |
23324ae1 FM |
977 | |
978 | /** | |
8b9ef005 | 979 | Set attribute of the specified row. |
23324ae1 | 980 | |
8b9ef005 BP |
981 | By default this function is simply forwarded to |
982 | wxGridCellAttrProvider::SetRowAttr(). | |
23324ae1 | 983 | |
8b9ef005 BP |
984 | The table takes ownership of @a attr, i.e. will call DecRef() on it. |
985 | */ | |
986 | virtual void SetRowAttr(wxGridCellAttr *attr, int row); | |
e54c96f1 | 987 | |
8b9ef005 BP |
988 | /** |
989 | Set attribute of the specified column. | |
7c913512 | 990 | |
8b9ef005 BP |
991 | By default this function is simply forwarded to |
992 | wxGridCellAttrProvider::SetColAttr(). | |
7c913512 | 993 | |
8b9ef005 BP |
994 | The table takes ownership of @a attr, i.e. will call DecRef() on it. |
995 | */ | |
996 | virtual void SetColAttr(wxGridCellAttr *attr, int col); | |
997 | ||
998 | //@} | |
7c913512 | 999 | |
23324ae1 | 1000 | /** |
8b9ef005 BP |
1001 | Returns true if this table supports attributes or false otherwise. |
1002 | ||
1003 | By default, the table automatically creates a wxGridCellAttrProvider | |
1004 | when this function is called if it had no attribute provider before and | |
1005 | returns @true. | |
1006 | */ | |
1007 | virtual bool CanHaveAttributes(); | |
23324ae1 FM |
1008 | }; |
1009 | ||
1010 | ||
e54c96f1 | 1011 | |
23324ae1 | 1012 | /** |
8b9ef005 | 1013 | @class wxGrid |
7c913512 | 1014 | |
8b9ef005 | 1015 | wxGrid and its related classes are used for displaying and editing tabular |
caac7804 BP |
1016 | data. They provide a rich set of features for display, editing, and |
1017 | interacting with a variety of data sources. For simple applications, and to | |
1018 | help you get started, wxGrid is the only class you need to refer to | |
1019 | directly. It will set up default instances of the other classes and manage | |
1020 | them for you. For more complex applications you can derive your own classes | |
1021 | for custom grid views, grid data tables, cell editors and renderers. The | |
1022 | @ref overview_grid has examples of simple and more complex applications, | |
8b9ef005 BP |
1023 | explains the relationship between the various grid classes and has a |
1024 | summary of the keyboard shortcuts and mouse functions provided by wxGrid. | |
7c913512 | 1025 | |
8b9ef005 BP |
1026 | A wxGridTableBase class holds the actual data to be displayed by a wxGrid |
1027 | class. One or more wxGrid classes may act as a view for one table class. | |
1028 | The default table class is called wxGridStringTable and holds an array of | |
caac7804 | 1029 | strings. An instance of such a class is created by CreateGrid(). |
23324ae1 | 1030 | |
8b9ef005 BP |
1031 | wxGridCellRenderer is the abstract base class for rendereing contents in a |
1032 | cell. The following renderers are predefined: | |
caac7804 BP |
1033 | |
1034 | - wxGridCellBoolRenderer | |
1035 | - wxGridCellFloatRenderer | |
1036 | - wxGridCellNumberRenderer | |
1037 | - wxGridCellStringRenderer | |
1038 | ||
8b9ef005 | 1039 | The look of a cell can be further defined using wxGridCellAttr. An object |
caac7804 | 1040 | of this type may be returned by wxGridTableBase::GetAttr(). |
3c4f71cc | 1041 | |
8b9ef005 BP |
1042 | wxGridCellEditor is the abstract base class for editing the value of a |
1043 | cell. The following editors are predefined: | |
caac7804 BP |
1044 | |
1045 | - wxGridCellBoolEditor | |
1046 | - wxGridCellChoiceEditor | |
1047 | - wxGridCellFloatEditor | |
1048 | - wxGridCellNumberEditor | |
1049 | - wxGridCellTextEditor | |
1050 | ||
1051 | Please see wxGridEvent, wxGridSizeEvent, wxGridRangeSelectEvent, and | |
1052 | wxGridEditorCreatedEvent for the documentation of all event types you can | |
1053 | use with wxGrid. | |
8b9ef005 BP |
1054 | |
1055 | @library{wxadv} | |
1056 | @category{grid} | |
23324ae1 | 1057 | |
caac7804 | 1058 | @see @ref overview_grid, wxGridUpdateLocker |
8b9ef005 BP |
1059 | */ |
1060 | class wxGrid : public wxScrolledWindow | |
1061 | { | |
1062 | public: | |
caac7804 | 1063 | |
23324ae1 | 1064 | /** |
8b9ef005 BP |
1065 | Different selection modes supported by the grid. |
1066 | */ | |
1067 | enum wxGridSelectionModes | |
1068 | { | |
1069 | /** | |
1070 | The default selection mode allowing selection of the individual | |
1071 | cells as well as of the entire rows and columns. | |
1072 | */ | |
1073 | wxGridSelectCells, | |
23324ae1 | 1074 | |
8b9ef005 BP |
1075 | /** |
1076 | The selection mode allowing the selection of the entire rows only. | |
3c4f71cc | 1077 | |
8b9ef005 BP |
1078 | The user won't be able to select any cells or columns in this mode. |
1079 | */ | |
1080 | wxGridSelectRows, | |
23324ae1 | 1081 | |
8b9ef005 BP |
1082 | /** |
1083 | The selection mode allowing the selection of the entire columns only. | |
3c4f71cc | 1084 | |
8b9ef005 BP |
1085 | The user won't be able to select any cells or rows in this mode. |
1086 | */ | |
1087 | wxGridSelectColumns | |
1088 | }; | |
23324ae1 | 1089 | |
caac7804 BP |
1090 | |
1091 | /** | |
1092 | @name Constructors and Initialization | |
1093 | */ | |
1094 | //@{ | |
1095 | ||
23324ae1 | 1096 | /** |
8b9ef005 | 1097 | Default constructor. |
3c4f71cc | 1098 | |
8b9ef005 BP |
1099 | You must call Create() to really create the grid window and also call |
1100 | CreateGrid() or SetTable() to initialize the grid contents. | |
1101 | */ | |
1102 | wxGrid(); | |
23324ae1 | 1103 | /** |
8b9ef005 | 1104 | Constructor creating the grid window. |
3c4f71cc | 1105 | |
8b9ef005 BP |
1106 | You must call either CreateGrid() or SetTable() to initialize the grid |
1107 | contents before using it. | |
23324ae1 | 1108 | */ |
caac7804 | 1109 | wxGrid(wxWindow* parent, wxWindowID id, |
8b9ef005 BP |
1110 | const wxPoint& pos = wxDefaultPosition, |
1111 | const wxSize& size = wxDefaultSize, | |
1112 | long style = wxWANTS_CHARS, | |
1113 | const wxString& name = wxGridNameStr); | |
23324ae1 | 1114 | |
caac7804 BP |
1115 | /** |
1116 | Destructor. | |
1117 | ||
1118 | This will also destroy the associated grid table unless you passed a | |
1119 | table object to the grid and specified that the grid should not take | |
1120 | ownership of the table (see SetTable()). | |
1121 | */ | |
1122 | virtual ~wxGrid(); | |
1123 | ||
23324ae1 | 1124 | /** |
8b9ef005 BP |
1125 | Creates the grid window for an object initialized using the default |
1126 | constructor. | |
3c4f71cc | 1127 | |
8b9ef005 BP |
1128 | You must call either CreateGrid() or SetTable() to initialize the grid |
1129 | contents before using it. | |
1130 | */ | |
caac7804 | 1131 | bool Create(wxWindow* parent, wxWindowID id, |
8b9ef005 BP |
1132 | const wxPoint& pos = wxDefaultPosition, |
1133 | const wxSize& size = wxDefaultSize, | |
1134 | long style = wxWANTS_CHARS, | |
1135 | const wxString& name = wxGridNameStr); | |
23324ae1 FM |
1136 | |
1137 | /** | |
caac7804 | 1138 | Creates a grid with the specified initial number of rows and columns. |
3c4f71cc | 1139 | |
caac7804 BP |
1140 | Call this directly after the grid constructor. When you use this |
1141 | function wxGrid will create and manage a simple table of string values | |
1142 | for you. All of the grid data will be stored in memory. | |
1143 | ||
1144 | For applications with more complex data types or relationships, or for | |
1145 | dealing with very large datasets, you should derive your own grid table | |
1146 | class and pass a table object to the grid with SetTable(). | |
23324ae1 | 1147 | */ |
caac7804 BP |
1148 | bool CreateGrid(int numRows, int numCols, |
1149 | wxGridSelectionModes selmode = wxGridSelectCells); | |
23324ae1 FM |
1150 | |
1151 | /** | |
caac7804 | 1152 | Passes a pointer to a custom grid table to be used by the grid. |
3c4f71cc | 1153 | |
caac7804 BP |
1154 | This should be called after the grid constructor and before using the |
1155 | grid object. If @a takeOwnership is set to @true then the table will be | |
1156 | deleted by the wxGrid destructor. | |
3c4f71cc | 1157 | |
caac7804 BP |
1158 | Use this function instead of CreateGrid() when your application |
1159 | involves complex or non-string data or data sets that are too large to | |
1160 | fit wholly in memory. | |
23324ae1 | 1161 | */ |
caac7804 BP |
1162 | bool SetTable(wxGridTableBase* table, bool takeOwnership = false, |
1163 | wxGridSelectionModes selmode = wxGridSelectCells); | |
23324ae1 | 1164 | |
caac7804 | 1165 | //@} |
8b9ef005 | 1166 | |
3c4f71cc | 1167 | |
caac7804 BP |
1168 | /** |
1169 | @name Grid Line Formatting | |
1170 | */ | |
1171 | //@{ | |
1172 | ||
1173 | /** | |
1174 | Turns the drawing of grid lines on or off. | |
23324ae1 | 1175 | */ |
caac7804 | 1176 | void EnableGridLines(bool enable = true); |
23324ae1 FM |
1177 | |
1178 | /** | |
caac7804 | 1179 | Returns the pen used for vertical grid lines. |
3c4f71cc | 1180 | |
caac7804 BP |
1181 | This virtual function may be overridden in derived classes in order to |
1182 | change the appearance of individual grid lines for the given column | |
1183 | @a col. | |
23324ae1 | 1184 | |
caac7804 BP |
1185 | See GetRowGridLinePen() for an example. |
1186 | */ | |
1187 | virtual wxPen GetColGridLinePen(int col); | |
23324ae1 FM |
1188 | |
1189 | /** | |
caac7804 | 1190 | Returns the pen used for grid lines. |
23324ae1 | 1191 | |
caac7804 BP |
1192 | This virtual function may be overridden in derived classes in order to |
1193 | change the appearance of grid lines. Note that currently the pen width | |
1194 | must be 1. | |
3c4f71cc | 1195 | |
caac7804 BP |
1196 | @see GetColGridLinePen(), GetRowGridLinePen() |
1197 | */ | |
1198 | virtual wxPen GetDefaultGridLinePen(); | |
23324ae1 FM |
1199 | |
1200 | /** | |
caac7804 BP |
1201 | Returns the colour used for grid lines. |
1202 | ||
1203 | @see GetDefaultGridLinePen() | |
23324ae1 | 1204 | */ |
caac7804 | 1205 | wxColour GetGridLineColour() const; |
23324ae1 FM |
1206 | |
1207 | /** | |
caac7804 BP |
1208 | Returns the pen used for horizontal grid lines. |
1209 | ||
1210 | This virtual function may be overridden in derived classes in order to | |
1211 | change the appearance of individual grid line for the given @a row. | |
1212 | ||
1213 | Example: | |
1214 | @code | |
1215 | // in a grid displaying music notation, use a solid black pen between | |
1216 | // octaves (C0=row 127, C1=row 115 etc.) | |
1217 | wxPen MidiGrid::GetRowGridLinePen(int row) | |
1218 | { | |
1219 | if ( row % 12 == 7 ) | |
1220 | return wxPen(*wxBLACK, 1, wxSOLID); | |
1221 | else | |
1222 | return GetDefaultGridLinePen(); | |
1223 | } | |
1224 | @endcode | |
23324ae1 | 1225 | */ |
caac7804 | 1226 | virtual wxPen GetRowGridLinePen(int row); |
23324ae1 FM |
1227 | |
1228 | /** | |
caac7804 | 1229 | Returns @true if drawing of grid lines is turned on, @false otherwise. |
23324ae1 | 1230 | */ |
caac7804 | 1231 | bool GridLinesEnabled() const; |
23324ae1 FM |
1232 | |
1233 | /** | |
caac7804 | 1234 | Sets the colour used to draw grid lines. |
23324ae1 | 1235 | */ |
caac7804 BP |
1236 | void SetGridLineColour(const wxColour& colour); |
1237 | ||
1238 | //@} | |
1239 | ||
23324ae1 FM |
1240 | |
1241 | /** | |
caac7804 BP |
1242 | @name Label Values and Formatting |
1243 | */ | |
1244 | //@{ | |
23324ae1 FM |
1245 | |
1246 | /** | |
caac7804 BP |
1247 | Sets the arguments to the current column label alignment values. |
1248 | ||
1249 | Horizontal alignment will be one of @c wxALIGN_LEFT, @c wxALIGN_CENTRE | |
1250 | or @c wxALIGN_RIGHT. | |
1251 | ||
1252 | Vertical alignment will be one of @c wxALIGN_TOP, @c wxALIGN_CENTRE or | |
1253 | @c wxALIGN_BOTTOM. | |
23324ae1 | 1254 | */ |
caac7804 | 1255 | void GetColLabelAlignment(int* horiz, int* vert) const; |
23324ae1 FM |
1256 | |
1257 | /** | |
caac7804 BP |
1258 | Returns the orientation of the column labels (either @c wxHORIZONTAL or |
1259 | @c wxVERTICAL). | |
23324ae1 | 1260 | */ |
caac7804 | 1261 | int GetColLabelTextOrientation() const; |
23324ae1 FM |
1262 | |
1263 | /** | |
caac7804 | 1264 | Returns the specified column label. |
7c913512 | 1265 | |
caac7804 BP |
1266 | The default grid table class provides column labels of the form |
1267 | A,B...Z,AA,AB...ZZ,AAA... If you are using a custom grid table you can | |
1268 | override wxGridTableBase::GetColLabelValue() to provide your own | |
1269 | labels. | |
23324ae1 | 1270 | */ |
caac7804 | 1271 | wxString GetColLabelValue(int col) const; |
23324ae1 | 1272 | |
8b9ef005 | 1273 | /** |
caac7804 BP |
1274 | Returns the colour used for the background of row and column labels. |
1275 | */ | |
1276 | wxColour GetLabelBackgroundColour() const; | |
e54c96f1 | 1277 | |
caac7804 BP |
1278 | /** |
1279 | Returns the font used for row and column labels. | |
1280 | */ | |
1281 | wxFont GetLabelFont() const; | |
7c913512 | 1282 | |
caac7804 BP |
1283 | /** |
1284 | Returns the colour used for row and column label text. | |
8b9ef005 | 1285 | */ |
caac7804 | 1286 | wxColour GetLabelTextColour() const; |
7c913512 | 1287 | |
23324ae1 | 1288 | /** |
caac7804 | 1289 | Returns the alignment used for row labels. |
3c4f71cc | 1290 | |
caac7804 BP |
1291 | Horizontal alignment will be one of @c wxALIGN_LEFT, @c wxALIGN_CENTRE |
1292 | or @c wxALIGN_RIGHT. | |
1293 | ||
1294 | Vertical alignment will be one of @c wxALIGN_TOP, @c wxALIGN_CENTRE or | |
1295 | @c wxALIGN_BOTTOM. | |
23324ae1 | 1296 | */ |
caac7804 | 1297 | void GetRowLabelAlignment(int* horiz, int* vert) const; |
23324ae1 FM |
1298 | |
1299 | /** | |
caac7804 | 1300 | Returns the specified row label. |
23324ae1 | 1301 | |
caac7804 BP |
1302 | The default grid table class provides numeric row labels. If you are |
1303 | using a custom grid table you can override | |
1304 | wxGridTableBase::GetRowLabelValue() to provide your own labels. | |
23324ae1 | 1305 | */ |
caac7804 | 1306 | wxString GetRowLabelValue(int row) const; |
23324ae1 FM |
1307 | |
1308 | /** | |
caac7804 BP |
1309 | Hides the column labels by calling SetColLabelSize() with a size of 0. |
1310 | Show labels again by calling that method with a width greater than 0. | |
23324ae1 | 1311 | */ |
caac7804 | 1312 | void HideColLabels(); |
23324ae1 FM |
1313 | |
1314 | /** | |
caac7804 | 1315 | Hides the row labels by calling SetRowLabelSize() with a size of 0. |
23324ae1 | 1316 | |
caac7804 BP |
1317 | The labels can be shown again by calling SetRowLabelSize() with a width |
1318 | greater than 0. | |
23324ae1 | 1319 | */ |
caac7804 | 1320 | void HideRowLabels(); |
23324ae1 FM |
1321 | |
1322 | /** | |
caac7804 | 1323 | Sets the horizontal and vertical alignment of column label text. |
23324ae1 | 1324 | |
caac7804 BP |
1325 | Horizontal alignment should be one of @c wxALIGN_LEFT, |
1326 | @c wxALIGN_CENTRE or @c wxALIGN_RIGHT. Vertical alignment should be one | |
1327 | of @c wxALIGN_TOP, @c wxALIGN_CENTRE or @c wxALIGN_BOTTOM. | |
23324ae1 | 1328 | */ |
caac7804 | 1329 | void SetColLabelAlignment(int horiz, int vert); |
23324ae1 FM |
1330 | |
1331 | /** | |
caac7804 BP |
1332 | Sets the orientation of the column labels (either @c wxHORIZONTAL or |
1333 | @c wxVERTICAL). | |
8b9ef005 | 1334 | */ |
caac7804 | 1335 | void SetColLabelTextOrientation(int textOrientation); |
7c913512 | 1336 | |
23324ae1 | 1337 | /** |
caac7804 | 1338 | Set the value for the given column label. |
8b9ef005 | 1339 | |
caac7804 BP |
1340 | If you are using a custom grid table you must override |
1341 | wxGridTableBase::SetColLabelValue() for this to have any effect. | |
23324ae1 | 1342 | */ |
caac7804 | 1343 | void SetColLabelValue(int col, const wxString& value); |
23324ae1 FM |
1344 | |
1345 | /** | |
caac7804 | 1346 | Sets the background colour for row and column labels. |
23324ae1 | 1347 | */ |
caac7804 | 1348 | void SetLabelBackgroundColour(const wxColour& colour); |
23324ae1 | 1349 | |
8b9ef005 | 1350 | /** |
caac7804 BP |
1351 | Sets the font for row and column labels. |
1352 | */ | |
1353 | void SetLabelFont(const wxFont& font); | |
55f0bf1f | 1354 | |
8b9ef005 | 1355 | /** |
caac7804 BP |
1356 | Sets the colour for row and column label text. |
1357 | */ | |
1358 | void SetLabelTextColour(const wxColour& colour); | |
55f0bf1f | 1359 | |
8b9ef005 | 1360 | /** |
caac7804 | 1361 | Sets the horizontal and vertical alignment of row label text. |
7c913512 | 1362 | |
caac7804 BP |
1363 | Horizontal alignment should be one of @c wxALIGN_LEFT, |
1364 | @c wxALIGN_CENTRE or @c wxALIGN_RIGHT. Vertical alignment should be one | |
1365 | of @c wxALIGN_TOP, @c wxALIGN_CENTRE or @c wxALIGN_BOTTOM. | |
8b9ef005 | 1366 | */ |
caac7804 | 1367 | void SetRowLabelAlignment(int horiz, int vert); |
7c913512 | 1368 | |
23324ae1 | 1369 | /** |
caac7804 | 1370 | Sets the value for the given row label. |
55f0bf1f | 1371 | |
caac7804 BP |
1372 | If you are using a derived grid table you must override |
1373 | wxGridTableBase::SetRowLabelValue() for this to have any effect. | |
8b9ef005 | 1374 | */ |
caac7804 | 1375 | void SetRowLabelValue(int row, const wxString& value); |
55f0bf1f | 1376 | |
8b9ef005 | 1377 | /** |
caac7804 BP |
1378 | Call this in order to make the column labels use a native look by using |
1379 | wxRenderer::DrawHeaderButton() internally. | |
55f0bf1f | 1380 | |
caac7804 BP |
1381 | There is no equivalent method for drawing row columns as there is not |
1382 | native look for that. This option is useful when using wxGrid for | |
1383 | displaying tables and not as a spread-sheet. | |
ad805b9e VZ |
1384 | |
1385 | @see UseNativeHeader() | |
8b9ef005 | 1386 | */ |
caac7804 | 1387 | void SetUseNativeColLabels(bool native = true); |
55f0bf1f | 1388 | |
ad805b9e VZ |
1389 | /** |
1390 | Enable the use of native header window for column labels. | |
1391 | ||
1392 | If this function is called with @true argument, a wxHeaderCtrl is used | |
1393 | instead to display the column labels instead of drawing them in wxGrid | |
1394 | code itself. This has the advantage of making the grid look and feel | |
1395 | perfectly the same as native applications (using SetUseNativeColLabels() | |
1396 | the grid can be made to look more natively but it still doesn't feel | |
1397 | natively, notably the column resizing and dragging still works slightly | |
1398 | differently as it is implemented in wxWidgets itself) but results in | |
1399 | different behaviour for column and row headers, for which there is no | |
1400 | equivalent function, and, most importantly, is unsuitable for grids | |
1401 | with huge numbers of columns as wxHeaderCtrl doesn't support virtual | |
1402 | mode. Because of this, by default the grid does not use the native | |
1403 | header control but you should call this function to enable it if you | |
1404 | are using the grid to display tabular data and don't have thousands of | |
1405 | columns in it. | |
1406 | ||
1407 | Also note that currently @c wxEVT_GRID_LABEL_LEFT_DCLICK and @c | |
1408 | wxEVT_GRID_LABEL_RIGHT_DCLICK events are not generated for the column | |
1409 | labels if the native columns header is used (but this limitation could | |
1410 | possibly be lifted in the future). | |
1411 | */ | |
1412 | void UseNativeColHeader(bool native = true); | |
1413 | ||
caac7804 | 1414 | //@} |
55f0bf1f | 1415 | |
55f0bf1f VZ |
1416 | |
1417 | /** | |
caac7804 | 1418 | @name Cell Formatting |
55f0bf1f | 1419 | |
caac7804 BP |
1420 | Note that wxGridCellAttr can be used alternatively to most of these |
1421 | methods. See the "Attributes Management" of wxGridTableBase. | |
1422 | */ | |
1423 | //@{ | |
23324ae1 FM |
1424 | |
1425 | /** | |
caac7804 BP |
1426 | Sets the arguments to the horizontal and vertical text alignment values |
1427 | for the grid cell at the specified location. | |
55f0bf1f | 1428 | |
caac7804 BP |
1429 | Horizontal alignment will be one of @c wxALIGN_LEFT, @c wxALIGN_CENTRE |
1430 | or @c wxALIGN_RIGHT. | |
1431 | ||
1432 | Vertical alignment will be one of @c wxALIGN_TOP, @c wxALIGN_CENTRE or | |
1433 | @c wxALIGN_BOTTOM. | |
8b9ef005 | 1434 | */ |
caac7804 | 1435 | void GetCellAlignment(int row, int col, int* horiz, int* vert) const; |
55f0bf1f VZ |
1436 | |
1437 | /** | |
caac7804 | 1438 | Returns the background colour of the cell at the specified location. |
23324ae1 | 1439 | */ |
caac7804 | 1440 | wxColour GetCellBackgroundColour(int row, int col) const; |
23324ae1 FM |
1441 | |
1442 | /** | |
caac7804 BP |
1443 | Returns the font for text in the grid cell at the specified location. |
1444 | */ | |
1445 | wxFont GetCellFont(int row, int col) const; | |
55f0bf1f | 1446 | |
caac7804 BP |
1447 | /** |
1448 | Returns the text colour for the grid cell at the specified location. | |
23324ae1 | 1449 | */ |
caac7804 | 1450 | wxColour GetCellTextColour(int row, int col) const; |
23324ae1 FM |
1451 | |
1452 | /** | |
caac7804 BP |
1453 | Returns the default cell alignment. |
1454 | ||
1455 | Horizontal alignment will be one of @c wxALIGN_LEFT, @c wxALIGN_CENTRE | |
1456 | or @c wxALIGN_RIGHT. | |
55f0bf1f | 1457 | |
caac7804 BP |
1458 | Vertical alignment will be one of @c wxALIGN_TOP, @c wxALIGN_CENTRE or |
1459 | @c wxALIGN_BOTTOM. | |
1460 | ||
1461 | @see SetDefaultCellAlignment() | |
8b9ef005 | 1462 | */ |
caac7804 | 1463 | void GetDefaultCellAlignment(int* horiz, int* vert) const; |
55f0bf1f | 1464 | |
8b9ef005 | 1465 | /** |
caac7804 | 1466 | Returns the current default background colour for grid cells. |
23324ae1 | 1467 | */ |
caac7804 | 1468 | wxColour GetDefaultCellBackgroundColour() const; |
23324ae1 | 1469 | |
9f7aee01 | 1470 | /** |
caac7804 | 1471 | Returns the current default font for grid cell text. |
8b9ef005 | 1472 | */ |
caac7804 | 1473 | wxFont GetDefaultCellFont() const; |
9f7aee01 | 1474 | |
8b9ef005 | 1475 | /** |
caac7804 | 1476 | Returns the current default colour for grid cell text. |
8b9ef005 | 1477 | */ |
caac7804 | 1478 | wxColour GetDefaultCellTextColour() const; |
9f7aee01 | 1479 | |
8b9ef005 | 1480 | /** |
caac7804 BP |
1481 | Sets the horizontal and vertical alignment for grid cell text at the |
1482 | specified location. | |
9f7aee01 | 1483 | |
caac7804 BP |
1484 | Horizontal alignment should be one of @c wxALIGN_LEFT, |
1485 | @c wxALIGN_CENTRE or @c wxALIGN_RIGHT. | |
1486 | ||
1487 | Vertical alignment should be one of @c wxALIGN_TOP, @c wxALIGN_CENTRE | |
1488 | or @c wxALIGN_BOTTOM. | |
1489 | */ | |
1490 | void SetCellAlignment(int row, int col, int horiz, int vert); | |
9f7aee01 | 1491 | /** |
caac7804 BP |
1492 | Sets the horizontal and vertical alignment for grid cell text at the |
1493 | specified location. | |
9f7aee01 | 1494 | |
caac7804 BP |
1495 | Horizontal alignment should be one of @c wxALIGN_LEFT, |
1496 | @c wxALIGN_CENTRE or @c wxALIGN_RIGHT. | |
9f7aee01 | 1497 | |
caac7804 BP |
1498 | Vertical alignment should be one of @c wxALIGN_TOP, @c wxALIGN_CENTRE |
1499 | or @c wxALIGN_BOTTOM. | |
8b9ef005 | 1500 | */ |
caac7804 | 1501 | void SetCellAlignment(int align, int row, int col); |
9f7aee01 | 1502 | |
23324ae1 | 1503 | /** |
caac7804 | 1504 | Set the background colour for the given cell or all cells by default. |
23324ae1 | 1505 | */ |
caac7804 | 1506 | void SetCellBackgroundColour(int row, int col, const wxColour& colour); |
23324ae1 FM |
1507 | |
1508 | /** | |
caac7804 BP |
1509 | Sets the font for text in the grid cell at the specified location. |
1510 | */ | |
1511 | void SetCellFont(int row, int col, const wxFont& font); | |
8b9ef005 | 1512 | |
caac7804 BP |
1513 | /** |
1514 | Sets the text colour for the given cell. | |
1515 | */ | |
1516 | void SetCellTextColour(int row, int col, const wxColour& colour); | |
1517 | /** | |
1518 | Sets the text colour for the given cell. | |
1519 | */ | |
1520 | void SetCellTextColour(const wxColour& val, int row, int col); | |
1521 | /** | |
1522 | Sets the text colour for all cells by default. | |
1523 | */ | |
1524 | void SetCellTextColour(const wxColour& colour); | |
8b9ef005 | 1525 | |
caac7804 BP |
1526 | /** |
1527 | Sets the default horizontal and vertical alignment for grid cell text. | |
1528 | ||
1529 | Horizontal alignment should be one of @c wxALIGN_LEFT, | |
1530 | @c wxALIGN_CENTRE or @c wxALIGN_RIGHT. Vertical alignment should be one | |
1531 | of @c wxALIGN_TOP, @c wxALIGN_CENTRE or @c wxALIGN_BOTTOM. | |
23324ae1 | 1532 | */ |
caac7804 | 1533 | void SetDefaultCellAlignment(int horiz, int vert); |
23324ae1 FM |
1534 | |
1535 | /** | |
caac7804 | 1536 | Sets the default background colour for grid cells. |
23324ae1 | 1537 | */ |
caac7804 | 1538 | void SetDefaultCellBackgroundColour(const wxColour& colour); |
23324ae1 FM |
1539 | |
1540 | /** | |
caac7804 BP |
1541 | Sets the default font to be used for grid cell text. |
1542 | */ | |
1543 | void SetDefaultCellFont(const wxFont& font); | |
8b9ef005 | 1544 | |
caac7804 BP |
1545 | /** |
1546 | Sets the current default colour for grid cell text. | |
23324ae1 | 1547 | */ |
caac7804 BP |
1548 | void SetDefaultCellTextColour(const wxColour& colour); |
1549 | ||
1550 | //@} | |
1551 | ||
1552 | ||
1553 | /** | |
1554 | @name Cell Values, Editors, and Renderers | |
1555 | ||
1556 | Note that wxGridCellAttr can be used alternatively to most of these | |
1557 | methods. See the "Attributes Management" of wxGridTableBase. | |
1558 | */ | |
1559 | //@{ | |
23324ae1 FM |
1560 | |
1561 | /** | |
caac7804 BP |
1562 | Returns @true if the in-place edit control for the current grid cell |
1563 | can be used and @false otherwise. | |
1564 | ||
1565 | This function always returns @false for the read-only cells. | |
23324ae1 | 1566 | */ |
caac7804 | 1567 | bool CanEnableCellControl() const; |
23324ae1 FM |
1568 | |
1569 | /** | |
caac7804 | 1570 | Disables in-place editing of grid cells. |
8b9ef005 | 1571 | |
caac7804 BP |
1572 | Equivalent to calling EnableCellEditControl(@false). |
1573 | */ | |
1574 | void DisableCellEditControl(); | |
8b9ef005 | 1575 | |
caac7804 BP |
1576 | /** |
1577 | Enables or disables in-place editing of grid cell data. | |
1578 | ||
1579 | The grid will issue either a @c wxEVT_GRID_EDITOR_SHOWN or | |
1580 | @c wxEVT_GRID_EDITOR_HIDDEN event. | |
23324ae1 | 1581 | */ |
caac7804 | 1582 | void EnableCellEditControl(bool enable = true); |
23324ae1 FM |
1583 | |
1584 | /** | |
caac7804 BP |
1585 | Makes the grid globally editable or read-only. |
1586 | ||
1587 | If the edit argument is @false this function sets the whole grid as | |
1588 | read-only. If the argument is @true the grid is set to the default | |
1589 | state where cells may be editable. In the default state you can set | |
1590 | single grid cells and whole rows and columns to be editable or | |
1591 | read-only via wxGridCellAttr::SetReadOnly(). For single cells you | |
1592 | can also use the shortcut function SetReadOnly(). | |
1593 | ||
1594 | For more information about controlling grid cell attributes see the | |
1595 | wxGridCellAttr class and the @ref overview_grid. | |
23324ae1 | 1596 | */ |
caac7804 | 1597 | void EnableEditing(bool edit); |
23324ae1 FM |
1598 | |
1599 | /** | |
8b9ef005 | 1600 | Returns a pointer to the editor for the cell at the specified location. |
3c4f71cc | 1601 | |
caac7804 BP |
1602 | See wxGridCellEditor and the @ref overview_grid for more information |
1603 | about cell editors and renderers. | |
3c4f71cc | 1604 | |
8b9ef005 | 1605 | The caller must call DecRef() on the returned pointer. |
23324ae1 | 1606 | */ |
8b9ef005 | 1607 | wxGridCellEditor* GetCellEditor(int row, int col) const; |
23324ae1 | 1608 | |
8b9ef005 BP |
1609 | /** |
1610 | Returns a pointer to the renderer for the grid cell at the specified | |
1611 | location. | |
08dd9b5a | 1612 | |
caac7804 BP |
1613 | See wxGridCellRenderer and the @ref overview_grid for more information |
1614 | about cell editors and renderers. | |
8b9ef005 BP |
1615 | |
1616 | The caller must call DecRef() on the returned pointer. | |
23324ae1 | 1617 | */ |
8b9ef005 | 1618 | wxGridCellRenderer* GetCellRenderer(int row, int col) const; |
23324ae1 FM |
1619 | |
1620 | /** | |
caac7804 | 1621 | Returns the string contained in the cell at the specified location. |
23324ae1 | 1622 | |
caac7804 BP |
1623 | For simple applications where a grid object automatically uses a |
1624 | default grid table of string values you use this function together with | |
1625 | SetCellValue() to access cell values. For more complex applications | |
1626 | where you have derived your own grid table class that contains various | |
1627 | data types (e.g. numeric, boolean or user-defined custom types) then | |
1628 | you only use this function for those cells that contain string values. | |
1629 | ||
1630 | See wxGridTableBase::CanGetValueAs() and the @ref overview_grid for | |
1631 | more information. | |
1632 | */ | |
1633 | wxString GetCellValue(int row, int col) const; | |
23324ae1 | 1634 | /** |
8b9ef005 | 1635 | Returns the string contained in the cell at the specified location. |
08dd9b5a | 1636 | |
8b9ef005 BP |
1637 | For simple applications where a grid object automatically uses a |
1638 | default grid table of string values you use this function together with | |
1639 | SetCellValue() to access cell values. For more complex applications | |
1640 | where you have derived your own grid table class that contains various | |
1641 | data types (e.g. numeric, boolean or user-defined custom types) then | |
1642 | you only use this function for those cells that contain string values. | |
1643 | ||
caac7804 BP |
1644 | See wxGridTableBase::CanGetValueAs() and the @ref overview_grid for |
1645 | more information. | |
23324ae1 | 1646 | */ |
caac7804 | 1647 | const wxString GetCellValue(const wxGridCellCoords& coords) const; |
23324ae1 FM |
1648 | |
1649 | /** | |
caac7804 BP |
1650 | Returns a pointer to the current default grid cell editor. |
1651 | ||
1652 | See wxGridCellEditor and the @ref overview_grid for more information | |
1653 | about cell editors and renderers. | |
23324ae1 | 1654 | */ |
caac7804 | 1655 | wxGridCellEditor* GetDefaultEditor() const; |
23324ae1 FM |
1656 | |
1657 | /** | |
caac7804 | 1658 | Returns the default editor for the specified cell. |
08dd9b5a | 1659 | |
caac7804 BP |
1660 | The base class version returns the editor appropriate for the current |
1661 | cell type but this method may be overridden in the derived classes to | |
1662 | use custom editors for some cells by default. | |
8b9ef005 | 1663 | |
caac7804 BP |
1664 | Notice that the same may be achieved in a usually simpler way by |
1665 | associating a custom editor with the given cell or cells. | |
23324ae1 | 1666 | |
caac7804 BP |
1667 | The caller must call DecRef() on the returned pointer. |
1668 | */ | |
1669 | virtual wxGridCellEditor* GetDefaultEditorForCell(int row, int col) const; | |
23324ae1 | 1670 | /** |
caac7804 | 1671 | Returns the default editor for the specified cell. |
08dd9b5a | 1672 | |
caac7804 BP |
1673 | The base class version returns the editor appropriate for the current |
1674 | cell type but this method may be overridden in the derived classes to | |
1675 | use custom editors for some cells by default. | |
8b9ef005 | 1676 | |
caac7804 BP |
1677 | Notice that the same may be achieved in a usually simpler way by |
1678 | associating a custom editor with the given cell or cells. | |
23324ae1 | 1679 | |
caac7804 | 1680 | The caller must call DecRef() on the returned pointer. |
23324ae1 | 1681 | */ |
caac7804 | 1682 | wxGridCellEditor* GetDefaultEditorForCell(const wxGridCellCoords& c) const; |
23324ae1 FM |
1683 | |
1684 | /** | |
caac7804 BP |
1685 | Returns the default editor for the cells containing values of the given |
1686 | type. | |
55f0bf1f | 1687 | |
caac7804 BP |
1688 | The base class version returns the editor which was associated with the |
1689 | specified @a typeName when it was registered RegisterDataType() but | |
1690 | this function may be overridden to return something different. This | |
1691 | allows to override an editor used for one of the standard types. | |
1692 | ||
1693 | The caller must call DecRef() on the returned pointer. | |
23324ae1 | 1694 | */ |
caac7804 | 1695 | virtual wxGridCellEditor* GetDefaultEditorForType(const wxString& typeName) const; |
23324ae1 FM |
1696 | |
1697 | /** | |
caac7804 | 1698 | Returns a pointer to the current default grid cell renderer. |
8b9ef005 | 1699 | |
caac7804 BP |
1700 | See wxGridCellRenderer and the @ref overview_grid for more information |
1701 | about cell editors and renderers. | |
1702 | ||
1703 | The caller must call DecRef() on the returned pointer. | |
23324ae1 | 1704 | */ |
caac7804 | 1705 | wxGridCellRenderer* GetDefaultRenderer() const; |
23324ae1 | 1706 | |
9f7aee01 | 1707 | /** |
caac7804 BP |
1708 | Returns the default renderer for the given cell. |
1709 | ||
1710 | The base class version returns the renderer appropriate for the current | |
1711 | cell type but this method may be overridden in the derived classes to | |
1712 | use custom renderers for some cells by default. | |
1713 | ||
1714 | The caller must call DecRef() on the returned pointer. | |
8b9ef005 | 1715 | */ |
caac7804 | 1716 | virtual wxGridCellRenderer* GetDefaultRendererForCell(int row, int col) const; |
9f7aee01 | 1717 | |
8b9ef005 | 1718 | /** |
caac7804 BP |
1719 | Returns the default renderer for the cell containing values of the |
1720 | given type. | |
9f7aee01 | 1721 | |
caac7804 | 1722 | @see GetDefaultEditorForType() |
8b9ef005 | 1723 | */ |
caac7804 | 1724 | virtual wxGridCellRenderer* GetDefaultRendererForType(const wxString& typeName) const; |
08dd9b5a | 1725 | |
8b9ef005 | 1726 | /** |
caac7804 | 1727 | Hides the in-place cell edit control. |
23324ae1 | 1728 | */ |
caac7804 | 1729 | void HideCellEditControl(); |
23324ae1 FM |
1730 | |
1731 | /** | |
caac7804 | 1732 | Returns @true if the in-place edit control is currently enabled. |
8b9ef005 | 1733 | */ |
caac7804 | 1734 | bool IsCellEditControlEnabled() const; |
3c4f71cc | 1735 | |
8b9ef005 | 1736 | /** |
caac7804 | 1737 | Returns @true if the current cell is read-only. |
3c4f71cc | 1738 | |
caac7804 | 1739 | @see SetReadOnly(), IsReadOnly() |
23324ae1 | 1740 | */ |
caac7804 | 1741 | bool IsCurrentCellReadOnly() const; |
23324ae1 FM |
1742 | |
1743 | /** | |
caac7804 BP |
1744 | Returns @false if the whole grid has been set as read-only or @true |
1745 | otherwise. | |
1746 | ||
1747 | See EnableEditing() for more information about controlling the editing | |
1748 | status of grid cells. | |
8b9ef005 | 1749 | */ |
caac7804 | 1750 | bool IsEditable() const; |
23324ae1 | 1751 | |
8b9ef005 | 1752 | /** |
caac7804 | 1753 | Returns @true if the cell at the specified location can't be edited. |
55f0bf1f | 1754 | |
caac7804 | 1755 | @see SetReadOnly(), IsCurrentCellReadOnly() |
23324ae1 | 1756 | */ |
caac7804 | 1757 | bool IsReadOnly(int row, int col) const; |
23324ae1 FM |
1758 | |
1759 | /** | |
caac7804 | 1760 | Register a new data type. |
08dd9b5a | 1761 | |
caac7804 BP |
1762 | The data types allow to naturally associate specific renderers and |
1763 | editors to the cells containing values of the given type. For example, | |
1764 | the grid automatically registers a data type with the name | |
1765 | @c wxGRID_VALUE_STRING which uses wxGridCellStringRenderer and | |
1766 | wxGridCellTextEditor as its renderer and editor respectively -- this is | |
1767 | the data type used by all the cells of the default wxGridStringTable, | |
1768 | so this renderer and editor are used by default for all grid cells. | |
8b9ef005 | 1769 | |
caac7804 BP |
1770 | However if a custom table returns @c wxGRID_VALUE_BOOL from its |
1771 | wxGridTableBase::GetTypeName() method, then wxGridCellBoolRenderer and | |
1772 | wxGridCellBoolEditor are used for it because the grid also registers a | |
1773 | boolean data type with this name. | |
8b9ef005 | 1774 | |
caac7804 BP |
1775 | And as this mechanism is completely generic, you may register your own |
1776 | data types using your own custom renderers and editors. Just remember | |
1777 | that the table must identify a cell as being of the given type for them | |
1778 | to be used for this cell. | |
1779 | ||
1780 | @param typeName | |
1781 | Name of the new type. May be any string, but if the type name is | |
1782 | the same as the name of an already registered type, including one | |
1783 | of the standard ones (which are @c wxGRID_VALUE_STRING, @c | |
1784 | wxGRID_VALUE_BOOL, @c wxGRID_VALUE_NUMBER, @c wxGRID_VALUE_FLOAT | |
1785 | and @c wxGRID_VALUE_CHOICE), then the new registration information | |
1786 | replaces the previously used renderer and editor. | |
1787 | @param renderer | |
1788 | The renderer to use for the cells of this type. Its ownership is | |
1789 | taken by the grid, i.e. it will call DecRef() on this pointer when | |
1790 | it doesn't need it any longer. | |
1791 | @param editor | |
1792 | The editor to use for the cells of this type. Its ownership is also | |
1793 | taken by the grid. | |
23324ae1 | 1794 | */ |
caac7804 BP |
1795 | void RegisterDataType(const wxString& typeName, |
1796 | wxGridCellRenderer* renderer, | |
1797 | wxGridCellEditor* editor); | |
23324ae1 FM |
1798 | |
1799 | /** | |
caac7804 BP |
1800 | Sets the value of the current grid cell to the current in-place edit |
1801 | control value. | |
55f0bf1f | 1802 | |
caac7804 BP |
1803 | This is called automatically when the grid cursor moves from the |
1804 | current cell to a new cell. It is also a good idea to call this | |
1805 | function when closing a grid since any edits to the final cell location | |
1806 | will not be saved otherwise. | |
23324ae1 | 1807 | */ |
caac7804 | 1808 | void SaveEditControlValue(); |
23324ae1 FM |
1809 | |
1810 | /** | |
caac7804 | 1811 | Sets the editor for the grid cell at the specified location. |
55f0bf1f | 1812 | |
caac7804 | 1813 | The grid will take ownership of the pointer. |
8b9ef005 | 1814 | |
caac7804 BP |
1815 | See wxGridCellEditor and the @ref overview_grid for more information |
1816 | about cell editors and renderers. | |
23324ae1 | 1817 | */ |
caac7804 | 1818 | void SetCellEditor(int row, int col, wxGridCellEditor* editor); |
23324ae1 FM |
1819 | |
1820 | /** | |
caac7804 | 1821 | Sets the renderer for the grid cell at the specified location. |
55f0bf1f | 1822 | |
caac7804 | 1823 | The grid will take ownership of the pointer. |
8b9ef005 | 1824 | |
caac7804 BP |
1825 | See wxGridCellRenderer and the @ref overview_grid for more information |
1826 | about cell editors and renderers. | |
23324ae1 | 1827 | */ |
caac7804 | 1828 | void SetCellRenderer(int row, int col, wxGridCellRenderer* renderer); |
23324ae1 FM |
1829 | |
1830 | /** | |
caac7804 | 1831 | Sets the string value for the cell at the specified location. |
55f0bf1f | 1832 | |
caac7804 BP |
1833 | For simple applications where a grid object automatically uses a |
1834 | default grid table of string values you use this function together with | |
1835 | GetCellValue() to access cell values. For more complex applications | |
1836 | where you have derived your own grid table class that contains various | |
1837 | data types (e.g. numeric, boolean or user-defined custom types) then | |
1838 | you only use this function for those cells that contain string values. | |
8b9ef005 | 1839 | |
caac7804 BP |
1840 | See wxGridTableBase::CanSetValueAs() and the @ref overview_grid for |
1841 | more information. | |
23324ae1 | 1842 | */ |
caac7804 | 1843 | void SetCellValue(int row, int col, const wxString& s); |
23324ae1 | 1844 | /** |
caac7804 | 1845 | Sets the string value for the cell at the specified location. |
55f0bf1f | 1846 | |
caac7804 BP |
1847 | For simple applications where a grid object automatically uses a |
1848 | default grid table of string values you use this function together with | |
1849 | GetCellValue() to access cell values. For more complex applications | |
1850 | where you have derived your own grid table class that contains various | |
1851 | data types (e.g. numeric, boolean or user-defined custom types) then | |
1852 | you only use this function for those cells that contain string values. | |
23324ae1 | 1853 | |
caac7804 BP |
1854 | See wxGridTableBase::CanSetValueAs() and the @ref overview_grid for |
1855 | more information. | |
23324ae1 | 1856 | */ |
caac7804 | 1857 | void SetCellValue(const wxGridCellCoords& coords, const wxString& s); |
23324ae1 | 1858 | /** |
caac7804 BP |
1859 | @deprecated Please use SetCellValue(int,int,const wxString&) or |
1860 | SetCellValue(const wxGridCellCoords&,const wxString&) | |
1861 | instead. | |
23324ae1 | 1862 | |
caac7804 | 1863 | Sets the string value for the cell at the specified location. |
23324ae1 | 1864 | |
caac7804 BP |
1865 | For simple applications where a grid object automatically uses a |
1866 | default grid table of string values you use this function together with | |
1867 | GetCellValue() to access cell values. For more complex applications | |
1868 | where you have derived your own grid table class that contains various | |
1869 | data types (e.g. numeric, boolean or user-defined custom types) then | |
1870 | you only use this function for those cells that contain string values. | |
1871 | ||
1872 | See wxGridTableBase::CanSetValueAs() and the @ref overview_grid for | |
1873 | more information. | |
23324ae1 | 1874 | */ |
caac7804 | 1875 | void SetCellValue(const wxString& val, int row, int col); |
23324ae1 FM |
1876 | |
1877 | /** | |
caac7804 | 1878 | Sets the specified column to display boolean values. |
55f0bf1f | 1879 | |
caac7804 | 1880 | @see SetColFormatCustom() |
23324ae1 | 1881 | */ |
caac7804 | 1882 | void SetColFormatBool(int col); |
23324ae1 FM |
1883 | |
1884 | /** | |
caac7804 | 1885 | Sets the specified column to display data in a custom format. |
23324ae1 | 1886 | |
caac7804 BP |
1887 | This method provides an alternative to defining a custom grid table |
1888 | which would return @a typeName from its GetTypeName() method for the | |
1889 | cells in this column: while it doesn't really change the type of the | |
1890 | cells in this column, it does associate the renderer and editor used | |
1891 | for the cells of the specified type with them. | |
23324ae1 | 1892 | |
caac7804 BP |
1893 | See the @ref overview_grid for more information on working with custom |
1894 | data types. | |
23324ae1 | 1895 | */ |
caac7804 | 1896 | void SetColFormatCustom(int col, const wxString& typeName); |
23324ae1 FM |
1897 | |
1898 | /** | |
caac7804 BP |
1899 | Sets the specified column to display floating point values with the |
1900 | given width and precision. | |
55f0bf1f | 1901 | |
caac7804 | 1902 | @see SetColFormatCustom() |
23324ae1 | 1903 | */ |
caac7804 | 1904 | void SetColFormatFloat(int col, int width = -1, int precision = -1); |
23324ae1 FM |
1905 | |
1906 | /** | |
caac7804 | 1907 | Sets the specified column to display integer values. |
8b9ef005 | 1908 | |
caac7804 | 1909 | @see SetColFormatCustom() |
23324ae1 | 1910 | */ |
caac7804 | 1911 | void SetColFormatNumber(int col); |
23324ae1 FM |
1912 | |
1913 | /** | |
caac7804 | 1914 | Sets the default editor for grid cells. |
3c4f71cc | 1915 | |
caac7804 | 1916 | The grid will take ownership of the pointer. |
55f0bf1f | 1917 | |
caac7804 BP |
1918 | See wxGridCellEditor and the @ref overview_grid for more information |
1919 | about cell editors and renderers. | |
23324ae1 | 1920 | */ |
caac7804 | 1921 | void SetDefaultEditor(wxGridCellEditor* editor); |
23324ae1 FM |
1922 | |
1923 | /** | |
caac7804 | 1924 | Sets the default renderer for grid cells. |
8b9ef005 | 1925 | |
caac7804 | 1926 | The grid will take ownership of the pointer. |
8b9ef005 | 1927 | |
caac7804 BP |
1928 | See wxGridCellRenderer and the @ref overview_grid for more information |
1929 | about cell editors and renderers. | |
23324ae1 | 1930 | */ |
caac7804 | 1931 | void SetDefaultRenderer(wxGridCellRenderer* renderer); |
23324ae1 FM |
1932 | |
1933 | /** | |
caac7804 | 1934 | Makes the cell at the specified location read-only or editable. |
08dd9b5a | 1935 | |
caac7804 | 1936 | @see IsReadOnly() |
23324ae1 | 1937 | */ |
caac7804 | 1938 | void SetReadOnly(int row, int col, bool isReadOnly = true); |
23324ae1 FM |
1939 | |
1940 | /** | |
caac7804 | 1941 | Displays the in-place cell edit control for the current cell. |
23324ae1 | 1942 | */ |
caac7804 | 1943 | void ShowCellEditControl(); |
23324ae1 | 1944 | |
caac7804 | 1945 | //@} |
23324ae1 | 1946 | |
23324ae1 | 1947 | |
23324ae1 | 1948 | /** |
caac7804 BP |
1949 | @name Column and Row Sizes |
1950 | */ | |
1951 | //@{ | |
08dd9b5a | 1952 | |
caac7804 BP |
1953 | /** |
1954 | Automatically sets the height and width of all rows and columns to fit | |
1955 | their contents. | |
23324ae1 | 1956 | */ |
caac7804 | 1957 | void AutoSize(); |
23324ae1 FM |
1958 | |
1959 | /** | |
caac7804 | 1960 | Automatically adjusts width of the column to fit its label. |
23324ae1 | 1961 | */ |
caac7804 | 1962 | void AutoSizeColLabelSize(int col); |
23324ae1 FM |
1963 | |
1964 | /** | |
caac7804 BP |
1965 | Automatically sizes the column to fit its contents. If @a setAsMin is |
1966 | @true the calculated width will also be set as the minimal width for | |
1967 | the column. | |
1968 | */ | |
1969 | void AutoSizeColumn(int col, bool setAsMin = true); | |
23324ae1 FM |
1970 | |
1971 | /** | |
caac7804 BP |
1972 | Automatically sizes all columns to fit their contents. If @a setAsMin |
1973 | is @true the calculated widths will also be set as the minimal widths | |
1974 | for the columns. | |
23324ae1 | 1975 | */ |
caac7804 | 1976 | void AutoSizeColumns(bool setAsMin = true); |
23324ae1 FM |
1977 | |
1978 | /** | |
caac7804 BP |
1979 | Automatically sizes the row to fit its contents. If @a setAsMin is |
1980 | @true the calculated height will also be set as the minimal height for | |
1981 | the row. | |
23324ae1 | 1982 | */ |
caac7804 | 1983 | void AutoSizeRow(int row, bool setAsMin = true); |
23324ae1 | 1984 | |
23324ae1 | 1985 | /** |
caac7804 | 1986 | Automatically adjusts height of the row to fit its label. |
23324ae1 | 1987 | */ |
caac7804 | 1988 | void AutoSizeRowLabelSize(int col); |
23324ae1 | 1989 | |
23324ae1 | 1990 | /** |
caac7804 BP |
1991 | Automatically sizes all rows to fit their contents. If @a setAsMin is |
1992 | @true the calculated heights will also be set as the minimal heights | |
1993 | for the rows. | |
23324ae1 | 1994 | */ |
caac7804 | 1995 | void AutoSizeRows(bool setAsMin = true); |
23324ae1 | 1996 | |
23324ae1 | 1997 | /** |
caac7804 | 1998 | Returns the current height of the column labels. |
23324ae1 | 1999 | */ |
caac7804 | 2000 | int GetColLabelSize() const; |
23324ae1 FM |
2001 | |
2002 | /** | |
caac7804 | 2003 | Returns the minimal width to which a column may be resized. |
08dd9b5a | 2004 | |
caac7804 BP |
2005 | Use SetColMinimalAcceptableWidth() to change this value globally or |
2006 | SetColMinimalWidth() to do it for individual columns. | |
08dd9b5a | 2007 | |
caac7804 | 2008 | @see GetRowMinimalAcceptableHeight() |
23324ae1 | 2009 | */ |
caac7804 | 2010 | int GetColMinimalAcceptableWidth() const; |
23324ae1 FM |
2011 | |
2012 | /** | |
caac7804 | 2013 | Returns the width of the specified column. |
23324ae1 | 2014 | */ |
caac7804 | 2015 | int GetColSize(int col) const; |
23324ae1 | 2016 | |
fe79f76b VZ |
2017 | /** |
2018 | Returns @true if the specified column is not currently hidden. | |
2019 | */ | |
2020 | bool IsColShown(int col) const; | |
2021 | ||
23324ae1 | 2022 | /** |
caac7804 | 2023 | Returns the default height for column labels. |
23324ae1 | 2024 | */ |
caac7804 | 2025 | int GetDefaultColLabelSize() const; |
23324ae1 FM |
2026 | |
2027 | /** | |
caac7804 | 2028 | Returns the current default width for grid columns. |
23324ae1 | 2029 | */ |
caac7804 | 2030 | int GetDefaultColSize() const; |
23324ae1 FM |
2031 | |
2032 | /** | |
caac7804 BP |
2033 | Returns the default width for the row labels. |
2034 | */ | |
2035 | int GetDefaultRowLabelSize() const; | |
08dd9b5a | 2036 | |
caac7804 BP |
2037 | /** |
2038 | Returns the current default height for grid rows. | |
23324ae1 | 2039 | */ |
caac7804 | 2040 | int GetDefaultRowSize() const; |
23324ae1 | 2041 | |
23324ae1 | 2042 | /** |
caac7804 | 2043 | Returns the minimal size to which rows can be resized. |
08dd9b5a | 2044 | |
caac7804 BP |
2045 | Use SetRowMinimalAcceptableHeight() to change this value globally or |
2046 | SetRowMinimalHeight() to do it for individual cells. | |
23324ae1 | 2047 | |
caac7804 | 2048 | @see GetColMinimalAcceptableWidth() |
23324ae1 | 2049 | */ |
caac7804 | 2050 | int GetRowMinimalAcceptableHeight() const; |
23324ae1 FM |
2051 | |
2052 | /** | |
caac7804 | 2053 | Returns the current width of the row labels. |
23324ae1 | 2054 | */ |
caac7804 | 2055 | int GetRowLabelSize() const; |
23324ae1 FM |
2056 | |
2057 | /** | |
caac7804 | 2058 | Returns the height of the specified row. |
8b9ef005 | 2059 | */ |
caac7804 | 2060 | int GetRowSize(int row) const; |
08dd9b5a | 2061 | |
fe79f76b VZ |
2062 | /** |
2063 | Returns @true if the specified row is not currently hidden. | |
2064 | */ | |
2065 | bool IsRowShown(int row) const; | |
2066 | ||
8b9ef005 | 2067 | /** |
caac7804 | 2068 | Sets the height of the column labels. |
08dd9b5a | 2069 | |
caac7804 BP |
2070 | If @a height equals to @c wxGRID_AUTOSIZE then height is calculated |
2071 | automatically so that no label is truncated. Note that this could be | |
2072 | slow for a large table. | |
23324ae1 | 2073 | */ |
caac7804 | 2074 | void SetColLabelSize(int height); |
23324ae1 FM |
2075 | |
2076 | /** | |
caac7804 | 2077 | Sets the minimal @a width to which the user can resize columns. |
08dd9b5a | 2078 | |
caac7804 | 2079 | @see GetColMinimalAcceptableWidth() |
23324ae1 | 2080 | */ |
caac7804 | 2081 | void SetColMinimalAcceptableWidth(int width); |
23324ae1 FM |
2082 | |
2083 | /** | |
caac7804 | 2084 | Sets the minimal @a width for the specified column @a col. |
3c4f71cc | 2085 | |
caac7804 BP |
2086 | It is usually best to call this method during grid creation as calling |
2087 | it later will not resize the column to the given minimal width even if | |
2088 | it is currently narrower than it. | |
23324ae1 | 2089 | |
caac7804 BP |
2090 | @a width must be greater than the minimal acceptable column width as |
2091 | returned by GetColMinimalAcceptableWidth(). | |
23324ae1 | 2092 | */ |
caac7804 | 2093 | void SetColMinimalWidth(int col, int width); |
23324ae1 FM |
2094 | |
2095 | /** | |
caac7804 BP |
2096 | Sets the width of the specified column. |
2097 | ||
caac7804 BP |
2098 | @param col |
2099 | The column index. | |
2100 | @param width | |
009c7216 VZ |
2101 | The new column width in pixels, 0 to hide the column or -1 to fit |
2102 | the column width to its label width. | |
23324ae1 | 2103 | */ |
caac7804 | 2104 | void SetColSize(int col, int width); |
23324ae1 | 2105 | |
009c7216 VZ |
2106 | /** |
2107 | Hides the specified column. | |
2108 | ||
2109 | To show the column later you need to call SetColSize() with non-0 | |
2110 | width or ShowCol(). | |
2111 | ||
2112 | @param col | |
2113 | The column index. | |
2114 | */ | |
2115 | void HideCol(int col); | |
2116 | ||
2117 | /** | |
2118 | Shows the previously hidden column by resizing it to non-0 size. | |
2119 | ||
2120 | @see HideCol(), SetColSize() | |
2121 | */ | |
2122 | void ShowCol(int col); | |
2123 | ||
2124 | ||
23324ae1 | 2125 | /** |
caac7804 | 2126 | Sets the default width for columns in the grid. |
23324ae1 | 2127 | |
caac7804 BP |
2128 | This will only affect columns subsequently added to the grid unless |
2129 | @a resizeExistingCols is @true. | |
2130 | ||
2131 | If @a width is less than GetColMinimalAcceptableWidth(), then the | |
2132 | minimal acceptable width is used instead of it. | |
23324ae1 | 2133 | */ |
caac7804 | 2134 | void SetDefaultColSize(int width, bool resizeExistingCols = false); |
23324ae1 FM |
2135 | |
2136 | /** | |
caac7804 | 2137 | Sets the default height for rows in the grid. |
3c4f71cc | 2138 | |
caac7804 BP |
2139 | This will only affect rows subsequently added to the grid unless |
2140 | @a resizeExistingRows is @true. | |
2141 | ||
2142 | If @a height is less than GetRowMinimalAcceptableHeight(), then the | |
2143 | minimal acceptable heihgt is used instead of it. | |
23324ae1 | 2144 | */ |
caac7804 | 2145 | void SetDefaultRowSize(int height, bool resizeExistingRows = false); |
23324ae1 FM |
2146 | |
2147 | /** | |
caac7804 BP |
2148 | Sets the width of the row labels. |
2149 | ||
2150 | If @a width equals @c wxGRID_AUTOSIZE then width is calculated | |
2151 | automatically so that no label is truncated. Note that this could be | |
2152 | slow for a large table. | |
23324ae1 | 2153 | */ |
caac7804 | 2154 | void SetRowLabelSize(int width); |
23324ae1 FM |
2155 | |
2156 | /** | |
caac7804 | 2157 | Sets the minimal row @a height used by default. |
8b9ef005 | 2158 | |
caac7804 | 2159 | See SetColMinimalAcceptableWidth() for more information. |
23324ae1 | 2160 | */ |
caac7804 | 2161 | void SetRowMinimalAcceptableHeight(int height); |
23324ae1 FM |
2162 | |
2163 | /** | |
caac7804 BP |
2164 | Sets the minimal @a height for the specified @a row. |
2165 | ||
2166 | See SetColMinimalWidth() for more information. | |
23324ae1 | 2167 | */ |
caac7804 | 2168 | void SetRowMinimalHeight(int row, int height); |
23324ae1 FM |
2169 | |
2170 | /** | |
caac7804 | 2171 | Sets the height of the specified row. |
08dd9b5a | 2172 | |
caac7804 | 2173 | See SetColSize() for more information. |
23324ae1 | 2174 | */ |
caac7804 BP |
2175 | void SetRowSize(int row, int height); |
2176 | ||
009c7216 VZ |
2177 | /** |
2178 | Hides the specified row. | |
2179 | ||
2180 | To show the row later you need to call SetRowSize() with non-0 | |
2181 | width or ShowRow(). | |
2182 | ||
2183 | @param col | |
2184 | The row index. | |
2185 | */ | |
2186 | void HideRow(int col); | |
2187 | ||
2188 | /** | |
2189 | Shows the previously hidden row by resizing it to non-0 size. | |
2190 | ||
2191 | @see HideRow(), SetRowSize() | |
2192 | */ | |
2193 | void ShowRow(int col); | |
2194 | ||
8b9ef005 | 2195 | //@} |
23324ae1 | 2196 | |
caac7804 | 2197 | |
23324ae1 | 2198 | /** |
caac7804 BP |
2199 | @name User-Resizing and Dragging |
2200 | */ | |
2201 | //@{ | |
08dd9b5a | 2202 | |
caac7804 BP |
2203 | /** |
2204 | Return @true if the dragging of cells is enabled or @false otherwise. | |
23324ae1 | 2205 | */ |
caac7804 | 2206 | bool CanDragCell() const; |
23324ae1 FM |
2207 | |
2208 | /** | |
caac7804 | 2209 | Returns @true if columns can be moved by dragging with the mouse. |
08dd9b5a | 2210 | |
caac7804 | 2211 | Columns can be moved by dragging on their labels. |
23324ae1 | 2212 | */ |
caac7804 | 2213 | bool CanDragColMove() const; |
23324ae1 FM |
2214 | |
2215 | /** | |
caac7804 | 2216 | Returns @true if columns can be resized by dragging with the mouse. |
8b9ef005 | 2217 | |
caac7804 BP |
2218 | Columns can be resized by dragging the edges of their labels. If grid |
2219 | line dragging is enabled they can also be resized by dragging the right | |
2220 | edge of the column in the grid cell area (see EnableDragGridSize()). | |
23324ae1 | 2221 | */ |
caac7804 | 2222 | bool CanDragColSize() const; |
23324ae1 FM |
2223 | |
2224 | /** | |
caac7804 BP |
2225 | Return @true if the dragging of grid lines to resize rows and columns |
2226 | is enabled or @false otherwise. | |
2227 | */ | |
2228 | bool CanDragGridSize() const; | |
2229 | ||
2230 | /** | |
2231 | Returns @true if rows can be resized by dragging with the mouse. | |
2232 | ||
2233 | Rows can be resized by dragging the edges of their labels. If grid line | |
2234 | dragging is enabled they can also be resized by dragging the lower edge | |
2235 | of the row in the grid cell area (see EnableDragGridSize()). | |
2236 | */ | |
2237 | bool CanDragRowSize() const; | |
2238 | ||
2239 | /** | |
2240 | Disables column moving by dragging with the mouse. | |
2241 | ||
2242 | Equivalent to passing @false to EnableDragColMove(). | |
2243 | */ | |
2244 | void DisableDragColMove(); | |
2245 | ||
2246 | /** | |
2247 | Disables column sizing by dragging with the mouse. | |
2248 | ||
2249 | Equivalent to passing @false to EnableDragColSize(). | |
2250 | */ | |
2251 | void DisableDragColSize(); | |
2252 | ||
2253 | /** | |
2254 | Disable mouse dragging of grid lines to resize rows and columns. | |
2255 | ||
2256 | Equivalent to passing @false to EnableDragGridSize() | |
2257 | */ | |
2258 | void DisableDragGridSize(); | |
2259 | ||
2260 | /** | |
2261 | Disables row sizing by dragging with the mouse. | |
2262 | ||
2263 | Equivalent to passing @false to EnableDragRowSize(). | |
2264 | */ | |
2265 | void DisableDragRowSize(); | |
2266 | ||
2267 | /** | |
2268 | Enables or disables cell dragging with the mouse. | |
2269 | */ | |
2270 | void EnableDragCell(bool enable = true); | |
2271 | ||
2272 | /** | |
2273 | Enables or disables column moving by dragging with the mouse. | |
2274 | */ | |
2275 | void EnableDragColMove(bool enable = true); | |
2276 | ||
2277 | /** | |
2278 | Enables or disables column sizing by dragging with the mouse. | |
2279 | */ | |
2280 | void EnableDragColSize(bool enable = true); | |
2281 | ||
2282 | /** | |
2283 | Enables or disables row and column resizing by dragging gridlines with | |
2284 | the mouse. | |
2285 | */ | |
2286 | void EnableDragGridSize(bool enable = true); | |
2287 | ||
2288 | /** | |
2289 | Enables or disables row sizing by dragging with the mouse. | |
2290 | */ | |
2291 | void EnableDragRowSize(bool enable = true); | |
2292 | ||
2293 | /** | |
2294 | Returns the column ID of the specified column position. | |
2295 | */ | |
2296 | int GetColAt(int colPos) const; | |
2297 | ||
2298 | /** | |
2299 | Returns the position of the specified column. | |
2300 | */ | |
2301 | int GetColPos(int colID) const; | |
2302 | ||
2303 | /** | |
2304 | Sets the position of the specified column. | |
2305 | */ | |
2306 | void SetColPos(int colID, int newPos); | |
2307 | ||
009c7216 VZ |
2308 | /** |
2309 | Resets the position of the columns to the default. | |
2310 | */ | |
2311 | void ResetColPos(); | |
2312 | ||
caac7804 BP |
2313 | //@} |
2314 | ||
2315 | ||
2316 | /** | |
2317 | @name Cursor Movement | |
2318 | */ | |
2319 | //@{ | |
2320 | ||
2321 | /** | |
2322 | Returns the current grid cell column position. | |
2323 | */ | |
2324 | int GetGridCursorCol() const; | |
2325 | ||
2326 | /** | |
2327 | Returns the current grid cell row position. | |
2328 | */ | |
2329 | int GetGridCursorRow() const; | |
2330 | ||
2331 | /** | |
2332 | Make the given cell current and ensure it is visible. | |
2333 | ||
2334 | This method is equivalent to calling MakeCellVisible() and | |
2335 | SetGridCursor() and so, as with the latter, a @c wxEVT_GRID_SELECT_CELL | |
2336 | event is generated by it and the selected cell doesn't change if the | |
2337 | event is vetoed. | |
2338 | */ | |
2339 | void GoToCell(int row, int col); | |
2340 | /** | |
2341 | Make the given cell current and ensure it is visible. | |
2342 | ||
2343 | This method is equivalent to calling MakeCellVisible() and | |
2344 | SetGridCursor() and so, as with the latter, a @c wxEVT_GRID_SELECT_CELL | |
2345 | event is generated by it and the selected cell doesn't change if the | |
2346 | event is vetoed. | |
2347 | */ | |
2348 | void GoToCell(const wxGridCellCoords& coords); | |
2349 | ||
2350 | /** | |
2351 | Moves the grid cursor down by one row. | |
2352 | ||
2353 | If a block of cells was previously selected it will expand if the | |
2354 | argument is @true or be cleared if the argument is @false. | |
2355 | */ | |
2356 | bool MoveCursorDown(bool expandSelection); | |
2357 | ||
2358 | /** | |
2359 | Moves the grid cursor down in the current column such that it skips to | |
2360 | the beginning or end of a block of non-empty cells. | |
2361 | ||
2362 | If a block of cells was previously selected it will expand if the | |
2363 | argument is @true or be cleared if the argument is @false. | |
2364 | */ | |
2365 | bool MoveCursorDownBlock(bool expandSelection); | |
2366 | ||
2367 | /** | |
2368 | Moves the grid cursor left by one column. | |
08dd9b5a | 2369 | |
8b9ef005 BP |
2370 | If a block of cells was previously selected it will expand if the |
2371 | argument is @true or be cleared if the argument is @false. | |
23324ae1 | 2372 | */ |
8b9ef005 | 2373 | bool MoveCursorLeft(bool expandSelection); |
23324ae1 FM |
2374 | |
2375 | /** | |
8b9ef005 BP |
2376 | Moves the grid cursor left in the current row such that it skips to the |
2377 | beginning or end of a block of non-empty cells. | |
2378 | ||
2379 | If a block of cells was previously selected it will expand if the | |
2380 | argument is @true or be cleared if the argument is @false. | |
23324ae1 | 2381 | */ |
8b9ef005 | 2382 | bool MoveCursorLeftBlock(bool expandSelection); |
23324ae1 FM |
2383 | |
2384 | /** | |
8b9ef005 | 2385 | Moves the grid cursor right by one column. |
08dd9b5a | 2386 | |
8b9ef005 BP |
2387 | If a block of cells was previously selected it will expand if the |
2388 | argument is @true or be cleared if the argument is @false. | |
23324ae1 | 2389 | */ |
8b9ef005 | 2390 | bool MoveCursorRight(bool expandSelection); |
23324ae1 FM |
2391 | |
2392 | /** | |
8b9ef005 BP |
2393 | Moves the grid cursor right in the current row such that it skips to |
2394 | the beginning or end of a block of non-empty cells. | |
08dd9b5a | 2395 | |
8b9ef005 BP |
2396 | If a block of cells was previously selected it will expand if the |
2397 | argument is @true or be cleared if the argument is @false. | |
23324ae1 | 2398 | */ |
8b9ef005 | 2399 | bool MoveCursorRightBlock(bool expandSelection); |
23324ae1 | 2400 | |
23324ae1 | 2401 | /** |
8b9ef005 BP |
2402 | Moves the grid cursor up by one row. |
2403 | ||
2404 | If a block of cells was previously selected it will expand if the | |
2405 | argument is @true or be cleared if the argument is @false. | |
23324ae1 | 2406 | */ |
8b9ef005 | 2407 | bool MoveCursorUp(bool expandSelection); |
23324ae1 FM |
2408 | |
2409 | /** | |
8b9ef005 BP |
2410 | Moves the grid cursor up in the current column such that it skips to |
2411 | the beginning or end of a block of non-empty cells. | |
3c4f71cc | 2412 | |
8b9ef005 BP |
2413 | If a block of cells was previously selected it will expand if the |
2414 | argument is @true or be cleared if the argument is @false. | |
23324ae1 | 2415 | */ |
8b9ef005 | 2416 | bool MoveCursorUpBlock(bool expandSelection); |
23324ae1 FM |
2417 | |
2418 | /** | |
8b9ef005 BP |
2419 | Moves the grid cursor down by some number of rows so that the previous |
2420 | bottom visible row becomes the top visible row. | |
2421 | */ | |
2422 | bool MovePageDown(); | |
3c4f71cc | 2423 | |
8b9ef005 BP |
2424 | /** |
2425 | Moves the grid cursor up by some number of rows so that the previous | |
2426 | top visible row becomes the bottom visible row. | |
23324ae1 | 2427 | */ |
8b9ef005 | 2428 | bool MovePageUp(); |
23324ae1 FM |
2429 | |
2430 | /** | |
caac7804 | 2431 | Set the grid cursor to the specified cell. |
08dd9b5a | 2432 | |
caac7804 BP |
2433 | The grid cursor indicates the current cell and can be moved by the user |
2434 | using the arrow keys or the mouse. | |
8b9ef005 | 2435 | |
caac7804 BP |
2436 | Calling this function generates a @c wxEVT_GRID_SELECT_CELL event and |
2437 | if the event handler vetoes this event, the cursor is not moved. | |
8b9ef005 | 2438 | |
caac7804 BP |
2439 | This function doesn't make the target call visible, use GoToCell() to |
2440 | do this. | |
23324ae1 | 2441 | */ |
caac7804 | 2442 | void SetGridCursor(int row, int col); |
23324ae1 | 2443 | /** |
caac7804 | 2444 | Set the grid cursor to the specified cell. |
23324ae1 | 2445 | |
caac7804 BP |
2446 | The grid cursor indicates the current cell and can be moved by the user |
2447 | using the arrow keys or the mouse. | |
bb778cae | 2448 | |
caac7804 BP |
2449 | Calling this function generates a @c wxEVT_GRID_SELECT_CELL event and |
2450 | if the event handler vetoes this event, the cursor is not moved. | |
8b9ef005 | 2451 | |
caac7804 BP |
2452 | This function doesn't make the target call visible, use GoToCell() to |
2453 | do this. | |
23324ae1 | 2454 | */ |
caac7804 BP |
2455 | void SetGridCursor(const wxGridCellCoords& coords); |
2456 | ||
8b9ef005 | 2457 | //@} |
23324ae1 | 2458 | |
8b9ef005 | 2459 | |
caac7804 BP |
2460 | /** |
2461 | @name User Selection | |
2462 | */ | |
2463 | //@{ | |
8b9ef005 | 2464 | |
caac7804 BP |
2465 | /** |
2466 | Deselects all cells that are currently selected. | |
23324ae1 | 2467 | */ |
caac7804 | 2468 | void ClearSelection(); |
23324ae1 FM |
2469 | |
2470 | /** | |
caac7804 | 2471 | Returns an array of individually selected cells. |
08dd9b5a | 2472 | |
caac7804 BP |
2473 | Notice that this array does @em not contain all the selected cells in |
2474 | general as it doesn't include the cells selected as part of column, row | |
2475 | or block selection. You must use this method, GetSelectedCols(), | |
2476 | GetSelectedRows() and GetSelectionBlockTopLeft() and | |
2477 | GetSelectionBlockBottomRight() methods to obtain the entire selection | |
2478 | in general. | |
08dd9b5a | 2479 | |
caac7804 BP |
2480 | Please notice this behaviour is by design and is needed in order to |
2481 | support grids of arbitrary size (when an entire column is selected in | |
2482 | a grid with a million of columns, we don't want to create an array with | |
2483 | a million of entries in this function, instead it returns an empty | |
2484 | array and GetSelectedCols() returns an array containing one element). | |
23324ae1 | 2485 | */ |
caac7804 | 2486 | wxGridCellCoordsArray GetSelectedCells() const; |
23324ae1 FM |
2487 | |
2488 | /** | |
caac7804 | 2489 | Returns an array of selected columns. |
08dd9b5a | 2490 | |
caac7804 BP |
2491 | Please notice that this method alone is not sufficient to find all the |
2492 | selected columns as it contains only the columns which were | |
2493 | individually selected but not those being part of the block selection | |
2494 | or being selected in virtue of all of their cells being selected | |
2495 | individually, please see GetSelectedCells() for more details. | |
23324ae1 | 2496 | */ |
caac7804 | 2497 | wxArrayInt GetSelectedCols() const; |
23324ae1 FM |
2498 | |
2499 | /** | |
caac7804 | 2500 | Returns an array of selected rows. |
23324ae1 | 2501 | |
caac7804 BP |
2502 | Please notice that this method alone is not sufficient to find all the |
2503 | selected rows as it contains only the rows which were individually | |
2504 | selected but not those being part of the block selection or being | |
2505 | selected in virtue of all of their cells being selected individually, | |
2506 | please see GetSelectedCells() for more details. | |
23324ae1 | 2507 | */ |
caac7804 | 2508 | wxArrayInt GetSelectedRows() const; |
23324ae1 FM |
2509 | |
2510 | /** | |
caac7804 | 2511 | Returns the colour used for drawing the selection background. |
23324ae1 | 2512 | */ |
caac7804 | 2513 | wxColour GetSelectionBackground() const; |
23324ae1 | 2514 | |
8a3e536c | 2515 | /** |
caac7804 BP |
2516 | Returns an array of the bottom right corners of blocks of selected |
2517 | cells. | |
8a3e536c | 2518 | |
caac7804 BP |
2519 | Please see GetSelectedCells() for more information about the selection |
2520 | representation in wxGrid. | |
23324ae1 | 2521 | |
caac7804 | 2522 | @see GetSelectionBlockTopLeft() |
23324ae1 | 2523 | */ |
caac7804 | 2524 | wxGridCellCoordsArray GetSelectionBlockBottomRight() const; |
8b9ef005 | 2525 | |
8b9ef005 | 2526 | /** |
caac7804 | 2527 | Returns an array of the top left corners of blocks of selected cells. |
8b9ef005 | 2528 | |
caac7804 BP |
2529 | Please see GetSelectedCells() for more information about the selection |
2530 | representation in wxGrid. | |
23324ae1 | 2531 | |
caac7804 | 2532 | @see GetSelectionBlockBottomRight() |
23324ae1 | 2533 | */ |
caac7804 | 2534 | wxGridCellCoordsArray GetSelectionBlockTopLeft() const; |
23324ae1 FM |
2535 | |
2536 | /** | |
caac7804 | 2537 | Returns the colour used for drawing the selection foreground. |
23324ae1 | 2538 | */ |
caac7804 | 2539 | wxColour GetSelectionForeground() const; |
23324ae1 FM |
2540 | |
2541 | /** | |
caac7804 | 2542 | Returns the current selection mode. |
23324ae1 | 2543 | |
caac7804 | 2544 | @see SetSelectionMode(). |
23324ae1 | 2545 | */ |
caac7804 | 2546 | wxGridSelectionModes GetSelectionMode() const; |
23324ae1 FM |
2547 | |
2548 | /** | |
caac7804 BP |
2549 | Returns @true if the given cell is selected. |
2550 | */ | |
2551 | bool IsInSelection(int row, int col) const; | |
2552 | /** | |
2553 | Returns @true if the given cell is selected. | |
2554 | */ | |
2555 | bool IsInSelection(const wxGridCellCoords& coords) const; | |
08dd9b5a | 2556 | |
caac7804 BP |
2557 | /** |
2558 | Returns @true if there are currently any selected cells, rows, columns | |
2559 | or blocks. | |
2560 | */ | |
2561 | bool IsSelection() const; | |
08dd9b5a | 2562 | |
caac7804 BP |
2563 | /** |
2564 | Selects all cells in the grid. | |
23324ae1 | 2565 | */ |
caac7804 | 2566 | void SelectAll(); |
23324ae1 FM |
2567 | |
2568 | /** | |
caac7804 | 2569 | Selects a rectangular block of cells. |
8b9ef005 | 2570 | |
caac7804 BP |
2571 | If @a addToSelected is @false then any existing selection will be |
2572 | deselected; if @true the column will be added to the existing | |
2573 | selection. | |
23324ae1 | 2574 | */ |
caac7804 BP |
2575 | void SelectBlock(int topRow, int leftCol, int bottomRow, int rightCol, |
2576 | bool addToSelected = false); | |
23324ae1 | 2577 | /** |
caac7804 | 2578 | Selects a rectangular block of cells. |
08dd9b5a | 2579 | |
caac7804 BP |
2580 | If @a addToSelected is @false then any existing selection will be |
2581 | deselected; if @true the column will be added to the existing | |
2582 | selection. | |
23324ae1 | 2583 | */ |
caac7804 BP |
2584 | void SelectBlock(const wxGridCellCoords& topLeft, |
2585 | const wxGridCellCoords& bottomRight, | |
2586 | bool addToSelected = false); | |
23324ae1 FM |
2587 | |
2588 | /** | |
caac7804 | 2589 | Selects the specified column. |
08dd9b5a | 2590 | |
caac7804 BP |
2591 | If @a addToSelected is @false then any existing selection will be |
2592 | deselected; if @true the column will be added to the existing | |
2593 | selection. | |
2594 | ||
2595 | This method won't select anything if the current selection mode is | |
2596 | wxGridSelectRows. | |
23324ae1 | 2597 | */ |
caac7804 | 2598 | void SelectCol(int col, bool addToSelected = false); |
23324ae1 | 2599 | |
23324ae1 | 2600 | /** |
caac7804 | 2601 | Selects the specified row. |
8b9ef005 | 2602 | |
caac7804 BP |
2603 | If @a addToSelected is @false then any existing selection will be |
2604 | deselected; if @true the row will be added to the existing selection. | |
2605 | ||
2606 | This method won't select anything if the current selection mode is | |
2607 | wxGridSelectColumns. | |
23324ae1 | 2608 | */ |
caac7804 | 2609 | void SelectRow(int row, bool addToSelected = false); |
23324ae1 FM |
2610 | |
2611 | /** | |
caac7804 BP |
2612 | Set the colour to be used for drawing the selection background. |
2613 | */ | |
2614 | void SetSelectionBackground(const wxColour& c); | |
08dd9b5a | 2615 | |
caac7804 BP |
2616 | /** |
2617 | Set the colour to be used for drawing the selection foreground. | |
23324ae1 | 2618 | */ |
caac7804 | 2619 | void SetSelectionForeground(const wxColour& c); |
23324ae1 FM |
2620 | |
2621 | /** | |
caac7804 | 2622 | Set the selection behaviour of the grid. |
8b9ef005 | 2623 | |
caac7804 BP |
2624 | The existing selection is converted to conform to the new mode if |
2625 | possible and discarded otherwise (e.g. any individual selected cells | |
2626 | are deselected if the new mode allows only the selection of the entire | |
2627 | rows or columns). | |
23324ae1 | 2628 | */ |
caac7804 | 2629 | void SetSelectionMode(wxGridSelectionModes selmode); |
23324ae1 | 2630 | |
caac7804 | 2631 | //@} |
08dd9b5a | 2632 | |
8b9ef005 | 2633 | |
caac7804 BP |
2634 | /** |
2635 | @name Scrolling | |
2636 | */ | |
2637 | //@{ | |
23324ae1 | 2638 | |
23324ae1 | 2639 | /** |
caac7804 BP |
2640 | Returns the number of pixels per horizontal scroll increment. |
2641 | ||
2642 | The default is 15. | |
2643 | ||
2644 | @see GetScrollLineY(), SetScrollLineX(), SetScrollLineY() | |
23324ae1 | 2645 | */ |
caac7804 | 2646 | int GetScrollLineX() const; |
23324ae1 FM |
2647 | |
2648 | /** | |
caac7804 | 2649 | Returns the number of pixels per vertical scroll increment. |
08dd9b5a | 2650 | |
caac7804 | 2651 | The default is 15. |
8b9ef005 | 2652 | |
caac7804 | 2653 | @see GetScrollLineX(), SetScrollLineX(), SetScrollLineY() |
23324ae1 | 2654 | */ |
caac7804 | 2655 | int GetScrollLineY() const; |
23324ae1 FM |
2656 | |
2657 | /** | |
caac7804 BP |
2658 | Returns @true if a cell is either entirely or at least partially |
2659 | visible in the grid window. | |
08dd9b5a | 2660 | |
caac7804 BP |
2661 | By default, the cell must be entirely visible for this function to |
2662 | return @true but if @a wholeCellVisible is @false, the function returns | |
2663 | @true even if the cell is only partially visible. | |
23324ae1 | 2664 | */ |
caac7804 | 2665 | bool IsVisible(int row, int col, bool wholeCellVisible = true) const; |
23324ae1 | 2666 | /** |
caac7804 BP |
2667 | Returns @true if a cell is either entirely or at least partially |
2668 | visible in the grid window. | |
2669 | ||
2670 | By default, the cell must be entirely visible for this function to | |
2671 | return @true but if @a wholeCellVisible is @false, the function returns | |
2672 | @true even if the cell is only partially visible. | |
23324ae1 | 2673 | */ |
caac7804 BP |
2674 | bool IsVisible(const wxGridCellCoords& coords, |
2675 | bool wholeCellVisible = true) const; | |
23324ae1 FM |
2676 | |
2677 | /** | |
caac7804 BP |
2678 | Brings the specified cell into the visible grid cell area with minimal |
2679 | scrolling. | |
23324ae1 | 2680 | |
caac7804 BP |
2681 | Does nothing if the cell is already visible. |
2682 | */ | |
2683 | void MakeCellVisible(int row, int col); | |
23324ae1 | 2684 | /** |
caac7804 BP |
2685 | Brings the specified cell into the visible grid cell area with minimal |
2686 | scrolling. | |
2687 | ||
2688 | Does nothing if the cell is already visible. | |
23324ae1 | 2689 | */ |
caac7804 | 2690 | void MakeCellVisible(const wxGridCellCoords& coords); |
23324ae1 FM |
2691 | |
2692 | /** | |
caac7804 | 2693 | Sets the number of pixels per horizontal scroll increment. |
08dd9b5a | 2694 | |
caac7804 | 2695 | The default is 15. |
8b9ef005 | 2696 | |
caac7804 | 2697 | @see GetScrollLineX(), GetScrollLineY(), SetScrollLineY() |
23324ae1 | 2698 | */ |
caac7804 | 2699 | void SetScrollLineX(int x); |
23324ae1 FM |
2700 | |
2701 | /** | |
caac7804 | 2702 | Sets the number of pixels per vertical scroll increment. |
08dd9b5a | 2703 | |
caac7804 | 2704 | The default is 15. |
8b9ef005 | 2705 | |
caac7804 | 2706 | @see GetScrollLineX(), GetScrollLineY(), SetScrollLineX() |
23324ae1 | 2707 | */ |
caac7804 | 2708 | void SetScrollLineY(int y); |
23324ae1 | 2709 | |
caac7804 | 2710 | //@} |
08dd9b5a | 2711 | |
23324ae1 | 2712 | |
caac7804 BP |
2713 | /** |
2714 | @name Cell and Device Coordinate Translation | |
2715 | */ | |
2716 | //@{ | |
23324ae1 FM |
2717 | |
2718 | /** | |
caac7804 | 2719 | Convert grid cell coordinates to grid window pixel coordinates. |
8b9ef005 | 2720 | |
caac7804 BP |
2721 | This function returns the rectangle that encloses the block of cells |
2722 | limited by @a topLeft and @a bottomRight cell in device coords and | |
2723 | clipped to the client size of the grid window. | |
8b9ef005 | 2724 | |
caac7804 | 2725 | @see CellToRect() |
23324ae1 | 2726 | */ |
caac7804 BP |
2727 | wxRect BlockToDeviceRect(const wxGridCellCoords& topLeft, |
2728 | const wxGridCellCoords& bottomRight) const; | |
23324ae1 FM |
2729 | |
2730 | /** | |
caac7804 BP |
2731 | Return the rectangle corresponding to the grid cell's size and position |
2732 | in logical coordinates. | |
08dd9b5a | 2733 | |
caac7804 BP |
2734 | @see BlockToDeviceRect() |
2735 | */ | |
2736 | wxRect CellToRect(int row, int col) const; | |
2737 | /** | |
2738 | Return the rectangle corresponding to the grid cell's size and position | |
2739 | in logical coordinates. | |
08dd9b5a | 2740 | |
caac7804 | 2741 | @see BlockToDeviceRect() |
23324ae1 | 2742 | */ |
caac7804 | 2743 | const wxRect CellToRect(const wxGridCellCoords& coords) const; |
23324ae1 | 2744 | |
23324ae1 | 2745 | /** |
caac7804 BP |
2746 | Returns the column at the given pixel position. |
2747 | ||
2748 | @param x | |
2749 | The x position to evaluate. | |
2750 | @param clipToMinMax | |
2751 | If @true, rather than returning @c wxNOT_FOUND, it returns either | |
2752 | the first or last column depending on whether @a x is too far to | |
2753 | the left or right respectively. | |
2754 | @return | |
2755 | The column index or @c wxNOT_FOUND. | |
23324ae1 | 2756 | */ |
caac7804 | 2757 | int XToCol(int x, bool clipToMinMax = false) const; |
23324ae1 FM |
2758 | |
2759 | /** | |
caac7804 BP |
2760 | Returns the column whose right hand edge is close to the given logical |
2761 | @a x position. | |
2762 | ||
2763 | If no column edge is near to this position @c wxNOT_FOUND is returned. | |
23324ae1 | 2764 | */ |
caac7804 | 2765 | int XToEdgeOfCol(int x) const; |
23324ae1 | 2766 | |
23324ae1 | 2767 | /** |
caac7804 BP |
2768 | Translates logical pixel coordinates to the grid cell coordinates. |
2769 | ||
2770 | Notice that this function expects logical coordinates on input so if | |
2771 | you use this function in a mouse event handler you need to translate | |
2772 | the mouse position, which is expressed in device coordinates, to | |
2773 | logical ones. | |
2774 | ||
2775 | @see XToCol(), YToRow() | |
2776 | */ | |
2777 | wxGridCellCoords XYToCell(int x, int y) const; | |
2778 | /** | |
2779 | Translates logical pixel coordinates to the grid cell coordinates. | |
2780 | ||
2781 | Notice that this function expects logical coordinates on input so if | |
2782 | you use this function in a mouse event handler you need to translate | |
2783 | the mouse position, which is expressed in device coordinates, to | |
2784 | logical ones. | |
2785 | ||
2786 | @see XToCol(), YToRow() | |
2787 | */ | |
2788 | wxGridCellCoords XYToCell(const wxPoint& pos) const; | |
2789 | // XYToCell(int, int, wxGridCellCoords&) overload is intentionally | |
2790 | // undocumented, using it is ugly and non-const reference parameters are | |
2791 | // not used in wxWidgets API | |
08dd9b5a | 2792 | |
8b9ef005 | 2793 | /** |
caac7804 BP |
2794 | Returns the row whose bottom edge is close to the given logical @a y |
2795 | position. | |
2796 | ||
2797 | If no row edge is near to this position @c wxNOT_FOUND is returned. | |
23324ae1 | 2798 | */ |
caac7804 | 2799 | int YToEdgeOfRow(int y) const; |
23324ae1 FM |
2800 | |
2801 | /** | |
caac7804 | 2802 | Returns the grid row that corresponds to the logical @a y coordinate. |
08dd9b5a | 2803 | |
caac7804 | 2804 | Returns @c wxNOT_FOUND if there is no row at the @a y position. |
8b9ef005 | 2805 | */ |
caac7804 BP |
2806 | int YToRow(int y, bool clipToMinMax = false) const; |
2807 | ||
2808 | //@} | |
2809 | ||
08dd9b5a | 2810 | |
8b9ef005 | 2811 | /** |
caac7804 BP |
2812 | @name Miscellaneous Functions |
2813 | */ | |
2814 | //@{ | |
8b9ef005 | 2815 | |
caac7804 BP |
2816 | /** |
2817 | Appends one or more new columns to the right of the grid. | |
2818 | ||
2819 | The @a updateLabels argument is not used at present. If you are using a | |
2820 | derived grid table class you will need to override | |
2821 | wxGridTableBase::AppendCols(). See InsertCols() for further | |
2822 | information. | |
2823 | ||
2824 | @return @true on success or @false if appending columns failed. | |
23324ae1 | 2825 | */ |
caac7804 | 2826 | bool AppendCols(int numCols = 1, bool updateLabels = true); |
23324ae1 FM |
2827 | |
2828 | /** | |
caac7804 | 2829 | Appends one or more new rows to the bottom of the grid. |
08dd9b5a | 2830 | |
caac7804 BP |
2831 | The @a updateLabels argument is not used at present. If you are using a |
2832 | derived grid table class you will need to override | |
2833 | wxGridTableBase::AppendRows(). See InsertRows() for further | |
2834 | information. | |
23324ae1 | 2835 | |
caac7804 | 2836 | @return @true on success or @false if appending rows failed. |
23324ae1 | 2837 | */ |
caac7804 | 2838 | bool AppendRows(int numRows = 1, bool updateLabels = true); |
23324ae1 | 2839 | |
23324ae1 | 2840 | /** |
caac7804 BP |
2841 | Return @true if the horizontal grid lines stop at the last column |
2842 | boundary or @false if they continue to the end of the window. | |
3c4f71cc | 2843 | |
caac7804 BP |
2844 | The default is to clip grid lines. |
2845 | ||
2846 | @see ClipHorzGridLines(), AreVertGridLinesClipped() | |
2847 | */ | |
2848 | bool AreHorzGridLinesClipped() const; | |
23324ae1 FM |
2849 | |
2850 | /** | |
caac7804 BP |
2851 | Return @true if the vertical grid lines stop at the last row |
2852 | boundary or @false if they continue to the end of the window. | |
8b9ef005 | 2853 | |
caac7804 BP |
2854 | The default is to clip grid lines. |
2855 | ||
2856 | @see ClipVertGridLines(), AreHorzGridLinesClipped() | |
2857 | */ | |
2858 | bool AreVertGridLinesClipped() const; | |
23324ae1 FM |
2859 | |
2860 | /** | |
caac7804 | 2861 | Increments the grid's batch count. |
08dd9b5a | 2862 | |
caac7804 BP |
2863 | When the count is greater than zero repainting of the grid is |
2864 | suppressed. Each call to BeginBatch must be matched by a later call to | |
2865 | EndBatch(). Code that does a lot of grid modification can be enclosed | |
2866 | between BeginBatch() and EndBatch() calls to avoid screen flicker. The | |
2867 | final EndBatch() call will cause the grid to be repainted. | |
2868 | ||
2869 | Notice that you should use wxGridUpdateLocker which ensures that there | |
2870 | is always a matching EndBatch() call for this BeginBatch() if possible | |
2871 | instead of calling this method directly. | |
8b9ef005 | 2872 | */ |
caac7804 | 2873 | void BeginBatch(); |
08dd9b5a | 2874 | |
8b9ef005 | 2875 | /** |
caac7804 | 2876 | Clears all data in the underlying grid table and repaints the grid. |
8b9ef005 | 2877 | |
caac7804 BP |
2878 | The table is not deleted by this function. If you are using a derived |
2879 | table class then you need to override wxGridTableBase::Clear() for this | |
2880 | function to have any effect. | |
23324ae1 | 2881 | */ |
caac7804 | 2882 | void ClearGrid(); |
23324ae1 FM |
2883 | |
2884 | /** | |
caac7804 BP |
2885 | Change whether the horizontal grid lines are clipped by the end of the |
2886 | last column. | |
8b9ef005 | 2887 | |
caac7804 BP |
2888 | By default the grid lines are not drawn beyond the end of the last |
2889 | column but after calling this function with @a clip set to @false they | |
2890 | will be drawn across the entire grid window. | |
2891 | ||
2892 | @see AreHorzGridLinesClipped(), ClipVertGridLines() | |
2893 | */ | |
2894 | void ClipHorzGridLines(bool clip); | |
23324ae1 FM |
2895 | |
2896 | /** | |
caac7804 BP |
2897 | Change whether the vertical grid lines are clipped by the end of the |
2898 | last row. | |
08dd9b5a | 2899 | |
caac7804 BP |
2900 | By default the grid lines are not drawn beyond the end of the last |
2901 | row but after calling this function with @a clip set to @false they | |
2902 | will be drawn across the entire grid window. | |
2903 | ||
2904 | @see AreVertGridLinesClipped(), ClipHorzGridLines() | |
2905 | */ | |
2906 | void ClipVertGridLines(bool clip); | |
08dd9b5a | 2907 | |
8b9ef005 | 2908 | /** |
caac7804 BP |
2909 | Deletes one or more columns from a grid starting at the specified |
2910 | position. | |
8b9ef005 | 2911 | |
caac7804 BP |
2912 | The @a updateLabels argument is not used at present. If you are using a |
2913 | derived grid table class you will need to override | |
2914 | wxGridTableBase::DeleteCols(). See InsertCols() for further | |
2915 | information. | |
8b9ef005 | 2916 | |
caac7804 | 2917 | @return @true on success or @false if deleting columns failed. |
23324ae1 | 2918 | */ |
caac7804 | 2919 | bool DeleteCols(int pos = 0, int numCols = 1, bool updateLabels = true); |
23324ae1 | 2920 | |
23324ae1 | 2921 | /** |
caac7804 BP |
2922 | Deletes one or more rows from a grid starting at the specified |
2923 | position. | |
8b9ef005 | 2924 | |
caac7804 BP |
2925 | The @a updateLabels argument is not used at present. If you are using a |
2926 | derived grid table class you will need to override | |
2927 | wxGridTableBase::DeleteRows(). See InsertRows() for further | |
2928 | information. | |
8b9ef005 | 2929 | |
caac7804 | 2930 | @return @true on success or @false if appending rows failed. |
23324ae1 | 2931 | */ |
caac7804 | 2932 | bool DeleteRows(int pos = 0, int numRows = 1, bool updateLabels = true); |
23324ae1 | 2933 | |
23324ae1 | 2934 | /** |
caac7804 BP |
2935 | Decrements the grid's batch count. |
2936 | ||
2937 | When the count is greater than zero repainting of the grid is | |
2938 | suppressed. Each previous call to BeginBatch() must be matched by a | |
2939 | later call to EndBatch(). Code that does a lot of grid modification can | |
2940 | be enclosed between BeginBatch() and EndBatch() calls to avoid screen | |
2941 | flicker. The final EndBatch() will cause the grid to be repainted. | |
2942 | ||
2943 | @see wxGridUpdateLocker | |
8b9ef005 | 2944 | */ |
caac7804 | 2945 | void EndBatch(); |
08dd9b5a | 2946 | |
8b9ef005 | 2947 | /** |
caac7804 | 2948 | Overridden wxWindow method. |
8b9ef005 | 2949 | */ |
caac7804 | 2950 | virtual void Fit(); |
08dd9b5a | 2951 | |
8b9ef005 | 2952 | /** |
caac7804 | 2953 | Causes immediate repainting of the grid. |
8b9ef005 | 2954 | |
caac7804 | 2955 | Use this instead of the usual wxWindow::Refresh(). |
23324ae1 | 2956 | */ |
caac7804 | 2957 | void ForceRefresh(); |
23324ae1 FM |
2958 | |
2959 | /** | |
caac7804 BP |
2960 | Returns the number of times that BeginBatch() has been called without |
2961 | (yet) matching calls to EndBatch(). While the grid's batch count is | |
2962 | greater than zero the display will not be updated. | |
2963 | */ | |
2964 | int GetBatchCount(); | |
08dd9b5a | 2965 | |
caac7804 BP |
2966 | /** |
2967 | Returns the total number of grid columns. | |
8b9ef005 | 2968 | |
caac7804 | 2969 | This is the same as the number of columns in the underlying grid table. |
23324ae1 | 2970 | */ |
caac7804 | 2971 | int GetNumberCols() const; |
23324ae1 FM |
2972 | |
2973 | /** | |
caac7804 | 2974 | Returns the total number of grid rows. |
08dd9b5a | 2975 | |
caac7804 | 2976 | This is the same as the number of rows in the underlying grid table. |
23324ae1 | 2977 | */ |
caac7804 | 2978 | int GetNumberRows() const; |
23324ae1 FM |
2979 | |
2980 | /** | |
caac7804 BP |
2981 | Returns the attribute for the given cell creating one if necessary. |
2982 | ||
2983 | If the cell already has an attribute, it is returned. Otherwise a new | |
2984 | attribute is created, associated with the cell and returned. In any | |
2985 | case the caller must call DecRef() on the returned pointer. | |
2986 | ||
2987 | This function may only be called if CanHaveAttributes() returns @true. | |
8b9ef005 | 2988 | */ |
caac7804 | 2989 | wxGridCellAttr *GetOrCreateCellAttr(int row, int col) const; |
08dd9b5a | 2990 | |
8b9ef005 | 2991 | /** |
caac7804 | 2992 | Returns a base pointer to the current table object. |
08dd9b5a | 2993 | |
caac7804 | 2994 | The returned pointer is still owned by the grid. |
23324ae1 | 2995 | */ |
caac7804 | 2996 | wxGridTableBase *GetTable() const; |
23324ae1 FM |
2997 | |
2998 | /** | |
caac7804 BP |
2999 | Inserts one or more new columns into a grid with the first new column |
3000 | at the specified position. | |
08dd9b5a | 3001 | |
caac7804 BP |
3002 | Notice that inserting the columns in the grid requires grid table |
3003 | cooperation: when this method is called, grid object begins by | |
3004 | requesting the underlying grid table to insert new columns. If this is | |
3005 | successful the table notifies the grid and the grid updates the | |
3006 | display. For a default grid (one where you have called CreateGrid()) | |
3007 | this process is automatic. If you are using a custom grid table | |
3008 | (specified with SetTable()) then you must override | |
3009 | wxGridTableBase::InsertCols() in your derived table class. | |
3010 | ||
3011 | @param pos | |
3012 | The position which the first newly inserted column will have. | |
3013 | @param numCols | |
3014 | The number of columns to insert. | |
3015 | @param updateLabels | |
3016 | Currently not used. | |
3017 | @return | |
3018 | @true if the columns were successfully inserted, @false if an error | |
3019 | occurred (most likely the table couldn't be updated). | |
23324ae1 | 3020 | */ |
caac7804 | 3021 | bool InsertCols(int pos = 0, int numCols = 1, bool updateLabels = true); |
23324ae1 FM |
3022 | |
3023 | /** | |
caac7804 BP |
3024 | Inserts one or more new rows into a grid with the first new row at the |
3025 | specified position. | |
8b9ef005 | 3026 | |
caac7804 BP |
3027 | Notice that you must implement wxGridTableBase::InsertRows() if you use |
3028 | a grid with a custom table, please see InsertCols() for more | |
3029 | information. | |
8b9ef005 | 3030 | |
caac7804 BP |
3031 | @param pos |
3032 | The position which the first newly inserted row will have. | |
3033 | @param numRows | |
3034 | The number of rows to insert. | |
3035 | @param updateLabels | |
3036 | Currently not used. | |
3037 | @return | |
3038 | @true if the rows were successfully inserted, @false if an error | |
3039 | occurred (most likely the table couldn't be updated). | |
3040 | */ | |
3041 | bool InsertRows(int pos = 0, int numRows = 1, bool updateLabels = true); | |
8b9ef005 | 3042 | |
caac7804 BP |
3043 | /** |
3044 | Sets the cell attributes for all cells in the specified column. | |
08dd9b5a | 3045 | |
caac7804 BP |
3046 | For more information about controlling grid cell attributes see the |
3047 | wxGridCellAttr cell attribute class and the @ref overview_grid. | |
3048 | */ | |
3049 | void SetColAttr(int col, wxGridCellAttr* attr); | |
23324ae1 FM |
3050 | |
3051 | /** | |
caac7804 | 3052 | Sets the extra margins used around the grid area. |
08dd9b5a | 3053 | |
caac7804 BP |
3054 | A grid may occupy more space than needed for its data display and |
3055 | this function allows to set how big this extra space is | |
23324ae1 | 3056 | */ |
caac7804 | 3057 | void SetMargins(int extraWidth, int extraHeight); |
23324ae1 FM |
3058 | |
3059 | /** | |
caac7804 | 3060 | Sets the cell attributes for all cells in the specified row. |
08dd9b5a | 3061 | |
caac7804 BP |
3062 | The grid takes ownership of the attribute pointer. |
3063 | ||
3064 | See the wxGridCellAttr class for more information about controlling | |
3065 | cell attributes. | |
23324ae1 | 3066 | */ |
caac7804 BP |
3067 | void SetRowAttr(int row, wxGridCellAttr* attr); |
3068 | ||
3069 | //@} | |
23324ae1 | 3070 | |
8b9ef005 | 3071 | protected: |
23324ae1 | 3072 | /** |
8b9ef005 | 3073 | Returns @true if this grid has support for cell attributes. |
08dd9b5a | 3074 | |
8b9ef005 BP |
3075 | The grid supports attributes if it has the associated table which, in |
3076 | turn, has attributes support, i.e. wxGridTableBase::CanHaveAttributes() | |
3077 | returns @true. | |
23324ae1 | 3078 | */ |
8b9ef005 | 3079 | bool CanHaveAttributes() const; |
23324ae1 FM |
3080 | |
3081 | /** | |
8b9ef005 | 3082 | Get the minimal width of the given column/row. |
08dd9b5a | 3083 | |
8b9ef005 BP |
3084 | The value returned by this function may be different than that returned |
3085 | by GetColMinimalAcceptableWidth() if SetColMinimalWidth() had been | |
3086 | called for this column. | |
23324ae1 | 3087 | */ |
8b9ef005 | 3088 | int GetColMinimalWidth(int col) const; |
23324ae1 FM |
3089 | |
3090 | /** | |
8b9ef005 | 3091 | Returns the coordinate of the right border specified column. |
23324ae1 | 3092 | */ |
8b9ef005 | 3093 | int GetColRight(int col) const; |
23324ae1 FM |
3094 | |
3095 | /** | |
8b9ef005 | 3096 | Returns the coordinate of the left border specified column. |
23324ae1 | 3097 | */ |
8b9ef005 | 3098 | int GetColLeft(int col) const; |
23324ae1 FM |
3099 | |
3100 | /** | |
8b9ef005 | 3101 | Returns the minimal size for the given column. |
08dd9b5a | 3102 | |
8b9ef005 BP |
3103 | The value returned by this function may be different than that returned |
3104 | by GetRowMinimalAcceptableHeight() if SetRowMinimalHeight() had been | |
3105 | called for this row. | |
23324ae1 | 3106 | */ |
8b9ef005 | 3107 | int GetRowMinimalHeight(int col) const; |
11393d29 VZ |
3108 | |
3109 | ||
3110 | /** | |
3111 | @name Sorting support. | |
3112 | ||
3113 | wxGrid doesn't provide any support for sorting the data but it does | |
3114 | generate events allowing the user code to sort it and supports | |
3115 | displaying the sort indicator in the column used for sorting. | |
3116 | ||
3117 | To use wxGrid sorting support you need to handle wxEVT_GRID_COL_SORT | |
3118 | event (and not veto it) and resort the data displayed in the grid. The | |
3119 | grid will automatically update the sorting indicator on the column | |
3120 | which was clicked. | |
3121 | ||
3122 | You can also call the functions in this section directly to update the | |
3123 | sorting indicator. Once again, they don't do anything with the grid | |
3124 | data, it remains your responsibility to actually sort it appropriately. | |
3125 | */ | |
3126 | //@{ | |
3127 | ||
3128 | /** | |
3129 | Return the column in which the sorting indicator is currently | |
3130 | displayed. | |
3131 | ||
3132 | Returns @c wxNOT_FOUND if sorting indicator is not currently displayed | |
3133 | at all. | |
3134 | ||
3135 | @see SetSortingColumn() | |
3136 | */ | |
3137 | int GetSortingColumn() const; | |
3138 | ||
3139 | /** | |
3140 | Return @true if this column is currently used for sorting. | |
3141 | ||
3142 | @see GetSortingColumn() | |
3143 | */ | |
3144 | bool IsSortingBy(int col) const; | |
3145 | ||
3146 | /** | |
3147 | Return @true if the current sorting order is ascending or @false if it | |
3148 | is descending. | |
3149 | ||
3150 | It only makes sense to call this function if GetSortingColumn() returns | |
3151 | a valid column index and not @c wxNOT_FOUND. | |
3152 | ||
3153 | @see SetSortingColumn() | |
3154 | */ | |
3155 | bool IsSortOrderAscending() const; | |
3156 | ||
3157 | /** | |
3158 | Set the column to display the sorting indicator in and its direction. | |
3159 | ||
3160 | @param col | |
3161 | The column to display the sorting indicator in or @c wxNOT_FOUND to | |
3162 | remove any currently displayed sorting indicator. | |
3163 | @param ascending | |
3164 | If @true, display the ascending sort indicator, otherwise display | |
3165 | the descending sort indicator. | |
3166 | ||
3167 | @see GetSortingColumn(), IsSortOrderAscending() | |
3168 | */ | |
3169 | void SetSortingColumn(int col, bool ascending = true); | |
3170 | ||
3171 | /** | |
3172 | Remove any currently shown sorting indicator. | |
3173 | ||
3174 | This is equivalent to calling SetSortingColumn() with @c wxNOT_FOUND | |
3175 | first argument. | |
3176 | */ | |
3177 | void UnsetSortingColumn(); | |
3178 | //@} | |
3039ade9 VZ |
3179 | |
3180 | /** | |
3181 | @name Accessors for component windows. | |
3182 | ||
3183 | Return the various child windows of wxGrid. | |
3184 | ||
3185 | wxGrid is an empty parent window for 4 children representing the column | |
3186 | labels window (top), the row labels window (left), the corner window | |
3187 | (top left) and the main grid window. It may be necessary to use these | |
3188 | individual windows and not the wxGrid window itself if you need to | |
3189 | handle events for them (this can be done using wxEvtHandler::Connect() | |
3190 | or wxWindow::PushEventHandler()) or do something else requiring the use | |
3191 | of the correct window pointer. Notice that you should not, however, | |
3192 | change these windows (e.g. reposition them or draw over them) because | |
3193 | they are managed by wxGrid itself. | |
3194 | */ | |
3195 | //@{ | |
3196 | ||
3197 | /** | |
3198 | Return the main grid window containing the grid cells. | |
3199 | ||
3200 | This window is always shown. | |
3201 | */ | |
3202 | wxWindow *GetGridWindow() const; | |
3203 | ||
3204 | /** | |
3205 | Return the row labels window. | |
3206 | ||
3207 | This window is not shown if the row labels were hidden using | |
3208 | HideRowLabels(). | |
3209 | */ | |
3210 | wxWindow *GetGridRowLabelWindow() const; | |
3211 | ||
3212 | /** | |
3213 | Return the column labels window. | |
3214 | ||
3215 | This window is not shown if the columns labels were hidden using | |
3216 | HideColLabels(). | |
3217 | ||
3218 | Depending on whether UseNativeColHeader() was called or not this can be | |
3219 | either a wxHeaderCtrl or a plain wxWindow. This function returns a valid | |
3220 | window pointer in either case but in the former case you can also use | |
3221 | GetGridColHeader() to access it if you need wxHeaderCtrl-specific | |
3222 | functionality. | |
3223 | */ | |
3224 | wxWindow *GetGridWindow() const; | |
3225 | ||
3226 | /** | |
3227 | Return the window in the top left grid corner. | |
3228 | ||
3229 | This window is shown only of both columns and row labels are shown and | |
3230 | normally doesn't contain anything. Clicking on it is handled by wxGrid | |
3231 | however and can be used to select the entire grid. | |
3232 | */ | |
3233 | wxWindow *GetGridCornerLabelWindow() const; | |
3234 | ||
3235 | /** | |
3236 | Return the header control used for column labels display. | |
3237 | ||
3238 | This function can only be called if UseNativeColHeader() had been | |
3239 | called. | |
3240 | */ | |
3241 | wxHeaderCtrl *GetGridColHeader() const; | |
3242 | ||
3243 | //@} | |
8b9ef005 | 3244 | }; |
23324ae1 | 3245 | |
08dd9b5a | 3246 | |
23324ae1 | 3247 | |
8b9ef005 BP |
3248 | /** |
3249 | @class wxGridUpdateLocker | |
23324ae1 | 3250 | |
8b9ef005 BP |
3251 | This small class can be used to prevent wxGrid from redrawing during its |
3252 | lifetime by calling wxGrid::BeginBatch() in its constructor and | |
3253 | wxGrid::EndBatch() in its destructor. It is typically used in a function | |
3254 | performing several operations with a grid which would otherwise result in | |
3255 | flicker. For example: | |
23324ae1 | 3256 | |
8b9ef005 BP |
3257 | @code |
3258 | void MyFrame::Foo() | |
3259 | { | |
3260 | m_grid = new wxGrid(this, ...); | |
23324ae1 | 3261 | |
8b9ef005 BP |
3262 | wxGridUpdateLocker noUpdates(m_grid); |
3263 | m_grid-AppendColumn(); | |
3264 | // ... many other operations with m_grid ... | |
3265 | m_grid-AppendRow(); | |
08dd9b5a | 3266 | |
8b9ef005 BP |
3267 | // destructor called, grid refreshed |
3268 | } | |
3269 | @endcode | |
08dd9b5a | 3270 | |
8b9ef005 BP |
3271 | Using this class is easier and safer than calling wxGrid::BeginBatch() and |
3272 | wxGrid::EndBatch() because you don't risk missing the call the latter (due | |
3273 | to an exception for example). | |
23324ae1 | 3274 | |
8b9ef005 BP |
3275 | @library{wxadv} |
3276 | @category{grid} | |
3277 | */ | |
3278 | class wxGridUpdateLocker | |
3279 | { | |
3280 | public: | |
23324ae1 | 3281 | /** |
8b9ef005 BP |
3282 | Creates an object preventing the updates of the specified @a grid. The |
3283 | parameter could be @NULL in which case nothing is done. If @a grid is | |
3284 | non-@NULL then the grid must exist for longer than this | |
3285 | wxGridUpdateLocker object itself. | |
08dd9b5a | 3286 | |
8b9ef005 BP |
3287 | The default constructor could be followed by a call to Create() to set |
3288 | the grid object later. | |
23324ae1 | 3289 | */ |
8b9ef005 | 3290 | wxGridUpdateLocker(wxGrid* grid = NULL); |
23324ae1 FM |
3291 | |
3292 | /** | |
8b9ef005 BP |
3293 | Destructor reenables updates for the grid this object is associated |
3294 | with. | |
23324ae1 | 3295 | */ |
8b9ef005 | 3296 | ~wxGridUpdateLocker(); |
23324ae1 FM |
3297 | |
3298 | /** | |
8b9ef005 BP |
3299 | This method can be called if the object had been constructed using the |
3300 | default constructor. It must not be called more than once. | |
3301 | */ | |
3302 | void Create(wxGrid* grid); | |
3303 | }; | |
08dd9b5a | 3304 | |
08dd9b5a | 3305 | |
23324ae1 | 3306 | |
8b9ef005 BP |
3307 | /** |
3308 | @class wxGridEvent | |
08dd9b5a | 3309 | |
8b9ef005 | 3310 | This event class contains information about various grid events. |
8a3e536c | 3311 | |
2b1f9fa0 VZ |
3312 | Notice that all grid event table macros are available in two versions: |
3313 | @c EVT_GRID_XXX and @c EVT_GRID_CMD_XXX. The only difference between the | |
3314 | two is that the former doesn't allow to specify the grid window identifier | |
3315 | and so takes a single parameter, the event handler, but is not suitable if | |
3316 | there is more than one grid control in the window where the event table is | |
3317 | used (as it would catch the events from all the grids). The version with @c | |
3318 | CMD takes the id as first argument and the event handler as the second one | |
3319 | and so can be used with multiple grids as well. Otherwise there are no | |
3320 | difference between the two and only the versions without the id are | |
3321 | documented below for brevity. | |
3322 | ||
8b9ef005 BP |
3323 | @beginEventTable{wxGridEvent} |
3324 | @event{EVT_GRID_CELL_CHANGE(func)} | |
3325 | The user changed the data in a cell. Processes a | |
3326 | @c wxEVT_GRID_CELL_CHANGE event type. | |
3327 | @event{EVT_GRID_CELL_LEFT_CLICK(func)} | |
3328 | The user clicked a cell with the left mouse button. Processes a | |
3329 | @c wxEVT_GRID_CELL_LEFT_CLICK event type. | |
3330 | @event{EVT_GRID_CELL_LEFT_DCLICK(func)} | |
3331 | The user double-clicked a cell with the left mouse button. Processes a | |
3332 | @c wxEVT_GRID_CELL_LEFT_DCLICK event type. | |
3333 | @event{EVT_GRID_CELL_RIGHT_CLICK(func)} | |
3334 | The user clicked a cell with the right mouse button. Processes a | |
3335 | @c wxEVT_GRID_CELL_RIGHT_CLICK event type. | |
3336 | @event{EVT_GRID_CELL_RIGHT_DCLICK(func)} | |
3337 | The user double-clicked a cell with the right mouse button. Processes a | |
3338 | @c wxEVT_GRID_CELL_RIGHT_DCLICK event type. | |
3339 | @event{EVT_GRID_EDITOR_HIDDEN(func)} | |
3340 | The editor for a cell was hidden. Processes a | |
3341 | @c wxEVT_GRID_EDITOR_HIDDEN event type. | |
3342 | @event{EVT_GRID_EDITOR_SHOWN(func)} | |
3343 | The editor for a cell was shown. Processes a | |
3344 | @c wxEVT_GRID_EDITOR_SHOWN event type. | |
3345 | @event{EVT_GRID_LABEL_LEFT_CLICK(func)} | |
3346 | The user clicked a label with the left mouse button. Processes a | |
3347 | @c wxEVT_GRID_LABEL_LEFT_CLICK event type. | |
3348 | @event{EVT_GRID_LABEL_LEFT_DCLICK(func)} | |
3349 | The user double-clicked a label with the left mouse button. Processes a | |
3350 | @c wxEVT_GRID_LABEL_LEFT_DCLICK event type. | |
3351 | @event{EVT_GRID_LABEL_RIGHT_CLICK(func)} | |
3352 | The user clicked a label with the right mouse button. Processes a | |
3353 | @c wxEVT_GRID_LABEL_RIGHT_CLICK event type. | |
3354 | @event{EVT_GRID_LABEL_RIGHT_DCLICK(func)} | |
3355 | The user double-clicked a label with the right mouse button. Processes | |
3356 | a @c wxEVT_GRID_LABEL_RIGHT_DCLICK event type. | |
3357 | @event{EVT_GRID_SELECT_CELL(func)} | |
3358 | The user moved to, and selected a cell. Processes a | |
3359 | @c wxEVT_GRID_SELECT_CELL event type. | |
cd68daf5 VZ |
3360 | @event{EVT_GRID_COL_MOVE(func)} |
3361 | The user tries to change the order of the columns in the grid by | |
3362 | dragging the column specified by GetCol(). This event can be vetoed to | |
3363 | either prevent the user from reordering the column change completely | |
3364 | (but notice that if you don't want to allow it at all, you simply | |
3365 | shouldn't call wxGrid::EnableDragColMove() in the first place), vetoed | |
3366 | but handled in some way in the handler, e.g. by really moving the | |
3367 | column to the new position at the associated table level, or allowed to | |
3368 | proceed in which case wxGrid::SetColPos() is used to reorder the | |
3369 | columns display order without affecting the use of the column indices | |
3370 | otherwise. | |
11393d29 | 3371 | |
cd68daf5 | 3372 | This event macro corresponds to @c wxEVT_GRID_COL_MOVE event type. |
11393d29 VZ |
3373 | @event{EVT_GRID_COL_SORT(func)} |
3374 | This event is generated when a column is clicked by the user and its | |
3375 | name is explained by the fact that the custom reaction to a click on a | |
3376 | column is to sort the grid contents by this column. However the grid | |
3377 | itself has no special support for sorting and it's up to the handler of | |
3378 | this event to update the associated table. But if the event is handled | |
3379 | (and not vetoed) the grid supposes that the table was indeed resorted | |
3380 | and updates the column to indicate the new sort order and refreshes | |
3381 | itself. | |
3382 | ||
3383 | This event macro corresponds to @c wxEVT_GRID_COL_SORT event type. | |
8b9ef005 | 3384 | @endEventTable |
8a3e536c | 3385 | |
8b9ef005 BP |
3386 | @library{wxadv} |
3387 | @category{grid} | |
3388 | */ | |
3389 | class wxGridEvent : public wxNotifyEvent | |
3390 | { | |
3391 | public: | |
3392 | /** | |
3393 | Default constructor. | |
23324ae1 | 3394 | */ |
8b9ef005 | 3395 | wxGridEvent(); |
23324ae1 | 3396 | /** |
8b9ef005 | 3397 | Constructor for initializing all event attributes. |
23324ae1 | 3398 | */ |
8b9ef005 BP |
3399 | wxGridEvent(int id, wxEventType type, wxObject* obj, |
3400 | int row = -1, int col = -1, int x = -1, int y = -1, | |
3401 | bool sel = true, bool control = false, bool shift = false, | |
3402 | bool alt = false, bool meta = false); | |
23324ae1 FM |
3403 | |
3404 | /** | |
8b9ef005 | 3405 | Returns @true if the Alt key was down at the time of the event. |
23324ae1 | 3406 | */ |
8b9ef005 | 3407 | bool AltDown() const; |
23324ae1 FM |
3408 | |
3409 | /** | |
8b9ef005 | 3410 | Returns @true if the Control key was down at the time of the event. |
23324ae1 | 3411 | */ |
8b9ef005 | 3412 | bool ControlDown() const; |
23324ae1 FM |
3413 | |
3414 | /** | |
8b9ef005 | 3415 | Column at which the event occurred. |
23324ae1 | 3416 | */ |
8b9ef005 | 3417 | virtual int GetCol(); |
23324ae1 FM |
3418 | |
3419 | /** | |
8b9ef005 | 3420 | Position in pixels at which the event occurred. |
23324ae1 | 3421 | */ |
8b9ef005 | 3422 | wxPoint GetPosition(); |
23324ae1 FM |
3423 | |
3424 | /** | |
8b9ef005 | 3425 | Row at which the event occurred. |
23324ae1 | 3426 | */ |
8b9ef005 | 3427 | virtual int GetRow(); |
23324ae1 FM |
3428 | |
3429 | /** | |
8b9ef005 | 3430 | Returns @true if the Meta key was down at the time of the event. |
23324ae1 | 3431 | */ |
8b9ef005 | 3432 | bool MetaDown() const; |
23324ae1 FM |
3433 | |
3434 | /** | |
8b9ef005 BP |
3435 | Returns @true if the user is selecting grid cells, or @false if |
3436 | deselecting. | |
23324ae1 | 3437 | */ |
8b9ef005 | 3438 | bool Selecting(); |
23324ae1 FM |
3439 | |
3440 | /** | |
8b9ef005 | 3441 | Returns @true if the Shift key was down at the time of the event. |
23324ae1 | 3442 | */ |
8b9ef005 BP |
3443 | bool ShiftDown() const; |
3444 | }; | |
23324ae1 | 3445 | |
08dd9b5a | 3446 | |
8b9ef005 BP |
3447 | |
3448 | /** | |
3449 | @class wxGridSizeEvent | |
3450 | ||
3451 | This event class contains information about a row/column resize event. | |
3452 | ||
3453 | @beginEventTable{wxGridSizeEvent} | |
3454 | @event{EVT_GRID_COL_SIZE(func)} | |
3455 | The user resized a column by dragging it. Processes a | |
3456 | @c wxEVT_GRID_COL_SIZE event type. | |
3457 | @event{EVT_GRID_ROW_SIZE(func)} | |
3458 | The user resized a row by dragging it. Processes a | |
3459 | @c wxEVT_GRID_ROW_SIZE event type. | |
3460 | @event{EVT_GRID_CMD_COL_SIZE(id, func)} | |
3461 | The user resized a column by dragging it; variant taking a window | |
3462 | identifier. Processes a @c wxEVT_GRID_COL_SIZE event type. | |
3463 | @event{EVT_GRID_CMD_ROW_SIZE(id, func)} | |
3464 | The user resized a row by dragging it; variant taking a window | |
3465 | identifier. Processes a @c wxEVT_GRID_ROW_SIZE event type. | |
3466 | @endEventTable | |
3467 | ||
3468 | @library{wxadv} | |
3469 | @category{grid} | |
3470 | */ | |
3471 | class wxGridSizeEvent : public wxNotifyEvent | |
3472 | { | |
3473 | public: | |
3474 | /** | |
3475 | Default constructor. | |
23324ae1 | 3476 | */ |
8b9ef005 | 3477 | wxGridSizeEvent(); |
23324ae1 | 3478 | /** |
8b9ef005 | 3479 | Constructor for initializing all event attributes. |
23324ae1 | 3480 | */ |
8b9ef005 BP |
3481 | wxGridSizeEvent(int id, wxEventType type, wxObject* obj, |
3482 | int rowOrCol = -1, int x = -1, int y = -1, | |
3483 | bool control = false, bool shift = false, | |
3484 | bool alt = false, bool meta = false); | |
23324ae1 FM |
3485 | |
3486 | /** | |
8b9ef005 | 3487 | Returns @true if the Alt key was down at the time of the event. |
23324ae1 | 3488 | */ |
8b9ef005 | 3489 | bool AltDown() const; |
23324ae1 FM |
3490 | |
3491 | /** | |
8b9ef005 | 3492 | Returns @true if the Control key was down at the time of the event. |
23324ae1 | 3493 | */ |
8b9ef005 | 3494 | bool ControlDown() const; |
23324ae1 FM |
3495 | |
3496 | /** | |
8b9ef005 | 3497 | Position in pixels at which the event occurred. |
23324ae1 | 3498 | */ |
8b9ef005 | 3499 | wxPoint GetPosition(); |
23324ae1 FM |
3500 | |
3501 | /** | |
8b9ef005 | 3502 | Row or column at that was resized. |
23324ae1 | 3503 | */ |
8b9ef005 | 3504 | int GetRowOrCol(); |
23324ae1 FM |
3505 | |
3506 | /** | |
8b9ef005 | 3507 | Returns @true if the Meta key was down at the time of the event. |
23324ae1 | 3508 | */ |
8b9ef005 | 3509 | bool MetaDown() const; |
23324ae1 FM |
3510 | |
3511 | /** | |
8b9ef005 | 3512 | Returns @true if the Shift key was down at the time of the event. |
23324ae1 | 3513 | */ |
8b9ef005 BP |
3514 | bool ShiftDown() const; |
3515 | }; | |
23324ae1 | 3516 | |
3c4f71cc | 3517 | |
23324ae1 | 3518 | |
8b9ef005 BP |
3519 | /** |
3520 | @class wxGridRangeSelectEvent | |
08dd9b5a | 3521 | |
8b9ef005 BP |
3522 | @beginEventTable{wxGridRangeSelectEvent} |
3523 | @event{EVT_GRID_RANGE_SELECT(func)} | |
3524 | The user selected a group of contiguous cells. Processes a | |
3525 | @c wxEVT_GRID_RANGE_SELECT event type. | |
3526 | @event{EVT_GRID_CMD_RANGE_SELECT(id, func)} | |
3527 | The user selected a group of contiguous cells; variant taking a window | |
3528 | identifier. Processes a @c wxEVT_GRID_RANGE_SELECT event type. | |
3529 | @endEventTable | |
08dd9b5a | 3530 | |
8b9ef005 BP |
3531 | @library{wxadv} |
3532 | @category{grid} | |
3533 | */ | |
3534 | class wxGridRangeSelectEvent : public wxNotifyEvent | |
3535 | { | |
3536 | public: | |
3537 | /** | |
3538 | Default constructor. | |
23324ae1 | 3539 | */ |
8b9ef005 | 3540 | wxGridRangeSelectEvent(); |
23324ae1 | 3541 | /** |
8b9ef005 | 3542 | Constructor for initializing all event attributes. |
23324ae1 | 3543 | */ |
8b9ef005 BP |
3544 | wxGridRangeSelectEvent(int id, wxEventType type, |
3545 | wxObject* obj, | |
3546 | const wxGridCellCoords& topLeft, | |
3547 | const wxGridCellCoords& bottomRight, | |
3548 | bool sel = true, bool control = false, | |
3549 | bool shift = false, bool alt = false, | |
3550 | bool meta = false); | |
23324ae1 FM |
3551 | |
3552 | /** | |
8b9ef005 | 3553 | Returns @true if the Alt key was down at the time of the event. |
23324ae1 | 3554 | */ |
8b9ef005 | 3555 | bool AltDown() const; |
23324ae1 FM |
3556 | |
3557 | /** | |
8b9ef005 | 3558 | Returns @true if the Control key was down at the time of the event. |
23324ae1 | 3559 | */ |
8b9ef005 | 3560 | bool ControlDown() const; |
23324ae1 FM |
3561 | |
3562 | /** | |
8b9ef005 | 3563 | Top left corner of the rectangular area that was (de)selected. |
23324ae1 | 3564 | */ |
8b9ef005 | 3565 | wxGridCellCoords GetBottomRightCoords(); |
23324ae1 | 3566 | |
8a3e536c | 3567 | /** |
8b9ef005 BP |
3568 | Bottom row of the rectangular area that was (de)selected. |
3569 | */ | |
3570 | int GetBottomRow(); | |
8a3e536c | 3571 | |
23324ae1 | 3572 | /** |
8b9ef005 | 3573 | Left column of the rectangular area that was (de)selected. |
23324ae1 | 3574 | */ |
8b9ef005 | 3575 | int GetLeftCol(); |
23324ae1 FM |
3576 | |
3577 | /** | |
8b9ef005 | 3578 | Right column of the rectangular area that was (de)selected. |
23324ae1 | 3579 | */ |
8b9ef005 | 3580 | int GetRightCol(); |
5e6e278d | 3581 | |
5e6e278d | 3582 | /** |
8b9ef005 | 3583 | Top left corner of the rectangular area that was (de)selected. |
5e6e278d | 3584 | */ |
8b9ef005 | 3585 | wxGridCellCoords GetTopLeftCoords(); |
5e6e278d FM |
3586 | |
3587 | /** | |
8b9ef005 | 3588 | Top row of the rectangular area that was (de)selected. |
5e6e278d | 3589 | */ |
8b9ef005 | 3590 | int GetTopRow(); |
5e6e278d FM |
3591 | |
3592 | /** | |
8b9ef005 | 3593 | Returns @true if the Meta key was down at the time of the event. |
5e6e278d | 3594 | */ |
8b9ef005 | 3595 | bool MetaDown() const; |
5e6e278d FM |
3596 | |
3597 | /** | |
8b9ef005 | 3598 | Returns @true if the area was selected, @false otherwise. |
5e6e278d | 3599 | */ |
8b9ef005 | 3600 | bool Selecting(); |
5e6e278d FM |
3601 | |
3602 | /** | |
8b9ef005 | 3603 | Returns @true if the Shift key was down at the time of the event. |
5e6e278d | 3604 | */ |
8b9ef005 | 3605 | bool ShiftDown() const; |
23324ae1 FM |
3606 | }; |
3607 | ||
3608 | ||
e54c96f1 | 3609 | |
23324ae1 | 3610 | /** |
8b9ef005 | 3611 | @class wxGridEditorCreatedEvent |
7c913512 | 3612 | |
8b9ef005 BP |
3613 | @beginEventTable{wxGridEditorCreatedEvent} |
3614 | @event{EVT_GRID_EDITOR_CREATED(func)} | |
3615 | The editor for a cell was created. Processes a | |
3616 | @c wxEVT_GRID_EDITOR_CREATED event type. | |
3617 | @event{EVT_GRID_CMD_EDITOR_CREATED(id, func)} | |
3618 | The editor for a cell was created; variant taking a window identifier. | |
3619 | Processes a @c wxEVT_GRID_EDITOR_CREATED event type. | |
3620 | @endEventTable | |
7c913512 | 3621 | |
23324ae1 | 3622 | @library{wxadv} |
42b5841f | 3623 | @category{grid} |
23324ae1 | 3624 | */ |
8b9ef005 | 3625 | class wxGridEditorCreatedEvent : public wxCommandEvent |
23324ae1 FM |
3626 | { |
3627 | public: | |
3628 | /** | |
3629 | Default constructor. | |
3630 | */ | |
8b9ef005 | 3631 | wxGridEditorCreatedEvent(); |
23324ae1 | 3632 | /** |
8b9ef005 | 3633 | Constructor for initializing all event attributes. |
23324ae1 | 3634 | */ |
8b9ef005 BP |
3635 | wxGridEditorCreatedEvent(int id, wxEventType type, wxObject* obj, |
3636 | int row, int col, wxControl* ctrl); | |
23324ae1 FM |
3637 | |
3638 | /** | |
8b9ef005 | 3639 | Returns the column at which the event occurred. |
23324ae1 | 3640 | */ |
8b9ef005 | 3641 | int GetCol(); |
7c913512 | 3642 | |
8b9ef005 BP |
3643 | /** |
3644 | Returns the edit control. | |
3645 | */ | |
3646 | wxControl* GetControl(); | |
7c913512 | 3647 | |
8b9ef005 BP |
3648 | /** |
3649 | Returns the row at which the event occurred. | |
3650 | */ | |
3651 | int GetRow(); | |
7c913512 | 3652 | |
23324ae1 | 3653 | /** |
8b9ef005 | 3654 | Sets the column at which the event occurred. |
23324ae1 | 3655 | */ |
8b9ef005 | 3656 | void SetCol(int col); |
23324ae1 FM |
3657 | |
3658 | /** | |
8b9ef005 | 3659 | Sets the edit control. |
23324ae1 | 3660 | */ |
8b9ef005 | 3661 | void SetControl(wxControl* ctrl); |
23324ae1 FM |
3662 | |
3663 | /** | |
8b9ef005 | 3664 | Sets the row at which the event occurred. |
23324ae1 | 3665 | */ |
8b9ef005 | 3666 | void SetRow(int row); |
23324ae1 | 3667 | }; |
e54c96f1 | 3668 |