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: Santiago Palacios
8 // Copyright: (c) Michael Bedward
9 // Licence: wxWindows licence
10 /////////////////////////////////////////////////////////////////////////////
12 #ifndef _WX_GENERIC_GRID_H_
13 #define _WX_GENERIC_GRID_H_
19 #include "wx/scrolwin.h"
21 // ----------------------------------------------------------------------------
23 // ----------------------------------------------------------------------------
25 extern WXDLLIMPEXP_DATA_ADV(const char) wxGridNameStr
[];
27 // Default parameters for wxGrid
29 #define WXGRID_DEFAULT_NUMBER_ROWS 10
30 #define WXGRID_DEFAULT_NUMBER_COLS 10
31 #if defined(__WXMSW__) || defined(__WXGTK20__)
32 #define WXGRID_DEFAULT_ROW_HEIGHT 25
34 #define WXGRID_DEFAULT_ROW_HEIGHT 30
36 #define WXGRID_DEFAULT_COL_WIDTH 80
37 #define WXGRID_DEFAULT_COL_LABEL_HEIGHT 32
38 #define WXGRID_DEFAULT_ROW_LABEL_WIDTH 82
39 #define WXGRID_LABEL_EDGE_ZONE 2
40 #define WXGRID_MIN_ROW_HEIGHT 15
41 #define WXGRID_MIN_COL_WIDTH 15
42 #define WXGRID_DEFAULT_SCROLLBAR_WIDTH 16
44 // type names for grid table values
45 #define wxGRID_VALUE_STRING _T("string")
46 #define wxGRID_VALUE_BOOL _T("bool")
47 #define wxGRID_VALUE_NUMBER _T("long")
48 #define wxGRID_VALUE_FLOAT _T("double")
49 #define wxGRID_VALUE_CHOICE _T("choice")
51 #define wxGRID_VALUE_TEXT wxGRID_VALUE_STRING
52 #define wxGRID_VALUE_LONG wxGRID_VALUE_NUMBER
54 // magic constant which tells (to some functions) to automatically calculate
55 // the appropriate size
56 #define wxGRID_AUTOSIZE (-1)
58 // many wxGrid methods work either with columns or rows, this enum is used for
59 // the parameter indicating which one should it be
66 // ----------------------------------------------------------------------------
67 // forward declarations
68 // ----------------------------------------------------------------------------
70 class WXDLLIMPEXP_FWD_ADV wxGrid
;
71 class WXDLLIMPEXP_FWD_ADV wxGridCellAttr
;
72 class WXDLLIMPEXP_FWD_ADV wxGridCellAttrProviderData
;
73 class WXDLLIMPEXP_FWD_ADV wxGridColLabelWindow
;
74 class WXDLLIMPEXP_FWD_ADV wxGridCornerLabelWindow
;
75 class WXDLLIMPEXP_FWD_ADV wxGridRowLabelWindow
;
76 class WXDLLIMPEXP_FWD_ADV wxGridWindow
;
77 class WXDLLIMPEXP_FWD_ADV wxGridTypeRegistry
;
78 class WXDLLIMPEXP_FWD_ADV wxGridSelection
;
80 class WXDLLIMPEXP_FWD_CORE wxCheckBox
;
81 class WXDLLIMPEXP_FWD_CORE wxComboBox
;
82 class WXDLLIMPEXP_FWD_CORE wxTextCtrl
;
84 class WXDLLIMPEXP_FWD_CORE wxSpinCtrl
;
87 class wxGridOperations
;
88 class wxGridRowOperations
;
89 class wxGridColumnOperations
;
90 class wxGridDirectionOperations
;
92 // ----------------------------------------------------------------------------
94 // ----------------------------------------------------------------------------
96 #define wxSafeIncRef(p) if ( p ) (p)->IncRef()
97 #define wxSafeDecRef(p) if ( p ) (p)->DecRef()
99 // ----------------------------------------------------------------------------
100 // wxGridCellWorker: common base class for wxGridCellRenderer and
103 // NB: this is more an implementation convenience than a design issue, so this
104 // class is not documented and is not public at all
105 // ----------------------------------------------------------------------------
107 class WXDLLIMPEXP_ADV wxGridCellWorker
: public wxClientDataContainer
110 wxGridCellWorker() { m_nRef
= 1; }
112 // this class is ref counted: it is created with ref count of 1, so
113 // calling DecRef() once will delete it. Calling IncRef() allows to lock
114 // it until the matching DecRef() is called
115 void IncRef() { m_nRef
++; }
116 void DecRef() { if ( --m_nRef
== 0 ) delete this; }
118 // interpret renderer parameters: arbitrary string whose interpretatin is
119 // left to the derived classes
120 virtual void SetParameters(const wxString
& params
);
123 // virtual dtor for any base class - private because only DecRef() can
125 virtual ~wxGridCellWorker();
130 // suppress the stupid gcc warning about the class having private dtor and
132 friend class wxGridCellWorkerDummyFriend
;
135 // ----------------------------------------------------------------------------
136 // wxGridCellRenderer: this class is responsible for actually drawing the cell
137 // in the grid. You may pass it to the wxGridCellAttr (below) to change the
138 // format of one given cell or to wxGrid::SetDefaultRenderer() to change the
139 // view of all cells. This is an ABC, you will normally use one of the
140 // predefined derived classes or derive your own class from it.
141 // ----------------------------------------------------------------------------
143 class WXDLLIMPEXP_ADV wxGridCellRenderer
: public wxGridCellWorker
146 // draw the given cell on the provided DC inside the given rectangle
147 // using the style specified by the attribute and the default or selected
148 // state corresponding to the isSelected value.
150 // this pure virtual function has a default implementation which will
151 // prepare the DC using the given attribute: it will draw the rectangle
152 // with the bg colour from attr and set the text colour and font
153 virtual void Draw(wxGrid
& grid
,
154 wxGridCellAttr
& attr
,
158 bool isSelected
) = 0;
160 // get the preferred size of the cell for its contents
161 virtual wxSize
GetBestSize(wxGrid
& grid
,
162 wxGridCellAttr
& attr
,
164 int row
, int col
) = 0;
166 // create a new object which is the copy of this one
167 virtual wxGridCellRenderer
*Clone() const = 0;
170 // the default renderer for the cells containing string data
171 class WXDLLIMPEXP_ADV wxGridCellStringRenderer
: public wxGridCellRenderer
175 virtual void Draw(wxGrid
& grid
,
176 wxGridCellAttr
& attr
,
182 // return the string extent
183 virtual wxSize
GetBestSize(wxGrid
& grid
,
184 wxGridCellAttr
& attr
,
188 virtual wxGridCellRenderer
*Clone() const
189 { return new wxGridCellStringRenderer
; }
192 // set the text colours before drawing
193 void SetTextColoursAndFont(const wxGrid
& grid
,
194 const wxGridCellAttr
& attr
,
198 // calc the string extent for given string/font
199 wxSize
DoGetBestSize(const wxGridCellAttr
& attr
,
201 const wxString
& text
);
204 // the default renderer for the cells containing numeric (long) data
205 class WXDLLIMPEXP_ADV wxGridCellNumberRenderer
: public wxGridCellStringRenderer
208 // draw the string right aligned
209 virtual void Draw(wxGrid
& grid
,
210 wxGridCellAttr
& attr
,
216 virtual wxSize
GetBestSize(wxGrid
& grid
,
217 wxGridCellAttr
& attr
,
221 virtual wxGridCellRenderer
*Clone() const
222 { return new wxGridCellNumberRenderer
; }
225 wxString
GetString(const wxGrid
& grid
, int row
, int col
);
228 class WXDLLIMPEXP_ADV wxGridCellFloatRenderer
: public wxGridCellStringRenderer
231 wxGridCellFloatRenderer(int width
= -1, int precision
= -1);
233 // get/change formatting parameters
234 int GetWidth() const { return m_width
; }
235 void SetWidth(int width
) { m_width
= width
; m_format
.clear(); }
236 int GetPrecision() const { return m_precision
; }
237 void SetPrecision(int precision
) { m_precision
= precision
; m_format
.clear(); }
239 // draw the string right aligned with given width/precision
240 virtual void Draw(wxGrid
& grid
,
241 wxGridCellAttr
& attr
,
247 virtual wxSize
GetBestSize(wxGrid
& grid
,
248 wxGridCellAttr
& attr
,
252 // parameters string format is "width[,precision]"
253 virtual void SetParameters(const wxString
& params
);
255 virtual wxGridCellRenderer
*Clone() const;
258 wxString
GetString(const wxGrid
& grid
, int row
, int col
);
261 // formatting parameters
268 // renderer for boolean fields
269 class WXDLLIMPEXP_ADV wxGridCellBoolRenderer
: public wxGridCellRenderer
272 // draw a check mark or nothing
273 virtual void Draw(wxGrid
& grid
,
274 wxGridCellAttr
& attr
,
280 // return the checkmark size
281 virtual wxSize
GetBestSize(wxGrid
& grid
,
282 wxGridCellAttr
& attr
,
286 virtual wxGridCellRenderer
*Clone() const
287 { return new wxGridCellBoolRenderer
; }
290 static wxSize ms_sizeCheckMark
;
293 // ----------------------------------------------------------------------------
294 // wxGridCellEditor: This class is responsible for providing and manipulating
295 // the in-place edit controls for the grid. Instances of wxGridCellEditor
296 // (actually, instances of derived classes since it is an ABC) can be
297 // associated with the cell attributes for individual cells, rows, columns, or
298 // even for the entire grid.
299 // ----------------------------------------------------------------------------
301 class WXDLLIMPEXP_ADV wxGridCellEditor
: public wxGridCellWorker
306 bool IsCreated() { return m_control
!= NULL
; }
307 wxControl
* GetControl() { return m_control
; }
308 void SetControl(wxControl
* control
) { m_control
= control
; }
310 wxGridCellAttr
* GetCellAttr() { return m_attr
; }
311 void SetCellAttr(wxGridCellAttr
* attr
) { m_attr
= attr
; }
313 // Creates the actual edit control
314 virtual void Create(wxWindow
* parent
,
316 wxEvtHandler
* evtHandler
) = 0;
318 // Size and position the edit control
319 virtual void SetSize(const wxRect
& rect
);
321 // Show or hide the edit control, use the specified attributes to set
322 // colours/fonts for it
323 virtual void Show(bool show
, wxGridCellAttr
*attr
= NULL
);
325 // Draws the part of the cell not occupied by the control: the base class
326 // version just fills it with background colour from the attribute
327 virtual void PaintBackground(const wxRect
& rectCell
, wxGridCellAttr
*attr
);
329 // Fetch the value from the table and prepare the edit control
330 // to begin editing. Set the focus to the edit control.
331 virtual void BeginEdit(int row
, int col
, wxGrid
* grid
) = 0;
333 // Complete the editing of the current cell. Returns true if the value has
334 // changed. If necessary, the control may be destroyed.
335 virtual bool EndEdit(int row
, int col
, wxGrid
* grid
) = 0;
337 // Reset the value in the control back to its starting value
338 virtual void Reset() = 0;
340 // return true to allow the given key to start editing: the base class
341 // version only checks that the event has no modifiers. The derived
342 // classes are supposed to do "if ( base::IsAcceptedKey() && ... )" in
343 // their IsAcceptedKey() implementation, although, of course, it is not a
344 // mandatory requirment.
346 // NB: if the key is F2 (special), editing will always start and this
347 // method will not be called at all (but StartingKey() will)
348 virtual bool IsAcceptedKey(wxKeyEvent
& event
);
350 // If the editor is enabled by pressing keys on the grid, this will be
351 // called to let the editor do something about that first key if desired
352 virtual void StartingKey(wxKeyEvent
& event
);
354 // if the editor is enabled by clicking on the cell, this method will be
356 virtual void StartingClick();
358 // Some types of controls on some platforms may need some help
359 // with the Return key.
360 virtual void HandleReturn(wxKeyEvent
& event
);
363 virtual void Destroy();
365 // create a new object which is the copy of this one
366 virtual wxGridCellEditor
*Clone() const = 0;
368 // added GetValue so we can get the value which is in the control
369 virtual wxString
GetValue() const = 0;
372 // the dtor is private because only DecRef() can delete us
373 virtual ~wxGridCellEditor();
375 // the control we show on screen
376 wxControl
* m_control
;
378 // a temporary pointer to the attribute being edited
379 wxGridCellAttr
* m_attr
;
381 // if we change the colours/font of the control from the default ones, we
382 // must restore the default later and we save them here between calls to
383 // Show(true) and Show(false)
388 // suppress the stupid gcc warning about the class having private dtor and
390 friend class wxGridCellEditorDummyFriend
;
392 DECLARE_NO_COPY_CLASS(wxGridCellEditor
)
397 // the editor for string/text data
398 class WXDLLIMPEXP_ADV wxGridCellTextEditor
: public wxGridCellEditor
401 wxGridCellTextEditor();
403 virtual void Create(wxWindow
* parent
,
405 wxEvtHandler
* evtHandler
);
406 virtual void SetSize(const wxRect
& rect
);
408 virtual void PaintBackground(const wxRect
& rectCell
, wxGridCellAttr
*attr
);
410 virtual bool IsAcceptedKey(wxKeyEvent
& event
);
411 virtual void BeginEdit(int row
, int col
, wxGrid
* grid
);
412 virtual bool EndEdit(int row
, int col
, wxGrid
* grid
);
414 virtual void Reset();
415 virtual void StartingKey(wxKeyEvent
& event
);
416 virtual void HandleReturn(wxKeyEvent
& event
);
418 // parameters string format is "max_width"
419 virtual void SetParameters(const wxString
& params
);
421 virtual wxGridCellEditor
*Clone() const
422 { return new wxGridCellTextEditor
; }
424 // added GetValue so we can get the value which is in the control
425 virtual wxString
GetValue() const;
428 wxTextCtrl
*Text() const { return (wxTextCtrl
*)m_control
; }
430 // parts of our virtual functions reused by the derived classes
431 void DoCreate(wxWindow
* parent
, wxWindowID id
, wxEvtHandler
* evtHandler
,
433 void DoBeginEdit(const wxString
& startValue
);
434 void DoReset(const wxString
& startValue
);
437 size_t m_maxChars
; // max number of chars allowed
438 wxString m_startValue
;
440 DECLARE_NO_COPY_CLASS(wxGridCellTextEditor
)
443 // the editor for numeric (long) data
444 class WXDLLIMPEXP_ADV wxGridCellNumberEditor
: public wxGridCellTextEditor
447 // allows to specify the range - if min == max == -1, no range checking is
449 wxGridCellNumberEditor(int min
= -1, int max
= -1);
451 virtual void Create(wxWindow
* parent
,
453 wxEvtHandler
* evtHandler
);
455 virtual bool IsAcceptedKey(wxKeyEvent
& event
);
456 virtual void BeginEdit(int row
, int col
, wxGrid
* grid
);
457 virtual bool EndEdit(int row
, int col
, wxGrid
* grid
);
459 virtual void Reset();
460 virtual void StartingKey(wxKeyEvent
& event
);
462 // parameters string format is "min,max"
463 virtual void SetParameters(const wxString
& params
);
465 virtual wxGridCellEditor
*Clone() const
466 { return new wxGridCellNumberEditor(m_min
, m_max
); }
468 // added GetValue so we can get the value which is in the control
469 virtual wxString
GetValue() const;
473 wxSpinCtrl
*Spin() const { return (wxSpinCtrl
*)m_control
; }
476 // if HasRange(), we use wxSpinCtrl - otherwise wxTextCtrl
477 bool HasRange() const
480 return m_min
!= m_max
;
486 // string representation of m_valueOld
487 wxString
GetString() const
488 { return wxString::Format(_T("%ld"), m_valueOld
); }
496 DECLARE_NO_COPY_CLASS(wxGridCellNumberEditor
)
499 // the editor for floating point numbers (double) data
500 class WXDLLIMPEXP_ADV wxGridCellFloatEditor
: public wxGridCellTextEditor
503 wxGridCellFloatEditor(int width
= -1, int precision
= -1);
505 virtual void Create(wxWindow
* parent
,
507 wxEvtHandler
* evtHandler
);
509 virtual bool IsAcceptedKey(wxKeyEvent
& event
);
510 virtual void BeginEdit(int row
, int col
, wxGrid
* grid
);
511 virtual bool EndEdit(int row
, int col
, wxGrid
* grid
);
513 virtual void Reset();
514 virtual void StartingKey(wxKeyEvent
& event
);
516 virtual wxGridCellEditor
*Clone() const
517 { return new wxGridCellFloatEditor(m_width
, m_precision
); }
519 // parameters string format is "width,precision"
520 virtual void SetParameters(const wxString
& params
);
523 // string representation of m_valueOld
524 wxString
GetString() const;
531 DECLARE_NO_COPY_CLASS(wxGridCellFloatEditor
)
534 #endif // wxUSE_TEXTCTRL
538 // the editor for boolean data
539 class WXDLLIMPEXP_ADV wxGridCellBoolEditor
: public wxGridCellEditor
542 wxGridCellBoolEditor() { }
544 virtual void Create(wxWindow
* parent
,
546 wxEvtHandler
* evtHandler
);
548 virtual void SetSize(const wxRect
& rect
);
549 virtual void Show(bool show
, wxGridCellAttr
*attr
= NULL
);
551 virtual bool IsAcceptedKey(wxKeyEvent
& event
);
552 virtual void BeginEdit(int row
, int col
, wxGrid
* grid
);
553 virtual bool EndEdit(int row
, int col
, wxGrid
* grid
);
555 virtual void Reset();
556 virtual void StartingClick();
557 virtual void StartingKey(wxKeyEvent
& event
);
559 virtual wxGridCellEditor
*Clone() const
560 { return new wxGridCellBoolEditor
; }
562 // added GetValue so we can get the value which is in the control, see
563 // also UseStringValues()
564 virtual wxString
GetValue() const;
566 // set the string values returned by GetValue() for the true and false
567 // states, respectively
568 static void UseStringValues(const wxString
& valueTrue
= _T("1"),
569 const wxString
& valueFalse
= wxEmptyString
);
571 // return true if the given string is equal to the string representation of
572 // true value which we currently use
573 static bool IsTrueValue(const wxString
& value
);
576 wxCheckBox
*CBox() const { return (wxCheckBox
*)m_control
; }
581 static wxString ms_stringValues
[2];
583 DECLARE_NO_COPY_CLASS(wxGridCellBoolEditor
)
586 #endif // wxUSE_CHECKBOX
590 // the editor for string data allowing to choose from the list of strings
591 class WXDLLIMPEXP_ADV wxGridCellChoiceEditor
: public wxGridCellEditor
594 // if !allowOthers, user can't type a string not in choices array
595 wxGridCellChoiceEditor(size_t count
= 0,
596 const wxString choices
[] = NULL
,
597 bool allowOthers
= false);
598 wxGridCellChoiceEditor(const wxArrayString
& choices
,
599 bool allowOthers
= false);
601 virtual void Create(wxWindow
* parent
,
603 wxEvtHandler
* evtHandler
);
605 virtual void PaintBackground(const wxRect
& rectCell
, wxGridCellAttr
*attr
);
607 virtual void BeginEdit(int row
, int col
, wxGrid
* grid
);
608 virtual bool EndEdit(int row
, int col
, wxGrid
* grid
);
610 virtual void Reset();
612 // parameters string format is "item1[,item2[...,itemN]]"
613 virtual void SetParameters(const wxString
& params
);
615 virtual wxGridCellEditor
*Clone() const;
617 // added GetValue so we can get the value which is in the control
618 virtual wxString
GetValue() const;
621 wxComboBox
*Combo() const { return (wxComboBox
*)m_control
; }
623 // DJC - (MAPTEK) you at least need access to m_choices if you
624 // wish to override this class
626 wxString m_startValue
;
627 wxArrayString m_choices
;
630 DECLARE_NO_COPY_CLASS(wxGridCellChoiceEditor
)
633 #endif // wxUSE_COMBOBOX
635 // ----------------------------------------------------------------------------
636 // wxGridCellAttr: this class can be used to alter the cells appearance in
637 // the grid by changing their colour/font/... from default. An object of this
638 // class may be returned by wxGridTable::GetAttr().
639 // ----------------------------------------------------------------------------
641 class WXDLLIMPEXP_ADV wxGridCellAttr
: public wxClientDataContainer
655 wxGridCellAttr(wxGridCellAttr
*attrDefault
= NULL
)
659 // MB: args used to be 0,0 here but wxALIGN_LEFT is 0
660 SetAlignment(-1, -1);
663 // VZ: considering the number of members wxGridCellAttr has now, this ctor
664 // seems to be pretty useless... may be we should just remove it?
665 wxGridCellAttr(const wxColour
& colText
,
666 const wxColour
& colBack
,
670 : m_colText(colText
), m_colBack(colBack
), m_font(font
)
673 SetAlignment(hAlign
, vAlign
);
676 // creates a new copy of this object
677 wxGridCellAttr
*Clone() const;
678 void MergeWith(wxGridCellAttr
*mergefrom
);
680 // this class is ref counted: it is created with ref count of 1, so
681 // calling DecRef() once will delete it. Calling IncRef() allows to lock
682 // it until the matching DecRef() is called
683 void IncRef() { m_nRef
++; }
684 void DecRef() { if ( --m_nRef
== 0 ) delete this; }
687 void SetTextColour(const wxColour
& colText
) { m_colText
= colText
; }
688 void SetBackgroundColour(const wxColour
& colBack
) { m_colBack
= colBack
; }
689 void SetFont(const wxFont
& font
) { m_font
= font
; }
690 void SetAlignment(int hAlign
, int vAlign
)
695 void SetSize(int num_rows
, int num_cols
);
696 void SetOverflow(bool allow
= true)
697 { m_overflow
= allow
? Overflow
: SingleCell
; }
698 void SetReadOnly(bool isReadOnly
= true)
699 { m_isReadOnly
= isReadOnly
? ReadOnly
: ReadWrite
; }
701 // takes ownership of the pointer
702 void SetRenderer(wxGridCellRenderer
*renderer
)
703 { wxSafeDecRef(m_renderer
); m_renderer
= renderer
; }
704 void SetEditor(wxGridCellEditor
* editor
)
705 { wxSafeDecRef(m_editor
); m_editor
= editor
; }
707 void SetKind(wxAttrKind kind
) { m_attrkind
= kind
; }
710 bool HasTextColour() const { return m_colText
.Ok(); }
711 bool HasBackgroundColour() const { return m_colBack
.Ok(); }
712 bool HasFont() const { return m_font
.Ok(); }
713 bool HasAlignment() const { return (m_hAlign
!= -1 || m_vAlign
!= -1); }
714 bool HasRenderer() const { return m_renderer
!= NULL
; }
715 bool HasEditor() const { return m_editor
!= NULL
; }
716 bool HasReadWriteMode() const { return m_isReadOnly
!= Unset
; }
717 bool HasOverflowMode() const { return m_overflow
!= UnsetOverflow
; }
718 bool HasSize() const { return m_sizeRows
!= 1 || m_sizeCols
!= 1; }
720 const wxColour
& GetTextColour() const;
721 const wxColour
& GetBackgroundColour() const;
722 const wxFont
& GetFont() const;
723 void GetAlignment(int *hAlign
, int *vAlign
) const;
724 void GetSize(int *num_rows
, int *num_cols
) const;
725 bool GetOverflow() const
726 { return m_overflow
!= SingleCell
; }
727 wxGridCellRenderer
*GetRenderer(const wxGrid
* grid
, int row
, int col
) const;
728 wxGridCellEditor
*GetEditor(const wxGrid
* grid
, int row
, int col
) const;
730 bool IsReadOnly() const { return m_isReadOnly
== wxGridCellAttr::ReadOnly
; }
732 wxAttrKind
GetKind() { return m_attrkind
; }
734 void SetDefAttr(wxGridCellAttr
* defAttr
) { m_defGridAttr
= defAttr
; }
737 // the dtor is private because only DecRef() can delete us
738 virtual ~wxGridCellAttr()
740 wxSafeDecRef(m_renderer
);
741 wxSafeDecRef(m_editor
);
752 enum wxAttrOverflowMode
759 // the common part of all ctors
760 void Init(wxGridCellAttr
*attrDefault
= NULL
);
763 // the ref count - when it goes to 0, we die
774 wxAttrOverflowMode m_overflow
;
776 wxGridCellRenderer
* m_renderer
;
777 wxGridCellEditor
* m_editor
;
778 wxGridCellAttr
* m_defGridAttr
;
780 wxAttrReadMode m_isReadOnly
;
782 wxAttrKind m_attrkind
;
784 // use Clone() instead
785 DECLARE_NO_COPY_CLASS(wxGridCellAttr
)
787 // suppress the stupid gcc warning about the class having private dtor and
789 friend class wxGridCellAttrDummyFriend
;
792 // ----------------------------------------------------------------------------
793 // wxGridCellAttrProvider: class used by wxGridTableBase to retrieve/store the
795 // ----------------------------------------------------------------------------
797 // implementation note: we separate it from wxGridTableBase because we wish to
798 // avoid deriving a new table class if possible, and sometimes it will be
799 // enough to just derive another wxGridCellAttrProvider instead
801 // the default implementation is reasonably efficient for the generic case,
802 // but you might still wish to implement your own for some specific situations
803 // if you have performance problems with the stock one
804 class WXDLLIMPEXP_ADV wxGridCellAttrProvider
: public wxClientDataContainer
807 wxGridCellAttrProvider();
808 virtual ~wxGridCellAttrProvider();
810 // DecRef() must be called on the returned pointer
811 virtual wxGridCellAttr
*GetAttr(int row
, int col
,
812 wxGridCellAttr::wxAttrKind kind
) const;
814 // all these functions take ownership of the pointer, don't call DecRef()
816 virtual void SetAttr(wxGridCellAttr
*attr
, int row
, int col
);
817 virtual void SetRowAttr(wxGridCellAttr
*attr
, int row
);
818 virtual void SetColAttr(wxGridCellAttr
*attr
, int col
);
820 // these functions must be called whenever some rows/cols are deleted
821 // because the internal data must be updated then
822 void UpdateAttrRows( size_t pos
, int numRows
);
823 void UpdateAttrCols( size_t pos
, int numCols
);
828 wxGridCellAttrProviderData
*m_data
;
830 DECLARE_NO_COPY_CLASS(wxGridCellAttrProvider
)
833 // ----------------------------------------------------------------------------
834 // wxGridCellCoords: location of a cell in the grid
835 // ----------------------------------------------------------------------------
837 class WXDLLIMPEXP_ADV wxGridCellCoords
840 wxGridCellCoords() { m_row
= m_col
= -1; }
841 wxGridCellCoords( int r
, int c
) { m_row
= r
; m_col
= c
; }
843 // default copy ctor is ok
845 int GetRow() const { return m_row
; }
846 void SetRow( int n
) { m_row
= n
; }
847 int GetCol() const { return m_col
; }
848 void SetCol( int n
) { m_col
= n
; }
849 void Set( int row
, int col
) { m_row
= row
; m_col
= col
; }
851 wxGridCellCoords
& operator=( const wxGridCellCoords
& other
)
853 if ( &other
!= this )
861 bool operator==( const wxGridCellCoords
& other
) const
863 return (m_row
== other
.m_row
&& m_col
== other
.m_col
);
866 bool operator!=( const wxGridCellCoords
& other
) const
868 return (m_row
!= other
.m_row
|| m_col
!= other
.m_col
);
871 bool operator!() const
873 return (m_row
== -1 && m_col
== -1 );
882 // For comparisons...
884 extern WXDLLIMPEXP_ADV wxGridCellCoords wxGridNoCellCoords
;
885 extern WXDLLIMPEXP_ADV wxRect wxGridNoCellRect
;
887 // An array of cell coords...
889 WX_DECLARE_OBJARRAY_WITH_DECL(wxGridCellCoords
, wxGridCellCoordsArray
,
890 class WXDLLIMPEXP_ADV
);
892 // ----------------------------------------------------------------------------
893 // Grid table classes
894 // ----------------------------------------------------------------------------
896 // the abstract base class
897 class WXDLLIMPEXP_ADV wxGridTableBase
: public wxObject
,
898 public wxClientDataContainer
902 virtual ~wxGridTableBase();
904 // You must override these functions in a derived table class
907 // return the number of rows and columns in this table
908 virtual int GetNumberRows() = 0;
909 virtual int GetNumberCols() = 0;
911 // the methods above are unfortunately non-const even though they should
912 // have been const -- but changing it now is not possible any longer as it
913 // would break the existing code overriding them, so instead we provide
914 // these const synonyms which can be used from const-correct code
915 int GetRowsCount() const
916 { return const_cast<wxGridTableBase
*>(this)->GetNumberRows(); }
917 int GetColsCount() const
918 { return const_cast<wxGridTableBase
*>(this)->GetNumberCols(); }
921 virtual bool IsEmptyCell( int row
, int col
)
923 return GetValue(row
, col
).empty();
926 bool IsEmpty(const wxGridCellCoords
& coord
)
928 return IsEmptyCell(coord
.GetRow(), coord
.GetCol());
931 virtual wxString
GetValue( int row
, int col
) = 0;
932 virtual void SetValue( int row
, int col
, const wxString
& value
) = 0;
934 // Data type determination and value access
935 virtual wxString
GetTypeName( int row
, int col
);
936 virtual bool CanGetValueAs( int row
, int col
, const wxString
& typeName
);
937 virtual bool CanSetValueAs( int row
, int col
, const wxString
& typeName
);
939 virtual long GetValueAsLong( int row
, int col
);
940 virtual double GetValueAsDouble( int row
, int col
);
941 virtual bool GetValueAsBool( int row
, int col
);
943 virtual void SetValueAsLong( int row
, int col
, long value
);
944 virtual void SetValueAsDouble( int row
, int col
, double value
);
945 virtual void SetValueAsBool( int row
, int col
, bool value
);
947 // For user defined types
948 virtual void* GetValueAsCustom( int row
, int col
, const wxString
& typeName
);
949 virtual void SetValueAsCustom( int row
, int col
, const wxString
& typeName
, void* value
);
952 // Overriding these is optional
954 virtual void SetView( wxGrid
*grid
) { m_view
= grid
; }
955 virtual wxGrid
* GetView() const { return m_view
; }
957 virtual void Clear() {}
958 virtual bool InsertRows( size_t pos
= 0, size_t numRows
= 1 );
959 virtual bool AppendRows( size_t numRows
= 1 );
960 virtual bool DeleteRows( size_t pos
= 0, size_t numRows
= 1 );
961 virtual bool InsertCols( size_t pos
= 0, size_t numCols
= 1 );
962 virtual bool AppendCols( size_t numCols
= 1 );
963 virtual bool DeleteCols( size_t pos
= 0, size_t numCols
= 1 );
965 virtual wxString
GetRowLabelValue( int row
);
966 virtual wxString
GetColLabelValue( int col
);
967 virtual void SetRowLabelValue( int WXUNUSED(row
), const wxString
& ) {}
968 virtual void SetColLabelValue( int WXUNUSED(col
), const wxString
& ) {}
970 // Attribute handling
973 // give us the attr provider to use - we take ownership of the pointer
974 void SetAttrProvider(wxGridCellAttrProvider
*attrProvider
);
976 // get the currently used attr provider (may be NULL)
977 wxGridCellAttrProvider
*GetAttrProvider() const { return m_attrProvider
; }
979 // Does this table allow attributes? Default implementation creates
980 // a wxGridCellAttrProvider if necessary.
981 virtual bool CanHaveAttributes();
983 // by default forwarded to wxGridCellAttrProvider if any. May be
984 // overridden to handle attributes directly in the table.
985 virtual wxGridCellAttr
*GetAttr( int row
, int col
,
986 wxGridCellAttr::wxAttrKind kind
);
989 // these functions take ownership of the pointer
990 virtual void SetAttr(wxGridCellAttr
* attr
, int row
, int col
);
991 virtual void SetRowAttr(wxGridCellAttr
*attr
, int row
);
992 virtual void SetColAttr(wxGridCellAttr
*attr
, int col
);
996 wxGridCellAttrProvider
*m_attrProvider
;
998 DECLARE_ABSTRACT_CLASS(wxGridTableBase
)
999 DECLARE_NO_COPY_CLASS(wxGridTableBase
)
1003 // ----------------------------------------------------------------------------
1004 // wxGridTableMessage
1005 // ----------------------------------------------------------------------------
1007 // IDs for messages sent from grid table to view
1009 enum wxGridTableRequest
1011 wxGRIDTABLE_REQUEST_VIEW_GET_VALUES
= 2000,
1012 wxGRIDTABLE_REQUEST_VIEW_SEND_VALUES
,
1013 wxGRIDTABLE_NOTIFY_ROWS_INSERTED
,
1014 wxGRIDTABLE_NOTIFY_ROWS_APPENDED
,
1015 wxGRIDTABLE_NOTIFY_ROWS_DELETED
,
1016 wxGRIDTABLE_NOTIFY_COLS_INSERTED
,
1017 wxGRIDTABLE_NOTIFY_COLS_APPENDED
,
1018 wxGRIDTABLE_NOTIFY_COLS_DELETED
1021 class WXDLLIMPEXP_ADV wxGridTableMessage
1024 wxGridTableMessage();
1025 wxGridTableMessage( wxGridTableBase
*table
, int id
,
1029 void SetTableObject( wxGridTableBase
*table
) { m_table
= table
; }
1030 wxGridTableBase
* GetTableObject() const { return m_table
; }
1031 void SetId( int id
) { m_id
= id
; }
1032 int GetId() { return m_id
; }
1033 void SetCommandInt( int comInt1
) { m_comInt1
= comInt1
; }
1034 int GetCommandInt() { return m_comInt1
; }
1035 void SetCommandInt2( int comInt2
) { m_comInt2
= comInt2
; }
1036 int GetCommandInt2() { return m_comInt2
; }
1039 wxGridTableBase
*m_table
;
1044 DECLARE_NO_COPY_CLASS(wxGridTableMessage
)
1049 // ------ wxGridStringArray
1050 // A 2-dimensional array of strings for data values
1053 WX_DECLARE_OBJARRAY_WITH_DECL(wxArrayString
, wxGridStringArray
,
1054 class WXDLLIMPEXP_ADV
);
1058 // ------ wxGridStringTable
1060 // Simplest type of data table for a grid for small tables of strings
1061 // that are stored in memory
1064 class WXDLLIMPEXP_ADV wxGridStringTable
: public wxGridTableBase
1067 wxGridStringTable();
1068 wxGridStringTable( int numRows
, int numCols
);
1069 virtual ~wxGridStringTable();
1071 // these are pure virtual in wxGridTableBase
1073 int GetNumberRows();
1074 int GetNumberCols();
1075 wxString
GetValue( int row
, int col
);
1076 void SetValue( int row
, int col
, const wxString
& s
);
1078 // overridden functions from wxGridTableBase
1081 bool InsertRows( size_t pos
= 0, size_t numRows
= 1 );
1082 bool AppendRows( size_t numRows
= 1 );
1083 bool DeleteRows( size_t pos
= 0, size_t numRows
= 1 );
1084 bool InsertCols( size_t pos
= 0, size_t numCols
= 1 );
1085 bool AppendCols( size_t numCols
= 1 );
1086 bool DeleteCols( size_t pos
= 0, size_t numCols
= 1 );
1088 void SetRowLabelValue( int row
, const wxString
& );
1089 void SetColLabelValue( int col
, const wxString
& );
1090 wxString
GetRowLabelValue( int row
);
1091 wxString
GetColLabelValue( int col
);
1094 wxGridStringArray m_data
;
1096 // These only get used if you set your own labels, otherwise the
1097 // GetRow/ColLabelValue functions return wxGridTableBase defaults
1099 wxArrayString m_rowLabels
;
1100 wxArrayString m_colLabels
;
1102 DECLARE_DYNAMIC_CLASS_NO_COPY( wxGridStringTable
)
1107 // ============================================================================
1108 // Grid view classes
1109 // ============================================================================
1111 // ----------------------------------------------------------------------------
1113 // ----------------------------------------------------------------------------
1115 class WXDLLIMPEXP_ADV wxGrid
: public wxScrolledWindow
1118 // possible selection modes
1119 enum wxGridSelectionModes
1121 wxGridSelectCells
= 0, // allow selecting anything
1122 wxGridSelectRows
= 1, // allow selecting only entire rows
1123 wxGridSelectColumns
= 2, // allow selecting only entire columns
1124 wxGridSelectRowsOrColumns
= wxGridSelectRows
| wxGridSelectColumns
1127 // creation and destruction
1128 // ------------------------
1130 // ctor and Create() create the grid window, as with the other controls
1133 wxGrid(wxWindow
*parent
,
1135 const wxPoint
& pos
= wxDefaultPosition
,
1136 const wxSize
& size
= wxDefaultSize
,
1137 long style
= wxWANTS_CHARS
,
1138 const wxString
& name
= wxGridNameStr
);
1140 bool Create(wxWindow
*parent
,
1142 const wxPoint
& pos
= wxDefaultPosition
,
1143 const wxSize
& size
= wxDefaultSize
,
1144 long style
= wxWANTS_CHARS
,
1145 const wxString
& name
= wxGridNameStr
);
1149 // however to initialize grid data either CreateGrid() or SetTable() must
1152 // this is basically equivalent to
1154 // SetTable(new wxGridStringTable(numRows, numCols), true, selmode)
1156 bool CreateGrid( int numRows
, int numCols
,
1157 wxGridSelectionModes selmode
= wxGridSelectCells
);
1159 bool SetTable( wxGridTableBase
*table
,
1160 bool takeOwnership
= false,
1161 wxGridSelectionModes selmode
= wxGridSelectCells
);
1163 bool ProcessTableMessage(wxGridTableMessage
&);
1165 wxGridTableBase
*GetTable() const { return m_table
; }
1168 void SetSelectionMode(wxGridSelectionModes selmode
);
1169 wxGridSelectionModes
GetSelectionMode() const;
1171 // ------ grid dimensions
1173 int GetNumberRows() const { return m_numRows
; }
1174 int GetNumberCols() const { return m_numCols
; }
1177 // ------ display update functions
1179 wxArrayInt
CalcRowLabelsExposed( const wxRegion
& reg
) const;
1181 wxArrayInt
CalcColLabelsExposed( const wxRegion
& reg
) const;
1182 wxGridCellCoordsArray
CalcCellsExposed( const wxRegion
& reg
) const;
1186 bool InsertRows(int pos
= 0, int numRows
= 1, bool updateLabels
= true)
1188 return DoModifyLines(&wxGridTableBase::InsertRows
,
1189 pos
, numRows
, updateLabels
);
1191 bool InsertCols(int pos
= 0, int numCols
= 1, bool updateLabels
= true)
1193 return DoModifyLines(&wxGridTableBase::InsertCols
,
1194 pos
, numCols
, updateLabels
);
1197 bool AppendRows(int numRows
= 1, bool updateLabels
= true)
1199 return DoAppendLines(&wxGridTableBase::AppendRows
, numRows
, updateLabels
);
1201 bool AppendCols(int numCols
= 1, bool updateLabels
= true)
1203 return DoAppendLines(&wxGridTableBase::AppendCols
, numCols
, updateLabels
);
1206 bool DeleteRows(int pos
= 0, int numRows
= 1, bool updateLabels
= true)
1208 return DoModifyLines(&wxGridTableBase::DeleteRows
,
1209 pos
, numRows
, updateLabels
);
1211 bool DeleteCols(int pos
= 0, int numCols
= 1, bool updateLabels
= true)
1213 return DoModifyLines(&wxGridTableBase::DeleteCols
,
1214 pos
, numCols
, updateLabels
);
1217 void DrawGridCellArea( wxDC
& dc
, const wxGridCellCoordsArray
& cells
);
1218 void DrawGridSpace( wxDC
& dc
);
1219 void DrawCellBorder( wxDC
& dc
, const wxGridCellCoords
& );
1220 void DrawAllGridLines( wxDC
& dc
, const wxRegion
& reg
);
1221 void DrawCell( wxDC
& dc
, const wxGridCellCoords
& );
1222 void DrawHighlight(wxDC
& dc
, const wxGridCellCoordsArray
& cells
);
1224 // this function is called when the current cell highlight must be redrawn
1225 // and may be overridden by the user
1226 virtual void DrawCellHighlight( wxDC
& dc
, const wxGridCellAttr
*attr
);
1228 virtual void DrawRowLabels( wxDC
& dc
, const wxArrayInt
& rows
);
1229 virtual void DrawRowLabel( wxDC
& dc
, int row
);
1231 virtual void DrawColLabels( wxDC
& dc
, const wxArrayInt
& cols
);
1232 virtual void DrawColLabel( wxDC
& dc
, int col
);
1234 virtual void DrawCornerLabel(wxDC
& dc
);
1236 // ------ Cell text drawing functions
1238 void DrawTextRectangle( wxDC
& dc
, const wxString
&, const wxRect
&,
1239 int horizontalAlignment
= wxALIGN_LEFT
,
1240 int verticalAlignment
= wxALIGN_TOP
,
1241 int textOrientation
= wxHORIZONTAL
);
1243 void DrawTextRectangle( wxDC
& dc
, const wxArrayString
& lines
, const wxRect
&,
1244 int horizontalAlignment
= wxALIGN_LEFT
,
1245 int verticalAlignment
= wxALIGN_TOP
,
1246 int textOrientation
= wxHORIZONTAL
);
1249 // Split a string containing newline characters into an array of
1250 // strings and return the number of lines
1252 void StringToLines( const wxString
& value
, wxArrayString
& lines
) const;
1254 void GetTextBoxSize( const wxDC
& dc
,
1255 const wxArrayString
& lines
,
1256 long *width
, long *height
) const;
1260 // Code that does a lot of grid modification can be enclosed
1261 // between BeginBatch() and EndBatch() calls to avoid screen
1264 void BeginBatch() { m_batchCount
++; }
1267 int GetBatchCount() { return m_batchCount
; }
1269 virtual void Refresh(bool eraseb
= true, const wxRect
* rect
= NULL
);
1271 // Use this, rather than wxWindow::Refresh(), to force an
1272 // immediate repainting of the grid. Has no effect if you are
1273 // already inside a BeginBatch / EndBatch block.
1275 // This function is necessary because wxGrid has a minimal OnPaint()
1276 // handler to reduce screen flicker.
1278 void ForceRefresh();
1281 // ------ edit control functions
1283 bool IsEditable() const { return m_editable
; }
1284 void EnableEditing( bool edit
);
1286 void EnableCellEditControl( bool enable
= true );
1287 void DisableCellEditControl() { EnableCellEditControl(false); }
1288 bool CanEnableCellControl() const;
1289 bool IsCellEditControlEnabled() const;
1290 bool IsCellEditControlShown() const;
1292 bool IsCurrentCellReadOnly() const;
1294 void ShowCellEditControl();
1295 void HideCellEditControl();
1296 void SaveEditControlValue();
1299 // ------ grid location functions
1300 // Note that all of these functions work with the logical coordinates of
1301 // grid cells and labels so you will need to convert from device
1302 // coordinates for mouse events etc.
1304 wxGridCellCoords
XYToCell(int x
, int y
) const;
1305 void XYToCell(int x
, int y
, wxGridCellCoords
& coords
) const
1306 { coords
= XYToCell(x
, y
); }
1307 wxGridCellCoords
XYToCell(const wxPoint
& pos
) const
1308 { return XYToCell(pos
.x
, pos
.y
); }
1310 int YToRow( int y
, bool clipToMinMax
= false ) const;
1311 int XToCol( int x
, bool clipToMinMax
= false ) const;
1313 int YToEdgeOfRow( int y
) const;
1314 int XToEdgeOfCol( int x
) const;
1316 wxRect
CellToRect( int row
, int col
) const;
1317 wxRect
CellToRect( const wxGridCellCoords
& coords
) const
1318 { return CellToRect( coords
.GetRow(), coords
.GetCol() ); }
1320 int GetGridCursorRow() const { return m_currentCellCoords
.GetRow(); }
1321 int GetGridCursorCol() const { return m_currentCellCoords
.GetCol(); }
1323 // check to see if a cell is either wholly visible (the default arg) or
1324 // at least partially visible in the grid window
1326 bool IsVisible( int row
, int col
, bool wholeCellVisible
= true ) const;
1327 bool IsVisible( const wxGridCellCoords
& coords
, bool wholeCellVisible
= true ) const
1328 { return IsVisible( coords
.GetRow(), coords
.GetCol(), wholeCellVisible
); }
1329 void MakeCellVisible( int row
, int col
);
1330 void MakeCellVisible( const wxGridCellCoords
& coords
)
1331 { MakeCellVisible( coords
.GetRow(), coords
.GetCol() ); }
1334 // ------ grid cursor movement functions
1336 void SetGridCursor(int row
, int col
) { SetCurrentCell(row
, col
); }
1337 void SetGridCursor(const wxGridCellCoords
& c
) { SetCurrentCell(c
); }
1339 void GoToCell(int row
, int col
)
1341 if ( SetCurrentCell(row
, col
) )
1342 MakeCellVisible(row
, col
);
1345 void GoToCell(const wxGridCellCoords
& coords
)
1347 if ( SetCurrentCell(coords
) )
1348 MakeCellVisible(coords
);
1351 bool MoveCursorUp( bool expandSelection
);
1352 bool MoveCursorDown( bool expandSelection
);
1353 bool MoveCursorLeft( bool expandSelection
);
1354 bool MoveCursorRight( bool expandSelection
);
1355 bool MovePageDown();
1357 bool MoveCursorUpBlock( bool expandSelection
);
1358 bool MoveCursorDownBlock( bool expandSelection
);
1359 bool MoveCursorLeftBlock( bool expandSelection
);
1360 bool MoveCursorRightBlock( bool expandSelection
);
1363 // ------ label and gridline formatting
1365 int GetDefaultRowLabelSize() const { return WXGRID_DEFAULT_ROW_LABEL_WIDTH
; }
1366 int GetRowLabelSize() const { return m_rowLabelWidth
; }
1367 int GetDefaultColLabelSize() const { return WXGRID_DEFAULT_COL_LABEL_HEIGHT
; }
1368 int GetColLabelSize() const { return m_colLabelHeight
; }
1369 wxColour
GetLabelBackgroundColour() const { return m_labelBackgroundColour
; }
1370 wxColour
GetLabelTextColour() const { return m_labelTextColour
; }
1371 wxFont
GetLabelFont() const { return m_labelFont
; }
1372 void GetRowLabelAlignment( int *horiz
, int *vert
) const;
1373 void GetColLabelAlignment( int *horiz
, int *vert
) const;
1374 int GetColLabelTextOrientation() const;
1375 wxString
GetRowLabelValue( int row
) const;
1376 wxString
GetColLabelValue( int col
) const;
1378 wxColour
GetCellHighlightColour() const { return m_cellHighlightColour
; }
1379 int GetCellHighlightPenWidth() const { return m_cellHighlightPenWidth
; }
1380 int GetCellHighlightROPenWidth() const { return m_cellHighlightROPenWidth
; }
1382 void SetUseNativeColLabels( bool native
= true );
1383 void SetRowLabelSize( int width
);
1384 void SetColLabelSize( int height
);
1385 void HideRowLabels() { SetRowLabelSize( 0 ); }
1386 void HideColLabels() { SetColLabelSize( 0 ); }
1387 void SetLabelBackgroundColour( const wxColour
& );
1388 void SetLabelTextColour( const wxColour
& );
1389 void SetLabelFont( const wxFont
& );
1390 void SetRowLabelAlignment( int horiz
, int vert
);
1391 void SetColLabelAlignment( int horiz
, int vert
);
1392 void SetColLabelTextOrientation( int textOrientation
);
1393 void SetRowLabelValue( int row
, const wxString
& );
1394 void SetColLabelValue( int col
, const wxString
& );
1395 void SetCellHighlightColour( const wxColour
& );
1396 void SetCellHighlightPenWidth(int width
);
1397 void SetCellHighlightROPenWidth(int width
);
1399 void EnableDragRowSize( bool enable
= true );
1400 void DisableDragRowSize() { EnableDragRowSize( false ); }
1401 bool CanDragRowSize() const { return m_canDragRowSize
; }
1402 void EnableDragColSize( bool enable
= true );
1403 void DisableDragColSize() { EnableDragColSize( false ); }
1404 bool CanDragColSize() const { return m_canDragColSize
; }
1405 void EnableDragColMove( bool enable
= true );
1406 void DisableDragColMove() { EnableDragColMove( false ); }
1407 bool CanDragColMove() const { return m_canDragColMove
; }
1408 void EnableDragGridSize(bool enable
= true);
1409 void DisableDragGridSize() { EnableDragGridSize(false); }
1410 bool CanDragGridSize() const { return m_canDragGridSize
; }
1412 void EnableDragCell( bool enable
= true );
1413 void DisableDragCell() { EnableDragCell( false ); }
1414 bool CanDragCell() const { return m_canDragCell
; }
1420 // enable or disable drawing of the lines
1421 void EnableGridLines(bool enable
= true);
1422 bool GridLinesEnabled() const { return m_gridLinesEnabled
; }
1424 // by default grid lines stop at last column/row, but this may be changed
1425 void ClipHorzGridLines(bool clip
)
1426 { DoClipGridLines(m_gridLinesClipHorz
, clip
); }
1427 void ClipVertGridLines(bool clip
)
1428 { DoClipGridLines(m_gridLinesClipVert
, clip
); }
1429 bool AreHorzGridLinesClipped() const { return m_gridLinesClipHorz
; }
1430 bool AreVertGridLinesClipped() const { return m_gridLinesClipVert
; }
1432 // this can be used to change the global grid lines colour
1433 void SetGridLineColour(const wxColour
& col
);
1434 wxColour
GetGridLineColour() const { return m_gridLineColour
; }
1436 // these methods may be overridden to customize individual grid lines
1438 virtual wxPen
GetDefaultGridLinePen();
1439 virtual wxPen
GetRowGridLinePen(int row
);
1440 virtual wxPen
GetColGridLinePen(int col
);
1446 // this sets the specified attribute for this cell or in this row/col
1447 void SetAttr(int row
, int col
, wxGridCellAttr
*attr
);
1448 void SetRowAttr(int row
, wxGridCellAttr
*attr
);
1449 void SetColAttr(int col
, wxGridCellAttr
*attr
);
1451 // returns the attribute we may modify in place: a new one if this cell
1452 // doesn't have any yet or the existing one if it does
1454 // DecRef() must be called on the returned pointer, as usual
1455 wxGridCellAttr
*GetOrCreateCellAttr(int row
, int col
) const;
1458 // shortcuts for setting the column parameters
1460 // set the format for the data in the column: default is string
1461 void SetColFormatBool(int col
);
1462 void SetColFormatNumber(int col
);
1463 void SetColFormatFloat(int col
, int width
= -1, int precision
= -1);
1464 void SetColFormatCustom(int col
, const wxString
& typeName
);
1466 // ------ row and col formatting
1468 int GetDefaultRowSize() const;
1469 int GetRowSize( int row
) const;
1470 int GetDefaultColSize() const;
1471 int GetColSize( int col
) const;
1472 wxColour
GetDefaultCellBackgroundColour() const;
1473 wxColour
GetCellBackgroundColour( int row
, int col
) const;
1474 wxColour
GetDefaultCellTextColour() const;
1475 wxColour
GetCellTextColour( int row
, int col
) const;
1476 wxFont
GetDefaultCellFont() const;
1477 wxFont
GetCellFont( int row
, int col
) const;
1478 void GetDefaultCellAlignment( int *horiz
, int *vert
) const;
1479 void GetCellAlignment( int row
, int col
, int *horiz
, int *vert
) const;
1480 bool GetDefaultCellOverflow() const;
1481 bool GetCellOverflow( int row
, int col
) const;
1482 void GetCellSize( int row
, int col
, int *num_rows
, int *num_cols
) const;
1483 wxSize
GetCellSize(const wxGridCellCoords
& coords
)
1486 GetCellSize(coords
.GetRow(), coords
.GetCol(), &s
.x
, &s
.y
);
1490 void SetDefaultRowSize( int height
, bool resizeExistingRows
= false );
1491 void SetRowSize( int row
, int height
);
1492 void SetDefaultColSize( int width
, bool resizeExistingCols
= false );
1494 void SetColSize( int col
, int width
);
1497 int GetColAt( int colPos
) const
1499 if ( m_colAt
.IsEmpty() )
1502 return m_colAt
[colPos
];
1505 void SetColPos( int colID
, int newPos
);
1507 int GetColPos( int colID
) const
1509 if ( m_colAt
.IsEmpty() )
1513 for ( int i
= 0; i
< m_numCols
; i
++ )
1515 if ( m_colAt
[i
] == colID
)
1523 // automatically size the column or row to fit to its contents, if
1524 // setAsMin is true, this optimal width will also be set as minimal width
1526 void AutoSizeColumn( int col
, bool setAsMin
= true )
1527 { AutoSizeColOrRow(col
, setAsMin
, wxGRID_COLUMN
); }
1528 void AutoSizeRow( int row
, bool setAsMin
= true )
1529 { AutoSizeColOrRow(row
, setAsMin
, wxGRID_ROW
); }
1531 // auto size all columns (very ineffective for big grids!)
1532 void AutoSizeColumns( bool setAsMin
= true )
1533 { (void)SetOrCalcColumnSizes(false, setAsMin
); }
1535 void AutoSizeRows( bool setAsMin
= true )
1536 { (void)SetOrCalcRowSizes(false, setAsMin
); }
1538 // auto size the grid, that is make the columns/rows of the "right" size
1539 // and also set the grid size to just fit its contents
1542 // Note for both AutoSizeRowLabelSize and AutoSizeColLabelSize:
1543 // If col equals to wxGRID_AUTOSIZE value then function autosizes labels column
1544 // instead of data column. Note that this operation may be slow for large
1546 // autosize row height depending on label text
1547 void AutoSizeRowLabelSize( int row
);
1549 // autosize column width depending on label text
1550 void AutoSizeColLabelSize( int col
);
1552 // column won't be resized to be lesser width - this must be called during
1553 // the grid creation because it won't resize the column if it's already
1554 // narrower than the minimal width
1555 void SetColMinimalWidth( int col
, int width
);
1556 void SetRowMinimalHeight( int row
, int width
);
1558 /* These members can be used to query and modify the minimal
1559 * acceptable size of grid rows and columns. Call this function in
1560 * your code which creates the grid if you want to display cells
1561 * with a size smaller than the default acceptable minimum size.
1562 * Like the members SetColMinimalWidth and SetRowMinimalWidth,
1563 * the existing rows or columns will not be checked/resized.
1565 void SetColMinimalAcceptableWidth( int width
);
1566 void SetRowMinimalAcceptableHeight( int width
);
1567 int GetColMinimalAcceptableWidth() const;
1568 int GetRowMinimalAcceptableHeight() const;
1570 void SetDefaultCellBackgroundColour( const wxColour
& );
1571 void SetCellBackgroundColour( int row
, int col
, const wxColour
& );
1572 void SetDefaultCellTextColour( const wxColour
& );
1574 void SetCellTextColour( int row
, int col
, const wxColour
& );
1575 void SetDefaultCellFont( const wxFont
& );
1576 void SetCellFont( int row
, int col
, const wxFont
& );
1577 void SetDefaultCellAlignment( int horiz
, int vert
);
1578 void SetCellAlignment( int row
, int col
, int horiz
, int vert
);
1579 void SetDefaultCellOverflow( bool allow
);
1580 void SetCellOverflow( int row
, int col
, bool allow
);
1581 void SetCellSize( int row
, int col
, int num_rows
, int num_cols
);
1583 // takes ownership of the pointer
1584 void SetDefaultRenderer(wxGridCellRenderer
*renderer
);
1585 void SetCellRenderer(int row
, int col
, wxGridCellRenderer
*renderer
);
1586 wxGridCellRenderer
*GetDefaultRenderer() const;
1587 wxGridCellRenderer
* GetCellRenderer(int row
, int col
) const;
1589 // takes ownership of the pointer
1590 void SetDefaultEditor(wxGridCellEditor
*editor
);
1591 void SetCellEditor(int row
, int col
, wxGridCellEditor
*editor
);
1592 wxGridCellEditor
*GetDefaultEditor() const;
1593 wxGridCellEditor
* GetCellEditor(int row
, int col
) const;
1597 // ------ cell value accessors
1599 wxString
GetCellValue( int row
, int col
) const
1603 return m_table
->GetValue( row
, col
);
1607 return wxEmptyString
;
1611 wxString
GetCellValue( const wxGridCellCoords
& coords
) const
1612 { return GetCellValue( coords
.GetRow(), coords
.GetCol() ); }
1614 void SetCellValue( int row
, int col
, const wxString
& s
);
1615 void SetCellValue( const wxGridCellCoords
& coords
, const wxString
& s
)
1616 { SetCellValue( coords
.GetRow(), coords
.GetCol(), s
); }
1618 // returns true if the cell can't be edited
1619 bool IsReadOnly(int row
, int col
) const;
1621 // make the cell editable/readonly
1622 void SetReadOnly(int row
, int col
, bool isReadOnly
= true);
1624 // ------ select blocks of cells
1626 void SelectRow( int row
, bool addToSelected
= false );
1627 void SelectCol( int col
, bool addToSelected
= false );
1629 void SelectBlock( int topRow
, int leftCol
, int bottomRow
, int rightCol
,
1630 bool addToSelected
= false );
1632 void SelectBlock( const wxGridCellCoords
& topLeft
,
1633 const wxGridCellCoords
& bottomRight
,
1634 bool addToSelected
= false )
1635 { SelectBlock( topLeft
.GetRow(), topLeft
.GetCol(),
1636 bottomRight
.GetRow(), bottomRight
.GetCol(),
1641 bool IsSelection() const;
1643 // ------ deselect blocks or cells
1645 void DeselectRow( int row
);
1646 void DeselectCol( int col
);
1647 void DeselectCell( int row
, int col
);
1649 void ClearSelection();
1651 bool IsInSelection( int row
, int col
) const;
1653 bool IsInSelection( const wxGridCellCoords
& coords
) const
1654 { return IsInSelection( coords
.GetRow(), coords
.GetCol() ); }
1656 wxGridCellCoordsArray
GetSelectedCells() const;
1657 wxGridCellCoordsArray
GetSelectionBlockTopLeft() const;
1658 wxGridCellCoordsArray
GetSelectionBlockBottomRight() const;
1659 wxArrayInt
GetSelectedRows() const;
1660 wxArrayInt
GetSelectedCols() const;
1662 // This function returns the rectangle that encloses the block of cells
1663 // limited by TopLeft and BottomRight cell in device coords and clipped
1664 // to the client size of the grid window.
1666 wxRect
BlockToDeviceRect( const wxGridCellCoords
& topLeft
,
1667 const wxGridCellCoords
& bottomRight
) const;
1669 // Access or update the selection fore/back colours
1670 wxColour
GetSelectionBackground() const
1671 { return m_selectionBackground
; }
1672 wxColour
GetSelectionForeground() const
1673 { return m_selectionForeground
; }
1675 void SetSelectionBackground(const wxColour
& c
) { m_selectionBackground
= c
; }
1676 void SetSelectionForeground(const wxColour
& c
) { m_selectionForeground
= c
; }
1679 // Methods for a registry for mapping data types to Renderers/Editors
1680 void RegisterDataType(const wxString
& typeName
,
1681 wxGridCellRenderer
* renderer
,
1682 wxGridCellEditor
* editor
);
1684 virtual wxGridCellEditor
* GetDefaultEditorForCell(int row
, int col
) const;
1685 wxGridCellEditor
* GetDefaultEditorForCell(const wxGridCellCoords
& c
) const
1686 { return GetDefaultEditorForCell(c
.GetRow(), c
.GetCol()); }
1687 virtual wxGridCellRenderer
* GetDefaultRendererForCell(int row
, int col
) const;
1688 virtual wxGridCellEditor
* GetDefaultEditorForType(const wxString
& typeName
) const;
1689 virtual wxGridCellRenderer
* GetDefaultRendererForType(const wxString
& typeName
) const;
1691 // grid may occupy more space than needed for its rows/columns, this
1692 // function allows to set how big this extra space is
1693 void SetMargins(int extraWidth
, int extraHeight
)
1695 m_extraWidth
= extraWidth
;
1696 m_extraHeight
= extraHeight
;
1701 // Accessors for component windows
1702 wxWindow
* GetGridWindow() const { return (wxWindow
*)m_gridWin
; }
1703 wxWindow
* GetGridRowLabelWindow() const { return (wxWindow
*)m_rowLabelWin
; }
1704 wxWindow
* GetGridColLabelWindow() const { return (wxWindow
*)m_colLabelWin
; }
1705 wxWindow
* GetGridCornerLabelWindow() const { return (wxWindow
*)m_cornerLabelWin
; }
1707 // Allow adjustment of scroll increment. The default is (15, 15).
1708 void SetScrollLineX(int x
) { m_scrollLineX
= x
; }
1709 void SetScrollLineY(int y
) { m_scrollLineY
= y
; }
1710 int GetScrollLineX() const { return m_scrollLineX
; }
1711 int GetScrollLineY() const { return m_scrollLineY
; }
1713 // ------- drag and drop
1714 #if wxUSE_DRAG_AND_DROP
1715 virtual void SetDropTarget(wxDropTarget
*dropTarget
);
1716 #endif // wxUSE_DRAG_AND_DROP
1719 #ifdef WXWIN_COMPATIBILITY_2_8
1720 // ------ For compatibility with previous wxGrid only...
1722 // ************************************************
1723 // ** Don't use these in new code because they **
1724 // ** are liable to disappear in a future **
1726 // ************************************************
1729 wxGrid( wxWindow
*parent
,
1730 int x
, int y
, int w
= wxDefaultCoord
, int h
= wxDefaultCoord
,
1731 long style
= wxWANTS_CHARS
,
1732 const wxString
& name
= wxPanelNameStr
)
1733 : wxScrolledWindow( parent
, wxID_ANY
, wxPoint(x
,y
), wxSize(w
,h
),
1734 (style
|wxWANTS_CHARS
), name
)
1740 void SetCellValue( const wxString
& val
, int row
, int col
)
1741 { SetCellValue( row
, col
, val
); }
1743 void UpdateDimensions()
1744 { CalcDimensions(); }
1746 int GetRows() const { return GetNumberRows(); }
1747 int GetCols() const { return GetNumberCols(); }
1748 int GetCursorRow() const { return GetGridCursorRow(); }
1749 int GetCursorColumn() const { return GetGridCursorCol(); }
1751 int GetScrollPosX() const { return 0; }
1752 int GetScrollPosY() const { return 0; }
1754 void SetScrollX( int WXUNUSED(x
) ) { }
1755 void SetScrollY( int WXUNUSED(y
) ) { }
1757 void SetColumnWidth( int col
, int width
)
1758 { SetColSize( col
, width
); }
1760 int GetColumnWidth( int col
) const
1761 { return GetColSize( col
); }
1763 void SetRowHeight( int row
, int height
)
1764 { SetRowSize( row
, height
); }
1766 // GetRowHeight() is below
1768 int GetViewHeight() const // returned num whole rows visible
1771 int GetViewWidth() const // returned num whole cols visible
1774 void SetLabelSize( int orientation
, int sz
)
1776 if ( orientation
== wxHORIZONTAL
)
1777 SetColLabelSize( sz
);
1779 SetRowLabelSize( sz
);
1782 int GetLabelSize( int orientation
) const
1784 if ( orientation
== wxHORIZONTAL
)
1785 return GetColLabelSize();
1787 return GetRowLabelSize();
1790 void SetLabelAlignment( int orientation
, int align
)
1792 if ( orientation
== wxHORIZONTAL
)
1793 SetColLabelAlignment( align
, -1 );
1795 SetRowLabelAlignment( align
, -1 );
1798 int GetLabelAlignment( int orientation
, int WXUNUSED(align
) ) const
1801 if ( orientation
== wxHORIZONTAL
)
1803 GetColLabelAlignment( &h
, &v
);
1808 GetRowLabelAlignment( &h
, &v
);
1813 void SetLabelValue( int orientation
, const wxString
& val
, int pos
)
1815 if ( orientation
== wxHORIZONTAL
)
1816 SetColLabelValue( pos
, val
);
1818 SetRowLabelValue( pos
, val
);
1821 wxString
GetLabelValue( int orientation
, int pos
) const
1823 if ( orientation
== wxHORIZONTAL
)
1824 return GetColLabelValue( pos
);
1826 return GetRowLabelValue( pos
);
1829 wxFont
GetCellTextFont() const
1830 { return m_defaultCellAttr
->GetFont(); }
1832 wxFont
GetCellTextFont(int WXUNUSED(row
), int WXUNUSED(col
)) const
1833 { return m_defaultCellAttr
->GetFont(); }
1835 void SetCellTextFont(const wxFont
& fnt
)
1836 { SetDefaultCellFont( fnt
); }
1838 void SetCellTextFont(const wxFont
& fnt
, int row
, int col
)
1839 { SetCellFont( row
, col
, fnt
); }
1841 void SetCellTextColour(const wxColour
& val
, int row
, int col
)
1842 { SetCellTextColour( row
, col
, val
); }
1844 void SetCellTextColour(const wxColour
& col
)
1845 { SetDefaultCellTextColour( col
); }
1847 void SetCellBackgroundColour(const wxColour
& col
)
1848 { SetDefaultCellBackgroundColour( col
); }
1850 void SetCellBackgroundColour(const wxColour
& colour
, int row
, int col
)
1851 { SetCellBackgroundColour( row
, col
, colour
); }
1853 bool GetEditable() const { return IsEditable(); }
1854 void SetEditable( bool edit
= true ) { EnableEditing( edit
); }
1855 bool GetEditInPlace() const { return IsCellEditControlEnabled(); }
1857 void SetEditInPlace(bool WXUNUSED(edit
) = true) { }
1859 void SetCellAlignment( int align
, int row
, int col
)
1860 { SetCellAlignment(row
, col
, align
, wxALIGN_CENTER
); }
1861 void SetCellAlignment( int WXUNUSED(align
) ) {}
1862 void SetCellBitmap(wxBitmap
*WXUNUSED(bitmap
), int WXUNUSED(row
), int WXUNUSED(col
))
1864 void SetDividerPen(const wxPen
& WXUNUSED(pen
)) { }
1865 wxPen
& GetDividerPen() const;
1866 void OnActivate(bool WXUNUSED(active
)) {}
1868 // ******** End of compatibility functions **********
1872 // ------ control IDs
1873 enum { wxGRID_CELLCTRL
= 2000,
1876 // ------ control types
1877 enum { wxGRID_TEXTCTRL
= 2100,
1881 #endif // WXWIN_COMPATIBILITY_2_8
1884 // override some base class functions
1885 virtual bool Enable(bool enable
= true);
1886 virtual wxWindow
*GetMainWindowOfCompositeControl()
1887 { return (wxWindow
*)m_gridWin
; }
1890 // implementation only
1891 void CancelMouseCapture();
1894 virtual wxSize
DoGetBestSize() const;
1898 wxGridWindow
*m_gridWin
;
1899 wxGridRowLabelWindow
*m_rowLabelWin
;
1900 wxGridColLabelWindow
*m_colLabelWin
;
1901 wxGridCornerLabelWindow
*m_cornerLabelWin
;
1903 wxGridTableBase
*m_table
;
1909 wxGridCellCoords m_currentCellCoords
;
1911 // the corners of the block being currently selected or wxGridNoCellCoords
1912 wxGridCellCoords m_selectedBlockTopLeft
;
1913 wxGridCellCoords m_selectedBlockBottomRight
;
1915 // when selecting blocks of cells (either from the keyboard using Shift
1916 // with cursor keys, or by dragging the mouse), the selection is anchored
1917 // at m_currentCellCoords which defines one of the corners of the rectangle
1918 // being selected -- and this variable defines the other corner, i.e. it's
1919 // either m_selectedBlockTopLeft or m_selectedBlockBottomRight depending on
1920 // which of them is not m_currentCellCoords
1922 // if no block selection is in process, it is set to wxGridNoCellCoords
1923 wxGridCellCoords m_selectedBlockCorner
;
1925 wxGridSelection
*m_selection
;
1927 wxColour m_selectionBackground
;
1928 wxColour m_selectionForeground
;
1930 // NB: *never* access m_row/col arrays directly because they are created
1931 // on demand, *always* use accessor functions instead!
1933 // init the m_rowHeights/Bottoms arrays with default values
1934 void InitRowHeights();
1936 int m_defaultRowHeight
;
1937 int m_minAcceptableRowHeight
;
1938 wxArrayInt m_rowHeights
;
1939 wxArrayInt m_rowBottoms
;
1941 // init the m_colWidths/Rights arrays
1942 void InitColWidths();
1944 int m_defaultColWidth
;
1945 int m_minAcceptableColWidth
;
1946 wxArrayInt m_colWidths
;
1947 wxArrayInt m_colRights
;
1949 bool m_nativeColumnLabels
;
1951 // get the col/row coords
1952 int GetColWidth(int col
) const;
1953 int GetColLeft(int col
) const;
1954 int GetColRight(int col
) const;
1956 // this function must be public for compatibility...
1958 int GetRowHeight(int row
) const;
1961 int GetRowTop(int row
) const;
1962 int GetRowBottom(int row
) const;
1964 int m_rowLabelWidth
;
1965 int m_colLabelHeight
;
1967 // the size of the margin left to the right and bottom of the cell area
1971 wxColour m_labelBackgroundColour
;
1972 wxColour m_labelTextColour
;
1975 int m_rowLabelHorizAlign
;
1976 int m_rowLabelVertAlign
;
1977 int m_colLabelHorizAlign
;
1978 int m_colLabelVertAlign
;
1979 int m_colLabelTextOrientation
;
1981 bool m_defaultRowLabelValues
;
1982 bool m_defaultColLabelValues
;
1984 wxColour m_gridLineColour
;
1985 bool m_gridLinesEnabled
;
1986 bool m_gridLinesClipHorz
,
1987 m_gridLinesClipVert
;
1988 wxColour m_cellHighlightColour
;
1989 int m_cellHighlightPenWidth
;
1990 int m_cellHighlightROPenWidth
;
1993 // common part of AutoSizeColumn/Row() and GetBestSize()
1994 int SetOrCalcColumnSizes(bool calcOnly
, bool setAsMin
= true);
1995 int SetOrCalcRowSizes(bool calcOnly
, bool setAsMin
= true);
1997 // common part of AutoSizeColumn/Row()
1998 void AutoSizeColOrRow(int n
, bool setAsMin
, wxGridDirection direction
);
2000 // Calculate the minimum acceptable size for labels area
2001 wxCoord
CalcColOrRowLabelAreaMinSize(wxGridDirection direction
);
2003 // if a column has a minimal width, it will be the value for it in this
2005 wxLongToLongHashMap m_colMinWidths
,
2008 // get the minimal width of the given column/row
2009 int GetColMinimalWidth(int col
) const;
2010 int GetRowMinimalHeight(int col
) const;
2012 // do we have some place to store attributes in?
2013 bool CanHaveAttributes() const;
2015 // cell attribute cache (currently we only cache 1, may be will do
2016 // more/better later)
2020 wxGridCellAttr
*attr
;
2023 // invalidates the attribute cache
2024 void ClearAttrCache();
2026 // adds an attribute to cache
2027 void CacheAttr(int row
, int col
, wxGridCellAttr
*attr
) const;
2029 // looks for an attr in cache, returns true if found
2030 bool LookupAttr(int row
, int col
, wxGridCellAttr
**attr
) const;
2032 // looks for the attr in cache, if not found asks the table and caches the
2034 wxGridCellAttr
*GetCellAttr(int row
, int col
) const;
2035 wxGridCellAttr
*GetCellAttr(const wxGridCellCoords
& coords
) const
2036 { return GetCellAttr( coords
.GetRow(), coords
.GetCol() ); }
2038 // the default cell attr object for cells that don't have their own
2039 wxGridCellAttr
* m_defaultCellAttr
;
2046 wxGridTypeRegistry
* m_typeRegistry
;
2050 WXGRID_CURSOR_SELECT_CELL
,
2051 WXGRID_CURSOR_RESIZE_ROW
,
2052 WXGRID_CURSOR_RESIZE_COL
,
2053 WXGRID_CURSOR_SELECT_ROW
,
2054 WXGRID_CURSOR_SELECT_COL
,
2055 WXGRID_CURSOR_MOVE_COL
2058 // this method not only sets m_cursorMode but also sets the correct cursor
2059 // for the given mode and, if captureMouse is not false releases the mouse
2060 // if it was captured and captures it if it must be captured
2062 // for this to work, you should always use it and not set m_cursorMode
2064 void ChangeCursorMode(CursorMode mode
,
2065 wxWindow
*win
= NULL
,
2066 bool captureMouse
= true);
2068 wxWindow
*m_winCapture
; // the window which captured the mouse
2070 // this variable is used not for finding the correct current cursor but
2071 // mainly for finding out what is going to happen if the mouse starts being
2072 // dragged right now
2074 // by default it is WXGRID_CURSOR_SELECT_CELL meaning that nothing else is
2075 // going on, and it is set to one of RESIZE/SELECT/MOVE values while the
2076 // corresponding operation will be started if the user starts dragging the
2077 // mouse from the current position
2078 CursorMode m_cursorMode
;
2085 bool m_canDragRowSize
;
2086 bool m_canDragColSize
;
2087 bool m_canDragColMove
;
2088 bool m_canDragGridSize
;
2091 // the last position (horizontal or vertical depending on whether the user
2092 // is resizing a column or a row) where a row or column separator line was
2093 // dragged by the user or -1 of there is no drag operation in progress
2097 // true if a drag operation is in progress; when this is true,
2098 // m_startDragPos is valid, i.e. not wxDefaultPosition
2101 // the position (in physical coordinates) where the user started dragging
2102 // the mouse or wxDefaultPosition if mouse isn't being dragged
2104 // notice that this can be != wxDefaultPosition while m_isDragging is still
2105 // false because we wait until the mouse is moved some distance away before
2106 // setting m_isDragging to true
2107 wxPoint m_startDragPos
;
2109 bool m_waitForSlowClick
;
2111 wxGridCellCoords m_selectionStart
;
2113 wxCursor m_rowResizeCursor
;
2114 wxCursor m_colResizeCursor
;
2116 bool m_editable
; // applies to whole grid
2117 bool m_cellEditCtrlEnabled
; // is in-place edit currently shown?
2119 int m_scrollLineX
; // X scroll increment
2120 int m_scrollLineY
; // Y scroll increment
2125 void CalcDimensions();
2126 void CalcWindowSizes();
2127 bool Redimension( wxGridTableMessage
& );
2130 // generate the appropriate grid event and return -1 if it was vetoed, 1 if
2131 // it was processed (but not vetoed) and 0 if it wasn't processed
2132 int SendEvent(const wxEventType evtType
,
2135 int SendEvent(const wxEventType evtType
,
2136 const wxGridCellCoords
& coords
,
2138 { return SendEvent(evtType
, coords
.GetRow(), coords
.GetCol(), e
); }
2139 int SendEvent(const wxEventType evtType
, int row
, int col
);
2140 int SendEvent(const wxEventType evtType
, const wxGridCellCoords
& coords
)
2141 { return SendEvent(evtType
, coords
.GetRow(), coords
.GetCol()); }
2142 int SendEvent(const wxEventType evtType
)
2143 { return SendEvent(evtType
, m_currentCellCoords
); }
2145 void OnPaint( wxPaintEvent
& );
2146 void OnSize( wxSizeEvent
& );
2147 void OnKeyDown( wxKeyEvent
& );
2148 void OnKeyUp( wxKeyEvent
& );
2149 void OnChar( wxKeyEvent
& );
2150 void OnEraseBackground( wxEraseEvent
& );
2153 bool SetCurrentCell( const wxGridCellCoords
& coords
);
2154 bool SetCurrentCell( int row
, int col
)
2155 { return SetCurrentCell( wxGridCellCoords(row
, col
) ); }
2158 // this function is called to extend the block being currently selected
2159 // from mouse and keyboard event handlers
2160 void UpdateBlockBeingSelected(int topRow
, int leftCol
,
2161 int bottomRow
, int rightCol
);
2163 void UpdateBlockBeingSelected(const wxGridCellCoords
& topLeft
,
2164 const wxGridCellCoords
& bottomRight
)
2165 { UpdateBlockBeingSelected(topLeft
.GetRow(), topLeft
.GetCol(),
2166 bottomRight
.GetRow(), bottomRight
.GetCol()); }
2168 // ------ functions to get/send data (see also public functions)
2170 bool GetModelValues();
2171 bool SetModelValues();
2173 friend class WXDLLIMPEXP_FWD_ADV wxGridSelection
;
2174 friend class wxGridRowOperations
;
2175 friend class wxGridColumnOperations
;
2177 // they call our private Process{{Corner,Col,Row}Label,GridCell}MouseEvent()
2178 friend class wxGridCornerLabelWindow
;
2179 friend class wxGridColLabelWindow
;
2180 friend class wxGridRowLabelWindow
;
2181 friend class wxGridWindow
;
2184 // implement wxScrolledWindow method to return m_gridWin size
2185 virtual wxSize
GetSizeAvailableForScrollTarget(const wxSize
& size
);
2187 // redraw the grid lines, should be called after changing their attributes
2188 void RedrawGridLines();
2190 // common part of Clip{Horz,Vert}GridLines
2191 void DoClipGridLines(bool& var
, bool clip
);
2194 // event handlers and their helpers
2195 // --------------------------------
2197 // process mouse drag event in WXGRID_CURSOR_SELECT_CELL mode
2198 void DoGridCellDrag(wxMouseEvent
& event
,
2199 const wxGridCellCoords
& coords
,
2202 // process row/column resizing drag event
2203 void DoGridLineDrag(wxMouseEvent
& event
, const wxGridOperations
& oper
);
2205 // process mouse drag event in the grid window
2206 void DoGridDragEvent(wxMouseEvent
& event
, const wxGridCellCoords
& coords
);
2208 // process different clicks on grid cells
2209 void DoGridCellLeftDown(wxMouseEvent
& event
,
2210 const wxGridCellCoords
& coords
,
2211 const wxPoint
& pos
);
2212 void DoGridCellLeftDClick(wxMouseEvent
& event
,
2213 const wxGridCellCoords
& coords
,
2214 const wxPoint
& pos
);
2215 void DoGridCellLeftUp(wxMouseEvent
& event
, const wxGridCellCoords
& coords
);
2217 // process movement (but not dragging) event in the grid cell area
2218 void DoGridMouseMoveEvent(wxMouseEvent
& event
,
2219 const wxGridCellCoords
& coords
,
2220 const wxPoint
& pos
);
2222 // process mouse events in the grid window
2223 void ProcessGridCellMouseEvent(wxMouseEvent
& event
);
2225 // process mouse events in the row/column labels/corner windows
2226 void ProcessRowLabelMouseEvent(wxMouseEvent
& event
);
2227 void ProcessColLabelMouseEvent(wxMouseEvent
& event
);
2228 void ProcessCornerLabelMouseEvent(wxMouseEvent
& event
);
2230 void DoEndDragResizeRow();
2231 void DoEndDragResizeCol();
2232 void DoEndDragMoveCol();
2235 // common implementations of methods defined for both rows and columns
2236 void DeselectLine(int line
, const wxGridOperations
& oper
);
2237 void DoEndDragResizeLine(const wxGridOperations
& oper
);
2238 int PosToLine(int pos
, bool clipToMinMax
,
2239 const wxGridOperations
& oper
) const;
2240 int PosToEdgeOfLine(int pos
, const wxGridOperations
& oper
) const;
2242 bool DoMoveCursor(bool expandSelection
,
2243 const wxGridDirectionOperations
& diroper
);
2244 bool DoMoveCursorByPage(const wxGridDirectionOperations
& diroper
);
2245 bool DoMoveCursorByBlock(bool expandSelection
,
2246 const wxGridDirectionOperations
& diroper
);
2247 void AdvanceToNextNonEmpty(wxGridCellCoords
& coords
,
2248 const wxGridDirectionOperations
& diroper
);
2250 // common part of {Insert,Delete}{Rows,Cols}
2251 bool DoModifyLines(bool (wxGridTableBase::*funcModify
)(size_t, size_t),
2252 int pos
, int num
, bool updateLabels
);
2253 // Append{Rows,Cols} is a bit different because of one less parameter
2254 bool DoAppendLines(bool (wxGridTableBase::*funcAppend
)(size_t),
2255 int num
, bool updateLabels
);
2257 DECLARE_DYNAMIC_CLASS( wxGrid
)
2258 DECLARE_EVENT_TABLE()
2259 DECLARE_NO_COPY_CLASS(wxGrid
)
2262 // ----------------------------------------------------------------------------
2263 // wxGridUpdateLocker prevents updates to a grid during its lifetime
2264 // ----------------------------------------------------------------------------
2266 class WXDLLIMPEXP_ADV wxGridUpdateLocker
2269 // if the pointer is NULL, Create() can be called later
2270 wxGridUpdateLocker(wxGrid
*grid
= NULL
)
2275 // can be called if ctor was used with a NULL pointer, must not be called
2277 void Create(wxGrid
*grid
)
2279 wxASSERT_MSG( !m_grid
, _T("shouldn't be called more than once") );
2284 ~wxGridUpdateLocker()
2291 void Init(wxGrid
*grid
)
2295 m_grid
->BeginBatch();
2300 DECLARE_NO_COPY_CLASS(wxGridUpdateLocker
)
2303 // ----------------------------------------------------------------------------
2304 // Grid event class and event types
2305 // ----------------------------------------------------------------------------
2307 class WXDLLIMPEXP_ADV wxGridEvent
: public wxNotifyEvent
,
2308 public wxKeyboardState
2314 Init(-1, -1, -1, -1, false);
2320 int row
= -1, int col
= -1,
2321 int x
= -1, int y
= -1,
2323 const wxKeyboardState
& kbd
= wxKeyboardState())
2324 : wxNotifyEvent(type
, id
),
2325 wxKeyboardState(kbd
)
2327 Init(row
, col
, x
, y
, sel
);
2328 SetEventObject(obj
);
2331 // explicitly specifying inline allows gcc < 3.4 to
2332 // handle the deprecation attribute even in the constructor.
2333 wxDEPRECATED( inline
2341 bool shift
= false, bool alt
= false, bool meta
= false));
2343 virtual int GetRow() { return m_row
; }
2344 virtual int GetCol() { return m_col
; }
2345 wxPoint
GetPosition() { return wxPoint( m_x
, m_y
); }
2346 bool Selecting() { return m_selecting
; }
2348 virtual wxEvent
*Clone() const { return new wxGridEvent(*this); }
2358 void Init(int row
, int col
, int x
, int y
, bool sel
)
2367 DECLARE_DYNAMIC_CLASS_NO_ASSIGN(wxGridEvent
)
2370 class WXDLLIMPEXP_ADV wxGridSizeEvent
: public wxNotifyEvent
,
2371 public wxKeyboardState
2380 wxGridSizeEvent(int id
,
2384 int x
= -1, int y
= -1,
2385 const wxKeyboardState
& kbd
= wxKeyboardState())
2386 : wxNotifyEvent(type
, id
),
2387 wxKeyboardState(kbd
)
2389 Init(rowOrCol
, x
, y
);
2391 SetEventObject(obj
);
2394 wxDEPRECATED( inline
2395 wxGridSizeEvent(int id
,
2403 bool meta
= false) );
2405 int GetRowOrCol() { return m_rowOrCol
; }
2406 wxPoint
GetPosition() { return wxPoint( m_x
, m_y
); }
2408 virtual wxEvent
*Clone() const { return new wxGridSizeEvent(*this); }
2416 void Init(int rowOrCol
, int x
, int y
)
2418 m_rowOrCol
= rowOrCol
;
2423 DECLARE_DYNAMIC_CLASS_NO_ASSIGN(wxGridSizeEvent
)
2427 class WXDLLIMPEXP_ADV wxGridRangeSelectEvent
: public wxNotifyEvent
,
2428 public wxKeyboardState
2431 wxGridRangeSelectEvent()
2434 Init(wxGridNoCellCoords
, wxGridNoCellCoords
, false);
2437 wxGridRangeSelectEvent(int id
,
2440 const wxGridCellCoords
& topLeft
,
2441 const wxGridCellCoords
& bottomRight
,
2443 const wxKeyboardState
& kbd
= wxKeyboardState())
2444 : wxNotifyEvent(type
, id
),
2445 wxKeyboardState(kbd
)
2447 Init(topLeft
, bottomRight
, sel
);
2449 SetEventObject(obj
);
2452 wxDEPRECATED( inline
2453 wxGridRangeSelectEvent(int id
,
2456 const wxGridCellCoords
& topLeft
,
2457 const wxGridCellCoords
& bottomRight
,
2462 bool meta
= false) );
2464 wxGridCellCoords
GetTopLeftCoords() { return m_topLeft
; }
2465 wxGridCellCoords
GetBottomRightCoords() { return m_bottomRight
; }
2466 int GetTopRow() { return m_topLeft
.GetRow(); }
2467 int GetBottomRow() { return m_bottomRight
.GetRow(); }
2468 int GetLeftCol() { return m_topLeft
.GetCol(); }
2469 int GetRightCol() { return m_bottomRight
.GetCol(); }
2470 bool Selecting() { return m_selecting
; }
2472 virtual wxEvent
*Clone() const { return new wxGridRangeSelectEvent(*this); }
2475 void Init(const wxGridCellCoords
& topLeft
,
2476 const wxGridCellCoords
& bottomRight
,
2479 m_topLeft
= topLeft
;
2480 m_bottomRight
= bottomRight
;
2481 m_selecting
= selecting
;
2484 wxGridCellCoords m_topLeft
;
2485 wxGridCellCoords m_bottomRight
;
2488 DECLARE_DYNAMIC_CLASS_NO_ASSIGN(wxGridRangeSelectEvent
)
2492 class WXDLLIMPEXP_ADV wxGridEditorCreatedEvent
: public wxCommandEvent
2495 wxGridEditorCreatedEvent()
2503 wxGridEditorCreatedEvent(int id
, wxEventType type
, wxObject
* obj
,
2504 int row
, int col
, wxControl
* ctrl
);
2506 int GetRow() { return m_row
; }
2507 int GetCol() { return m_col
; }
2508 wxControl
* GetControl() { return m_ctrl
; }
2509 void SetRow(int row
) { m_row
= row
; }
2510 void SetCol(int col
) { m_col
= col
; }
2511 void SetControl(wxControl
* ctrl
) { m_ctrl
= ctrl
; }
2513 virtual wxEvent
*Clone() const { return new wxGridEditorCreatedEvent(*this); }
2520 DECLARE_DYNAMIC_CLASS_NO_ASSIGN(wxGridEditorCreatedEvent
)
2524 extern WXDLLIMPEXP_ADV
const wxEventType wxEVT_GRID_CELL_LEFT_CLICK
;
2525 extern WXDLLIMPEXP_ADV
const wxEventType wxEVT_GRID_CELL_RIGHT_CLICK
;
2526 extern WXDLLIMPEXP_ADV
const wxEventType wxEVT_GRID_CELL_LEFT_DCLICK
;
2527 extern WXDLLIMPEXP_ADV
const wxEventType wxEVT_GRID_CELL_RIGHT_DCLICK
;
2528 extern WXDLLIMPEXP_ADV
const wxEventType wxEVT_GRID_LABEL_LEFT_CLICK
;
2529 extern WXDLLIMPEXP_ADV
const wxEventType wxEVT_GRID_LABEL_RIGHT_CLICK
;
2530 extern WXDLLIMPEXP_ADV
const wxEventType wxEVT_GRID_LABEL_LEFT_DCLICK
;
2531 extern WXDLLIMPEXP_ADV
const wxEventType wxEVT_GRID_LABEL_RIGHT_DCLICK
;
2532 extern WXDLLIMPEXP_ADV
const wxEventType wxEVT_GRID_ROW_SIZE
;
2533 extern WXDLLIMPEXP_ADV
const wxEventType wxEVT_GRID_COL_SIZE
;
2534 extern WXDLLIMPEXP_ADV
const wxEventType wxEVT_GRID_RANGE_SELECT
;
2535 extern WXDLLIMPEXP_ADV
const wxEventType wxEVT_GRID_CELL_CHANGE
;
2536 extern WXDLLIMPEXP_ADV
const wxEventType wxEVT_GRID_SELECT_CELL
;
2537 extern WXDLLIMPEXP_ADV
const wxEventType wxEVT_GRID_EDITOR_SHOWN
;
2538 extern WXDLLIMPEXP_ADV
const wxEventType wxEVT_GRID_EDITOR_HIDDEN
;
2539 extern WXDLLIMPEXP_ADV
const wxEventType wxEVT_GRID_EDITOR_CREATED
;
2540 extern WXDLLIMPEXP_ADV
const wxEventType wxEVT_GRID_CELL_BEGIN_DRAG
;
2541 extern WXDLLIMPEXP_ADV
const wxEventType wxEVT_GRID_COL_MOVE
;
2544 typedef void (wxEvtHandler::*wxGridEventFunction
)(wxGridEvent
&);
2545 typedef void (wxEvtHandler::*wxGridSizeEventFunction
)(wxGridSizeEvent
&);
2546 typedef void (wxEvtHandler::*wxGridRangeSelectEventFunction
)(wxGridRangeSelectEvent
&);
2547 typedef void (wxEvtHandler::*wxGridEditorCreatedEventFunction
)(wxGridEditorCreatedEvent
&);
2549 #define wxGridEventHandler(func) \
2550 (wxObjectEventFunction)(wxEventFunction)wxStaticCastEvent(wxGridEventFunction, &func)
2552 #define wxGridSizeEventHandler(func) \
2553 (wxObjectEventFunction)(wxEventFunction)wxStaticCastEvent(wxGridSizeEventFunction, &func)
2555 #define wxGridRangeSelectEventHandler(func) \
2556 (wxObjectEventFunction)(wxEventFunction)wxStaticCastEvent(wxGridRangeSelectEventFunction, &func)
2558 #define wxGridEditorCreatedEventHandler(func) \
2559 (wxObjectEventFunction)(wxEventFunction)wxStaticCastEvent(wxGridEditorCreatedEventFunction, &func)
2561 #define wx__DECLARE_GRIDEVT(evt, id, fn) \
2562 wx__DECLARE_EVT1(wxEVT_GRID_ ## evt, id, wxGridEventHandler(fn))
2564 #define wx__DECLARE_GRIDSIZEEVT(evt, id, fn) \
2565 wx__DECLARE_EVT1(wxEVT_GRID_ ## evt, id, wxGridSizeEventHandler(fn))
2567 #define wx__DECLARE_GRIDRANGESELEVT(evt, id, fn) \
2568 wx__DECLARE_EVT1(wxEVT_GRID_ ## evt, id, wxGridRangeSelectEventHandler(fn))
2570 #define wx__DECLARE_GRIDEDITOREVT(evt, id, fn) \
2571 wx__DECLARE_EVT1(wxEVT_GRID_ ## evt, id, wxGridEditorCreatedEventHandler(fn))
2573 #define EVT_GRID_CMD_CELL_LEFT_CLICK(id, fn) wx__DECLARE_GRIDEVT(CELL_LEFT_CLICK, id, fn)
2574 #define EVT_GRID_CMD_CELL_RIGHT_CLICK(id, fn) wx__DECLARE_GRIDEVT(CELL_RIGHT_CLICK, id, fn)
2575 #define EVT_GRID_CMD_CELL_LEFT_DCLICK(id, fn) wx__DECLARE_GRIDEVT(CELL_LEFT_DCLICK, id, fn)
2576 #define EVT_GRID_CMD_CELL_RIGHT_DCLICK(id, fn) wx__DECLARE_GRIDEVT(CELL_RIGHT_DCLICK, id, fn)
2577 #define EVT_GRID_CMD_LABEL_LEFT_CLICK(id, fn) wx__DECLARE_GRIDEVT(LABEL_LEFT_CLICK, id, fn)
2578 #define EVT_GRID_CMD_LABEL_RIGHT_CLICK(id, fn) wx__DECLARE_GRIDEVT(LABEL_RIGHT_CLICK, id, fn)
2579 #define EVT_GRID_CMD_LABEL_LEFT_DCLICK(id, fn) wx__DECLARE_GRIDEVT(LABEL_LEFT_DCLICK, id, fn)
2580 #define EVT_GRID_CMD_LABEL_RIGHT_DCLICK(id, fn) wx__DECLARE_GRIDEVT(LABEL_RIGHT_DCLICK, id, fn)
2581 #define EVT_GRID_CMD_ROW_SIZE(id, fn) wx__DECLARE_GRIDSIZEEVT(ROW_SIZE, id, fn)
2582 #define EVT_GRID_CMD_COL_SIZE(id, fn) wx__DECLARE_GRIDSIZEEVT(COL_SIZE, id, fn)
2583 #define EVT_GRID_CMD_COL_MOVE(id, fn) wx__DECLARE_GRIDEVT(COL_MOVE, id, fn)
2584 #define EVT_GRID_CMD_RANGE_SELECT(id, fn) wx__DECLARE_GRIDRANGESELEVT(RANGE_SELECT, id, fn)
2585 #define EVT_GRID_CMD_CELL_CHANGE(id, fn) wx__DECLARE_GRIDEVT(CELL_CHANGE, id, fn)
2586 #define EVT_GRID_CMD_SELECT_CELL(id, fn) wx__DECLARE_GRIDEVT(SELECT_CELL, id, fn)
2587 #define EVT_GRID_CMD_EDITOR_SHOWN(id, fn) wx__DECLARE_GRIDEVT(EDITOR_SHOWN, id, fn)
2588 #define EVT_GRID_CMD_EDITOR_HIDDEN(id, fn) wx__DECLARE_GRIDEVT(EDITOR_HIDDEN, id, fn)
2589 #define EVT_GRID_CMD_EDITOR_CREATED(id, fn) wx__DECLARE_GRIDEDITOREVT(EDITOR_CREATED, id, fn)
2590 #define EVT_GRID_CMD_CELL_BEGIN_DRAG(id, fn) wx__DECLARE_GRIDEVT(CELL_BEGIN_DRAG, id, fn)
2592 // same as above but for any id (exists mainly for backwards compatibility but
2593 // then it's also true that you rarely have multiple grid in the same window)
2594 #define EVT_GRID_CELL_LEFT_CLICK(fn) EVT_GRID_CMD_CELL_LEFT_CLICK(wxID_ANY, fn)
2595 #define EVT_GRID_CELL_RIGHT_CLICK(fn) EVT_GRID_CMD_CELL_RIGHT_CLICK(wxID_ANY, fn)
2596 #define EVT_GRID_CELL_LEFT_DCLICK(fn) EVT_GRID_CMD_CELL_LEFT_DCLICK(wxID_ANY, fn)
2597 #define EVT_GRID_CELL_RIGHT_DCLICK(fn) EVT_GRID_CMD_CELL_RIGHT_DCLICK(wxID_ANY, fn)
2598 #define EVT_GRID_LABEL_LEFT_CLICK(fn) EVT_GRID_CMD_LABEL_LEFT_CLICK(wxID_ANY, fn)
2599 #define EVT_GRID_LABEL_RIGHT_CLICK(fn) EVT_GRID_CMD_LABEL_RIGHT_CLICK(wxID_ANY, fn)
2600 #define EVT_GRID_LABEL_LEFT_DCLICK(fn) EVT_GRID_CMD_LABEL_LEFT_DCLICK(wxID_ANY, fn)
2601 #define EVT_GRID_LABEL_RIGHT_DCLICK(fn) EVT_GRID_CMD_LABEL_RIGHT_DCLICK(wxID_ANY, fn)
2602 #define EVT_GRID_ROW_SIZE(fn) EVT_GRID_CMD_ROW_SIZE(wxID_ANY, fn)
2603 #define EVT_GRID_COL_SIZE(fn) EVT_GRID_CMD_COL_SIZE(wxID_ANY, fn)
2604 #define EVT_GRID_COL_MOVE(fn) EVT_GRID_CMD_COL_MOVE(wxID_ANY, fn)
2605 #define EVT_GRID_RANGE_SELECT(fn) EVT_GRID_CMD_RANGE_SELECT(wxID_ANY, fn)
2606 #define EVT_GRID_CELL_CHANGE(fn) EVT_GRID_CMD_CELL_CHANGE(wxID_ANY, fn)
2607 #define EVT_GRID_SELECT_CELL(fn) EVT_GRID_CMD_SELECT_CELL(wxID_ANY, fn)
2608 #define EVT_GRID_EDITOR_SHOWN(fn) EVT_GRID_CMD_EDITOR_SHOWN(wxID_ANY, fn)
2609 #define EVT_GRID_EDITOR_HIDDEN(fn) EVT_GRID_CMD_EDITOR_HIDDEN(wxID_ANY, fn)
2610 #define EVT_GRID_EDITOR_CREATED(fn) EVT_GRID_CMD_EDITOR_CREATED(wxID_ANY, fn)
2611 #define EVT_GRID_CELL_BEGIN_DRAG(fn) EVT_GRID_CMD_CELL_BEGIN_DRAG(wxID_ANY, fn)
2613 #if 0 // TODO: implement these ? others ?
2615 extern const int wxEVT_GRID_CREATE_CELL
;
2616 extern const int wxEVT_GRID_CHANGE_LABELS
;
2617 extern const int wxEVT_GRID_CHANGE_SEL_LABEL
;
2619 #define EVT_GRID_CREATE_CELL(fn) DECLARE_EVENT_TABLE_ENTRY( wxEVT_GRID_CREATE_CELL, wxID_ANY, wxID_ANY, (wxObjectEventFunction) (wxEventFunction) wxStaticCastEvent( wxGridEventFunction, &fn ), NULL ),
2620 #define EVT_GRID_CHANGE_LABELS(fn) DECLARE_EVENT_TABLE_ENTRY( wxEVT_GRID_CHANGE_LABELS, wxID_ANY, wxID_ANY, (wxObjectEventFunction) (wxEventFunction) wxStaticCastEvent( wxGridEventFunction, &fn ), NULL ),
2621 #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 ),
2625 #endif // wxUSE_GRID
2626 #endif // _WX_GENERIC_GRID_H_