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