1 ///////////////////////////////////////////////////////////////////////////
2 // Name: generic/grid.cpp
3 // Purpose: wxGrid and related classes
4 // Author: Michael Bedward (based on code by Julian Smart, Robin Dunn)
5 // Modified by: Robin Dunn, Vadim Zeitlin
8 // Copyright: (c) Michael Bedward (mbedward@ozemail.com.au)
9 // Licence: wxWindows licence
10 /////////////////////////////////////////////////////////////////////////////
12 // ============================================================================
14 // ============================================================================
16 // ----------------------------------------------------------------------------
18 // ----------------------------------------------------------------------------
21 #pragma implementation "grid.h"
24 // For compilers that support precompilatixon, includes "wx/wx.h".
25 #include "wx/wxprec.h"
35 #if !defined(wxUSE_NEW_GRID) || !(wxUSE_NEW_GRID)
37 #else // wxUSE_NEW_GRID
41 #include "wx/dcclient.h"
42 #include "wx/settings.h"
44 #include "wx/textctrl.h"
45 #include "wx/checkbox.h"
46 #include "wx/combobox.h"
47 #include "wx/valtext.h"
50 #include "wx/textfile.h"
51 #include "wx/spinctrl.h"
52 #include "wx/tokenzr.h"
55 #include "wx/generic/gridsel.h"
57 #if defined(__WXMOTIF__)
58 #define WXUNUSED_MOTIF(identifier) WXUNUSED(identifier)
60 #define WXUNUSED_MOTIF(identifier) identifier
63 #if defined(__WXGTK__)
64 #define WXUNUSED_GTK(identifier) WXUNUSED(identifier)
66 #define WXUNUSED_GTK(identifier) identifier
69 // Required for wxIs... functions
72 // ----------------------------------------------------------------------------
74 // ----------------------------------------------------------------------------
76 WX_DEFINE_EXPORTED_ARRAY(wxGridCellAttr
*, wxArrayAttrs
);
78 struct wxGridCellWithAttr
80 wxGridCellWithAttr(int row
, int col
, wxGridCellAttr
*attr_
)
81 : coords(row
, col
), attr(attr_
)
90 wxGridCellCoords coords
;
94 WX_DECLARE_EXPORTED_OBJARRAY(wxGridCellWithAttr
, wxGridCellWithAttrArray
);
96 #include "wx/arrimpl.cpp"
98 WX_DEFINE_OBJARRAY(wxGridCellCoordsArray
)
99 WX_DEFINE_OBJARRAY(wxGridCellWithAttrArray
)
101 // ----------------------------------------------------------------------------
103 // ----------------------------------------------------------------------------
105 DEFINE_EVENT_TYPE(wxEVT_GRID_CELL_LEFT_CLICK
)
106 DEFINE_EVENT_TYPE(wxEVT_GRID_CELL_RIGHT_CLICK
)
107 DEFINE_EVENT_TYPE(wxEVT_GRID_CELL_LEFT_DCLICK
)
108 DEFINE_EVENT_TYPE(wxEVT_GRID_CELL_RIGHT_DCLICK
)
109 DEFINE_EVENT_TYPE(wxEVT_GRID_LABEL_LEFT_CLICK
)
110 DEFINE_EVENT_TYPE(wxEVT_GRID_LABEL_RIGHT_CLICK
)
111 DEFINE_EVENT_TYPE(wxEVT_GRID_LABEL_LEFT_DCLICK
)
112 DEFINE_EVENT_TYPE(wxEVT_GRID_LABEL_RIGHT_DCLICK
)
113 DEFINE_EVENT_TYPE(wxEVT_GRID_ROW_SIZE
)
114 DEFINE_EVENT_TYPE(wxEVT_GRID_COL_SIZE
)
115 DEFINE_EVENT_TYPE(wxEVT_GRID_RANGE_SELECT
)
116 DEFINE_EVENT_TYPE(wxEVT_GRID_CELL_CHANGE
)
117 DEFINE_EVENT_TYPE(wxEVT_GRID_SELECT_CELL
)
118 DEFINE_EVENT_TYPE(wxEVT_GRID_EDITOR_SHOWN
)
119 DEFINE_EVENT_TYPE(wxEVT_GRID_EDITOR_HIDDEN
)
120 DEFINE_EVENT_TYPE(wxEVT_GRID_EDITOR_CREATED
)
122 // ----------------------------------------------------------------------------
124 // ----------------------------------------------------------------------------
126 class WXDLLEXPORT wxGridRowLabelWindow
: public wxWindow
129 wxGridRowLabelWindow() { m_owner
= (wxGrid
*)NULL
; }
130 wxGridRowLabelWindow( wxGrid
*parent
, wxWindowID id
,
131 const wxPoint
&pos
, const wxSize
&size
);
136 void OnPaint( wxPaintEvent
& event
);
137 void OnMouseEvent( wxMouseEvent
& event
);
138 void OnMouseWheel( wxMouseEvent
& event
);
139 void OnKeyDown( wxKeyEvent
& event
);
140 void OnKeyUp( wxKeyEvent
& );
142 DECLARE_DYNAMIC_CLASS(wxGridRowLabelWindow
)
143 DECLARE_EVENT_TABLE()
147 class WXDLLEXPORT wxGridColLabelWindow
: public wxWindow
150 wxGridColLabelWindow() { m_owner
= (wxGrid
*)NULL
; }
151 wxGridColLabelWindow( wxGrid
*parent
, wxWindowID id
,
152 const wxPoint
&pos
, const wxSize
&size
);
157 void OnPaint( wxPaintEvent
&event
);
158 void OnMouseEvent( wxMouseEvent
& event
);
159 void OnMouseWheel( wxMouseEvent
& event
);
160 void OnKeyDown( wxKeyEvent
& event
);
161 void OnKeyUp( wxKeyEvent
& );
163 DECLARE_DYNAMIC_CLASS(wxGridColLabelWindow
)
164 DECLARE_EVENT_TABLE()
168 class WXDLLEXPORT wxGridCornerLabelWindow
: public wxWindow
171 wxGridCornerLabelWindow() { m_owner
= (wxGrid
*)NULL
; }
172 wxGridCornerLabelWindow( wxGrid
*parent
, wxWindowID id
,
173 const wxPoint
&pos
, const wxSize
&size
);
178 void OnMouseEvent( wxMouseEvent
& event
);
179 void OnMouseWheel( wxMouseEvent
& event
);
180 void OnKeyDown( wxKeyEvent
& event
);
181 void OnKeyUp( wxKeyEvent
& );
182 void OnPaint( wxPaintEvent
& event
);
184 DECLARE_DYNAMIC_CLASS(wxGridCornerLabelWindow
)
185 DECLARE_EVENT_TABLE()
188 class WXDLLEXPORT wxGridWindow
: public wxWindow
193 m_owner
= (wxGrid
*)NULL
;
194 m_rowLabelWin
= (wxGridRowLabelWindow
*)NULL
;
195 m_colLabelWin
= (wxGridColLabelWindow
*)NULL
;
198 wxGridWindow( wxGrid
*parent
,
199 wxGridRowLabelWindow
*rowLblWin
,
200 wxGridColLabelWindow
*colLblWin
,
201 wxWindowID id
, const wxPoint
&pos
, const wxSize
&size
);
204 void ScrollWindow( int dx
, int dy
, const wxRect
*rect
);
208 wxGridRowLabelWindow
*m_rowLabelWin
;
209 wxGridColLabelWindow
*m_colLabelWin
;
211 void OnPaint( wxPaintEvent
&event
);
212 void OnMouseWheel( wxMouseEvent
& event
);
213 void OnMouseEvent( wxMouseEvent
& event
);
214 void OnKeyDown( wxKeyEvent
& );
215 void OnKeyUp( wxKeyEvent
& );
216 void OnEraseBackground( wxEraseEvent
& );
219 DECLARE_DYNAMIC_CLASS(wxGridWindow
)
220 DECLARE_EVENT_TABLE()
225 class wxGridCellEditorEvtHandler
: public wxEvtHandler
228 wxGridCellEditorEvtHandler()
229 : m_grid(0), m_editor(0)
231 wxGridCellEditorEvtHandler(wxGrid
* grid
, wxGridCellEditor
* editor
)
232 : m_grid(grid
), m_editor(editor
)
235 void OnKeyDown(wxKeyEvent
& event
);
236 void OnChar(wxKeyEvent
& event
);
240 wxGridCellEditor
* m_editor
;
241 DECLARE_DYNAMIC_CLASS(wxGridCellEditorEvtHandler
)
242 DECLARE_EVENT_TABLE()
246 IMPLEMENT_DYNAMIC_CLASS( wxGridCellEditorEvtHandler
, wxEvtHandler
)
247 BEGIN_EVENT_TABLE( wxGridCellEditorEvtHandler
, wxEvtHandler
)
248 EVT_KEY_DOWN( wxGridCellEditorEvtHandler::OnKeyDown
)
249 EVT_CHAR( wxGridCellEditorEvtHandler::OnChar
)
254 // ----------------------------------------------------------------------------
255 // the internal data representation used by wxGridCellAttrProvider
256 // ----------------------------------------------------------------------------
258 // this class stores attributes set for cells
259 class WXDLLEXPORT wxGridCellAttrData
262 void SetAttr(wxGridCellAttr
*attr
, int row
, int col
);
263 wxGridCellAttr
*GetAttr(int row
, int col
) const;
264 void UpdateAttrRows( size_t pos
, int numRows
);
265 void UpdateAttrCols( size_t pos
, int numCols
);
268 // searches for the attr for given cell, returns wxNOT_FOUND if not found
269 int FindIndex(int row
, int col
) const;
271 wxGridCellWithAttrArray m_attrs
;
274 // this class stores attributes set for rows or columns
275 class WXDLLEXPORT wxGridRowOrColAttrData
278 // empty ctor to suppress warnings
279 wxGridRowOrColAttrData() { }
280 ~wxGridRowOrColAttrData();
282 void SetAttr(wxGridCellAttr
*attr
, int rowOrCol
);
283 wxGridCellAttr
*GetAttr(int rowOrCol
) const;
284 void UpdateAttrRowsOrCols( size_t pos
, int numRowsOrCols
);
287 wxArrayInt m_rowsOrCols
;
288 wxArrayAttrs m_attrs
;
291 // NB: this is just a wrapper around 3 objects: one which stores cell
292 // attributes, and 2 others for row/col ones
293 class WXDLLEXPORT wxGridCellAttrProviderData
296 wxGridCellAttrData m_cellAttrs
;
297 wxGridRowOrColAttrData m_rowAttrs
,
302 // ----------------------------------------------------------------------------
303 // data structures used for the data type registry
304 // ----------------------------------------------------------------------------
306 struct wxGridDataTypeInfo
308 wxGridDataTypeInfo(const wxString
& typeName
,
309 wxGridCellRenderer
* renderer
,
310 wxGridCellEditor
* editor
)
311 : m_typeName(typeName
), m_renderer(renderer
), m_editor(editor
)
314 ~wxGridDataTypeInfo()
316 wxSafeDecRef(m_renderer
);
317 wxSafeDecRef(m_editor
);
321 wxGridCellRenderer
* m_renderer
;
322 wxGridCellEditor
* m_editor
;
326 WX_DEFINE_EXPORTED_ARRAY(wxGridDataTypeInfo
*, wxGridDataTypeInfoArray
);
329 class WXDLLEXPORT wxGridTypeRegistry
332 wxGridTypeRegistry() {}
333 ~wxGridTypeRegistry();
335 void RegisterDataType(const wxString
& typeName
,
336 wxGridCellRenderer
* renderer
,
337 wxGridCellEditor
* editor
);
339 // find one of already registered data types
340 int FindRegisteredDataType(const wxString
& typeName
);
342 // try to FindRegisteredDataType(), if this fails and typeName is one of
343 // standard typenames, register it and return its index
344 int FindDataType(const wxString
& typeName
);
346 // try to FindDataType(), if it fails see if it is not one of already
347 // registered data types with some params in which case clone the
348 // registered data type and set params for it
349 int FindOrCloneDataType(const wxString
& typeName
);
351 wxGridCellRenderer
* GetRenderer(int index
);
352 wxGridCellEditor
* GetEditor(int index
);
355 wxGridDataTypeInfoArray m_typeinfo
;
358 // ----------------------------------------------------------------------------
359 // conditional compilation
360 // ----------------------------------------------------------------------------
362 #ifndef WXGRID_DRAW_LINES
363 #define WXGRID_DRAW_LINES 1
366 // ----------------------------------------------------------------------------
368 // ----------------------------------------------------------------------------
370 //#define DEBUG_ATTR_CACHE
371 #ifdef DEBUG_ATTR_CACHE
372 static size_t gs_nAttrCacheHits
= 0;
373 static size_t gs_nAttrCacheMisses
= 0;
374 #endif // DEBUG_ATTR_CACHE
376 // ----------------------------------------------------------------------------
378 // ----------------------------------------------------------------------------
380 wxGridCellCoords
wxGridNoCellCoords( -1, -1 );
381 wxRect
wxGridNoCellRect( -1, -1, -1, -1 );
384 // TODO: this doesn't work at all, grid cells have different sizes and approx
385 // calculations don't work as because of the size mismatch scrollbars
386 // sometimes fail to be shown when they should be or vice versa
388 // The scroll bars may be a little flakey once in a while, but that is
389 // surely much less horrible than having scroll lines of only 1!!!
392 // Well, it's still seriously broken so it might be better but needs
395 static const size_t GRID_SCROLL_LINE_X
= 15; // 1;
396 static const size_t GRID_SCROLL_LINE_Y
= GRID_SCROLL_LINE_X
;
398 // the size of hash tables used a bit everywhere (the max number of elements
399 // in these hash tables is the number of rows/columns)
400 static const int GRID_HASH_SIZE
= 100;
402 // ----------------------------------------------------------------------------
404 // ----------------------------------------------------------------------------
406 static inline int GetScrollX(int x
)
408 return (x
+ GRID_SCROLL_LINE_X
- 1) / GRID_SCROLL_LINE_X
;
411 static inline int GetScrollY(int y
)
413 return (y
+ GRID_SCROLL_LINE_Y
- 1) / GRID_SCROLL_LINE_Y
;
416 // ============================================================================
418 // ============================================================================
420 // ----------------------------------------------------------------------------
422 // ----------------------------------------------------------------------------
424 wxGridCellEditor::wxGridCellEditor()
430 wxGridCellEditor::~wxGridCellEditor()
435 void wxGridCellEditor::Create(wxWindow
* WXUNUSED(parent
),
436 wxWindowID
WXUNUSED(id
),
437 wxEvtHandler
* evtHandler
)
440 m_control
->PushEventHandler(evtHandler
);
443 void wxGridCellEditor::PaintBackground(const wxRect
& rectCell
,
444 wxGridCellAttr
*attr
)
446 // erase the background because we might not fill the cell
447 wxClientDC
dc(m_control
->GetParent());
448 dc
.SetPen(*wxTRANSPARENT_PEN
);
449 dc
.SetBrush(wxBrush(attr
->GetBackgroundColour(), wxSOLID
));
450 dc
.DrawRectangle(rectCell
);
452 // redraw the control we just painted over
453 m_control
->Refresh();
456 void wxGridCellEditor::Destroy()
460 m_control
->PopEventHandler(TRUE
/* delete it*/);
462 m_control
->Destroy();
467 void wxGridCellEditor::Show(bool show
, wxGridCellAttr
*attr
)
469 wxASSERT_MSG(m_control
,
470 wxT("The wxGridCellEditor must be Created first!"));
471 m_control
->Show(show
);
475 // set the colours/fonts if we have any
478 m_colFgOld
= m_control
->GetForegroundColour();
479 m_control
->SetForegroundColour(attr
->GetTextColour());
481 m_colBgOld
= m_control
->GetBackgroundColour();
482 m_control
->SetBackgroundColour(attr
->GetBackgroundColour());
484 m_fontOld
= m_control
->GetFont();
485 m_control
->SetFont(attr
->GetFont());
487 // can't do anything more in the base class version, the other
488 // attributes may only be used by the derived classes
493 // restore the standard colours fonts
494 if ( m_colFgOld
.Ok() )
496 m_control
->SetForegroundColour(m_colFgOld
);
497 m_colFgOld
= wxNullColour
;
500 if ( m_colBgOld
.Ok() )
502 m_control
->SetBackgroundColour(m_colBgOld
);
503 m_colBgOld
= wxNullColour
;
506 if ( m_fontOld
.Ok() )
508 m_control
->SetFont(m_fontOld
);
509 m_fontOld
= wxNullFont
;
514 void wxGridCellEditor::SetSize(const wxRect
& rect
)
516 wxASSERT_MSG(m_control
,
517 wxT("The wxGridCellEditor must be Created first!"));
518 m_control
->SetSize(rect
, wxSIZE_ALLOW_MINUS_ONE
);
521 void wxGridCellEditor::HandleReturn(wxKeyEvent
& event
)
526 bool wxGridCellEditor::IsAcceptedKey(wxKeyEvent
& event
)
528 // accept the simple key presses, not anything with Ctrl/Alt/Meta
529 return !(event
.ControlDown() || event
.AltDown());
532 void wxGridCellEditor::StartingKey(wxKeyEvent
& event
)
537 void wxGridCellEditor::StartingClick()
543 // ----------------------------------------------------------------------------
544 // wxGridCellTextEditor
545 // ----------------------------------------------------------------------------
547 wxGridCellTextEditor::wxGridCellTextEditor()
552 void wxGridCellTextEditor::Create(wxWindow
* parent
,
554 wxEvtHandler
* evtHandler
)
556 m_control
= new wxTextCtrl(parent
, id
, wxEmptyString
,
557 wxDefaultPosition
, wxDefaultSize
558 #if defined(__WXMSW__)
559 , wxTE_PROCESS_TAB
| wxTE_MULTILINE
|
560 wxTE_NO_VSCROLL
| wxTE_AUTO_SCROLL
564 // TODO: use m_maxChars
566 wxGridCellEditor::Create(parent
, id
, evtHandler
);
569 void wxGridCellTextEditor::PaintBackground(const wxRect
& WXUNUSED(rectCell
),
570 wxGridCellAttr
* WXUNUSED(attr
))
572 // as we fill the entire client area, don't do anything here to minimize
576 void wxGridCellTextEditor::SetSize(const wxRect
& rectOrig
)
578 wxRect
rect(rectOrig
);
580 // Make the edit control large enough to allow for internal
583 // TODO: remove this if the text ctrl sizing is improved esp. for
586 #if defined(__WXGTK__)
595 int extra_x
= ( rect
.x
> 2 )? 2 : 1;
597 // MB: treat MSW separately here otherwise the caret doesn't show
598 // when the editor is in the first row.
599 #if defined(__WXMSW__)
602 int extra_y
= ( rect
.y
> 2 )? 2 : 1;
605 #if defined(__WXMOTIF__)
609 rect
.SetLeft( wxMax(0, rect
.x
- extra_x
) );
610 rect
.SetTop( wxMax(0, rect
.y
- extra_y
) );
611 rect
.SetRight( rect
.GetRight() + 2*extra_x
);
612 rect
.SetBottom( rect
.GetBottom() + 2*extra_y
);
615 wxGridCellEditor::SetSize(rect
);
618 void wxGridCellTextEditor::BeginEdit(int row
, int col
, wxGrid
* grid
)
620 wxASSERT_MSG(m_control
,
621 wxT("The wxGridCellEditor must be Created first!"));
623 m_startValue
= grid
->GetTable()->GetValue(row
, col
);
625 DoBeginEdit(m_startValue
);
628 void wxGridCellTextEditor::DoBeginEdit(const wxString
& startValue
)
630 Text()->SetValue(startValue
);
631 Text()->SetInsertionPointEnd();
632 Text()->SetSelection(-1,-1);
636 bool wxGridCellTextEditor::EndEdit(int row
, int col
,
639 wxASSERT_MSG(m_control
,
640 wxT("The wxGridCellEditor must be Created first!"));
642 bool changed
= FALSE
;
643 wxString value
= Text()->GetValue();
644 if (value
!= m_startValue
)
648 grid
->GetTable()->SetValue(row
, col
, value
);
650 m_startValue
= wxEmptyString
;
651 Text()->SetValue(m_startValue
);
657 void wxGridCellTextEditor::Reset()
659 wxASSERT_MSG(m_control
,
660 wxT("The wxGridCellEditor must be Created first!"));
662 DoReset(m_startValue
);
665 void wxGridCellTextEditor::DoReset(const wxString
& startValue
)
667 Text()->SetValue(startValue
);
668 Text()->SetInsertionPointEnd();
671 bool wxGridCellTextEditor::IsAcceptedKey(wxKeyEvent
& event
)
673 if ( wxGridCellEditor::IsAcceptedKey(event
) )
675 int keycode
= event
.GetKeyCode();
689 case WXK_NUMPAD_MULTIPLY
:
693 case WXK_NUMPAD_SUBTRACT
:
695 case WXK_NUMPAD_DECIMAL
:
697 case WXK_NUMPAD_DIVIDE
:
701 // accept 8 bit chars too if isprint() agrees
702 if ( (keycode
< 255) && (isprint(keycode
)) )
710 void wxGridCellTextEditor::StartingKey(wxKeyEvent
& event
)
712 if ( !Text()->EmulateKeyPress(event
) )
718 void wxGridCellTextEditor::HandleReturn( wxKeyEvent
&
719 WXUNUSED_GTK(WXUNUSED_MOTIF(event
)) )
721 #if defined(__WXMOTIF__) || defined(__WXGTK__)
722 // wxMotif needs a little extra help...
723 size_t pos
= (size_t)( Text()->GetInsertionPoint() );
724 wxString
s( Text()->GetValue() );
725 s
= s
.Left(pos
) + wxT("\n") + s
.Mid(pos
);
727 Text()->SetInsertionPoint( pos
);
729 // the other ports can handle a Return key press
735 void wxGridCellTextEditor::SetParameters(const wxString
& params
)
745 if ( !params
.ToLong(&tmp
) )
747 wxLogDebug(_T("Invalid wxGridCellTextEditor parameter string '%s' ignored"), params
.c_str());
751 m_maxChars
= (size_t)tmp
;
756 // ----------------------------------------------------------------------------
757 // wxGridCellNumberEditor
758 // ----------------------------------------------------------------------------
760 wxGridCellNumberEditor::wxGridCellNumberEditor(int min
, int max
)
766 void wxGridCellNumberEditor::Create(wxWindow
* parent
,
768 wxEvtHandler
* evtHandler
)
772 // create a spin ctrl
773 m_control
= new wxSpinCtrl(parent
, -1, wxEmptyString
,
774 wxDefaultPosition
, wxDefaultSize
,
778 wxGridCellEditor::Create(parent
, id
, evtHandler
);
782 // just a text control
783 wxGridCellTextEditor::Create(parent
, id
, evtHandler
);
786 Text()->SetValidator(wxTextValidator(wxFILTER_NUMERIC
));
787 #endif // wxUSE_VALIDATORS
791 void wxGridCellNumberEditor::BeginEdit(int row
, int col
, wxGrid
* grid
)
793 // first get the value
794 wxGridTableBase
*table
= grid
->GetTable();
795 if ( table
->CanGetValueAs(row
, col
, wxGRID_VALUE_NUMBER
) )
797 m_valueOld
= table
->GetValueAsLong(row
, col
);
802 wxString sValue
= table
->GetValue(row
, col
);
803 if (! sValue
.ToLong(&m_valueOld
) && ! sValue
.IsEmpty())
805 wxFAIL_MSG( _T("this cell doesn't have numeric value") );
812 Spin()->SetValue((int)m_valueOld
);
817 DoBeginEdit(GetString());
821 bool wxGridCellNumberEditor::EndEdit(int row
, int col
,
830 value
= Spin()->GetValue();
831 changed
= value
!= m_valueOld
;
833 text
= wxString::Format(wxT("%ld"), value
);
837 text
= Text()->GetValue();
838 changed
= (text
.IsEmpty() || text
.ToLong(&value
)) && (value
!= m_valueOld
);
843 if (grid
->GetTable()->CanSetValueAs(row
, col
, wxGRID_VALUE_NUMBER
))
844 grid
->GetTable()->SetValueAsLong(row
, col
, value
);
846 grid
->GetTable()->SetValue(row
, col
, text
);
852 void wxGridCellNumberEditor::Reset()
856 Spin()->SetValue((int)m_valueOld
);
860 DoReset(GetString());
864 bool wxGridCellNumberEditor::IsAcceptedKey(wxKeyEvent
& event
)
866 if ( wxGridCellEditor::IsAcceptedKey(event
) )
868 int keycode
= event
.GetKeyCode();
884 case WXK_NUMPAD_SUBTRACT
:
890 if ( (keycode
< 128) && isdigit(keycode
) )
898 void wxGridCellNumberEditor::StartingKey(wxKeyEvent
& event
)
902 int keycode
= (int) event
.KeyCode();
903 if ( isdigit(keycode
) || keycode
== '+' || keycode
== '-'
904 || keycode
== WXK_NUMPAD0
905 || keycode
== WXK_NUMPAD1
906 || keycode
== WXK_NUMPAD2
907 || keycode
== WXK_NUMPAD3
908 || keycode
== WXK_NUMPAD4
909 || keycode
== WXK_NUMPAD5
910 || keycode
== WXK_NUMPAD6
911 || keycode
== WXK_NUMPAD7
912 || keycode
== WXK_NUMPAD8
913 || keycode
== WXK_NUMPAD9
914 || keycode
== WXK_ADD
915 || keycode
== WXK_NUMPAD_ADD
916 || keycode
== WXK_SUBTRACT
917 || keycode
== WXK_NUMPAD_SUBTRACT
)
919 wxGridCellTextEditor::StartingKey(event
);
929 void wxGridCellNumberEditor::SetParameters(const wxString
& params
)
940 if ( params
.BeforeFirst(_T(',')).ToLong(&tmp
) )
944 if ( params
.AfterFirst(_T(',')).ToLong(&tmp
) )
948 // skip the error message below
953 wxLogDebug(_T("Invalid wxGridCellNumberEditor parameter string '%s' ignored"), params
.c_str());
957 // ----------------------------------------------------------------------------
958 // wxGridCellFloatEditor
959 // ----------------------------------------------------------------------------
961 wxGridCellFloatEditor::wxGridCellFloatEditor(int width
, int precision
)
964 m_precision
= precision
;
967 void wxGridCellFloatEditor::Create(wxWindow
* parent
,
969 wxEvtHandler
* evtHandler
)
971 wxGridCellTextEditor::Create(parent
, id
, evtHandler
);
974 Text()->SetValidator(wxTextValidator(wxFILTER_NUMERIC
));
975 #endif // wxUSE_VALIDATORS
978 void wxGridCellFloatEditor::BeginEdit(int row
, int col
, wxGrid
* grid
)
980 // first get the value
981 wxGridTableBase
*table
= grid
->GetTable();
982 if ( table
->CanGetValueAs(row
, col
, wxGRID_VALUE_FLOAT
) )
984 m_valueOld
= table
->GetValueAsDouble(row
, col
);
989 wxString sValue
= table
->GetValue(row
, col
);
990 if (! sValue
.ToDouble(&m_valueOld
) && ! sValue
.IsEmpty())
992 wxFAIL_MSG( _T("this cell doesn't have float value") );
997 DoBeginEdit(GetString());
1000 bool wxGridCellFloatEditor::EndEdit(int row
, int col
,
1004 wxString
text(Text()->GetValue());
1006 if ( (text
.IsEmpty() || text
.ToDouble(&value
)) && (value
!= m_valueOld
) )
1008 if (grid
->GetTable()->CanSetValueAs(row
, col
, wxGRID_VALUE_FLOAT
))
1009 grid
->GetTable()->SetValueAsDouble(row
, col
, value
);
1011 grid
->GetTable()->SetValue(row
, col
, text
);
1018 void wxGridCellFloatEditor::Reset()
1020 DoReset(GetString());
1023 void wxGridCellFloatEditor::StartingKey(wxKeyEvent
& event
)
1025 int keycode
= (int)event
.KeyCode();
1026 if ( isdigit(keycode
) || keycode
== '+' || keycode
== '-' || keycode
== '.'
1027 || keycode
== WXK_NUMPAD0
1028 || keycode
== WXK_NUMPAD1
1029 || keycode
== WXK_NUMPAD2
1030 || keycode
== WXK_NUMPAD3
1031 || keycode
== WXK_NUMPAD4
1032 || keycode
== WXK_NUMPAD5
1033 || keycode
== WXK_NUMPAD6
1034 || keycode
== WXK_NUMPAD7
1035 || keycode
== WXK_NUMPAD8
1036 || keycode
== WXK_NUMPAD9
1037 || keycode
== WXK_ADD
1038 || keycode
== WXK_NUMPAD_ADD
1039 || keycode
== WXK_SUBTRACT
1040 || keycode
== WXK_NUMPAD_SUBTRACT
)
1042 wxGridCellTextEditor::StartingKey(event
);
1044 // skip Skip() below
1051 void wxGridCellFloatEditor::SetParameters(const wxString
& params
)
1062 if ( params
.BeforeFirst(_T(',')).ToLong(&tmp
) )
1066 if ( params
.AfterFirst(_T(',')).ToLong(&tmp
) )
1068 m_precision
= (int)tmp
;
1070 // skip the error message below
1075 wxLogDebug(_T("Invalid wxGridCellFloatEditor parameter string '%s' ignored"), params
.c_str());
1079 wxString
wxGridCellFloatEditor::GetString() const
1082 if ( m_width
== -1 )
1084 // default width/precision
1087 else if ( m_precision
== -1 )
1089 // default precision
1090 fmt
.Printf(_T("%%%d.f"), m_width
);
1094 fmt
.Printf(_T("%%%d.%df"), m_width
, m_precision
);
1097 return wxString::Format(fmt
, m_valueOld
);
1100 bool wxGridCellFloatEditor::IsAcceptedKey(wxKeyEvent
& event
)
1102 if ( wxGridCellEditor::IsAcceptedKey(event
) )
1104 int keycode
= event
.GetKeyCode();
1118 case WXK_NUMPAD_ADD
:
1120 case WXK_NUMPAD_SUBTRACT
:
1122 case WXK_NUMPAD_DECIMAL
:
1126 // additionally accept 'e' as in '1e+6'
1127 if ( (keycode
< 128) &&
1128 (isdigit(keycode
) || tolower(keycode
) == 'e') )
1136 #endif // wxUSE_TEXTCTRL
1140 // ----------------------------------------------------------------------------
1141 // wxGridCellBoolEditor
1142 // ----------------------------------------------------------------------------
1144 void wxGridCellBoolEditor::Create(wxWindow
* parent
,
1146 wxEvtHandler
* evtHandler
)
1148 m_control
= new wxCheckBox(parent
, id
, wxEmptyString
,
1149 wxDefaultPosition
, wxDefaultSize
,
1152 wxGridCellEditor::Create(parent
, id
, evtHandler
);
1155 void wxGridCellBoolEditor::SetSize(const wxRect
& r
)
1157 bool resize
= FALSE
;
1158 wxSize size
= m_control
->GetSize();
1159 wxCoord minSize
= wxMin(r
.width
, r
.height
);
1161 // check if the checkbox is not too big/small for this cell
1162 wxSize sizeBest
= m_control
->GetBestSize();
1163 if ( !(size
== sizeBest
) )
1165 // reset to default size if it had been made smaller
1171 if ( size
.x
>= minSize
|| size
.y
>= minSize
)
1173 // leave 1 pixel margin
1174 size
.x
= size
.y
= minSize
- 2;
1181 m_control
->SetSize(size
);
1184 // position it in the centre of the rectangle (TODO: support alignment?)
1186 #if defined(__WXGTK__) || defined (__WXMOTIF__)
1187 // the checkbox without label still has some space to the right in wxGTK,
1188 // so shift it to the right
1190 #elif defined(__WXMSW__)
1191 // here too, but in other way
1196 m_control
->Move(r
.x
+ r
.width
/2 - size
.x
/2, r
.y
+ r
.height
/2 - size
.y
/2);
1199 void wxGridCellBoolEditor::Show(bool show
, wxGridCellAttr
*attr
)
1201 m_control
->Show(show
);
1205 wxColour colBg
= attr
? attr
->GetBackgroundColour() : *wxLIGHT_GREY
;
1206 CBox()->SetBackgroundColour(colBg
);
1210 void wxGridCellBoolEditor::BeginEdit(int row
, int col
, wxGrid
* grid
)
1212 wxASSERT_MSG(m_control
,
1213 wxT("The wxGridCellEditor must be Created first!"));
1215 if (grid
->GetTable()->CanGetValueAs(row
, col
, wxGRID_VALUE_BOOL
))
1216 m_startValue
= grid
->GetTable()->GetValueAsBool(row
, col
);
1219 wxString
cellval( grid
->GetTable()->GetValue(row
, col
) );
1220 m_startValue
= !( !cellval
|| (cellval
== wxT("0")) );
1222 CBox()->SetValue(m_startValue
);
1226 bool wxGridCellBoolEditor::EndEdit(int row
, int col
,
1229 wxASSERT_MSG(m_control
,
1230 wxT("The wxGridCellEditor must be Created first!"));
1232 bool changed
= FALSE
;
1233 bool value
= CBox()->GetValue();
1234 if ( value
!= m_startValue
)
1239 if (grid
->GetTable()->CanGetValueAs(row
, col
, wxGRID_VALUE_BOOL
))
1240 grid
->GetTable()->SetValueAsBool(row
, col
, value
);
1242 grid
->GetTable()->SetValue(row
, col
, value
? _T("1") : wxEmptyString
);
1248 void wxGridCellBoolEditor::Reset()
1250 wxASSERT_MSG(m_control
,
1251 wxT("The wxGridCellEditor must be Created first!"));
1253 CBox()->SetValue(m_startValue
);
1256 void wxGridCellBoolEditor::StartingClick()
1258 CBox()->SetValue(!CBox()->GetValue());
1261 bool wxGridCellBoolEditor::IsAcceptedKey(wxKeyEvent
& event
)
1263 if ( wxGridCellEditor::IsAcceptedKey(event
) )
1265 int keycode
= event
.GetKeyCode();
1269 case WXK_NUMPAD_MULTIPLY
:
1271 case WXK_NUMPAD_ADD
:
1273 case WXK_NUMPAD_SUBTRACT
:
1284 #endif // wxUSE_CHECKBOX
1288 // ----------------------------------------------------------------------------
1289 // wxGridCellChoiceEditor
1290 // ----------------------------------------------------------------------------
1292 wxGridCellChoiceEditor::wxGridCellChoiceEditor(size_t count
,
1293 const wxString choices
[],
1295 : m_allowOthers(allowOthers
)
1299 m_choices
.Alloc(count
);
1300 for ( size_t n
= 0; n
< count
; n
++ )
1302 m_choices
.Add(choices
[n
]);
1307 wxGridCellEditor
*wxGridCellChoiceEditor::Clone() const
1309 wxGridCellChoiceEditor
*editor
= new wxGridCellChoiceEditor
;
1310 editor
->m_allowOthers
= m_allowOthers
;
1311 editor
->m_choices
= m_choices
;
1316 void wxGridCellChoiceEditor::Create(wxWindow
* parent
,
1318 wxEvtHandler
* evtHandler
)
1320 size_t count
= m_choices
.GetCount();
1321 wxString
*choices
= new wxString
[count
];
1322 for ( size_t n
= 0; n
< count
; n
++ )
1324 choices
[n
] = m_choices
[n
];
1327 m_control
= new wxComboBox(parent
, id
, wxEmptyString
,
1328 wxDefaultPosition
, wxDefaultSize
,
1330 m_allowOthers
? 0 : wxCB_READONLY
);
1334 wxGridCellEditor::Create(parent
, id
, evtHandler
);
1337 void wxGridCellChoiceEditor::PaintBackground(const wxRect
& rectCell
,
1338 wxGridCellAttr
* attr
)
1340 // as we fill the entire client area, don't do anything here to minimize
1343 // TODO: It doesn't actually fill the client area since the height of a
1344 // combo always defaults to the standard... Until someone has time to
1345 // figure out the right rectangle to paint, just do it the normal way...
1346 wxGridCellEditor::PaintBackground(rectCell
, attr
);
1349 void wxGridCellChoiceEditor::BeginEdit(int row
, int col
, wxGrid
* grid
)
1351 wxASSERT_MSG(m_control
,
1352 wxT("The wxGridCellEditor must be Created first!"));
1354 m_startValue
= grid
->GetTable()->GetValue(row
, col
);
1356 Combo()->SetValue(m_startValue
);
1357 size_t count
= m_choices
.GetCount();
1358 for (size_t i
=0; i
<count
; i
++)
1360 if (m_startValue
== m_choices
[i
])
1362 Combo()->SetSelection(i
);
1366 Combo()->SetInsertionPointEnd();
1367 Combo()->SetFocus();
1370 bool wxGridCellChoiceEditor::EndEdit(int row
, int col
,
1373 wxString value
= Combo()->GetValue();
1374 bool changed
= value
!= m_startValue
;
1377 grid
->GetTable()->SetValue(row
, col
, value
);
1379 m_startValue
= wxEmptyString
;
1380 Combo()->SetValue(m_startValue
);
1385 void wxGridCellChoiceEditor::Reset()
1387 Combo()->SetValue(m_startValue
);
1388 Combo()->SetInsertionPointEnd();
1391 void wxGridCellChoiceEditor::SetParameters(const wxString
& params
)
1401 wxStringTokenizer
tk(params
, _T(','));
1402 while ( tk
.HasMoreTokens() )
1404 m_choices
.Add(tk
.GetNextToken());
1408 #endif // wxUSE_COMBOBOX
1410 // ----------------------------------------------------------------------------
1411 // wxGridCellEditorEvtHandler
1412 // ----------------------------------------------------------------------------
1414 void wxGridCellEditorEvtHandler::OnKeyDown(wxKeyEvent
& event
)
1416 switch ( event
.KeyCode() )
1420 m_grid
->DisableCellEditControl();
1424 m_grid
->GetEventHandler()->ProcessEvent( event
);
1428 case WXK_NUMPAD_ENTER
:
1429 if (!m_grid
->GetEventHandler()->ProcessEvent(event
))
1430 m_editor
->HandleReturn(event
);
1439 void wxGridCellEditorEvtHandler::OnChar(wxKeyEvent
& event
)
1441 switch ( event
.KeyCode() )
1446 case WXK_NUMPAD_ENTER
:
1454 // ----------------------------------------------------------------------------
1455 // wxGridCellWorker is an (almost) empty common base class for
1456 // wxGridCellRenderer and wxGridCellEditor managing ref counting
1457 // ----------------------------------------------------------------------------
1459 void wxGridCellWorker::SetParameters(const wxString
& WXUNUSED(params
))
1464 wxGridCellWorker::~wxGridCellWorker()
1468 // ============================================================================
1470 // ============================================================================
1472 // ----------------------------------------------------------------------------
1473 // wxGridCellRenderer
1474 // ----------------------------------------------------------------------------
1476 void wxGridCellRenderer::Draw(wxGrid
& grid
,
1477 wxGridCellAttr
& attr
,
1480 int WXUNUSED(row
), int WXUNUSED(col
),
1483 dc
.SetBackgroundMode( wxSOLID
);
1487 dc
.SetBrush( wxBrush(grid
.GetSelectionBackground(), wxSOLID
) );
1491 dc
.SetBrush( wxBrush(attr
.GetBackgroundColour(), wxSOLID
) );
1494 dc
.SetPen( *wxTRANSPARENT_PEN
);
1495 dc
.DrawRectangle(rect
);
1498 // ----------------------------------------------------------------------------
1499 // wxGridCellStringRenderer
1500 // ----------------------------------------------------------------------------
1502 void wxGridCellStringRenderer::SetTextColoursAndFont(wxGrid
& grid
,
1503 wxGridCellAttr
& attr
,
1507 dc
.SetBackgroundMode( wxTRANSPARENT
);
1509 // TODO some special colours for attr.IsReadOnly() case?
1513 dc
.SetTextBackground( grid
.GetSelectionBackground() );
1514 dc
.SetTextForeground( grid
.GetSelectionForeground() );
1518 dc
.SetTextBackground( attr
.GetBackgroundColour() );
1519 dc
.SetTextForeground( attr
.GetTextColour() );
1522 dc
.SetFont( attr
.GetFont() );
1525 wxSize
wxGridCellStringRenderer::DoGetBestSize(wxGridCellAttr
& attr
,
1527 const wxString
& text
)
1529 wxCoord x
= 0, y
= 0, max_x
= 0;
1530 dc
.SetFont(attr
.GetFont());
1531 wxStringTokenizer
tk(text
, _T('\n'));
1532 while ( tk
.HasMoreTokens() )
1534 dc
.GetTextExtent(tk
.GetNextToken(), &x
, &y
);
1535 max_x
= wxMax(max_x
, x
);
1538 y
*= 1 + text
.Freq(wxT('\n')); // multiply by the number of lines.
1540 return wxSize(max_x
, y
);
1543 wxSize
wxGridCellStringRenderer::GetBestSize(wxGrid
& grid
,
1544 wxGridCellAttr
& attr
,
1548 return DoGetBestSize(attr
, dc
, grid
.GetCellValue(row
, col
));
1551 void wxGridCellStringRenderer::Draw(wxGrid
& grid
,
1552 wxGridCellAttr
& attr
,
1554 const wxRect
& rectCell
,
1558 wxRect rect
= rectCell
;
1560 if (attr
.GetOverflow())
1562 int cols
= grid
.GetNumberCols();
1563 int best_width
= GetBestSize(grid
,attr
,dc
,row
,col
).GetWidth();
1564 int cell_rows
, cell_cols
;
1565 attr
.GetSize( &cell_rows
, &cell_cols
); // shouldn't get here if <=0
1566 if ((best_width
> rectCell
.width
) && (col
< cols
) && grid
.GetTable())
1568 int i
, c_cols
, c_rows
;
1569 for (i
= col
+cell_cols
; i
< cols
; i
++)
1571 // check w/ anchor cell for multicell block
1572 grid
.GetCellSize(row
, i
, &c_rows
, &c_cols
);
1573 if (c_rows
> 0) c_rows
= 0;
1574 if (grid
.GetTable()->IsEmptyCell(row
+c_rows
, i
))
1576 rect
.width
+= grid
.GetColSize(i
);
1577 if (rect
.width
>= best_width
) break;
1584 // erase only this cells background, overflow cells should have been erased
1585 wxGridCellRenderer::Draw(grid
, attr
, dc
, rectCell
, row
, col
, isSelected
);
1587 // now we only have to draw the text
1588 SetTextColoursAndFont(grid
, attr
, dc
, isSelected
);
1591 attr
.GetAlignment(&hAlign
, &vAlign
);
1595 grid
.DrawTextRectangle(dc
, grid
.GetCellValue(row
, col
),
1596 rect
, hAlign
, vAlign
);
1599 // ----------------------------------------------------------------------------
1600 // wxGridCellNumberRenderer
1601 // ----------------------------------------------------------------------------
1603 wxString
wxGridCellNumberRenderer::GetString(wxGrid
& grid
, int row
, int col
)
1605 wxGridTableBase
*table
= grid
.GetTable();
1607 if ( table
->CanGetValueAs(row
, col
, wxGRID_VALUE_NUMBER
) )
1609 text
.Printf(_T("%ld"), table
->GetValueAsLong(row
, col
));
1613 text
= table
->GetValue(row
, col
);
1619 void wxGridCellNumberRenderer::Draw(wxGrid
& grid
,
1620 wxGridCellAttr
& attr
,
1622 const wxRect
& rectCell
,
1626 wxGridCellRenderer::Draw(grid
, attr
, dc
, rectCell
, row
, col
, isSelected
);
1628 SetTextColoursAndFont(grid
, attr
, dc
, isSelected
);
1630 // draw the text right aligned by default
1632 attr
.GetAlignment(&hAlign
, &vAlign
);
1633 hAlign
= wxALIGN_RIGHT
;
1635 wxRect rect
= rectCell
;
1638 grid
.DrawTextRectangle(dc
, GetString(grid
, row
, col
), rect
, hAlign
, vAlign
);
1641 wxSize
wxGridCellNumberRenderer::GetBestSize(wxGrid
& grid
,
1642 wxGridCellAttr
& attr
,
1646 return DoGetBestSize(attr
, dc
, GetString(grid
, row
, col
));
1649 // ----------------------------------------------------------------------------
1650 // wxGridCellFloatRenderer
1651 // ----------------------------------------------------------------------------
1653 wxGridCellFloatRenderer::wxGridCellFloatRenderer(int width
, int precision
)
1656 SetPrecision(precision
);
1659 wxGridCellRenderer
*wxGridCellFloatRenderer::Clone() const
1661 wxGridCellFloatRenderer
*renderer
= new wxGridCellFloatRenderer
;
1662 renderer
->m_width
= m_width
;
1663 renderer
->m_precision
= m_precision
;
1664 renderer
->m_format
= m_format
;
1669 wxString
wxGridCellFloatRenderer::GetString(wxGrid
& grid
, int row
, int col
)
1671 wxGridTableBase
*table
= grid
.GetTable();
1676 if ( table
->CanGetValueAs(row
, col
, wxGRID_VALUE_FLOAT
) )
1678 val
= table
->GetValueAsDouble(row
, col
);
1683 text
= table
->GetValue(row
, col
);
1684 hasDouble
= text
.ToDouble(&val
);
1691 if ( m_width
== -1 )
1693 if ( m_precision
== -1 )
1695 // default width/precision
1696 m_format
= _T("%f");
1700 m_format
.Printf(_T("%%.%df"), m_precision
);
1703 else if ( m_precision
== -1 )
1705 // default precision
1706 m_format
.Printf(_T("%%%d.f"), m_width
);
1710 m_format
.Printf(_T("%%%d.%df"), m_width
, m_precision
);
1714 text
.Printf(m_format
, val
);
1717 //else: text already contains the string
1722 void wxGridCellFloatRenderer::Draw(wxGrid
& grid
,
1723 wxGridCellAttr
& attr
,
1725 const wxRect
& rectCell
,
1729 wxGridCellRenderer::Draw(grid
, attr
, dc
, rectCell
, row
, col
, isSelected
);
1731 SetTextColoursAndFont(grid
, attr
, dc
, isSelected
);
1733 // draw the text right aligned by default
1735 attr
.GetAlignment(&hAlign
, &vAlign
);
1736 hAlign
= wxALIGN_RIGHT
;
1738 wxRect rect
= rectCell
;
1741 grid
.DrawTextRectangle(dc
, GetString(grid
, row
, col
), rect
, hAlign
, vAlign
);
1744 wxSize
wxGridCellFloatRenderer::GetBestSize(wxGrid
& grid
,
1745 wxGridCellAttr
& attr
,
1749 return DoGetBestSize(attr
, dc
, GetString(grid
, row
, col
));
1752 void wxGridCellFloatRenderer::SetParameters(const wxString
& params
)
1756 // reset to defaults
1762 wxString tmp
= params
.BeforeFirst(_T(','));
1766 if ( tmp
.ToLong(&width
) )
1768 SetWidth((int)width
);
1772 wxLogDebug(_T("Invalid wxGridCellFloatRenderer width parameter string '%s ignored"), params
.c_str());
1776 tmp
= params
.AfterFirst(_T(','));
1780 if ( tmp
.ToLong(&precision
) )
1782 SetPrecision((int)precision
);
1786 wxLogDebug(_T("Invalid wxGridCellFloatRenderer precision parameter string '%s ignored"), params
.c_str());
1794 // ----------------------------------------------------------------------------
1795 // wxGridCellBoolRenderer
1796 // ----------------------------------------------------------------------------
1798 wxSize
wxGridCellBoolRenderer::ms_sizeCheckMark
;
1800 // FIXME these checkbox size calculations are really ugly...
1802 // between checkmark and box
1803 static const wxCoord wxGRID_CHECKMARK_MARGIN
= 2;
1805 wxSize
wxGridCellBoolRenderer::GetBestSize(wxGrid
& grid
,
1806 wxGridCellAttr
& WXUNUSED(attr
),
1811 // compute it only once (no locks for MT safeness in GUI thread...)
1812 if ( !ms_sizeCheckMark
.x
)
1814 // get checkbox size
1815 wxCoord checkSize
= 0;
1816 wxCheckBox
*checkbox
= new wxCheckBox(&grid
, -1, wxEmptyString
);
1817 wxSize size
= checkbox
->GetBestSize();
1818 checkSize
= size
.y
+ 2*wxGRID_CHECKMARK_MARGIN
;
1820 // FIXME wxGTK::wxCheckBox::GetBestSize() gives "wrong" result
1821 #if defined(__WXGTK__) || defined(__WXMOTIF__)
1822 checkSize
-= size
.y
/ 2;
1827 ms_sizeCheckMark
.x
= ms_sizeCheckMark
.y
= checkSize
;
1830 return ms_sizeCheckMark
;
1833 void wxGridCellBoolRenderer::Draw(wxGrid
& grid
,
1834 wxGridCellAttr
& attr
,
1840 wxGridCellRenderer::Draw(grid
, attr
, dc
, rect
, row
, col
, isSelected
);
1842 // draw a check mark in the centre (ignoring alignment - TODO)
1843 wxSize size
= GetBestSize(grid
, attr
, dc
, row
, col
);
1845 // don't draw outside the cell
1846 wxCoord minSize
= wxMin(rect
.width
, rect
.height
);
1847 if ( size
.x
>= minSize
|| size
.y
>= minSize
)
1849 // and even leave (at least) 1 pixel margin
1850 size
.x
= size
.y
= minSize
- 2;
1853 // draw a border around checkmark
1855 rectBorder
.x
= rect
.x
+ rect
.width
/2 - size
.x
/2;
1856 rectBorder
.y
= rect
.y
+ rect
.height
/2 - size
.y
/2;
1857 rectBorder
.width
= size
.x
;
1858 rectBorder
.height
= size
.y
;
1861 if ( grid
.GetTable()->CanGetValueAs(row
, col
, wxGRID_VALUE_BOOL
) )
1862 value
= grid
.GetTable()->GetValueAsBool(row
, col
);
1865 wxString
cellval( grid
.GetTable()->GetValue(row
, col
) );
1866 value
= !( !cellval
|| (cellval
== wxT("0")) );
1871 wxRect rectMark
= rectBorder
;
1873 // MSW DrawCheckMark() is weird (and should probably be changed...)
1874 rectMark
.Inflate(-wxGRID_CHECKMARK_MARGIN
/2);
1878 rectMark
.Inflate(-wxGRID_CHECKMARK_MARGIN
);
1881 dc
.SetTextForeground(attr
.GetTextColour());
1882 dc
.DrawCheckMark(rectMark
);
1885 dc
.SetBrush(*wxTRANSPARENT_BRUSH
);
1886 dc
.SetPen(wxPen(attr
.GetTextColour(), 1, wxSOLID
));
1887 dc
.DrawRectangle(rectBorder
);
1890 // ----------------------------------------------------------------------------
1892 // ----------------------------------------------------------------------------
1894 void wxGridCellAttr::Init(wxGridCellAttr
*attrDefault
)
1898 m_isReadOnly
= Unset
;
1903 m_attrkind
= wxGridCellAttr::Cell
;
1905 m_sizeRows
= m_sizeCols
= 1;
1908 SetDefAttr(attrDefault
);
1911 wxGridCellAttr
*wxGridCellAttr::Clone() const
1913 wxGridCellAttr
*attr
= new wxGridCellAttr(m_defGridAttr
);
1915 if ( HasTextColour() )
1916 attr
->SetTextColour(GetTextColour());
1917 if ( HasBackgroundColour() )
1918 attr
->SetBackgroundColour(GetBackgroundColour());
1920 attr
->SetFont(GetFont());
1921 if ( HasAlignment() )
1922 attr
->SetAlignment(m_hAlign
, m_vAlign
);
1924 attr
->SetSize( m_sizeRows
, m_sizeCols
);
1928 attr
->SetRenderer(m_renderer
);
1929 m_renderer
->IncRef();
1933 attr
->SetEditor(m_editor
);
1938 attr
->SetReadOnly();
1940 attr
->SetKind( m_attrkind
);
1945 void wxGridCellAttr::MergeWith(wxGridCellAttr
*mergefrom
)
1947 if ( !HasTextColour() && mergefrom
->HasTextColour() )
1948 SetTextColour(mergefrom
->GetTextColour());
1949 if ( !HasBackgroundColour() && mergefrom
->HasBackgroundColour() )
1950 SetBackgroundColour(mergefrom
->GetBackgroundColour());
1951 if ( !HasFont() && mergefrom
->HasFont() )
1952 SetFont(mergefrom
->GetFont());
1953 if ( !HasAlignment() && mergefrom
->HasAlignment() ){
1955 mergefrom
->GetAlignment( &hAlign
, &vAlign
);
1956 SetAlignment(hAlign
, vAlign
);
1959 mergefrom
->GetSize( &m_sizeRows
, &m_sizeCols
);
1961 // Directly access member functions as GetRender/Editor don't just return
1962 // m_renderer/m_editor
1964 // Maybe add support for merge of Render and Editor?
1965 if (!HasRenderer() && mergefrom
->HasRenderer() )
1967 m_renderer
= mergefrom
->m_renderer
;
1968 m_renderer
->IncRef();
1970 if ( !HasEditor() && mergefrom
->HasEditor() )
1972 m_editor
= mergefrom
->m_editor
;
1975 if ( !HasReadWriteMode() && mergefrom
->HasReadWriteMode() )
1976 SetReadOnly(mergefrom
->IsReadOnly());
1978 SetDefAttr(mergefrom
->m_defGridAttr
);
1981 void wxGridCellAttr::SetSize(int num_rows
, int num_cols
)
1983 // The size of a cell is normally 1,1
1985 // If this cell is larger (2,2) then this is the top left cell
1986 // the other cells that will be covered (lower right cells) must be
1987 // set to negative or zero values such that
1988 // row + num_rows of the covered cell points to the larger cell (this cell)
1989 // same goes for the col + num_cols.
1991 // Size of 0,0 is NOT valid, neither is <=0 and any positive value
1993 wxASSERT_MSG( (!((num_rows
>0)&&(num_cols
<=0)) ||
1994 !((num_rows
<=0)&&(num_cols
>0)) ||
1995 !((num_rows
==0)&&(num_cols
==0))),
1996 wxT("wxGridCellAttr::SetSize only takes two postive values or negative/zero values"));
1998 m_sizeRows
= num_rows
;
1999 m_sizeCols
= num_cols
;
2002 const wxColour
& wxGridCellAttr::GetTextColour() const
2004 if (HasTextColour())
2008 else if (m_defGridAttr
&& m_defGridAttr
!= this)
2010 return m_defGridAttr
->GetTextColour();
2014 wxFAIL_MSG(wxT("Missing default cell attribute"));
2015 return wxNullColour
;
2020 const wxColour
& wxGridCellAttr::GetBackgroundColour() const
2022 if (HasBackgroundColour())
2024 else if (m_defGridAttr
&& m_defGridAttr
!= this)
2025 return m_defGridAttr
->GetBackgroundColour();
2028 wxFAIL_MSG(wxT("Missing default cell attribute"));
2029 return wxNullColour
;
2034 const wxFont
& wxGridCellAttr::GetFont() const
2038 else if (m_defGridAttr
&& m_defGridAttr
!= this)
2039 return m_defGridAttr
->GetFont();
2042 wxFAIL_MSG(wxT("Missing default cell attribute"));
2048 void wxGridCellAttr::GetAlignment(int *hAlign
, int *vAlign
) const
2052 if ( hAlign
) *hAlign
= m_hAlign
;
2053 if ( vAlign
) *vAlign
= m_vAlign
;
2055 else if (m_defGridAttr
&& m_defGridAttr
!= this)
2056 m_defGridAttr
->GetAlignment(hAlign
, vAlign
);
2059 wxFAIL_MSG(wxT("Missing default cell attribute"));
2063 void wxGridCellAttr::GetSize( int *num_rows
, int *num_cols
) const
2065 if ( num_rows
) *num_rows
= m_sizeRows
;
2066 if ( num_cols
) *num_cols
= m_sizeCols
;
2069 // GetRenderer and GetEditor use a slightly different decision path about
2070 // which attribute to use. If a non-default attr object has one then it is
2071 // used, otherwise the default editor or renderer is fetched from the grid and
2072 // used. It should be the default for the data type of the cell. If it is
2073 // NULL (because the table has a type that the grid does not have in its
2074 // registry,) then the grid's default editor or renderer is used.
2076 wxGridCellRenderer
* wxGridCellAttr::GetRenderer(wxGrid
* grid
, int row
, int col
) const
2078 wxGridCellRenderer
*renderer
;
2080 if ( m_renderer
&& this != m_defGridAttr
)
2082 // use the cells renderer if it has one
2083 renderer
= m_renderer
;
2086 else // no non default cell renderer
2088 // get default renderer for the data type
2091 // GetDefaultRendererForCell() will do IncRef() for us
2092 renderer
= grid
->GetDefaultRendererForCell(row
, col
);
2101 if (m_defGridAttr
&& this != m_defGridAttr
)
2103 // if we still don't have one then use the grid default
2104 // (no need for IncRef() here neither)
2105 renderer
= m_defGridAttr
->GetRenderer(NULL
, 0, 0);
2107 else // default grid attr
2109 // use m_renderer which we had decided not to use initially
2110 renderer
= m_renderer
;
2117 // we're supposed to always find something
2118 wxASSERT_MSG(renderer
, wxT("Missing default cell renderer"));
2123 // same as above, except for s/renderer/editor/g
2124 wxGridCellEditor
* wxGridCellAttr::GetEditor(wxGrid
* grid
, int row
, int col
) const
2126 wxGridCellEditor
*editor
;
2128 if ( m_editor
&& this != m_defGridAttr
)
2130 // use the cells editor if it has one
2134 else // no non default cell editor
2136 // get default editor for the data type
2139 // GetDefaultEditorForCell() will do IncRef() for us
2140 editor
= grid
->GetDefaultEditorForCell(row
, col
);
2149 if ( m_defGridAttr
&& this != m_defGridAttr
)
2151 // if we still don't have one then use the grid default
2152 // (no need for IncRef() here neither)
2153 editor
= m_defGridAttr
->GetEditor(NULL
, 0, 0);
2155 else // default grid attr
2157 // use m_editor which we had decided not to use initially
2165 // we're supposed to always find something
2166 wxASSERT_MSG(editor
, wxT("Missing default cell editor"));
2171 // ----------------------------------------------------------------------------
2172 // wxGridCellAttrData
2173 // ----------------------------------------------------------------------------
2175 void wxGridCellAttrData::SetAttr(wxGridCellAttr
*attr
, int row
, int col
)
2177 int n
= FindIndex(row
, col
);
2178 if ( n
== wxNOT_FOUND
)
2180 // add the attribute
2181 m_attrs
.Add(new wxGridCellWithAttr(row
, col
, attr
));
2185 // free the old attribute
2186 m_attrs
[(size_t)n
].attr
->DecRef();
2190 // change the attribute
2191 m_attrs
[(size_t)n
].attr
= attr
;
2195 // remove this attribute
2196 m_attrs
.RemoveAt((size_t)n
);
2201 wxGridCellAttr
*wxGridCellAttrData::GetAttr(int row
, int col
) const
2203 wxGridCellAttr
*attr
= (wxGridCellAttr
*)NULL
;
2205 int n
= FindIndex(row
, col
);
2206 if ( n
!= wxNOT_FOUND
)
2208 attr
= m_attrs
[(size_t)n
].attr
;
2215 void wxGridCellAttrData::UpdateAttrRows( size_t pos
, int numRows
)
2217 size_t count
= m_attrs
.GetCount();
2218 for ( size_t n
= 0; n
< count
; n
++ )
2220 wxGridCellCoords
& coords
= m_attrs
[n
].coords
;
2221 wxCoord row
= coords
.GetRow();
2222 if ((size_t)row
>= pos
)
2226 // If rows inserted, include row counter where necessary
2227 coords
.SetRow(row
+ numRows
);
2229 else if (numRows
< 0)
2231 // If rows deleted ...
2232 if ((size_t)row
>= pos
- numRows
)
2234 // ...either decrement row counter (if row still exists)...
2235 coords
.SetRow(row
+ numRows
);
2239 // ...or remove the attribute
2240 m_attrs
.RemoveAt((size_t)n
);
2248 void wxGridCellAttrData::UpdateAttrCols( size_t pos
, int numCols
)
2250 size_t count
= m_attrs
.GetCount();
2251 for ( size_t n
= 0; n
< count
; n
++ )
2253 wxGridCellCoords
& coords
= m_attrs
[n
].coords
;
2254 wxCoord col
= coords
.GetCol();
2255 if ( (size_t)col
>= pos
)
2259 // If rows inserted, include row counter where necessary
2260 coords
.SetCol(col
+ numCols
);
2262 else if (numCols
< 0)
2264 // If rows deleted ...
2265 if ((size_t)col
>= pos
- numCols
)
2267 // ...either decrement row counter (if row still exists)...
2268 coords
.SetCol(col
+ numCols
);
2272 // ...or remove the attribute
2273 m_attrs
.RemoveAt((size_t)n
);
2281 int wxGridCellAttrData::FindIndex(int row
, int col
) const
2283 size_t count
= m_attrs
.GetCount();
2284 for ( size_t n
= 0; n
< count
; n
++ )
2286 const wxGridCellCoords
& coords
= m_attrs
[n
].coords
;
2287 if ( (coords
.GetRow() == row
) && (coords
.GetCol() == col
) )
2296 // ----------------------------------------------------------------------------
2297 // wxGridRowOrColAttrData
2298 // ----------------------------------------------------------------------------
2300 wxGridRowOrColAttrData::~wxGridRowOrColAttrData()
2302 size_t count
= m_attrs
.Count();
2303 for ( size_t n
= 0; n
< count
; n
++ )
2305 m_attrs
[n
]->DecRef();
2309 wxGridCellAttr
*wxGridRowOrColAttrData::GetAttr(int rowOrCol
) const
2311 wxGridCellAttr
*attr
= (wxGridCellAttr
*)NULL
;
2313 int n
= m_rowsOrCols
.Index(rowOrCol
);
2314 if ( n
!= wxNOT_FOUND
)
2316 attr
= m_attrs
[(size_t)n
];
2323 void wxGridRowOrColAttrData::SetAttr(wxGridCellAttr
*attr
, int rowOrCol
)
2325 int i
= m_rowsOrCols
.Index(rowOrCol
);
2326 if ( i
== wxNOT_FOUND
)
2328 // add the attribute
2329 m_rowsOrCols
.Add(rowOrCol
);
2334 size_t n
= (size_t)i
;
2337 // change the attribute
2338 m_attrs
[n
]->DecRef();
2343 // remove this attribute
2344 m_attrs
[n
]->DecRef();
2345 m_rowsOrCols
.RemoveAt(n
);
2346 m_attrs
.RemoveAt(n
);
2351 void wxGridRowOrColAttrData::UpdateAttrRowsOrCols( size_t pos
, int numRowsOrCols
)
2353 size_t count
= m_attrs
.GetCount();
2354 for ( size_t n
= 0; n
< count
; n
++ )
2356 int & rowOrCol
= m_rowsOrCols
[n
];
2357 if ( (size_t)rowOrCol
>= pos
)
2359 if ( numRowsOrCols
> 0 )
2361 // If rows inserted, include row counter where necessary
2362 rowOrCol
+= numRowsOrCols
;
2364 else if ( numRowsOrCols
< 0)
2366 // If rows deleted, either decrement row counter (if row still exists)
2367 if ((size_t)rowOrCol
>= pos
- numRowsOrCols
)
2368 rowOrCol
+= numRowsOrCols
;
2371 m_rowsOrCols
.RemoveAt((size_t)n
);
2372 m_attrs
.RemoveAt((size_t)n
);
2380 // ----------------------------------------------------------------------------
2381 // wxGridCellAttrProvider
2382 // ----------------------------------------------------------------------------
2384 wxGridCellAttrProvider::wxGridCellAttrProvider()
2386 m_data
= (wxGridCellAttrProviderData
*)NULL
;
2389 wxGridCellAttrProvider::~wxGridCellAttrProvider()
2394 void wxGridCellAttrProvider::InitData()
2396 m_data
= new wxGridCellAttrProviderData
;
2399 wxGridCellAttr
*wxGridCellAttrProvider::GetAttr(int row
, int col
,
2400 wxGridCellAttr::wxAttrKind kind
) const
2402 wxGridCellAttr
*attr
= (wxGridCellAttr
*)NULL
;
2407 case (wxGridCellAttr::Any
):
2408 //Get cached merge attributes.
2409 // Currenlty not used as no cache implemented as not mutiable
2410 // attr = m_data->m_mergeAttr.GetAttr(row, col);
2413 //Basicaly implement old version.
2414 //Also check merge cache, so we don't have to re-merge every time..
2415 wxGridCellAttr
*attrcell
= (wxGridCellAttr
*)NULL
,
2416 *attrrow
= (wxGridCellAttr
*)NULL
,
2417 *attrcol
= (wxGridCellAttr
*)NULL
;
2419 attrcell
= m_data
->m_cellAttrs
.GetAttr(row
, col
);
2420 attrcol
= m_data
->m_colAttrs
.GetAttr(col
);
2421 attrrow
= m_data
->m_rowAttrs
.GetAttr(row
);
2423 if((attrcell
!= attrrow
) && (attrrow
!=attrcol
) && (attrcell
!= attrcol
)){
2424 // Two or move are non NULL
2425 attr
= new wxGridCellAttr
;
2426 attr
->SetKind(wxGridCellAttr::Merged
);
2430 attr
->MergeWith(attrcell
);
2434 attr
->MergeWith(attrcol
);
2438 attr
->MergeWith(attrrow
);
2441 //store merge attr if cache implemented
2443 //m_data->m_mergeAttr.SetAttr(attr, row, col);
2447 // one or none is non null return it or null.
2448 if(attrrow
) attr
= attrrow
;
2449 if(attrcol
) attr
= attrcol
;
2450 if(attrcell
) attr
= attrcell
;
2454 case (wxGridCellAttr::Cell
):
2455 attr
= m_data
->m_cellAttrs
.GetAttr(row
, col
);
2457 case (wxGridCellAttr::Col
):
2458 attr
= m_data
->m_colAttrs
.GetAttr(col
);
2460 case (wxGridCellAttr::Row
):
2461 attr
= m_data
->m_rowAttrs
.GetAttr(row
);
2465 // (wxGridCellAttr::Default):
2466 // (wxGridCellAttr::Merged):
2473 void wxGridCellAttrProvider::SetAttr(wxGridCellAttr
*attr
,
2479 m_data
->m_cellAttrs
.SetAttr(attr
, row
, col
);
2482 void wxGridCellAttrProvider::SetRowAttr(wxGridCellAttr
*attr
, int row
)
2487 m_data
->m_rowAttrs
.SetAttr(attr
, row
);
2490 void wxGridCellAttrProvider::SetColAttr(wxGridCellAttr
*attr
, int col
)
2495 m_data
->m_colAttrs
.SetAttr(attr
, col
);
2498 void wxGridCellAttrProvider::UpdateAttrRows( size_t pos
, int numRows
)
2502 m_data
->m_cellAttrs
.UpdateAttrRows( pos
, numRows
);
2504 m_data
->m_rowAttrs
.UpdateAttrRowsOrCols( pos
, numRows
);
2508 void wxGridCellAttrProvider::UpdateAttrCols( size_t pos
, int numCols
)
2512 m_data
->m_cellAttrs
.UpdateAttrCols( pos
, numCols
);
2514 m_data
->m_colAttrs
.UpdateAttrRowsOrCols( pos
, numCols
);
2518 // ----------------------------------------------------------------------------
2519 // wxGridTypeRegistry
2520 // ----------------------------------------------------------------------------
2522 wxGridTypeRegistry::~wxGridTypeRegistry()
2524 size_t count
= m_typeinfo
.Count();
2525 for ( size_t i
= 0; i
< count
; i
++ )
2526 delete m_typeinfo
[i
];
2530 void wxGridTypeRegistry::RegisterDataType(const wxString
& typeName
,
2531 wxGridCellRenderer
* renderer
,
2532 wxGridCellEditor
* editor
)
2534 wxGridDataTypeInfo
* info
= new wxGridDataTypeInfo(typeName
, renderer
, editor
);
2536 // is it already registered?
2537 int loc
= FindRegisteredDataType(typeName
);
2538 if ( loc
!= wxNOT_FOUND
)
2540 delete m_typeinfo
[loc
];
2541 m_typeinfo
[loc
] = info
;
2545 m_typeinfo
.Add(info
);
2549 int wxGridTypeRegistry::FindRegisteredDataType(const wxString
& typeName
)
2551 size_t count
= m_typeinfo
.GetCount();
2552 for ( size_t i
= 0; i
< count
; i
++ )
2554 if ( typeName
== m_typeinfo
[i
]->m_typeName
)
2563 int wxGridTypeRegistry::FindDataType(const wxString
& typeName
)
2565 int index
= FindRegisteredDataType(typeName
);
2566 if ( index
== wxNOT_FOUND
)
2568 // check whether this is one of the standard ones, in which case
2569 // register it "on the fly"
2571 if ( typeName
== wxGRID_VALUE_STRING
)
2573 RegisterDataType(wxGRID_VALUE_STRING
,
2574 new wxGridCellStringRenderer
,
2575 new wxGridCellTextEditor
);
2577 #endif // wxUSE_TEXTCTRL
2579 if ( typeName
== wxGRID_VALUE_BOOL
)
2581 RegisterDataType(wxGRID_VALUE_BOOL
,
2582 new wxGridCellBoolRenderer
,
2583 new wxGridCellBoolEditor
);
2585 #endif // wxUSE_CHECKBOX
2587 if ( typeName
== wxGRID_VALUE_NUMBER
)
2589 RegisterDataType(wxGRID_VALUE_NUMBER
,
2590 new wxGridCellNumberRenderer
,
2591 new wxGridCellNumberEditor
);
2593 else if ( typeName
== wxGRID_VALUE_FLOAT
)
2595 RegisterDataType(wxGRID_VALUE_FLOAT
,
2596 new wxGridCellFloatRenderer
,
2597 new wxGridCellFloatEditor
);
2599 #endif // wxUSE_TEXTCTRL
2601 if ( typeName
== wxGRID_VALUE_CHOICE
)
2603 RegisterDataType(wxGRID_VALUE_CHOICE
,
2604 new wxGridCellStringRenderer
,
2605 new wxGridCellChoiceEditor
);
2607 #endif // wxUSE_COMBOBOX
2612 // we get here only if just added the entry for this type, so return
2614 index
= m_typeinfo
.GetCount() - 1;
2620 int wxGridTypeRegistry::FindOrCloneDataType(const wxString
& typeName
)
2622 int index
= FindDataType(typeName
);
2623 if ( index
== wxNOT_FOUND
)
2625 // the first part of the typename is the "real" type, anything after ':'
2626 // are the parameters for the renderer
2627 index
= FindDataType(typeName
.BeforeFirst(_T(':')));
2628 if ( index
== wxNOT_FOUND
)
2633 wxGridCellRenderer
*renderer
= GetRenderer(index
);
2634 wxGridCellRenderer
*rendererOld
= renderer
;
2635 renderer
= renderer
->Clone();
2636 rendererOld
->DecRef();
2638 wxGridCellEditor
*editor
= GetEditor(index
);
2639 wxGridCellEditor
*editorOld
= editor
;
2640 editor
= editor
->Clone();
2641 editorOld
->DecRef();
2643 // do it even if there are no parameters to reset them to defaults
2644 wxString params
= typeName
.AfterFirst(_T(':'));
2645 renderer
->SetParameters(params
);
2646 editor
->SetParameters(params
);
2648 // register the new typename
2649 RegisterDataType(typeName
, renderer
, editor
);
2651 // we just registered it, it's the last one
2652 index
= m_typeinfo
.GetCount() - 1;
2658 wxGridCellRenderer
* wxGridTypeRegistry::GetRenderer(int index
)
2660 wxGridCellRenderer
* renderer
= m_typeinfo
[index
]->m_renderer
;
2666 wxGridCellEditor
* wxGridTypeRegistry::GetEditor(int index
)
2668 wxGridCellEditor
* editor
= m_typeinfo
[index
]->m_editor
;
2674 // ----------------------------------------------------------------------------
2676 // ----------------------------------------------------------------------------
2678 IMPLEMENT_ABSTRACT_CLASS( wxGridTableBase
, wxObject
)
2681 wxGridTableBase::wxGridTableBase()
2683 m_view
= (wxGrid
*) NULL
;
2684 m_attrProvider
= (wxGridCellAttrProvider
*) NULL
;
2687 wxGridTableBase::~wxGridTableBase()
2689 delete m_attrProvider
;
2692 void wxGridTableBase::SetAttrProvider(wxGridCellAttrProvider
*attrProvider
)
2694 delete m_attrProvider
;
2695 m_attrProvider
= attrProvider
;
2698 bool wxGridTableBase::CanHaveAttributes()
2700 if ( ! GetAttrProvider() )
2702 // use the default attr provider by default
2703 SetAttrProvider(new wxGridCellAttrProvider
);
2708 wxGridCellAttr
*wxGridTableBase::GetAttr(int row
, int col
, wxGridCellAttr::wxAttrKind kind
)
2710 if ( m_attrProvider
)
2711 return m_attrProvider
->GetAttr(row
, col
, kind
);
2713 return (wxGridCellAttr
*)NULL
;
2716 void wxGridTableBase::SetAttr(wxGridCellAttr
* attr
, int row
, int col
)
2718 if ( m_attrProvider
)
2720 attr
->SetKind(wxGridCellAttr::Cell
);
2721 m_attrProvider
->SetAttr(attr
, row
, col
);
2725 // as we take ownership of the pointer and don't store it, we must
2731 void wxGridTableBase::SetRowAttr(wxGridCellAttr
*attr
, int row
)
2733 if ( m_attrProvider
)
2735 attr
->SetKind(wxGridCellAttr::Row
);
2736 m_attrProvider
->SetRowAttr(attr
, row
);
2740 // as we take ownership of the pointer and don't store it, we must
2746 void wxGridTableBase::SetColAttr(wxGridCellAttr
*attr
, int col
)
2748 if ( m_attrProvider
)
2750 attr
->SetKind(wxGridCellAttr::Col
);
2751 m_attrProvider
->SetColAttr(attr
, col
);
2755 // as we take ownership of the pointer and don't store it, we must
2761 bool wxGridTableBase::InsertRows( size_t WXUNUSED(pos
),
2762 size_t WXUNUSED(numRows
) )
2764 wxFAIL_MSG( wxT("Called grid table class function InsertRows\nbut your derived table class does not override this function") );
2769 bool wxGridTableBase::AppendRows( size_t WXUNUSED(numRows
) )
2771 wxFAIL_MSG( wxT("Called grid table class function AppendRows\nbut your derived table class does not override this function"));
2776 bool wxGridTableBase::DeleteRows( size_t WXUNUSED(pos
),
2777 size_t WXUNUSED(numRows
) )
2779 wxFAIL_MSG( wxT("Called grid table class function DeleteRows\nbut your derived table class does not override this function"));
2784 bool wxGridTableBase::InsertCols( size_t WXUNUSED(pos
),
2785 size_t WXUNUSED(numCols
) )
2787 wxFAIL_MSG( wxT("Called grid table class function InsertCols\nbut your derived table class does not override this function"));
2792 bool wxGridTableBase::AppendCols( size_t WXUNUSED(numCols
) )
2794 wxFAIL_MSG(wxT("Called grid table class function AppendCols\nbut your derived table class does not override this function"));
2799 bool wxGridTableBase::DeleteCols( size_t WXUNUSED(pos
),
2800 size_t WXUNUSED(numCols
) )
2802 wxFAIL_MSG( wxT("Called grid table class function DeleteCols\nbut your derived table class does not override this function"));
2808 wxString
wxGridTableBase::GetRowLabelValue( int row
)
2811 s
<< row
+ 1; // RD: Starting the rows at zero confuses users, no matter
2812 // how much it makes sense to us geeks.
2816 wxString
wxGridTableBase::GetColLabelValue( int col
)
2818 // default col labels are:
2819 // cols 0 to 25 : A-Z
2820 // cols 26 to 675 : AA-ZZ
2825 for ( n
= 1; ; n
++ )
2827 s
+= (_T('A') + (wxChar
)( col%26
));
2829 if ( col
< 0 ) break;
2832 // reverse the string...
2834 for ( i
= 0; i
< n
; i
++ )
2843 wxString
wxGridTableBase::GetTypeName( int WXUNUSED(row
), int WXUNUSED(col
) )
2845 return wxGRID_VALUE_STRING
;
2848 bool wxGridTableBase::CanGetValueAs( int WXUNUSED(row
), int WXUNUSED(col
),
2849 const wxString
& typeName
)
2851 return typeName
== wxGRID_VALUE_STRING
;
2854 bool wxGridTableBase::CanSetValueAs( int row
, int col
, const wxString
& typeName
)
2856 return CanGetValueAs(row
, col
, typeName
);
2859 long wxGridTableBase::GetValueAsLong( int WXUNUSED(row
), int WXUNUSED(col
) )
2864 double wxGridTableBase::GetValueAsDouble( int WXUNUSED(row
), int WXUNUSED(col
) )
2869 bool wxGridTableBase::GetValueAsBool( int WXUNUSED(row
), int WXUNUSED(col
) )
2874 void wxGridTableBase::SetValueAsLong( int WXUNUSED(row
), int WXUNUSED(col
),
2875 long WXUNUSED(value
) )
2879 void wxGridTableBase::SetValueAsDouble( int WXUNUSED(row
), int WXUNUSED(col
),
2880 double WXUNUSED(value
) )
2884 void wxGridTableBase::SetValueAsBool( int WXUNUSED(row
), int WXUNUSED(col
),
2885 bool WXUNUSED(value
) )
2890 void* wxGridTableBase::GetValueAsCustom( int WXUNUSED(row
), int WXUNUSED(col
),
2891 const wxString
& WXUNUSED(typeName
) )
2896 void wxGridTableBase::SetValueAsCustom( int WXUNUSED(row
), int WXUNUSED(col
),
2897 const wxString
& WXUNUSED(typeName
),
2898 void* WXUNUSED(value
) )
2902 //////////////////////////////////////////////////////////////////////
2904 // Message class for the grid table to send requests and notifications
2908 wxGridTableMessage::wxGridTableMessage()
2910 m_table
= (wxGridTableBase
*) NULL
;
2916 wxGridTableMessage::wxGridTableMessage( wxGridTableBase
*table
, int id
,
2917 int commandInt1
, int commandInt2
)
2921 m_comInt1
= commandInt1
;
2922 m_comInt2
= commandInt2
;
2927 //////////////////////////////////////////////////////////////////////
2929 // A basic grid table for string data. An object of this class will
2930 // created by wxGrid if you don't specify an alternative table class.
2933 WX_DEFINE_OBJARRAY(wxGridStringArray
)
2935 IMPLEMENT_DYNAMIC_CLASS( wxGridStringTable
, wxGridTableBase
)
2937 wxGridStringTable::wxGridStringTable()
2942 wxGridStringTable::wxGridStringTable( int numRows
, int numCols
)
2945 m_data
.Alloc( numRows
);
2948 sa
.Alloc( numCols
);
2949 sa
.Add( wxEmptyString
, numCols
);
2951 m_data
.Add( sa
, numRows
);
2954 wxGridStringTable::~wxGridStringTable()
2958 int wxGridStringTable::GetNumberRows()
2960 return m_data
.GetCount();
2963 int wxGridStringTable::GetNumberCols()
2965 if ( m_data
.GetCount() > 0 )
2966 return m_data
[0].GetCount();
2971 wxString
wxGridStringTable::GetValue( int row
, int col
)
2973 wxASSERT_MSG( (row
< GetNumberRows()) && (col
< GetNumberCols()),
2974 _T("invalid row or column index in wxGridStringTable") );
2976 return m_data
[row
][col
];
2979 void wxGridStringTable::SetValue( int row
, int col
, const wxString
& value
)
2981 wxASSERT_MSG( (row
< GetNumberRows()) && (col
< GetNumberCols()),
2982 _T("invalid row or column index in wxGridStringTable") );
2984 m_data
[row
][col
] = value
;
2987 bool wxGridStringTable::IsEmptyCell( int row
, int col
)
2989 wxASSERT_MSG( (row
< GetNumberRows()) && (col
< GetNumberCols()),
2990 _T("invalid row or column index in wxGridStringTable") );
2992 return (m_data
[row
][col
] == wxEmptyString
);
2995 void wxGridStringTable::Clear()
2998 int numRows
, numCols
;
3000 numRows
= m_data
.GetCount();
3003 numCols
= m_data
[0].GetCount();
3005 for ( row
= 0; row
< numRows
; row
++ )
3007 for ( col
= 0; col
< numCols
; col
++ )
3009 m_data
[row
][col
] = wxEmptyString
;
3016 bool wxGridStringTable::InsertRows( size_t pos
, size_t numRows
)
3018 size_t curNumRows
= m_data
.GetCount();
3019 size_t curNumCols
= ( curNumRows
> 0 ? m_data
[0].GetCount() :
3020 ( GetView() ? GetView()->GetNumberCols() : 0 ) );
3022 if ( pos
>= curNumRows
)
3024 return AppendRows( numRows
);
3028 sa
.Alloc( curNumCols
);
3029 sa
.Add( wxEmptyString
, curNumCols
);
3030 m_data
.Insert( sa
, pos
, numRows
);
3033 wxGridTableMessage
msg( this,
3034 wxGRIDTABLE_NOTIFY_ROWS_INSERTED
,
3038 GetView()->ProcessTableMessage( msg
);
3044 bool wxGridStringTable::AppendRows( size_t numRows
)
3046 size_t curNumRows
= m_data
.GetCount();
3047 size_t curNumCols
= ( curNumRows
> 0 ? m_data
[0].GetCount() :
3048 ( GetView() ? GetView()->GetNumberCols() : 0 ) );
3051 if ( curNumCols
> 0 )
3053 sa
.Alloc( curNumCols
);
3054 sa
.Add( wxEmptyString
, curNumCols
);
3057 m_data
.Add( sa
, numRows
);
3061 wxGridTableMessage
msg( this,
3062 wxGRIDTABLE_NOTIFY_ROWS_APPENDED
,
3065 GetView()->ProcessTableMessage( msg
);
3071 bool wxGridStringTable::DeleteRows( size_t pos
, size_t numRows
)
3073 size_t curNumRows
= m_data
.GetCount();
3075 if ( pos
>= curNumRows
)
3077 wxFAIL_MSG( wxString::Format
3079 wxT("Called wxGridStringTable::DeleteRows(pos=%lu, N=%lu)\nPos value is invalid for present table with %lu rows"),
3081 (unsigned long)numRows
,
3082 (unsigned long)curNumRows
3088 if ( numRows
> curNumRows
- pos
)
3090 numRows
= curNumRows
- pos
;
3093 if ( numRows
>= curNumRows
)
3095 for (size_t i
=0; i
< m_data
.GetCount(); i
++) m_data
[i
].Clear();
3096 m_data
.Empty(); // don't release memory just yet
3100 m_data
.RemoveAt( pos
, numRows
);
3104 wxGridTableMessage
msg( this,
3105 wxGRIDTABLE_NOTIFY_ROWS_DELETED
,
3109 GetView()->ProcessTableMessage( msg
);
3115 bool wxGridStringTable::InsertCols( size_t pos
, size_t numCols
)
3119 size_t curNumRows
= m_data
.GetCount();
3120 size_t curNumCols
= ( curNumRows
> 0 ? m_data
[0].GetCount() :
3121 ( GetView() ? GetView()->GetNumberCols() : 0 ) );
3123 if ( pos
>= curNumCols
)
3125 return AppendCols( numCols
);
3128 for ( row
= 0; row
< curNumRows
; row
++ )
3130 for ( col
= pos
; col
< pos
+ numCols
; col
++ )
3132 m_data
[row
].Insert( wxEmptyString
, col
);
3137 wxGridTableMessage
msg( this,
3138 wxGRIDTABLE_NOTIFY_COLS_INSERTED
,
3142 GetView()->ProcessTableMessage( msg
);
3148 bool wxGridStringTable::AppendCols( size_t numCols
)
3152 size_t curNumRows
= m_data
.GetCount();
3156 // TODO: something better than this ?
3158 wxFAIL_MSG( wxT("Unable to append cols to a grid table with no rows.\nCall AppendRows() first") );
3163 for ( row
= 0; row
< curNumRows
; row
++ )
3165 m_data
[row
].Add( wxEmptyString
, numCols
);
3170 wxGridTableMessage
msg( this,
3171 wxGRIDTABLE_NOTIFY_COLS_APPENDED
,
3174 GetView()->ProcessTableMessage( msg
);
3180 bool wxGridStringTable::DeleteCols( size_t pos
, size_t numCols
)
3184 size_t curNumRows
= m_data
.GetCount();
3185 size_t curNumCols
= ( curNumRows
> 0 ? m_data
[0].GetCount() :
3186 ( GetView() ? GetView()->GetNumberCols() : 0 ) );
3188 if ( pos
>= curNumCols
)
3190 wxFAIL_MSG( wxString::Format
3192 wxT("Called wxGridStringTable::DeleteCols(pos=%lu, N=%lu)\nPos value is invalid for present table with %lu cols"),
3194 (unsigned long)numCols
,
3195 (unsigned long)curNumCols
3200 if ( numCols
> curNumCols
- pos
)
3202 numCols
= curNumCols
- pos
;
3205 for ( row
= 0; row
< curNumRows
; row
++ )
3207 if ( numCols
>= curNumCols
)
3209 m_data
[row
].Clear();
3213 m_data
[row
].RemoveAt( pos
, numCols
);
3218 wxGridTableMessage
msg( this,
3219 wxGRIDTABLE_NOTIFY_COLS_DELETED
,
3223 GetView()->ProcessTableMessage( msg
);
3229 wxString
wxGridStringTable::GetRowLabelValue( int row
)
3231 if ( row
> (int)(m_rowLabels
.GetCount()) - 1 )
3233 // using default label
3235 return wxGridTableBase::GetRowLabelValue( row
);
3239 return m_rowLabels
[ row
];
3243 wxString
wxGridStringTable::GetColLabelValue( int col
)
3245 if ( col
> (int)(m_colLabels
.GetCount()) - 1 )
3247 // using default label
3249 return wxGridTableBase::GetColLabelValue( col
);
3253 return m_colLabels
[ col
];
3257 void wxGridStringTable::SetRowLabelValue( int row
, const wxString
& value
)
3259 if ( row
> (int)(m_rowLabels
.GetCount()) - 1 )
3261 int n
= m_rowLabels
.GetCount();
3263 for ( i
= n
; i
<= row
; i
++ )
3265 m_rowLabels
.Add( wxGridTableBase::GetRowLabelValue(i
) );
3269 m_rowLabels
[row
] = value
;
3272 void wxGridStringTable::SetColLabelValue( int col
, const wxString
& value
)
3274 if ( col
> (int)(m_colLabels
.GetCount()) - 1 )
3276 int n
= m_colLabels
.GetCount();
3278 for ( i
= n
; i
<= col
; i
++ )
3280 m_colLabels
.Add( wxGridTableBase::GetColLabelValue(i
) );
3284 m_colLabels
[col
] = value
;
3289 //////////////////////////////////////////////////////////////////////
3290 //////////////////////////////////////////////////////////////////////
3292 IMPLEMENT_DYNAMIC_CLASS( wxGridRowLabelWindow
, wxWindow
)
3294 BEGIN_EVENT_TABLE( wxGridRowLabelWindow
, wxWindow
)
3295 EVT_PAINT( wxGridRowLabelWindow::OnPaint
)
3296 EVT_MOUSEWHEEL( wxGridRowLabelWindow::OnMouseWheel
)
3297 EVT_MOUSE_EVENTS( wxGridRowLabelWindow::OnMouseEvent
)
3298 EVT_KEY_DOWN( wxGridRowLabelWindow::OnKeyDown
)
3299 EVT_KEY_UP( wxGridRowLabelWindow::OnKeyUp
)
3302 wxGridRowLabelWindow::wxGridRowLabelWindow( wxGrid
*parent
,
3304 const wxPoint
&pos
, const wxSize
&size
)
3305 : wxWindow( parent
, id
, pos
, size
, wxWANTS_CHARS
)
3310 void wxGridRowLabelWindow::OnPaint( wxPaintEvent
& WXUNUSED(event
) )
3314 // NO - don't do this because it will set both the x and y origin
3315 // coords to match the parent scrolled window and we just want to
3316 // set the y coord - MB
3318 // m_owner->PrepareDC( dc );
3321 m_owner
->CalcUnscrolledPosition( 0, 0, &x
, &y
);
3322 dc
.SetDeviceOrigin( 0, -y
);
3324 wxArrayInt rows
= m_owner
->CalcRowLabelsExposed( GetUpdateRegion() );
3325 m_owner
->DrawRowLabels( dc
, rows
);
3329 void wxGridRowLabelWindow::OnMouseEvent( wxMouseEvent
& event
)
3331 m_owner
->ProcessRowLabelMouseEvent( event
);
3335 void wxGridRowLabelWindow::OnMouseWheel( wxMouseEvent
& event
)
3337 m_owner
->GetEventHandler()->ProcessEvent(event
);
3341 // This seems to be required for wxMotif otherwise the mouse
3342 // cursor must be in the cell edit control to get key events
3344 void wxGridRowLabelWindow::OnKeyDown( wxKeyEvent
& event
)
3346 if ( !m_owner
->GetEventHandler()->ProcessEvent( event
) ) event
.Skip();
3349 void wxGridRowLabelWindow::OnKeyUp( wxKeyEvent
& event
)
3351 if ( !m_owner
->GetEventHandler()->ProcessEvent( event
) ) event
.Skip();
3356 //////////////////////////////////////////////////////////////////////
3358 IMPLEMENT_DYNAMIC_CLASS( wxGridColLabelWindow
, wxWindow
)
3360 BEGIN_EVENT_TABLE( wxGridColLabelWindow
, wxWindow
)
3361 EVT_PAINT( wxGridColLabelWindow::OnPaint
)
3362 EVT_MOUSEWHEEL( wxGridColLabelWindow::OnMouseWheel
)
3363 EVT_MOUSE_EVENTS( wxGridColLabelWindow::OnMouseEvent
)
3364 EVT_KEY_DOWN( wxGridColLabelWindow::OnKeyDown
)
3365 EVT_KEY_UP( wxGridColLabelWindow::OnKeyUp
)
3368 wxGridColLabelWindow::wxGridColLabelWindow( wxGrid
*parent
,
3370 const wxPoint
&pos
, const wxSize
&size
)
3371 : wxWindow( parent
, id
, pos
, size
, wxWANTS_CHARS
)
3376 void wxGridColLabelWindow::OnPaint( wxPaintEvent
& WXUNUSED(event
) )
3380 // NO - don't do this because it will set both the x and y origin
3381 // coords to match the parent scrolled window and we just want to
3382 // set the x coord - MB
3384 // m_owner->PrepareDC( dc );
3387 m_owner
->CalcUnscrolledPosition( 0, 0, &x
, &y
);
3388 dc
.SetDeviceOrigin( -x
, 0 );
3390 wxArrayInt cols
= m_owner
->CalcColLabelsExposed( GetUpdateRegion() );
3391 m_owner
->DrawColLabels( dc
, cols
);
3395 void wxGridColLabelWindow::OnMouseEvent( wxMouseEvent
& event
)
3397 m_owner
->ProcessColLabelMouseEvent( event
);
3400 void wxGridColLabelWindow::OnMouseWheel( wxMouseEvent
& event
)
3402 m_owner
->GetEventHandler()->ProcessEvent(event
);
3406 // This seems to be required for wxMotif otherwise the mouse
3407 // cursor must be in the cell edit control to get key events
3409 void wxGridColLabelWindow::OnKeyDown( wxKeyEvent
& event
)
3411 if ( !m_owner
->GetEventHandler()->ProcessEvent( event
) ) event
.Skip();
3414 void wxGridColLabelWindow::OnKeyUp( wxKeyEvent
& event
)
3416 if ( !m_owner
->GetEventHandler()->ProcessEvent( event
) ) event
.Skip();
3421 //////////////////////////////////////////////////////////////////////
3423 IMPLEMENT_DYNAMIC_CLASS( wxGridCornerLabelWindow
, wxWindow
)
3425 BEGIN_EVENT_TABLE( wxGridCornerLabelWindow
, wxWindow
)
3426 EVT_MOUSEWHEEL( wxGridCornerLabelWindow::OnMouseWheel
)
3427 EVT_MOUSE_EVENTS( wxGridCornerLabelWindow::OnMouseEvent
)
3428 EVT_PAINT( wxGridCornerLabelWindow::OnPaint
)
3429 EVT_KEY_DOWN( wxGridCornerLabelWindow::OnKeyDown
)
3430 EVT_KEY_UP( wxGridCornerLabelWindow::OnKeyUp
)
3433 wxGridCornerLabelWindow::wxGridCornerLabelWindow( wxGrid
*parent
,
3435 const wxPoint
&pos
, const wxSize
&size
)
3436 : wxWindow( parent
, id
, pos
, size
, wxWANTS_CHARS
)
3441 void wxGridCornerLabelWindow::OnPaint( wxPaintEvent
& WXUNUSED(event
) )
3445 int client_height
= 0;
3446 int client_width
= 0;
3447 GetClientSize( &client_width
, &client_height
);
3449 dc
.SetPen( *wxBLACK_PEN
);
3450 dc
.DrawLine( client_width
-1, client_height
-1, client_width
-1, 0 );
3451 dc
.DrawLine( client_width
-1, client_height
-1, 0, client_height
-1 );
3453 dc
.SetPen( *wxWHITE_PEN
);
3454 dc
.DrawLine( 0, 0, client_width
, 0 );
3455 dc
.DrawLine( 0, 0, 0, client_height
);
3459 void wxGridCornerLabelWindow::OnMouseEvent( wxMouseEvent
& event
)
3461 m_owner
->ProcessCornerLabelMouseEvent( event
);
3465 void wxGridCornerLabelWindow::OnMouseWheel( wxMouseEvent
& event
)
3467 m_owner
->GetEventHandler()->ProcessEvent(event
);
3470 // This seems to be required for wxMotif otherwise the mouse
3471 // cursor must be in the cell edit control to get key events
3473 void wxGridCornerLabelWindow::OnKeyDown( wxKeyEvent
& event
)
3475 if ( !m_owner
->GetEventHandler()->ProcessEvent( event
) ) event
.Skip();
3478 void wxGridCornerLabelWindow::OnKeyUp( wxKeyEvent
& event
)
3480 if ( !m_owner
->GetEventHandler()->ProcessEvent( event
) ) event
.Skip();
3485 //////////////////////////////////////////////////////////////////////
3487 IMPLEMENT_DYNAMIC_CLASS( wxGridWindow
, wxWindow
)
3489 BEGIN_EVENT_TABLE( wxGridWindow
, wxWindow
)
3490 EVT_PAINT( wxGridWindow::OnPaint
)
3491 EVT_MOUSEWHEEL( wxGridWindow::OnMouseWheel
)
3492 EVT_MOUSE_EVENTS( wxGridWindow::OnMouseEvent
)
3493 EVT_KEY_DOWN( wxGridWindow::OnKeyDown
)
3494 EVT_KEY_UP( wxGridWindow::OnKeyUp
)
3495 EVT_ERASE_BACKGROUND( wxGridWindow::OnEraseBackground
)
3498 wxGridWindow::wxGridWindow( wxGrid
*parent
,
3499 wxGridRowLabelWindow
*rowLblWin
,
3500 wxGridColLabelWindow
*colLblWin
,
3501 wxWindowID id
, const wxPoint
&pos
, const wxSize
&size
)
3502 : wxWindow( parent
, id
, pos
, size
, wxWANTS_CHARS
, wxT("grid window") )
3505 m_rowLabelWin
= rowLblWin
;
3506 m_colLabelWin
= colLblWin
;
3507 SetBackgroundColour(_T("WHITE"));
3511 wxGridWindow::~wxGridWindow()
3516 void wxGridWindow::OnPaint( wxPaintEvent
&WXUNUSED(event
) )
3518 wxPaintDC
dc( this );
3519 m_owner
->PrepareDC( dc
);
3520 wxRegion reg
= GetUpdateRegion();
3521 wxGridCellCoordsArray DirtyCells
= m_owner
->CalcCellsExposed( reg
);
3522 m_owner
->DrawGridCellArea( dc
, DirtyCells
);
3523 #if WXGRID_DRAW_LINES
3524 m_owner
->DrawAllGridLines( dc
, reg
);
3526 m_owner
->DrawGridSpace( dc
);
3527 m_owner
->DrawHighlight( dc
, DirtyCells
);
3531 void wxGridWindow::ScrollWindow( int dx
, int dy
, const wxRect
*rect
)
3533 wxWindow::ScrollWindow( dx
, dy
, rect
);
3534 m_rowLabelWin
->ScrollWindow( 0, dy
, rect
);
3535 m_colLabelWin
->ScrollWindow( dx
, 0, rect
);
3539 void wxGridWindow::OnMouseEvent( wxMouseEvent
& event
)
3541 m_owner
->ProcessGridCellMouseEvent( event
);
3544 void wxGridWindow::OnMouseWheel( wxMouseEvent
& event
)
3546 m_owner
->GetEventHandler()->ProcessEvent(event
);
3549 // This seems to be required for wxMotif/wxGTK otherwise the mouse
3550 // cursor must be in the cell edit control to get key events
3552 void wxGridWindow::OnKeyDown( wxKeyEvent
& event
)
3554 if ( !m_owner
->GetEventHandler()->ProcessEvent( event
) ) event
.Skip();
3557 void wxGridWindow::OnKeyUp( wxKeyEvent
& event
)
3559 if ( !m_owner
->GetEventHandler()->ProcessEvent( event
) ) event
.Skip();
3562 void wxGridWindow::OnEraseBackground( wxEraseEvent
& WXUNUSED(event
) )
3567 //////////////////////////////////////////////////////////////////////
3569 // Internal Helper function for computing row or column from some
3570 // (unscrolled) coordinate value, using either
3571 // m_defaultRowHeight/m_defaultColWidth or binary search on array
3572 // of m_rowBottoms/m_ColRights to speed up the search!
3574 // Internal helper macros for simpler use of that function
3576 static int CoordToRowOrCol(int coord
, int defaultDist
, int minDist
,
3577 const wxArrayInt
& BorderArray
, int nMax
,
3578 bool maxOnOverflow
);
3580 #define internalXToCol(x) CoordToRowOrCol(x, m_defaultColWidth, \
3581 WXGRID_MIN_COL_WIDTH, \
3582 m_colRights, m_numCols, TRUE)
3583 #define internalYToRow(y) CoordToRowOrCol(y, m_defaultRowHeight, \
3584 WXGRID_MIN_ROW_HEIGHT, \
3585 m_rowBottoms, m_numRows, TRUE)
3586 /////////////////////////////////////////////////////////////////////
3588 IMPLEMENT_DYNAMIC_CLASS( wxGrid
, wxScrolledWindow
)
3590 BEGIN_EVENT_TABLE( wxGrid
, wxScrolledWindow
)
3591 EVT_PAINT( wxGrid::OnPaint
)
3592 EVT_SIZE( wxGrid::OnSize
)
3593 EVT_KEY_DOWN( wxGrid::OnKeyDown
)
3594 EVT_KEY_UP( wxGrid::OnKeyUp
)
3595 EVT_ERASE_BACKGROUND( wxGrid::OnEraseBackground
)
3598 wxGrid::wxGrid( wxWindow
*parent
,
3603 const wxString
& name
)
3604 : wxScrolledWindow( parent
, id
, pos
, size
, (style
| wxWANTS_CHARS
), name
),
3605 m_colMinWidths(GRID_HASH_SIZE
),
3606 m_rowMinHeights(GRID_HASH_SIZE
)
3614 // Must do this or ~wxScrollHelper will pop the wrong event handler
3615 SetTargetWindow(this);
3617 wxSafeDecRef(m_defaultCellAttr
);
3619 #ifdef DEBUG_ATTR_CACHE
3620 size_t total
= gs_nAttrCacheHits
+ gs_nAttrCacheMisses
;
3621 wxPrintf(_T("wxGrid attribute cache statistics: "
3622 "total: %u, hits: %u (%u%%)\n"),
3623 total
, gs_nAttrCacheHits
,
3624 total
? (gs_nAttrCacheHits
*100) / total
: 0);
3630 delete m_typeRegistry
;
3636 // ----- internal init and update functions
3639 void wxGrid::Create()
3641 m_created
= FALSE
; // set to TRUE by CreateGrid
3643 m_table
= (wxGridTableBase
*) NULL
;
3646 m_cellEditCtrlEnabled
= FALSE
;
3648 m_defaultCellAttr
= new wxGridCellAttr();
3650 // Set default cell attributes
3651 m_defaultCellAttr
->SetDefAttr(m_defaultCellAttr
);
3652 m_defaultCellAttr
->SetKind(wxGridCellAttr::Default
);
3653 m_defaultCellAttr
->SetFont(GetFont());
3654 m_defaultCellAttr
->SetAlignment(wxALIGN_LEFT
, wxALIGN_TOP
);
3655 m_defaultCellAttr
->SetTextColour(
3656 wxSystemSettings::GetColour(wxSYS_COLOUR_WINDOWTEXT
));
3657 m_defaultCellAttr
->SetBackgroundColour(
3658 wxSystemSettings::GetColour(wxSYS_COLOUR_WINDOW
));
3659 m_defaultCellAttr
->SetRenderer(new wxGridCellStringRenderer
);
3660 m_defaultCellAttr
->SetEditor(new wxGridCellTextEditor
);
3665 m_currentCellCoords
= wxGridNoCellCoords
;
3667 m_rowLabelWidth
= WXGRID_DEFAULT_ROW_LABEL_WIDTH
;
3668 m_colLabelHeight
= WXGRID_DEFAULT_COL_LABEL_HEIGHT
;
3670 // create the type registry
3671 m_typeRegistry
= new wxGridTypeRegistry
;
3674 // subwindow components that make up the wxGrid
3675 m_cornerLabelWin
= new wxGridCornerLabelWindow( this,
3680 m_rowLabelWin
= new wxGridRowLabelWindow( this,
3685 m_colLabelWin
= new wxGridColLabelWindow( this,
3690 m_gridWin
= new wxGridWindow( this,
3697 SetTargetWindow( m_gridWin
);
3703 bool wxGrid::CreateGrid( int numRows
, int numCols
,
3704 wxGrid::wxGridSelectionModes selmode
)
3706 wxCHECK_MSG( !m_created
,
3708 wxT("wxGrid::CreateGrid or wxGrid::SetTable called more than once") );
3710 m_numRows
= numRows
;
3711 m_numCols
= numCols
;
3713 m_table
= new wxGridStringTable( m_numRows
, m_numCols
);
3714 m_table
->SetView( this );
3716 m_selection
= new wxGridSelection( this, selmode
);
3725 void wxGrid::SetSelectionMode(wxGrid::wxGridSelectionModes selmode
)
3727 wxCHECK_RET( m_created
,
3728 wxT("Called wxGrid::SetSelectionMode() before calling CreateGrid()") );
3730 m_selection
->SetSelectionMode( selmode
);
3733 wxGrid::wxGridSelectionModes
wxGrid::GetSelectionMode() const
3735 wxCHECK_MSG( m_created
, wxGrid::wxGridSelectCells
,
3736 wxT("Called wxGrid::GetSelectionMode() before calling CreateGrid()") );
3738 return m_selection
->GetSelectionMode();
3741 bool wxGrid::SetTable( wxGridTableBase
*table
, bool takeOwnership
,
3742 wxGrid::wxGridSelectionModes selmode
)
3746 // RD: Actually, this should probably be allowed. I think it would be
3747 // nice to be able to switch multiple Tables in and out of a single
3748 // View at runtime. Is there anything in the implementation that
3749 // would prevent this?
3751 // At least, you now have to cope with m_selection
3752 wxFAIL_MSG( wxT("wxGrid::CreateGrid or wxGrid::SetTable called more than once") );
3757 m_numRows
= table
->GetNumberRows();
3758 m_numCols
= table
->GetNumberCols();
3761 m_table
->SetView( this );
3764 m_selection
= new wxGridSelection( this, selmode
);
3777 m_rowLabelWidth
= WXGRID_DEFAULT_ROW_LABEL_WIDTH
;
3778 m_colLabelHeight
= WXGRID_DEFAULT_COL_LABEL_HEIGHT
;
3780 if ( m_rowLabelWin
)
3782 m_labelBackgroundColour
= m_rowLabelWin
->GetBackgroundColour();
3786 m_labelBackgroundColour
= wxColour( _T("WHITE") );
3789 m_labelTextColour
= wxColour( _T("BLACK") );
3792 m_attrCache
.row
= -1;
3794 // TODO: something better than this ?
3796 m_labelFont
= this->GetFont();
3797 m_labelFont
.SetWeight( m_labelFont
.GetWeight() + 2 );
3799 m_rowLabelHorizAlign
= wxALIGN_LEFT
;
3800 m_rowLabelVertAlign
= wxALIGN_CENTRE
;
3802 m_colLabelHorizAlign
= wxALIGN_CENTRE
;
3803 m_colLabelVertAlign
= wxALIGN_TOP
;
3805 m_defaultColWidth
= WXGRID_DEFAULT_COL_WIDTH
;
3806 m_defaultRowHeight
= m_gridWin
->GetCharHeight();
3808 #if defined(__WXMOTIF__) || defined(__WXGTK__) // see also text ctrl sizing in ShowCellEditControl()
3809 m_defaultRowHeight
+= 8;
3811 m_defaultRowHeight
+= 4;
3814 m_gridLineColour
= wxColour( 128, 128, 255 );
3815 m_gridLinesEnabled
= TRUE
;
3816 m_cellHighlightColour
= m_gridLineColour
;
3817 m_cellHighlightPenWidth
= 2;
3818 m_cellHighlightROPenWidth
= 1;
3820 m_cursorMode
= WXGRID_CURSOR_SELECT_CELL
;
3821 m_winCapture
= (wxWindow
*)NULL
;
3822 m_canDragRowSize
= TRUE
;
3823 m_canDragColSize
= TRUE
;
3824 m_canDragGridSize
= TRUE
;
3826 m_dragRowOrCol
= -1;
3827 m_isDragging
= FALSE
;
3828 m_startDragPos
= wxDefaultPosition
;
3830 m_waitForSlowClick
= FALSE
;
3832 m_rowResizeCursor
= wxCursor( wxCURSOR_SIZENS
);
3833 m_colResizeCursor
= wxCursor( wxCURSOR_SIZEWE
);
3835 m_currentCellCoords
= wxGridNoCellCoords
;
3837 m_selectingTopLeft
= wxGridNoCellCoords
;
3838 m_selectingBottomRight
= wxGridNoCellCoords
;
3839 m_selectionBackground
= wxSystemSettings::GetColour(wxSYS_COLOUR_HIGHLIGHT
);
3840 m_selectionForeground
= wxSystemSettings::GetColour(wxSYS_COLOUR_HIGHLIGHTTEXT
);
3842 m_editable
= TRUE
; // default for whole grid
3844 m_inOnKeyDown
= FALSE
;
3851 // ----------------------------------------------------------------------------
3852 // the idea is to call these functions only when necessary because they create
3853 // quite big arrays which eat memory mostly unnecessary - in particular, if
3854 // default widths/heights are used for all rows/columns, we may not use these
3857 // with some extra code, it should be possible to only store the
3858 // widths/heights different from default ones but this will be done later...
3859 // ----------------------------------------------------------------------------
3861 void wxGrid::InitRowHeights()
3863 m_rowHeights
.Empty();
3864 m_rowBottoms
.Empty();
3866 m_rowHeights
.Alloc( m_numRows
);
3867 m_rowBottoms
.Alloc( m_numRows
);
3871 m_rowHeights
.Add( m_defaultRowHeight
, m_numRows
);
3873 for ( int i
= 0; i
< m_numRows
; i
++ )
3875 rowBottom
+= m_defaultRowHeight
;
3876 m_rowBottoms
.Add( rowBottom
);
3880 void wxGrid::InitColWidths()
3882 m_colWidths
.Empty();
3883 m_colRights
.Empty();
3885 m_colWidths
.Alloc( m_numCols
);
3886 m_colRights
.Alloc( m_numCols
);
3889 m_colWidths
.Add( m_defaultColWidth
, m_numCols
);
3891 for ( int i
= 0; i
< m_numCols
; i
++ )
3893 colRight
+= m_defaultColWidth
;
3894 m_colRights
.Add( colRight
);
3898 int wxGrid::GetColWidth(int col
) const
3900 return m_colWidths
.IsEmpty() ? m_defaultColWidth
: m_colWidths
[col
];
3903 int wxGrid::GetColLeft(int col
) const
3905 return m_colRights
.IsEmpty() ? col
* m_defaultColWidth
3906 : m_colRights
[col
] - m_colWidths
[col
];
3909 int wxGrid::GetColRight(int col
) const
3911 return m_colRights
.IsEmpty() ? (col
+ 1) * m_defaultColWidth
3915 int wxGrid::GetRowHeight(int row
) const
3917 return m_rowHeights
.IsEmpty() ? m_defaultRowHeight
: m_rowHeights
[row
];
3920 int wxGrid::GetRowTop(int row
) const
3922 return m_rowBottoms
.IsEmpty() ? row
* m_defaultRowHeight
3923 : m_rowBottoms
[row
] - m_rowHeights
[row
];
3926 int wxGrid::GetRowBottom(int row
) const
3928 return m_rowBottoms
.IsEmpty() ? (row
+ 1) * m_defaultRowHeight
3929 : m_rowBottoms
[row
];
3932 void wxGrid::CalcDimensions()
3935 GetClientSize( &cw
, &ch
);
3937 if ( m_rowLabelWin
->IsShown() )
3938 cw
-= m_rowLabelWidth
;
3939 if ( m_colLabelWin
->IsShown() )
3940 ch
-= m_colLabelHeight
;
3943 int w
= m_numCols
> 0 ? GetColRight(m_numCols
- 1) + m_extraWidth
+ 1 : 0;
3944 int h
= m_numRows
> 0 ? GetRowBottom(m_numRows
- 1) + m_extraHeight
+ 1 : 0;
3946 // preserve (more or less) the previous position
3948 GetViewStart( &x
, &y
);
3950 // maybe we don't need scrollbars at all?
3952 // also adjust the position to be valid for the new scroll rangs
3973 // do set scrollbar parameters
3974 SetScrollbars( GRID_SCROLL_LINE_X
, GRID_SCROLL_LINE_Y
,
3975 GetScrollX(w
), GetScrollY(h
), x
, y
,
3976 GetBatchCount() != 0);
3978 // if our OnSize() hadn't been called (it would if we have scrollbars), we
3979 // still must reposition the children
3984 void wxGrid::CalcWindowSizes()
3987 GetClientSize( &cw
, &ch
);
3989 if ( m_cornerLabelWin
->IsShown() )
3990 m_cornerLabelWin
->SetSize( 0, 0, m_rowLabelWidth
, m_colLabelHeight
);
3992 if ( m_colLabelWin
->IsShown() )
3993 m_colLabelWin
->SetSize( m_rowLabelWidth
, 0, cw
-m_rowLabelWidth
, m_colLabelHeight
);
3995 if ( m_rowLabelWin
->IsShown() )
3996 m_rowLabelWin
->SetSize( 0, m_colLabelHeight
, m_rowLabelWidth
, ch
-m_colLabelHeight
);
3998 if ( m_gridWin
->IsShown() )
3999 m_gridWin
->SetSize( m_rowLabelWidth
, m_colLabelHeight
, cw
-m_rowLabelWidth
, ch
-m_colLabelHeight
);
4003 // this is called when the grid table sends a message to say that it
4004 // has been redimensioned
4006 bool wxGrid::Redimension( wxGridTableMessage
& msg
)
4009 bool result
= FALSE
;
4011 // Clear the attribute cache as the attribute might refer to a different
4012 // cell than stored in the cache after adding/removing rows/columns.
4014 // By the same reasoning, the editor should be dismissed if columns are
4015 // added or removed. And for consistency, it should IMHO always be
4016 // removed, not only if the cell "underneath" it actually changes.
4017 // For now, I intentionally do not save the editor's content as the
4018 // cell it might want to save that stuff to might no longer exist.
4019 HideCellEditControl();
4021 // if we were using the default widths/heights so far, we must change them
4023 if ( m_colWidths
.IsEmpty() )
4028 if ( m_rowHeights
.IsEmpty() )
4034 switch ( msg
.GetId() )
4036 case wxGRIDTABLE_NOTIFY_ROWS_INSERTED
:
4038 size_t pos
= msg
.GetCommandInt();
4039 int numRows
= msg
.GetCommandInt2();
4041 m_numRows
+= numRows
;
4043 if ( !m_rowHeights
.IsEmpty() )
4045 m_rowHeights
.Insert( m_defaultRowHeight
, pos
, numRows
);
4046 m_rowBottoms
.Insert( 0, pos
, numRows
);
4049 if ( pos
> 0 ) bottom
= m_rowBottoms
[pos
-1];
4051 for ( i
= pos
; i
< m_numRows
; i
++ )
4053 bottom
+= m_rowHeights
[i
];
4054 m_rowBottoms
[i
] = bottom
;
4057 if ( m_currentCellCoords
== wxGridNoCellCoords
)
4059 // if we have just inserted cols into an empty grid the current
4060 // cell will be undefined...
4062 SetCurrentCell( 0, 0 );
4066 m_selection
->UpdateRows( pos
, numRows
);
4067 wxGridCellAttrProvider
* attrProvider
= m_table
->GetAttrProvider();
4069 attrProvider
->UpdateAttrRows( pos
, numRows
);
4071 if ( !GetBatchCount() )
4074 m_rowLabelWin
->Refresh();
4080 case wxGRIDTABLE_NOTIFY_ROWS_APPENDED
:
4082 int numRows
= msg
.GetCommandInt();
4083 int oldNumRows
= m_numRows
;
4084 m_numRows
+= numRows
;
4086 if ( !m_rowHeights
.IsEmpty() )
4088 m_rowHeights
.Add( m_defaultRowHeight
, numRows
);
4089 m_rowBottoms
.Add( 0, numRows
);
4092 if ( oldNumRows
> 0 ) bottom
= m_rowBottoms
[oldNumRows
-1];
4094 for ( i
= oldNumRows
; i
< m_numRows
; i
++ )
4096 bottom
+= m_rowHeights
[i
];
4097 m_rowBottoms
[i
] = bottom
;
4100 if ( m_currentCellCoords
== wxGridNoCellCoords
)
4102 // if we have just inserted cols into an empty grid the current
4103 // cell will be undefined...
4105 SetCurrentCell( 0, 0 );
4107 if ( !GetBatchCount() )
4110 m_rowLabelWin
->Refresh();
4116 case wxGRIDTABLE_NOTIFY_ROWS_DELETED
:
4118 size_t pos
= msg
.GetCommandInt();
4119 int numRows
= msg
.GetCommandInt2();
4120 m_numRows
-= numRows
;
4122 if ( !m_rowHeights
.IsEmpty() )
4124 m_rowHeights
.RemoveAt( pos
, numRows
);
4125 m_rowBottoms
.RemoveAt( pos
, numRows
);
4128 for ( i
= 0; i
< m_numRows
; i
++ )
4130 h
+= m_rowHeights
[i
];
4131 m_rowBottoms
[i
] = h
;
4136 m_currentCellCoords
= wxGridNoCellCoords
;
4140 if ( m_currentCellCoords
.GetRow() >= m_numRows
)
4141 m_currentCellCoords
.Set( 0, 0 );
4145 m_selection
->UpdateRows( pos
, -((int)numRows
) );
4146 wxGridCellAttrProvider
* attrProvider
= m_table
->GetAttrProvider();
4148 attrProvider
->UpdateAttrRows( pos
, -((int)numRows
) );
4149 // ifdef'd out following patch from Paul Gammans
4151 // No need to touch column attributes, unless we
4152 // removed _all_ rows, in this case, we remove
4153 // all column attributes.
4154 // I hate to do this here, but the
4155 // needed data is not available inside UpdateAttrRows.
4156 if ( !GetNumberRows() )
4157 attrProvider
->UpdateAttrCols( 0, -GetNumberCols() );
4160 if ( !GetBatchCount() )
4163 m_rowLabelWin
->Refresh();
4169 case wxGRIDTABLE_NOTIFY_COLS_INSERTED
:
4171 size_t pos
= msg
.GetCommandInt();
4172 int numCols
= msg
.GetCommandInt2();
4173 m_numCols
+= numCols
;
4175 if ( !m_colWidths
.IsEmpty() )
4177 m_colWidths
.Insert( m_defaultColWidth
, pos
, numCols
);
4178 m_colRights
.Insert( 0, pos
, numCols
);
4181 if ( pos
> 0 ) right
= m_colRights
[pos
-1];
4183 for ( i
= pos
; i
< m_numCols
; i
++ )
4185 right
+= m_colWidths
[i
];
4186 m_colRights
[i
] = right
;
4189 if ( m_currentCellCoords
== wxGridNoCellCoords
)
4191 // if we have just inserted cols into an empty grid the current
4192 // cell will be undefined...
4194 SetCurrentCell( 0, 0 );
4198 m_selection
->UpdateCols( pos
, numCols
);
4199 wxGridCellAttrProvider
* attrProvider
= m_table
->GetAttrProvider();
4201 attrProvider
->UpdateAttrCols( pos
, numCols
);
4202 if ( !GetBatchCount() )
4205 m_colLabelWin
->Refresh();
4212 case wxGRIDTABLE_NOTIFY_COLS_APPENDED
:
4214 int numCols
= msg
.GetCommandInt();
4215 int oldNumCols
= m_numCols
;
4216 m_numCols
+= numCols
;
4217 if ( !m_colWidths
.IsEmpty() )
4219 m_colWidths
.Add( m_defaultColWidth
, numCols
);
4220 m_colRights
.Add( 0, numCols
);
4223 if ( oldNumCols
> 0 ) right
= m_colRights
[oldNumCols
-1];
4225 for ( i
= oldNumCols
; i
< m_numCols
; i
++ )
4227 right
+= m_colWidths
[i
];
4228 m_colRights
[i
] = right
;
4231 if ( m_currentCellCoords
== wxGridNoCellCoords
)
4233 // if we have just inserted cols into an empty grid the current
4234 // cell will be undefined...
4236 SetCurrentCell( 0, 0 );
4238 if ( !GetBatchCount() )
4241 m_colLabelWin
->Refresh();
4247 case wxGRIDTABLE_NOTIFY_COLS_DELETED
:
4249 size_t pos
= msg
.GetCommandInt();
4250 int numCols
= msg
.GetCommandInt2();
4251 m_numCols
-= numCols
;
4253 if ( !m_colWidths
.IsEmpty() )
4255 m_colWidths
.RemoveAt( pos
, numCols
);
4256 m_colRights
.RemoveAt( pos
, numCols
);
4259 for ( i
= 0; i
< m_numCols
; i
++ )
4261 w
+= m_colWidths
[i
];
4267 m_currentCellCoords
= wxGridNoCellCoords
;
4271 if ( m_currentCellCoords
.GetCol() >= m_numCols
)
4272 m_currentCellCoords
.Set( 0, 0 );
4276 m_selection
->UpdateCols( pos
, -((int)numCols
) );
4277 wxGridCellAttrProvider
* attrProvider
= m_table
->GetAttrProvider();
4279 attrProvider
->UpdateAttrCols( pos
, -((int)numCols
) );
4280 // ifdef'd out following patch from Paul Gammans
4282 // No need to touch row attributes, unless we
4283 // removed _all_ columns, in this case, we remove
4284 // all row attributes.
4285 // I hate to do this here, but the
4286 // needed data is not available inside UpdateAttrCols.
4287 if ( !GetNumberCols() )
4288 attrProvider
->UpdateAttrRows( 0, -GetNumberRows() );
4291 if ( !GetBatchCount() )
4294 m_colLabelWin
->Refresh();
4301 if (result
&& !GetBatchCount() )
4302 m_gridWin
->Refresh();
4307 wxArrayInt
wxGrid::CalcRowLabelsExposed( const wxRegion
& reg
)
4309 wxRegionIterator
iter( reg
);
4312 wxArrayInt rowlabels
;
4319 // TODO: remove this when we can...
4320 // There is a bug in wxMotif that gives garbage update
4321 // rectangles if you jump-scroll a long way by clicking the
4322 // scrollbar with middle button. This is a work-around
4324 #if defined(__WXMOTIF__)
4326 m_gridWin
->GetClientSize( &cw
, &ch
);
4327 if ( r
.GetTop() > ch
) r
.SetTop( 0 );
4328 r
.SetBottom( wxMin( r
.GetBottom(), ch
) );
4331 // logical bounds of update region
4334 CalcUnscrolledPosition( 0, r
.GetTop(), &dummy
, &top
);
4335 CalcUnscrolledPosition( 0, r
.GetBottom(), &dummy
, &bottom
);
4337 // find the row labels within these bounds
4340 for ( row
= internalYToRow(top
); row
< m_numRows
; row
++ )
4342 if ( GetRowBottom(row
) < top
)
4345 if ( GetRowTop(row
) > bottom
)
4348 rowlabels
.Add( row
);
4358 wxArrayInt
wxGrid::CalcColLabelsExposed( const wxRegion
& reg
)
4360 wxRegionIterator
iter( reg
);
4363 wxArrayInt colLabels
;
4370 // TODO: remove this when we can...
4371 // There is a bug in wxMotif that gives garbage update
4372 // rectangles if you jump-scroll a long way by clicking the
4373 // scrollbar with middle button. This is a work-around
4375 #if defined(__WXMOTIF__)
4377 m_gridWin
->GetClientSize( &cw
, &ch
);
4378 if ( r
.GetLeft() > cw
) r
.SetLeft( 0 );
4379 r
.SetRight( wxMin( r
.GetRight(), cw
) );
4382 // logical bounds of update region
4385 CalcUnscrolledPosition( r
.GetLeft(), 0, &left
, &dummy
);
4386 CalcUnscrolledPosition( r
.GetRight(), 0, &right
, &dummy
);
4388 // find the cells within these bounds
4391 for ( col
= internalXToCol(left
); col
< m_numCols
; col
++ )
4393 if ( GetColRight(col
) < left
)
4396 if ( GetColLeft(col
) > right
)
4399 colLabels
.Add( col
);
4408 wxGridCellCoordsArray
wxGrid::CalcCellsExposed( const wxRegion
& reg
)
4410 wxRegionIterator
iter( reg
);
4413 wxGridCellCoordsArray cellsExposed
;
4415 int left
, top
, right
, bottom
;
4420 // TODO: remove this when we can...
4421 // There is a bug in wxMotif that gives garbage update
4422 // rectangles if you jump-scroll a long way by clicking the
4423 // scrollbar with middle button. This is a work-around
4425 #if defined(__WXMOTIF__)
4427 m_gridWin
->GetClientSize( &cw
, &ch
);
4428 if ( r
.GetTop() > ch
) r
.SetTop( 0 );
4429 if ( r
.GetLeft() > cw
) r
.SetLeft( 0 );
4430 r
.SetRight( wxMin( r
.GetRight(), cw
) );
4431 r
.SetBottom( wxMin( r
.GetBottom(), ch
) );
4434 // logical bounds of update region
4436 CalcUnscrolledPosition( r
.GetLeft(), r
.GetTop(), &left
, &top
);
4437 CalcUnscrolledPosition( r
.GetRight(), r
.GetBottom(), &right
, &bottom
);
4439 // find the cells within these bounds
4442 for ( row
= internalYToRow(top
); row
< m_numRows
; row
++ )
4444 if ( GetRowBottom(row
) <= top
)
4447 if ( GetRowTop(row
) > bottom
)
4450 for ( col
= internalXToCol(left
); col
< m_numCols
; col
++ )
4452 if ( GetColRight(col
) <= left
)
4455 if ( GetColLeft(col
) > right
)
4458 cellsExposed
.Add( wxGridCellCoords( row
, col
) );
4465 return cellsExposed
;
4469 void wxGrid::ProcessRowLabelMouseEvent( wxMouseEvent
& event
)
4472 wxPoint
pos( event
.GetPosition() );
4473 CalcUnscrolledPosition( pos
.x
, pos
.y
, &x
, &y
);
4475 if ( event
.Dragging() )
4479 m_isDragging
= TRUE
;
4480 m_rowLabelWin
->CaptureMouse();
4483 if ( event
.LeftIsDown() )
4485 switch( m_cursorMode
)
4487 case WXGRID_CURSOR_RESIZE_ROW
:
4489 int cw
, ch
, left
, dummy
;
4490 m_gridWin
->GetClientSize( &cw
, &ch
);
4491 CalcUnscrolledPosition( 0, 0, &left
, &dummy
);
4493 wxClientDC
dc( m_gridWin
);
4496 GetRowTop(m_dragRowOrCol
) +
4497 GetRowMinimalHeight(m_dragRowOrCol
) );
4498 dc
.SetLogicalFunction(wxINVERT
);
4499 if ( m_dragLastPos
>= 0 )
4501 dc
.DrawLine( left
, m_dragLastPos
, left
+cw
, m_dragLastPos
);
4503 dc
.DrawLine( left
, y
, left
+cw
, y
);
4508 case WXGRID_CURSOR_SELECT_ROW
:
4509 if ( (row
= YToRow( y
)) >= 0 )
4513 m_selection
->SelectRow( row
,
4514 event
.ControlDown(),
4521 // default label to suppress warnings about "enumeration value
4522 // 'xxx' not handled in switch
4530 if ( m_isDragging
&& (event
.Entering() || event
.Leaving()) )
4535 if (m_rowLabelWin
->HasCapture()) m_rowLabelWin
->ReleaseMouse();
4536 m_isDragging
= FALSE
;
4539 // ------------ Entering or leaving the window
4541 if ( event
.Entering() || event
.Leaving() )
4543 ChangeCursorMode(WXGRID_CURSOR_SELECT_CELL
, m_rowLabelWin
);
4547 // ------------ Left button pressed
4549 else if ( event
.LeftDown() )
4551 // don't send a label click event for a hit on the
4552 // edge of the row label - this is probably the user
4553 // wanting to resize the row
4555 if ( YToEdgeOfRow(y
) < 0 )
4559 !SendEvent( wxEVT_GRID_LABEL_LEFT_CLICK
, row
, -1, event
) )
4561 if ( !event
.ShiftDown() && !event
.ControlDown() )
4565 if ( event
.ShiftDown() )
4567 m_selection
->SelectBlock( m_currentCellCoords
.GetRow(),
4570 GetNumberCols() - 1,
4571 event
.ControlDown(),
4578 m_selection
->SelectRow( row
,
4579 event
.ControlDown(),
4586 ChangeCursorMode(WXGRID_CURSOR_SELECT_ROW
, m_rowLabelWin
);
4591 // starting to drag-resize a row
4593 if ( CanDragRowSize() )
4594 ChangeCursorMode(WXGRID_CURSOR_RESIZE_ROW
, m_rowLabelWin
);
4599 // ------------ Left double click
4601 else if (event
.LeftDClick() )
4603 if ( YToEdgeOfRow(y
) < 0 )
4606 SendEvent( wxEVT_GRID_LABEL_LEFT_DCLICK
, row
, -1, event
);
4611 // ------------ Left button released
4613 else if ( event
.LeftUp() )
4615 if ( m_cursorMode
== WXGRID_CURSOR_RESIZE_ROW
)
4617 DoEndDragResizeRow();
4619 // Note: we are ending the event *after* doing
4620 // default processing in this case
4622 SendEvent( wxEVT_GRID_ROW_SIZE
, m_dragRowOrCol
, -1, event
);
4625 ChangeCursorMode(WXGRID_CURSOR_SELECT_CELL
, m_rowLabelWin
);
4630 // ------------ Right button down
4632 else if ( event
.RightDown() )
4635 if ( !SendEvent( wxEVT_GRID_LABEL_RIGHT_CLICK
, row
, -1, event
) )
4637 // no default action at the moment
4642 // ------------ Right double click
4644 else if ( event
.RightDClick() )
4647 if ( !SendEvent( wxEVT_GRID_LABEL_RIGHT_DCLICK
, row
, -1, event
) )
4649 // no default action at the moment
4654 // ------------ No buttons down and mouse moving
4656 else if ( event
.Moving() )
4658 m_dragRowOrCol
= YToEdgeOfRow( y
);
4659 if ( m_dragRowOrCol
>= 0 )
4661 if ( m_cursorMode
== WXGRID_CURSOR_SELECT_CELL
)
4663 // don't capture the mouse yet
4664 if ( CanDragRowSize() )
4665 ChangeCursorMode(WXGRID_CURSOR_RESIZE_ROW
, m_rowLabelWin
, FALSE
);
4668 else if ( m_cursorMode
!= WXGRID_CURSOR_SELECT_CELL
)
4670 ChangeCursorMode(WXGRID_CURSOR_SELECT_CELL
, m_rowLabelWin
, FALSE
);
4676 void wxGrid::ProcessColLabelMouseEvent( wxMouseEvent
& event
)
4679 wxPoint
pos( event
.GetPosition() );
4680 CalcUnscrolledPosition( pos
.x
, pos
.y
, &x
, &y
);
4682 if ( event
.Dragging() )
4686 m_isDragging
= TRUE
;
4687 m_colLabelWin
->CaptureMouse();
4690 if ( event
.LeftIsDown() )
4692 switch( m_cursorMode
)
4694 case WXGRID_CURSOR_RESIZE_COL
:
4696 int cw
, ch
, dummy
, top
;
4697 m_gridWin
->GetClientSize( &cw
, &ch
);
4698 CalcUnscrolledPosition( 0, 0, &dummy
, &top
);
4700 wxClientDC
dc( m_gridWin
);
4703 x
= wxMax( x
, GetColLeft(m_dragRowOrCol
) +
4704 GetColMinimalWidth(m_dragRowOrCol
));
4705 dc
.SetLogicalFunction(wxINVERT
);
4706 if ( m_dragLastPos
>= 0 )
4708 dc
.DrawLine( m_dragLastPos
, top
, m_dragLastPos
, top
+ch
);
4710 dc
.DrawLine( x
, top
, x
, top
+ch
);
4715 case WXGRID_CURSOR_SELECT_COL
:
4716 if ( (col
= XToCol( x
)) >= 0 )
4720 m_selection
->SelectCol( col
,
4721 event
.ControlDown(),
4728 // default label to suppress warnings about "enumeration value
4729 // 'xxx' not handled in switch
4737 if ( m_isDragging
&& (event
.Entering() || event
.Leaving()) )
4742 if (m_colLabelWin
->HasCapture()) m_colLabelWin
->ReleaseMouse();
4743 m_isDragging
= FALSE
;
4746 // ------------ Entering or leaving the window
4748 if ( event
.Entering() || event
.Leaving() )
4750 ChangeCursorMode(WXGRID_CURSOR_SELECT_CELL
, m_colLabelWin
);
4754 // ------------ Left button pressed
4756 else if ( event
.LeftDown() )
4758 // don't send a label click event for a hit on the
4759 // edge of the col label - this is probably the user
4760 // wanting to resize the col
4762 if ( XToEdgeOfCol(x
) < 0 )
4766 !SendEvent( wxEVT_GRID_LABEL_LEFT_CLICK
, -1, col
, event
) )
4768 if ( !event
.ShiftDown() && !event
.ControlDown() )
4772 if ( event
.ShiftDown() )
4774 m_selection
->SelectBlock( 0,
4775 m_currentCellCoords
.GetCol(),
4776 GetNumberRows() - 1, col
,
4777 event
.ControlDown(),
4784 m_selection
->SelectCol( col
,
4785 event
.ControlDown(),
4792 ChangeCursorMode(WXGRID_CURSOR_SELECT_COL
, m_colLabelWin
);
4797 // starting to drag-resize a col
4799 if ( CanDragColSize() )
4800 ChangeCursorMode(WXGRID_CURSOR_RESIZE_COL
, m_colLabelWin
);
4805 // ------------ Left double click
4807 if ( event
.LeftDClick() )
4809 if ( XToEdgeOfCol(x
) < 0 )
4812 SendEvent( wxEVT_GRID_LABEL_LEFT_DCLICK
, -1, col
, event
);
4817 // ------------ Left button released
4819 else if ( event
.LeftUp() )
4821 if ( m_cursorMode
== WXGRID_CURSOR_RESIZE_COL
)
4823 DoEndDragResizeCol();
4825 // Note: we are ending the event *after* doing
4826 // default processing in this case
4828 SendEvent( wxEVT_GRID_COL_SIZE
, -1, m_dragRowOrCol
, event
);
4831 ChangeCursorMode(WXGRID_CURSOR_SELECT_CELL
, m_colLabelWin
);
4836 // ------------ Right button down
4838 else if ( event
.RightDown() )
4841 if ( !SendEvent( wxEVT_GRID_LABEL_RIGHT_CLICK
, -1, col
, event
) )
4843 // no default action at the moment
4848 // ------------ Right double click
4850 else if ( event
.RightDClick() )
4853 if ( !SendEvent( wxEVT_GRID_LABEL_RIGHT_DCLICK
, -1, col
, event
) )
4855 // no default action at the moment
4860 // ------------ No buttons down and mouse moving
4862 else if ( event
.Moving() )
4864 m_dragRowOrCol
= XToEdgeOfCol( x
);
4865 if ( m_dragRowOrCol
>= 0 )
4867 if ( m_cursorMode
== WXGRID_CURSOR_SELECT_CELL
)
4869 // don't capture the cursor yet
4870 if ( CanDragColSize() )
4871 ChangeCursorMode(WXGRID_CURSOR_RESIZE_COL
, m_colLabelWin
, FALSE
);
4874 else if ( m_cursorMode
!= WXGRID_CURSOR_SELECT_CELL
)
4876 ChangeCursorMode(WXGRID_CURSOR_SELECT_CELL
, m_colLabelWin
, FALSE
);
4882 void wxGrid::ProcessCornerLabelMouseEvent( wxMouseEvent
& event
)
4884 if ( event
.LeftDown() )
4886 // indicate corner label by having both row and
4889 if ( !SendEvent( wxEVT_GRID_LABEL_LEFT_CLICK
, -1, -1, event
) )
4895 else if ( event
.LeftDClick() )
4897 SendEvent( wxEVT_GRID_LABEL_LEFT_DCLICK
, -1, -1, event
);
4900 else if ( event
.RightDown() )
4902 if ( !SendEvent( wxEVT_GRID_LABEL_RIGHT_CLICK
, -1, -1, event
) )
4904 // no default action at the moment
4908 else if ( event
.RightDClick() )
4910 if ( !SendEvent( wxEVT_GRID_LABEL_RIGHT_DCLICK
, -1, -1, event
) )
4912 // no default action at the moment
4917 void wxGrid::ChangeCursorMode(CursorMode mode
,
4922 static const wxChar
*cursorModes
[] =
4931 wxLogTrace(_T("grid"),
4932 _T("wxGrid cursor mode (mouse capture for %s): %s -> %s"),
4933 win
== m_colLabelWin
? _T("colLabelWin")
4934 : win
? _T("rowLabelWin")
4936 cursorModes
[m_cursorMode
], cursorModes
[mode
]);
4937 #endif // __WXDEBUG__
4939 if ( mode
== m_cursorMode
&&
4940 win
== m_winCapture
&&
4941 captureMouse
== (m_winCapture
!= NULL
))
4946 // by default use the grid itself
4952 if (m_winCapture
->HasCapture()) m_winCapture
->ReleaseMouse();
4953 m_winCapture
= (wxWindow
*)NULL
;
4956 m_cursorMode
= mode
;
4958 switch ( m_cursorMode
)
4960 case WXGRID_CURSOR_RESIZE_ROW
:
4961 win
->SetCursor( m_rowResizeCursor
);
4964 case WXGRID_CURSOR_RESIZE_COL
:
4965 win
->SetCursor( m_colResizeCursor
);
4969 win
->SetCursor( *wxSTANDARD_CURSOR
);
4972 // we need to capture mouse when resizing
4973 bool resize
= m_cursorMode
== WXGRID_CURSOR_RESIZE_ROW
||
4974 m_cursorMode
== WXGRID_CURSOR_RESIZE_COL
;
4976 if ( captureMouse
&& resize
)
4978 win
->CaptureMouse();
4983 void wxGrid::ProcessGridCellMouseEvent( wxMouseEvent
& event
)
4986 wxPoint
pos( event
.GetPosition() );
4987 CalcUnscrolledPosition( pos
.x
, pos
.y
, &x
, &y
);
4989 wxGridCellCoords coords
;
4990 XYToCell( x
, y
, coords
);
4992 int cell_rows
, cell_cols
;
4993 GetCellSize( coords
.GetRow(), coords
.GetCol(), &cell_rows
, &cell_cols
);
4994 if ((cell_rows
< 0) || (cell_cols
< 0))
4996 coords
.SetRow(coords
.GetRow() + cell_rows
);
4997 coords
.SetCol(coords
.GetCol() + cell_cols
);
5000 if ( event
.Dragging() )
5002 //wxLogDebug("pos(%d, %d) coords(%d, %d)", pos.x, pos.y, coords.GetRow(), coords.GetCol());
5004 // Don't start doing anything until the mouse has been drug at
5005 // least 3 pixels in any direction...
5008 if (m_startDragPos
== wxDefaultPosition
)
5010 m_startDragPos
= pos
;
5013 if (abs(m_startDragPos
.x
- pos
.x
) < 4 && abs(m_startDragPos
.y
- pos
.y
) < 4)
5017 m_isDragging
= TRUE
;
5018 if ( m_cursorMode
== WXGRID_CURSOR_SELECT_CELL
)
5020 // Hide the edit control, so it
5021 // won't interfer with drag-shrinking.
5022 if ( IsCellEditControlShown() )
5024 HideCellEditControl();
5025 SaveEditControlValue();
5028 // Have we captured the mouse yet?
5031 m_winCapture
= m_gridWin
;
5032 m_winCapture
->CaptureMouse();
5035 if ( coords
!= wxGridNoCellCoords
)
5037 if ( event
.ControlDown() )
5039 if ( m_selectingKeyboard
== wxGridNoCellCoords
)
5040 m_selectingKeyboard
= coords
;
5041 HighlightBlock ( m_selectingKeyboard
, coords
);
5045 if ( !IsSelection() )
5047 HighlightBlock( coords
, coords
);
5051 HighlightBlock( m_currentCellCoords
, coords
);
5055 if (! IsVisible(coords
))
5057 MakeCellVisible(coords
);
5058 // TODO: need to introduce a delay or something here. The
5059 // scrolling is way to fast, at least on MSW - also on GTK.
5063 else if ( m_cursorMode
== WXGRID_CURSOR_RESIZE_ROW
)
5065 int cw
, ch
, left
, dummy
;
5066 m_gridWin
->GetClientSize( &cw
, &ch
);
5067 CalcUnscrolledPosition( 0, 0, &left
, &dummy
);
5069 wxClientDC
dc( m_gridWin
);
5071 y
= wxMax( y
, GetRowTop(m_dragRowOrCol
) +
5072 GetRowMinimalHeight(m_dragRowOrCol
) );
5073 dc
.SetLogicalFunction(wxINVERT
);
5074 if ( m_dragLastPos
>= 0 )
5076 dc
.DrawLine( left
, m_dragLastPos
, left
+cw
, m_dragLastPos
);
5078 dc
.DrawLine( left
, y
, left
+cw
, y
);
5081 else if ( m_cursorMode
== WXGRID_CURSOR_RESIZE_COL
)
5083 int cw
, ch
, dummy
, top
;
5084 m_gridWin
->GetClientSize( &cw
, &ch
);
5085 CalcUnscrolledPosition( 0, 0, &dummy
, &top
);
5087 wxClientDC
dc( m_gridWin
);
5089 x
= wxMax( x
, GetColLeft(m_dragRowOrCol
) +
5090 GetColMinimalWidth(m_dragRowOrCol
) );
5091 dc
.SetLogicalFunction(wxINVERT
);
5092 if ( m_dragLastPos
>= 0 )
5094 dc
.DrawLine( m_dragLastPos
, top
, m_dragLastPos
, top
+ch
);
5096 dc
.DrawLine( x
, top
, x
, top
+ch
);
5103 m_isDragging
= FALSE
;
5104 m_startDragPos
= wxDefaultPosition
;
5106 // VZ: if we do this, the mode is reset to WXGRID_CURSOR_SELECT_CELL
5107 // immediately after it becomes WXGRID_CURSOR_RESIZE_ROW/COL under
5110 if ( event
.Entering() || event
.Leaving() )
5112 ChangeCursorMode(WXGRID_CURSOR_SELECT_CELL
);
5113 m_gridWin
->SetCursor( *wxSTANDARD_CURSOR
);
5118 // ------------ Left button pressed
5120 if ( event
.LeftDown() && coords
!= wxGridNoCellCoords
)
5122 if ( !SendEvent( wxEVT_GRID_CELL_LEFT_CLICK
,
5127 if ( !event
.ControlDown() )
5129 if ( event
.ShiftDown() )
5133 m_selection
->SelectBlock( m_currentCellCoords
.GetRow(),
5134 m_currentCellCoords
.GetCol(),
5137 event
.ControlDown(),
5143 else if ( XToEdgeOfCol(x
) < 0 &&
5144 YToEdgeOfRow(y
) < 0 )
5146 DisableCellEditControl();
5147 MakeCellVisible( coords
);
5149 // if this is the second click on this cell then start
5151 if ( m_waitForSlowClick
&&
5152 (coords
== m_currentCellCoords
) &&
5153 CanEnableCellControl())
5155 EnableCellEditControl();
5157 wxGridCellAttr
* attr
= GetCellAttr(m_currentCellCoords
);
5158 wxGridCellEditor
*editor
= attr
->GetEditor(this,
5161 editor
->StartingClick();
5165 m_waitForSlowClick
= FALSE
;
5169 if ( event
.ControlDown() )
5173 m_selection
->ToggleCellSelection( coords
.GetRow(),
5175 event
.ControlDown(),
5180 m_selectingTopLeft
= wxGridNoCellCoords
;
5181 m_selectingBottomRight
= wxGridNoCellCoords
;
5182 m_selectingKeyboard
= coords
;
5186 SetCurrentCell( coords
);
5189 if ( m_selection
->GetSelectionMode() !=
5190 wxGrid::wxGridSelectCells
)
5192 HighlightBlock( coords
, coords
);
5196 m_waitForSlowClick
= TRUE
;
5203 // ------------ Left double click
5205 else if ( event
.LeftDClick() && coords
!= wxGridNoCellCoords
)
5207 DisableCellEditControl();
5209 if ( XToEdgeOfCol(x
) < 0 && YToEdgeOfRow(y
) < 0 )
5211 SendEvent( wxEVT_GRID_CELL_LEFT_DCLICK
,
5219 // ------------ Left button released
5221 else if ( event
.LeftUp() )
5223 if ( m_cursorMode
== WXGRID_CURSOR_SELECT_CELL
)
5225 if ( m_selectingTopLeft
!= wxGridNoCellCoords
&&
5226 m_selectingBottomRight
!= wxGridNoCellCoords
)
5230 if (m_winCapture
->HasCapture()) m_winCapture
->ReleaseMouse();
5231 m_winCapture
= NULL
;
5236 m_selection
->SelectBlock( m_selectingTopLeft
.GetRow(),
5237 m_selectingTopLeft
.GetCol(),
5238 m_selectingBottomRight
.GetRow(),
5239 m_selectingBottomRight
.GetCol(),
5240 event
.ControlDown(),
5246 m_selectingTopLeft
= wxGridNoCellCoords
;
5247 m_selectingBottomRight
= wxGridNoCellCoords
;
5250 // Show the edit control, if it has been hidden for
5252 ShowCellEditControl();
5254 else if ( m_cursorMode
== WXGRID_CURSOR_RESIZE_ROW
)
5256 ChangeCursorMode(WXGRID_CURSOR_SELECT_CELL
);
5257 DoEndDragResizeRow();
5259 // Note: we are ending the event *after* doing
5260 // default processing in this case
5262 SendEvent( wxEVT_GRID_ROW_SIZE
, m_dragRowOrCol
, -1, event
);
5264 else if ( m_cursorMode
== WXGRID_CURSOR_RESIZE_COL
)
5266 ChangeCursorMode(WXGRID_CURSOR_SELECT_CELL
);
5267 DoEndDragResizeCol();
5269 // Note: we are ending the event *after* doing
5270 // default processing in this case
5272 SendEvent( wxEVT_GRID_COL_SIZE
, -1, m_dragRowOrCol
, event
);
5279 // ------------ Right button down
5281 else if ( event
.RightDown() && coords
!= wxGridNoCellCoords
)
5283 DisableCellEditControl();
5284 if ( !SendEvent( wxEVT_GRID_CELL_RIGHT_CLICK
,
5289 // no default action at the moment
5294 // ------------ Right double click
5296 else if ( event
.RightDClick() && coords
!= wxGridNoCellCoords
)
5298 DisableCellEditControl();
5299 if ( !SendEvent( wxEVT_GRID_CELL_RIGHT_DCLICK
,
5304 // no default action at the moment
5308 // ------------ Moving and no button action
5310 else if ( event
.Moving() && !event
.IsButton() )
5312 int dragRow
= YToEdgeOfRow( y
);
5313 int dragCol
= XToEdgeOfCol( x
);
5315 // Dragging on the corner of a cell to resize in both
5316 // directions is not implemented yet...
5318 if ( dragRow
>= 0 && dragCol
>= 0 )
5320 ChangeCursorMode(WXGRID_CURSOR_SELECT_CELL
);
5324 if ( dragRow
>= 0 && dragRow
< GetNumberRows())
5326 m_dragRowOrCol
= dragRow
;
5328 if ( m_cursorMode
== WXGRID_CURSOR_SELECT_CELL
)
5330 if ( CanDragRowSize() && CanDragGridSize() )
5331 ChangeCursorMode(WXGRID_CURSOR_RESIZE_ROW
);
5336 m_dragRowOrCol
= dragCol
;
5342 if ( dragCol
>= 0 && dragCol
< GetNumberCols())
5344 m_dragRowOrCol
= dragCol
;
5346 if ( m_cursorMode
== WXGRID_CURSOR_SELECT_CELL
)
5348 if ( CanDragColSize() && CanDragGridSize() )
5349 ChangeCursorMode(WXGRID_CURSOR_RESIZE_COL
);
5355 // Neither on a row or col edge
5357 if ( m_cursorMode
!= WXGRID_CURSOR_SELECT_CELL
)
5359 ChangeCursorMode(WXGRID_CURSOR_SELECT_CELL
);
5365 void wxGrid::DoEndDragResizeRow()
5367 if ( m_dragLastPos
>= 0 )
5369 // erase the last line and resize the row
5371 int cw
, ch
, left
, dummy
;
5372 m_gridWin
->GetClientSize( &cw
, &ch
);
5373 CalcUnscrolledPosition( 0, 0, &left
, &dummy
);
5375 wxClientDC
dc( m_gridWin
);
5377 dc
.SetLogicalFunction( wxINVERT
);
5378 dc
.DrawLine( left
, m_dragLastPos
, left
+cw
, m_dragLastPos
);
5379 HideCellEditControl();
5380 SaveEditControlValue();
5382 int rowTop
= GetRowTop(m_dragRowOrCol
);
5383 SetRowSize( m_dragRowOrCol
,
5384 wxMax( m_dragLastPos
- rowTop
, WXGRID_MIN_ROW_HEIGHT
) );
5386 if ( !GetBatchCount() )
5388 // Only needed to get the correct rect.y:
5389 wxRect
rect ( CellToRect( m_dragRowOrCol
, 0 ) );
5391 CalcScrolledPosition(0, rect
.y
, &dummy
, &rect
.y
);
5392 rect
.width
= m_rowLabelWidth
;
5393 rect
.height
= ch
- rect
.y
;
5394 m_rowLabelWin
->Refresh( TRUE
, &rect
);
5396 // if there is a multicell block, paint all of it
5399 int i
, cell_rows
, cell_cols
, subtract_rows
= 0;
5400 int leftCol
= XToCol(left
);
5401 int rightCol
= XToCol(left
+cw
);
5404 if (rightCol
< 0) rightCol
= m_numCols
;
5405 for (i
=leftCol
; i
<rightCol
; i
++)
5407 GetCellSize(m_dragRowOrCol
, i
, &cell_rows
, &cell_cols
);
5408 if (cell_rows
< subtract_rows
)
5409 subtract_rows
= cell_rows
;
5411 rect
.y
= GetRowTop(m_dragRowOrCol
+ subtract_rows
);
5412 CalcScrolledPosition(0, rect
.y
, &dummy
, &rect
.y
);
5413 rect
.height
= ch
- rect
.y
;
5416 m_gridWin
->Refresh( FALSE
, &rect
);
5419 ShowCellEditControl();
5424 void wxGrid::DoEndDragResizeCol()
5426 if ( m_dragLastPos
>= 0 )
5428 // erase the last line and resize the col
5430 int cw
, ch
, dummy
, top
;
5431 m_gridWin
->GetClientSize( &cw
, &ch
);
5432 CalcUnscrolledPosition( 0, 0, &dummy
, &top
);
5434 wxClientDC
dc( m_gridWin
);
5436 dc
.SetLogicalFunction( wxINVERT
);
5437 dc
.DrawLine( m_dragLastPos
, top
, m_dragLastPos
, top
+ch
);
5438 HideCellEditControl();
5439 SaveEditControlValue();
5441 int colLeft
= GetColLeft(m_dragRowOrCol
);
5442 SetColSize( m_dragRowOrCol
,
5443 wxMax( m_dragLastPos
- colLeft
,
5444 GetColMinimalWidth(m_dragRowOrCol
) ) );
5446 if ( !GetBatchCount() )
5448 // Only needed to get the correct rect.x:
5449 wxRect
rect ( CellToRect( 0, m_dragRowOrCol
) );
5451 CalcScrolledPosition(rect
.x
, 0, &rect
.x
, &dummy
);
5452 rect
.width
= cw
- rect
.x
;
5453 rect
.height
= m_colLabelHeight
;
5454 m_colLabelWin
->Refresh( TRUE
, &rect
);
5456 // if there is a multicell block, paint all of it
5459 int i
, cell_rows
, cell_cols
, subtract_cols
= 0;
5460 int topRow
= YToRow(top
);
5461 int bottomRow
= YToRow(top
+cw
);
5464 if (bottomRow
< 0) bottomRow
= m_numRows
;
5465 for (i
=topRow
; i
<bottomRow
; i
++)
5467 GetCellSize(i
, m_dragRowOrCol
, &cell_rows
, &cell_cols
);
5468 if (cell_cols
< subtract_cols
)
5469 subtract_cols
= cell_cols
;
5471 rect
.x
= GetColLeft(m_dragRowOrCol
+ subtract_cols
);
5472 CalcScrolledPosition(rect
.x
, 0, &rect
.x
, &dummy
);
5473 rect
.width
= cw
- rect
.x
;
5476 m_gridWin
->Refresh( FALSE
, &rect
);
5479 ShowCellEditControl();
5486 // ------ interaction with data model
5488 bool wxGrid::ProcessTableMessage( wxGridTableMessage
& msg
)
5490 switch ( msg
.GetId() )
5492 case wxGRIDTABLE_REQUEST_VIEW_GET_VALUES
:
5493 return GetModelValues();
5495 case wxGRIDTABLE_REQUEST_VIEW_SEND_VALUES
:
5496 return SetModelValues();
5498 case wxGRIDTABLE_NOTIFY_ROWS_INSERTED
:
5499 case wxGRIDTABLE_NOTIFY_ROWS_APPENDED
:
5500 case wxGRIDTABLE_NOTIFY_ROWS_DELETED
:
5501 case wxGRIDTABLE_NOTIFY_COLS_INSERTED
:
5502 case wxGRIDTABLE_NOTIFY_COLS_APPENDED
:
5503 case wxGRIDTABLE_NOTIFY_COLS_DELETED
:
5504 return Redimension( msg
);
5513 // The behaviour of this function depends on the grid table class
5514 // Clear() function. For the default wxGridStringTable class the
5515 // behavious is to replace all cell contents with wxEmptyString but
5516 // not to change the number of rows or cols.
5518 void wxGrid::ClearGrid()
5522 if (IsCellEditControlEnabled())
5523 DisableCellEditControl();
5526 if ( !GetBatchCount() ) m_gridWin
->Refresh();
5531 bool wxGrid::InsertRows( int pos
, int numRows
, bool WXUNUSED(updateLabels
) )
5533 // TODO: something with updateLabels flag
5537 wxFAIL_MSG( wxT("Called wxGrid::InsertRows() before calling CreateGrid()") );
5543 if (IsCellEditControlEnabled())
5544 DisableCellEditControl();
5546 return m_table
->InsertRows( pos
, numRows
);
5548 // the table will have sent the results of the insert row
5549 // operation to this view object as a grid table message
5555 bool wxGrid::AppendRows( int numRows
, bool WXUNUSED(updateLabels
) )
5557 // TODO: something with updateLabels flag
5561 wxFAIL_MSG( wxT("Called wxGrid::AppendRows() before calling CreateGrid()") );
5565 return ( m_table
&& m_table
->AppendRows( numRows
) );
5566 // the table will have sent the results of the append row
5567 // operation to this view object as a grid table message
5571 bool wxGrid::DeleteRows( int pos
, int numRows
, bool WXUNUSED(updateLabels
) )
5573 // TODO: something with updateLabels flag
5577 wxFAIL_MSG( wxT("Called wxGrid::DeleteRows() before calling CreateGrid()") );
5583 if (IsCellEditControlEnabled())
5584 DisableCellEditControl();
5586 return (m_table
->DeleteRows( pos
, numRows
));
5587 // the table will have sent the results of the delete row
5588 // operation to this view object as a grid table message
5594 bool wxGrid::InsertCols( int pos
, int numCols
, bool WXUNUSED(updateLabels
) )
5596 // TODO: something with updateLabels flag
5600 wxFAIL_MSG( wxT("Called wxGrid::InsertCols() before calling CreateGrid()") );
5606 if (IsCellEditControlEnabled())
5607 DisableCellEditControl();
5609 return m_table
->InsertCols( pos
, numCols
);
5610 // the table will have sent the results of the insert col
5611 // operation to this view object as a grid table message
5617 bool wxGrid::AppendCols( int numCols
, bool WXUNUSED(updateLabels
) )
5619 // TODO: something with updateLabels flag
5623 wxFAIL_MSG( wxT("Called wxGrid::AppendCols() before calling CreateGrid()") );
5627 return ( m_table
&& m_table
->AppendCols( numCols
) );
5628 // the table will have sent the results of the append col
5629 // operation to this view object as a grid table message
5633 bool wxGrid::DeleteCols( int pos
, int numCols
, bool WXUNUSED(updateLabels
) )
5635 // TODO: something with updateLabels flag
5639 wxFAIL_MSG( wxT("Called wxGrid::DeleteCols() before calling CreateGrid()") );
5645 if (IsCellEditControlEnabled())
5646 DisableCellEditControl();
5648 return ( m_table
->DeleteCols( pos
, numCols
) );
5649 // the table will have sent the results of the delete col
5650 // operation to this view object as a grid table message
5658 // ----- event handlers
5661 // Generate a grid event based on a mouse event and
5662 // return the result of ProcessEvent()
5664 int wxGrid::SendEvent( const wxEventType type
,
5666 wxMouseEvent
& mouseEv
)
5671 if ( type
== wxEVT_GRID_ROW_SIZE
|| type
== wxEVT_GRID_COL_SIZE
)
5673 int rowOrCol
= (row
== -1 ? col
: row
);
5675 wxGridSizeEvent
gridEvt( GetId(),
5679 mouseEv
.GetX() + GetRowLabelSize(),
5680 mouseEv
.GetY() + GetColLabelSize(),
5681 mouseEv
.ControlDown(),
5682 mouseEv
.ShiftDown(),
5684 mouseEv
.MetaDown() );
5686 claimed
= GetEventHandler()->ProcessEvent(gridEvt
);
5687 vetoed
= !gridEvt
.IsAllowed();
5689 else if ( type
== wxEVT_GRID_RANGE_SELECT
)
5691 // Right now, it should _never_ end up here!
5692 wxGridRangeSelectEvent
gridEvt( GetId(),
5696 m_selectingBottomRight
,
5698 mouseEv
.ControlDown(),
5699 mouseEv
.ShiftDown(),
5701 mouseEv
.MetaDown() );
5703 claimed
= GetEventHandler()->ProcessEvent(gridEvt
);
5704 vetoed
= !gridEvt
.IsAllowed();
5708 wxGridEvent
gridEvt( GetId(),
5712 mouseEv
.GetX() + GetRowLabelSize(),
5713 mouseEv
.GetY() + GetColLabelSize(),
5715 mouseEv
.ControlDown(),
5716 mouseEv
.ShiftDown(),
5718 mouseEv
.MetaDown() );
5719 claimed
= GetEventHandler()->ProcessEvent(gridEvt
);
5720 vetoed
= !gridEvt
.IsAllowed();
5723 // A Veto'd event may not be `claimed' so test this first
5724 if (vetoed
) return -1;
5725 return claimed
? 1 : 0;
5729 // Generate a grid event of specified type and return the result
5730 // of ProcessEvent().
5732 int wxGrid::SendEvent( const wxEventType type
,
5738 if ( type
== wxEVT_GRID_ROW_SIZE
|| type
== wxEVT_GRID_COL_SIZE
)
5740 int rowOrCol
= (row
== -1 ? col
: row
);
5742 wxGridSizeEvent
gridEvt( GetId(),
5747 claimed
= GetEventHandler()->ProcessEvent(gridEvt
);
5748 vetoed
= !gridEvt
.IsAllowed();
5752 wxGridEvent
gridEvt( GetId(),
5757 claimed
= GetEventHandler()->ProcessEvent(gridEvt
);
5758 vetoed
= !gridEvt
.IsAllowed();
5761 // A Veto'd event may not be `claimed' so test this first
5762 if (vetoed
) return -1;
5763 return claimed
? 1 : 0;
5767 void wxGrid::OnPaint( wxPaintEvent
& WXUNUSED(event
) )
5769 wxPaintDC
dc(this); // needed to prevent zillions of paint events on MSW
5772 void wxGrid::Refresh(bool eraseb
, const wxRect
* rect
)
5774 // Don't do anything if between Begin/EndBatch...
5775 // EndBatch() will do all this on the last nested one anyway.
5776 if (! GetBatchCount())
5778 // Refresh to get correct scrolled position:
5779 wxScrolledWindow::Refresh(eraseb
,rect
);
5783 int rect_x
, rect_y
, rectWidth
, rectHeight
;
5784 int width_label
, width_cell
, height_label
, height_cell
;
5787 //Copy rectangle can get scroll offsets..
5788 rect_x
= rect
->GetX();
5789 rect_y
= rect
->GetY();
5790 rectWidth
= rect
->GetWidth();
5791 rectHeight
= rect
->GetHeight();
5793 width_label
= m_rowLabelWidth
- rect_x
;
5794 if (width_label
> rectWidth
) width_label
= rectWidth
;
5796 height_label
= m_colLabelHeight
- rect_y
;
5797 if (height_label
> rectHeight
) height_label
= rectHeight
;
5799 if (rect_x
> m_rowLabelWidth
)
5801 x
= rect_x
- m_rowLabelWidth
;
5802 width_cell
= rectWidth
;
5807 width_cell
= rectWidth
- (m_rowLabelWidth
- rect_x
);
5810 if (rect_y
> m_colLabelHeight
)
5812 y
= rect_y
- m_colLabelHeight
;
5813 height_cell
= rectHeight
;
5818 height_cell
= rectHeight
- (m_colLabelHeight
- rect_y
);
5821 // Paint corner label part intersecting rect.
5822 if ( width_label
> 0 && height_label
> 0 )
5824 wxRect
anotherrect(rect_x
, rect_y
, width_label
, height_label
);
5825 m_cornerLabelWin
->Refresh(eraseb
, &anotherrect
);
5828 // Paint col labels part intersecting rect.
5829 if ( width_cell
> 0 && height_label
> 0 )
5831 wxRect
anotherrect(x
, rect_y
, width_cell
, height_label
);
5832 m_colLabelWin
->Refresh(eraseb
, &anotherrect
);
5835 // Paint row labels part intersecting rect.
5836 if ( width_label
> 0 && height_cell
> 0 )
5838 wxRect
anotherrect(rect_x
, y
, width_label
, height_cell
);
5839 m_rowLabelWin
->Refresh(eraseb
, &anotherrect
);
5842 // Paint cell area part intersecting rect.
5843 if ( width_cell
> 0 && height_cell
> 0 )
5845 wxRect
anotherrect(x
, y
, width_cell
, height_cell
);
5846 m_gridWin
->Refresh(eraseb
, &anotherrect
);
5851 m_cornerLabelWin
->Refresh(eraseb
, NULL
);
5852 m_colLabelWin
->Refresh(eraseb
, NULL
);
5853 m_rowLabelWin
->Refresh(eraseb
, NULL
);
5854 m_gridWin
->Refresh(eraseb
, NULL
);
5859 void wxGrid::OnSize( wxSizeEvent
& event
)
5861 // position the child windows
5864 // don't call CalcDimensions() from here, the base class handles the size
5870 void wxGrid::OnKeyDown( wxKeyEvent
& event
)
5872 if ( m_inOnKeyDown
)
5874 // shouldn't be here - we are going round in circles...
5876 wxFAIL_MSG( wxT("wxGrid::OnKeyDown called while already active") );
5879 m_inOnKeyDown
= TRUE
;
5881 // propagate the event up and see if it gets processed
5883 wxWindow
*parent
= GetParent();
5884 wxKeyEvent
keyEvt( event
);
5885 keyEvt
.SetEventObject( parent
);
5887 if ( !parent
->GetEventHandler()->ProcessEvent( keyEvt
) )
5890 // try local handlers
5892 switch ( event
.KeyCode() )
5895 if ( event
.ControlDown() )
5897 MoveCursorUpBlock( event
.ShiftDown() );
5901 MoveCursorUp( event
.ShiftDown() );
5906 if ( event
.ControlDown() )
5908 MoveCursorDownBlock( event
.ShiftDown() );
5912 MoveCursorDown( event
.ShiftDown() );
5917 if ( event
.ControlDown() )
5919 MoveCursorLeftBlock( event
.ShiftDown() );
5923 MoveCursorLeft( event
.ShiftDown() );
5928 if ( event
.ControlDown() )
5930 MoveCursorRightBlock( event
.ShiftDown() );
5934 MoveCursorRight( event
.ShiftDown() );
5939 case WXK_NUMPAD_ENTER
:
5940 if ( event
.ControlDown() )
5942 event
.Skip(); // to let the edit control have the return
5946 if ( GetGridCursorRow() < GetNumberRows()-1 )
5948 MoveCursorDown( event
.ShiftDown() );
5952 // at the bottom of a column
5953 HideCellEditControl();
5954 SaveEditControlValue();
5964 if (event
.ShiftDown())
5966 if ( GetGridCursorCol() > 0 )
5968 MoveCursorLeft( FALSE
);
5973 HideCellEditControl();
5974 SaveEditControlValue();
5979 if ( GetGridCursorCol() < GetNumberCols()-1 )
5981 MoveCursorRight( FALSE
);
5986 HideCellEditControl();
5987 SaveEditControlValue();
5993 if ( event
.ControlDown() )
5995 MakeCellVisible( 0, 0 );
5996 SetCurrentCell( 0, 0 );
6005 if ( event
.ControlDown() )
6007 MakeCellVisible( m_numRows
-1, m_numCols
-1 );
6008 SetCurrentCell( m_numRows
-1, m_numCols
-1 );
6025 if ( event
.ControlDown() )
6029 m_selection
->ToggleCellSelection( m_currentCellCoords
.GetRow(),
6030 m_currentCellCoords
.GetCol(),
6031 event
.ControlDown(),
6038 if ( !IsEditable() )
6040 MoveCursorRight( FALSE
);
6043 // Otherwise fall through to default
6046 // is it possible to edit the current cell at all?
6047 if ( !IsCellEditControlEnabled() && CanEnableCellControl() )
6049 // yes, now check whether the cells editor accepts the key
6050 int row
= m_currentCellCoords
.GetRow();
6051 int col
= m_currentCellCoords
.GetCol();
6052 wxGridCellAttr
* attr
= GetCellAttr(row
, col
);
6053 wxGridCellEditor
*editor
= attr
->GetEditor(this, row
, col
);
6055 // <F2> is special and will always start editing, for
6056 // other keys - ask the editor itself
6057 if ( (event
.KeyCode() == WXK_F2
&& !event
.HasModifiers())
6058 || editor
->IsAcceptedKey(event
) )
6060 EnableCellEditControl();
6062 // the editor could be not shown for a variety of
6063 // reasons (i.e. blocked by the app or whatever), so
6064 // check if it really was created
6065 if ( m_cellEditCtrlEnabled
)
6067 editor
->StartingKey(event
);
6080 // let others process char events with modifiers or all
6081 // char events for readonly cells
6088 m_inOnKeyDown
= FALSE
;
6091 void wxGrid::OnKeyUp( wxKeyEvent
& event
)
6093 // try local handlers
6095 if ( event
.KeyCode() == WXK_SHIFT
)
6097 if ( m_selectingTopLeft
!= wxGridNoCellCoords
&&
6098 m_selectingBottomRight
!= wxGridNoCellCoords
)
6102 m_selection
->SelectBlock( m_selectingTopLeft
.GetRow(),
6103 m_selectingTopLeft
.GetCol(),
6104 m_selectingBottomRight
.GetRow(),
6105 m_selectingBottomRight
.GetCol(),
6106 event
.ControlDown(),
6113 m_selectingTopLeft
= wxGridNoCellCoords
;
6114 m_selectingBottomRight
= wxGridNoCellCoords
;
6115 m_selectingKeyboard
= wxGridNoCellCoords
;
6119 void wxGrid::OnEraseBackground(wxEraseEvent
&)
6123 void wxGrid::SetCurrentCell( const wxGridCellCoords
& coords
)
6125 if ( SendEvent( wxEVT_GRID_SELECT_CELL
, coords
.GetRow(), coords
.GetCol() ) )
6127 // the event has been intercepted - do nothing
6131 wxClientDC
dc(m_gridWin
);
6134 if ( m_currentCellCoords
!= wxGridNoCellCoords
)
6136 HideCellEditControl();
6137 DisableCellEditControl();
6139 if ( IsVisible( m_currentCellCoords
, FALSE
) )
6142 r
= BlockToDeviceRect(m_currentCellCoords
, m_currentCellCoords
);
6143 if ( !m_gridLinesEnabled
)
6151 wxGridCellCoordsArray cells
= CalcCellsExposed( r
);
6153 // Otherwise refresh redraws the highlight!
6154 m_currentCellCoords
= coords
;
6156 DrawGridCellArea(dc
,cells
);
6157 DrawAllGridLines( dc
, r
);
6161 m_currentCellCoords
= coords
;
6163 wxGridCellAttr
* attr
= GetCellAttr(coords
);
6164 DrawCellHighlight(dc
, attr
);
6169 void wxGrid::HighlightBlock( int topRow
, int leftCol
, int bottomRow
, int rightCol
)
6172 wxGridCellCoords updateTopLeft
, updateBottomRight
;
6176 if ( m_selection
->GetSelectionMode() == wxGrid::wxGridSelectRows
)
6179 rightCol
= GetNumberCols() - 1;
6181 else if ( m_selection
->GetSelectionMode() == wxGrid::wxGridSelectColumns
)
6184 bottomRow
= GetNumberRows() - 1;
6188 if ( topRow
> bottomRow
)
6195 if ( leftCol
> rightCol
)
6202 updateTopLeft
= wxGridCellCoords( topRow
, leftCol
);
6203 updateBottomRight
= wxGridCellCoords( bottomRow
, rightCol
);
6205 // First the case that we selected a completely new area
6206 if ( m_selectingTopLeft
== wxGridNoCellCoords
||
6207 m_selectingBottomRight
== wxGridNoCellCoords
)
6210 rect
= BlockToDeviceRect( wxGridCellCoords ( topRow
, leftCol
),
6211 wxGridCellCoords ( bottomRow
, rightCol
) );
6212 m_gridWin
->Refresh( FALSE
, &rect
);
6214 // Now handle changing an existing selection area.
6215 else if ( m_selectingTopLeft
!= updateTopLeft
||
6216 m_selectingBottomRight
!= updateBottomRight
)
6218 // Compute two optimal update rectangles:
6219 // Either one rectangle is a real subset of the
6220 // other, or they are (almost) disjoint!
6222 bool need_refresh
[4];
6226 need_refresh
[3] = FALSE
;
6229 // Store intermediate values
6230 wxCoord oldLeft
= m_selectingTopLeft
.GetCol();
6231 wxCoord oldTop
= m_selectingTopLeft
.GetRow();
6232 wxCoord oldRight
= m_selectingBottomRight
.GetCol();
6233 wxCoord oldBottom
= m_selectingBottomRight
.GetRow();
6235 // Determine the outer/inner coordinates.
6236 if (oldLeft
> leftCol
)
6242 if (oldTop
> topRow
)
6248 if (oldRight
< rightCol
)
6251 oldRight
= rightCol
;
6254 if (oldBottom
< bottomRow
)
6257 oldBottom
= bottomRow
;
6261 // Now, either the stuff marked old is the outer
6262 // rectangle or we don't have a situation where one
6263 // is contained in the other.
6265 if ( oldLeft
< leftCol
)
6267 // Refresh the newly selected or deselected
6268 // area to the left of the old or new selection.
6269 need_refresh
[0] = TRUE
;
6270 rect
[0] = BlockToDeviceRect( wxGridCellCoords ( oldTop
,
6272 wxGridCellCoords ( oldBottom
,
6276 if ( oldTop
< topRow
)
6278 // Refresh the newly selected or deselected
6279 // area above the old or new selection.
6280 need_refresh
[1] = TRUE
;
6281 rect
[1] = BlockToDeviceRect( wxGridCellCoords ( oldTop
,
6283 wxGridCellCoords ( topRow
- 1,
6287 if ( oldRight
> rightCol
)
6289 // Refresh the newly selected or deselected
6290 // area to the right of the old or new selection.
6291 need_refresh
[2] = TRUE
;
6292 rect
[2] = BlockToDeviceRect( wxGridCellCoords ( oldTop
,
6294 wxGridCellCoords ( oldBottom
,
6298 if ( oldBottom
> bottomRow
)
6300 // Refresh the newly selected or deselected
6301 // area below the old or new selection.
6302 need_refresh
[3] = TRUE
;
6303 rect
[3] = BlockToDeviceRect( wxGridCellCoords ( bottomRow
+ 1,
6305 wxGridCellCoords ( oldBottom
,
6309 // various Refresh() calls
6310 for (i
= 0; i
< 4; i
++ )
6311 if ( need_refresh
[i
] && rect
[i
] != wxGridNoCellRect
)
6312 m_gridWin
->Refresh( FALSE
, &(rect
[i
]) );
6315 m_selectingTopLeft
= updateTopLeft
;
6316 m_selectingBottomRight
= updateBottomRight
;
6320 // ------ functions to get/send data (see also public functions)
6323 bool wxGrid::GetModelValues()
6325 // Hide the editor, so it won't hide a changed value.
6326 HideCellEditControl();
6330 // all we need to do is repaint the grid
6332 m_gridWin
->Refresh();
6340 bool wxGrid::SetModelValues()
6344 // Disable the editor, so it won't hide a changed value.
6345 // Do we also want to save the current value of the editor first?
6347 DisableCellEditControl();
6351 for ( row
= 0; row
< m_numRows
; row
++ )
6353 for ( col
= 0; col
< m_numCols
; col
++ )
6355 m_table
->SetValue( row
, col
, GetCellValue(row
, col
) );
6367 // Note - this function only draws cells that are in the list of
6368 // exposed cells (usually set from the update region by
6369 // CalcExposedCells)
6371 void wxGrid::DrawGridCellArea( wxDC
& dc
, const wxGridCellCoordsArray
& cells
)
6373 if ( !m_numRows
|| !m_numCols
) return;
6375 int i
, j
, k
, l
, numCells
= cells
.GetCount();
6376 int row
, col
, cell_rows
, cell_cols
;
6377 wxGridCellCoordsArray redrawCells
;
6379 for ( i
= numCells
-1; i
>= 0; i
-- )
6381 row
= cells
[i
].GetRow();
6382 col
= cells
[i
].GetCol();
6383 GetCellSize( row
, col
, &cell_rows
, &cell_cols
);
6385 // If this cell is part of a multicell block, find owner for repaint
6386 if ( cell_rows
<= 0 || cell_cols
<= 0 )
6388 wxGridCellCoords
cell(row
+cell_rows
, col
+cell_cols
);
6389 bool marked
= FALSE
;
6390 for ( j
= 0; j
< numCells
; j
++ )
6392 if ( cell
== cells
[j
] )
6400 int count
= redrawCells
.GetCount();
6401 for (j
= 0; j
< count
; j
++)
6403 if ( cell
== redrawCells
[j
] )
6409 if (!marked
) redrawCells
.Add( cell
);
6411 continue; // don't bother drawing this cell
6414 // If this cell is empty, find cell to left that might want to overflow
6415 if (m_table
&& m_table
->IsEmptyCell(row
, col
))
6417 for ( l
= 0; l
< cell_rows
; l
++ )
6419 for (j
= col
-1; j
>= 0; j
--)
6421 if (!m_table
->IsEmptyCell(row
+l
, j
))
6423 if (GetCellOverflow(row
+l
, j
))
6425 wxGridCellCoords
cell(row
+l
, j
);
6426 bool marked
= FALSE
;
6428 for (k
= 0; k
< numCells
; k
++)
6430 if ( cell
== cells
[k
] )
6438 int count
= redrawCells
.GetCount();
6439 for (k
= 0; k
< count
; k
++)
6441 if ( cell
== redrawCells
[k
] )
6447 if (!marked
) redrawCells
.Add( cell
);
6455 DrawCell( dc
, cells
[i
] );
6458 numCells
= redrawCells
.GetCount();
6460 for ( i
= numCells
- 1; i
>= 0; i
-- )
6462 DrawCell( dc
, redrawCells
[i
] );
6467 void wxGrid::DrawGridSpace( wxDC
& dc
)
6470 m_gridWin
->GetClientSize( &cw
, &ch
);
6473 CalcUnscrolledPosition( cw
, ch
, &right
, &bottom
);
6475 int rightCol
= m_numCols
> 0 ? GetColRight(m_numCols
- 1) : 0;
6476 int bottomRow
= m_numRows
> 0 ? GetRowBottom(m_numRows
- 1) : 0 ;
6478 if ( right
> rightCol
|| bottom
> bottomRow
)
6481 CalcUnscrolledPosition( 0, 0, &left
, &top
);
6483 dc
.SetBrush( wxBrush(GetDefaultCellBackgroundColour(), wxSOLID
) );
6484 dc
.SetPen( *wxTRANSPARENT_PEN
);
6486 if ( right
> rightCol
)
6488 dc
.DrawRectangle( rightCol
, top
, right
- rightCol
, ch
);
6491 if ( bottom
> bottomRow
)
6493 dc
.DrawRectangle( left
, bottomRow
, cw
, bottom
- bottomRow
);
6499 void wxGrid::DrawCell( wxDC
& dc
, const wxGridCellCoords
& coords
)
6501 int row
= coords
.GetRow();
6502 int col
= coords
.GetCol();
6504 if ( GetColWidth(col
) <= 0 || GetRowHeight(row
) <= 0 )
6507 // we draw the cell border ourselves
6508 #if !WXGRID_DRAW_LINES
6509 if ( m_gridLinesEnabled
)
6510 DrawCellBorder( dc
, coords
);
6513 wxGridCellAttr
* attr
= GetCellAttr(row
, col
);
6515 bool isCurrent
= coords
== m_currentCellCoords
;
6517 wxRect rect
= CellToRect( row
, col
);
6519 // if the editor is shown, we should use it and not the renderer
6520 // Note: However, only if it is really _shown_, i.e. not hidden!
6521 if ( isCurrent
&& IsCellEditControlShown() )
6523 wxGridCellEditor
*editor
= attr
->GetEditor(this, row
, col
);
6524 editor
->PaintBackground(rect
, attr
);
6529 // but all the rest is drawn by the cell renderer and hence may be
6531 wxGridCellRenderer
*renderer
= attr
->GetRenderer(this, row
, col
);
6532 renderer
->Draw(*this, *attr
, dc
, rect
, row
, col
, IsInSelection(coords
));
6539 void wxGrid::DrawCellHighlight( wxDC
& dc
, const wxGridCellAttr
*attr
)
6541 int row
= m_currentCellCoords
.GetRow();
6542 int col
= m_currentCellCoords
.GetCol();
6544 if ( GetColWidth(col
) <= 0 || GetRowHeight(row
) <= 0 )
6547 wxRect rect
= CellToRect(row
, col
);
6549 // hmmm... what could we do here to show that the cell is disabled?
6550 // for now, I just draw a thinner border than for the other ones, but
6551 // it doesn't look really good
6553 int penWidth
= attr
->IsReadOnly() ? m_cellHighlightROPenWidth
: m_cellHighlightPenWidth
;
6557 // The center of th drawn line is where the position/width/height of
6558 // the rectangle is actually at, (on wxMSW atr least,) so we will
6559 // reduce the size of the rectangle to compensate for the thickness of
6560 // the line. If this is too strange on non wxMSW platforms then
6561 // please #ifdef this appropriately.
6562 rect
.x
+= penWidth
/2;
6563 rect
.y
+= penWidth
/2;
6564 rect
.width
-= penWidth
-1;
6565 rect
.height
-= penWidth
-1;
6568 // Now draw the rectangle
6569 dc
.SetPen(wxPen(m_cellHighlightColour
, penWidth
, wxSOLID
));
6570 dc
.SetBrush(*wxTRANSPARENT_BRUSH
);
6571 dc
.DrawRectangle(rect
);
6575 // VZ: my experiments with 3d borders...
6577 // how to properly set colours for arbitrary bg?
6578 wxCoord x1
= rect
.x
,
6580 x2
= rect
.x
+ rect
.width
-1,
6581 y2
= rect
.y
+ rect
.height
-1;
6583 dc
.SetPen(*wxWHITE_PEN
);
6584 dc
.DrawLine(x1
, y1
, x2
, y1
);
6585 dc
.DrawLine(x1
, y1
, x1
, y2
);
6587 dc
.DrawLine(x1
+ 1, y2
- 1, x2
- 1, y2
- 1);
6588 dc
.DrawLine(x2
- 1, y1
+ 1, x2
- 1, y2
);
6590 dc
.SetPen(*wxBLACK_PEN
);
6591 dc
.DrawLine(x1
, y2
, x2
, y2
);
6592 dc
.DrawLine(x2
, y1
, x2
, y2
+1);
6597 void wxGrid::DrawCellBorder( wxDC
& dc
, const wxGridCellCoords
& coords
)
6599 int row
= coords
.GetRow();
6600 int col
= coords
.GetCol();
6601 if ( GetColWidth(col
) <= 0 || GetRowHeight(row
) <= 0 )
6604 dc
.SetPen( wxPen(GetGridLineColour(), 1, wxSOLID
) );
6606 wxRect rect
= CellToRect( row
, col
);
6608 // right hand border
6610 dc
.DrawLine( rect
.x
+ rect
.width
, rect
.y
,
6611 rect
.x
+ rect
.width
, rect
.y
+ rect
.height
+ 1 );
6615 dc
.DrawLine( rect
.x
, rect
.y
+ rect
.height
,
6616 rect
.x
+ rect
.width
, rect
.y
+ rect
.height
);
6619 void wxGrid::DrawHighlight(wxDC
& dc
,const wxGridCellCoordsArray
& cells
)
6621 // This if block was previously in wxGrid::OnPaint but that doesn't
6622 // seem to get called under wxGTK - MB
6624 if ( m_currentCellCoords
== wxGridNoCellCoords
&&
6625 m_numRows
&& m_numCols
)
6627 m_currentCellCoords
.Set(0, 0);
6630 if ( IsCellEditControlShown() )
6632 // don't show highlight when the edit control is shown
6636 // if the active cell was repainted, repaint its highlight too because it
6637 // might have been damaged by the grid lines
6638 size_t count
= cells
.GetCount();
6639 for ( size_t n
= 0; n
< count
; n
++ )
6641 if ( cells
[n
] == m_currentCellCoords
)
6643 wxGridCellAttr
* attr
= GetCellAttr(m_currentCellCoords
);
6644 DrawCellHighlight(dc
, attr
);
6652 // TODO: remove this ???
6653 // This is used to redraw all grid lines e.g. when the grid line colour
6656 void wxGrid::DrawAllGridLines( wxDC
& dc
, const wxRegion
& WXUNUSED(reg
) )
6658 #if !WXGRID_DRAW_LINES
6662 if ( !m_gridLinesEnabled
||
6664 !m_numCols
) return;
6666 int top
, bottom
, left
, right
;
6668 #if 0 //#ifndef __WXGTK__
6672 m_gridWin
->GetClientSize(&cw
, &ch
);
6674 // virtual coords of visible area
6676 CalcUnscrolledPosition( 0, 0, &left
, &top
);
6677 CalcUnscrolledPosition( cw
, ch
, &right
, &bottom
);
6682 reg
.GetBox(x
, y
, w
, h
);
6683 CalcUnscrolledPosition( x
, y
, &left
, &top
);
6684 CalcUnscrolledPosition( x
+ w
, y
+ h
, &right
, &bottom
);
6688 m_gridWin
->GetClientSize(&cw
, &ch
);
6689 CalcUnscrolledPosition( 0, 0, &left
, &top
);
6690 CalcUnscrolledPosition( cw
, ch
, &right
, &bottom
);
6693 // avoid drawing grid lines past the last row and col
6695 right
= wxMin( right
, GetColRight(m_numCols
- 1) );
6696 bottom
= wxMin( bottom
, GetRowBottom(m_numRows
- 1) );
6698 // no gridlines inside multicells, clip them out
6699 int leftCol
= XToCol(left
);
6700 int topRow
= YToRow(top
);
6701 int rightCol
= XToCol(right
);
6702 int bottomRow
= YToRow(bottom
);
6703 wxRegion
clippedcells(0, 0, cw
, ch
);
6705 if ((leftCol
>= 0) && (topRow
>= 0))
6707 if (rightCol
< 0) rightCol
= m_numCols
;
6708 if (bottomRow
< 0) bottomRow
= m_numRows
;
6710 int i
, j
, cell_rows
, cell_cols
;
6713 for (j
=topRow
; j
<bottomRow
; j
++)
6715 for (i
=leftCol
; i
<rightCol
; i
++)
6717 GetCellSize( j
, i
, &cell_rows
, &cell_cols
);
6718 if ((cell_rows
> 1) || (cell_cols
> 1))
6720 rect
= CellToRect(j
,i
);
6721 CalcScrolledPosition( rect
.x
, rect
.y
, &rect
.x
, &rect
.y
);
6722 clippedcells
.Subtract(rect
);
6724 else if ((cell_rows
< 0) || (cell_cols
< 0))
6726 rect
= CellToRect(j
+cell_rows
, i
+cell_cols
);
6727 CalcScrolledPosition( rect
.x
, rect
.y
, &rect
.x
, &rect
.y
);
6728 clippedcells
.Subtract(rect
);
6733 dc
.SetClippingRegion( clippedcells
);
6735 dc
.SetPen( wxPen(GetGridLineColour(), 1, wxSOLID
) );
6737 // horizontal grid lines
6740 for ( i
= internalYToRow(top
); i
< m_numRows
; i
++ )
6742 int bot
= GetRowBottom(i
) - 1;
6751 dc
.DrawLine( left
, bot
, right
, bot
);
6756 // vertical grid lines
6758 for ( i
= internalXToCol(left
); i
< m_numCols
; i
++ )
6760 int colRight
= GetColRight(i
) - 1;
6761 if ( colRight
> right
)
6766 if ( colRight
>= left
)
6768 dc
.DrawLine( colRight
, top
, colRight
, bottom
);
6771 dc
.DestroyClippingRegion();
6775 void wxGrid::DrawRowLabels( wxDC
& dc
,const wxArrayInt
& rows
)
6777 if ( !m_numRows
) return;
6780 size_t numLabels
= rows
.GetCount();
6782 for ( i
= 0; i
< numLabels
; i
++ )
6784 DrawRowLabel( dc
, rows
[i
] );
6789 void wxGrid::DrawRowLabel( wxDC
& dc
, int row
)
6791 if ( GetRowHeight(row
) <= 0 )
6794 int rowTop
= GetRowTop(row
),
6795 rowBottom
= GetRowBottom(row
) - 1;
6797 dc
.SetPen( *wxBLACK_PEN
);
6798 dc
.DrawLine( m_rowLabelWidth
-1, rowTop
,
6799 m_rowLabelWidth
-1, rowBottom
);
6801 dc
.DrawLine( 0, rowBottom
, m_rowLabelWidth
-1, rowBottom
);
6803 dc
.SetPen( *wxWHITE_PEN
);
6804 dc
.DrawLine( 0, rowTop
, 0, rowBottom
);
6805 dc
.DrawLine( 0, rowTop
, m_rowLabelWidth
-1, rowTop
);
6807 dc
.SetBackgroundMode( wxTRANSPARENT
);
6808 dc
.SetTextForeground( GetLabelTextColour() );
6809 dc
.SetFont( GetLabelFont() );
6812 GetRowLabelAlignment( &hAlign
, &vAlign
);
6816 rect
.SetY( GetRowTop(row
) + 2 );
6817 rect
.SetWidth( m_rowLabelWidth
- 4 );
6818 rect
.SetHeight( GetRowHeight(row
) - 4 );
6819 DrawTextRectangle( dc
, GetRowLabelValue( row
), rect
, hAlign
, vAlign
);
6823 void wxGrid::DrawColLabels( wxDC
& dc
,const wxArrayInt
& cols
)
6825 if ( !m_numCols
) return;
6828 size_t numLabels
= cols
.GetCount();
6830 for ( i
= 0; i
< numLabels
; i
++ )
6832 DrawColLabel( dc
, cols
[i
] );
6837 void wxGrid::DrawColLabel( wxDC
& dc
, int col
)
6839 if ( GetColWidth(col
) <= 0 )
6842 int colLeft
= GetColLeft(col
),
6843 colRight
= GetColRight(col
) - 1;
6845 dc
.SetPen( *wxBLACK_PEN
);
6846 dc
.DrawLine( colRight
, 0,
6847 colRight
, m_colLabelHeight
-1 );
6849 dc
.DrawLine( colLeft
, m_colLabelHeight
-1,
6850 colRight
, m_colLabelHeight
-1 );
6852 dc
.SetPen( *wxWHITE_PEN
);
6853 dc
.DrawLine( colLeft
, 0, colLeft
, m_colLabelHeight
-1 );
6854 dc
.DrawLine( colLeft
, 0, colRight
, 0 );
6856 dc
.SetBackgroundMode( wxTRANSPARENT
);
6857 dc
.SetTextForeground( GetLabelTextColour() );
6858 dc
.SetFont( GetLabelFont() );
6860 dc
.SetBackgroundMode( wxTRANSPARENT
);
6861 dc
.SetTextForeground( GetLabelTextColour() );
6862 dc
.SetFont( GetLabelFont() );
6865 GetColLabelAlignment( &hAlign
, &vAlign
);
6868 rect
.SetX( colLeft
+ 2 );
6870 rect
.SetWidth( GetColWidth(col
) - 4 );
6871 rect
.SetHeight( m_colLabelHeight
- 4 );
6872 DrawTextRectangle( dc
, GetColLabelValue( col
), rect
, hAlign
, vAlign
);
6875 void wxGrid::DrawTextRectangle( wxDC
& dc
,
6876 const wxString
& value
,
6881 wxArrayString lines
;
6883 StringToLines( value
, lines
);
6886 //Forward to new API.
6887 DrawTextRectangle( dc
,
6895 void wxGrid::DrawTextRectangle( wxDC
& dc
,
6896 const wxArrayString
& lines
,
6901 long textWidth
, textHeight
;
6902 long lineWidth
, lineHeight
;
6904 dc
.SetClippingRegion( rect
);
6905 if ( lines
.GetCount() )
6907 GetTextBoxSize( dc
, lines
, &textWidth
, &textHeight
);
6908 dc
.GetTextExtent( lines
[0], &lineWidth
, &lineHeight
);
6911 switch ( horizAlign
)
6914 x
= rect
.x
+ (rect
.width
- textWidth
- 1);
6917 case wxALIGN_CENTRE
:
6918 x
= rect
.x
+ ((rect
.width
- textWidth
)/2);
6927 switch ( vertAlign
)
6929 case wxALIGN_BOTTOM
:
6930 y
= rect
.y
+ (rect
.height
- textHeight
- 1);
6933 case wxALIGN_CENTRE
:
6934 y
= rect
.y
+ ((rect
.height
- textHeight
)/2);
6943 for ( size_t i
= 0; i
< lines
.GetCount(); i
++ )
6945 dc
.DrawText( lines
[i
], (int)x
, (int)y
);
6950 dc
.DestroyClippingRegion();
6954 // Split multi line text up into an array of strings. Any existing
6955 // contents of the string array are preserved.
6957 void wxGrid::StringToLines( const wxString
& value
, wxArrayString
& lines
)
6961 wxString eol
= wxTextFile::GetEOL( wxTextFileType_Unix
);
6962 wxString tVal
= wxTextFile::Translate( value
, wxTextFileType_Unix
);
6964 while ( startPos
< (int)tVal
.Length() )
6966 pos
= tVal
.Mid(startPos
).Find( eol
);
6971 else if ( pos
== 0 )
6973 lines
.Add( wxEmptyString
);
6977 lines
.Add( value
.Mid(startPos
, pos
) );
6981 if ( startPos
< (int)value
.Length() )
6983 lines
.Add( value
.Mid( startPos
) );
6988 void wxGrid::GetTextBoxSize( wxDC
& dc
,
6989 const wxArrayString
& lines
,
6990 long *width
, long *height
)
6997 for ( i
= 0; i
< lines
.GetCount(); i
++ )
6999 dc
.GetTextExtent( lines
[i
], &lineW
, &lineH
);
7000 w
= wxMax( w
, lineW
);
7009 // ------ Batch processing.
7011 void wxGrid::EndBatch()
7013 if ( m_batchCount
> 0 )
7016 if ( !m_batchCount
)
7019 m_rowLabelWin
->Refresh();
7020 m_colLabelWin
->Refresh();
7021 m_cornerLabelWin
->Refresh();
7022 m_gridWin
->Refresh();
7027 // Use this, rather than wxWindow::Refresh(), to force an immediate
7028 // repainting of the grid. Has no effect if you are already inside a
7029 // BeginBatch / EndBatch block.
7031 void wxGrid::ForceRefresh()
7039 // ------ Edit control functions
7043 void wxGrid::EnableEditing( bool edit
)
7045 // TODO: improve this ?
7047 if ( edit
!= m_editable
)
7049 if(!edit
) EnableCellEditControl(edit
);
7055 void wxGrid::EnableCellEditControl( bool enable
)
7060 if ( m_currentCellCoords
== wxGridNoCellCoords
)
7061 SetCurrentCell( 0, 0 );
7063 if ( enable
!= m_cellEditCtrlEnabled
)
7067 if (SendEvent( wxEVT_GRID_EDITOR_SHOWN
) <0)
7070 // this should be checked by the caller!
7071 wxASSERT_MSG( CanEnableCellControl(),
7072 _T("can't enable editing for this cell!") );
7074 // do it before ShowCellEditControl()
7075 m_cellEditCtrlEnabled
= enable
;
7077 ShowCellEditControl();
7081 //FIXME:add veto support
7082 SendEvent( wxEVT_GRID_EDITOR_HIDDEN
);
7084 HideCellEditControl();
7085 SaveEditControlValue();
7087 // do it after HideCellEditControl()
7088 m_cellEditCtrlEnabled
= enable
;
7093 bool wxGrid::IsCurrentCellReadOnly() const
7096 wxGridCellAttr
* attr
= ((wxGrid
*)this)->GetCellAttr(m_currentCellCoords
);
7097 bool readonly
= attr
->IsReadOnly();
7103 bool wxGrid::CanEnableCellControl() const
7105 return m_editable
&& !IsCurrentCellReadOnly();
7108 bool wxGrid::IsCellEditControlEnabled() const
7110 // the cell edit control might be disable for all cells or just for the
7111 // current one if it's read only
7112 return m_cellEditCtrlEnabled
? !IsCurrentCellReadOnly() : FALSE
;
7115 bool wxGrid::IsCellEditControlShown() const
7117 bool isShown
= FALSE
;
7119 if ( m_cellEditCtrlEnabled
)
7121 int row
= m_currentCellCoords
.GetRow();
7122 int col
= m_currentCellCoords
.GetCol();
7123 wxGridCellAttr
* attr
= GetCellAttr(row
, col
);
7124 wxGridCellEditor
* editor
= attr
->GetEditor((wxGrid
*) this, row
, col
);
7129 if ( editor
->IsCreated() )
7131 isShown
= editor
->GetControl()->IsShown();
7141 void wxGrid::ShowCellEditControl()
7143 if ( IsCellEditControlEnabled() )
7145 if ( !IsVisible( m_currentCellCoords
) )
7147 m_cellEditCtrlEnabled
= FALSE
;
7152 wxRect rect
= CellToRect( m_currentCellCoords
);
7153 int row
= m_currentCellCoords
.GetRow();
7154 int col
= m_currentCellCoords
.GetCol();
7156 // if this is part of a multicell, find owner (topleft)
7157 int cell_rows
, cell_cols
;
7158 GetCellSize( row
, col
, &cell_rows
, &cell_cols
);
7159 if ( cell_rows
<= 0 || cell_cols
<= 0 )
7163 m_currentCellCoords
.SetRow( row
);
7164 m_currentCellCoords
.SetCol( col
);
7167 // convert to scrolled coords
7169 CalcScrolledPosition( rect
.x
, rect
.y
, &rect
.x
, &rect
.y
);
7171 // done in PaintBackground()
7173 // erase the highlight and the cell contents because the editor
7174 // might not cover the entire cell
7175 wxClientDC
dc( m_gridWin
);
7177 dc
.SetBrush(*wxLIGHT_GREY_BRUSH
); //wxBrush(attr->GetBackgroundColour(), wxSOLID));
7178 dc
.SetPen(*wxTRANSPARENT_PEN
);
7179 dc
.DrawRectangle(rect
);
7182 // cell is shifted by one pixel
7183 // However, don't allow x or y to become negative
7184 // since the SetSize() method interprets that as
7191 wxGridCellAttr
* attr
= GetCellAttr(row
, col
);
7192 wxGridCellEditor
* editor
= attr
->GetEditor(this, row
, col
);
7193 if ( !editor
->IsCreated() )
7195 editor
->Create(m_gridWin
, -1,
7196 new wxGridCellEditorEvtHandler(this, editor
));
7198 wxGridEditorCreatedEvent
evt(GetId(),
7199 wxEVT_GRID_EDITOR_CREATED
,
7203 editor
->GetControl());
7204 GetEventHandler()->ProcessEvent(evt
);
7207 editor
->Show( TRUE
, attr
);
7209 // resize editor to overflow into righthand cells if allowed
7210 wxString value
= GetCellValue(row
, col
);
7211 if ( (value
!= wxEmptyString
) && (attr
->GetOverflow()) )
7213 wxClientDC
dc(m_gridWin
);
7214 wxCoord y
= 0, best_width
= 0;
7215 dc
.SetFont(attr
->GetFont());
7216 dc
.GetTextExtent(value
, &best_width
, &y
);
7218 int cell_rows
, cell_cols
;
7219 attr
->GetSize( &cell_rows
, &cell_cols
);
7221 if ((best_width
> rect
.width
) && (col
< m_numCols
) && m_table
)
7224 for (i
= col
+cell_cols
; i
< m_numCols
; i
++)
7226 if (m_table
->IsEmptyCell(row
,i
))
7228 rect
.width
+= GetColWidth(i
);
7229 if (rect
.width
>= best_width
) break;
7236 editor
->SetSize( rect
);
7238 editor
->BeginEdit(row
, col
, this);
7247 void wxGrid::HideCellEditControl()
7249 if ( IsCellEditControlEnabled() )
7251 int row
= m_currentCellCoords
.GetRow();
7252 int col
= m_currentCellCoords
.GetCol();
7254 wxGridCellAttr
* attr
= GetCellAttr(row
, col
);
7255 wxGridCellEditor
*editor
= attr
->GetEditor(this, row
, col
);
7256 editor
->Show( FALSE
);
7259 m_gridWin
->SetFocus();
7260 // refresh whole row to the right
7261 wxRect
rect( CellToRect(row
, col
) );
7262 CalcScrolledPosition(rect
.x
, rect
.y
, &rect
.x
, &rect
.y
);
7263 rect
.width
= m_gridWin
->GetClientSize().GetWidth() - rect
.x
;
7264 m_gridWin
->Refresh( FALSE
, &rect
);
7269 void wxGrid::SaveEditControlValue()
7271 if ( IsCellEditControlEnabled() )
7273 int row
= m_currentCellCoords
.GetRow();
7274 int col
= m_currentCellCoords
.GetCol();
7276 wxString oldval
= GetCellValue(row
,col
);
7278 wxGridCellAttr
* attr
= GetCellAttr(row
, col
);
7279 wxGridCellEditor
* editor
= attr
->GetEditor(this, row
, col
);
7280 bool changed
= editor
->EndEdit(row
, col
, this);
7287 if ( SendEvent( wxEVT_GRID_CELL_CHANGE
,
7288 m_currentCellCoords
.GetRow(),
7289 m_currentCellCoords
.GetCol() ) < 0 ) {
7291 // Event has been vetoed, set the data back.
7292 SetCellValue(row
,col
,oldval
);
7300 // ------ Grid location functions
7301 // Note that all of these functions work with the logical coordinates of
7302 // grid cells and labels so you will need to convert from device
7303 // coordinates for mouse events etc.
7306 void wxGrid::XYToCell( int x
, int y
, wxGridCellCoords
& coords
)
7308 int row
= YToRow(y
);
7309 int col
= XToCol(x
);
7311 if ( row
== -1 || col
== -1 )
7313 coords
= wxGridNoCellCoords
;
7317 coords
.Set( row
, col
);
7322 // Internal Helper function for computing row or column from some
7323 // (unscrolled) coordinate value, using either
7324 // m_defaultRowHeight/m_defaultColWidth or binary search on array
7325 // of m_rowBottoms/m_ColRights to speed up the search!
7327 static int CoordToRowOrCol(int coord
, int defaultDist
, int minDist
,
7328 const wxArrayInt
& BorderArray
, int nMax
,
7333 size_t i_max
= coord
/ defaultDist
,
7335 if (BorderArray
.IsEmpty())
7337 if((int) i_max
<= nMax
)
7339 return maxOnOverflow
? (int)i_max
: -1;
7342 if ( i_max
>= BorderArray
.GetCount())
7343 i_max
= BorderArray
.GetCount() - 1;
7346 if ( coord
>= BorderArray
[i_max
])
7349 i_max
= coord
/ minDist
;
7351 if ( i_max
>= BorderArray
.GetCount())
7352 i_max
= BorderArray
.GetCount() - 1;
7354 if ( coord
>= BorderArray
[i_max
])
7355 return maxOnOverflow
? (int)i_max
: -1;
7356 if ( coord
< BorderArray
[0] )
7359 while ( i_max
- i_min
> 0 )
7361 wxCHECK_MSG(BorderArray
[i_min
] <= coord
&& coord
< BorderArray
[i_max
],
7362 0, _T("wxGrid: internal error in CoordToRowOrCol"));
7363 if (coord
>= BorderArray
[ i_max
- 1])
7367 int median
= i_min
+ (i_max
- i_min
+ 1) / 2;
7368 if (coord
< BorderArray
[median
])
7376 int wxGrid::YToRow( int y
)
7378 return CoordToRowOrCol(y
, m_defaultRowHeight
,
7379 WXGRID_MIN_ROW_HEIGHT
, m_rowBottoms
, m_numRows
, FALSE
);
7383 int wxGrid::XToCol( int x
)
7385 return CoordToRowOrCol(x
, m_defaultColWidth
,
7386 WXGRID_MIN_COL_WIDTH
, m_colRights
, m_numCols
, FALSE
);
7390 // return the row number that that the y coord is near the edge of, or
7391 // -1 if not near an edge
7393 int wxGrid::YToEdgeOfRow( int y
)
7396 i
= internalYToRow(y
);
7398 if ( GetRowHeight(i
) > WXGRID_LABEL_EDGE_ZONE
)
7400 // We know that we are in row i, test whether we are
7401 // close enough to lower or upper border, respectively.
7402 if ( abs(GetRowBottom(i
) - y
) < WXGRID_LABEL_EDGE_ZONE
)
7404 else if( i
> 0 && y
- GetRowTop(i
) < WXGRID_LABEL_EDGE_ZONE
)
7412 // return the col number that that the x coord is near the edge of, or
7413 // -1 if not near an edge
7415 int wxGrid::XToEdgeOfCol( int x
)
7418 i
= internalXToCol(x
);
7420 if ( GetColWidth(i
) > WXGRID_LABEL_EDGE_ZONE
)
7422 // We know that we are in column i, test whether we are
7423 // close enough to right or left border, respectively.
7424 if ( abs(GetColRight(i
) - x
) < WXGRID_LABEL_EDGE_ZONE
)
7426 else if( i
> 0 && x
- GetColLeft(i
) < WXGRID_LABEL_EDGE_ZONE
)
7434 wxRect
wxGrid::CellToRect( int row
, int col
)
7436 wxRect
rect( -1, -1, -1, -1 );
7438 if ( row
>= 0 && row
< m_numRows
&&
7439 col
>= 0 && col
< m_numCols
)
7441 int i
, cell_rows
, cell_cols
;
7442 rect
.width
= rect
.height
= 0;
7443 GetCellSize( row
, col
, &cell_rows
, &cell_cols
);
7444 // if negative then find multicell owner
7445 if (cell_rows
< 0) row
+= cell_rows
;
7446 if (cell_cols
< 0) col
+= cell_cols
;
7447 GetCellSize( row
, col
, &cell_rows
, &cell_cols
);
7449 rect
.x
= GetColLeft(col
);
7450 rect
.y
= GetRowTop(row
);
7451 for (i
=col
; i
<col
+cell_cols
; i
++)
7452 rect
.width
+= GetColWidth(i
);
7453 for (i
=row
; i
<row
+cell_rows
; i
++)
7454 rect
.height
+= GetRowHeight(i
);
7457 // if grid lines are enabled, then the area of the cell is a bit smaller
7458 if (m_gridLinesEnabled
) {
7466 bool wxGrid::IsVisible( int row
, int col
, bool wholeCellVisible
)
7468 // get the cell rectangle in logical coords
7470 wxRect
r( CellToRect( row
, col
) );
7472 // convert to device coords
7474 int left
, top
, right
, bottom
;
7475 CalcScrolledPosition( r
.GetLeft(), r
.GetTop(), &left
, &top
);
7476 CalcScrolledPosition( r
.GetRight(), r
.GetBottom(), &right
, &bottom
);
7478 // check against the client area of the grid window
7481 m_gridWin
->GetClientSize( &cw
, &ch
);
7483 if ( wholeCellVisible
)
7485 // is the cell wholly visible ?
7487 return ( left
>= 0 && right
<= cw
&&
7488 top
>= 0 && bottom
<= ch
);
7492 // is the cell partly visible ?
7494 return ( ((left
>=0 && left
< cw
) || (right
> 0 && right
<= cw
)) &&
7495 ((top
>=0 && top
< ch
) || (bottom
> 0 && bottom
<= ch
)) );
7500 // make the specified cell location visible by doing a minimal amount
7503 void wxGrid::MakeCellVisible( int row
, int col
)
7507 int xpos
= -1, ypos
= -1;
7509 if ( row
>= 0 && row
< m_numRows
&&
7510 col
>= 0 && col
< m_numCols
)
7512 // get the cell rectangle in logical coords
7514 wxRect
r( CellToRect( row
, col
) );
7516 // convert to device coords
7518 int left
, top
, right
, bottom
;
7519 CalcScrolledPosition( r
.GetLeft(), r
.GetTop(), &left
, &top
);
7520 CalcScrolledPosition( r
.GetRight(), r
.GetBottom(), &right
, &bottom
);
7523 m_gridWin
->GetClientSize( &cw
, &ch
);
7529 else if ( bottom
> ch
)
7531 int h
= r
.GetHeight();
7533 for ( i
= row
-1; i
>= 0; i
-- )
7535 int rowHeight
= GetRowHeight(i
);
7536 if ( h
+ rowHeight
> ch
)
7543 // we divide it later by GRID_SCROLL_LINE, make sure that we don't
7544 // have rounding errors (this is important, because if we do, we
7545 // might not scroll at all and some cells won't be redrawn)
7547 // Sometimes GRID_SCROLL_LINE/2 is not enough, so just add a full
7549 ypos
+= GRID_SCROLL_LINE_Y
;
7556 else if ( right
> cw
)
7558 int w
= r
.GetWidth();
7560 for ( i
= col
-1; i
>= 0; i
-- )
7562 int colWidth
= GetColWidth(i
);
7563 if ( w
+ colWidth
> cw
)
7570 // see comment for ypos above
7571 xpos
+= GRID_SCROLL_LINE_X
;
7574 if ( xpos
!= -1 || ypos
!= -1 )
7577 xpos
/= GRID_SCROLL_LINE_X
;
7579 ypos
/= GRID_SCROLL_LINE_Y
;
7580 Scroll( xpos
, ypos
);
7588 // ------ Grid cursor movement functions
7591 bool wxGrid::MoveCursorUp( bool expandSelection
)
7593 if ( m_currentCellCoords
!= wxGridNoCellCoords
&&
7594 m_currentCellCoords
.GetRow() >= 0 )
7596 if ( expandSelection
)
7598 if ( m_selectingKeyboard
== wxGridNoCellCoords
)
7599 m_selectingKeyboard
= m_currentCellCoords
;
7600 if ( m_selectingKeyboard
.GetRow() > 0 )
7602 m_selectingKeyboard
.SetRow( m_selectingKeyboard
.GetRow() - 1 );
7603 MakeCellVisible( m_selectingKeyboard
.GetRow(),
7604 m_selectingKeyboard
.GetCol() );
7605 HighlightBlock( m_currentCellCoords
, m_selectingKeyboard
);
7608 else if ( m_currentCellCoords
.GetRow() > 0 )
7611 MakeCellVisible( m_currentCellCoords
.GetRow() - 1,
7612 m_currentCellCoords
.GetCol() );
7613 SetCurrentCell( m_currentCellCoords
.GetRow() - 1,
7614 m_currentCellCoords
.GetCol() );
7625 bool wxGrid::MoveCursorDown( bool expandSelection
)
7627 if ( m_currentCellCoords
!= wxGridNoCellCoords
&&
7628 m_currentCellCoords
.GetRow() < m_numRows
)
7630 if ( expandSelection
)
7632 if ( m_selectingKeyboard
== wxGridNoCellCoords
)
7633 m_selectingKeyboard
= m_currentCellCoords
;
7634 if ( m_selectingKeyboard
.GetRow() < m_numRows
-1 )
7636 m_selectingKeyboard
.SetRow( m_selectingKeyboard
.GetRow() + 1 );
7637 MakeCellVisible( m_selectingKeyboard
.GetRow(),
7638 m_selectingKeyboard
.GetCol() );
7639 HighlightBlock( m_currentCellCoords
, m_selectingKeyboard
);
7642 else if ( m_currentCellCoords
.GetRow() < m_numRows
- 1 )
7645 MakeCellVisible( m_currentCellCoords
.GetRow() + 1,
7646 m_currentCellCoords
.GetCol() );
7647 SetCurrentCell( m_currentCellCoords
.GetRow() + 1,
7648 m_currentCellCoords
.GetCol() );
7659 bool wxGrid::MoveCursorLeft( bool expandSelection
)
7661 if ( m_currentCellCoords
!= wxGridNoCellCoords
&&
7662 m_currentCellCoords
.GetCol() >= 0 )
7664 if ( expandSelection
)
7666 if ( m_selectingKeyboard
== wxGridNoCellCoords
)
7667 m_selectingKeyboard
= m_currentCellCoords
;
7668 if ( m_selectingKeyboard
.GetCol() > 0 )
7670 m_selectingKeyboard
.SetCol( m_selectingKeyboard
.GetCol() - 1 );
7671 MakeCellVisible( m_selectingKeyboard
.GetRow(),
7672 m_selectingKeyboard
.GetCol() );
7673 HighlightBlock( m_currentCellCoords
, m_selectingKeyboard
);
7676 else if ( m_currentCellCoords
.GetCol() > 0 )
7679 MakeCellVisible( m_currentCellCoords
.GetRow(),
7680 m_currentCellCoords
.GetCol() - 1 );
7681 SetCurrentCell( m_currentCellCoords
.GetRow(),
7682 m_currentCellCoords
.GetCol() - 1 );
7693 bool wxGrid::MoveCursorRight( bool expandSelection
)
7695 if ( m_currentCellCoords
!= wxGridNoCellCoords
&&
7696 m_currentCellCoords
.GetCol() < m_numCols
)
7698 if ( expandSelection
)
7700 if ( m_selectingKeyboard
== wxGridNoCellCoords
)
7701 m_selectingKeyboard
= m_currentCellCoords
;
7702 if ( m_selectingKeyboard
.GetCol() < m_numCols
- 1 )
7704 m_selectingKeyboard
.SetCol( m_selectingKeyboard
.GetCol() + 1 );
7705 MakeCellVisible( m_selectingKeyboard
.GetRow(),
7706 m_selectingKeyboard
.GetCol() );
7707 HighlightBlock( m_currentCellCoords
, m_selectingKeyboard
);
7710 else if ( m_currentCellCoords
.GetCol() < m_numCols
- 1 )
7713 MakeCellVisible( m_currentCellCoords
.GetRow(),
7714 m_currentCellCoords
.GetCol() + 1 );
7715 SetCurrentCell( m_currentCellCoords
.GetRow(),
7716 m_currentCellCoords
.GetCol() + 1 );
7727 bool wxGrid::MovePageUp()
7729 if ( m_currentCellCoords
== wxGridNoCellCoords
) return FALSE
;
7731 int row
= m_currentCellCoords
.GetRow();
7735 m_gridWin
->GetClientSize( &cw
, &ch
);
7737 int y
= GetRowTop(row
);
7738 int newRow
= YToRow( y
- ch
+ 1 );
7743 else if ( newRow
== row
)
7748 MakeCellVisible( newRow
, m_currentCellCoords
.GetCol() );
7749 SetCurrentCell( newRow
, m_currentCellCoords
.GetCol() );
7757 bool wxGrid::MovePageDown()
7759 if ( m_currentCellCoords
== wxGridNoCellCoords
) return FALSE
;
7761 int row
= m_currentCellCoords
.GetRow();
7762 if ( row
< m_numRows
)
7765 m_gridWin
->GetClientSize( &cw
, &ch
);
7767 int y
= GetRowTop(row
);
7768 int newRow
= YToRow( y
+ ch
);
7771 newRow
= m_numRows
- 1;
7773 else if ( newRow
== row
)
7778 MakeCellVisible( newRow
, m_currentCellCoords
.GetCol() );
7779 SetCurrentCell( newRow
, m_currentCellCoords
.GetCol() );
7787 bool wxGrid::MoveCursorUpBlock( bool expandSelection
)
7790 m_currentCellCoords
!= wxGridNoCellCoords
&&
7791 m_currentCellCoords
.GetRow() > 0 )
7793 int row
= m_currentCellCoords
.GetRow();
7794 int col
= m_currentCellCoords
.GetCol();
7796 if ( m_table
->IsEmptyCell(row
, col
) )
7798 // starting in an empty cell: find the next block of
7804 if ( !(m_table
->IsEmptyCell(row
, col
)) ) break;
7807 else if ( m_table
->IsEmptyCell(row
-1, col
) )
7809 // starting at the top of a block: find the next block
7815 if ( !(m_table
->IsEmptyCell(row
, col
)) ) break;
7820 // starting within a block: find the top of the block
7825 if ( m_table
->IsEmptyCell(row
, col
) )
7833 MakeCellVisible( row
, col
);
7834 if ( expandSelection
)
7836 m_selectingKeyboard
= wxGridCellCoords( row
, col
);
7837 HighlightBlock( m_currentCellCoords
, m_selectingKeyboard
);
7842 SetCurrentCell( row
, col
);
7850 bool wxGrid::MoveCursorDownBlock( bool expandSelection
)
7853 m_currentCellCoords
!= wxGridNoCellCoords
&&
7854 m_currentCellCoords
.GetRow() < m_numRows
-1 )
7856 int row
= m_currentCellCoords
.GetRow();
7857 int col
= m_currentCellCoords
.GetCol();
7859 if ( m_table
->IsEmptyCell(row
, col
) )
7861 // starting in an empty cell: find the next block of
7864 while ( row
< m_numRows
-1 )
7867 if ( !(m_table
->IsEmptyCell(row
, col
)) ) break;
7870 else if ( m_table
->IsEmptyCell(row
+1, col
) )
7872 // starting at the bottom of a block: find the next block
7875 while ( row
< m_numRows
-1 )
7878 if ( !(m_table
->IsEmptyCell(row
, col
)) ) break;
7883 // starting within a block: find the bottom of the block
7885 while ( row
< m_numRows
-1 )
7888 if ( m_table
->IsEmptyCell(row
, col
) )
7896 MakeCellVisible( row
, col
);
7897 if ( expandSelection
)
7899 m_selectingKeyboard
= wxGridCellCoords( row
, col
);
7900 HighlightBlock( m_currentCellCoords
, m_selectingKeyboard
);
7905 SetCurrentCell( row
, col
);
7914 bool wxGrid::MoveCursorLeftBlock( bool expandSelection
)
7917 m_currentCellCoords
!= wxGridNoCellCoords
&&
7918 m_currentCellCoords
.GetCol() > 0 )
7920 int row
= m_currentCellCoords
.GetRow();
7921 int col
= m_currentCellCoords
.GetCol();
7923 if ( m_table
->IsEmptyCell(row
, col
) )
7925 // starting in an empty cell: find the next block of
7931 if ( !(m_table
->IsEmptyCell(row
, col
)) ) break;
7934 else if ( m_table
->IsEmptyCell(row
, col
-1) )
7936 // starting at the left of a block: find the next block
7942 if ( !(m_table
->IsEmptyCell(row
, col
)) ) break;
7947 // starting within a block: find the left of the block
7952 if ( m_table
->IsEmptyCell(row
, col
) )
7960 MakeCellVisible( row
, col
);
7961 if ( expandSelection
)
7963 m_selectingKeyboard
= wxGridCellCoords( row
, col
);
7964 HighlightBlock( m_currentCellCoords
, m_selectingKeyboard
);
7969 SetCurrentCell( row
, col
);
7978 bool wxGrid::MoveCursorRightBlock( bool expandSelection
)
7981 m_currentCellCoords
!= wxGridNoCellCoords
&&
7982 m_currentCellCoords
.GetCol() < m_numCols
-1 )
7984 int row
= m_currentCellCoords
.GetRow();
7985 int col
= m_currentCellCoords
.GetCol();
7987 if ( m_table
->IsEmptyCell(row
, col
) )
7989 // starting in an empty cell: find the next block of
7992 while ( col
< m_numCols
-1 )
7995 if ( !(m_table
->IsEmptyCell(row
, col
)) ) break;
7998 else if ( m_table
->IsEmptyCell(row
, col
+1) )
8000 // starting at the right of a block: find the next block
8003 while ( col
< m_numCols
-1 )
8006 if ( !(m_table
->IsEmptyCell(row
, col
)) ) break;
8011 // starting within a block: find the right of the block
8013 while ( col
< m_numCols
-1 )
8016 if ( m_table
->IsEmptyCell(row
, col
) )
8024 MakeCellVisible( row
, col
);
8025 if ( expandSelection
)
8027 m_selectingKeyboard
= wxGridCellCoords( row
, col
);
8028 HighlightBlock( m_currentCellCoords
, m_selectingKeyboard
);
8033 SetCurrentCell( row
, col
);
8045 // ------ Label values and formatting
8048 void wxGrid::GetRowLabelAlignment( int *horiz
, int *vert
)
8050 *horiz
= m_rowLabelHorizAlign
;
8051 *vert
= m_rowLabelVertAlign
;
8054 void wxGrid::GetColLabelAlignment( int *horiz
, int *vert
)
8056 *horiz
= m_colLabelHorizAlign
;
8057 *vert
= m_colLabelVertAlign
;
8060 wxString
wxGrid::GetRowLabelValue( int row
)
8064 return m_table
->GetRowLabelValue( row
);
8074 wxString
wxGrid::GetColLabelValue( int col
)
8078 return m_table
->GetColLabelValue( col
);
8089 void wxGrid::SetRowLabelSize( int width
)
8091 width
= wxMax( width
, 0 );
8092 if ( width
!= m_rowLabelWidth
)
8096 m_rowLabelWin
->Show( FALSE
);
8097 m_cornerLabelWin
->Show( FALSE
);
8099 else if ( m_rowLabelWidth
== 0 )
8101 m_rowLabelWin
->Show( TRUE
);
8102 if ( m_colLabelHeight
> 0 ) m_cornerLabelWin
->Show( TRUE
);
8105 m_rowLabelWidth
= width
;
8107 wxScrolledWindow::Refresh( TRUE
);
8112 void wxGrid::SetColLabelSize( int height
)
8114 height
= wxMax( height
, 0 );
8115 if ( height
!= m_colLabelHeight
)
8119 m_colLabelWin
->Show( FALSE
);
8120 m_cornerLabelWin
->Show( FALSE
);
8122 else if ( m_colLabelHeight
== 0 )
8124 m_colLabelWin
->Show( TRUE
);
8125 if ( m_rowLabelWidth
> 0 ) m_cornerLabelWin
->Show( TRUE
);
8128 m_colLabelHeight
= height
;
8130 wxScrolledWindow::Refresh( TRUE
);
8135 void wxGrid::SetLabelBackgroundColour( const wxColour
& colour
)
8137 if ( m_labelBackgroundColour
!= colour
)
8139 m_labelBackgroundColour
= colour
;
8140 m_rowLabelWin
->SetBackgroundColour( colour
);
8141 m_colLabelWin
->SetBackgroundColour( colour
);
8142 m_cornerLabelWin
->SetBackgroundColour( colour
);
8144 if ( !GetBatchCount() )
8146 m_rowLabelWin
->Refresh();
8147 m_colLabelWin
->Refresh();
8148 m_cornerLabelWin
->Refresh();
8153 void wxGrid::SetLabelTextColour( const wxColour
& colour
)
8155 if ( m_labelTextColour
!= colour
)
8157 m_labelTextColour
= colour
;
8158 if ( !GetBatchCount() )
8160 m_rowLabelWin
->Refresh();
8161 m_colLabelWin
->Refresh();
8166 void wxGrid::SetLabelFont( const wxFont
& font
)
8169 if ( !GetBatchCount() )
8171 m_rowLabelWin
->Refresh();
8172 m_colLabelWin
->Refresh();
8176 void wxGrid::SetRowLabelAlignment( int horiz
, int vert
)
8178 // allow old (incorrect) defs to be used
8181 case wxLEFT
: horiz
= wxALIGN_LEFT
; break;
8182 case wxRIGHT
: horiz
= wxALIGN_RIGHT
; break;
8183 case wxCENTRE
: horiz
= wxALIGN_CENTRE
; break;
8188 case wxTOP
: vert
= wxALIGN_TOP
; break;
8189 case wxBOTTOM
: vert
= wxALIGN_BOTTOM
; break;
8190 case wxCENTRE
: vert
= wxALIGN_CENTRE
; break;
8193 if ( horiz
== wxALIGN_LEFT
|| horiz
== wxALIGN_CENTRE
|| horiz
== wxALIGN_RIGHT
)
8195 m_rowLabelHorizAlign
= horiz
;
8198 if ( vert
== wxALIGN_TOP
|| vert
== wxALIGN_CENTRE
|| vert
== wxALIGN_BOTTOM
)
8200 m_rowLabelVertAlign
= vert
;
8203 if ( !GetBatchCount() )
8205 m_rowLabelWin
->Refresh();
8209 void wxGrid::SetColLabelAlignment( int horiz
, int vert
)
8211 // allow old (incorrect) defs to be used
8214 case wxLEFT
: horiz
= wxALIGN_LEFT
; break;
8215 case wxRIGHT
: horiz
= wxALIGN_RIGHT
; break;
8216 case wxCENTRE
: horiz
= wxALIGN_CENTRE
; break;
8221 case wxTOP
: vert
= wxALIGN_TOP
; break;
8222 case wxBOTTOM
: vert
= wxALIGN_BOTTOM
; break;
8223 case wxCENTRE
: vert
= wxALIGN_CENTRE
; break;
8226 if ( horiz
== wxALIGN_LEFT
|| horiz
== wxALIGN_CENTRE
|| horiz
== wxALIGN_RIGHT
)
8228 m_colLabelHorizAlign
= horiz
;
8231 if ( vert
== wxALIGN_TOP
|| vert
== wxALIGN_CENTRE
|| vert
== wxALIGN_BOTTOM
)
8233 m_colLabelVertAlign
= vert
;
8236 if ( !GetBatchCount() )
8238 m_colLabelWin
->Refresh();
8242 void wxGrid::SetRowLabelValue( int row
, const wxString
& s
)
8246 m_table
->SetRowLabelValue( row
, s
);
8247 if ( !GetBatchCount() )
8249 wxRect rect
= CellToRect( row
, 0);
8250 if ( rect
.height
> 0 )
8252 CalcScrolledPosition(0, rect
.y
, &rect
.x
, &rect
.y
);
8254 rect
.width
= m_rowLabelWidth
;
8255 m_rowLabelWin
->Refresh( TRUE
, &rect
);
8261 void wxGrid::SetColLabelValue( int col
, const wxString
& s
)
8265 m_table
->SetColLabelValue( col
, s
);
8266 if ( !GetBatchCount() )
8268 wxRect rect
= CellToRect( 0, col
);
8269 if ( rect
.width
> 0 )
8271 CalcScrolledPosition(rect
.x
, 0, &rect
.x
, &rect
.y
);
8273 rect
.height
= m_colLabelHeight
;
8274 m_colLabelWin
->Refresh( TRUE
, &rect
);
8280 void wxGrid::SetGridLineColour( const wxColour
& colour
)
8282 if ( m_gridLineColour
!= colour
)
8284 m_gridLineColour
= colour
;
8286 wxClientDC
dc( m_gridWin
);
8288 DrawAllGridLines( dc
, wxRegion() );
8293 void wxGrid::SetCellHighlightColour( const wxColour
& colour
)
8295 if ( m_cellHighlightColour
!= colour
)
8297 m_cellHighlightColour
= colour
;
8299 wxClientDC
dc( m_gridWin
);
8301 wxGridCellAttr
* attr
= GetCellAttr(m_currentCellCoords
);
8302 DrawCellHighlight(dc
, attr
);
8307 void wxGrid::SetCellHighlightPenWidth(int width
)
8309 if (m_cellHighlightPenWidth
!= width
) {
8310 m_cellHighlightPenWidth
= width
;
8312 // Just redrawing the cell highlight is not enough since that won't
8313 // make any visible change if the the thickness is getting smaller.
8314 int row
= m_currentCellCoords
.GetRow();
8315 int col
= m_currentCellCoords
.GetCol();
8316 if ( GetColWidth(col
) <= 0 || GetRowHeight(row
) <= 0 )
8318 wxRect rect
= CellToRect(row
, col
);
8319 m_gridWin
->Refresh(TRUE
, &rect
);
8323 void wxGrid::SetCellHighlightROPenWidth(int width
)
8325 if (m_cellHighlightROPenWidth
!= width
) {
8326 m_cellHighlightROPenWidth
= width
;
8328 // Just redrawing the cell highlight is not enough since that won't
8329 // make any visible change if the the thickness is getting smaller.
8330 int row
= m_currentCellCoords
.GetRow();
8331 int col
= m_currentCellCoords
.GetCol();
8332 if ( GetColWidth(col
) <= 0 || GetRowHeight(row
) <= 0 )
8334 wxRect rect
= CellToRect(row
, col
);
8335 m_gridWin
->Refresh(TRUE
, &rect
);
8339 void wxGrid::EnableGridLines( bool enable
)
8341 if ( enable
!= m_gridLinesEnabled
)
8343 m_gridLinesEnabled
= enable
;
8345 if ( !GetBatchCount() )
8349 wxClientDC
dc( m_gridWin
);
8351 DrawAllGridLines( dc
, wxRegion() );
8355 m_gridWin
->Refresh();
8362 int wxGrid::GetDefaultRowSize()
8364 return m_defaultRowHeight
;
8367 int wxGrid::GetRowSize( int row
)
8369 wxCHECK_MSG( row
>= 0 && row
< m_numRows
, 0, _T("invalid row index") );
8371 return GetRowHeight(row
);
8374 int wxGrid::GetDefaultColSize()
8376 return m_defaultColWidth
;
8379 int wxGrid::GetColSize( int col
)
8381 wxCHECK_MSG( col
>= 0 && col
< m_numCols
, 0, _T("invalid column index") );
8383 return GetColWidth(col
);
8386 // ============================================================================
8387 // access to the grid attributes: each of them has a default value in the grid
8388 // itself and may be overidden on a per-cell basis
8389 // ============================================================================
8391 // ----------------------------------------------------------------------------
8392 // setting default attributes
8393 // ----------------------------------------------------------------------------
8395 void wxGrid::SetDefaultCellBackgroundColour( const wxColour
& col
)
8397 m_defaultCellAttr
->SetBackgroundColour(col
);
8399 m_gridWin
->SetBackgroundColour(col
);
8403 void wxGrid::SetDefaultCellTextColour( const wxColour
& col
)
8405 m_defaultCellAttr
->SetTextColour(col
);
8408 void wxGrid::SetDefaultCellAlignment( int horiz
, int vert
)
8410 m_defaultCellAttr
->SetAlignment(horiz
, vert
);
8413 void wxGrid::SetDefaultCellOverflow( bool allow
)
8415 m_defaultCellAttr
->SetOverflow(allow
);
8418 void wxGrid::SetDefaultCellFont( const wxFont
& font
)
8420 m_defaultCellAttr
->SetFont(font
);
8423 void wxGrid::SetDefaultRenderer(wxGridCellRenderer
*renderer
)
8425 m_defaultCellAttr
->SetRenderer(renderer
);
8428 void wxGrid::SetDefaultEditor(wxGridCellEditor
*editor
)
8430 m_defaultCellAttr
->SetEditor(editor
);
8433 // ----------------------------------------------------------------------------
8434 // access to the default attrbiutes
8435 // ----------------------------------------------------------------------------
8437 wxColour
wxGrid::GetDefaultCellBackgroundColour()
8439 return m_defaultCellAttr
->GetBackgroundColour();
8442 wxColour
wxGrid::GetDefaultCellTextColour()
8444 return m_defaultCellAttr
->GetTextColour();
8447 wxFont
wxGrid::GetDefaultCellFont()
8449 return m_defaultCellAttr
->GetFont();
8452 void wxGrid::GetDefaultCellAlignment( int *horiz
, int *vert
)
8454 m_defaultCellAttr
->GetAlignment(horiz
, vert
);
8457 bool wxGrid::GetDefaultCellOverflow()
8459 return m_defaultCellAttr
->GetOverflow();
8462 wxGridCellRenderer
*wxGrid::GetDefaultRenderer() const
8464 return m_defaultCellAttr
->GetRenderer(NULL
, 0, 0);
8467 wxGridCellEditor
*wxGrid::GetDefaultEditor() const
8469 return m_defaultCellAttr
->GetEditor(NULL
,0,0);
8472 // ----------------------------------------------------------------------------
8473 // access to cell attributes
8474 // ----------------------------------------------------------------------------
8476 wxColour
wxGrid::GetCellBackgroundColour(int row
, int col
)
8478 wxGridCellAttr
*attr
= GetCellAttr(row
, col
);
8479 wxColour colour
= attr
->GetBackgroundColour();
8484 wxColour
wxGrid::GetCellTextColour( int row
, int col
)
8486 wxGridCellAttr
*attr
= GetCellAttr(row
, col
);
8487 wxColour colour
= attr
->GetTextColour();
8492 wxFont
wxGrid::GetCellFont( int row
, int col
)
8494 wxGridCellAttr
*attr
= GetCellAttr(row
, col
);
8495 wxFont font
= attr
->GetFont();
8500 void wxGrid::GetCellAlignment( int row
, int col
, int *horiz
, int *vert
)
8502 wxGridCellAttr
*attr
= GetCellAttr(row
, col
);
8503 attr
->GetAlignment(horiz
, vert
);
8507 bool wxGrid::GetCellOverflow( int row
, int col
)
8509 wxGridCellAttr
*attr
= GetCellAttr(row
, col
);
8510 bool allow
= attr
->GetOverflow();
8515 void wxGrid::GetCellSize( int row
, int col
, int *num_rows
, int *num_cols
)
8517 wxGridCellAttr
*attr
= GetCellAttr(row
, col
);
8518 attr
->GetSize( num_rows
, num_cols
);
8522 wxGridCellRenderer
* wxGrid::GetCellRenderer(int row
, int col
)
8524 wxGridCellAttr
* attr
= GetCellAttr(row
, col
);
8525 wxGridCellRenderer
* renderer
= attr
->GetRenderer(this, row
, col
);
8531 wxGridCellEditor
* wxGrid::GetCellEditor(int row
, int col
)
8533 wxGridCellAttr
* attr
= GetCellAttr(row
, col
);
8534 wxGridCellEditor
* editor
= attr
->GetEditor(this, row
, col
);
8540 bool wxGrid::IsReadOnly(int row
, int col
) const
8542 wxGridCellAttr
* attr
= GetCellAttr(row
, col
);
8543 bool isReadOnly
= attr
->IsReadOnly();
8548 // ----------------------------------------------------------------------------
8549 // attribute support: cache, automatic provider creation, ...
8550 // ----------------------------------------------------------------------------
8552 bool wxGrid::CanHaveAttributes()
8559 return m_table
->CanHaveAttributes();
8562 void wxGrid::ClearAttrCache()
8564 if ( m_attrCache
.row
!= -1 )
8566 wxSafeDecRef(m_attrCache
.attr
);
8567 m_attrCache
.attr
= NULL
;
8568 m_attrCache
.row
= -1;
8572 void wxGrid::CacheAttr(int row
, int col
, wxGridCellAttr
*attr
) const
8574 wxGrid
*self
= (wxGrid
*)this; // const_cast
8576 self
->ClearAttrCache();
8577 self
->m_attrCache
.row
= row
;
8578 self
->m_attrCache
.col
= col
;
8579 self
->m_attrCache
.attr
= attr
;
8583 bool wxGrid::LookupAttr(int row
, int col
, wxGridCellAttr
**attr
) const
8585 if ( row
== m_attrCache
.row
&& col
== m_attrCache
.col
)
8587 *attr
= m_attrCache
.attr
;
8588 wxSafeIncRef(m_attrCache
.attr
);
8590 #ifdef DEBUG_ATTR_CACHE
8591 gs_nAttrCacheHits
++;
8598 #ifdef DEBUG_ATTR_CACHE
8599 gs_nAttrCacheMisses
++;
8605 wxGridCellAttr
*wxGrid::GetCellAttr(int row
, int col
) const
8607 wxGridCellAttr
*attr
= NULL
;
8608 // Additional test to avoid looking at the cache e.g. for
8609 // wxNoCellCoords, as this will confuse memory management.
8612 if ( !LookupAttr(row
, col
, &attr
) )
8614 attr
= m_table
? m_table
->GetAttr(row
, col
, wxGridCellAttr::Any
)
8615 : (wxGridCellAttr
*)NULL
;
8616 CacheAttr(row
, col
, attr
);
8621 attr
->SetDefAttr(m_defaultCellAttr
);
8625 attr
= m_defaultCellAttr
;
8632 wxGridCellAttr
*wxGrid::GetOrCreateCellAttr(int row
, int col
) const
8634 wxGridCellAttr
*attr
= (wxGridCellAttr
*)NULL
;
8636 wxCHECK_MSG( m_table
, attr
,
8637 _T("we may only be called if CanHaveAttributes() returned TRUE and then m_table should be !NULL") );
8639 attr
= m_table
->GetAttr(row
, col
, wxGridCellAttr::Cell
);
8642 attr
= new wxGridCellAttr(m_defaultCellAttr
);
8644 // artificially inc the ref count to match DecRef() in caller
8646 m_table
->SetAttr(attr
, row
, col
);
8652 // ----------------------------------------------------------------------------
8653 // setting column attributes (wrappers around SetColAttr)
8654 // ----------------------------------------------------------------------------
8656 void wxGrid::SetColFormatBool(int col
)
8658 SetColFormatCustom(col
, wxGRID_VALUE_BOOL
);
8661 void wxGrid::SetColFormatNumber(int col
)
8663 SetColFormatCustom(col
, wxGRID_VALUE_NUMBER
);
8666 void wxGrid::SetColFormatFloat(int col
, int width
, int precision
)
8668 wxString typeName
= wxGRID_VALUE_FLOAT
;
8669 if ( (width
!= -1) || (precision
!= -1) )
8671 typeName
<< _T(':') << width
<< _T(',') << precision
;
8674 SetColFormatCustom(col
, typeName
);
8677 void wxGrid::SetColFormatCustom(int col
, const wxString
& typeName
)
8679 wxGridCellAttr
*attr
= (wxGridCellAttr
*)NULL
;
8681 attr
= m_table
->GetAttr(-1, col
, wxGridCellAttr::Col
);
8683 attr
= new wxGridCellAttr
;
8684 wxGridCellRenderer
*renderer
= GetDefaultRendererForType(typeName
);
8685 attr
->SetRenderer(renderer
);
8687 SetColAttr(col
, attr
);
8691 // ----------------------------------------------------------------------------
8692 // setting cell attributes: this is forwarded to the table
8693 // ----------------------------------------------------------------------------
8695 void wxGrid::SetAttr(int row
, int col
, wxGridCellAttr
*attr
)
8697 if ( CanHaveAttributes() )
8699 m_table
->SetAttr(attr
, row
, col
);
8708 void wxGrid::SetRowAttr(int row
, wxGridCellAttr
*attr
)
8710 if ( CanHaveAttributes() )
8712 m_table
->SetRowAttr(attr
, row
);
8721 void wxGrid::SetColAttr(int col
, wxGridCellAttr
*attr
)
8723 if ( CanHaveAttributes() )
8725 m_table
->SetColAttr(attr
, col
);
8734 void wxGrid::SetCellBackgroundColour( int row
, int col
, const wxColour
& colour
)
8736 if ( CanHaveAttributes() )
8738 wxGridCellAttr
*attr
= GetOrCreateCellAttr(row
, col
);
8739 attr
->SetBackgroundColour(colour
);
8744 void wxGrid::SetCellTextColour( int row
, int col
, const wxColour
& colour
)
8746 if ( CanHaveAttributes() )
8748 wxGridCellAttr
*attr
= GetOrCreateCellAttr(row
, col
);
8749 attr
->SetTextColour(colour
);
8754 void wxGrid::SetCellFont( int row
, int col
, const wxFont
& font
)
8756 if ( CanHaveAttributes() )
8758 wxGridCellAttr
*attr
= GetOrCreateCellAttr(row
, col
);
8759 attr
->SetFont(font
);
8764 void wxGrid::SetCellAlignment( int row
, int col
, int horiz
, int vert
)
8766 if ( CanHaveAttributes() )
8768 wxGridCellAttr
*attr
= GetOrCreateCellAttr(row
, col
);
8769 attr
->SetAlignment(horiz
, vert
);
8774 void wxGrid::SetCellOverflow( int row
, int col
, bool allow
)
8776 if ( CanHaveAttributes() )
8778 wxGridCellAttr
*attr
= GetOrCreateCellAttr(row
, col
);
8779 attr
->SetOverflow(allow
);
8784 void wxGrid::SetCellSize( int row
, int col
, int num_rows
, int num_cols
)
8786 if ( CanHaveAttributes() )
8788 int cell_rows
, cell_cols
;
8790 wxGridCellAttr
*attr
= GetOrCreateCellAttr(row
, col
);
8791 attr
->GetSize(&cell_rows
, &cell_cols
);
8792 attr
->SetSize(num_rows
, num_cols
);
8795 // Cannot set the size of a cell to 0 or negative values
8796 // While it is perfectly legal to do that, this function cannot
8797 // handle all the possibilies, do it by hand by getting the CellAttr.
8798 // You can only set the size of a cell to 1,1 or greater with this fn
8799 wxASSERT_MSG( !((cell_rows
< 1) || (cell_cols
< 1)),
8800 wxT("wxGrid::SetCellSize setting cell size that is already part of another cell"));
8801 wxASSERT_MSG( !((num_rows
< 1) || (num_cols
< 1)),
8802 wxT("wxGrid::SetCellSize setting cell size to < 1"));
8804 // if this was already a multicell then "turn off" the other cells first
8805 if ((cell_rows
> 1) || (cell_rows
> 1))
8808 for (j
=row
; j
<row
+cell_rows
; j
++)
8810 for (i
=col
; i
<col
+cell_cols
; i
++)
8812 if ((i
!= col
) || (j
!= row
))
8814 wxGridCellAttr
*attr_stub
= GetOrCreateCellAttr(j
, i
);
8815 attr_stub
->SetSize( 1, 1 );
8816 attr_stub
->DecRef();
8822 // mark the cells that will be covered by this cell to
8823 // negative or zero values to point back at this cell
8824 if (((num_rows
> 1) || (num_cols
> 1)) && (num_rows
>= 1) && (num_cols
>= 1))
8827 for (j
=row
; j
<row
+num_rows
; j
++)
8829 for (i
=col
; i
<col
+num_cols
; i
++)
8831 if ((i
!= col
) || (j
!= row
))
8833 wxGridCellAttr
*attr_stub
= GetOrCreateCellAttr(j
, i
);
8834 attr_stub
->SetSize( row
-j
, col
-i
);
8835 attr_stub
->DecRef();
8843 void wxGrid::SetCellRenderer(int row
, int col
, wxGridCellRenderer
*renderer
)
8845 if ( CanHaveAttributes() )
8847 wxGridCellAttr
*attr
= GetOrCreateCellAttr(row
, col
);
8848 attr
->SetRenderer(renderer
);
8853 void wxGrid::SetCellEditor(int row
, int col
, wxGridCellEditor
* editor
)
8855 if ( CanHaveAttributes() )
8857 wxGridCellAttr
*attr
= GetOrCreateCellAttr(row
, col
);
8858 attr
->SetEditor(editor
);
8863 void wxGrid::SetReadOnly(int row
, int col
, bool isReadOnly
)
8865 if ( CanHaveAttributes() )
8867 wxGridCellAttr
*attr
= GetOrCreateCellAttr(row
, col
);
8868 attr
->SetReadOnly(isReadOnly
);
8873 // ----------------------------------------------------------------------------
8874 // Data type registration
8875 // ----------------------------------------------------------------------------
8877 void wxGrid::RegisterDataType(const wxString
& typeName
,
8878 wxGridCellRenderer
* renderer
,
8879 wxGridCellEditor
* editor
)
8881 m_typeRegistry
->RegisterDataType(typeName
, renderer
, editor
);
8885 wxGridCellEditor
* wxGrid::GetDefaultEditorForCell(int row
, int col
) const
8887 wxString typeName
= m_table
->GetTypeName(row
, col
);
8888 return GetDefaultEditorForType(typeName
);
8891 wxGridCellRenderer
* wxGrid::GetDefaultRendererForCell(int row
, int col
) const
8893 wxString typeName
= m_table
->GetTypeName(row
, col
);
8894 return GetDefaultRendererForType(typeName
);
8898 wxGrid::GetDefaultEditorForType(const wxString
& typeName
) const
8900 int index
= m_typeRegistry
->FindOrCloneDataType(typeName
);
8901 if ( index
== wxNOT_FOUND
)
8903 wxFAIL_MSG(wxT("Unknown data type name"));
8908 return m_typeRegistry
->GetEditor(index
);
8912 wxGrid::GetDefaultRendererForType(const wxString
& typeName
) const
8914 int index
= m_typeRegistry
->FindOrCloneDataType(typeName
);
8915 if ( index
== wxNOT_FOUND
)
8917 wxFAIL_MSG(wxT("Unknown data type name"));
8922 return m_typeRegistry
->GetRenderer(index
);
8926 // ----------------------------------------------------------------------------
8928 // ----------------------------------------------------------------------------
8930 void wxGrid::EnableDragRowSize( bool enable
)
8932 m_canDragRowSize
= enable
;
8936 void wxGrid::EnableDragColSize( bool enable
)
8938 m_canDragColSize
= enable
;
8941 void wxGrid::EnableDragGridSize( bool enable
)
8943 m_canDragGridSize
= enable
;
8947 void wxGrid::SetDefaultRowSize( int height
, bool resizeExistingRows
)
8949 m_defaultRowHeight
= wxMax( height
, WXGRID_MIN_ROW_HEIGHT
);
8951 if ( resizeExistingRows
)
8953 // since we are resizing all rows to the default row size,
8954 // we can simply clear the row heights and row bottoms
8955 // arrays (which also allows us to take advantage of
8956 // some speed optimisations)
8957 m_rowHeights
.Empty();
8958 m_rowBottoms
.Empty();
8959 if ( !GetBatchCount() )
8964 void wxGrid::SetRowSize( int row
, int height
)
8966 wxCHECK_RET( row
>= 0 && row
< m_numRows
, _T("invalid row index") );
8968 if ( m_rowHeights
.IsEmpty() )
8970 // need to really create the array
8974 int h
= wxMax( 0, height
);
8975 int diff
= h
- m_rowHeights
[row
];
8977 m_rowHeights
[row
] = h
;
8979 for ( i
= row
; i
< m_numRows
; i
++ )
8981 m_rowBottoms
[i
] += diff
;
8983 if ( !GetBatchCount() )
8987 void wxGrid::SetDefaultColSize( int width
, bool resizeExistingCols
)
8989 m_defaultColWidth
= wxMax( width
, WXGRID_MIN_COL_WIDTH
);
8991 if ( resizeExistingCols
)
8993 // since we are resizing all columns to the default column size,
8994 // we can simply clear the col widths and col rights
8995 // arrays (which also allows us to take advantage of
8996 // some speed optimisations)
8997 m_colWidths
.Empty();
8998 m_colRights
.Empty();
8999 if ( !GetBatchCount() )
9004 void wxGrid::SetColSize( int col
, int width
)
9006 wxCHECK_RET( col
>= 0 && col
< m_numCols
, _T("invalid column index") );
9008 // should we check that it's bigger than GetColMinimalWidth(col) here?
9010 if ( m_colWidths
.IsEmpty() )
9012 // need to really create the array
9016 int w
= wxMax( 0, width
);
9017 int diff
= w
- m_colWidths
[col
];
9018 m_colWidths
[col
] = w
;
9021 for ( i
= col
; i
< m_numCols
; i
++ )
9023 m_colRights
[i
] += diff
;
9025 if ( !GetBatchCount() )
9030 void wxGrid::SetColMinimalWidth( int col
, int width
)
9032 m_colMinWidths
.Put(col
, width
);
9035 void wxGrid::SetRowMinimalHeight( int row
, int width
)
9037 m_rowMinHeights
.Put(row
, width
);
9040 int wxGrid::GetColMinimalWidth(int col
) const
9042 long value
= m_colMinWidths
.Get(col
);
9043 return value
!= wxNOT_FOUND
? (int)value
: WXGRID_MIN_COL_WIDTH
;
9046 int wxGrid::GetRowMinimalHeight(int row
) const
9048 long value
= m_rowMinHeights
.Get(row
);
9049 return value
!= wxNOT_FOUND
? (int)value
: WXGRID_MIN_ROW_HEIGHT
;
9052 // ----------------------------------------------------------------------------
9054 // ----------------------------------------------------------------------------
9056 void wxGrid::AutoSizeColOrRow( int colOrRow
, bool setAsMin
, bool column
)
9058 wxClientDC
dc(m_gridWin
);
9060 // init both of them to avoid compiler warnings, even if weo nly need one
9068 wxCoord extent
, extentMax
= 0;
9069 int max
= column
? m_numRows
: m_numCols
;
9070 for ( int rowOrCol
= 0; rowOrCol
< max
; rowOrCol
++ )
9077 wxGridCellAttr
* attr
= GetCellAttr(row
, col
);
9078 wxGridCellRenderer
* renderer
= attr
->GetRenderer(this, row
, col
);
9081 wxSize size
= renderer
->GetBestSize(*this, *attr
, dc
, row
, col
);
9082 extent
= column
? size
.x
: size
.y
;
9083 if ( extent
> extentMax
)
9094 // now also compare with the column label extent
9096 dc
.SetFont( GetLabelFont() );
9099 dc
.GetTextExtent( GetColLabelValue(col
), &w
, &h
);
9101 dc
.GetTextExtent( GetRowLabelValue(row
), &w
, &h
);
9103 extent
= column
? w
: h
;
9104 if ( extent
> extentMax
)
9111 // empty column - give default extent (notice that if extentMax is less
9112 // than default extent but != 0, it's ok)
9113 extentMax
= column
? m_defaultColWidth
: m_defaultRowHeight
;
9119 // leave some space around text
9130 SetColSize(col
, extentMax
);
9131 if ( !GetBatchCount() )
9134 m_gridWin
->GetClientSize( &cw
, &ch
);
9135 wxRect
rect ( CellToRect( 0, col
) );
9137 CalcScrolledPosition(rect
.x
, 0, &rect
.x
, &dummy
);
9138 rect
.width
= cw
- rect
.x
;
9139 rect
.height
= m_colLabelHeight
;
9140 m_colLabelWin
->Refresh( TRUE
, &rect
);
9145 SetRowSize(row
, extentMax
);
9146 if ( !GetBatchCount() )
9149 m_gridWin
->GetClientSize( &cw
, &ch
);
9150 wxRect
rect ( CellToRect( row
, 0 ) );
9152 CalcScrolledPosition(0, rect
.y
, &dummy
, &rect
.y
);
9153 rect
.width
= m_rowLabelWidth
;
9154 rect
.height
= ch
- rect
.y
;
9155 m_rowLabelWin
->Refresh( TRUE
, &rect
);
9161 SetColMinimalWidth(col
, extentMax
);
9163 SetRowMinimalHeight(row
, extentMax
);
9167 int wxGrid::SetOrCalcColumnSizes(bool calcOnly
, bool setAsMin
)
9169 int width
= m_rowLabelWidth
;
9174 for ( int col
= 0; col
< m_numCols
; col
++ )
9178 AutoSizeColumn(col
, setAsMin
);
9181 width
+= GetColWidth(col
);
9190 int wxGrid::SetOrCalcRowSizes(bool calcOnly
, bool setAsMin
)
9192 int height
= m_colLabelHeight
;
9197 for ( int row
= 0; row
< m_numRows
; row
++ )
9201 AutoSizeRow(row
, setAsMin
);
9204 height
+= GetRowHeight(row
);
9213 void wxGrid::AutoSize()
9217 wxSize
size(SetOrCalcColumnSizes(FALSE
), SetOrCalcRowSizes(FALSE
));
9219 // round up the size to a multiple of scroll step - this ensures that we
9220 // won't get the scrollbars if we're sized exactly to this width
9221 wxSize
sizeFit(GetScrollX(size
.x
) * GRID_SCROLL_LINE_X
,
9222 GetScrollY(size
.y
) * GRID_SCROLL_LINE_Y
);
9224 // distribute the extra space between teh columns/rows to avoid having
9225 // extra white space
9226 wxCoord diff
= sizeFit
.x
- size
.x
;
9229 // try to resize the columns uniformly
9230 wxCoord diffPerCol
= diff
/ m_numCols
;
9233 for ( int col
= 0; col
< m_numCols
; col
++ )
9235 SetColSize(col
, GetColWidth(col
) + diffPerCol
);
9239 // add remaining amount to the last columns
9240 diff
-= diffPerCol
* m_numCols
;
9243 for ( int col
= m_numCols
- 1; col
>= m_numCols
- diff
; col
-- )
9245 SetColSize(col
, GetColWidth(col
) + 1);
9251 diff
= sizeFit
.y
- size
.y
;
9254 // try to resize the columns uniformly
9255 wxCoord diffPerRow
= diff
/ m_numRows
;
9258 for ( int row
= 0; row
< m_numRows
; row
++ )
9260 SetRowSize(row
, GetRowHeight(row
) + diffPerRow
);
9264 // add remaining amount to the last rows
9265 diff
-= diffPerRow
* m_numRows
;
9268 for ( int row
= m_numRows
- 1; row
>= m_numRows
- diff
; row
-- )
9270 SetRowSize(row
, GetRowHeight(row
) + 1);
9277 SetClientSize(sizeFit
);
9280 wxSize
wxGrid::DoGetBestSize() const
9282 // don't set sizes, only calculate them
9283 wxGrid
*self
= (wxGrid
*)this; // const_cast
9286 width
= self
->SetOrCalcColumnSizes(TRUE
);
9287 height
= self
->SetOrCalcRowSizes(TRUE
);
9289 int maxwidth
, maxheight
;
9290 wxDisplaySize( & maxwidth
, & maxheight
);
9292 if ( width
> maxwidth
) width
= maxwidth
;
9293 if ( height
> maxheight
) height
= maxheight
;
9295 return wxSize( width
, height
);
9304 wxPen
& wxGrid::GetDividerPen() const
9309 // ----------------------------------------------------------------------------
9310 // cell value accessor functions
9311 // ----------------------------------------------------------------------------
9313 void wxGrid::SetCellValue( int row
, int col
, const wxString
& s
)
9317 m_table
->SetValue( row
, col
, s
);
9318 if ( !GetBatchCount() )
9321 wxRect
rect( CellToRect( row
, col
) );
9323 rect
.width
= m_gridWin
->GetClientSize().GetWidth();
9324 CalcScrolledPosition(0, rect
.y
, &dummy
, &rect
.y
);
9325 m_gridWin
->Refresh( FALSE
, &rect
);
9328 if ( m_currentCellCoords
.GetRow() == row
&&
9329 m_currentCellCoords
.GetCol() == col
&&
9330 IsCellEditControlShown())
9331 // Note: If we are using IsCellEditControlEnabled,
9332 // this interacts badly with calling SetCellValue from
9333 // an EVT_GRID_CELL_CHANGE handler.
9335 HideCellEditControl();
9336 ShowCellEditControl(); // will reread data from table
9343 // ------ Block, row and col selection
9346 void wxGrid::SelectRow( int row
, bool addToSelected
)
9348 if ( IsSelection() && !addToSelected
)
9352 m_selection
->SelectRow( row
, FALSE
, addToSelected
);
9356 void wxGrid::SelectCol( int col
, bool addToSelected
)
9358 if ( IsSelection() && !addToSelected
)
9362 m_selection
->SelectCol( col
, FALSE
, addToSelected
);
9366 void wxGrid::SelectBlock( int topRow
, int leftCol
, int bottomRow
, int rightCol
,
9367 bool addToSelected
)
9369 if ( IsSelection() && !addToSelected
)
9373 m_selection
->SelectBlock( topRow
, leftCol
, bottomRow
, rightCol
,
9374 FALSE
, addToSelected
);
9378 void wxGrid::SelectAll()
9380 if ( m_numRows
> 0 && m_numCols
> 0 )
9383 m_selection
->SelectBlock( 0, 0, m_numRows
-1, m_numCols
-1 );
9388 // ------ Cell, row and col deselection
9391 void wxGrid::DeselectRow( int row
)
9396 if ( m_selection
->GetSelectionMode() == wxGrid::wxGridSelectRows
)
9398 if ( m_selection
->IsInSelection(row
, 0 ) )
9399 m_selection
->ToggleCellSelection( row
, 0);
9403 int nCols
= GetNumberCols();
9404 for ( int i
= 0; i
< nCols
; i
++ )
9406 if ( m_selection
->IsInSelection(row
, i
) )
9407 m_selection
->ToggleCellSelection( row
, i
);
9412 void wxGrid::DeselectCol( int col
)
9417 if ( m_selection
->GetSelectionMode() == wxGrid::wxGridSelectColumns
)
9419 if ( m_selection
->IsInSelection(0, col
) )
9420 m_selection
->ToggleCellSelection( 0, col
);
9424 int nRows
= GetNumberRows();
9425 for ( int i
= 0; i
< nRows
; i
++ )
9427 if ( m_selection
->IsInSelection(i
, col
) )
9428 m_selection
->ToggleCellSelection(i
, col
);
9433 void wxGrid::DeselectCell( int row
, int col
)
9435 if ( m_selection
&& m_selection
->IsInSelection(row
, col
) )
9436 m_selection
->ToggleCellSelection(row
, col
);
9439 bool wxGrid::IsSelection()
9441 return ( m_selection
&& (m_selection
->IsSelection() ||
9442 ( m_selectingTopLeft
!= wxGridNoCellCoords
&&
9443 m_selectingBottomRight
!= wxGridNoCellCoords
) ) );
9446 bool wxGrid::IsInSelection( int row
, int col
) const
9448 return ( m_selection
&& (m_selection
->IsInSelection( row
, col
) ||
9449 ( row
>= m_selectingTopLeft
.GetRow() &&
9450 col
>= m_selectingTopLeft
.GetCol() &&
9451 row
<= m_selectingBottomRight
.GetRow() &&
9452 col
<= m_selectingBottomRight
.GetCol() )) );
9455 wxGridCellCoordsArray
wxGrid::GetSelectedCells() const
9457 if (!m_selection
) { wxGridCellCoordsArray a
; return a
; }
9458 return m_selection
->m_cellSelection
;
9460 wxGridCellCoordsArray
wxGrid::GetSelectionBlockTopLeft() const
9462 if (!m_selection
) { wxGridCellCoordsArray a
; return a
; }
9463 return m_selection
->m_blockSelectionTopLeft
;
9465 wxGridCellCoordsArray
wxGrid::GetSelectionBlockBottomRight() const
9467 if (!m_selection
) { wxGridCellCoordsArray a
; return a
; }
9468 return m_selection
->m_blockSelectionTopLeft
;
9470 wxArrayInt
wxGrid::GetSelectedRows() const
9472 if (!m_selection
) { wxArrayInt a
; return a
; }
9473 return m_selection
->m_rowSelection
;
9475 wxArrayInt
wxGrid::GetSelectedCols() const
9477 if (!m_selection
) { wxArrayInt a
; return a
; }
9478 return m_selection
->m_colSelection
;
9482 void wxGrid::ClearSelection()
9484 m_selectingTopLeft
= wxGridNoCellCoords
;
9485 m_selectingBottomRight
= wxGridNoCellCoords
;
9487 m_selection
->ClearSelection();
9491 // This function returns the rectangle that encloses the given block
9492 // in device coords clipped to the client size of the grid window.
9494 wxRect
wxGrid::BlockToDeviceRect( const wxGridCellCoords
&topLeft
,
9495 const wxGridCellCoords
&bottomRight
)
9497 wxRect
rect( wxGridNoCellRect
);
9500 cellRect
= CellToRect( topLeft
);
9501 if ( cellRect
!= wxGridNoCellRect
)
9507 rect
= wxRect( 0, 0, 0, 0 );
9510 cellRect
= CellToRect( bottomRight
);
9511 if ( cellRect
!= wxGridNoCellRect
)
9517 return wxGridNoCellRect
;
9521 int left
= rect
.GetLeft();
9522 int top
= rect
.GetTop();
9523 int right
= rect
.GetRight();
9524 int bottom
= rect
.GetBottom();
9526 int leftCol
= topLeft
.GetCol();
9527 int topRow
= topLeft
.GetRow();
9528 int rightCol
= bottomRight
.GetCol();
9529 int bottomRow
= bottomRight
.GetRow();
9552 for ( j
= topRow
; j
<= bottomRow
; j
++ )
9554 for ( i
= leftCol
; i
<= rightCol
; i
++ )
9556 if ((j
==topRow
) || (j
==bottomRow
) || (i
==leftCol
) || (i
==rightCol
))
9558 cellRect
= CellToRect( j
, i
);
9560 if (cellRect
.x
< left
)
9562 if (cellRect
.y
< top
)
9564 if (cellRect
.x
+ cellRect
.width
> right
)
9565 right
= cellRect
.x
+ cellRect
.width
;
9566 if (cellRect
.y
+ cellRect
.height
> bottom
)
9567 bottom
= cellRect
.y
+ cellRect
.height
;
9569 else i
= rightCol
; // jump over inner cells.
9573 // convert to scrolled coords
9575 CalcScrolledPosition( left
, top
, &left
, &top
);
9576 CalcScrolledPosition( right
, bottom
, &right
, &bottom
);
9579 m_gridWin
->GetClientSize( &cw
, &ch
);
9581 if (right
< 0 || bottom
< 0 || left
> cw
|| top
> ch
)
9582 return wxRect( 0, 0, 0, 0);
9584 rect
.SetLeft( wxMax(0, left
) );
9585 rect
.SetTop( wxMax(0, top
) );
9586 rect
.SetRight( wxMin(cw
, right
) );
9587 rect
.SetBottom( wxMin(ch
, bottom
) );
9595 // ------ Grid event classes
9598 IMPLEMENT_DYNAMIC_CLASS( wxGridEvent
, wxNotifyEvent
)
9600 wxGridEvent::wxGridEvent( int id
, wxEventType type
, wxObject
* obj
,
9601 int row
, int col
, int x
, int y
, bool sel
,
9602 bool control
, bool shift
, bool alt
, bool meta
)
9603 : wxNotifyEvent( type
, id
)
9610 m_control
= control
;
9615 SetEventObject(obj
);
9619 IMPLEMENT_DYNAMIC_CLASS( wxGridSizeEvent
, wxNotifyEvent
)
9621 wxGridSizeEvent::wxGridSizeEvent( int id
, wxEventType type
, wxObject
* obj
,
9622 int rowOrCol
, int x
, int y
,
9623 bool control
, bool shift
, bool alt
, bool meta
)
9624 : wxNotifyEvent( type
, id
)
9626 m_rowOrCol
= rowOrCol
;
9629 m_control
= control
;
9634 SetEventObject(obj
);
9638 IMPLEMENT_DYNAMIC_CLASS( wxGridRangeSelectEvent
, wxNotifyEvent
)
9640 wxGridRangeSelectEvent::wxGridRangeSelectEvent(int id
, wxEventType type
, wxObject
* obj
,
9641 const wxGridCellCoords
& topLeft
,
9642 const wxGridCellCoords
& bottomRight
,
9643 bool sel
, bool control
,
9644 bool shift
, bool alt
, bool meta
)
9645 : wxNotifyEvent( type
, id
)
9647 m_topLeft
= topLeft
;
9648 m_bottomRight
= bottomRight
;
9650 m_control
= control
;
9655 SetEventObject(obj
);
9659 IMPLEMENT_DYNAMIC_CLASS(wxGridEditorCreatedEvent
, wxCommandEvent
)
9661 wxGridEditorCreatedEvent::wxGridEditorCreatedEvent(int id
, wxEventType type
,
9662 wxObject
* obj
, int row
,
9663 int col
, wxControl
* ctrl
)
9664 : wxCommandEvent(type
, id
)
9666 SetEventObject(obj
);
9673 #endif // !wxUSE_NEW_GRID/wxUSE_NEW_GRID
9675 #endif // wxUSE_GRID