]> git.saurik.com Git - wxWidgets.git/blob - include/wx/generic/grid.h
moving XRC to the core
[wxWidgets.git] / include / wx / generic / grid.h
1 /////////////////////////////////////////////////////////////////////////////
2 // Name: wx/generic/grid.h
3 // Purpose: wxGrid and related classes
4 // Author: Michael Bedward (based on code by Julian Smart, Robin Dunn)
5 // Modified by:
6 // Created: 1/08/1999
7 // RCS-ID: $Id$
8 // Copyright: (c) Michael Bedward
9 // Licence: wxWindows licence
10 /////////////////////////////////////////////////////////////////////////////
11
12 #include "wx/defs.h"
13
14 #ifndef __WXGRID_H__
15 #define __WXGRID_H__
16
17 #if defined(__GNUG__) && !defined(NO_GCC_PRAGMA)
18 #pragma interface "grid.h"
19 #endif
20
21 #include "wx/hashmap.h"
22 #include "wx/panel.h"
23 #include "wx/scrolwin.h"
24 #include "wx/string.h"
25 #include "wx/arrstr.h"
26 #include "wx/scrolbar.h"
27 #include "wx/event.h"
28 #include "wx/combobox.h"
29 #include "wx/dynarray.h"
30 #include "wx/timer.h"
31 #include "wx/clntdata.h"
32
33 // ----------------------------------------------------------------------------
34 // constants
35 // ----------------------------------------------------------------------------
36
37 // Default parameters for wxGrid
38 //
39 #define WXGRID_DEFAULT_NUMBER_ROWS 10
40 #define WXGRID_DEFAULT_NUMBER_COLS 10
41 #ifdef __WXMSW__
42 #define WXGRID_DEFAULT_ROW_HEIGHT 25
43 #else
44 #define WXGRID_DEFAULT_ROW_HEIGHT 30
45 #endif // __WXMSW__
46 #define WXGRID_DEFAULT_COL_WIDTH 80
47 #define WXGRID_DEFAULT_COL_LABEL_HEIGHT 32
48 #define WXGRID_DEFAULT_ROW_LABEL_WIDTH 82
49 #define WXGRID_LABEL_EDGE_ZONE 2
50 #define WXGRID_MIN_ROW_HEIGHT 15
51 #define WXGRID_MIN_COL_WIDTH 15
52 #define WXGRID_DEFAULT_SCROLLBAR_WIDTH 16
53
54 // type names for grid table values
55 #define wxGRID_VALUE_STRING _T("string")
56 #define wxGRID_VALUE_BOOL _T("bool")
57 #define wxGRID_VALUE_NUMBER _T("long")
58 #define wxGRID_VALUE_FLOAT _T("double")
59 #define wxGRID_VALUE_CHOICE _T("choice")
60
61 #define wxGRID_VALUE_TEXT wxGRID_VALUE_STRING
62 #define wxGRID_VALUE_LONG wxGRID_VALUE_NUMBER
63
64 // ----------------------------------------------------------------------------
65 // forward declarations
66 // ----------------------------------------------------------------------------
67
68 class WXDLLIMPEXP_ADV wxGrid;
69 class WXDLLIMPEXP_ADV wxGridCellAttr;
70 class WXDLLIMPEXP_ADV wxGridCellAttrProviderData;
71 class WXDLLIMPEXP_ADV wxGridColLabelWindow;
72 class WXDLLIMPEXP_ADV wxGridCornerLabelWindow;
73 class WXDLLIMPEXP_ADV wxGridRowLabelWindow;
74 class WXDLLIMPEXP_ADV wxGridTableBase;
75 class WXDLLIMPEXP_ADV wxGridWindow;
76 class WXDLLIMPEXP_ADV wxGridTypeRegistry;
77 class WXDLLIMPEXP_ADV wxGridSelection;
78
79 class WXDLLEXPORT wxCheckBox;
80 class WXDLLEXPORT wxComboBox;
81 class WXDLLEXPORT wxTextCtrl;
82 class WXDLLEXPORT wxSpinCtrl;
83
84 // ----------------------------------------------------------------------------
85 // macros
86 // ----------------------------------------------------------------------------
87
88 #define wxSafeIncRef(p) if ( p ) (p)->IncRef()
89 #define wxSafeDecRef(p) if ( p ) (p)->DecRef()
90
91 // ----------------------------------------------------------------------------
92 // wxGridCellWorker: common base class for wxGridCellRenderer and
93 // wxGridCellEditor
94 //
95 // NB: this is more an implementation convenience than a design issue, so this
96 // class is not documented and is not public at all
97 // ----------------------------------------------------------------------------
98
99 class WXDLLIMPEXP_ADV wxGridCellWorker : public wxClientDataContainer
100 {
101 public:
102 wxGridCellWorker() { m_nRef = 1; }
103
104 // this class is ref counted: it is created with ref count of 1, so
105 // calling DecRef() once will delete it. Calling IncRef() allows to lock
106 // it until the matching DecRef() is called
107 void IncRef() { m_nRef++; }
108 void DecRef() { if ( !--m_nRef ) delete this; }
109
110 // interpret renderer parameters: arbitrary string whose interpretatin is
111 // left to the derived classes
112 virtual void SetParameters(const wxString& params);
113
114 protected:
115 // virtual dtor for any base class - private because only DecRef() can
116 // delete us
117 virtual ~wxGridCellWorker();
118
119 private:
120 size_t m_nRef;
121
122 // suppress the stupid gcc warning about the class having private dtor and
123 // no friends
124 friend class wxGridCellWorkerDummyFriend;
125 };
126
127 // ----------------------------------------------------------------------------
128 // wxGridCellRenderer: this class is responsible for actually drawing the cell
129 // in the grid. You may pass it to the wxGridCellAttr (below) to change the
130 // format of one given cell or to wxGrid::SetDefaultRenderer() to change the
131 // view of all cells. This is an ABC, you will normally use one of the
132 // predefined derived classes or derive your own class from it.
133 // ----------------------------------------------------------------------------
134
135 class WXDLLIMPEXP_ADV wxGridCellRenderer : public wxGridCellWorker
136 {
137 public:
138 // draw the given cell on the provided DC inside the given rectangle
139 // using the style specified by the attribute and the default or selected
140 // state corresponding to the isSelected value.
141 //
142 // this pure virtual function has a default implementation which will
143 // prepare the DC using the given attribute: it will draw the rectangle
144 // with the bg colour from attr and set the text colour and font
145 virtual void Draw(wxGrid& grid,
146 wxGridCellAttr& attr,
147 wxDC& dc,
148 const wxRect& rect,
149 int row, int col,
150 bool isSelected) = 0;
151
152 // get the preferred size of the cell for its contents
153 virtual wxSize GetBestSize(wxGrid& grid,
154 wxGridCellAttr& attr,
155 wxDC& dc,
156 int row, int col) = 0;
157
158 // create a new object which is the copy of this one
159 virtual wxGridCellRenderer *Clone() const = 0;
160 };
161
162 // the default renderer for the cells containing string data
163 class WXDLLIMPEXP_ADV wxGridCellStringRenderer : public wxGridCellRenderer
164 {
165 public:
166 // draw the string
167 virtual void Draw(wxGrid& grid,
168 wxGridCellAttr& attr,
169 wxDC& dc,
170 const wxRect& rect,
171 int row, int col,
172 bool isSelected);
173
174 // return the string extent
175 virtual wxSize GetBestSize(wxGrid& grid,
176 wxGridCellAttr& attr,
177 wxDC& dc,
178 int row, int col);
179
180 virtual wxGridCellRenderer *Clone() const
181 { return new wxGridCellStringRenderer; }
182
183 protected:
184 // set the text colours before drawing
185 void SetTextColoursAndFont(wxGrid& grid,
186 wxGridCellAttr& attr,
187 wxDC& dc,
188 bool isSelected);
189
190 // calc the string extent for given string/font
191 wxSize DoGetBestSize(wxGridCellAttr& attr,
192 wxDC& dc,
193 const wxString& text);
194 };
195
196 // the default renderer for the cells containing numeric (long) data
197 class WXDLLIMPEXP_ADV wxGridCellNumberRenderer : public wxGridCellStringRenderer
198 {
199 public:
200 // draw the string right aligned
201 virtual void Draw(wxGrid& grid,
202 wxGridCellAttr& attr,
203 wxDC& dc,
204 const wxRect& rect,
205 int row, int col,
206 bool isSelected);
207
208 virtual wxSize GetBestSize(wxGrid& grid,
209 wxGridCellAttr& attr,
210 wxDC& dc,
211 int row, int col);
212
213 virtual wxGridCellRenderer *Clone() const
214 { return new wxGridCellNumberRenderer; }
215
216 protected:
217 wxString GetString(wxGrid& grid, int row, int col);
218 };
219
220 class WXDLLIMPEXP_ADV wxGridCellFloatRenderer : public wxGridCellStringRenderer
221 {
222 public:
223 wxGridCellFloatRenderer(int width = -1, int precision = -1);
224
225 // get/change formatting parameters
226 int GetWidth() const { return m_width; }
227 void SetWidth(int width) { m_width = width; m_format.clear(); }
228 int GetPrecision() const { return m_precision; }
229 void SetPrecision(int precision) { m_precision = precision; m_format.clear(); }
230
231 // draw the string right aligned with given width/precision
232 virtual void Draw(wxGrid& grid,
233 wxGridCellAttr& attr,
234 wxDC& dc,
235 const wxRect& rect,
236 int row, int col,
237 bool isSelected);
238
239 virtual wxSize GetBestSize(wxGrid& grid,
240 wxGridCellAttr& attr,
241 wxDC& dc,
242 int row, int col);
243
244 // parameters string format is "width[,precision]"
245 virtual void SetParameters(const wxString& params);
246
247 virtual wxGridCellRenderer *Clone() const;
248
249 protected:
250 wxString GetString(wxGrid& grid, int row, int col);
251
252 private:
253 // formatting parameters
254 int m_width,
255 m_precision;
256
257 wxString m_format;
258 };
259
260 // renderer for boolean fields
261 class WXDLLIMPEXP_ADV wxGridCellBoolRenderer : public wxGridCellRenderer
262 {
263 public:
264 // draw a check mark or nothing
265 virtual void Draw(wxGrid& grid,
266 wxGridCellAttr& attr,
267 wxDC& dc,
268 const wxRect& rect,
269 int row, int col,
270 bool isSelected);
271
272 // return the checkmark size
273 virtual wxSize GetBestSize(wxGrid& grid,
274 wxGridCellAttr& attr,
275 wxDC& dc,
276 int row, int col);
277
278 virtual wxGridCellRenderer *Clone() const
279 { return new wxGridCellBoolRenderer; }
280
281 private:
282 static wxSize ms_sizeCheckMark;
283 };
284
285 // ----------------------------------------------------------------------------
286 // wxGridCellEditor: This class is responsible for providing and manipulating
287 // the in-place edit controls for the grid. Instances of wxGridCellEditor
288 // (actually, instances of derived classes since it is an ABC) can be
289 // associated with the cell attributes for individual cells, rows, columns, or
290 // even for the entire grid.
291 // ----------------------------------------------------------------------------
292
293 class WXDLLIMPEXP_ADV wxGridCellEditor : public wxGridCellWorker
294 {
295 public:
296 wxGridCellEditor();
297
298 bool IsCreated() { return m_control != NULL; }
299 wxControl* GetControl() { return m_control; }
300 void SetControl(wxControl* control) { m_control = control; }
301
302 wxGridCellAttr* GetCellAttr() { return m_attr; }
303 void SetCellAttr(wxGridCellAttr* attr) { m_attr = attr; }
304
305 // Creates the actual edit control
306 virtual void Create(wxWindow* parent,
307 wxWindowID id,
308 wxEvtHandler* evtHandler) = 0;
309
310 // Size and position the edit control
311 virtual void SetSize(const wxRect& rect);
312
313 // Show or hide the edit control, use the specified attributes to set
314 // colours/fonts for it
315 virtual void Show(bool show, wxGridCellAttr *attr = (wxGridCellAttr *)NULL);
316
317 // Draws the part of the cell not occupied by the control: the base class
318 // version just fills it with background colour from the attribute
319 virtual void PaintBackground(const wxRect& rectCell, wxGridCellAttr *attr);
320
321 // Fetch the value from the table and prepare the edit control
322 // to begin editing. Set the focus to the edit control.
323 virtual void BeginEdit(int row, int col, wxGrid* grid) = 0;
324
325 // Complete the editing of the current cell. Returns true if the value has
326 // changed. If necessary, the control may be destroyed.
327 virtual bool EndEdit(int row, int col, wxGrid* grid) = 0;
328
329 // Reset the value in the control back to its starting value
330 virtual void Reset() = 0;
331
332 // return true to allow the given key to start editing: the base class
333 // version only checks that the event has no modifiers. The derived
334 // classes are supposed to do "if ( base::IsAcceptedKey() && ... )" in
335 // their IsAcceptedKey() implementation, although, of course, it is not a
336 // mandatory requirment.
337 //
338 // NB: if the key is F2 (special), editing will always start and this
339 // method will not be called at all (but StartingKey() will)
340 virtual bool IsAcceptedKey(wxKeyEvent& event);
341
342 // If the editor is enabled by pressing keys on the grid, this will be
343 // called to let the editor do something about that first key if desired
344 virtual void StartingKey(wxKeyEvent& event);
345
346 // if the editor is enabled by clicking on the cell, this method will be
347 // called
348 virtual void StartingClick();
349
350 // Some types of controls on some platforms may need some help
351 // with the Return key.
352 virtual void HandleReturn(wxKeyEvent& event);
353
354 // Final cleanup
355 virtual void Destroy();
356
357 // create a new object which is the copy of this one
358 virtual wxGridCellEditor *Clone() const = 0;
359
360 // DJC MAPTEK
361 // added GetValue so we can get the value which is in the control
362 virtual wxString GetValue() const = 0;
363
364 protected:
365 // the dtor is private because only DecRef() can delete us
366 virtual ~wxGridCellEditor();
367
368 // the control we show on screen
369 wxControl* m_control;
370
371 // a temporary pointer to the attribute being edited
372 wxGridCellAttr* m_attr;
373
374 // if we change the colours/font of the control from the default ones, we
375 // must restore the default later and we save them here between calls to
376 // Show(true) and Show(false)
377 wxColour m_colFgOld,
378 m_colBgOld;
379 wxFont m_fontOld;
380
381 // suppress the stupid gcc warning about the class having private dtor and
382 // no friends
383 friend class wxGridCellEditorDummyFriend;
384
385 DECLARE_NO_COPY_CLASS(wxGridCellEditor)
386 };
387
388 #if wxUSE_TEXTCTRL
389
390 // the editor for string/text data
391 class WXDLLIMPEXP_ADV wxGridCellTextEditor : public wxGridCellEditor
392 {
393 public:
394 wxGridCellTextEditor();
395
396 virtual void Create(wxWindow* parent,
397 wxWindowID id,
398 wxEvtHandler* evtHandler);
399 virtual void SetSize(const wxRect& rect);
400
401 virtual void PaintBackground(const wxRect& rectCell, wxGridCellAttr *attr);
402
403 virtual bool IsAcceptedKey(wxKeyEvent& event);
404 virtual void BeginEdit(int row, int col, wxGrid* grid);
405 virtual bool EndEdit(int row, int col, wxGrid* grid);
406
407 virtual void Reset();
408 virtual void StartingKey(wxKeyEvent& event);
409 virtual void HandleReturn(wxKeyEvent& event);
410
411 // parameters string format is "max_width"
412 virtual void SetParameters(const wxString& params);
413
414 virtual wxGridCellEditor *Clone() const
415 { return new wxGridCellTextEditor; }
416
417 // DJC MAPTEK
418 // added GetValue so we can get the value which is in the control
419 virtual wxString GetValue() const;
420 protected:
421 wxTextCtrl *Text() const { return (wxTextCtrl *)m_control; }
422
423 // parts of our virtual functions reused by the derived classes
424 void DoBeginEdit(const wxString& startValue);
425 void DoReset(const wxString& startValue);
426
427 private:
428 size_t m_maxChars; // max number of chars allowed
429 wxString m_startValue;
430
431 DECLARE_NO_COPY_CLASS(wxGridCellTextEditor)
432 };
433
434 // the editor for numeric (long) data
435 class WXDLLIMPEXP_ADV wxGridCellNumberEditor : public wxGridCellTextEditor
436 {
437 public:
438 // allows to specify the range - if min == max == -1, no range checking is
439 // done
440 wxGridCellNumberEditor(int min = -1, int max = -1);
441
442 virtual void Create(wxWindow* parent,
443 wxWindowID id,
444 wxEvtHandler* evtHandler);
445
446 virtual bool IsAcceptedKey(wxKeyEvent& event);
447 virtual void BeginEdit(int row, int col, wxGrid* grid);
448 virtual bool EndEdit(int row, int col, wxGrid* grid);
449
450 virtual void Reset();
451 virtual void StartingKey(wxKeyEvent& event);
452
453 // parameters string format is "min,max"
454 virtual void SetParameters(const wxString& params);
455
456 virtual wxGridCellEditor *Clone() const
457 { return new wxGridCellNumberEditor(m_min, m_max); }
458 // DJC MAPTEK
459 // added GetValue so we can get the value which is in the control
460 virtual wxString GetValue() const;
461
462 protected:
463 wxSpinCtrl *Spin() const { return (wxSpinCtrl *)m_control; }
464
465 // if HasRange(), we use wxSpinCtrl - otherwise wxTextCtrl
466 bool HasRange() const { return m_min != m_max; }
467
468 // string representation of m_valueOld
469 wxString GetString() const
470 { return wxString::Format(_T("%ld"), m_valueOld); }
471
472 private:
473 int m_min,
474 m_max;
475
476 long m_valueOld;
477
478 DECLARE_NO_COPY_CLASS(wxGridCellNumberEditor)
479 };
480
481 // the editor for floating point numbers (double) data
482 class WXDLLIMPEXP_ADV wxGridCellFloatEditor : public wxGridCellTextEditor
483 {
484 public:
485 wxGridCellFloatEditor(int width = -1, int precision = -1);
486
487 virtual void Create(wxWindow* parent,
488 wxWindowID id,
489 wxEvtHandler* evtHandler);
490
491 virtual bool IsAcceptedKey(wxKeyEvent& event);
492 virtual void BeginEdit(int row, int col, wxGrid* grid);
493 virtual bool EndEdit(int row, int col, wxGrid* grid);
494
495 virtual void Reset();
496 virtual void StartingKey(wxKeyEvent& event);
497
498 virtual wxGridCellEditor *Clone() const
499 { return new wxGridCellFloatEditor(m_width, m_precision); }
500
501 // parameters string format is "width,precision"
502 virtual void SetParameters(const wxString& params);
503
504 protected:
505 // string representation of m_valueOld
506 wxString GetString() const;
507
508 private:
509 int m_width,
510 m_precision;
511 double m_valueOld;
512
513 DECLARE_NO_COPY_CLASS(wxGridCellFloatEditor)
514 };
515
516 #endif // wxUSE_TEXTCTRL
517
518 #if wxUSE_CHECKBOX
519
520 // the editor for boolean data
521 class WXDLLIMPEXP_ADV wxGridCellBoolEditor : public wxGridCellEditor
522 {
523 public:
524 wxGridCellBoolEditor() { }
525
526 virtual void Create(wxWindow* parent,
527 wxWindowID id,
528 wxEvtHandler* evtHandler);
529
530 virtual void SetSize(const wxRect& rect);
531 virtual void Show(bool show, wxGridCellAttr *attr = (wxGridCellAttr *)NULL);
532
533 virtual bool IsAcceptedKey(wxKeyEvent& event);
534 virtual void BeginEdit(int row, int col, wxGrid* grid);
535 virtual bool EndEdit(int row, int col, wxGrid* grid);
536
537 virtual void Reset();
538 virtual void StartingClick();
539
540 virtual wxGridCellEditor *Clone() const
541 { return new wxGridCellBoolEditor; }
542 // DJC MAPTEK
543 // added GetValue so we can get the value which is in the control
544 virtual wxString GetValue() const;
545
546 protected:
547 wxCheckBox *CBox() const { return (wxCheckBox *)m_control; }
548
549 private:
550 bool m_startValue;
551
552 DECLARE_NO_COPY_CLASS(wxGridCellBoolEditor)
553 };
554
555 #endif // wxUSE_CHECKBOX
556
557 #if wxUSE_COMBOBOX
558
559 // the editor for string data allowing to choose from the list of strings
560 class WXDLLIMPEXP_ADV wxGridCellChoiceEditor : public wxGridCellEditor
561 {
562 public:
563 // if !allowOthers, user can't type a string not in choices array
564 wxGridCellChoiceEditor(size_t count = 0,
565 const wxString choices[] = NULL,
566 bool allowOthers = false);
567 wxGridCellChoiceEditor(const wxArrayString& choices,
568 bool allowOthers = false);
569
570 virtual void Create(wxWindow* parent,
571 wxWindowID id,
572 wxEvtHandler* evtHandler);
573
574 virtual void PaintBackground(const wxRect& rectCell, wxGridCellAttr *attr);
575
576 virtual void BeginEdit(int row, int col, wxGrid* grid);
577 virtual bool EndEdit(int row, int col, wxGrid* grid);
578
579 virtual void Reset();
580
581 // parameters string format is "item1[,item2[...,itemN]]"
582 virtual void SetParameters(const wxString& params);
583
584 virtual wxGridCellEditor *Clone() const;
585 // DJC MAPTEK
586 // added GetValue so we can get the value which is in the control
587 virtual wxString GetValue() const;
588
589 protected:
590 wxComboBox *Combo() const { return (wxComboBox *)m_control; }
591
592 // DJC - (MAPTEK) you at least need access to m_choices if you
593 // wish to override this class
594 protected:
595 wxString m_startValue;
596 wxArrayString m_choices;
597 bool m_allowOthers;
598
599 DECLARE_NO_COPY_CLASS(wxGridCellChoiceEditor)
600 };
601
602 #endif // wxUSE_COMBOBOX
603
604 // ----------------------------------------------------------------------------
605 // wxGridCellAttr: this class can be used to alter the cells appearance in
606 // the grid by changing their colour/font/... from default. An object of this
607 // class may be returned by wxGridTable::GetAttr().
608 // ----------------------------------------------------------------------------
609
610 class WXDLLIMPEXP_ADV wxGridCellAttr : public wxClientDataContainer
611 {
612 public:
613 enum wxAttrKind
614 {
615 Any,
616 Default,
617 Cell,
618 Row,
619 Col,
620 Merged
621 };
622
623 // ctors
624 wxGridCellAttr(wxGridCellAttr *attrDefault = NULL)
625 {
626 Init(attrDefault);
627
628 // MB: args used to be 0,0 here but wxALIGN_LEFT is 0
629 SetAlignment(-1, -1);
630 }
631
632 // VZ: considering the number of members wxGridCellAttr has now, this ctor
633 // seems to be pretty useless... may be we should just remove it?
634 wxGridCellAttr(const wxColour& colText,
635 const wxColour& colBack,
636 const wxFont& font,
637 int hAlign,
638 int vAlign)
639 : m_colText(colText), m_colBack(colBack), m_font(font)
640 {
641 Init();
642 SetAlignment(hAlign, vAlign);
643 }
644
645 // creates a new copy of this object
646 wxGridCellAttr *Clone() const;
647 void MergeWith(wxGridCellAttr *mergefrom);
648
649 // this class is ref counted: it is created with ref count of 1, so
650 // calling DecRef() once will delete it. Calling IncRef() allows to lock
651 // it until the matching DecRef() is called
652 void IncRef() { m_nRef++; }
653 void DecRef() { if ( !--m_nRef ) delete this; }
654
655 // setters
656 void SetTextColour(const wxColour& colText) { m_colText = colText; }
657 void SetBackgroundColour(const wxColour& colBack) { m_colBack = colBack; }
658 void SetFont(const wxFont& font) { m_font = font; }
659 void SetAlignment(int hAlign, int vAlign)
660 {
661 m_hAlign = hAlign;
662 m_vAlign = vAlign;
663 }
664 void SetSize(int num_rows, int num_cols);
665 void SetOverflow(bool allow = true)
666 { m_overflow = allow ? Overflow : SingleCell; }
667 void SetReadOnly(bool isReadOnly = true)
668 { m_isReadOnly = isReadOnly ? ReadOnly : ReadWrite; }
669
670 // takes ownership of the pointer
671 void SetRenderer(wxGridCellRenderer *renderer)
672 { wxSafeDecRef(m_renderer); m_renderer = renderer; }
673 void SetEditor(wxGridCellEditor* editor)
674 { wxSafeDecRef(m_editor); m_editor = editor; }
675
676 void SetKind(wxAttrKind kind) { m_attrkind = kind; }
677
678 // accessors
679 bool HasTextColour() const { return m_colText.Ok(); }
680 bool HasBackgroundColour() const { return m_colBack.Ok(); }
681 bool HasFont() const { return m_font.Ok(); }
682 bool HasAlignment() const { return (m_hAlign != -1 || m_vAlign != -1); }
683 bool HasRenderer() const { return m_renderer != NULL; }
684 bool HasEditor() const { return m_editor != NULL; }
685 bool HasReadWriteMode() const { return m_isReadOnly != Unset; }
686 bool HasOverflowMode() const { return m_overflow != UnsetOverflow; }
687
688 const wxColour& GetTextColour() const;
689 const wxColour& GetBackgroundColour() const;
690 const wxFont& GetFont() const;
691 void GetAlignment(int *hAlign, int *vAlign) const;
692 void GetSize(int *num_rows, int *num_cols) const;
693 bool GetOverflow() const
694 { return m_overflow != SingleCell; }
695 wxGridCellRenderer *GetRenderer(wxGrid* grid, int row, int col) const;
696 wxGridCellEditor *GetEditor(wxGrid* grid, int row, int col) const;
697
698 bool IsReadOnly() const { return m_isReadOnly == wxGridCellAttr::ReadOnly; }
699
700 wxAttrKind GetKind() { return m_attrkind; }
701
702 void SetDefAttr(wxGridCellAttr* defAttr) { m_defGridAttr = defAttr; }
703
704 private:
705 enum wxAttrReadMode
706 {
707 Unset = -1,
708 ReadWrite,
709 ReadOnly
710 };
711
712 enum wxAttrOverflowMode
713 {
714 UnsetOverflow = -1,
715 Overflow,
716 SingleCell
717 };
718
719 // the common part of all ctors
720 void Init(wxGridCellAttr *attrDefault = NULL);
721
722 // the dtor is private because only DecRef() can delete us
723 ~wxGridCellAttr()
724 {
725 wxSafeDecRef(m_renderer);
726 wxSafeDecRef(m_editor);
727 }
728
729 // the ref count - when it goes to 0, we die
730 size_t m_nRef;
731
732 wxColour m_colText,
733 m_colBack;
734 wxFont m_font;
735 int m_hAlign,
736 m_vAlign;
737 int m_sizeRows,
738 m_sizeCols;
739
740 wxAttrOverflowMode m_overflow;
741
742 wxGridCellRenderer* m_renderer;
743 wxGridCellEditor* m_editor;
744 wxGridCellAttr* m_defGridAttr;
745
746 wxAttrReadMode m_isReadOnly;
747
748 wxAttrKind m_attrkind;
749
750 // use Clone() instead
751 DECLARE_NO_COPY_CLASS(wxGridCellAttr)
752
753 // suppress the stupid gcc warning about the class having private dtor and
754 // no friends
755 friend class wxGridCellAttrDummyFriend;
756 };
757
758 // ----------------------------------------------------------------------------
759 // wxGridCellAttrProvider: class used by wxGridTableBase to retrieve/store the
760 // cell attributes.
761 // ----------------------------------------------------------------------------
762
763 // implementation note: we separate it from wxGridTableBase because we wish to
764 // avoid deriving a new table class if possible, and sometimes it will be
765 // enough to just derive another wxGridCellAttrProvider instead
766 //
767 // the default implementation is reasonably efficient for the generic case,
768 // but you might still wish to implement your own for some specific situations
769 // if you have performance problems with the stock one
770 class WXDLLIMPEXP_ADV wxGridCellAttrProvider : public wxClientDataContainer
771 {
772 public:
773 wxGridCellAttrProvider();
774 virtual ~wxGridCellAttrProvider();
775
776 // DecRef() must be called on the returned pointer
777 virtual wxGridCellAttr *GetAttr(int row, int col,
778 wxGridCellAttr::wxAttrKind kind ) const;
779
780 // all these functions take ownership of the pointer, don't call DecRef()
781 // on it
782 virtual void SetAttr(wxGridCellAttr *attr, int row, int col);
783 virtual void SetRowAttr(wxGridCellAttr *attr, int row);
784 virtual void SetColAttr(wxGridCellAttr *attr, int col);
785
786 // these functions must be called whenever some rows/cols are deleted
787 // because the internal data must be updated then
788 void UpdateAttrRows( size_t pos, int numRows );
789 void UpdateAttrCols( size_t pos, int numCols );
790
791 private:
792 void InitData();
793
794 wxGridCellAttrProviderData *m_data;
795
796 DECLARE_NO_COPY_CLASS(wxGridCellAttrProvider)
797 };
798
799 //////////////////////////////////////////////////////////////////////
800 //
801 // Grid table classes
802 //
803 //////////////////////////////////////////////////////////////////////
804
805
806 class WXDLLIMPEXP_ADV wxGridTableBase : public wxObject, public wxClientDataContainer
807 {
808 public:
809 wxGridTableBase();
810 virtual ~wxGridTableBase();
811
812 // You must override these functions in a derived table class
813 //
814 virtual int GetNumberRows() = 0;
815 virtual int GetNumberCols() = 0;
816 virtual bool IsEmptyCell( int row, int col ) = 0;
817 virtual wxString GetValue( int row, int col ) = 0;
818 virtual void SetValue( int row, int col, const wxString& value ) = 0;
819
820 // Data type determination and value access
821 virtual wxString GetTypeName( int row, int col );
822 virtual bool CanGetValueAs( int row, int col, const wxString& typeName );
823 virtual bool CanSetValueAs( int row, int col, const wxString& typeName );
824
825 virtual long GetValueAsLong( int row, int col );
826 virtual double GetValueAsDouble( int row, int col );
827 virtual bool GetValueAsBool( int row, int col );
828
829 virtual void SetValueAsLong( int row, int col, long value );
830 virtual void SetValueAsDouble( int row, int col, double value );
831 virtual void SetValueAsBool( int row, int col, bool value );
832
833 // For user defined types
834 virtual void* GetValueAsCustom( int row, int col, const wxString& typeName );
835 virtual void SetValueAsCustom( int row, int col, const wxString& typeName, void* value );
836
837
838 // Overriding these is optional
839 //
840 virtual void SetView( wxGrid *grid ) { m_view = grid; }
841 virtual wxGrid * GetView() const { return m_view; }
842
843 virtual void Clear() {}
844 virtual bool InsertRows( size_t pos = 0, size_t numRows = 1 );
845 virtual bool AppendRows( size_t numRows = 1 );
846 virtual bool DeleteRows( size_t pos = 0, size_t numRows = 1 );
847 virtual bool InsertCols( size_t pos = 0, size_t numCols = 1 );
848 virtual bool AppendCols( size_t numCols = 1 );
849 virtual bool DeleteCols( size_t pos = 0, size_t numCols = 1 );
850
851 virtual wxString GetRowLabelValue( int row );
852 virtual wxString GetColLabelValue( int col );
853 virtual void SetRowLabelValue( int WXUNUSED(row), const wxString& ) {}
854 virtual void SetColLabelValue( int WXUNUSED(col), const wxString& ) {}
855
856 // Attribute handling
857 //
858
859 // give us the attr provider to use - we take ownership of the pointer
860 void SetAttrProvider(wxGridCellAttrProvider *attrProvider);
861
862 // get the currently used attr provider (may be NULL)
863 wxGridCellAttrProvider *GetAttrProvider() const { return m_attrProvider; }
864
865 // Does this table allow attributes? Default implementation creates
866 // a wxGridCellAttrProvider if necessary.
867 virtual bool CanHaveAttributes();
868
869 // by default forwarded to wxGridCellAttrProvider if any. May be
870 // overridden to handle attributes directly in the table.
871 virtual wxGridCellAttr *GetAttr( int row, int col,
872 wxGridCellAttr::wxAttrKind kind );
873
874
875 // these functions take ownership of the pointer
876 virtual void SetAttr(wxGridCellAttr* attr, int row, int col);
877 virtual void SetRowAttr(wxGridCellAttr *attr, int row);
878 virtual void SetColAttr(wxGridCellAttr *attr, int col);
879
880 private:
881 wxGrid * m_view;
882 wxGridCellAttrProvider *m_attrProvider;
883
884 DECLARE_ABSTRACT_CLASS( wxGridTableBase );
885 DECLARE_NO_COPY_CLASS(wxGridTableBase)
886 };
887
888
889 // ----------------------------------------------------------------------------
890 // wxGridTableMessage
891 // ----------------------------------------------------------------------------
892
893 // IDs for messages sent from grid table to view
894 //
895 enum wxGridTableRequest
896 {
897 wxGRIDTABLE_REQUEST_VIEW_GET_VALUES = 2000,
898 wxGRIDTABLE_REQUEST_VIEW_SEND_VALUES,
899 wxGRIDTABLE_NOTIFY_ROWS_INSERTED,
900 wxGRIDTABLE_NOTIFY_ROWS_APPENDED,
901 wxGRIDTABLE_NOTIFY_ROWS_DELETED,
902 wxGRIDTABLE_NOTIFY_COLS_INSERTED,
903 wxGRIDTABLE_NOTIFY_COLS_APPENDED,
904 wxGRIDTABLE_NOTIFY_COLS_DELETED
905 };
906
907 class WXDLLIMPEXP_ADV wxGridTableMessage
908 {
909 public:
910 wxGridTableMessage();
911 wxGridTableMessage( wxGridTableBase *table, int id,
912 int comInt1 = -1,
913 int comInt2 = -1 );
914
915 void SetTableObject( wxGridTableBase *table ) { m_table = table; }
916 wxGridTableBase * GetTableObject() const { return m_table; }
917 void SetId( int id ) { m_id = id; }
918 int GetId() { return m_id; }
919 void SetCommandInt( int comInt1 ) { m_comInt1 = comInt1; }
920 int GetCommandInt() { return m_comInt1; }
921 void SetCommandInt2( int comInt2 ) { m_comInt2 = comInt2; }
922 int GetCommandInt2() { return m_comInt2; }
923
924 private:
925 wxGridTableBase *m_table;
926 int m_id;
927 int m_comInt1;
928 int m_comInt2;
929
930 DECLARE_NO_COPY_CLASS(wxGridTableMessage)
931 };
932
933
934
935 // ------ wxGridStringArray
936 // A 2-dimensional array of strings for data values
937 //
938
939 WX_DECLARE_OBJARRAY_WITH_DECL(wxArrayString, wxGridStringArray,
940 class WXDLLIMPEXP_ADV);
941
942
943
944 // ------ wxGridStringTable
945 //
946 // Simplest type of data table for a grid for small tables of strings
947 // that are stored in memory
948 //
949
950 class WXDLLIMPEXP_ADV wxGridStringTable : public wxGridTableBase
951 {
952 public:
953 wxGridStringTable();
954 wxGridStringTable( int numRows, int numCols );
955 virtual ~wxGridStringTable();
956
957 // these are pure virtual in wxGridTableBase
958 //
959 int GetNumberRows();
960 int GetNumberCols();
961 wxString GetValue( int row, int col );
962 void SetValue( int row, int col, const wxString& s );
963 bool IsEmptyCell( int row, int col );
964
965 // overridden functions from wxGridTableBase
966 //
967 void Clear();
968 bool InsertRows( size_t pos = 0, size_t numRows = 1 );
969 bool AppendRows( size_t numRows = 1 );
970 bool DeleteRows( size_t pos = 0, size_t numRows = 1 );
971 bool InsertCols( size_t pos = 0, size_t numCols = 1 );
972 bool AppendCols( size_t numCols = 1 );
973 bool DeleteCols( size_t pos = 0, size_t numCols = 1 );
974
975 void SetRowLabelValue( int row, const wxString& );
976 void SetColLabelValue( int col, const wxString& );
977 wxString GetRowLabelValue( int row );
978 wxString GetColLabelValue( int col );
979
980 private:
981 wxGridStringArray m_data;
982
983 // These only get used if you set your own labels, otherwise the
984 // GetRow/ColLabelValue functions return wxGridTableBase defaults
985 //
986 wxArrayString m_rowLabels;
987 wxArrayString m_colLabels;
988
989 DECLARE_DYNAMIC_CLASS_NO_COPY( wxGridStringTable )
990 };
991
992
993
994 // ============================================================================
995 // Grid view classes
996 // ============================================================================
997
998 // ----------------------------------------------------------------------------
999 // wxGridCellCoords: location of a cell in the grid
1000 // ----------------------------------------------------------------------------
1001
1002 class WXDLLIMPEXP_ADV wxGridCellCoords
1003 {
1004 public:
1005 wxGridCellCoords() { m_row = m_col = -1; }
1006 wxGridCellCoords( int r, int c ) { m_row = r; m_col = c; }
1007
1008 // default copy ctor is ok
1009
1010 int GetRow() const { return m_row; }
1011 void SetRow( int n ) { m_row = n; }
1012 int GetCol() const { return m_col; }
1013 void SetCol( int n ) { m_col = n; }
1014 void Set( int row, int col ) { m_row = row; m_col = col; }
1015
1016 wxGridCellCoords& operator=( const wxGridCellCoords& other )
1017 {
1018 if ( &other != this )
1019 {
1020 m_row=other.m_row;
1021 m_col=other.m_col;
1022 }
1023 return *this;
1024 }
1025
1026 bool operator==( const wxGridCellCoords& other ) const
1027 {
1028 return (m_row == other.m_row && m_col == other.m_col);
1029 }
1030
1031 bool operator!=( const wxGridCellCoords& other ) const
1032 {
1033 return (m_row != other.m_row || m_col != other.m_col);
1034 }
1035
1036 bool operator!() const
1037 {
1038 return (m_row == -1 && m_col == -1 );
1039 }
1040
1041 private:
1042 int m_row;
1043 int m_col;
1044 };
1045
1046
1047 // For comparisons...
1048 //
1049 extern WXDLLIMPEXP_ADV wxGridCellCoords wxGridNoCellCoords;
1050 extern WXDLLIMPEXP_ADV wxRect wxGridNoCellRect;
1051
1052 // An array of cell coords...
1053 //
1054 WX_DECLARE_OBJARRAY_WITH_DECL(wxGridCellCoords, wxGridCellCoordsArray,
1055 class WXDLLIMPEXP_ADV);
1056
1057 // ----------------------------------------------------------------------------
1058 // wxGrid
1059 // ----------------------------------------------------------------------------
1060
1061 class WXDLLIMPEXP_ADV wxGrid : public wxScrolledWindow
1062 {
1063 public:
1064 wxGrid() ;
1065
1066 wxGrid( wxWindow *parent,
1067 wxWindowID id,
1068 const wxPoint& pos = wxDefaultPosition,
1069 const wxSize& size = wxDefaultSize,
1070 long style = wxWANTS_CHARS,
1071 const wxString& name = wxPanelNameStr );
1072
1073 bool Create( wxWindow *parent,
1074 wxWindowID id,
1075 const wxPoint& pos = wxDefaultPosition,
1076 const wxSize& size = wxDefaultSize,
1077 long style = wxWANTS_CHARS,
1078 const wxString& name = wxPanelNameStr );
1079
1080 virtual ~wxGrid();
1081
1082 enum wxGridSelectionModes {wxGridSelectCells,
1083 wxGridSelectRows,
1084 wxGridSelectColumns};
1085
1086 bool CreateGrid( int numRows, int numCols,
1087 wxGrid::wxGridSelectionModes selmode =
1088 wxGrid::wxGridSelectCells );
1089
1090 void SetSelectionMode(wxGrid::wxGridSelectionModes selmode);
1091 wxGrid::wxGridSelectionModes GetSelectionMode() const;
1092
1093 // ------ grid dimensions
1094 //
1095 int GetNumberRows() { return m_numRows; }
1096 int GetNumberCols() { return m_numCols; }
1097
1098
1099 // ------ display update functions
1100 //
1101 wxArrayInt CalcRowLabelsExposed( const wxRegion& reg );
1102
1103 wxArrayInt CalcColLabelsExposed( const wxRegion& reg );
1104 wxGridCellCoordsArray CalcCellsExposed( const wxRegion& reg );
1105
1106
1107 // ------ event handlers
1108 //
1109 void ProcessRowLabelMouseEvent( wxMouseEvent& event );
1110 void ProcessColLabelMouseEvent( wxMouseEvent& event );
1111 void ProcessCornerLabelMouseEvent( wxMouseEvent& event );
1112 void ProcessGridCellMouseEvent( wxMouseEvent& event );
1113 bool ProcessTableMessage( wxGridTableMessage& );
1114
1115 void DoEndDragResizeRow();
1116 void DoEndDragResizeCol();
1117
1118 wxGridTableBase * GetTable() const { return m_table; }
1119 bool SetTable( wxGridTableBase *table, bool takeOwnership = false,
1120 wxGrid::wxGridSelectionModes selmode =
1121 wxGrid::wxGridSelectCells );
1122
1123 void ClearGrid();
1124 bool InsertRows( int pos = 0, int numRows = 1, bool updateLabels = true );
1125 bool AppendRows( int numRows = 1, bool updateLabels = true );
1126 bool DeleteRows( int pos = 0, int numRows = 1, bool updateLabels = true );
1127 bool InsertCols( int pos = 0, int numCols = 1, bool updateLabels = true );
1128 bool AppendCols( int numCols = 1, bool updateLabels = true );
1129 bool DeleteCols( int pos = 0, int numCols = 1, bool updateLabels = true );
1130
1131 void DrawGridCellArea( wxDC& dc , const wxGridCellCoordsArray& cells );
1132 void DrawGridSpace( wxDC& dc );
1133 void DrawCellBorder( wxDC& dc, const wxGridCellCoords& );
1134 void DrawAllGridLines( wxDC& dc, const wxRegion & reg );
1135 void DrawCell( wxDC& dc, const wxGridCellCoords& );
1136 void DrawHighlight(wxDC& dc, const wxGridCellCoordsArray& cells);
1137
1138 // this function is called when the current cell highlight must be redrawn
1139 // and may be overridden by the user
1140 virtual void DrawCellHighlight( wxDC& dc, const wxGridCellAttr *attr );
1141
1142 void DrawRowLabels( wxDC& dc, const wxArrayInt& rows );
1143 void DrawRowLabel( wxDC& dc, int row );
1144
1145 void DrawColLabels( wxDC& dc, const wxArrayInt& cols );
1146 void DrawColLabel( wxDC& dc, int col );
1147
1148
1149 // ------ Cell text drawing functions
1150 //
1151 void DrawTextRectangle( wxDC& dc, const wxString&, const wxRect&,
1152 int horizontalAlignment = wxALIGN_LEFT,
1153 int verticalAlignment = wxALIGN_TOP,
1154 int textOrientation = wxHORIZONTAL );
1155
1156 void DrawTextRectangle( wxDC& dc, const wxArrayString& lines, const wxRect&,
1157 int horizontalAlignment = wxALIGN_LEFT,
1158 int verticalAlignment = wxALIGN_TOP,
1159 int textOrientation = wxHORIZONTAL );
1160
1161
1162 // Split a string containing newline chararcters into an array of
1163 // strings and return the number of lines
1164 //
1165 void StringToLines( const wxString& value, wxArrayString& lines );
1166
1167 void GetTextBoxSize( wxDC& dc,
1168 const wxArrayString& lines,
1169 long *width, long *height );
1170
1171
1172 // ------
1173 // Code that does a lot of grid modification can be enclosed
1174 // between BeginBatch() and EndBatch() calls to avoid screen
1175 // flicker
1176 //
1177 void BeginBatch() { m_batchCount++; }
1178 void EndBatch();
1179
1180 int GetBatchCount() { return m_batchCount; }
1181
1182 virtual void Refresh(bool eraseb = true,
1183 const wxRect* rect = (const wxRect *) NULL);
1184
1185 // Use this, rather than wxWindow::Refresh(), to force an
1186 // immediate repainting of the grid. Has no effect if you are
1187 // already inside a BeginBatch / EndBatch block.
1188 //
1189 // This function is necessary because wxGrid has a minimal OnPaint()
1190 // handler to reduce screen flicker.
1191 //
1192 void ForceRefresh();
1193
1194
1195 // ------ edit control functions
1196 //
1197 bool IsEditable() const { return m_editable; }
1198 void EnableEditing( bool edit );
1199
1200 void EnableCellEditControl( bool enable = true );
1201 void DisableCellEditControl() { EnableCellEditControl(false); }
1202 bool CanEnableCellControl() const;
1203 bool IsCellEditControlEnabled() const;
1204 bool IsCellEditControlShown() const;
1205
1206 bool IsCurrentCellReadOnly() const;
1207
1208 void ShowCellEditControl();
1209 void HideCellEditControl();
1210 void SaveEditControlValue();
1211
1212
1213 // ------ grid location functions
1214 // Note that all of these functions work with the logical coordinates of
1215 // grid cells and labels so you will need to convert from device
1216 // coordinates for mouse events etc.
1217 //
1218 void XYToCell( int x, int y, wxGridCellCoords& );
1219 int YToRow( int y );
1220 int XToCol( int x );
1221
1222 int YToEdgeOfRow( int y );
1223 int XToEdgeOfCol( int x );
1224
1225 wxRect CellToRect( int row, int col );
1226 wxRect CellToRect( const wxGridCellCoords& coords )
1227 { return CellToRect( coords.GetRow(), coords.GetCol() ); }
1228
1229 int GetGridCursorRow() { return m_currentCellCoords.GetRow(); }
1230 int GetGridCursorCol() { return m_currentCellCoords.GetCol(); }
1231
1232 // check to see if a cell is either wholly visible (the default arg) or
1233 // at least partially visible in the grid window
1234 //
1235 bool IsVisible( int row, int col, bool wholeCellVisible = true );
1236 bool IsVisible( const wxGridCellCoords& coords, bool wholeCellVisible = true )
1237 { return IsVisible( coords.GetRow(), coords.GetCol(), wholeCellVisible ); }
1238 void MakeCellVisible( int row, int col );
1239 void MakeCellVisible( const wxGridCellCoords& coords )
1240 { MakeCellVisible( coords.GetRow(), coords.GetCol() ); }
1241
1242
1243 // ------ grid cursor movement functions
1244 //
1245 void SetGridCursor( int row, int col )
1246 { SetCurrentCell( wxGridCellCoords(row, col) ); }
1247
1248 bool MoveCursorUp( bool expandSelection );
1249 bool MoveCursorDown( bool expandSelection );
1250 bool MoveCursorLeft( bool expandSelection );
1251 bool MoveCursorRight( bool expandSelection );
1252 bool MovePageDown();
1253 bool MovePageUp();
1254 bool MoveCursorUpBlock( bool expandSelection );
1255 bool MoveCursorDownBlock( bool expandSelection );
1256 bool MoveCursorLeftBlock( bool expandSelection );
1257 bool MoveCursorRightBlock( bool expandSelection );
1258
1259
1260 // ------ label and gridline formatting
1261 //
1262 int GetDefaultRowLabelSize() { return WXGRID_DEFAULT_ROW_LABEL_WIDTH; }
1263 int GetRowLabelSize() { return m_rowLabelWidth; }
1264 int GetDefaultColLabelSize() { return WXGRID_DEFAULT_COL_LABEL_HEIGHT; }
1265 int GetColLabelSize() { return m_colLabelHeight; }
1266 wxColour GetLabelBackgroundColour() { return m_labelBackgroundColour; }
1267 wxColour GetLabelTextColour() { return m_labelTextColour; }
1268 wxFont GetLabelFont() { return m_labelFont; }
1269 void GetRowLabelAlignment( int *horiz, int *vert );
1270 void GetColLabelAlignment( int *horiz, int *vert );
1271 int GetColLabelTextOrientation();
1272 wxString GetRowLabelValue( int row );
1273 wxString GetColLabelValue( int col );
1274 wxColour GetGridLineColour() { return m_gridLineColour; }
1275 wxColour GetCellHighlightColour() { return m_cellHighlightColour; }
1276 int GetCellHighlightPenWidth() { return m_cellHighlightPenWidth; }
1277 int GetCellHighlightROPenWidth() { return m_cellHighlightROPenWidth; }
1278
1279 void SetRowLabelSize( int width );
1280 void SetColLabelSize( int height );
1281 void SetLabelBackgroundColour( const wxColour& );
1282 void SetLabelTextColour( const wxColour& );
1283 void SetLabelFont( const wxFont& );
1284 void SetRowLabelAlignment( int horiz, int vert );
1285 void SetColLabelAlignment( int horiz, int vert );
1286 void SetColLabelTextOrientation( int textOrientation );
1287 void SetRowLabelValue( int row, const wxString& );
1288 void SetColLabelValue( int col, const wxString& );
1289 void SetGridLineColour( const wxColour& );
1290 void SetCellHighlightColour( const wxColour& );
1291 void SetCellHighlightPenWidth(int width);
1292 void SetCellHighlightROPenWidth(int width);
1293
1294 void EnableDragRowSize( bool enable = true );
1295 void DisableDragRowSize() { EnableDragRowSize( false ); }
1296 bool CanDragRowSize() { return m_canDragRowSize; }
1297 void EnableDragColSize( bool enable = true );
1298 void DisableDragColSize() { EnableDragColSize( false ); }
1299 bool CanDragColSize() { return m_canDragColSize; }
1300 void EnableDragGridSize(bool enable = true);
1301 void DisableDragGridSize() { EnableDragGridSize(false); }
1302 bool CanDragGridSize() { return m_canDragGridSize; }
1303
1304 void EnableDragCell( bool enable = true );
1305 void DisableDragCell() { EnableDragCell( false ); }
1306 bool CanDragCell() { return m_canDragCell; }
1307
1308 // this sets the specified attribute for this cell or in this row/col
1309 void SetAttr(int row, int col, wxGridCellAttr *attr);
1310 void SetRowAttr(int row, wxGridCellAttr *attr);
1311 void SetColAttr(int col, wxGridCellAttr *attr);
1312
1313 // returns the attribute we may modify in place: a new one if this cell
1314 // doesn't have any yet or the existing one if it does
1315 //
1316 // DecRef() must be called on the returned pointer, as usual
1317 wxGridCellAttr *GetOrCreateCellAttr(int row, int col) const;
1318
1319
1320 // shortcuts for setting the column parameters
1321
1322 // set the format for the data in the column: default is string
1323 void SetColFormatBool(int col);
1324 void SetColFormatNumber(int col);
1325 void SetColFormatFloat(int col, int width = -1, int precision = -1);
1326 void SetColFormatCustom(int col, const wxString& typeName);
1327
1328 void EnableGridLines( bool enable = true );
1329 bool GridLinesEnabled() { return m_gridLinesEnabled; }
1330
1331 // ------ row and col formatting
1332 //
1333 int GetDefaultRowSize();
1334 int GetRowSize( int row );
1335 int GetDefaultColSize();
1336 int GetColSize( int col );
1337 wxColour GetDefaultCellBackgroundColour();
1338 wxColour GetCellBackgroundColour( int row, int col );
1339 wxColour GetDefaultCellTextColour();
1340 wxColour GetCellTextColour( int row, int col );
1341 wxFont GetDefaultCellFont();
1342 wxFont GetCellFont( int row, int col );
1343 void GetDefaultCellAlignment( int *horiz, int *vert );
1344 void GetCellAlignment( int row, int col, int *horiz, int *vert );
1345 bool GetDefaultCellOverflow();
1346 bool GetCellOverflow( int row, int col );
1347 void GetCellSize( int row, int col, int *num_rows, int *num_cols );
1348
1349 void SetDefaultRowSize( int height, bool resizeExistingRows = false );
1350 void SetRowSize( int row, int height );
1351 void SetDefaultColSize( int width, bool resizeExistingCols = false );
1352
1353 void SetColSize( int col, int width );
1354
1355 // automatically size the column or row to fit to its contents, if
1356 // setAsMin is true, this optimal width will also be set as minimal width
1357 // for this column
1358 void AutoSizeColumn( int col, bool setAsMin = true )
1359 { AutoSizeColOrRow(col, setAsMin, true); }
1360 void AutoSizeRow( int row, bool setAsMin = true )
1361 { AutoSizeColOrRow(row, setAsMin, false); }
1362
1363 // auto size all columns (very ineffective for big grids!)
1364 void AutoSizeColumns( bool setAsMin = true )
1365 { (void)SetOrCalcColumnSizes(false, setAsMin); }
1366
1367 void AutoSizeRows( bool setAsMin = true )
1368 { (void)SetOrCalcRowSizes(false, setAsMin); }
1369
1370 // auto size the grid, that is make the columns/rows of the "right" size
1371 // and also set the grid size to just fit its contents
1372 void AutoSize();
1373
1374 // autosize row height depending on label text
1375 void AutoSizeRowLabelSize( int row );
1376
1377 // autosize column width depending on label text
1378 void AutoSizeColLabelSize( int col );
1379
1380 // column won't be resized to be lesser width - this must be called during
1381 // the grid creation because it won't resize the column if it's already
1382 // narrower than the minimal width
1383 void SetColMinimalWidth( int col, int width );
1384 void SetRowMinimalHeight( int row, int width );
1385
1386 /* These members can be used to query and modify the minimal
1387 * acceptable size of grid rows and columns. Call this function in
1388 * your code which creates the grid if you want to display cells
1389 * with a size smaller than the default acceptable minimum size.
1390 * Like the members SetColMinimalWidth and SetRowMinimalWidth,
1391 * the existing rows or columns will not be checked/resized.
1392 */
1393 void SetColMinimalAcceptableWidth( int width );
1394 void SetRowMinimalAcceptableHeight( int width );
1395 int GetColMinimalAcceptableWidth() const;
1396 int GetRowMinimalAcceptableHeight() const;
1397
1398 void SetDefaultCellBackgroundColour( const wxColour& );
1399 void SetCellBackgroundColour( int row, int col, const wxColour& );
1400 void SetDefaultCellTextColour( const wxColour& );
1401
1402 void SetCellTextColour( int row, int col, const wxColour& );
1403 void SetDefaultCellFont( const wxFont& );
1404 void SetCellFont( int row, int col, const wxFont& );
1405 void SetDefaultCellAlignment( int horiz, int vert );
1406 void SetCellAlignment( int row, int col, int horiz, int vert );
1407 void SetDefaultCellOverflow( bool allow );
1408 void SetCellOverflow( int row, int col, bool allow );
1409 void SetCellSize( int row, int col, int num_rows, int num_cols );
1410
1411 // takes ownership of the pointer
1412 void SetDefaultRenderer(wxGridCellRenderer *renderer);
1413 void SetCellRenderer(int row, int col, wxGridCellRenderer *renderer);
1414 wxGridCellRenderer *GetDefaultRenderer() const;
1415 wxGridCellRenderer* GetCellRenderer(int row, int col);
1416
1417 // takes ownership of the pointer
1418 void SetDefaultEditor(wxGridCellEditor *editor);
1419 void SetCellEditor(int row, int col, wxGridCellEditor *editor);
1420 wxGridCellEditor *GetDefaultEditor() const;
1421 wxGridCellEditor* GetCellEditor(int row, int col);
1422
1423
1424
1425 // ------ cell value accessors
1426 //
1427 wxString GetCellValue( int row, int col )
1428 {
1429 if ( m_table )
1430 {
1431 return m_table->GetValue( row, col );
1432 }
1433 else
1434 {
1435 return wxEmptyString;
1436 }
1437 }
1438
1439 wxString GetCellValue( const wxGridCellCoords& coords )
1440 { return GetCellValue( coords.GetRow(), coords.GetCol() ); }
1441
1442 void SetCellValue( int row, int col, const wxString& s );
1443 void SetCellValue( const wxGridCellCoords& coords, const wxString& s )
1444 { SetCellValue( coords.GetRow(), coords.GetCol(), s ); }
1445
1446 // returns true if the cell can't be edited
1447 bool IsReadOnly(int row, int col) const;
1448
1449 // make the cell editable/readonly
1450 void SetReadOnly(int row, int col, bool isReadOnly = true);
1451
1452 // ------ select blocks of cells
1453 //
1454 void SelectRow( int row, bool addToSelected = false );
1455 void SelectCol( int col, bool addToSelected = false );
1456
1457 void SelectBlock( int topRow, int leftCol, int bottomRow, int rightCol,
1458 bool addToSelected = false );
1459
1460 void SelectBlock( const wxGridCellCoords& topLeft,
1461 const wxGridCellCoords& bottomRight,
1462 bool addToSelected = false )
1463 { SelectBlock( topLeft.GetRow(), topLeft.GetCol(),
1464 bottomRight.GetRow(), bottomRight.GetCol(),
1465 addToSelected ); }
1466
1467 void SelectAll();
1468
1469 bool IsSelection();
1470
1471 // ------ deselect blocks or cells
1472 //
1473 void DeselectRow( int row );
1474 void DeselectCol( int col );
1475 void DeselectCell( int row, int col );
1476
1477 void ClearSelection();
1478
1479 bool IsInSelection( int row, int col ) const;
1480
1481 bool IsInSelection( const wxGridCellCoords& coords ) const
1482 { return IsInSelection( coords.GetRow(), coords.GetCol() ); }
1483
1484 wxGridCellCoordsArray GetSelectedCells() const;
1485 wxGridCellCoordsArray GetSelectionBlockTopLeft() const;
1486 wxGridCellCoordsArray GetSelectionBlockBottomRight() const;
1487 wxArrayInt GetSelectedRows() const;
1488 wxArrayInt GetSelectedCols() const;
1489
1490 // This function returns the rectangle that encloses the block of cells
1491 // limited by TopLeft and BottomRight cell in device coords and clipped
1492 // to the client size of the grid window.
1493 //
1494 wxRect BlockToDeviceRect( const wxGridCellCoords & topLeft,
1495 const wxGridCellCoords & bottomRight );
1496
1497 // Access or update the selection fore/back colours
1498 wxColour GetSelectionBackground() const
1499 { return m_selectionBackground; }
1500 wxColour GetSelectionForeground() const
1501 { return m_selectionForeground; }
1502
1503 void SetSelectionBackground(const wxColour& c) { m_selectionBackground = c; }
1504 void SetSelectionForeground(const wxColour& c) { m_selectionForeground = c; }
1505
1506
1507 // Methods for a registry for mapping data types to Renderers/Editors
1508 void RegisterDataType(const wxString& typeName,
1509 wxGridCellRenderer* renderer,
1510 wxGridCellEditor* editor);
1511 // DJC MAPTEK
1512 virtual wxGridCellEditor* GetDefaultEditorForCell(int row, int col) const;
1513 wxGridCellEditor* GetDefaultEditorForCell(const wxGridCellCoords& c) const
1514 { return GetDefaultEditorForCell(c.GetRow(), c.GetCol()); }
1515 virtual wxGridCellRenderer* GetDefaultRendererForCell(int row, int col) const;
1516 virtual wxGridCellEditor* GetDefaultEditorForType(const wxString& typeName) const;
1517 virtual wxGridCellRenderer* GetDefaultRendererForType(const wxString& typeName) const;
1518
1519 // grid may occupy more space than needed for its rows/columns, this
1520 // function allows to set how big this extra space is
1521 void SetMargins(int extraWidth, int extraHeight)
1522 {
1523 m_extraWidth = extraWidth;
1524 m_extraHeight = extraHeight;
1525
1526 CalcDimensions();
1527 }
1528
1529 // Accessors for component windows
1530 wxWindow* GetGridWindow() { return (wxWindow*)m_gridWin; }
1531 wxWindow* GetGridRowLabelWindow() { return (wxWindow*)m_rowLabelWin; }
1532 wxWindow* GetGridColLabelWindow() { return (wxWindow*)m_colLabelWin; }
1533 wxWindow* GetGridCornerLabelWindow() { return (wxWindow*)m_cornerLabelWin; }
1534
1535
1536
1537 // ------ For compatibility with previous wxGrid only...
1538 //
1539 // ************************************************
1540 // ** Don't use these in new code because they **
1541 // ** are liable to disappear in a future **
1542 // ** revision **
1543 // ************************************************
1544 //
1545
1546 wxGrid( wxWindow *parent,
1547 int x, int y, int w = wxDefaultCoord, int h = wxDefaultCoord,
1548 long style = wxWANTS_CHARS,
1549 const wxString& name = wxPanelNameStr )
1550 : wxScrolledWindow( parent, wxID_ANY, wxPoint(x,y), wxSize(w,h),
1551 (style|wxWANTS_CHARS), name )
1552 {
1553 Create();
1554 }
1555
1556 void SetCellValue( const wxString& val, int row, int col )
1557 { SetCellValue( row, col, val ); }
1558
1559 void UpdateDimensions()
1560 { CalcDimensions(); }
1561
1562 int GetRows() { return GetNumberRows(); }
1563 int GetCols() { return GetNumberCols(); }
1564 int GetCursorRow() { return GetGridCursorRow(); }
1565 int GetCursorColumn() { return GetGridCursorCol(); }
1566
1567 int GetScrollPosX() { return 0; }
1568 int GetScrollPosY() { return 0; }
1569
1570 void SetScrollX( int WXUNUSED(x) ) { }
1571 void SetScrollY( int WXUNUSED(y) ) { }
1572
1573 void SetColumnWidth( int col, int width )
1574 { SetColSize( col, width ); }
1575
1576 int GetColumnWidth( int col )
1577 { return GetColSize( col ); }
1578
1579 void SetRowHeight( int row, int height )
1580 { SetRowSize( row, height ); }
1581
1582 // GetRowHeight() is below
1583
1584 int GetViewHeight() // returned num whole rows visible
1585 { return 0; }
1586
1587 int GetViewWidth() // returned num whole cols visible
1588 { return 0; }
1589
1590 void SetLabelSize( int orientation, int sz )
1591 {
1592 if ( orientation == wxHORIZONTAL )
1593 SetColLabelSize( sz );
1594 else
1595 SetRowLabelSize( sz );
1596 }
1597
1598 int GetLabelSize( int orientation )
1599 {
1600 if ( orientation == wxHORIZONTAL )
1601 return GetColLabelSize();
1602 else
1603 return GetRowLabelSize();
1604 }
1605
1606 void SetLabelAlignment( int orientation, int align )
1607 {
1608 if ( orientation == wxHORIZONTAL )
1609 SetColLabelAlignment( align, -1 );
1610 else
1611 SetRowLabelAlignment( align, -1 );
1612 }
1613
1614 int GetLabelAlignment( int orientation, int WXUNUSED(align) )
1615 {
1616 int h, v;
1617 if ( orientation == wxHORIZONTAL )
1618 {
1619 GetColLabelAlignment( &h, &v );
1620 return h;
1621 }
1622 else
1623 {
1624 GetRowLabelAlignment( &h, &v );
1625 return h;
1626 }
1627 }
1628
1629 void SetLabelValue( int orientation, const wxString& val, int pos )
1630 {
1631 if ( orientation == wxHORIZONTAL )
1632 SetColLabelValue( pos, val );
1633 else
1634 SetRowLabelValue( pos, val );
1635 }
1636
1637 wxString GetLabelValue( int orientation, int pos)
1638 {
1639 if ( orientation == wxHORIZONTAL )
1640 return GetColLabelValue( pos );
1641 else
1642 return GetRowLabelValue( pos );
1643 }
1644
1645 wxFont GetCellTextFont() const
1646 { return m_defaultCellAttr->GetFont(); }
1647
1648 wxFont GetCellTextFont(int WXUNUSED(row), int WXUNUSED(col)) const
1649 { return m_defaultCellAttr->GetFont(); }
1650
1651 void SetCellTextFont(const wxFont& fnt)
1652 { SetDefaultCellFont( fnt ); }
1653
1654 void SetCellTextFont(const wxFont& fnt, int row, int col)
1655 { SetCellFont( row, col, fnt ); }
1656
1657 void SetCellTextColour(const wxColour& val, int row, int col)
1658 { SetCellTextColour( row, col, val ); }
1659
1660 void SetCellTextColour(const wxColour& col)
1661 { SetDefaultCellTextColour( col ); }
1662
1663 void SetCellBackgroundColour(const wxColour& col)
1664 { SetDefaultCellBackgroundColour( col ); }
1665
1666 void SetCellBackgroundColour(const wxColour& colour, int row, int col)
1667 { SetCellBackgroundColour( row, col, colour ); }
1668
1669 bool GetEditable() { return IsEditable(); }
1670 void SetEditable( bool edit = true ) { EnableEditing( edit ); }
1671 bool GetEditInPlace() { return IsCellEditControlEnabled(); }
1672
1673 void SetEditInPlace(bool WXUNUSED(edit) = true) { }
1674
1675 void SetCellAlignment( int align, int row, int col)
1676 { SetCellAlignment(row, col, align, wxALIGN_CENTER); }
1677 void SetCellAlignment( int WXUNUSED(align) ) {}
1678 void SetCellBitmap(wxBitmap *WXUNUSED(bitmap), int WXUNUSED(row), int WXUNUSED(col))
1679 { }
1680 void SetDividerPen(const wxPen& WXUNUSED(pen)) { }
1681 wxPen& GetDividerPen() const;
1682 void OnActivate(bool WXUNUSED(active)) {}
1683
1684 // ******** End of compatibility functions **********
1685
1686
1687
1688 // ------ control IDs
1689 enum { wxGRID_CELLCTRL = 2000,
1690 wxGRID_TOPCTRL };
1691
1692 // ------ control types
1693 enum { wxGRID_TEXTCTRL = 2100,
1694 wxGRID_CHECKBOX,
1695 wxGRID_CHOICE,
1696 wxGRID_COMBOBOX };
1697
1698 // overridden wxWindow methods
1699 virtual void Fit();
1700
1701 protected:
1702 virtual wxSize DoGetBestSize() const;
1703
1704 bool m_created;
1705
1706 wxGridWindow *m_gridWin;
1707 wxGridRowLabelWindow *m_rowLabelWin;
1708 wxGridColLabelWindow *m_colLabelWin;
1709 wxGridCornerLabelWindow *m_cornerLabelWin;
1710
1711 wxGridTableBase *m_table;
1712 bool m_ownTable;
1713
1714 int m_numRows;
1715 int m_numCols;
1716
1717 wxGridCellCoords m_currentCellCoords;
1718
1719 wxGridCellCoords m_selectingTopLeft;
1720 wxGridCellCoords m_selectingBottomRight;
1721 wxGridCellCoords m_selectingKeyboard;
1722 wxGridSelection *m_selection;
1723 wxColour m_selectionBackground;
1724 wxColour m_selectionForeground;
1725
1726 // NB: *never* access m_row/col arrays directly because they are created
1727 // on demand, *always* use accessor functions instead!
1728
1729 // init the m_rowHeights/Bottoms arrays with default values
1730 void InitRowHeights();
1731
1732 int m_defaultRowHeight;
1733 int m_minAcceptableRowHeight;
1734 wxArrayInt m_rowHeights;
1735 wxArrayInt m_rowBottoms;
1736
1737 // init the m_colWidths/Rights arrays
1738 void InitColWidths();
1739
1740 int m_defaultColWidth;
1741 int m_minAcceptableColWidth;
1742 wxArrayInt m_colWidths;
1743 wxArrayInt m_colRights;
1744
1745 // get the col/row coords
1746 int GetColWidth(int col) const;
1747 int GetColLeft(int col) const;
1748 int GetColRight(int col) const;
1749
1750 // this function must be public for compatibility...
1751 public:
1752 int GetRowHeight(int row) const;
1753 protected:
1754
1755 int GetRowTop(int row) const;
1756 int GetRowBottom(int row) const;
1757
1758 int m_rowLabelWidth;
1759 int m_colLabelHeight;
1760
1761 // the size of the margin left to the right and bottom of the cell area
1762 int m_extraWidth,
1763 m_extraHeight;
1764
1765 wxColour m_labelBackgroundColour;
1766 wxColour m_labelTextColour;
1767 wxFont m_labelFont;
1768
1769 int m_rowLabelHorizAlign;
1770 int m_rowLabelVertAlign;
1771 int m_colLabelHorizAlign;
1772 int m_colLabelVertAlign;
1773 int m_colLabelTextOrientation;
1774
1775 bool m_defaultRowLabelValues;
1776 bool m_defaultColLabelValues;
1777
1778 wxColour m_gridLineColour;
1779 bool m_gridLinesEnabled;
1780 wxColour m_cellHighlightColour;
1781 int m_cellHighlightPenWidth;
1782 int m_cellHighlightROPenWidth;
1783
1784
1785 // common part of AutoSizeColumn/Row() and GetBestSize()
1786 int SetOrCalcColumnSizes(bool calcOnly, bool setAsMin = true);
1787 int SetOrCalcRowSizes(bool calcOnly, bool setAsMin = true);
1788
1789 // common part of AutoSizeColumn/Row()
1790 void AutoSizeColOrRow(int n, bool setAsMin, bool column /* or row? */);
1791
1792 // if a column has a minimal width, it will be the value for it in this
1793 // hash table
1794 wxLongToLongHashMap m_colMinWidths,
1795 m_rowMinHeights;
1796
1797 // get the minimal width of the given column/row
1798 int GetColMinimalWidth(int col) const;
1799 int GetRowMinimalHeight(int col) const;
1800
1801 // do we have some place to store attributes in?
1802 bool CanHaveAttributes();
1803
1804 // cell attribute cache (currently we only cache 1, may be will do
1805 // more/better later)
1806 struct CachedAttr
1807 {
1808 int row, col;
1809 wxGridCellAttr *attr;
1810 } m_attrCache;
1811
1812 // invalidates the attribute cache
1813 void ClearAttrCache();
1814
1815 // adds an attribute to cache
1816 void CacheAttr(int row, int col, wxGridCellAttr *attr) const;
1817
1818 // looks for an attr in cache, returns true if found
1819 bool LookupAttr(int row, int col, wxGridCellAttr **attr) const;
1820
1821 // looks for the attr in cache, if not found asks the table and caches the
1822 // result
1823 wxGridCellAttr *GetCellAttr(int row, int col) const;
1824 wxGridCellAttr *GetCellAttr(const wxGridCellCoords& coords )
1825 { return GetCellAttr( coords.GetRow(), coords.GetCol() ); }
1826
1827 // the default cell attr object for cells that don't have their own
1828 wxGridCellAttr* m_defaultCellAttr;
1829
1830
1831 bool m_inOnKeyDown;
1832 int m_batchCount;
1833
1834
1835 wxGridTypeRegistry* m_typeRegistry;
1836
1837 enum CursorMode
1838 {
1839 WXGRID_CURSOR_SELECT_CELL,
1840 WXGRID_CURSOR_RESIZE_ROW,
1841 WXGRID_CURSOR_RESIZE_COL,
1842 WXGRID_CURSOR_SELECT_ROW,
1843 WXGRID_CURSOR_SELECT_COL
1844 };
1845
1846 // this method not only sets m_cursorMode but also sets the correct cursor
1847 // for the given mode and, if captureMouse is not false releases the mouse
1848 // if it was captured and captures it if it must be captured
1849 //
1850 // for this to work, you should always use it and not set m_cursorMode
1851 // directly!
1852 void ChangeCursorMode(CursorMode mode,
1853 wxWindow *win = (wxWindow *)NULL,
1854 bool captureMouse = true);
1855
1856 wxWindow *m_winCapture; // the window which captured the mouse
1857 CursorMode m_cursorMode;
1858
1859 bool m_canDragRowSize;
1860 bool m_canDragColSize;
1861 bool m_canDragGridSize;
1862 bool m_canDragCell;
1863 int m_dragLastPos;
1864 int m_dragRowOrCol;
1865 bool m_isDragging;
1866 wxPoint m_startDragPos;
1867
1868 bool m_waitForSlowClick;
1869
1870 wxGridCellCoords m_selectionStart;
1871
1872 wxCursor m_rowResizeCursor;
1873 wxCursor m_colResizeCursor;
1874
1875 bool m_editable; // applies to whole grid
1876 bool m_cellEditCtrlEnabled; // is in-place edit currently shown?
1877
1878
1879 void Create();
1880 void Init();
1881 void CalcDimensions();
1882 void CalcWindowSizes();
1883 bool Redimension( wxGridTableMessage& );
1884
1885
1886 int SendEvent( const wxEventType, int row, int col, wxMouseEvent& );
1887 int SendEvent( const wxEventType, int row, int col );
1888 int SendEvent( const wxEventType type)
1889 {
1890 return SendEvent(type,
1891 m_currentCellCoords.GetRow(),
1892 m_currentCellCoords.GetCol());
1893 }
1894
1895 void OnPaint( wxPaintEvent& );
1896 void OnSize( wxSizeEvent& );
1897 void OnKeyDown( wxKeyEvent& );
1898 void OnKeyUp( wxKeyEvent& );
1899 void OnEraseBackground( wxEraseEvent& );
1900
1901
1902 void SetCurrentCell( const wxGridCellCoords& coords );
1903 void SetCurrentCell( int row, int col )
1904 { SetCurrentCell( wxGridCellCoords(row, col) ); }
1905
1906 void HighlightBlock( int topRow, int leftCol, int bottomRow, int rightCol );
1907
1908 void HighlightBlock( const wxGridCellCoords& topLeft,
1909 const wxGridCellCoords& bottomRight )
1910 { HighlightBlock( topLeft.GetRow(), topLeft.GetCol(),
1911 bottomRight.GetRow(), bottomRight.GetCol() ); }
1912
1913 // ------ functions to get/send data (see also public functions)
1914 //
1915 bool GetModelValues();
1916 bool SetModelValues();
1917
1918 friend class WXDLLIMPEXP_ADV wxGridSelection;
1919
1920 DECLARE_DYNAMIC_CLASS( wxGrid )
1921 DECLARE_EVENT_TABLE()
1922 DECLARE_NO_COPY_CLASS(wxGrid)
1923 };
1924
1925
1926 // ----------------------------------------------------------------------------
1927 // Grid event class and event types
1928 // ----------------------------------------------------------------------------
1929
1930 class WXDLLIMPEXP_ADV wxGridEvent : public wxNotifyEvent
1931 {
1932 public:
1933 wxGridEvent()
1934 : wxNotifyEvent(), m_row(-1), m_col(-1), m_x(-1), m_y(-1),
1935 m_selecting(0), m_control(0), m_meta(0), m_shift(0), m_alt(0)
1936 {
1937 }
1938
1939 wxGridEvent(int id, wxEventType type, wxObject* obj,
1940 int row=-1, int col=-1, int x=-1, int y=-1, bool sel = true,
1941 bool control = false, bool shift = false, bool alt = false, bool meta = false);
1942
1943 virtual int GetRow() { return m_row; }
1944 virtual int GetCol() { return m_col; }
1945 wxPoint GetPosition() { return wxPoint( m_x, m_y ); }
1946 bool Selecting() { return m_selecting; }
1947 bool ControlDown() { return m_control; }
1948 bool MetaDown() { return m_meta; }
1949 bool ShiftDown() { return m_shift; }
1950 bool AltDown() { return m_alt; }
1951
1952 protected:
1953 int m_row;
1954 int m_col;
1955 int m_x;
1956 int m_y;
1957 bool m_selecting;
1958 bool m_control;
1959 bool m_meta;
1960 bool m_shift;
1961 bool m_alt;
1962
1963 DECLARE_DYNAMIC_CLASS_NO_COPY(wxGridEvent)
1964 };
1965
1966 class WXDLLIMPEXP_ADV wxGridSizeEvent : public wxNotifyEvent
1967 {
1968 public:
1969 wxGridSizeEvent()
1970 : wxNotifyEvent(), m_rowOrCol(-1), m_x(-1), m_y(-1),
1971 m_control(0), m_meta(0), m_shift(0), m_alt(0)
1972 {
1973 }
1974
1975 wxGridSizeEvent(int id, wxEventType type, wxObject* obj,
1976 int rowOrCol=-1, int x=-1, int y=-1,
1977 bool control = false, bool shift = false, bool alt = false, bool meta = false);
1978
1979 int GetRowOrCol() { return m_rowOrCol; }
1980 wxPoint GetPosition() { return wxPoint( m_x, m_y ); }
1981 bool ControlDown() { return m_control; }
1982 bool MetaDown() { return m_meta; }
1983 bool ShiftDown() { return m_shift; }
1984 bool AltDown() { return m_alt; }
1985
1986 protected:
1987 int m_rowOrCol;
1988 int m_x;
1989 int m_y;
1990 bool m_control;
1991 bool m_meta;
1992 bool m_shift;
1993 bool m_alt;
1994
1995 DECLARE_DYNAMIC_CLASS_NO_COPY(wxGridSizeEvent)
1996 };
1997
1998
1999 class WXDLLIMPEXP_ADV wxGridRangeSelectEvent : public wxNotifyEvent
2000 {
2001 public:
2002 wxGridRangeSelectEvent()
2003 : wxNotifyEvent()
2004 {
2005 m_topLeft = wxGridNoCellCoords;
2006 m_bottomRight = wxGridNoCellCoords;
2007 m_selecting = false;
2008 m_control = false;
2009 m_meta = false;
2010 m_shift = false;
2011 m_alt = false;
2012 }
2013
2014 wxGridRangeSelectEvent(int id, wxEventType type, wxObject* obj,
2015 const wxGridCellCoords& topLeft,
2016 const wxGridCellCoords& bottomRight,
2017 bool sel = true,
2018 bool control = false, bool shift = false,
2019 bool alt = false, bool meta = false);
2020
2021 wxGridCellCoords GetTopLeftCoords() { return m_topLeft; }
2022 wxGridCellCoords GetBottomRightCoords() { return m_bottomRight; }
2023 int GetTopRow() { return m_topLeft.GetRow(); }
2024 int GetBottomRow() { return m_bottomRight.GetRow(); }
2025 int GetLeftCol() { return m_topLeft.GetCol(); }
2026 int GetRightCol() { return m_bottomRight.GetCol(); }
2027 bool Selecting() { return m_selecting; }
2028 bool ControlDown() { return m_control; }
2029 bool MetaDown() { return m_meta; }
2030 bool ShiftDown() { return m_shift; }
2031 bool AltDown() { return m_alt; }
2032
2033 protected:
2034 wxGridCellCoords m_topLeft;
2035 wxGridCellCoords m_bottomRight;
2036 bool m_selecting;
2037 bool m_control;
2038 bool m_meta;
2039 bool m_shift;
2040 bool m_alt;
2041
2042 DECLARE_DYNAMIC_CLASS_NO_COPY(wxGridRangeSelectEvent)
2043 };
2044
2045
2046 class WXDLLIMPEXP_ADV wxGridEditorCreatedEvent : public wxCommandEvent {
2047 public:
2048 wxGridEditorCreatedEvent()
2049 : wxCommandEvent()
2050 {
2051 m_row = 0;
2052 m_col = 0;
2053 m_ctrl = NULL;
2054 }
2055
2056 wxGridEditorCreatedEvent(int id, wxEventType type, wxObject* obj,
2057 int row, int col, wxControl* ctrl);
2058
2059 int GetRow() { return m_row; }
2060 int GetCol() { return m_col; }
2061 wxControl* GetControl() { return m_ctrl; }
2062 void SetRow(int row) { m_row = row; }
2063 void SetCol(int col) { m_col = col; }
2064 void SetControl(wxControl* ctrl) { m_ctrl = ctrl; }
2065
2066 private:
2067 int m_row;
2068 int m_col;
2069 wxControl* m_ctrl;
2070
2071 DECLARE_DYNAMIC_CLASS(wxGridEditorCreatedEvent)
2072 DECLARE_NO_COPY_CLASS(wxGridEditorCreatedEvent)
2073 };
2074
2075
2076 BEGIN_DECLARE_EVENT_TYPES()
2077 DECLARE_EXPORTED_EVENT_TYPE(WXDLLIMPEXP_ADV, wxEVT_GRID_CELL_LEFT_CLICK, 1580)
2078 DECLARE_EXPORTED_EVENT_TYPE(WXDLLIMPEXP_ADV, wxEVT_GRID_CELL_RIGHT_CLICK, 1581)
2079 DECLARE_EXPORTED_EVENT_TYPE(WXDLLIMPEXP_ADV, wxEVT_GRID_CELL_LEFT_DCLICK, 1582)
2080 DECLARE_EXPORTED_EVENT_TYPE(WXDLLIMPEXP_ADV, wxEVT_GRID_CELL_RIGHT_DCLICK, 1583)
2081 DECLARE_EXPORTED_EVENT_TYPE(WXDLLIMPEXP_ADV, wxEVT_GRID_LABEL_LEFT_CLICK, 1584)
2082 DECLARE_EXPORTED_EVENT_TYPE(WXDLLIMPEXP_ADV, wxEVT_GRID_LABEL_RIGHT_CLICK, 1585)
2083 DECLARE_EXPORTED_EVENT_TYPE(WXDLLIMPEXP_ADV, wxEVT_GRID_LABEL_LEFT_DCLICK, 1586)
2084 DECLARE_EXPORTED_EVENT_TYPE(WXDLLIMPEXP_ADV, wxEVT_GRID_LABEL_RIGHT_DCLICK, 1587)
2085 DECLARE_EXPORTED_EVENT_TYPE(WXDLLIMPEXP_ADV, wxEVT_GRID_ROW_SIZE, 1588)
2086 DECLARE_EXPORTED_EVENT_TYPE(WXDLLIMPEXP_ADV, wxEVT_GRID_COL_SIZE, 1589)
2087 DECLARE_EXPORTED_EVENT_TYPE(WXDLLIMPEXP_ADV, wxEVT_GRID_RANGE_SELECT, 1590)
2088 DECLARE_EXPORTED_EVENT_TYPE(WXDLLIMPEXP_ADV, wxEVT_GRID_CELL_CHANGE, 1591)
2089 DECLARE_EXPORTED_EVENT_TYPE(WXDLLIMPEXP_ADV, wxEVT_GRID_SELECT_CELL, 1592)
2090 DECLARE_EXPORTED_EVENT_TYPE(WXDLLIMPEXP_ADV, wxEVT_GRID_EDITOR_SHOWN, 1593)
2091 DECLARE_EXPORTED_EVENT_TYPE(WXDLLIMPEXP_ADV, wxEVT_GRID_EDITOR_HIDDEN, 1594)
2092 DECLARE_EXPORTED_EVENT_TYPE(WXDLLIMPEXP_ADV, wxEVT_GRID_EDITOR_CREATED, 1595)
2093 DECLARE_EXPORTED_EVENT_TYPE(WXDLLIMPEXP_ADV, wxEVT_GRID_CELL_BEGIN_DRAG, 1596)
2094 END_DECLARE_EVENT_TYPES()
2095
2096
2097 typedef void (wxEvtHandler::*wxGridEventFunction)(wxGridEvent&);
2098 typedef void (wxEvtHandler::*wxGridSizeEventFunction)(wxGridSizeEvent&);
2099 typedef void (wxEvtHandler::*wxGridRangeSelectEventFunction)(wxGridRangeSelectEvent&);
2100 typedef void (wxEvtHandler::*wxGridEditorCreatedEventFunction)(wxGridEditorCreatedEvent&);
2101
2102 #define EVT_GRID_CELL_LEFT_CLICK(fn) DECLARE_EVENT_TABLE_ENTRY( wxEVT_GRID_CELL_LEFT_CLICK, wxID_ANY, wxID_ANY, (wxObjectEventFunction) (wxEventFunction) wxStaticCastEvent( wxGridEventFunction, &fn ), NULL ),
2103 #define EVT_GRID_CELL_RIGHT_CLICK(fn) DECLARE_EVENT_TABLE_ENTRY( wxEVT_GRID_CELL_RIGHT_CLICK, wxID_ANY, wxID_ANY, (wxObjectEventFunction) (wxEventFunction) wxStaticCastEvent( wxGridEventFunction, &fn ), NULL ),
2104 #define EVT_GRID_CELL_LEFT_DCLICK(fn) DECLARE_EVENT_TABLE_ENTRY( wxEVT_GRID_CELL_LEFT_DCLICK, wxID_ANY, wxID_ANY, (wxObjectEventFunction) (wxEventFunction) wxStaticCastEvent( wxGridEventFunction, &fn ), NULL ),
2105 #define EVT_GRID_CELL_RIGHT_DCLICK(fn) DECLARE_EVENT_TABLE_ENTRY( wxEVT_GRID_CELL_RIGHT_DCLICK, wxID_ANY, wxID_ANY, (wxObjectEventFunction) (wxEventFunction) wxStaticCastEvent( wxGridEventFunction, &fn ), NULL ),
2106 #define EVT_GRID_LABEL_LEFT_CLICK(fn) DECLARE_EVENT_TABLE_ENTRY( wxEVT_GRID_LABEL_LEFT_CLICK, wxID_ANY, wxID_ANY, (wxObjectEventFunction) (wxEventFunction) wxStaticCastEvent( wxGridEventFunction, &fn ), NULL ),
2107 #define EVT_GRID_LABEL_RIGHT_CLICK(fn) DECLARE_EVENT_TABLE_ENTRY( wxEVT_GRID_LABEL_RIGHT_CLICK, wxID_ANY, wxID_ANY, (wxObjectEventFunction) (wxEventFunction) wxStaticCastEvent( wxGridEventFunction, &fn ), NULL ),
2108 #define EVT_GRID_LABEL_LEFT_DCLICK(fn) DECLARE_EVENT_TABLE_ENTRY( wxEVT_GRID_LABEL_LEFT_DCLICK, wxID_ANY, wxID_ANY, (wxObjectEventFunction) (wxEventFunction) wxStaticCastEvent( wxGridEventFunction, &fn ), NULL ),
2109 #define EVT_GRID_LABEL_RIGHT_DCLICK(fn) DECLARE_EVENT_TABLE_ENTRY( wxEVT_GRID_LABEL_RIGHT_DCLICK, wxID_ANY, wxID_ANY, (wxObjectEventFunction) (wxEventFunction) wxStaticCastEvent( wxGridEventFunction, &fn ), NULL ),
2110 #define EVT_GRID_ROW_SIZE(fn) DECLARE_EVENT_TABLE_ENTRY( wxEVT_GRID_ROW_SIZE, wxID_ANY, wxID_ANY, (wxObjectEventFunction) (wxEventFunction) wxStaticCastEvent( wxGridSizeEventFunction, &fn ), NULL ),
2111 #define EVT_GRID_COL_SIZE(fn) DECLARE_EVENT_TABLE_ENTRY( wxEVT_GRID_COL_SIZE, wxID_ANY, wxID_ANY, (wxObjectEventFunction) (wxEventFunction) wxStaticCastEvent( wxGridSizeEventFunction, &fn ), NULL ),
2112 #define EVT_GRID_RANGE_SELECT(fn) DECLARE_EVENT_TABLE_ENTRY( wxEVT_GRID_RANGE_SELECT, wxID_ANY, wxID_ANY, (wxObjectEventFunction) (wxEventFunction) wxStaticCastEvent( wxGridRangeSelectEventFunction, &fn ), NULL ),
2113 #define EVT_GRID_CELL_CHANGE(fn) DECLARE_EVENT_TABLE_ENTRY( wxEVT_GRID_CELL_CHANGE, wxID_ANY, wxID_ANY, (wxObjectEventFunction) (wxEventFunction) wxStaticCastEvent( wxGridEventFunction, &fn ), NULL ),
2114 #define EVT_GRID_SELECT_CELL(fn) DECLARE_EVENT_TABLE_ENTRY( wxEVT_GRID_SELECT_CELL, wxID_ANY, wxID_ANY, (wxObjectEventFunction) (wxEventFunction) wxStaticCastEvent( wxGridEventFunction, &fn ), NULL ),
2115 #define EVT_GRID_EDITOR_SHOWN(fn) DECLARE_EVENT_TABLE_ENTRY( wxEVT_GRID_EDITOR_SHOWN, wxID_ANY, wxID_ANY, (wxObjectEventFunction) (wxEventFunction) wxStaticCastEvent( wxGridEventFunction, &fn ), NULL ),
2116 #define EVT_GRID_EDITOR_HIDDEN(fn) DECLARE_EVENT_TABLE_ENTRY( wxEVT_GRID_EDITOR_HIDDEN, wxID_ANY, wxID_ANY, (wxObjectEventFunction) (wxEventFunction) wxStaticCastEvent( wxGridEventFunction, &fn ), NULL ),
2117 #define EVT_GRID_EDITOR_CREATED(fn) DECLARE_EVENT_TABLE_ENTRY( wxEVT_GRID_EDITOR_CREATED, wxID_ANY, wxID_ANY, (wxObjectEventFunction) (wxEventFunction) wxStaticCastEvent( wxGridEditorCreatedEventFunction, &fn ), NULL ),
2118 #define EVT_GRID_CELL_BEGIN_DRAG(fn) DECLARE_EVENT_TABLE_ENTRY( wxEVT_GRID_CELL_BEGIN_DRAG, wxID_ANY, wxID_ANY, (wxObjectEventFunction) (wxEventFunction) wxStaticCastEvent( wxGridEventFunction, &fn ), NULL ),
2119
2120 // The same as above but with the ability to specify an identifier
2121 #define EVT_GRID_CMD_CELL_LEFT_CLICK(id, fn) DECLARE_EVENT_TABLE_ENTRY( wxEVT_GRID_CELL_LEFT_CLICK, id, wxID_ANY, (wxObjectEventFunction) (wxEventFunction) wxStaticCastEvent( wxGridEventFunction, &fn ), NULL ),
2122 #define EVT_GRID_CMD_CELL_RIGHT_CLICK(id, fn) DECLARE_EVENT_TABLE_ENTRY( wxEVT_GRID_CELL_RIGHT_CLICK, id, wxID_ANY, (wxObjectEventFunction) (wxEventFunction) wxStaticCastEvent( wxGridEventFunction, &fn ), NULL ),
2123 #define EVT_GRID_CMD_CELL_LEFT_DCLICK(id, fn) DECLARE_EVENT_TABLE_ENTRY( wxEVT_GRID_CELL_LEFT_DCLICK, id, wxID_ANY, (wxObjectEventFunction) (wxEventFunction) wxStaticCastEvent( wxGridEventFunction, &fn ), NULL ),
2124 #define EVT_GRID_CMD_CELL_RIGHT_DCLICK(id, fn) DECLARE_EVENT_TABLE_ENTRY( wxEVT_GRID_CELL_RIGHT_DCLICK, id, wxID_ANY, (wxObjectEventFunction) (wxEventFunction) wxStaticCastEvent( wxGridEventFunction, &fn ), NULL ),
2125 #define EVT_GRID_CMD_LABEL_LEFT_CLICK(id, fn) DECLARE_EVENT_TABLE_ENTRY( wxEVT_GRID_LABEL_LEFT_CLICK, id, wxID_ANY, (wxObjectEventFunction) (wxEventFunction) wxStaticCastEvent( wxGridEventFunction, &fn ), NULL ),
2126 #define EVT_GRID_CMD_LABEL_RIGHT_CLICK(id, fn) DECLARE_EVENT_TABLE_ENTRY( wxEVT_GRID_LABEL_RIGHT_CLICK, id, wxID_ANY, (wxObjectEventFunction) (wxEventFunction) wxStaticCastEvent( wxGridEventFunction, &fn ), NULL ),
2127 #define EVT_GRID_CMD_LABEL_LEFT_DCLICK(id, fn) DECLARE_EVENT_TABLE_ENTRY( wxEVT_GRID_LABEL_LEFT_DCLICK, id, wxID_ANY, (wxObjectEventFunction) (wxEventFunction) wxStaticCastEvent( wxGridEventFunction, &fn ), NULL ),
2128 #define EVT_GRID_CMD_LABEL_RIGHT_DCLICK(id, fn) DECLARE_EVENT_TABLE_ENTRY( wxEVT_GRID_LABEL_RIGHT_DCLICK, id, wxID_ANY, (wxObjectEventFunction) (wxEventFunction) wxStaticCastEvent( wxGridEventFunction, &fn ), NULL ),
2129 #define EVT_GRID_CMD_ROW_SIZE(id, fn) DECLARE_EVENT_TABLE_ENTRY( wxEVT_GRID_ROW_SIZE, id, wxID_ANY, (wxObjectEventFunction) (wxEventFunction) wxStaticCastEvent( wxGridSizeEventFunction, &fn ), NULL ),
2130 #define EVT_GRID_CMD_COL_SIZE(id, fn) DECLARE_EVENT_TABLE_ENTRY( wxEVT_GRID_COL_SIZE, id, wxID_ANY, (wxObjectEventFunction) (wxEventFunction) wxStaticCastEvent( wxGridSizeEventFunction, &fn ), NULL ),
2131 #define EVT_GRID_CMD_RANGE_SELECT(id, fn) DECLARE_EVENT_TABLE_ENTRY( wxEVT_GRID_RANGE_SELECT, id, wxID_ANY, (wxObjectEventFunction) (wxEventFunction) wxStaticCastEvent( wxGridRangeSelectEventFunction, &fn ), NULL ),
2132 #define EVT_GRID_CMD_CELL_CHANGE(id, fn) DECLARE_EVENT_TABLE_ENTRY( wxEVT_GRID_CELL_CHANGE, id, wxID_ANY, (wxObjectEventFunction) (wxEventFunction) wxStaticCastEvent( wxGridEventFunction, &fn ), NULL ),
2133 #define EVT_GRID_CMD_SELECT_CELL(id, fn) DECLARE_EVENT_TABLE_ENTRY( wxEVT_GRID_SELECT_CELL, id, wxID_ANY, (wxObjectEventFunction) (wxEventFunction) wxStaticCastEvent( wxGridEventFunction, &fn ), NULL ),
2134 #define EVT_GRID_CMD_EDITOR_SHOWN(id, fn) DECLARE_EVENT_TABLE_ENTRY( wxEVT_GRID_EDITOR_SHOWN, id, wxID_ANY, (wxObjectEventFunction) (wxEventFunction) wxStaticCastEvent( wxGridEventFunction, &fn ), NULL ),
2135 #define EVT_GRID_CMD_EDITOR_HIDDEN(id, fn) DECLARE_EVENT_TABLE_ENTRY( wxEVT_GRID_EDITOR_HIDDEN, id, wxID_ANY, (wxObjectEventFunction) (wxEventFunction) wxStaticCastEvent( wxGridEventFunction, &fn ), NULL ),
2136 #define EVT_GRID_CMD_EDITOR_CREATED(id, fn) DECLARE_EVENT_TABLE_ENTRY( wxEVT_GRID_EDITOR_CREATED, id, wxID_ANY, (wxObjectEventFunction) (wxEventFunction) wxStaticCastEvent( wxGridEditorCreatedEventFunction, &fn ), NULL ),
2137 #define EVT_GRID_CMD_CELL_BEGIN_DRAG(id, fn) DECLARE_EVENT_TABLE_ENTRY( wxEVT_GRID_CELL_BEGIN_DRAG, id, wxID_ANY, (wxObjectEventFunction) (wxEventFunction) wxStaticCastEvent( wxGridEventFunction, &fn ), NULL ),
2138
2139 #if 0 // TODO: implement these ? others ?
2140
2141 extern const int wxEVT_GRID_CREATE_CELL;
2142 extern const int wxEVT_GRID_CHANGE_LABELS;
2143 extern const int wxEVT_GRID_CHANGE_SEL_LABEL;
2144
2145 #define EVT_GRID_CREATE_CELL(fn) DECLARE_EVENT_TABLE_ENTRY( wxEVT_GRID_CREATE_CELL, wxID_ANY, wxID_ANY, (wxObjectEventFunction) (wxEventFunction) wxStaticCastEvent( wxGridEventFunction, &fn ), NULL ),
2146 #define EVT_GRID_CHANGE_LABELS(fn) DECLARE_EVENT_TABLE_ENTRY( wxEVT_GRID_CHANGE_LABELS, wxID_ANY, wxID_ANY, (wxObjectEventFunction) (wxEventFunction) wxStaticCastEvent( wxGridEventFunction, &fn ), NULL ),
2147 #define EVT_GRID_CHANGE_SEL_LABEL(fn) DECLARE_EVENT_TABLE_ENTRY( wxEVT_GRID_CHANGE_SEL_LABEL, wxID_ANY, wxID_ANY, (wxObjectEventFunction) (wxEventFunction) wxStaticCastEvent( wxGridEventFunction, &fn ), NULL ),
2148
2149 #endif
2150
2151 #endif // ifndef wxUSE_GRID
2152