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
)
3078 errmsg
.Printf(wxT("Called wxGridStringTable::DeleteRows(pos=%d, N=%d)\nPos value is invalid for present table with %d rows"),
3079 pos
, numRows
, curNumRows
);
3080 wxFAIL_MSG( errmsg
);
3084 if ( numRows
> curNumRows
- pos
)
3086 numRows
= curNumRows
- pos
;
3089 if ( numRows
>= curNumRows
)
3091 m_data
.Empty(); // don't release memory just yet
3095 m_data
.RemoveAt( pos
, numRows
);
3099 wxGridTableMessage
msg( this,
3100 wxGRIDTABLE_NOTIFY_ROWS_DELETED
,
3104 GetView()->ProcessTableMessage( msg
);
3110 bool wxGridStringTable::InsertCols( size_t pos
, size_t numCols
)
3114 size_t curNumRows
= m_data
.GetCount();
3115 size_t curNumCols
= ( curNumRows
> 0 ? m_data
[0].GetCount() :
3116 ( GetView() ? GetView()->GetNumberCols() : 0 ) );
3118 if ( pos
>= curNumCols
)
3120 return AppendCols( numCols
);
3123 for ( row
= 0; row
< curNumRows
; row
++ )
3125 for ( col
= pos
; col
< pos
+ numCols
; col
++ )
3127 m_data
[row
].Insert( wxEmptyString
, col
);
3132 wxGridTableMessage
msg( this,
3133 wxGRIDTABLE_NOTIFY_COLS_INSERTED
,
3137 GetView()->ProcessTableMessage( msg
);
3143 bool wxGridStringTable::AppendCols( size_t numCols
)
3147 size_t curNumRows
= m_data
.GetCount();
3151 // TODO: something better than this ?
3153 wxFAIL_MSG( wxT("Unable to append cols to a grid table with no rows.\nCall AppendRows() first") );
3158 for ( row
= 0; row
< curNumRows
; row
++ )
3160 m_data
[row
].Add( wxEmptyString
, numCols
);
3165 wxGridTableMessage
msg( this,
3166 wxGRIDTABLE_NOTIFY_COLS_APPENDED
,
3169 GetView()->ProcessTableMessage( msg
);
3175 bool wxGridStringTable::DeleteCols( size_t pos
, size_t numCols
)
3179 size_t curNumRows
= m_data
.GetCount();
3180 size_t curNumCols
= ( curNumRows
> 0 ? m_data
[0].GetCount() :
3181 ( GetView() ? GetView()->GetNumberCols() : 0 ) );
3183 if ( pos
>= curNumCols
)
3186 errmsg
.Printf( wxT("Called wxGridStringTable::DeleteCols(pos=%d, N=%d)...\nPos value is invalid for present table with %d cols"),
3187 pos
, numCols
, curNumCols
);
3188 wxFAIL_MSG( errmsg
);
3192 if ( numCols
> curNumCols
- pos
)
3194 numCols
= curNumCols
- pos
;
3197 for ( row
= 0; row
< curNumRows
; row
++ )
3199 if ( numCols
>= curNumCols
)
3201 m_data
[row
].Clear();
3205 m_data
[row
].RemoveAt( pos
, numCols
);
3210 wxGridTableMessage
msg( this,
3211 wxGRIDTABLE_NOTIFY_COLS_DELETED
,
3215 GetView()->ProcessTableMessage( msg
);
3221 wxString
wxGridStringTable::GetRowLabelValue( int row
)
3223 if ( row
> (int)(m_rowLabels
.GetCount()) - 1 )
3225 // using default label
3227 return wxGridTableBase::GetRowLabelValue( row
);
3231 return m_rowLabels
[ row
];
3235 wxString
wxGridStringTable::GetColLabelValue( int col
)
3237 if ( col
> (int)(m_colLabels
.GetCount()) - 1 )
3239 // using default label
3241 return wxGridTableBase::GetColLabelValue( col
);
3245 return m_colLabels
[ col
];
3249 void wxGridStringTable::SetRowLabelValue( int row
, const wxString
& value
)
3251 if ( row
> (int)(m_rowLabels
.GetCount()) - 1 )
3253 int n
= m_rowLabels
.GetCount();
3255 for ( i
= n
; i
<= row
; i
++ )
3257 m_rowLabels
.Add( wxGridTableBase::GetRowLabelValue(i
) );
3261 m_rowLabels
[row
] = value
;
3264 void wxGridStringTable::SetColLabelValue( int col
, const wxString
& value
)
3266 if ( col
> (int)(m_colLabels
.GetCount()) - 1 )
3268 int n
= m_colLabels
.GetCount();
3270 for ( i
= n
; i
<= col
; i
++ )
3272 m_colLabels
.Add( wxGridTableBase::GetColLabelValue(i
) );
3276 m_colLabels
[col
] = value
;
3281 //////////////////////////////////////////////////////////////////////
3282 //////////////////////////////////////////////////////////////////////
3284 IMPLEMENT_DYNAMIC_CLASS( wxGridRowLabelWindow
, wxWindow
)
3286 BEGIN_EVENT_TABLE( wxGridRowLabelWindow
, wxWindow
)
3287 EVT_PAINT( wxGridRowLabelWindow::OnPaint
)
3288 EVT_MOUSEWHEEL( wxGridRowLabelWindow::OnMouseWheel
)
3289 EVT_MOUSE_EVENTS( wxGridRowLabelWindow::OnMouseEvent
)
3290 EVT_KEY_DOWN( wxGridRowLabelWindow::OnKeyDown
)
3291 EVT_KEY_UP( wxGridRowLabelWindow::OnKeyUp
)
3294 wxGridRowLabelWindow::wxGridRowLabelWindow( wxGrid
*parent
,
3296 const wxPoint
&pos
, const wxSize
&size
)
3297 : wxWindow( parent
, id
, pos
, size
, wxWANTS_CHARS
)
3302 void wxGridRowLabelWindow::OnPaint( wxPaintEvent
& WXUNUSED(event
) )
3306 // NO - don't do this because it will set both the x and y origin
3307 // coords to match the parent scrolled window and we just want to
3308 // set the y coord - MB
3310 // m_owner->PrepareDC( dc );
3313 m_owner
->CalcUnscrolledPosition( 0, 0, &x
, &y
);
3314 dc
.SetDeviceOrigin( 0, -y
);
3316 wxArrayInt rows
= m_owner
->CalcRowLabelsExposed( GetUpdateRegion() );
3317 m_owner
->DrawRowLabels( dc
, rows
);
3321 void wxGridRowLabelWindow::OnMouseEvent( wxMouseEvent
& event
)
3323 m_owner
->ProcessRowLabelMouseEvent( event
);
3327 void wxGridRowLabelWindow::OnMouseWheel( wxMouseEvent
& event
)
3329 m_owner
->GetEventHandler()->ProcessEvent(event
);
3333 // This seems to be required for wxMotif otherwise the mouse
3334 // cursor must be in the cell edit control to get key events
3336 void wxGridRowLabelWindow::OnKeyDown( wxKeyEvent
& event
)
3338 if ( !m_owner
->GetEventHandler()->ProcessEvent( event
) ) event
.Skip();
3341 void wxGridRowLabelWindow::OnKeyUp( wxKeyEvent
& event
)
3343 if ( !m_owner
->GetEventHandler()->ProcessEvent( event
) ) event
.Skip();
3348 //////////////////////////////////////////////////////////////////////
3350 IMPLEMENT_DYNAMIC_CLASS( wxGridColLabelWindow
, wxWindow
)
3352 BEGIN_EVENT_TABLE( wxGridColLabelWindow
, wxWindow
)
3353 EVT_PAINT( wxGridColLabelWindow::OnPaint
)
3354 EVT_MOUSEWHEEL( wxGridColLabelWindow::OnMouseWheel
)
3355 EVT_MOUSE_EVENTS( wxGridColLabelWindow::OnMouseEvent
)
3356 EVT_KEY_DOWN( wxGridColLabelWindow::OnKeyDown
)
3357 EVT_KEY_UP( wxGridColLabelWindow::OnKeyUp
)
3360 wxGridColLabelWindow::wxGridColLabelWindow( wxGrid
*parent
,
3362 const wxPoint
&pos
, const wxSize
&size
)
3363 : wxWindow( parent
, id
, pos
, size
, wxWANTS_CHARS
)
3368 void wxGridColLabelWindow::OnPaint( wxPaintEvent
& WXUNUSED(event
) )
3372 // NO - don't do this because it will set both the x and y origin
3373 // coords to match the parent scrolled window and we just want to
3374 // set the x coord - MB
3376 // m_owner->PrepareDC( dc );
3379 m_owner
->CalcUnscrolledPosition( 0, 0, &x
, &y
);
3380 dc
.SetDeviceOrigin( -x
, 0 );
3382 wxArrayInt cols
= m_owner
->CalcColLabelsExposed( GetUpdateRegion() );
3383 m_owner
->DrawColLabels( dc
, cols
);
3387 void wxGridColLabelWindow::OnMouseEvent( wxMouseEvent
& event
)
3389 m_owner
->ProcessColLabelMouseEvent( event
);
3392 void wxGridColLabelWindow::OnMouseWheel( wxMouseEvent
& event
)
3394 m_owner
->GetEventHandler()->ProcessEvent(event
);
3398 // This seems to be required for wxMotif otherwise the mouse
3399 // cursor must be in the cell edit control to get key events
3401 void wxGridColLabelWindow::OnKeyDown( wxKeyEvent
& event
)
3403 if ( !m_owner
->GetEventHandler()->ProcessEvent( event
) ) event
.Skip();
3406 void wxGridColLabelWindow::OnKeyUp( wxKeyEvent
& event
)
3408 if ( !m_owner
->GetEventHandler()->ProcessEvent( event
) ) event
.Skip();
3413 //////////////////////////////////////////////////////////////////////
3415 IMPLEMENT_DYNAMIC_CLASS( wxGridCornerLabelWindow
, wxWindow
)
3417 BEGIN_EVENT_TABLE( wxGridCornerLabelWindow
, wxWindow
)
3418 EVT_MOUSEWHEEL( wxGridCornerLabelWindow::OnMouseWheel
)
3419 EVT_MOUSE_EVENTS( wxGridCornerLabelWindow::OnMouseEvent
)
3420 EVT_PAINT( wxGridCornerLabelWindow::OnPaint
)
3421 EVT_KEY_DOWN( wxGridCornerLabelWindow::OnKeyDown
)
3422 EVT_KEY_UP( wxGridCornerLabelWindow::OnKeyUp
)
3425 wxGridCornerLabelWindow::wxGridCornerLabelWindow( wxGrid
*parent
,
3427 const wxPoint
&pos
, const wxSize
&size
)
3428 : wxWindow( parent
, id
, pos
, size
, wxWANTS_CHARS
)
3433 void wxGridCornerLabelWindow::OnPaint( wxPaintEvent
& WXUNUSED(event
) )
3437 int client_height
= 0;
3438 int client_width
= 0;
3439 GetClientSize( &client_width
, &client_height
);
3441 dc
.SetPen( *wxBLACK_PEN
);
3442 dc
.DrawLine( client_width
-1, client_height
-1, client_width
-1, 0 );
3443 dc
.DrawLine( client_width
-1, client_height
-1, 0, client_height
-1 );
3445 dc
.SetPen( *wxWHITE_PEN
);
3446 dc
.DrawLine( 0, 0, client_width
, 0 );
3447 dc
.DrawLine( 0, 0, 0, client_height
);
3451 void wxGridCornerLabelWindow::OnMouseEvent( wxMouseEvent
& event
)
3453 m_owner
->ProcessCornerLabelMouseEvent( event
);
3457 void wxGridCornerLabelWindow::OnMouseWheel( wxMouseEvent
& event
)
3459 m_owner
->GetEventHandler()->ProcessEvent(event
);
3462 // This seems to be required for wxMotif otherwise the mouse
3463 // cursor must be in the cell edit control to get key events
3465 void wxGridCornerLabelWindow::OnKeyDown( wxKeyEvent
& event
)
3467 if ( !m_owner
->GetEventHandler()->ProcessEvent( event
) ) event
.Skip();
3470 void wxGridCornerLabelWindow::OnKeyUp( wxKeyEvent
& event
)
3472 if ( !m_owner
->GetEventHandler()->ProcessEvent( event
) ) event
.Skip();
3477 //////////////////////////////////////////////////////////////////////
3479 IMPLEMENT_DYNAMIC_CLASS( wxGridWindow
, wxWindow
)
3481 BEGIN_EVENT_TABLE( wxGridWindow
, wxWindow
)
3482 EVT_PAINT( wxGridWindow::OnPaint
)
3483 EVT_MOUSEWHEEL( wxGridWindow::OnMouseWheel
)
3484 EVT_MOUSE_EVENTS( wxGridWindow::OnMouseEvent
)
3485 EVT_KEY_DOWN( wxGridWindow::OnKeyDown
)
3486 EVT_KEY_UP( wxGridWindow::OnKeyUp
)
3487 EVT_ERASE_BACKGROUND( wxGridWindow::OnEraseBackground
)
3490 wxGridWindow::wxGridWindow( wxGrid
*parent
,
3491 wxGridRowLabelWindow
*rowLblWin
,
3492 wxGridColLabelWindow
*colLblWin
,
3493 wxWindowID id
, const wxPoint
&pos
, const wxSize
&size
)
3494 : wxWindow( parent
, id
, pos
, size
, wxWANTS_CHARS
, wxT("grid window") )
3497 m_rowLabelWin
= rowLblWin
;
3498 m_colLabelWin
= colLblWin
;
3499 SetBackgroundColour(_T("WHITE"));
3503 wxGridWindow::~wxGridWindow()
3508 void wxGridWindow::OnPaint( wxPaintEvent
&WXUNUSED(event
) )
3510 wxPaintDC
dc( this );
3511 m_owner
->PrepareDC( dc
);
3512 wxRegion reg
= GetUpdateRegion();
3513 wxGridCellCoordsArray DirtyCells
= m_owner
->CalcCellsExposed( reg
);
3514 m_owner
->DrawGridCellArea( dc
, DirtyCells
);
3515 #if WXGRID_DRAW_LINES
3516 m_owner
->DrawAllGridLines( dc
, reg
);
3518 m_owner
->DrawGridSpace( dc
);
3519 m_owner
->DrawHighlight( dc
, DirtyCells
);
3523 void wxGridWindow::ScrollWindow( int dx
, int dy
, const wxRect
*rect
)
3525 wxWindow::ScrollWindow( dx
, dy
, rect
);
3526 m_rowLabelWin
->ScrollWindow( 0, dy
, rect
);
3527 m_colLabelWin
->ScrollWindow( dx
, 0, rect
);
3531 void wxGridWindow::OnMouseEvent( wxMouseEvent
& event
)
3533 m_owner
->ProcessGridCellMouseEvent( event
);
3536 void wxGridWindow::OnMouseWheel( wxMouseEvent
& event
)
3538 m_owner
->GetEventHandler()->ProcessEvent(event
);
3541 // This seems to be required for wxMotif/wxGTK otherwise the mouse
3542 // cursor must be in the cell edit control to get key events
3544 void wxGridWindow::OnKeyDown( wxKeyEvent
& event
)
3546 if ( !m_owner
->GetEventHandler()->ProcessEvent( event
) ) event
.Skip();
3549 void wxGridWindow::OnKeyUp( wxKeyEvent
& event
)
3551 if ( !m_owner
->GetEventHandler()->ProcessEvent( event
) ) event
.Skip();
3554 void wxGridWindow::OnEraseBackground( wxEraseEvent
& WXUNUSED(event
) )
3559 //////////////////////////////////////////////////////////////////////
3561 // Internal Helper function for computing row or column from some
3562 // (unscrolled) coordinate value, using either
3563 // m_defaultRowHeight/m_defaultColWidth or binary search on array
3564 // of m_rowBottoms/m_ColRights to speed up the search!
3566 // Internal helper macros for simpler use of that function
3568 static int CoordToRowOrCol(int coord
, int defaultDist
, int minDist
,
3569 const wxArrayInt
& BorderArray
, bool maxOnOverflow
);
3571 #define internalXToCol(x) CoordToRowOrCol(x, m_defaultColWidth, \
3572 WXGRID_MIN_COL_WIDTH, \
3574 #define internalYToRow(y) CoordToRowOrCol(y, m_defaultRowHeight, \
3575 WXGRID_MIN_ROW_HEIGHT, \
3577 /////////////////////////////////////////////////////////////////////
3579 IMPLEMENT_DYNAMIC_CLASS( wxGrid
, wxScrolledWindow
)
3581 BEGIN_EVENT_TABLE( wxGrid
, wxScrolledWindow
)
3582 EVT_PAINT( wxGrid::OnPaint
)
3583 EVT_SIZE( wxGrid::OnSize
)
3584 EVT_KEY_DOWN( wxGrid::OnKeyDown
)
3585 EVT_KEY_UP( wxGrid::OnKeyUp
)
3586 EVT_ERASE_BACKGROUND( wxGrid::OnEraseBackground
)
3589 wxGrid::wxGrid( wxWindow
*parent
,
3594 const wxString
& name
)
3595 : wxScrolledWindow( parent
, id
, pos
, size
, (style
| wxWANTS_CHARS
), name
),
3596 m_colMinWidths(GRID_HASH_SIZE
),
3597 m_rowMinHeights(GRID_HASH_SIZE
)
3605 // Must do this or ~wxScrollHelper will pop the wrong event handler
3606 SetTargetWindow(this);
3608 wxSafeDecRef(m_defaultCellAttr
);
3610 #ifdef DEBUG_ATTR_CACHE
3611 size_t total
= gs_nAttrCacheHits
+ gs_nAttrCacheMisses
;
3612 wxPrintf(_T("wxGrid attribute cache statistics: "
3613 "total: %u, hits: %u (%u%%)\n"),
3614 total
, gs_nAttrCacheHits
,
3615 total
? (gs_nAttrCacheHits
*100) / total
: 0);
3621 delete m_typeRegistry
;
3627 // ----- internal init and update functions
3630 void wxGrid::Create()
3632 m_created
= FALSE
; // set to TRUE by CreateGrid
3634 m_table
= (wxGridTableBase
*) NULL
;
3637 m_cellEditCtrlEnabled
= FALSE
;
3639 m_defaultCellAttr
= new wxGridCellAttr();
3641 // Set default cell attributes
3642 m_defaultCellAttr
->SetDefAttr(m_defaultCellAttr
);
3643 m_defaultCellAttr
->SetKind(wxGridCellAttr::Default
);
3644 m_defaultCellAttr
->SetFont(GetFont());
3645 m_defaultCellAttr
->SetAlignment(wxALIGN_LEFT
, wxALIGN_TOP
);
3646 m_defaultCellAttr
->SetTextColour(
3647 wxSystemSettings::GetColour(wxSYS_COLOUR_WINDOWTEXT
));
3648 m_defaultCellAttr
->SetBackgroundColour(
3649 wxSystemSettings::GetColour(wxSYS_COLOUR_WINDOW
));
3650 m_defaultCellAttr
->SetRenderer(new wxGridCellStringRenderer
);
3651 m_defaultCellAttr
->SetEditor(new wxGridCellTextEditor
);
3656 m_currentCellCoords
= wxGridNoCellCoords
;
3658 m_rowLabelWidth
= WXGRID_DEFAULT_ROW_LABEL_WIDTH
;
3659 m_colLabelHeight
= WXGRID_DEFAULT_COL_LABEL_HEIGHT
;
3661 // create the type registry
3662 m_typeRegistry
= new wxGridTypeRegistry
;
3665 // subwindow components that make up the wxGrid
3666 m_cornerLabelWin
= new wxGridCornerLabelWindow( this,
3671 m_rowLabelWin
= new wxGridRowLabelWindow( this,
3676 m_colLabelWin
= new wxGridColLabelWindow( this,
3681 m_gridWin
= new wxGridWindow( this,
3688 SetTargetWindow( m_gridWin
);
3694 bool wxGrid::CreateGrid( int numRows
, int numCols
,
3695 wxGrid::wxGridSelectionModes selmode
)
3697 wxCHECK_MSG( !m_created
,
3699 wxT("wxGrid::CreateGrid or wxGrid::SetTable called more than once") );
3701 m_numRows
= numRows
;
3702 m_numCols
= numCols
;
3704 m_table
= new wxGridStringTable( m_numRows
, m_numCols
);
3705 m_table
->SetView( this );
3707 m_selection
= new wxGridSelection( this, selmode
);
3716 void wxGrid::SetSelectionMode(wxGrid::wxGridSelectionModes selmode
)
3718 wxCHECK_RET( m_created
,
3719 wxT("Called wxGrid::SetSelectionMode() before calling CreateGrid()") );
3721 m_selection
->SetSelectionMode( selmode
);
3724 wxGrid::wxGridSelectionModes
wxGrid::GetSelectionMode() const
3726 wxCHECK_MSG( m_created
, wxGrid::wxGridSelectCells
,
3727 wxT("Called wxGrid::GetSelectionMode() before calling CreateGrid()") );
3729 return m_selection
->GetSelectionMode();
3732 bool wxGrid::SetTable( wxGridTableBase
*table
, bool takeOwnership
,
3733 wxGrid::wxGridSelectionModes selmode
)
3737 // RD: Actually, this should probably be allowed. I think it would be
3738 // nice to be able to switch multiple Tables in and out of a single
3739 // View at runtime. Is there anything in the implementation that
3740 // would prevent this?
3742 // At least, you now have to cope with m_selection
3743 wxFAIL_MSG( wxT("wxGrid::CreateGrid or wxGrid::SetTable called more than once") );
3748 m_numRows
= table
->GetNumberRows();
3749 m_numCols
= table
->GetNumberCols();
3752 m_table
->SetView( this );
3755 m_selection
= new wxGridSelection( this, selmode
);
3768 m_rowLabelWidth
= WXGRID_DEFAULT_ROW_LABEL_WIDTH
;
3769 m_colLabelHeight
= WXGRID_DEFAULT_COL_LABEL_HEIGHT
;
3771 if ( m_rowLabelWin
)
3773 m_labelBackgroundColour
= m_rowLabelWin
->GetBackgroundColour();
3777 m_labelBackgroundColour
= wxColour( _T("WHITE") );
3780 m_labelTextColour
= wxColour( _T("BLACK") );
3783 m_attrCache
.row
= -1;
3785 // TODO: something better than this ?
3787 m_labelFont
= this->GetFont();
3788 m_labelFont
.SetWeight( m_labelFont
.GetWeight() + 2 );
3790 m_rowLabelHorizAlign
= wxALIGN_LEFT
;
3791 m_rowLabelVertAlign
= wxALIGN_CENTRE
;
3793 m_colLabelHorizAlign
= wxALIGN_CENTRE
;
3794 m_colLabelVertAlign
= wxALIGN_TOP
;
3796 m_defaultColWidth
= WXGRID_DEFAULT_COL_WIDTH
;
3797 m_defaultRowHeight
= m_gridWin
->GetCharHeight();
3799 #if defined(__WXMOTIF__) || defined(__WXGTK__) // see also text ctrl sizing in ShowCellEditControl()
3800 m_defaultRowHeight
+= 8;
3802 m_defaultRowHeight
+= 4;
3805 m_gridLineColour
= wxColour( 128, 128, 255 );
3806 m_gridLinesEnabled
= TRUE
;
3807 m_cellHighlightColour
= m_gridLineColour
;
3808 m_cellHighlightPenWidth
= 2;
3809 m_cellHighlightROPenWidth
= 1;
3811 m_cursorMode
= WXGRID_CURSOR_SELECT_CELL
;
3812 m_winCapture
= (wxWindow
*)NULL
;
3813 m_canDragRowSize
= TRUE
;
3814 m_canDragColSize
= TRUE
;
3815 m_canDragGridSize
= TRUE
;
3817 m_dragRowOrCol
= -1;
3818 m_isDragging
= FALSE
;
3819 m_startDragPos
= wxDefaultPosition
;
3821 m_waitForSlowClick
= FALSE
;
3823 m_rowResizeCursor
= wxCursor( wxCURSOR_SIZENS
);
3824 m_colResizeCursor
= wxCursor( wxCURSOR_SIZEWE
);
3826 m_currentCellCoords
= wxGridNoCellCoords
;
3828 m_selectingTopLeft
= wxGridNoCellCoords
;
3829 m_selectingBottomRight
= wxGridNoCellCoords
;
3830 m_selectionBackground
= wxSystemSettings::GetColour(wxSYS_COLOUR_HIGHLIGHT
);
3831 m_selectionForeground
= wxSystemSettings::GetColour(wxSYS_COLOUR_HIGHLIGHTTEXT
);
3833 m_editable
= TRUE
; // default for whole grid
3835 m_inOnKeyDown
= FALSE
;
3842 // ----------------------------------------------------------------------------
3843 // the idea is to call these functions only when necessary because they create
3844 // quite big arrays which eat memory mostly unnecessary - in particular, if
3845 // default widths/heights are used for all rows/columns, we may not use these
3848 // with some extra code, it should be possible to only store the
3849 // widths/heights different from default ones but this will be done later...
3850 // ----------------------------------------------------------------------------
3852 void wxGrid::InitRowHeights()
3854 m_rowHeights
.Empty();
3855 m_rowBottoms
.Empty();
3857 m_rowHeights
.Alloc( m_numRows
);
3858 m_rowBottoms
.Alloc( m_numRows
);
3862 m_rowHeights
.Add( m_defaultRowHeight
, m_numRows
);
3864 for ( int i
= 0; i
< m_numRows
; i
++ )
3866 rowBottom
+= m_defaultRowHeight
;
3867 m_rowBottoms
.Add( rowBottom
);
3871 void wxGrid::InitColWidths()
3873 m_colWidths
.Empty();
3874 m_colRights
.Empty();
3876 m_colWidths
.Alloc( m_numCols
);
3877 m_colRights
.Alloc( m_numCols
);
3880 m_colWidths
.Add( m_defaultColWidth
, m_numCols
);
3882 for ( int i
= 0; i
< m_numCols
; i
++ )
3884 colRight
+= m_defaultColWidth
;
3885 m_colRights
.Add( colRight
);
3889 int wxGrid::GetColWidth(int col
) const
3891 return m_colWidths
.IsEmpty() ? m_defaultColWidth
: m_colWidths
[col
];
3894 int wxGrid::GetColLeft(int col
) const
3896 return m_colRights
.IsEmpty() ? col
* m_defaultColWidth
3897 : m_colRights
[col
] - m_colWidths
[col
];
3900 int wxGrid::GetColRight(int col
) const
3902 return m_colRights
.IsEmpty() ? (col
+ 1) * m_defaultColWidth
3906 int wxGrid::GetRowHeight(int row
) const
3908 return m_rowHeights
.IsEmpty() ? m_defaultRowHeight
: m_rowHeights
[row
];
3911 int wxGrid::GetRowTop(int row
) const
3913 return m_rowBottoms
.IsEmpty() ? row
* m_defaultRowHeight
3914 : m_rowBottoms
[row
] - m_rowHeights
[row
];
3917 int wxGrid::GetRowBottom(int row
) const
3919 return m_rowBottoms
.IsEmpty() ? (row
+ 1) * m_defaultRowHeight
3920 : m_rowBottoms
[row
];
3923 void wxGrid::CalcDimensions()
3926 GetClientSize( &cw
, &ch
);
3928 if ( m_rowLabelWin
->IsShown() )
3929 cw
-= m_rowLabelWidth
;
3930 if ( m_colLabelWin
->IsShown() )
3931 ch
-= m_colLabelHeight
;
3934 int w
= m_numCols
> 0 ? GetColRight(m_numCols
- 1) + m_extraWidth
+ 1 : 0;
3935 int h
= m_numRows
> 0 ? GetRowBottom(m_numRows
- 1) + m_extraHeight
+ 1 : 0;
3937 // preserve (more or less) the previous position
3939 GetViewStart( &x
, &y
);
3941 // maybe we don't need scrollbars at all?
3943 // also adjust the position to be valid for the new scroll rangs
3964 // do set scrollbar parameters
3965 SetScrollbars( GRID_SCROLL_LINE_X
, GRID_SCROLL_LINE_Y
,
3966 GetScrollX(w
), GetScrollY(h
), x
, y
,
3967 GetBatchCount() != 0);
3969 // if our OnSize() hadn't been called (it would if we have scrollbars), we
3970 // still must reposition the children
3975 void wxGrid::CalcWindowSizes()
3978 GetClientSize( &cw
, &ch
);
3980 if ( m_cornerLabelWin
->IsShown() )
3981 m_cornerLabelWin
->SetSize( 0, 0, m_rowLabelWidth
, m_colLabelHeight
);
3983 if ( m_colLabelWin
->IsShown() )
3984 m_colLabelWin
->SetSize( m_rowLabelWidth
, 0, cw
-m_rowLabelWidth
, m_colLabelHeight
);
3986 if ( m_rowLabelWin
->IsShown() )
3987 m_rowLabelWin
->SetSize( 0, m_colLabelHeight
, m_rowLabelWidth
, ch
-m_colLabelHeight
);
3989 if ( m_gridWin
->IsShown() )
3990 m_gridWin
->SetSize( m_rowLabelWidth
, m_colLabelHeight
, cw
-m_rowLabelWidth
, ch
-m_colLabelHeight
);
3994 // this is called when the grid table sends a message to say that it
3995 // has been redimensioned
3997 bool wxGrid::Redimension( wxGridTableMessage
& msg
)
4000 bool result
= FALSE
;
4002 // Clear the attribute cache as the attribute might refer to a different
4003 // cell than stored in the cache after adding/removing rows/columns.
4005 // By the same reasoning, the editor should be dismissed if columns are
4006 // added or removed. And for consistency, it should IMHO always be
4007 // removed, not only if the cell "underneath" it actually changes.
4008 // For now, I intentionally do not save the editor's content as the
4009 // cell it might want to save that stuff to might no longer exist.
4010 DisableCellEditControl();
4012 // if we were using the default widths/heights so far, we must change them
4014 if ( m_colWidths
.IsEmpty() )
4019 if ( m_rowHeights
.IsEmpty() )
4025 switch ( msg
.GetId() )
4027 case wxGRIDTABLE_NOTIFY_ROWS_INSERTED
:
4029 size_t pos
= msg
.GetCommandInt();
4030 int numRows
= msg
.GetCommandInt2();
4032 m_numRows
+= numRows
;
4034 if ( !m_rowHeights
.IsEmpty() )
4036 m_rowHeights
.Insert( m_defaultRowHeight
, pos
, numRows
);
4037 m_rowBottoms
.Insert( 0, pos
, numRows
);
4040 if ( pos
> 0 ) bottom
= m_rowBottoms
[pos
-1];
4042 for ( i
= pos
; i
< m_numRows
; i
++ )
4044 bottom
+= m_rowHeights
[i
];
4045 m_rowBottoms
[i
] = bottom
;
4048 if ( m_currentCellCoords
== wxGridNoCellCoords
)
4050 // if we have just inserted cols into an empty grid the current
4051 // cell will be undefined...
4053 SetCurrentCell( 0, 0 );
4057 m_selection
->UpdateRows( pos
, numRows
);
4058 wxGridCellAttrProvider
* attrProvider
= m_table
->GetAttrProvider();
4060 attrProvider
->UpdateAttrRows( pos
, numRows
);
4062 if ( !GetBatchCount() )
4065 m_rowLabelWin
->Refresh();
4071 case wxGRIDTABLE_NOTIFY_ROWS_APPENDED
:
4073 int numRows
= msg
.GetCommandInt();
4074 int oldNumRows
= m_numRows
;
4075 m_numRows
+= numRows
;
4077 if ( !m_rowHeights
.IsEmpty() )
4079 m_rowHeights
.Add( m_defaultRowHeight
, numRows
);
4080 m_rowBottoms
.Add( 0, numRows
);
4083 if ( oldNumRows
> 0 ) bottom
= m_rowBottoms
[oldNumRows
-1];
4085 for ( i
= oldNumRows
; i
< m_numRows
; i
++ )
4087 bottom
+= m_rowHeights
[i
];
4088 m_rowBottoms
[i
] = bottom
;
4091 if ( m_currentCellCoords
== wxGridNoCellCoords
)
4093 // if we have just inserted cols into an empty grid the current
4094 // cell will be undefined...
4096 SetCurrentCell( 0, 0 );
4098 if ( !GetBatchCount() )
4101 m_rowLabelWin
->Refresh();
4107 case wxGRIDTABLE_NOTIFY_ROWS_DELETED
:
4109 size_t pos
= msg
.GetCommandInt();
4110 int numRows
= msg
.GetCommandInt2();
4111 m_numRows
-= numRows
;
4113 if ( !m_rowHeights
.IsEmpty() )
4115 m_rowHeights
.RemoveAt( pos
, numRows
);
4116 m_rowBottoms
.RemoveAt( pos
, numRows
);
4119 for ( i
= 0; i
< m_numRows
; i
++ )
4121 h
+= m_rowHeights
[i
];
4122 m_rowBottoms
[i
] = h
;
4127 m_currentCellCoords
= wxGridNoCellCoords
;
4131 if ( m_currentCellCoords
.GetRow() >= m_numRows
)
4132 m_currentCellCoords
.Set( 0, 0 );
4136 m_selection
->UpdateRows( pos
, -((int)numRows
) );
4137 wxGridCellAttrProvider
* attrProvider
= m_table
->GetAttrProvider();
4139 attrProvider
->UpdateAttrRows( pos
, -((int)numRows
) );
4140 // ifdef'd out following patch from Paul Gammans
4142 // No need to touch column attributes, unless we
4143 // removed _all_ rows, in this case, we remove
4144 // all column attributes.
4145 // I hate to do this here, but the
4146 // needed data is not available inside UpdateAttrRows.
4147 if ( !GetNumberRows() )
4148 attrProvider
->UpdateAttrCols( 0, -GetNumberCols() );
4151 if ( !GetBatchCount() )
4154 m_rowLabelWin
->Refresh();
4160 case wxGRIDTABLE_NOTIFY_COLS_INSERTED
:
4162 size_t pos
= msg
.GetCommandInt();
4163 int numCols
= msg
.GetCommandInt2();
4164 m_numCols
+= numCols
;
4166 if ( !m_colWidths
.IsEmpty() )
4168 m_colWidths
.Insert( m_defaultColWidth
, pos
, numCols
);
4169 m_colRights
.Insert( 0, pos
, numCols
);
4172 if ( pos
> 0 ) right
= m_colRights
[pos
-1];
4174 for ( i
= pos
; i
< m_numCols
; i
++ )
4176 right
+= m_colWidths
[i
];
4177 m_colRights
[i
] = right
;
4180 if ( m_currentCellCoords
== wxGridNoCellCoords
)
4182 // if we have just inserted cols into an empty grid the current
4183 // cell will be undefined...
4185 SetCurrentCell( 0, 0 );
4189 m_selection
->UpdateCols( pos
, numCols
);
4190 wxGridCellAttrProvider
* attrProvider
= m_table
->GetAttrProvider();
4192 attrProvider
->UpdateAttrCols( pos
, numCols
);
4193 if ( !GetBatchCount() )
4196 m_colLabelWin
->Refresh();
4203 case wxGRIDTABLE_NOTIFY_COLS_APPENDED
:
4205 int numCols
= msg
.GetCommandInt();
4206 int oldNumCols
= m_numCols
;
4207 m_numCols
+= numCols
;
4208 if ( !m_colWidths
.IsEmpty() )
4210 m_colWidths
.Add( m_defaultColWidth
, numCols
);
4211 m_colRights
.Add( 0, numCols
);
4214 if ( oldNumCols
> 0 ) right
= m_colRights
[oldNumCols
-1];
4216 for ( i
= oldNumCols
; i
< m_numCols
; i
++ )
4218 right
+= m_colWidths
[i
];
4219 m_colRights
[i
] = right
;
4222 if ( m_currentCellCoords
== wxGridNoCellCoords
)
4224 // if we have just inserted cols into an empty grid the current
4225 // cell will be undefined...
4227 SetCurrentCell( 0, 0 );
4229 if ( !GetBatchCount() )
4232 m_colLabelWin
->Refresh();
4238 case wxGRIDTABLE_NOTIFY_COLS_DELETED
:
4240 size_t pos
= msg
.GetCommandInt();
4241 int numCols
= msg
.GetCommandInt2();
4242 m_numCols
-= numCols
;
4244 if ( !m_colWidths
.IsEmpty() )
4246 m_colWidths
.RemoveAt( pos
, numCols
);
4247 m_colRights
.RemoveAt( pos
, numCols
);
4250 for ( i
= 0; i
< m_numCols
; i
++ )
4252 w
+= m_colWidths
[i
];
4258 m_currentCellCoords
= wxGridNoCellCoords
;
4262 if ( m_currentCellCoords
.GetCol() >= m_numCols
)
4263 m_currentCellCoords
.Set( 0, 0 );
4267 m_selection
->UpdateCols( pos
, -((int)numCols
) );
4268 wxGridCellAttrProvider
* attrProvider
= m_table
->GetAttrProvider();
4270 attrProvider
->UpdateAttrCols( pos
, -((int)numCols
) );
4271 // ifdef'd out following patch from Paul Gammans
4273 // No need to touch row attributes, unless we
4274 // removed _all_ columns, in this case, we remove
4275 // all row attributes.
4276 // I hate to do this here, but the
4277 // needed data is not available inside UpdateAttrCols.
4278 if ( !GetNumberCols() )
4279 attrProvider
->UpdateAttrRows( 0, -GetNumberRows() );
4282 if ( !GetBatchCount() )
4285 m_colLabelWin
->Refresh();
4292 if (result
&& !GetBatchCount() )
4293 m_gridWin
->Refresh();
4298 wxArrayInt
wxGrid::CalcRowLabelsExposed( const wxRegion
& reg
)
4300 wxRegionIterator
iter( reg
);
4303 wxArrayInt rowlabels
;
4310 // TODO: remove this when we can...
4311 // There is a bug in wxMotif that gives garbage update
4312 // rectangles if you jump-scroll a long way by clicking the
4313 // scrollbar with middle button. This is a work-around
4315 #if defined(__WXMOTIF__)
4317 m_gridWin
->GetClientSize( &cw
, &ch
);
4318 if ( r
.GetTop() > ch
) r
.SetTop( 0 );
4319 r
.SetBottom( wxMin( r
.GetBottom(), ch
) );
4322 // logical bounds of update region
4325 CalcUnscrolledPosition( 0, r
.GetTop(), &dummy
, &top
);
4326 CalcUnscrolledPosition( 0, r
.GetBottom(), &dummy
, &bottom
);
4328 // find the row labels within these bounds
4331 for ( row
= internalYToRow(top
); row
< m_numRows
; row
++ )
4333 if ( GetRowBottom(row
) < top
)
4336 if ( GetRowTop(row
) > bottom
)
4339 rowlabels
.Add( row
);
4349 wxArrayInt
wxGrid::CalcColLabelsExposed( const wxRegion
& reg
)
4351 wxRegionIterator
iter( reg
);
4354 wxArrayInt colLabels
;
4361 // TODO: remove this when we can...
4362 // There is a bug in wxMotif that gives garbage update
4363 // rectangles if you jump-scroll a long way by clicking the
4364 // scrollbar with middle button. This is a work-around
4366 #if defined(__WXMOTIF__)
4368 m_gridWin
->GetClientSize( &cw
, &ch
);
4369 if ( r
.GetLeft() > cw
) r
.SetLeft( 0 );
4370 r
.SetRight( wxMin( r
.GetRight(), cw
) );
4373 // logical bounds of update region
4376 CalcUnscrolledPosition( r
.GetLeft(), 0, &left
, &dummy
);
4377 CalcUnscrolledPosition( r
.GetRight(), 0, &right
, &dummy
);
4379 // find the cells within these bounds
4382 for ( col
= internalXToCol(left
); col
< m_numCols
; col
++ )
4384 if ( GetColRight(col
) < left
)
4387 if ( GetColLeft(col
) > right
)
4390 colLabels
.Add( col
);
4399 wxGridCellCoordsArray
wxGrid::CalcCellsExposed( const wxRegion
& reg
)
4401 wxRegionIterator
iter( reg
);
4404 wxGridCellCoordsArray cellsExposed
;
4406 int left
, top
, right
, bottom
;
4411 // TODO: remove this when we can...
4412 // There is a bug in wxMotif that gives garbage update
4413 // rectangles if you jump-scroll a long way by clicking the
4414 // scrollbar with middle button. This is a work-around
4416 #if defined(__WXMOTIF__)
4418 m_gridWin
->GetClientSize( &cw
, &ch
);
4419 if ( r
.GetTop() > ch
) r
.SetTop( 0 );
4420 if ( r
.GetLeft() > cw
) r
.SetLeft( 0 );
4421 r
.SetRight( wxMin( r
.GetRight(), cw
) );
4422 r
.SetBottom( wxMin( r
.GetBottom(), ch
) );
4425 // logical bounds of update region
4427 CalcUnscrolledPosition( r
.GetLeft(), r
.GetTop(), &left
, &top
);
4428 CalcUnscrolledPosition( r
.GetRight(), r
.GetBottom(), &right
, &bottom
);
4430 // find the cells within these bounds
4433 for ( row
= internalYToRow(top
); row
< m_numRows
; row
++ )
4435 if ( GetRowBottom(row
) <= top
)
4438 if ( GetRowTop(row
) > bottom
)
4441 for ( col
= internalXToCol(left
); col
< m_numCols
; col
++ )
4443 if ( GetColRight(col
) <= left
)
4446 if ( GetColLeft(col
) > right
)
4449 cellsExposed
.Add( wxGridCellCoords( row
, col
) );
4456 return cellsExposed
;
4460 void wxGrid::ProcessRowLabelMouseEvent( wxMouseEvent
& event
)
4463 wxPoint
pos( event
.GetPosition() );
4464 CalcUnscrolledPosition( pos
.x
, pos
.y
, &x
, &y
);
4466 if ( event
.Dragging() )
4470 m_isDragging
= TRUE
;
4471 m_rowLabelWin
->CaptureMouse();
4474 if ( event
.LeftIsDown() )
4476 switch( m_cursorMode
)
4478 case WXGRID_CURSOR_RESIZE_ROW
:
4480 int cw
, ch
, left
, dummy
;
4481 m_gridWin
->GetClientSize( &cw
, &ch
);
4482 CalcUnscrolledPosition( 0, 0, &left
, &dummy
);
4484 wxClientDC
dc( m_gridWin
);
4487 GetRowTop(m_dragRowOrCol
) +
4488 GetRowMinimalHeight(m_dragRowOrCol
) );
4489 dc
.SetLogicalFunction(wxINVERT
);
4490 if ( m_dragLastPos
>= 0 )
4492 dc
.DrawLine( left
, m_dragLastPos
, left
+cw
, m_dragLastPos
);
4494 dc
.DrawLine( left
, y
, left
+cw
, y
);
4499 case WXGRID_CURSOR_SELECT_ROW
:
4500 if ( (row
= YToRow( y
)) >= 0 )
4504 m_selection
->SelectRow( row
,
4505 event
.ControlDown(),
4512 // default label to suppress warnings about "enumeration value
4513 // 'xxx' not handled in switch
4521 if ( m_isDragging
&& (event
.Entering() || event
.Leaving()) )
4526 if (m_rowLabelWin
->HasCapture()) m_rowLabelWin
->ReleaseMouse();
4527 m_isDragging
= FALSE
;
4530 // ------------ Entering or leaving the window
4532 if ( event
.Entering() || event
.Leaving() )
4534 ChangeCursorMode(WXGRID_CURSOR_SELECT_CELL
, m_rowLabelWin
);
4538 // ------------ Left button pressed
4540 else if ( event
.LeftDown() )
4542 // don't send a label click event for a hit on the
4543 // edge of the row label - this is probably the user
4544 // wanting to resize the row
4546 if ( YToEdgeOfRow(y
) < 0 )
4550 !SendEvent( wxEVT_GRID_LABEL_LEFT_CLICK
, row
, -1, event
) )
4552 if ( !event
.ShiftDown() && !event
.ControlDown() )
4554 else if ( m_selection
)
4556 if ( event
.ShiftDown() )
4558 m_selection
->SelectBlock( m_currentCellCoords
.GetRow(),
4561 GetNumberCols() - 1,
4562 event
.ControlDown(),
4569 m_selection
->SelectRow( row
,
4570 event
.ControlDown(),
4577 ChangeCursorMode(WXGRID_CURSOR_SELECT_ROW
, m_rowLabelWin
);
4582 // starting to drag-resize a row
4584 if ( CanDragRowSize() )
4585 ChangeCursorMode(WXGRID_CURSOR_RESIZE_ROW
, m_rowLabelWin
);
4590 // ------------ Left double click
4592 else if (event
.LeftDClick() )
4594 if ( YToEdgeOfRow(y
) < 0 )
4597 SendEvent( wxEVT_GRID_LABEL_LEFT_DCLICK
, row
, -1, event
);
4602 // ------------ Left button released
4604 else if ( event
.LeftUp() )
4606 if ( m_cursorMode
== WXGRID_CURSOR_RESIZE_ROW
)
4608 DoEndDragResizeRow();
4610 // Note: we are ending the event *after* doing
4611 // default processing in this case
4613 SendEvent( wxEVT_GRID_ROW_SIZE
, m_dragRowOrCol
, -1, event
);
4616 ChangeCursorMode(WXGRID_CURSOR_SELECT_CELL
, m_rowLabelWin
);
4621 // ------------ Right button down
4623 else if ( event
.RightDown() )
4626 if ( !SendEvent( wxEVT_GRID_LABEL_RIGHT_CLICK
, row
, -1, event
) )
4628 // no default action at the moment
4633 // ------------ Right double click
4635 else if ( event
.RightDClick() )
4638 if ( !SendEvent( wxEVT_GRID_LABEL_RIGHT_DCLICK
, row
, -1, event
) )
4640 // no default action at the moment
4645 // ------------ No buttons down and mouse moving
4647 else if ( event
.Moving() )
4649 m_dragRowOrCol
= YToEdgeOfRow( y
);
4650 if ( m_dragRowOrCol
>= 0 )
4652 if ( m_cursorMode
== WXGRID_CURSOR_SELECT_CELL
)
4654 // don't capture the mouse yet
4655 if ( CanDragRowSize() )
4656 ChangeCursorMode(WXGRID_CURSOR_RESIZE_ROW
, m_rowLabelWin
, FALSE
);
4659 else if ( m_cursorMode
!= WXGRID_CURSOR_SELECT_CELL
)
4661 ChangeCursorMode(WXGRID_CURSOR_SELECT_CELL
, m_rowLabelWin
, FALSE
);
4667 void wxGrid::ProcessColLabelMouseEvent( wxMouseEvent
& event
)
4670 wxPoint
pos( event
.GetPosition() );
4671 CalcUnscrolledPosition( pos
.x
, pos
.y
, &x
, &y
);
4673 if ( event
.Dragging() )
4677 m_isDragging
= TRUE
;
4678 m_colLabelWin
->CaptureMouse();
4681 if ( event
.LeftIsDown() )
4683 switch( m_cursorMode
)
4685 case WXGRID_CURSOR_RESIZE_COL
:
4687 int cw
, ch
, dummy
, top
;
4688 m_gridWin
->GetClientSize( &cw
, &ch
);
4689 CalcUnscrolledPosition( 0, 0, &dummy
, &top
);
4691 wxClientDC
dc( m_gridWin
);
4694 x
= wxMax( x
, GetColLeft(m_dragRowOrCol
) +
4695 GetColMinimalWidth(m_dragRowOrCol
));
4696 dc
.SetLogicalFunction(wxINVERT
);
4697 if ( m_dragLastPos
>= 0 )
4699 dc
.DrawLine( m_dragLastPos
, top
, m_dragLastPos
, top
+ch
);
4701 dc
.DrawLine( x
, top
, x
, top
+ch
);
4706 case WXGRID_CURSOR_SELECT_COL
:
4707 if ( (col
= XToCol( x
)) >= 0 )
4711 m_selection
->SelectCol( col
,
4712 event
.ControlDown(),
4719 // default label to suppress warnings about "enumeration value
4720 // 'xxx' not handled in switch
4728 if ( m_isDragging
&& (event
.Entering() || event
.Leaving()) )
4733 if (m_colLabelWin
->HasCapture()) m_colLabelWin
->ReleaseMouse();
4734 m_isDragging
= FALSE
;
4737 // ------------ Entering or leaving the window
4739 if ( event
.Entering() || event
.Leaving() )
4741 ChangeCursorMode(WXGRID_CURSOR_SELECT_CELL
, m_colLabelWin
);
4745 // ------------ Left button pressed
4747 else if ( event
.LeftDown() )
4749 // don't send a label click event for a hit on the
4750 // edge of the col label - this is probably the user
4751 // wanting to resize the col
4753 if ( XToEdgeOfCol(x
) < 0 )
4757 !SendEvent( wxEVT_GRID_LABEL_LEFT_CLICK
, -1, col
, event
) )
4759 if ( !event
.ShiftDown() && !event
.ControlDown() )
4763 if ( event
.ShiftDown() )
4765 m_selection
->SelectBlock( 0,
4766 m_currentCellCoords
.GetCol(),
4767 GetNumberRows() - 1, col
,
4768 event
.ControlDown(),
4775 m_selection
->SelectCol( col
,
4776 event
.ControlDown(),
4783 ChangeCursorMode(WXGRID_CURSOR_SELECT_COL
, m_colLabelWin
);
4788 // starting to drag-resize a col
4790 if ( CanDragColSize() )
4791 ChangeCursorMode(WXGRID_CURSOR_RESIZE_COL
, m_colLabelWin
);
4796 // ------------ Left double click
4798 if ( event
.LeftDClick() )
4800 if ( XToEdgeOfCol(x
) < 0 )
4803 SendEvent( wxEVT_GRID_LABEL_LEFT_DCLICK
, -1, col
, event
);
4808 // ------------ Left button released
4810 else if ( event
.LeftUp() )
4812 if ( m_cursorMode
== WXGRID_CURSOR_RESIZE_COL
)
4814 DoEndDragResizeCol();
4816 // Note: we are ending the event *after* doing
4817 // default processing in this case
4819 SendEvent( wxEVT_GRID_COL_SIZE
, -1, m_dragRowOrCol
, event
);
4822 ChangeCursorMode(WXGRID_CURSOR_SELECT_CELL
, m_colLabelWin
);
4827 // ------------ Right button down
4829 else if ( event
.RightDown() )
4832 if ( !SendEvent( wxEVT_GRID_LABEL_RIGHT_CLICK
, -1, col
, event
) )
4834 // no default action at the moment
4839 // ------------ Right double click
4841 else if ( event
.RightDClick() )
4844 if ( !SendEvent( wxEVT_GRID_LABEL_RIGHT_DCLICK
, -1, col
, event
) )
4846 // no default action at the moment
4851 // ------------ No buttons down and mouse moving
4853 else if ( event
.Moving() )
4855 m_dragRowOrCol
= XToEdgeOfCol( x
);
4856 if ( m_dragRowOrCol
>= 0 )
4858 if ( m_cursorMode
== WXGRID_CURSOR_SELECT_CELL
)
4860 // don't capture the cursor yet
4861 if ( CanDragColSize() )
4862 ChangeCursorMode(WXGRID_CURSOR_RESIZE_COL
, m_colLabelWin
, FALSE
);
4865 else if ( m_cursorMode
!= WXGRID_CURSOR_SELECT_CELL
)
4867 ChangeCursorMode(WXGRID_CURSOR_SELECT_CELL
, m_colLabelWin
, FALSE
);
4873 void wxGrid::ProcessCornerLabelMouseEvent( wxMouseEvent
& event
)
4875 if ( event
.LeftDown() )
4877 // indicate corner label by having both row and
4880 if ( !SendEvent( wxEVT_GRID_LABEL_LEFT_CLICK
, -1, -1, event
) )
4886 else if ( event
.LeftDClick() )
4888 SendEvent( wxEVT_GRID_LABEL_LEFT_DCLICK
, -1, -1, event
);
4891 else if ( event
.RightDown() )
4893 if ( !SendEvent( wxEVT_GRID_LABEL_RIGHT_CLICK
, -1, -1, event
) )
4895 // no default action at the moment
4899 else if ( event
.RightDClick() )
4901 if ( !SendEvent( wxEVT_GRID_LABEL_RIGHT_DCLICK
, -1, -1, event
) )
4903 // no default action at the moment
4908 void wxGrid::ChangeCursorMode(CursorMode mode
,
4913 static const wxChar
*cursorModes
[] =
4922 wxLogTrace(_T("grid"),
4923 _T("wxGrid cursor mode (mouse capture for %s): %s -> %s"),
4924 win
== m_colLabelWin
? _T("colLabelWin")
4925 : win
? _T("rowLabelWin")
4927 cursorModes
[m_cursorMode
], cursorModes
[mode
]);
4928 #endif // __WXDEBUG__
4930 if ( mode
== m_cursorMode
&&
4931 win
== m_winCapture
&&
4932 captureMouse
== (m_winCapture
!= NULL
))
4937 // by default use the grid itself
4943 if (m_winCapture
->HasCapture()) m_winCapture
->ReleaseMouse();
4944 m_winCapture
= (wxWindow
*)NULL
;
4947 m_cursorMode
= mode
;
4949 switch ( m_cursorMode
)
4951 case WXGRID_CURSOR_RESIZE_ROW
:
4952 win
->SetCursor( m_rowResizeCursor
);
4955 case WXGRID_CURSOR_RESIZE_COL
:
4956 win
->SetCursor( m_colResizeCursor
);
4960 win
->SetCursor( *wxSTANDARD_CURSOR
);
4963 // we need to capture mouse when resizing
4964 bool resize
= m_cursorMode
== WXGRID_CURSOR_RESIZE_ROW
||
4965 m_cursorMode
== WXGRID_CURSOR_RESIZE_COL
;
4967 if ( captureMouse
&& resize
)
4969 win
->CaptureMouse();
4974 void wxGrid::ProcessGridCellMouseEvent( wxMouseEvent
& event
)
4977 wxPoint
pos( event
.GetPosition() );
4978 CalcUnscrolledPosition( pos
.x
, pos
.y
, &x
, &y
);
4980 wxGridCellCoords coords
;
4981 XYToCell( x
, y
, coords
);
4983 int cell_rows
, cell_cols
;
4984 GetCellSize( coords
.GetRow(), coords
.GetCol(), &cell_rows
, &cell_cols
);
4985 if ((cell_rows
< 0) || (cell_cols
< 0))
4987 coords
.SetRow(coords
.GetRow() + cell_rows
);
4988 coords
.SetCol(coords
.GetCol() + cell_cols
);
4991 if ( event
.Dragging() )
4993 //wxLogDebug("pos(%d, %d) coords(%d, %d)", pos.x, pos.y, coords.GetRow(), coords.GetCol());
4995 // Don't start doing anything until the mouse has been drug at
4996 // least 3 pixels in any direction...
4999 if (m_startDragPos
== wxDefaultPosition
)
5001 m_startDragPos
= pos
;
5004 if (abs(m_startDragPos
.x
- pos
.x
) < 4 && abs(m_startDragPos
.y
- pos
.y
) < 4)
5008 m_isDragging
= TRUE
;
5009 if ( m_cursorMode
== WXGRID_CURSOR_SELECT_CELL
)
5011 // Hide the edit control, so it
5012 // won't interfer with drag-shrinking.
5013 if ( IsCellEditControlShown() )
5015 HideCellEditControl();
5016 SaveEditControlValue();
5019 // Have we captured the mouse yet?
5022 m_winCapture
= m_gridWin
;
5023 m_winCapture
->CaptureMouse();
5026 if ( coords
!= wxGridNoCellCoords
)
5028 if ( event
.ControlDown() )
5030 if ( m_selectingKeyboard
== wxGridNoCellCoords
)
5031 m_selectingKeyboard
= coords
;
5032 HighlightBlock ( m_selectingKeyboard
, coords
);
5036 if ( !IsSelection() )
5038 HighlightBlock( coords
, coords
);
5042 HighlightBlock( m_currentCellCoords
, coords
);
5046 if (! IsVisible(coords
))
5048 MakeCellVisible(coords
);
5049 // TODO: need to introduce a delay or something here. The
5050 // scrolling is way to fast, at least on MSW - also on GTK.
5054 else if ( m_cursorMode
== WXGRID_CURSOR_RESIZE_ROW
)
5056 int cw
, ch
, left
, dummy
;
5057 m_gridWin
->GetClientSize( &cw
, &ch
);
5058 CalcUnscrolledPosition( 0, 0, &left
, &dummy
);
5060 wxClientDC
dc( m_gridWin
);
5062 y
= wxMax( y
, GetRowTop(m_dragRowOrCol
) +
5063 GetRowMinimalHeight(m_dragRowOrCol
) );
5064 dc
.SetLogicalFunction(wxINVERT
);
5065 if ( m_dragLastPos
>= 0 )
5067 dc
.DrawLine( left
, m_dragLastPos
, left
+cw
, m_dragLastPos
);
5069 dc
.DrawLine( left
, y
, left
+cw
, y
);
5072 else if ( m_cursorMode
== WXGRID_CURSOR_RESIZE_COL
)
5074 int cw
, ch
, dummy
, top
;
5075 m_gridWin
->GetClientSize( &cw
, &ch
);
5076 CalcUnscrolledPosition( 0, 0, &dummy
, &top
);
5078 wxClientDC
dc( m_gridWin
);
5080 x
= wxMax( x
, GetColLeft(m_dragRowOrCol
) +
5081 GetColMinimalWidth(m_dragRowOrCol
) );
5082 dc
.SetLogicalFunction(wxINVERT
);
5083 if ( m_dragLastPos
>= 0 )
5085 dc
.DrawLine( m_dragLastPos
, top
, m_dragLastPos
, top
+ch
);
5087 dc
.DrawLine( x
, top
, x
, top
+ch
);
5094 m_isDragging
= FALSE
;
5095 m_startDragPos
= wxDefaultPosition
;
5097 // VZ: if we do this, the mode is reset to WXGRID_CURSOR_SELECT_CELL
5098 // immediately after it becomes WXGRID_CURSOR_RESIZE_ROW/COL under
5101 if ( event
.Entering() || event
.Leaving() )
5103 ChangeCursorMode(WXGRID_CURSOR_SELECT_CELL
);
5104 m_gridWin
->SetCursor( *wxSTANDARD_CURSOR
);
5109 // ------------ Left button pressed
5111 if ( event
.LeftDown() && coords
!= wxGridNoCellCoords
)
5113 if ( !SendEvent( wxEVT_GRID_CELL_LEFT_CLICK
,
5118 if ( !event
.ControlDown() )
5120 if ( event
.ShiftDown() )
5124 m_selection
->SelectBlock( m_currentCellCoords
.GetRow(),
5125 m_currentCellCoords
.GetCol(),
5128 event
.ControlDown(),
5134 else if ( XToEdgeOfCol(x
) < 0 &&
5135 YToEdgeOfRow(y
) < 0 )
5137 DisableCellEditControl();
5138 MakeCellVisible( coords
);
5140 // if this is the second click on this cell then start
5142 if ( m_waitForSlowClick
&&
5143 (coords
== m_currentCellCoords
) &&
5144 CanEnableCellControl())
5146 EnableCellEditControl();
5148 wxGridCellAttr
* attr
= GetCellAttr(m_currentCellCoords
);
5149 wxGridCellEditor
*editor
= attr
->GetEditor(this,
5152 editor
->StartingClick();
5156 m_waitForSlowClick
= FALSE
;
5160 if ( event
.ControlDown() )
5164 m_selection
->ToggleCellSelection( coords
.GetRow(),
5166 event
.ControlDown(),
5171 m_selectingTopLeft
= wxGridNoCellCoords
;
5172 m_selectingBottomRight
= wxGridNoCellCoords
;
5173 m_selectingKeyboard
= coords
;
5177 SetCurrentCell( coords
);
5180 if ( m_selection
->GetSelectionMode() !=
5181 wxGrid::wxGridSelectCells
)
5183 HighlightBlock( coords
, coords
);
5187 m_waitForSlowClick
= TRUE
;
5194 // ------------ Left double click
5196 else if ( event
.LeftDClick() && coords
!= wxGridNoCellCoords
)
5198 DisableCellEditControl();
5200 if ( XToEdgeOfCol(x
) < 0 && YToEdgeOfRow(y
) < 0 )
5202 SendEvent( wxEVT_GRID_CELL_LEFT_DCLICK
,
5210 // ------------ Left button released
5212 else if ( event
.LeftUp() )
5214 if ( m_cursorMode
== WXGRID_CURSOR_SELECT_CELL
)
5216 if ( m_selectingTopLeft
!= wxGridNoCellCoords
&&
5217 m_selectingBottomRight
!= wxGridNoCellCoords
)
5221 if (m_winCapture
->HasCapture()) m_winCapture
->ReleaseMouse();
5222 m_winCapture
= NULL
;
5227 m_selection
->SelectBlock( m_selectingTopLeft
.GetRow(),
5228 m_selectingTopLeft
.GetCol(),
5229 m_selectingBottomRight
.GetRow(),
5230 m_selectingBottomRight
.GetCol(),
5231 event
.ControlDown(),
5237 m_selectingTopLeft
= wxGridNoCellCoords
;
5238 m_selectingBottomRight
= wxGridNoCellCoords
;
5241 // Show the edit control, if it has been hidden for
5243 ShowCellEditControl();
5245 else if ( m_cursorMode
== WXGRID_CURSOR_RESIZE_ROW
)
5247 ChangeCursorMode(WXGRID_CURSOR_SELECT_CELL
);
5248 DoEndDragResizeRow();
5250 // Note: we are ending the event *after* doing
5251 // default processing in this case
5253 SendEvent( wxEVT_GRID_ROW_SIZE
, m_dragRowOrCol
, -1, event
);
5255 else if ( m_cursorMode
== WXGRID_CURSOR_RESIZE_COL
)
5257 ChangeCursorMode(WXGRID_CURSOR_SELECT_CELL
);
5258 DoEndDragResizeCol();
5260 // Note: we are ending the event *after* doing
5261 // default processing in this case
5263 SendEvent( wxEVT_GRID_COL_SIZE
, -1, m_dragRowOrCol
, event
);
5270 // ------------ Right button down
5272 else if ( event
.RightDown() && coords
!= wxGridNoCellCoords
)
5274 DisableCellEditControl();
5275 if ( !SendEvent( wxEVT_GRID_CELL_RIGHT_CLICK
,
5280 // no default action at the moment
5285 // ------------ Right double click
5287 else if ( event
.RightDClick() && coords
!= wxGridNoCellCoords
)
5289 DisableCellEditControl();
5290 if ( !SendEvent( wxEVT_GRID_CELL_RIGHT_DCLICK
,
5295 // no default action at the moment
5299 // ------------ Moving and no button action
5301 else if ( event
.Moving() && !event
.IsButton() )
5303 int dragRow
= YToEdgeOfRow( y
);
5304 int dragCol
= XToEdgeOfCol( x
);
5306 // Dragging on the corner of a cell to resize in both
5307 // directions is not implemented yet...
5309 if ( dragRow
>= 0 && dragCol
>= 0 )
5311 ChangeCursorMode(WXGRID_CURSOR_SELECT_CELL
);
5317 m_dragRowOrCol
= dragRow
;
5319 if ( m_cursorMode
== WXGRID_CURSOR_SELECT_CELL
)
5321 if ( CanDragRowSize() && CanDragGridSize() )
5322 ChangeCursorMode(WXGRID_CURSOR_RESIZE_ROW
);
5327 m_dragRowOrCol
= dragCol
;
5335 m_dragRowOrCol
= dragCol
;
5337 if ( m_cursorMode
== WXGRID_CURSOR_SELECT_CELL
)
5339 if ( CanDragColSize() && CanDragGridSize() )
5340 ChangeCursorMode(WXGRID_CURSOR_RESIZE_COL
);
5346 // Neither on a row or col edge
5348 if ( m_cursorMode
!= WXGRID_CURSOR_SELECT_CELL
)
5350 ChangeCursorMode(WXGRID_CURSOR_SELECT_CELL
);
5356 void wxGrid::DoEndDragResizeRow()
5358 if ( m_dragLastPos
>= 0 )
5360 // erase the last line and resize the row
5362 int cw
, ch
, left
, dummy
;
5363 m_gridWin
->GetClientSize( &cw
, &ch
);
5364 CalcUnscrolledPosition( 0, 0, &left
, &dummy
);
5366 wxClientDC
dc( m_gridWin
);
5368 dc
.SetLogicalFunction( wxINVERT
);
5369 dc
.DrawLine( left
, m_dragLastPos
, left
+cw
, m_dragLastPos
);
5370 HideCellEditControl();
5371 SaveEditControlValue();
5373 int rowTop
= GetRowTop(m_dragRowOrCol
);
5374 SetRowSize( m_dragRowOrCol
,
5375 wxMax( m_dragLastPos
- rowTop
, WXGRID_MIN_ROW_HEIGHT
) );
5377 if ( !GetBatchCount() )
5379 // Only needed to get the correct rect.y:
5380 wxRect
rect ( CellToRect( m_dragRowOrCol
, 0 ) );
5382 CalcScrolledPosition(0, rect
.y
, &dummy
, &rect
.y
);
5383 rect
.width
= m_rowLabelWidth
;
5384 rect
.height
= ch
- rect
.y
;
5385 m_rowLabelWin
->Refresh( TRUE
, &rect
);
5387 // if there is a multicell block, paint all of it
5390 int i
, cell_rows
, cell_cols
, subtract_rows
= 0;
5391 int leftCol
= XToCol(left
);
5392 int rightCol
= XToCol(left
+cw
);
5395 if (rightCol
< 0) rightCol
= m_numCols
;
5396 for (i
=leftCol
; i
<rightCol
; i
++)
5398 GetCellSize(m_dragRowOrCol
, i
, &cell_rows
, &cell_cols
);
5399 if (cell_rows
< subtract_rows
)
5400 subtract_rows
= cell_rows
;
5402 rect
.y
= GetRowTop(m_dragRowOrCol
+ subtract_rows
);
5403 CalcScrolledPosition(0, rect
.y
, &dummy
, &rect
.y
);
5404 rect
.height
= ch
- rect
.y
;
5407 m_gridWin
->Refresh( FALSE
, &rect
);
5410 ShowCellEditControl();
5415 void wxGrid::DoEndDragResizeCol()
5417 if ( m_dragLastPos
>= 0 )
5419 // erase the last line and resize the col
5421 int cw
, ch
, dummy
, top
;
5422 m_gridWin
->GetClientSize( &cw
, &ch
);
5423 CalcUnscrolledPosition( 0, 0, &dummy
, &top
);
5425 wxClientDC
dc( m_gridWin
);
5427 dc
.SetLogicalFunction( wxINVERT
);
5428 dc
.DrawLine( m_dragLastPos
, top
, m_dragLastPos
, top
+ch
);
5429 HideCellEditControl();
5430 SaveEditControlValue();
5432 int colLeft
= GetColLeft(m_dragRowOrCol
);
5433 SetColSize( m_dragRowOrCol
,
5434 wxMax( m_dragLastPos
- colLeft
,
5435 GetColMinimalWidth(m_dragRowOrCol
) ) );
5437 if ( !GetBatchCount() )
5439 // Only needed to get the correct rect.x:
5440 wxRect
rect ( CellToRect( 0, m_dragRowOrCol
) );
5442 CalcScrolledPosition(rect
.x
, 0, &rect
.x
, &dummy
);
5443 rect
.width
= cw
- rect
.x
;
5444 rect
.height
= m_colLabelHeight
;
5445 m_colLabelWin
->Refresh( TRUE
, &rect
);
5447 // if there is a multicell block, paint all of it
5450 int i
, cell_rows
, cell_cols
, subtract_cols
= 0;
5451 int topRow
= YToRow(top
);
5452 int bottomRow
= YToRow(top
+cw
);
5455 if (bottomRow
< 0) bottomRow
= m_numRows
;
5456 for (i
=topRow
; i
<bottomRow
; i
++)
5458 GetCellSize(i
, m_dragRowOrCol
, &cell_rows
, &cell_cols
);
5459 if (cell_cols
< subtract_cols
)
5460 subtract_cols
= cell_cols
;
5462 rect
.x
= GetColLeft(m_dragRowOrCol
+ subtract_cols
);
5463 CalcScrolledPosition(rect
.x
, 0, &rect
.x
, &dummy
);
5464 rect
.width
= cw
- rect
.x
;
5467 m_gridWin
->Refresh( FALSE
, &rect
);
5470 ShowCellEditControl();
5477 // ------ interaction with data model
5479 bool wxGrid::ProcessTableMessage( wxGridTableMessage
& msg
)
5481 switch ( msg
.GetId() )
5483 case wxGRIDTABLE_REQUEST_VIEW_GET_VALUES
:
5484 return GetModelValues();
5486 case wxGRIDTABLE_REQUEST_VIEW_SEND_VALUES
:
5487 return SetModelValues();
5489 case wxGRIDTABLE_NOTIFY_ROWS_INSERTED
:
5490 case wxGRIDTABLE_NOTIFY_ROWS_APPENDED
:
5491 case wxGRIDTABLE_NOTIFY_ROWS_DELETED
:
5492 case wxGRIDTABLE_NOTIFY_COLS_INSERTED
:
5493 case wxGRIDTABLE_NOTIFY_COLS_APPENDED
:
5494 case wxGRIDTABLE_NOTIFY_COLS_DELETED
:
5495 return Redimension( msg
);
5504 // The behaviour of this function depends on the grid table class
5505 // Clear() function. For the default wxGridStringTable class the
5506 // behavious is to replace all cell contents with wxEmptyString but
5507 // not to change the number of rows or cols.
5509 void wxGrid::ClearGrid()
5513 if (IsCellEditControlEnabled())
5514 DisableCellEditControl();
5517 if ( !GetBatchCount() ) m_gridWin
->Refresh();
5522 bool wxGrid::InsertRows( int pos
, int numRows
, bool WXUNUSED(updateLabels
) )
5524 // TODO: something with updateLabels flag
5528 wxFAIL_MSG( wxT("Called wxGrid::InsertRows() before calling CreateGrid()") );
5534 if (IsCellEditControlEnabled())
5535 DisableCellEditControl();
5537 return m_table
->InsertRows( pos
, numRows
);
5539 // the table will have sent the results of the insert row
5540 // operation to this view object as a grid table message
5546 bool wxGrid::AppendRows( int numRows
, bool WXUNUSED(updateLabels
) )
5548 // TODO: something with updateLabels flag
5552 wxFAIL_MSG( wxT("Called wxGrid::AppendRows() before calling CreateGrid()") );
5556 return ( m_table
&& m_table
->AppendRows( numRows
) );
5557 // the table will have sent the results of the append row
5558 // operation to this view object as a grid table message
5562 bool wxGrid::DeleteRows( int pos
, int numRows
, bool WXUNUSED(updateLabels
) )
5564 // TODO: something with updateLabels flag
5568 wxFAIL_MSG( wxT("Called wxGrid::DeleteRows() before calling CreateGrid()") );
5574 if (IsCellEditControlEnabled())
5575 DisableCellEditControl();
5577 return (m_table
->DeleteRows( pos
, numRows
));
5578 // the table will have sent the results of the delete row
5579 // operation to this view object as a grid table message
5585 bool wxGrid::InsertCols( int pos
, int numCols
, bool WXUNUSED(updateLabels
) )
5587 // TODO: something with updateLabels flag
5591 wxFAIL_MSG( wxT("Called wxGrid::InsertCols() before calling CreateGrid()") );
5597 if (IsCellEditControlEnabled())
5598 DisableCellEditControl();
5600 return m_table
->InsertCols( pos
, numCols
);
5601 // the table will have sent the results of the insert col
5602 // operation to this view object as a grid table message
5608 bool wxGrid::AppendCols( int numCols
, bool WXUNUSED(updateLabels
) )
5610 // TODO: something with updateLabels flag
5614 wxFAIL_MSG( wxT("Called wxGrid::AppendCols() before calling CreateGrid()") );
5618 return ( m_table
&& m_table
->AppendCols( numCols
) );
5619 // the table will have sent the results of the append col
5620 // operation to this view object as a grid table message
5624 bool wxGrid::DeleteCols( int pos
, int numCols
, bool WXUNUSED(updateLabels
) )
5626 // TODO: something with updateLabels flag
5630 wxFAIL_MSG( wxT("Called wxGrid::DeleteCols() before calling CreateGrid()") );
5636 if (IsCellEditControlEnabled())
5637 DisableCellEditControl();
5639 return ( m_table
->DeleteCols( pos
, numCols
) );
5640 // the table will have sent the results of the delete col
5641 // operation to this view object as a grid table message
5649 // ----- event handlers
5652 // Generate a grid event based on a mouse event and
5653 // return the result of ProcessEvent()
5655 int wxGrid::SendEvent( const wxEventType type
,
5657 wxMouseEvent
& mouseEv
)
5662 if ( type
== wxEVT_GRID_ROW_SIZE
|| type
== wxEVT_GRID_COL_SIZE
)
5664 int rowOrCol
= (row
== -1 ? col
: row
);
5666 wxGridSizeEvent
gridEvt( GetId(),
5670 mouseEv
.GetX() + GetRowLabelSize(),
5671 mouseEv
.GetY() + GetColLabelSize(),
5672 mouseEv
.ControlDown(),
5673 mouseEv
.ShiftDown(),
5675 mouseEv
.MetaDown() );
5677 claimed
= GetEventHandler()->ProcessEvent(gridEvt
);
5678 vetoed
= !gridEvt
.IsAllowed();
5680 else if ( type
== wxEVT_GRID_RANGE_SELECT
)
5682 // Right now, it should _never_ end up here!
5683 wxGridRangeSelectEvent
gridEvt( GetId(),
5687 m_selectingBottomRight
,
5689 mouseEv
.ControlDown(),
5690 mouseEv
.ShiftDown(),
5692 mouseEv
.MetaDown() );
5694 claimed
= GetEventHandler()->ProcessEvent(gridEvt
);
5695 vetoed
= !gridEvt
.IsAllowed();
5699 wxGridEvent
gridEvt( GetId(),
5703 mouseEv
.GetX() + GetRowLabelSize(),
5704 mouseEv
.GetY() + GetColLabelSize(),
5706 mouseEv
.ControlDown(),
5707 mouseEv
.ShiftDown(),
5709 mouseEv
.MetaDown() );
5710 claimed
= GetEventHandler()->ProcessEvent(gridEvt
);
5711 vetoed
= !gridEvt
.IsAllowed();
5714 // A Veto'd event may not be `claimed' so test this first
5715 if (vetoed
) return -1;
5716 return claimed
? 1 : 0;
5720 // Generate a grid event of specified type and return the result
5721 // of ProcessEvent().
5723 int wxGrid::SendEvent( const wxEventType type
,
5729 if ( type
== wxEVT_GRID_ROW_SIZE
|| type
== wxEVT_GRID_COL_SIZE
)
5731 int rowOrCol
= (row
== -1 ? col
: row
);
5733 wxGridSizeEvent
gridEvt( GetId(),
5738 claimed
= GetEventHandler()->ProcessEvent(gridEvt
);
5739 vetoed
= !gridEvt
.IsAllowed();
5743 wxGridEvent
gridEvt( GetId(),
5748 claimed
= GetEventHandler()->ProcessEvent(gridEvt
);
5749 vetoed
= !gridEvt
.IsAllowed();
5752 // A Veto'd event may not be `claimed' so test this first
5753 if (vetoed
) return -1;
5754 return claimed
? 1 : 0;
5758 void wxGrid::OnPaint( wxPaintEvent
& WXUNUSED(event
) )
5760 wxPaintDC
dc(this); // needed to prevent zillions of paint events on MSW
5763 void wxGrid::Refresh(bool eraseb
, wxRect
* rect
)
5765 // Don't do anything if between Begin/EndBatch...
5766 // EndBatch() will do all this on the last nested one anyway.
5767 if (! GetBatchCount())
5769 wxScrolledWindow::Refresh(eraseb
,rect
);
5771 int off_x
=0 ,off_y
=0;
5772 wxRect
* anotherrect
= NULL
;
5776 //Copy rectangle can get scroll offsets..
5777 anotherrect
= new wxRect(*rect
);
5778 CalcScrolledPosition( 0, 0, &off_x
, &off_y
);
5780 //Corner label Doesn't move from the origin.
5781 m_cornerLabelWin
->Refresh(eraseb
,rect
);
5783 //Move Rect down for row labels...
5785 rect
->Offset(0,off_y
);
5786 m_rowLabelWin
->Refresh(eraseb
,rect
);
5788 //Move rect copy along for col labels...
5790 anotherrect
->Offset(off_x
,0);
5791 m_colLabelWin
->Refresh(eraseb
,anotherrect
);
5793 //Move main rect along (so it's down and across!)
5796 rect
->Offset(off_x
,0);
5797 m_gridWin
->Refresh(eraseb
,rect
);
5801 void wxGrid::OnSize( wxSizeEvent
& event
)
5803 // position the child windows
5806 // don't call CalcDimensions() from here, the base class handles the size
5812 void wxGrid::OnKeyDown( wxKeyEvent
& event
)
5814 if ( m_inOnKeyDown
)
5816 // shouldn't be here - we are going round in circles...
5818 wxFAIL_MSG( wxT("wxGrid::OnKeyDown called while already active") );
5821 m_inOnKeyDown
= TRUE
;
5823 // propagate the event up and see if it gets processed
5825 wxWindow
*parent
= GetParent();
5826 wxKeyEvent
keyEvt( event
);
5827 keyEvt
.SetEventObject( parent
);
5829 if ( !parent
->GetEventHandler()->ProcessEvent( keyEvt
) )
5832 // try local handlers
5834 switch ( event
.KeyCode() )
5837 if ( event
.ControlDown() )
5839 MoveCursorUpBlock( event
.ShiftDown() );
5843 MoveCursorUp( event
.ShiftDown() );
5848 if ( event
.ControlDown() )
5850 MoveCursorDownBlock( event
.ShiftDown() );
5854 MoveCursorDown( event
.ShiftDown() );
5859 if ( event
.ControlDown() )
5861 MoveCursorLeftBlock( event
.ShiftDown() );
5865 MoveCursorLeft( event
.ShiftDown() );
5870 if ( event
.ControlDown() )
5872 MoveCursorRightBlock( event
.ShiftDown() );
5876 MoveCursorRight( event
.ShiftDown() );
5881 case WXK_NUMPAD_ENTER
:
5882 if ( event
.ControlDown() )
5884 event
.Skip(); // to let the edit control have the return
5888 if ( GetGridCursorRow() < GetNumberRows()-1 )
5890 MoveCursorDown( event
.ShiftDown() );
5894 // at the bottom of a column
5895 HideCellEditControl();
5896 SaveEditControlValue();
5906 if (event
.ShiftDown())
5908 if ( GetGridCursorCol() > 0 )
5910 MoveCursorLeft( FALSE
);
5915 HideCellEditControl();
5916 SaveEditControlValue();
5921 if ( GetGridCursorCol() < GetNumberCols()-1 )
5923 MoveCursorRight( FALSE
);
5928 HideCellEditControl();
5929 SaveEditControlValue();
5935 if ( event
.ControlDown() )
5937 MakeCellVisible( 0, 0 );
5938 SetCurrentCell( 0, 0 );
5947 if ( event
.ControlDown() )
5949 MakeCellVisible( m_numRows
-1, m_numCols
-1 );
5950 SetCurrentCell( m_numRows
-1, m_numCols
-1 );
5967 if ( event
.ControlDown() )
5971 m_selection
->ToggleCellSelection( m_currentCellCoords
.GetRow(),
5972 m_currentCellCoords
.GetCol(),
5973 event
.ControlDown(),
5980 if ( !IsEditable() )
5982 MoveCursorRight( FALSE
);
5985 // Otherwise fall through to default
5988 // is it possible to edit the current cell at all?
5989 if ( !IsCellEditControlEnabled() && CanEnableCellControl() )
5991 // yes, now check whether the cells editor accepts the key
5992 int row
= m_currentCellCoords
.GetRow();
5993 int col
= m_currentCellCoords
.GetCol();
5994 wxGridCellAttr
* attr
= GetCellAttr(row
, col
);
5995 wxGridCellEditor
*editor
= attr
->GetEditor(this, row
, col
);
5997 // <F2> is special and will always start editing, for
5998 // other keys - ask the editor itself
5999 if ( (event
.KeyCode() == WXK_F2
&& !event
.HasModifiers())
6000 || editor
->IsAcceptedKey(event
) )
6002 EnableCellEditControl();
6004 // the editor could be not shown for a variety of
6005 // reasons (i.e. blocked by the app or whatever), so
6006 // check if it really was created
6007 if ( m_cellEditCtrlEnabled
)
6009 editor
->StartingKey(event
);
6022 // let others process char events with modifiers or all
6023 // char events for readonly cells
6030 m_inOnKeyDown
= FALSE
;
6033 void wxGrid::OnKeyUp( wxKeyEvent
& event
)
6035 // try local handlers
6037 if ( event
.KeyCode() == WXK_SHIFT
)
6039 if ( m_selectingTopLeft
!= wxGridNoCellCoords
&&
6040 m_selectingBottomRight
!= wxGridNoCellCoords
)
6044 m_selection
->SelectBlock( m_selectingTopLeft
.GetRow(),
6045 m_selectingTopLeft
.GetCol(),
6046 m_selectingBottomRight
.GetRow(),
6047 m_selectingBottomRight
.GetCol(),
6048 event
.ControlDown(),
6055 m_selectingTopLeft
= wxGridNoCellCoords
;
6056 m_selectingBottomRight
= wxGridNoCellCoords
;
6057 m_selectingKeyboard
= wxGridNoCellCoords
;
6061 void wxGrid::OnEraseBackground(wxEraseEvent
&)
6065 void wxGrid::SetCurrentCell( const wxGridCellCoords
& coords
)
6067 if ( SendEvent( wxEVT_GRID_SELECT_CELL
, coords
.GetRow(), coords
.GetCol() ) )
6069 // the event has been intercepted - do nothing
6073 wxClientDC
dc(m_gridWin
);
6076 if ( m_currentCellCoords
!= wxGridNoCellCoords
)
6078 HideCellEditControl();
6079 DisableCellEditControl();
6081 if ( IsVisible( m_currentCellCoords
, FALSE
) )
6084 r
= BlockToDeviceRect(m_currentCellCoords
, m_currentCellCoords
);
6085 if ( !m_gridLinesEnabled
)
6093 wxGridCellCoordsArray cells
= CalcCellsExposed( r
);
6095 // Otherwise refresh redraws the highlight!
6096 m_currentCellCoords
= coords
;
6098 DrawGridCellArea(dc
,cells
);
6099 DrawAllGridLines( dc
, r
);
6103 m_currentCellCoords
= coords
;
6105 wxGridCellAttr
* attr
= GetCellAttr(coords
);
6106 DrawCellHighlight(dc
, attr
);
6111 void wxGrid::HighlightBlock( int topRow
, int leftCol
, int bottomRow
, int rightCol
)
6114 wxGridCellCoords updateTopLeft
, updateBottomRight
;
6118 if ( m_selection
->GetSelectionMode() == wxGrid::wxGridSelectRows
)
6121 rightCol
= GetNumberCols() - 1;
6123 else if ( m_selection
->GetSelectionMode() == wxGrid::wxGridSelectColumns
)
6126 bottomRow
= GetNumberRows() - 1;
6130 if ( topRow
> bottomRow
)
6137 if ( leftCol
> rightCol
)
6144 updateTopLeft
= wxGridCellCoords( topRow
, leftCol
);
6145 updateBottomRight
= wxGridCellCoords( bottomRow
, rightCol
);
6147 // First the case that we selected a completely new area
6148 if ( m_selectingTopLeft
== wxGridNoCellCoords
||
6149 m_selectingBottomRight
== wxGridNoCellCoords
)
6152 rect
= BlockToDeviceRect( wxGridCellCoords ( topRow
, leftCol
),
6153 wxGridCellCoords ( bottomRow
, rightCol
) );
6154 m_gridWin
->Refresh( FALSE
, &rect
);
6156 // Now handle changing an existing selection area.
6157 else if ( m_selectingTopLeft
!= updateTopLeft
||
6158 m_selectingBottomRight
!= updateBottomRight
)
6160 // Compute two optimal update rectangles:
6161 // Either one rectangle is a real subset of the
6162 // other, or they are (almost) disjoint!
6164 bool need_refresh
[4];
6168 need_refresh
[3] = FALSE
;
6171 // Store intermediate values
6172 wxCoord oldLeft
= m_selectingTopLeft
.GetCol();
6173 wxCoord oldTop
= m_selectingTopLeft
.GetRow();
6174 wxCoord oldRight
= m_selectingBottomRight
.GetCol();
6175 wxCoord oldBottom
= m_selectingBottomRight
.GetRow();
6177 // Determine the outer/inner coordinates.
6178 if (oldLeft
> leftCol
)
6184 if (oldTop
> topRow
)
6190 if (oldRight
< rightCol
)
6193 oldRight
= rightCol
;
6196 if (oldBottom
< bottomRow
)
6199 oldBottom
= bottomRow
;
6203 // Now, either the stuff marked old is the outer
6204 // rectangle or we don't have a situation where one
6205 // is contained in the other.
6207 if ( oldLeft
< leftCol
)
6209 // Refresh the newly selected or deselected
6210 // area to the left of the old or new selection.
6211 need_refresh
[0] = TRUE
;
6212 rect
[0] = BlockToDeviceRect( wxGridCellCoords ( oldTop
,
6214 wxGridCellCoords ( oldBottom
,
6218 if ( oldTop
< topRow
)
6220 // Refresh the newly selected or deselected
6221 // area above the old or new selection.
6222 need_refresh
[1] = TRUE
;
6223 rect
[1] = BlockToDeviceRect( wxGridCellCoords ( oldTop
,
6225 wxGridCellCoords ( topRow
- 1,
6229 if ( oldRight
> rightCol
)
6231 // Refresh the newly selected or deselected
6232 // area to the right of the old or new selection.
6233 need_refresh
[2] = TRUE
;
6234 rect
[2] = BlockToDeviceRect( wxGridCellCoords ( oldTop
,
6236 wxGridCellCoords ( oldBottom
,
6240 if ( oldBottom
> bottomRow
)
6242 // Refresh the newly selected or deselected
6243 // area below the old or new selection.
6244 need_refresh
[3] = TRUE
;
6245 rect
[3] = BlockToDeviceRect( wxGridCellCoords ( bottomRow
+ 1,
6247 wxGridCellCoords ( oldBottom
,
6251 // various Refresh() calls
6252 for (i
= 0; i
< 4; i
++ )
6253 if ( need_refresh
[i
] && rect
[i
] != wxGridNoCellRect
)
6254 m_gridWin
->Refresh( FALSE
, &(rect
[i
]) );
6257 m_selectingTopLeft
= updateTopLeft
;
6258 m_selectingBottomRight
= updateBottomRight
;
6262 // ------ functions to get/send data (see also public functions)
6265 bool wxGrid::GetModelValues()
6267 // Disable the editor, so it won't hide a changed value.
6268 DisableCellEditControl();
6272 // all we need to do is repaint the grid
6274 m_gridWin
->Refresh();
6282 bool wxGrid::SetModelValues()
6286 // Disable the editor, so it won't hide a changed value.
6287 // Do we also want to save the current value of the editor first?
6289 SaveEditControlValue();
6290 DisableCellEditControl();
6294 for ( row
= 0; row
< m_numRows
; row
++ )
6296 for ( col
= 0; col
< m_numCols
; col
++ )
6298 m_table
->SetValue( row
, col
, GetCellValue(row
, col
) );
6310 // Note - this function only draws cells that are in the list of
6311 // exposed cells (usually set from the update region by
6312 // CalcExposedCells)
6314 void wxGrid::DrawGridCellArea( wxDC
& dc
, const wxGridCellCoordsArray
& cells
)
6316 if ( !m_numRows
|| !m_numCols
) return;
6318 int i
, j
, k
, l
, numCells
= cells
.GetCount();
6319 int row
, col
, cell_rows
, cell_cols
;
6320 wxGridCellCoordsArray redrawCells
;
6322 for ( i
= numCells
-1; i
>= 0; i
-- )
6324 row
= cells
[i
].GetRow();
6325 col
= cells
[i
].GetCol();
6326 GetCellSize( row
, col
, &cell_rows
, &cell_cols
);
6328 // If this cell is part of a multicell block, find owner for repaint
6329 if ( cell_rows
<= 0 || cell_cols
<= 0 )
6331 wxGridCellCoords
cell(row
+cell_rows
, col
+cell_cols
);
6332 bool marked
= FALSE
;
6333 for ( j
= 0; j
< numCells
; j
++ )
6335 if ( cell
== cells
[j
] )
6343 int count
= redrawCells
.GetCount();
6344 for (j
= 0; j
< count
; j
++)
6346 if ( cell
== redrawCells
[j
] )
6352 if (!marked
) redrawCells
.Add( cell
);
6354 continue; // don't bother drawing this cell
6357 // If this cell is empty, find cell to left that might want to overflow
6358 if (m_table
&& m_table
->IsEmptyCell(row
, col
))
6360 for ( l
= 0; l
< cell_rows
; l
++ )
6362 for (j
= col
-1; j
>= 0; j
--)
6364 if (!m_table
->IsEmptyCell(row
+l
, j
))
6366 if (GetCellOverflow(row
+l
, j
))
6368 wxGridCellCoords
cell(row
+l
, j
);
6369 bool marked
= FALSE
;
6371 for (k
= 0; k
< numCells
; k
++)
6373 if ( cell
== cells
[k
] )
6381 int count
= redrawCells
.GetCount();
6382 for (k
= 0; k
< count
; k
++)
6384 if ( cell
== redrawCells
[k
] )
6390 if (!marked
) redrawCells
.Add( cell
);
6398 DrawCell( dc
, cells
[i
] );
6401 numCells
= redrawCells
.GetCount();
6403 for ( i
= numCells
- 1; i
>= 0; i
-- )
6405 DrawCell( dc
, redrawCells
[i
] );
6410 void wxGrid::DrawGridSpace( wxDC
& dc
)
6413 m_gridWin
->GetClientSize( &cw
, &ch
);
6416 CalcUnscrolledPosition( cw
, ch
, &right
, &bottom
);
6418 int rightCol
= m_numCols
> 0 ? GetColRight(m_numCols
- 1) : 0;
6419 int bottomRow
= m_numRows
> 0 ? GetRowBottom(m_numRows
- 1) : 0 ;
6421 if ( right
> rightCol
|| bottom
> bottomRow
)
6424 CalcUnscrolledPosition( 0, 0, &left
, &top
);
6426 dc
.SetBrush( wxBrush(GetDefaultCellBackgroundColour(), wxSOLID
) );
6427 dc
.SetPen( *wxTRANSPARENT_PEN
);
6429 if ( right
> rightCol
)
6431 dc
.DrawRectangle( rightCol
, top
, right
- rightCol
, ch
);
6434 if ( bottom
> bottomRow
)
6436 dc
.DrawRectangle( left
, bottomRow
, cw
, bottom
- bottomRow
);
6442 void wxGrid::DrawCell( wxDC
& dc
, const wxGridCellCoords
& coords
)
6444 int row
= coords
.GetRow();
6445 int col
= coords
.GetCol();
6447 if ( GetColWidth(col
) <= 0 || GetRowHeight(row
) <= 0 )
6450 // we draw the cell border ourselves
6451 #if !WXGRID_DRAW_LINES
6452 if ( m_gridLinesEnabled
)
6453 DrawCellBorder( dc
, coords
);
6456 wxGridCellAttr
* attr
= GetCellAttr(row
, col
);
6458 bool isCurrent
= coords
== m_currentCellCoords
;
6460 wxRect rect
= CellToRect( row
, col
);
6462 // if the editor is shown, we should use it and not the renderer
6463 // Note: However, only if it is really _shown_, i.e. not hidden!
6464 if ( isCurrent
&& IsCellEditControlShown() )
6466 wxGridCellEditor
*editor
= attr
->GetEditor(this, row
, col
);
6467 editor
->PaintBackground(rect
, attr
);
6472 // but all the rest is drawn by the cell renderer and hence may be
6474 wxGridCellRenderer
*renderer
= attr
->GetRenderer(this, row
, col
);
6475 renderer
->Draw(*this, *attr
, dc
, rect
, row
, col
, IsInSelection(coords
));
6482 void wxGrid::DrawCellHighlight( wxDC
& dc
, const wxGridCellAttr
*attr
)
6484 int row
= m_currentCellCoords
.GetRow();
6485 int col
= m_currentCellCoords
.GetCol();
6487 if ( GetColWidth(col
) <= 0 || GetRowHeight(row
) <= 0 )
6490 wxRect rect
= CellToRect(row
, col
);
6492 // hmmm... what could we do here to show that the cell is disabled?
6493 // for now, I just draw a thinner border than for the other ones, but
6494 // it doesn't look really good
6496 int penWidth
= attr
->IsReadOnly() ? m_cellHighlightROPenWidth
: m_cellHighlightPenWidth
;
6500 // The center of th drawn line is where the position/width/height of
6501 // the rectangle is actually at, (on wxMSW atr least,) so we will
6502 // reduce the size of the rectangle to compensate for the thickness of
6503 // the line. If this is too strange on non wxMSW platforms then
6504 // please #ifdef this appropriately.
6505 rect
.x
+= penWidth
/2;
6506 rect
.y
+= penWidth
/2;
6507 rect
.width
-= penWidth
-1;
6508 rect
.height
-= penWidth
-1;
6511 // Now draw the rectangle
6512 dc
.SetPen(wxPen(m_cellHighlightColour
, penWidth
, wxSOLID
));
6513 dc
.SetBrush(*wxTRANSPARENT_BRUSH
);
6514 dc
.DrawRectangle(rect
);
6518 // VZ: my experiments with 3d borders...
6520 // how to properly set colours for arbitrary bg?
6521 wxCoord x1
= rect
.x
,
6523 x2
= rect
.x
+ rect
.width
-1,
6524 y2
= rect
.y
+ rect
.height
-1;
6526 dc
.SetPen(*wxWHITE_PEN
);
6527 dc
.DrawLine(x1
, y1
, x2
, y1
);
6528 dc
.DrawLine(x1
, y1
, x1
, y2
);
6530 dc
.DrawLine(x1
+ 1, y2
- 1, x2
- 1, y2
- 1);
6531 dc
.DrawLine(x2
- 1, y1
+ 1, x2
- 1, y2
);
6533 dc
.SetPen(*wxBLACK_PEN
);
6534 dc
.DrawLine(x1
, y2
, x2
, y2
);
6535 dc
.DrawLine(x2
, y1
, x2
, y2
+1);
6540 void wxGrid::DrawCellBorder( wxDC
& dc
, const wxGridCellCoords
& coords
)
6542 int row
= coords
.GetRow();
6543 int col
= coords
.GetCol();
6544 if ( GetColWidth(col
) <= 0 || GetRowHeight(row
) <= 0 )
6547 dc
.SetPen( wxPen(GetGridLineColour(), 1, wxSOLID
) );
6549 wxRect rect
= CellToRect( row
, col
);
6551 // right hand border
6553 dc
.DrawLine( rect
.x
+ rect
.width
, rect
.y
,
6554 rect
.x
+ rect
.width
, rect
.y
+ rect
.height
+ 1 );
6558 dc
.DrawLine( rect
.x
, rect
.y
+ rect
.height
,
6559 rect
.x
+ rect
.width
, rect
.y
+ rect
.height
);
6562 void wxGrid::DrawHighlight(wxDC
& dc
,const wxGridCellCoordsArray
& cells
)
6564 // This if block was previously in wxGrid::OnPaint but that doesn't
6565 // seem to get called under wxGTK - MB
6567 if ( m_currentCellCoords
== wxGridNoCellCoords
&&
6568 m_numRows
&& m_numCols
)
6570 m_currentCellCoords
.Set(0, 0);
6573 if ( IsCellEditControlShown() )
6575 // don't show highlight when the edit control is shown
6579 // if the active cell was repainted, repaint its highlight too because it
6580 // might have been damaged by the grid lines
6581 size_t count
= cells
.GetCount();
6582 for ( size_t n
= 0; n
< count
; n
++ )
6584 if ( cells
[n
] == m_currentCellCoords
)
6586 wxGridCellAttr
* attr
= GetCellAttr(m_currentCellCoords
);
6587 DrawCellHighlight(dc
, attr
);
6595 // TODO: remove this ???
6596 // This is used to redraw all grid lines e.g. when the grid line colour
6599 void wxGrid::DrawAllGridLines( wxDC
& dc
, const wxRegion
& WXUNUSED(reg
) )
6601 #if !WXGRID_DRAW_LINES
6605 if ( !m_gridLinesEnabled
||
6607 !m_numCols
) return;
6609 int top
, bottom
, left
, right
;
6611 #if 0 //#ifndef __WXGTK__
6615 m_gridWin
->GetClientSize(&cw
, &ch
);
6617 // virtual coords of visible area
6619 CalcUnscrolledPosition( 0, 0, &left
, &top
);
6620 CalcUnscrolledPosition( cw
, ch
, &right
, &bottom
);
6625 reg
.GetBox(x
, y
, w
, h
);
6626 CalcUnscrolledPosition( x
, y
, &left
, &top
);
6627 CalcUnscrolledPosition( x
+ w
, y
+ h
, &right
, &bottom
);
6631 m_gridWin
->GetClientSize(&cw
, &ch
);
6632 CalcUnscrolledPosition( 0, 0, &left
, &top
);
6633 CalcUnscrolledPosition( cw
, ch
, &right
, &bottom
);
6636 // avoid drawing grid lines past the last row and col
6638 right
= wxMin( right
, GetColRight(m_numCols
- 1) );
6639 bottom
= wxMin( bottom
, GetRowBottom(m_numRows
- 1) );
6641 // no gridlines inside multicells, clip them out
6642 int leftCol
= XToCol(left
);
6643 int topRow
= YToRow(top
);
6644 int rightCol
= XToCol(right
);
6645 int bottomRow
= YToRow(bottom
);
6646 wxRegion
clippedcells(0, 0, cw
, ch
);
6648 if ((leftCol
>= 0) && (topRow
>= 0))
6650 if (rightCol
< 0) rightCol
= m_numCols
;
6651 if (bottomRow
< 0) bottomRow
= m_numRows
;
6653 int i
, j
, cell_rows
, cell_cols
;
6656 for (j
=topRow
; j
<bottomRow
; j
++)
6658 for (i
=leftCol
; i
<rightCol
; i
++)
6660 GetCellSize( j
, i
, &cell_rows
, &cell_cols
);
6661 if ((cell_rows
> 1) || (cell_cols
> 1))
6663 rect
= CellToRect(j
,i
);
6664 CalcScrolledPosition( rect
.x
, rect
.y
, &rect
.x
, &rect
.y
);
6665 clippedcells
.Subtract(rect
);
6667 else if ((cell_rows
< 0) || (cell_cols
< 0))
6669 rect
= CellToRect(j
+cell_rows
, i
+cell_cols
);
6670 CalcScrolledPosition( rect
.x
, rect
.y
, &rect
.x
, &rect
.y
);
6671 clippedcells
.Subtract(rect
);
6676 dc
.SetClippingRegion( clippedcells
);
6678 dc
.SetPen( wxPen(GetGridLineColour(), 1, wxSOLID
) );
6680 // horizontal grid lines
6683 for ( i
= internalYToRow(top
); i
< m_numRows
; i
++ )
6685 int bot
= GetRowBottom(i
) - 1;
6694 dc
.DrawLine( left
, bot
, right
, bot
);
6699 // vertical grid lines
6701 for ( i
= internalXToCol(left
); i
< m_numCols
; i
++ )
6703 int colRight
= GetColRight(i
) - 1;
6704 if ( colRight
> right
)
6709 if ( colRight
>= left
)
6711 dc
.DrawLine( colRight
, top
, colRight
, bottom
);
6714 dc
.DestroyClippingRegion();
6718 void wxGrid::DrawRowLabels( wxDC
& dc
,const wxArrayInt
& rows
)
6720 if ( !m_numRows
) return;
6723 size_t numLabels
= rows
.GetCount();
6725 for ( i
= 0; i
< numLabels
; i
++ )
6727 DrawRowLabel( dc
, rows
[i
] );
6732 void wxGrid::DrawRowLabel( wxDC
& dc
, int row
)
6734 if ( GetRowHeight(row
) <= 0 )
6737 int rowTop
= GetRowTop(row
),
6738 rowBottom
= GetRowBottom(row
) - 1;
6740 dc
.SetPen( *wxBLACK_PEN
);
6741 dc
.DrawLine( m_rowLabelWidth
-1, rowTop
,
6742 m_rowLabelWidth
-1, rowBottom
);
6744 dc
.DrawLine( 0, rowBottom
, m_rowLabelWidth
-1, rowBottom
);
6746 dc
.SetPen( *wxWHITE_PEN
);
6747 dc
.DrawLine( 0, rowTop
, 0, rowBottom
);
6748 dc
.DrawLine( 0, rowTop
, m_rowLabelWidth
-1, rowTop
);
6750 dc
.SetBackgroundMode( wxTRANSPARENT
);
6751 dc
.SetTextForeground( GetLabelTextColour() );
6752 dc
.SetFont( GetLabelFont() );
6755 GetRowLabelAlignment( &hAlign
, &vAlign
);
6759 rect
.SetY( GetRowTop(row
) + 2 );
6760 rect
.SetWidth( m_rowLabelWidth
- 4 );
6761 rect
.SetHeight( GetRowHeight(row
) - 4 );
6762 DrawTextRectangle( dc
, GetRowLabelValue( row
), rect
, hAlign
, vAlign
);
6766 void wxGrid::DrawColLabels( wxDC
& dc
,const wxArrayInt
& cols
)
6768 if ( !m_numCols
) return;
6771 size_t numLabels
= cols
.GetCount();
6773 for ( i
= 0; i
< numLabels
; i
++ )
6775 DrawColLabel( dc
, cols
[i
] );
6780 void wxGrid::DrawColLabel( wxDC
& dc
, int col
)
6782 if ( GetColWidth(col
) <= 0 )
6785 int colLeft
= GetColLeft(col
),
6786 colRight
= GetColRight(col
) - 1;
6788 dc
.SetPen( *wxBLACK_PEN
);
6789 dc
.DrawLine( colRight
, 0,
6790 colRight
, m_colLabelHeight
-1 );
6792 dc
.DrawLine( colLeft
, m_colLabelHeight
-1,
6793 colRight
, m_colLabelHeight
-1 );
6795 dc
.SetPen( *wxWHITE_PEN
);
6796 dc
.DrawLine( colLeft
, 0, colLeft
, m_colLabelHeight
-1 );
6797 dc
.DrawLine( colLeft
, 0, colRight
, 0 );
6799 dc
.SetBackgroundMode( wxTRANSPARENT
);
6800 dc
.SetTextForeground( GetLabelTextColour() );
6801 dc
.SetFont( GetLabelFont() );
6803 dc
.SetBackgroundMode( wxTRANSPARENT
);
6804 dc
.SetTextForeground( GetLabelTextColour() );
6805 dc
.SetFont( GetLabelFont() );
6808 GetColLabelAlignment( &hAlign
, &vAlign
);
6811 rect
.SetX( colLeft
+ 2 );
6813 rect
.SetWidth( GetColWidth(col
) - 4 );
6814 rect
.SetHeight( m_colLabelHeight
- 4 );
6815 DrawTextRectangle( dc
, GetColLabelValue( col
), rect
, hAlign
, vAlign
);
6818 void wxGrid::DrawTextRectangle( wxDC
& dc
,
6819 const wxString
& value
,
6824 wxArrayString lines
;
6826 StringToLines( value
, lines
);
6829 //Forward to new API.
6830 DrawTextRectangle( dc
,
6838 void wxGrid::DrawTextRectangle( wxDC
& dc
,
6839 const wxArrayString
& lines
,
6844 long textWidth
, textHeight
;
6845 long lineWidth
, lineHeight
;
6847 dc
.SetClippingRegion( rect
);
6848 if ( lines
.GetCount() )
6850 GetTextBoxSize( dc
, lines
, &textWidth
, &textHeight
);
6851 dc
.GetTextExtent( lines
[0], &lineWidth
, &lineHeight
);
6854 switch ( horizAlign
)
6857 x
= rect
.x
+ (rect
.width
- textWidth
- 1);
6860 case wxALIGN_CENTRE
:
6861 x
= rect
.x
+ ((rect
.width
- textWidth
)/2);
6870 switch ( vertAlign
)
6872 case wxALIGN_BOTTOM
:
6873 y
= rect
.y
+ (rect
.height
- textHeight
- 1);
6876 case wxALIGN_CENTRE
:
6877 y
= rect
.y
+ ((rect
.height
- textHeight
)/2);
6886 for ( size_t i
= 0; i
< lines
.GetCount(); i
++ )
6888 dc
.DrawText( lines
[i
], (int)x
, (int)y
);
6893 dc
.DestroyClippingRegion();
6897 // Split multi line text up into an array of strings. Any existing
6898 // contents of the string array are preserved.
6900 void wxGrid::StringToLines( const wxString
& value
, wxArrayString
& lines
)
6904 wxString eol
= wxTextFile::GetEOL( wxTextFileType_Unix
);
6905 wxString tVal
= wxTextFile::Translate( value
, wxTextFileType_Unix
);
6907 while ( startPos
< (int)tVal
.Length() )
6909 pos
= tVal
.Mid(startPos
).Find( eol
);
6914 else if ( pos
== 0 )
6916 lines
.Add( wxEmptyString
);
6920 lines
.Add( value
.Mid(startPos
, pos
) );
6924 if ( startPos
< (int)value
.Length() )
6926 lines
.Add( value
.Mid( startPos
) );
6931 void wxGrid::GetTextBoxSize( wxDC
& dc
,
6932 const wxArrayString
& lines
,
6933 long *width
, long *height
)
6940 for ( i
= 0; i
< lines
.GetCount(); i
++ )
6942 dc
.GetTextExtent( lines
[i
], &lineW
, &lineH
);
6943 w
= wxMax( w
, lineW
);
6952 // ------ Batch processing.
6954 void wxGrid::EndBatch()
6956 if ( m_batchCount
> 0 )
6959 if ( !m_batchCount
)
6962 m_rowLabelWin
->Refresh();
6963 m_colLabelWin
->Refresh();
6964 m_cornerLabelWin
->Refresh();
6965 m_gridWin
->Refresh();
6970 // Use this, rather than wxWindow::Refresh(), to force an immediate
6971 // repainting of the grid. Has no effect if you are already inside a
6972 // BeginBatch / EndBatch block.
6974 void wxGrid::ForceRefresh()
6982 // ------ Edit control functions
6986 void wxGrid::EnableEditing( bool edit
)
6988 // TODO: improve this ?
6990 if ( edit
!= m_editable
)
6992 if(!edit
) EnableCellEditControl(edit
);
6998 void wxGrid::EnableCellEditControl( bool enable
)
7003 if ( m_currentCellCoords
== wxGridNoCellCoords
)
7004 SetCurrentCell( 0, 0 );
7006 if ( enable
!= m_cellEditCtrlEnabled
)
7010 if (SendEvent( wxEVT_GRID_EDITOR_SHOWN
) <0)
7013 // this should be checked by the caller!
7014 wxASSERT_MSG( CanEnableCellControl(),
7015 _T("can't enable editing for this cell!") );
7017 // do it before ShowCellEditControl()
7018 m_cellEditCtrlEnabled
= enable
;
7020 ShowCellEditControl();
7024 //FIXME:add veto support
7025 SendEvent( wxEVT_GRID_EDITOR_HIDDEN
);
7027 HideCellEditControl();
7028 SaveEditControlValue();
7030 // do it after HideCellEditControl()
7031 m_cellEditCtrlEnabled
= enable
;
7036 bool wxGrid::IsCurrentCellReadOnly() const
7039 wxGridCellAttr
* attr
= ((wxGrid
*)this)->GetCellAttr(m_currentCellCoords
);
7040 bool readonly
= attr
->IsReadOnly();
7046 bool wxGrid::CanEnableCellControl() const
7048 return m_editable
&& !IsCurrentCellReadOnly();
7051 bool wxGrid::IsCellEditControlEnabled() const
7053 // the cell edit control might be disable for all cells or just for the
7054 // current one if it's read only
7055 return m_cellEditCtrlEnabled
? !IsCurrentCellReadOnly() : FALSE
;
7058 bool wxGrid::IsCellEditControlShown() const
7060 bool isShown
= FALSE
;
7062 if ( m_cellEditCtrlEnabled
)
7064 int row
= m_currentCellCoords
.GetRow();
7065 int col
= m_currentCellCoords
.GetCol();
7066 wxGridCellAttr
* attr
= GetCellAttr(row
, col
);
7067 wxGridCellEditor
* editor
= attr
->GetEditor((wxGrid
*) this, row
, col
);
7072 if ( editor
->IsCreated() )
7074 isShown
= editor
->GetControl()->IsShown();
7084 void wxGrid::ShowCellEditControl()
7086 if ( IsCellEditControlEnabled() )
7088 if ( !IsVisible( m_currentCellCoords
) )
7090 m_cellEditCtrlEnabled
= FALSE
;
7095 wxRect rect
= CellToRect( m_currentCellCoords
);
7096 int row
= m_currentCellCoords
.GetRow();
7097 int col
= m_currentCellCoords
.GetCol();
7099 // if this is part of a multicell, find owner (topleft)
7100 int cell_rows
, cell_cols
;
7101 GetCellSize( row
, col
, &cell_rows
, &cell_cols
);
7102 if ( cell_rows
<= 0 || cell_cols
<= 0 )
7106 m_currentCellCoords
.SetRow( row
);
7107 m_currentCellCoords
.SetCol( col
);
7110 // convert to scrolled coords
7112 CalcScrolledPosition( rect
.x
, rect
.y
, &rect
.x
, &rect
.y
);
7114 // done in PaintBackground()
7116 // erase the highlight and the cell contents because the editor
7117 // might not cover the entire cell
7118 wxClientDC
dc( m_gridWin
);
7120 dc
.SetBrush(*wxLIGHT_GREY_BRUSH
); //wxBrush(attr->GetBackgroundColour(), wxSOLID));
7121 dc
.SetPen(*wxTRANSPARENT_PEN
);
7122 dc
.DrawRectangle(rect
);
7125 // cell is shifted by one pixel
7126 // However, don't allow x or y to become negative
7127 // since the SetSize() method interprets that as
7134 wxGridCellAttr
* attr
= GetCellAttr(row
, col
);
7135 wxGridCellEditor
* editor
= attr
->GetEditor(this, row
, col
);
7136 if ( !editor
->IsCreated() )
7138 editor
->Create(m_gridWin
, -1,
7139 new wxGridCellEditorEvtHandler(this, editor
));
7141 wxGridEditorCreatedEvent
evt(GetId(),
7142 wxEVT_GRID_EDITOR_CREATED
,
7146 editor
->GetControl());
7147 GetEventHandler()->ProcessEvent(evt
);
7150 editor
->Show( TRUE
, attr
);
7152 // resize editor to overflow into righthand cells if allowed
7153 wxString value
= GetCellValue(row
, col
);
7154 if ( (value
!= wxEmptyString
) && (attr
->GetOverflow()) )
7156 wxClientDC
dc(m_gridWin
);
7157 wxCoord y
= 0, best_width
= 0;
7158 dc
.SetFont(attr
->GetFont());
7159 dc
.GetTextExtent(value
, &best_width
, &y
);
7161 int cell_rows
, cell_cols
;
7162 attr
->GetSize( &cell_rows
, &cell_cols
);
7164 if ((best_width
> rect
.width
) && (col
< m_numCols
) && m_table
)
7167 for (i
= col
+cell_cols
; i
< m_numCols
; i
++)
7169 if (m_table
->IsEmptyCell(row
,i
))
7171 rect
.width
+= GetColWidth(i
);
7172 if (rect
.width
>= best_width
) break;
7179 editor
->SetSize( rect
);
7181 editor
->BeginEdit(row
, col
, this);
7190 void wxGrid::HideCellEditControl()
7192 if ( IsCellEditControlEnabled() )
7194 int row
= m_currentCellCoords
.GetRow();
7195 int col
= m_currentCellCoords
.GetCol();
7197 wxGridCellAttr
* attr
= GetCellAttr(row
, col
);
7198 wxGridCellEditor
*editor
= attr
->GetEditor(this, row
, col
);
7199 editor
->Show( FALSE
);
7202 m_gridWin
->SetFocus();
7203 // refresh whole row to the right
7204 wxRect
rect( CellToRect(row
, col
) );
7205 CalcScrolledPosition(rect
.x
, rect
.y
, &rect
.x
, &rect
.y
);
7206 rect
.width
= m_gridWin
->GetClientSize().GetWidth() - rect
.x
;
7207 m_gridWin
->Refresh( FALSE
, &rect
);
7212 void wxGrid::SaveEditControlValue()
7214 if ( IsCellEditControlEnabled() )
7216 int row
= m_currentCellCoords
.GetRow();
7217 int col
= m_currentCellCoords
.GetCol();
7219 wxString oldval
= GetCellValue(row
,col
);
7221 wxGridCellAttr
* attr
= GetCellAttr(row
, col
);
7222 wxGridCellEditor
* editor
= attr
->GetEditor(this, row
, col
);
7223 bool changed
= editor
->EndEdit(row
, col
, this);
7230 if ( SendEvent( wxEVT_GRID_CELL_CHANGE
,
7231 m_currentCellCoords
.GetRow(),
7232 m_currentCellCoords
.GetCol() ) < 0 ) {
7234 // Event has been vetoed, set the data back.
7235 SetCellValue(row
,col
,oldval
);
7243 // ------ Grid location functions
7244 // Note that all of these functions work with the logical coordinates of
7245 // grid cells and labels so you will need to convert from device
7246 // coordinates for mouse events etc.
7249 void wxGrid::XYToCell( int x
, int y
, wxGridCellCoords
& coords
)
7251 int row
= YToRow(y
);
7252 int col
= XToCol(x
);
7254 if ( row
== -1 || col
== -1 )
7256 coords
= wxGridNoCellCoords
;
7260 coords
.Set( row
, col
);
7265 // Internal Helper function for computing row or column from some
7266 // (unscrolled) coordinate value, using either
7267 // m_defaultRowHeight/m_defaultColWidth or binary search on array
7268 // of m_rowBottoms/m_ColRights to speed up the search!
7270 static int CoordToRowOrCol(int coord
, int defaultDist
, int minDist
,
7271 const wxArrayInt
& BorderArray
, bool maxOnOverflow
)
7275 size_t i_max
= coord
/ defaultDist
,
7277 if (BorderArray
.IsEmpty())
7279 return maxOnOverflow
? (int)i_max
: -1;
7282 if ( i_max
>= BorderArray
.GetCount())
7283 i_max
= BorderArray
.GetCount() - 1;
7286 if ( coord
>= BorderArray
[i_max
])
7289 i_max
= coord
/ minDist
;
7291 if ( i_max
>= BorderArray
.GetCount())
7292 i_max
= BorderArray
.GetCount() - 1;
7294 if ( coord
>= BorderArray
[i_max
])
7295 return maxOnOverflow
? (int)i_max
: -1;
7296 if ( coord
< BorderArray
[0] )
7299 while ( i_max
- i_min
> 0 )
7301 wxCHECK_MSG(BorderArray
[i_min
] <= coord
&& coord
< BorderArray
[i_max
],
7302 0, _T("wxGrid: internal error in CoordToRowOrCol"));
7303 if (coord
>= BorderArray
[ i_max
- 1])
7307 int median
= i_min
+ (i_max
- i_min
+ 1) / 2;
7308 if (coord
< BorderArray
[median
])
7316 int wxGrid::YToRow( int y
)
7318 return CoordToRowOrCol(y
, m_defaultRowHeight
,
7319 WXGRID_MIN_ROW_HEIGHT
, m_rowBottoms
, FALSE
);
7323 int wxGrid::XToCol( int x
)
7325 return CoordToRowOrCol(x
, m_defaultColWidth
,
7326 WXGRID_MIN_COL_WIDTH
, m_colRights
, FALSE
);
7330 // return the row number that that the y coord is near the edge of, or
7331 // -1 if not near an edge
7333 int wxGrid::YToEdgeOfRow( int y
)
7336 i
= internalYToRow(y
);
7338 if ( GetRowHeight(i
) > WXGRID_LABEL_EDGE_ZONE
)
7340 // We know that we are in row i, test whether we are
7341 // close enough to lower or upper border, respectively.
7342 if ( abs(GetRowBottom(i
) - y
) < WXGRID_LABEL_EDGE_ZONE
)
7344 else if( i
> 0 && y
- GetRowTop(i
) < WXGRID_LABEL_EDGE_ZONE
)
7352 // return the col number that that the x coord is near the edge of, or
7353 // -1 if not near an edge
7355 int wxGrid::XToEdgeOfCol( int x
)
7358 i
= internalXToCol(x
);
7360 if ( GetColWidth(i
) > WXGRID_LABEL_EDGE_ZONE
)
7362 // We know that we are in column i, test whether we are
7363 // close enough to right or left border, respectively.
7364 if ( abs(GetColRight(i
) - x
) < WXGRID_LABEL_EDGE_ZONE
)
7366 else if( i
> 0 && x
- GetColLeft(i
) < WXGRID_LABEL_EDGE_ZONE
)
7374 wxRect
wxGrid::CellToRect( int row
, int col
)
7376 wxRect
rect( -1, -1, -1, -1 );
7378 if ( row
>= 0 && row
< m_numRows
&&
7379 col
>= 0 && col
< m_numCols
)
7381 int i
, cell_rows
, cell_cols
;
7382 rect
.width
= rect
.height
= 0;
7383 GetCellSize( row
, col
, &cell_rows
, &cell_cols
);
7384 // if negative then find multicell owner
7385 if (cell_rows
< 0) row
+= cell_rows
;
7386 if (cell_cols
< 0) col
+= cell_cols
;
7387 GetCellSize( row
, col
, &cell_rows
, &cell_cols
);
7389 rect
.x
= GetColLeft(col
);
7390 rect
.y
= GetRowTop(row
);
7391 for (i
=col
; i
<col
+cell_cols
; i
++)
7392 rect
.width
+= GetColWidth(i
);
7393 for (i
=row
; i
<row
+cell_rows
; i
++)
7394 rect
.height
+= GetRowHeight(i
);
7397 // if grid lines are enabled, then the area of the cell is a bit smaller
7398 if (m_gridLinesEnabled
) {
7406 bool wxGrid::IsVisible( int row
, int col
, bool wholeCellVisible
)
7408 // get the cell rectangle in logical coords
7410 wxRect
r( CellToRect( row
, col
) );
7412 // convert to device coords
7414 int left
, top
, right
, bottom
;
7415 CalcScrolledPosition( r
.GetLeft(), r
.GetTop(), &left
, &top
);
7416 CalcScrolledPosition( r
.GetRight(), r
.GetBottom(), &right
, &bottom
);
7418 // check against the client area of the grid window
7421 m_gridWin
->GetClientSize( &cw
, &ch
);
7423 if ( wholeCellVisible
)
7425 // is the cell wholly visible ?
7427 return ( left
>= 0 && right
<= cw
&&
7428 top
>= 0 && bottom
<= ch
);
7432 // is the cell partly visible ?
7434 return ( ((left
>=0 && left
< cw
) || (right
> 0 && right
<= cw
)) &&
7435 ((top
>=0 && top
< ch
) || (bottom
> 0 && bottom
<= ch
)) );
7440 // make the specified cell location visible by doing a minimal amount
7443 void wxGrid::MakeCellVisible( int row
, int col
)
7447 int xpos
= -1, ypos
= -1;
7449 if ( row
>= 0 && row
< m_numRows
&&
7450 col
>= 0 && col
< m_numCols
)
7452 // get the cell rectangle in logical coords
7454 wxRect
r( CellToRect( row
, col
) );
7456 // convert to device coords
7458 int left
, top
, right
, bottom
;
7459 CalcScrolledPosition( r
.GetLeft(), r
.GetTop(), &left
, &top
);
7460 CalcScrolledPosition( r
.GetRight(), r
.GetBottom(), &right
, &bottom
);
7463 m_gridWin
->GetClientSize( &cw
, &ch
);
7469 else if ( bottom
> ch
)
7471 int h
= r
.GetHeight();
7473 for ( i
= row
-1; i
>= 0; i
-- )
7475 int rowHeight
= GetRowHeight(i
);
7476 if ( h
+ rowHeight
> ch
)
7483 // we divide it later by GRID_SCROLL_LINE, make sure that we don't
7484 // have rounding errors (this is important, because if we do, we
7485 // might not scroll at all and some cells won't be redrawn)
7487 // Sometimes GRID_SCROLL_LINE/2 is not enough, so just add a full
7489 ypos
+= GRID_SCROLL_LINE_Y
;
7496 else if ( right
> cw
)
7498 int w
= r
.GetWidth();
7500 for ( i
= col
-1; i
>= 0; i
-- )
7502 int colWidth
= GetColWidth(i
);
7503 if ( w
+ colWidth
> cw
)
7510 // see comment for ypos above
7511 xpos
+= GRID_SCROLL_LINE_X
;
7514 if ( xpos
!= -1 || ypos
!= -1 )
7517 xpos
/= GRID_SCROLL_LINE_X
;
7519 ypos
/= GRID_SCROLL_LINE_Y
;
7520 Scroll( xpos
, ypos
);
7528 // ------ Grid cursor movement functions
7531 bool wxGrid::MoveCursorUp( bool expandSelection
)
7533 if ( m_currentCellCoords
!= wxGridNoCellCoords
&&
7534 m_currentCellCoords
.GetRow() >= 0 )
7536 if ( expandSelection
)
7538 if ( m_selectingKeyboard
== wxGridNoCellCoords
)
7539 m_selectingKeyboard
= m_currentCellCoords
;
7540 if ( m_selectingKeyboard
.GetRow() > 0 )
7542 m_selectingKeyboard
.SetRow( m_selectingKeyboard
.GetRow() - 1 );
7543 MakeCellVisible( m_selectingKeyboard
.GetRow(),
7544 m_selectingKeyboard
.GetCol() );
7545 HighlightBlock( m_currentCellCoords
, m_selectingKeyboard
);
7548 else if ( m_currentCellCoords
.GetRow() > 0 )
7551 MakeCellVisible( m_currentCellCoords
.GetRow() - 1,
7552 m_currentCellCoords
.GetCol() );
7553 SetCurrentCell( m_currentCellCoords
.GetRow() - 1,
7554 m_currentCellCoords
.GetCol() );
7565 bool wxGrid::MoveCursorDown( bool expandSelection
)
7567 if ( m_currentCellCoords
!= wxGridNoCellCoords
&&
7568 m_currentCellCoords
.GetRow() < m_numRows
)
7570 if ( expandSelection
)
7572 if ( m_selectingKeyboard
== wxGridNoCellCoords
)
7573 m_selectingKeyboard
= m_currentCellCoords
;
7574 if ( m_selectingKeyboard
.GetRow() < m_numRows
-1 )
7576 m_selectingKeyboard
.SetRow( m_selectingKeyboard
.GetRow() + 1 );
7577 MakeCellVisible( m_selectingKeyboard
.GetRow(),
7578 m_selectingKeyboard
.GetCol() );
7579 HighlightBlock( m_currentCellCoords
, m_selectingKeyboard
);
7582 else if ( m_currentCellCoords
.GetRow() < m_numRows
- 1 )
7585 MakeCellVisible( m_currentCellCoords
.GetRow() + 1,
7586 m_currentCellCoords
.GetCol() );
7587 SetCurrentCell( m_currentCellCoords
.GetRow() + 1,
7588 m_currentCellCoords
.GetCol() );
7599 bool wxGrid::MoveCursorLeft( bool expandSelection
)
7601 if ( m_currentCellCoords
!= wxGridNoCellCoords
&&
7602 m_currentCellCoords
.GetCol() >= 0 )
7604 if ( expandSelection
)
7606 if ( m_selectingKeyboard
== wxGridNoCellCoords
)
7607 m_selectingKeyboard
= m_currentCellCoords
;
7608 if ( m_selectingKeyboard
.GetCol() > 0 )
7610 m_selectingKeyboard
.SetCol( m_selectingKeyboard
.GetCol() - 1 );
7611 MakeCellVisible( m_selectingKeyboard
.GetRow(),
7612 m_selectingKeyboard
.GetCol() );
7613 HighlightBlock( m_currentCellCoords
, m_selectingKeyboard
);
7616 else if ( m_currentCellCoords
.GetCol() > 0 )
7619 MakeCellVisible( m_currentCellCoords
.GetRow(),
7620 m_currentCellCoords
.GetCol() - 1 );
7621 SetCurrentCell( m_currentCellCoords
.GetRow(),
7622 m_currentCellCoords
.GetCol() - 1 );
7633 bool wxGrid::MoveCursorRight( bool expandSelection
)
7635 if ( m_currentCellCoords
!= wxGridNoCellCoords
&&
7636 m_currentCellCoords
.GetCol() < m_numCols
)
7638 if ( expandSelection
)
7640 if ( m_selectingKeyboard
== wxGridNoCellCoords
)
7641 m_selectingKeyboard
= m_currentCellCoords
;
7642 if ( m_selectingKeyboard
.GetCol() < m_numCols
- 1 )
7644 m_selectingKeyboard
.SetCol( m_selectingKeyboard
.GetCol() + 1 );
7645 MakeCellVisible( m_selectingKeyboard
.GetRow(),
7646 m_selectingKeyboard
.GetCol() );
7647 HighlightBlock( m_currentCellCoords
, m_selectingKeyboard
);
7650 else if ( m_currentCellCoords
.GetCol() < m_numCols
- 1 )
7653 MakeCellVisible( m_currentCellCoords
.GetRow(),
7654 m_currentCellCoords
.GetCol() + 1 );
7655 SetCurrentCell( m_currentCellCoords
.GetRow(),
7656 m_currentCellCoords
.GetCol() + 1 );
7667 bool wxGrid::MovePageUp()
7669 if ( m_currentCellCoords
== wxGridNoCellCoords
) return FALSE
;
7671 int row
= m_currentCellCoords
.GetRow();
7675 m_gridWin
->GetClientSize( &cw
, &ch
);
7677 int y
= GetRowTop(row
);
7678 int newRow
= YToRow( y
- ch
+ 1 );
7683 else if ( newRow
== row
)
7688 MakeCellVisible( newRow
, m_currentCellCoords
.GetCol() );
7689 SetCurrentCell( newRow
, m_currentCellCoords
.GetCol() );
7697 bool wxGrid::MovePageDown()
7699 if ( m_currentCellCoords
== wxGridNoCellCoords
) return FALSE
;
7701 int row
= m_currentCellCoords
.GetRow();
7702 if ( row
< m_numRows
)
7705 m_gridWin
->GetClientSize( &cw
, &ch
);
7707 int y
= GetRowTop(row
);
7708 int newRow
= YToRow( y
+ ch
);
7711 newRow
= m_numRows
- 1;
7713 else if ( newRow
== row
)
7718 MakeCellVisible( newRow
, m_currentCellCoords
.GetCol() );
7719 SetCurrentCell( newRow
, m_currentCellCoords
.GetCol() );
7727 bool wxGrid::MoveCursorUpBlock( bool expandSelection
)
7730 m_currentCellCoords
!= wxGridNoCellCoords
&&
7731 m_currentCellCoords
.GetRow() > 0 )
7733 int row
= m_currentCellCoords
.GetRow();
7734 int col
= m_currentCellCoords
.GetCol();
7736 if ( m_table
->IsEmptyCell(row
, col
) )
7738 // starting in an empty cell: find the next block of
7744 if ( !(m_table
->IsEmptyCell(row
, col
)) ) break;
7747 else if ( m_table
->IsEmptyCell(row
-1, col
) )
7749 // starting at the top of a block: find the next block
7755 if ( !(m_table
->IsEmptyCell(row
, col
)) ) break;
7760 // starting within a block: find the top of the block
7765 if ( m_table
->IsEmptyCell(row
, col
) )
7773 MakeCellVisible( row
, col
);
7774 if ( expandSelection
)
7776 m_selectingKeyboard
= wxGridCellCoords( row
, col
);
7777 HighlightBlock( m_currentCellCoords
, m_selectingKeyboard
);
7782 SetCurrentCell( row
, col
);
7790 bool wxGrid::MoveCursorDownBlock( bool expandSelection
)
7793 m_currentCellCoords
!= wxGridNoCellCoords
&&
7794 m_currentCellCoords
.GetRow() < m_numRows
-1 )
7796 int row
= m_currentCellCoords
.GetRow();
7797 int col
= m_currentCellCoords
.GetCol();
7799 if ( m_table
->IsEmptyCell(row
, col
) )
7801 // starting in an empty cell: find the next block of
7804 while ( row
< m_numRows
-1 )
7807 if ( !(m_table
->IsEmptyCell(row
, col
)) ) break;
7810 else if ( m_table
->IsEmptyCell(row
+1, col
) )
7812 // starting at the bottom of a block: find the next block
7815 while ( row
< m_numRows
-1 )
7818 if ( !(m_table
->IsEmptyCell(row
, col
)) ) break;
7823 // starting within a block: find the bottom of the block
7825 while ( row
< m_numRows
-1 )
7828 if ( m_table
->IsEmptyCell(row
, col
) )
7836 MakeCellVisible( row
, col
);
7837 if ( expandSelection
)
7839 m_selectingKeyboard
= wxGridCellCoords( row
, col
);
7840 HighlightBlock( m_currentCellCoords
, m_selectingKeyboard
);
7845 SetCurrentCell( row
, col
);
7854 bool wxGrid::MoveCursorLeftBlock( bool expandSelection
)
7857 m_currentCellCoords
!= wxGridNoCellCoords
&&
7858 m_currentCellCoords
.GetCol() > 0 )
7860 int row
= m_currentCellCoords
.GetRow();
7861 int col
= m_currentCellCoords
.GetCol();
7863 if ( m_table
->IsEmptyCell(row
, col
) )
7865 // starting in an empty cell: find the next block of
7871 if ( !(m_table
->IsEmptyCell(row
, col
)) ) break;
7874 else if ( m_table
->IsEmptyCell(row
, col
-1) )
7876 // starting at the left of a block: find the next block
7882 if ( !(m_table
->IsEmptyCell(row
, col
)) ) break;
7887 // starting within a block: find the left of the block
7892 if ( m_table
->IsEmptyCell(row
, col
) )
7900 MakeCellVisible( row
, col
);
7901 if ( expandSelection
)
7903 m_selectingKeyboard
= wxGridCellCoords( row
, col
);
7904 HighlightBlock( m_currentCellCoords
, m_selectingKeyboard
);
7909 SetCurrentCell( row
, col
);
7918 bool wxGrid::MoveCursorRightBlock( bool expandSelection
)
7921 m_currentCellCoords
!= wxGridNoCellCoords
&&
7922 m_currentCellCoords
.GetCol() < m_numCols
-1 )
7924 int row
= m_currentCellCoords
.GetRow();
7925 int col
= m_currentCellCoords
.GetCol();
7927 if ( m_table
->IsEmptyCell(row
, col
) )
7929 // starting in an empty cell: find the next block of
7932 while ( col
< m_numCols
-1 )
7935 if ( !(m_table
->IsEmptyCell(row
, col
)) ) break;
7938 else if ( m_table
->IsEmptyCell(row
, col
+1) )
7940 // starting at the right of a block: find the next block
7943 while ( col
< m_numCols
-1 )
7946 if ( !(m_table
->IsEmptyCell(row
, col
)) ) break;
7951 // starting within a block: find the right of the block
7953 while ( col
< m_numCols
-1 )
7956 if ( m_table
->IsEmptyCell(row
, col
) )
7964 MakeCellVisible( row
, col
);
7965 if ( expandSelection
)
7967 m_selectingKeyboard
= wxGridCellCoords( row
, col
);
7968 HighlightBlock( m_currentCellCoords
, m_selectingKeyboard
);
7973 SetCurrentCell( row
, col
);
7985 // ------ Label values and formatting
7988 void wxGrid::GetRowLabelAlignment( int *horiz
, int *vert
)
7990 *horiz
= m_rowLabelHorizAlign
;
7991 *vert
= m_rowLabelVertAlign
;
7994 void wxGrid::GetColLabelAlignment( int *horiz
, int *vert
)
7996 *horiz
= m_colLabelHorizAlign
;
7997 *vert
= m_colLabelVertAlign
;
8000 wxString
wxGrid::GetRowLabelValue( int row
)
8004 return m_table
->GetRowLabelValue( row
);
8014 wxString
wxGrid::GetColLabelValue( int col
)
8018 return m_table
->GetColLabelValue( col
);
8029 void wxGrid::SetRowLabelSize( int width
)
8031 width
= wxMax( width
, 0 );
8032 if ( width
!= m_rowLabelWidth
)
8036 m_rowLabelWin
->Show( FALSE
);
8037 m_cornerLabelWin
->Show( FALSE
);
8039 else if ( m_rowLabelWidth
== 0 )
8041 m_rowLabelWin
->Show( TRUE
);
8042 if ( m_colLabelHeight
> 0 ) m_cornerLabelWin
->Show( TRUE
);
8045 m_rowLabelWidth
= width
;
8047 wxScrolledWindow::Refresh( TRUE
);
8052 void wxGrid::SetColLabelSize( int height
)
8054 height
= wxMax( height
, 0 );
8055 if ( height
!= m_colLabelHeight
)
8059 m_colLabelWin
->Show( FALSE
);
8060 m_cornerLabelWin
->Show( FALSE
);
8062 else if ( m_colLabelHeight
== 0 )
8064 m_colLabelWin
->Show( TRUE
);
8065 if ( m_rowLabelWidth
> 0 ) m_cornerLabelWin
->Show( TRUE
);
8068 m_colLabelHeight
= height
;
8070 wxScrolledWindow::Refresh( TRUE
);
8075 void wxGrid::SetLabelBackgroundColour( const wxColour
& colour
)
8077 if ( m_labelBackgroundColour
!= colour
)
8079 m_labelBackgroundColour
= colour
;
8080 m_rowLabelWin
->SetBackgroundColour( colour
);
8081 m_colLabelWin
->SetBackgroundColour( colour
);
8082 m_cornerLabelWin
->SetBackgroundColour( colour
);
8084 if ( !GetBatchCount() )
8086 m_rowLabelWin
->Refresh();
8087 m_colLabelWin
->Refresh();
8088 m_cornerLabelWin
->Refresh();
8093 void wxGrid::SetLabelTextColour( const wxColour
& colour
)
8095 if ( m_labelTextColour
!= colour
)
8097 m_labelTextColour
= colour
;
8098 if ( !GetBatchCount() )
8100 m_rowLabelWin
->Refresh();
8101 m_colLabelWin
->Refresh();
8106 void wxGrid::SetLabelFont( const wxFont
& font
)
8109 if ( !GetBatchCount() )
8111 m_rowLabelWin
->Refresh();
8112 m_colLabelWin
->Refresh();
8116 void wxGrid::SetRowLabelAlignment( int horiz
, int vert
)
8118 // allow old (incorrect) defs to be used
8121 case wxLEFT
: horiz
= wxALIGN_LEFT
; break;
8122 case wxRIGHT
: horiz
= wxALIGN_RIGHT
; break;
8123 case wxCENTRE
: horiz
= wxALIGN_CENTRE
; break;
8128 case wxTOP
: vert
= wxALIGN_TOP
; break;
8129 case wxBOTTOM
: vert
= wxALIGN_BOTTOM
; break;
8130 case wxCENTRE
: vert
= wxALIGN_CENTRE
; break;
8133 if ( horiz
== wxALIGN_LEFT
|| horiz
== wxALIGN_CENTRE
|| horiz
== wxALIGN_RIGHT
)
8135 m_rowLabelHorizAlign
= horiz
;
8138 if ( vert
== wxALIGN_TOP
|| vert
== wxALIGN_CENTRE
|| vert
== wxALIGN_BOTTOM
)
8140 m_rowLabelVertAlign
= vert
;
8143 if ( !GetBatchCount() )
8145 m_rowLabelWin
->Refresh();
8149 void wxGrid::SetColLabelAlignment( int horiz
, int vert
)
8151 // allow old (incorrect) defs to be used
8154 case wxLEFT
: horiz
= wxALIGN_LEFT
; break;
8155 case wxRIGHT
: horiz
= wxALIGN_RIGHT
; break;
8156 case wxCENTRE
: horiz
= wxALIGN_CENTRE
; break;
8161 case wxTOP
: vert
= wxALIGN_TOP
; break;
8162 case wxBOTTOM
: vert
= wxALIGN_BOTTOM
; break;
8163 case wxCENTRE
: vert
= wxALIGN_CENTRE
; break;
8166 if ( horiz
== wxALIGN_LEFT
|| horiz
== wxALIGN_CENTRE
|| horiz
== wxALIGN_RIGHT
)
8168 m_colLabelHorizAlign
= horiz
;
8171 if ( vert
== wxALIGN_TOP
|| vert
== wxALIGN_CENTRE
|| vert
== wxALIGN_BOTTOM
)
8173 m_colLabelVertAlign
= vert
;
8176 if ( !GetBatchCount() )
8178 m_colLabelWin
->Refresh();
8182 void wxGrid::SetRowLabelValue( int row
, const wxString
& s
)
8186 m_table
->SetRowLabelValue( row
, s
);
8187 if ( !GetBatchCount() )
8189 wxRect rect
= CellToRect( row
, 0);
8190 if ( rect
.height
> 0 )
8192 CalcScrolledPosition(0, rect
.y
, &rect
.x
, &rect
.y
);
8194 rect
.width
= m_rowLabelWidth
;
8195 m_rowLabelWin
->Refresh( TRUE
, &rect
);
8201 void wxGrid::SetColLabelValue( int col
, const wxString
& s
)
8205 m_table
->SetColLabelValue( col
, s
);
8206 if ( !GetBatchCount() )
8208 wxRect rect
= CellToRect( 0, col
);
8209 if ( rect
.width
> 0 )
8211 CalcScrolledPosition(rect
.x
, 0, &rect
.x
, &rect
.y
);
8213 rect
.height
= m_colLabelHeight
;
8214 m_colLabelWin
->Refresh( TRUE
, &rect
);
8220 void wxGrid::SetGridLineColour( const wxColour
& colour
)
8222 if ( m_gridLineColour
!= colour
)
8224 m_gridLineColour
= colour
;
8226 wxClientDC
dc( m_gridWin
);
8228 DrawAllGridLines( dc
, wxRegion() );
8233 void wxGrid::SetCellHighlightColour( const wxColour
& colour
)
8235 if ( m_cellHighlightColour
!= colour
)
8237 m_cellHighlightColour
= colour
;
8239 wxClientDC
dc( m_gridWin
);
8241 wxGridCellAttr
* attr
= GetCellAttr(m_currentCellCoords
);
8242 DrawCellHighlight(dc
, attr
);
8247 void wxGrid::SetCellHighlightPenWidth(int width
)
8249 if (m_cellHighlightPenWidth
!= width
) {
8250 m_cellHighlightPenWidth
= width
;
8252 // Just redrawing the cell highlight is not enough since that won't
8253 // make any visible change if the the thickness is getting smaller.
8254 int row
= m_currentCellCoords
.GetRow();
8255 int col
= m_currentCellCoords
.GetCol();
8256 if ( GetColWidth(col
) <= 0 || GetRowHeight(row
) <= 0 )
8258 wxRect rect
= CellToRect(row
, col
);
8259 m_gridWin
->Refresh(TRUE
, &rect
);
8263 void wxGrid::SetCellHighlightROPenWidth(int width
)
8265 if (m_cellHighlightROPenWidth
!= width
) {
8266 m_cellHighlightROPenWidth
= width
;
8268 // Just redrawing the cell highlight is not enough since that won't
8269 // make any visible change if the the thickness is getting smaller.
8270 int row
= m_currentCellCoords
.GetRow();
8271 int col
= m_currentCellCoords
.GetCol();
8272 if ( GetColWidth(col
) <= 0 || GetRowHeight(row
) <= 0 )
8274 wxRect rect
= CellToRect(row
, col
);
8275 m_gridWin
->Refresh(TRUE
, &rect
);
8279 void wxGrid::EnableGridLines( bool enable
)
8281 if ( enable
!= m_gridLinesEnabled
)
8283 m_gridLinesEnabled
= enable
;
8285 if ( !GetBatchCount() )
8289 wxClientDC
dc( m_gridWin
);
8291 DrawAllGridLines( dc
, wxRegion() );
8295 m_gridWin
->Refresh();
8302 int wxGrid::GetDefaultRowSize()
8304 return m_defaultRowHeight
;
8307 int wxGrid::GetRowSize( int row
)
8309 wxCHECK_MSG( row
>= 0 && row
< m_numRows
, 0, _T("invalid row index") );
8311 return GetRowHeight(row
);
8314 int wxGrid::GetDefaultColSize()
8316 return m_defaultColWidth
;
8319 int wxGrid::GetColSize( int col
)
8321 wxCHECK_MSG( col
>= 0 && col
< m_numCols
, 0, _T("invalid column index") );
8323 return GetColWidth(col
);
8326 // ============================================================================
8327 // access to the grid attributes: each of them has a default value in the grid
8328 // itself and may be overidden on a per-cell basis
8329 // ============================================================================
8331 // ----------------------------------------------------------------------------
8332 // setting default attributes
8333 // ----------------------------------------------------------------------------
8335 void wxGrid::SetDefaultCellBackgroundColour( const wxColour
& col
)
8337 m_defaultCellAttr
->SetBackgroundColour(col
);
8339 m_gridWin
->SetBackgroundColour(col
);
8343 void wxGrid::SetDefaultCellTextColour( const wxColour
& col
)
8345 m_defaultCellAttr
->SetTextColour(col
);
8348 void wxGrid::SetDefaultCellAlignment( int horiz
, int vert
)
8350 m_defaultCellAttr
->SetAlignment(horiz
, vert
);
8353 void wxGrid::SetDefaultCellOverflow( bool allow
)
8355 m_defaultCellAttr
->SetOverflow(allow
);
8358 void wxGrid::SetDefaultCellFont( const wxFont
& font
)
8360 m_defaultCellAttr
->SetFont(font
);
8363 void wxGrid::SetDefaultRenderer(wxGridCellRenderer
*renderer
)
8365 m_defaultCellAttr
->SetRenderer(renderer
);
8368 void wxGrid::SetDefaultEditor(wxGridCellEditor
*editor
)
8370 m_defaultCellAttr
->SetEditor(editor
);
8373 // ----------------------------------------------------------------------------
8374 // access to the default attrbiutes
8375 // ----------------------------------------------------------------------------
8377 wxColour
wxGrid::GetDefaultCellBackgroundColour()
8379 return m_defaultCellAttr
->GetBackgroundColour();
8382 wxColour
wxGrid::GetDefaultCellTextColour()
8384 return m_defaultCellAttr
->GetTextColour();
8387 wxFont
wxGrid::GetDefaultCellFont()
8389 return m_defaultCellAttr
->GetFont();
8392 void wxGrid::GetDefaultCellAlignment( int *horiz
, int *vert
)
8394 m_defaultCellAttr
->GetAlignment(horiz
, vert
);
8397 bool wxGrid::GetDefaultCellOverflow()
8399 return m_defaultCellAttr
->GetOverflow();
8402 wxGridCellRenderer
*wxGrid::GetDefaultRenderer() const
8404 return m_defaultCellAttr
->GetRenderer(NULL
, 0, 0);
8407 wxGridCellEditor
*wxGrid::GetDefaultEditor() const
8409 return m_defaultCellAttr
->GetEditor(NULL
,0,0);
8412 // ----------------------------------------------------------------------------
8413 // access to cell attributes
8414 // ----------------------------------------------------------------------------
8416 wxColour
wxGrid::GetCellBackgroundColour(int row
, int col
)
8418 wxGridCellAttr
*attr
= GetCellAttr(row
, col
);
8419 wxColour colour
= attr
->GetBackgroundColour();
8424 wxColour
wxGrid::GetCellTextColour( int row
, int col
)
8426 wxGridCellAttr
*attr
= GetCellAttr(row
, col
);
8427 wxColour colour
= attr
->GetTextColour();
8432 wxFont
wxGrid::GetCellFont( int row
, int col
)
8434 wxGridCellAttr
*attr
= GetCellAttr(row
, col
);
8435 wxFont font
= attr
->GetFont();
8440 void wxGrid::GetCellAlignment( int row
, int col
, int *horiz
, int *vert
)
8442 wxGridCellAttr
*attr
= GetCellAttr(row
, col
);
8443 attr
->GetAlignment(horiz
, vert
);
8447 bool wxGrid::GetCellOverflow( int row
, int col
)
8449 wxGridCellAttr
*attr
= GetCellAttr(row
, col
);
8450 bool allow
= attr
->GetOverflow();
8455 void wxGrid::GetCellSize( int row
, int col
, int *num_rows
, int *num_cols
)
8457 wxGridCellAttr
*attr
= GetCellAttr(row
, col
);
8458 attr
->GetSize( num_rows
, num_cols
);
8462 wxGridCellRenderer
* wxGrid::GetCellRenderer(int row
, int col
)
8464 wxGridCellAttr
* attr
= GetCellAttr(row
, col
);
8465 wxGridCellRenderer
* renderer
= attr
->GetRenderer(this, row
, col
);
8471 wxGridCellEditor
* wxGrid::GetCellEditor(int row
, int col
)
8473 wxGridCellAttr
* attr
= GetCellAttr(row
, col
);
8474 wxGridCellEditor
* editor
= attr
->GetEditor(this, row
, col
);
8480 bool wxGrid::IsReadOnly(int row
, int col
) const
8482 wxGridCellAttr
* attr
= GetCellAttr(row
, col
);
8483 bool isReadOnly
= attr
->IsReadOnly();
8488 // ----------------------------------------------------------------------------
8489 // attribute support: cache, automatic provider creation, ...
8490 // ----------------------------------------------------------------------------
8492 bool wxGrid::CanHaveAttributes()
8499 return m_table
->CanHaveAttributes();
8502 void wxGrid::ClearAttrCache()
8504 if ( m_attrCache
.row
!= -1 )
8506 wxSafeDecRef(m_attrCache
.attr
);
8507 m_attrCache
.attr
= NULL
;
8508 m_attrCache
.row
= -1;
8512 void wxGrid::CacheAttr(int row
, int col
, wxGridCellAttr
*attr
) const
8514 wxGrid
*self
= (wxGrid
*)this; // const_cast
8516 self
->ClearAttrCache();
8517 self
->m_attrCache
.row
= row
;
8518 self
->m_attrCache
.col
= col
;
8519 self
->m_attrCache
.attr
= attr
;
8523 bool wxGrid::LookupAttr(int row
, int col
, wxGridCellAttr
**attr
) const
8525 if ( row
== m_attrCache
.row
&& col
== m_attrCache
.col
)
8527 *attr
= m_attrCache
.attr
;
8528 wxSafeIncRef(m_attrCache
.attr
);
8530 #ifdef DEBUG_ATTR_CACHE
8531 gs_nAttrCacheHits
++;
8538 #ifdef DEBUG_ATTR_CACHE
8539 gs_nAttrCacheMisses
++;
8545 wxGridCellAttr
*wxGrid::GetCellAttr(int row
, int col
) const
8547 wxGridCellAttr
*attr
= NULL
;
8548 // Additional test to avoid looking at the cache e.g. for
8549 // wxNoCellCoords, as this will confuse memory management.
8552 if ( !LookupAttr(row
, col
, &attr
) )
8554 attr
= m_table
? m_table
->GetAttr(row
, col
, wxGridCellAttr::Any
)
8555 : (wxGridCellAttr
*)NULL
;
8556 CacheAttr(row
, col
, attr
);
8561 attr
->SetDefAttr(m_defaultCellAttr
);
8565 attr
= m_defaultCellAttr
;
8572 wxGridCellAttr
*wxGrid::GetOrCreateCellAttr(int row
, int col
) const
8574 wxGridCellAttr
*attr
= (wxGridCellAttr
*)NULL
;
8576 wxCHECK_MSG( m_table
, attr
,
8577 _T("we may only be called if CanHaveAttributes() returned TRUE and then m_table should be !NULL") );
8579 attr
= m_table
->GetAttr(row
, col
, wxGridCellAttr::Cell
);
8582 attr
= new wxGridCellAttr(m_defaultCellAttr
);
8584 // artificially inc the ref count to match DecRef() in caller
8586 m_table
->SetAttr(attr
, row
, col
);
8592 // ----------------------------------------------------------------------------
8593 // setting column attributes (wrappers around SetColAttr)
8594 // ----------------------------------------------------------------------------
8596 void wxGrid::SetColFormatBool(int col
)
8598 SetColFormatCustom(col
, wxGRID_VALUE_BOOL
);
8601 void wxGrid::SetColFormatNumber(int col
)
8603 SetColFormatCustom(col
, wxGRID_VALUE_NUMBER
);
8606 void wxGrid::SetColFormatFloat(int col
, int width
, int precision
)
8608 wxString typeName
= wxGRID_VALUE_FLOAT
;
8609 if ( (width
!= -1) || (precision
!= -1) )
8611 typeName
<< _T(':') << width
<< _T(',') << precision
;
8614 SetColFormatCustom(col
, typeName
);
8617 void wxGrid::SetColFormatCustom(int col
, const wxString
& typeName
)
8619 wxGridCellAttr
*attr
= (wxGridCellAttr
*)NULL
;
8621 attr
= m_table
->GetAttr(-1, col
, wxGridCellAttr::Col
);
8623 attr
= new wxGridCellAttr
;
8624 wxGridCellRenderer
*renderer
= GetDefaultRendererForType(typeName
);
8625 attr
->SetRenderer(renderer
);
8627 SetColAttr(col
, attr
);
8631 // ----------------------------------------------------------------------------
8632 // setting cell attributes: this is forwarded to the table
8633 // ----------------------------------------------------------------------------
8635 void wxGrid::SetAttr(int row
, int col
, wxGridCellAttr
*attr
)
8637 if ( CanHaveAttributes() )
8639 m_table
->SetAttr(attr
, row
, col
);
8648 void wxGrid::SetRowAttr(int row
, wxGridCellAttr
*attr
)
8650 if ( CanHaveAttributes() )
8652 m_table
->SetRowAttr(attr
, row
);
8661 void wxGrid::SetColAttr(int col
, wxGridCellAttr
*attr
)
8663 if ( CanHaveAttributes() )
8665 m_table
->SetColAttr(attr
, col
);
8674 void wxGrid::SetCellBackgroundColour( int row
, int col
, const wxColour
& colour
)
8676 if ( CanHaveAttributes() )
8678 wxGridCellAttr
*attr
= GetOrCreateCellAttr(row
, col
);
8679 attr
->SetBackgroundColour(colour
);
8684 void wxGrid::SetCellTextColour( int row
, int col
, const wxColour
& colour
)
8686 if ( CanHaveAttributes() )
8688 wxGridCellAttr
*attr
= GetOrCreateCellAttr(row
, col
);
8689 attr
->SetTextColour(colour
);
8694 void wxGrid::SetCellFont( int row
, int col
, const wxFont
& font
)
8696 if ( CanHaveAttributes() )
8698 wxGridCellAttr
*attr
= GetOrCreateCellAttr(row
, col
);
8699 attr
->SetFont(font
);
8704 void wxGrid::SetCellAlignment( int row
, int col
, int horiz
, int vert
)
8706 if ( CanHaveAttributes() )
8708 wxGridCellAttr
*attr
= GetOrCreateCellAttr(row
, col
);
8709 attr
->SetAlignment(horiz
, vert
);
8714 void wxGrid::SetCellOverflow( int row
, int col
, bool allow
)
8716 if ( CanHaveAttributes() )
8718 wxGridCellAttr
*attr
= GetOrCreateCellAttr(row
, col
);
8719 attr
->SetOverflow(allow
);
8724 void wxGrid::SetCellSize( int row
, int col
, int num_rows
, int num_cols
)
8726 if ( CanHaveAttributes() )
8728 int cell_rows
, cell_cols
;
8730 wxGridCellAttr
*attr
= GetOrCreateCellAttr(row
, col
);
8731 attr
->GetSize(&cell_rows
, &cell_cols
);
8732 attr
->SetSize(num_rows
, num_cols
);
8735 // Cannot set the size of a cell to 0 or negative values
8736 // While it is perfectly legal to do that, this function cannot
8737 // handle all the possibilies, do it by hand by getting the CellAttr.
8738 // You can only set the size of a cell to 1,1 or greater with this fn
8739 wxASSERT_MSG( !((cell_rows
< 1) || (cell_cols
< 1)),
8740 wxT("wxGrid::SetCellSize setting cell size that is already part of another cell"));
8741 wxASSERT_MSG( !((num_rows
< 1) || (num_cols
< 1)),
8742 wxT("wxGrid::SetCellSize setting cell size to < 1"));
8744 // if this was already a multicell then "turn off" the other cells first
8745 if ((cell_rows
> 1) || (cell_rows
> 1))
8748 for (j
=row
; j
<row
+cell_rows
; j
++)
8750 for (i
=col
; i
<col
+cell_cols
; i
++)
8752 if ((i
!= col
) || (j
!= row
))
8754 wxGridCellAttr
*attr_stub
= GetOrCreateCellAttr(j
, i
);
8755 attr_stub
->SetSize( 1, 1 );
8756 attr_stub
->DecRef();
8762 // mark the cells that will be covered by this cell to
8763 // negative or zero values to point back at this cell
8764 if (((num_rows
> 1) || (num_cols
> 1)) && (num_rows
>= 1) && (num_cols
>= 1))
8767 for (j
=row
; j
<row
+num_rows
; j
++)
8769 for (i
=col
; i
<col
+num_cols
; i
++)
8771 if ((i
!= col
) || (j
!= row
))
8773 wxGridCellAttr
*attr_stub
= GetOrCreateCellAttr(j
, i
);
8774 attr_stub
->SetSize( row
-j
, col
-i
);
8775 attr_stub
->DecRef();
8783 void wxGrid::SetCellRenderer(int row
, int col
, wxGridCellRenderer
*renderer
)
8785 if ( CanHaveAttributes() )
8787 wxGridCellAttr
*attr
= GetOrCreateCellAttr(row
, col
);
8788 attr
->SetRenderer(renderer
);
8793 void wxGrid::SetCellEditor(int row
, int col
, wxGridCellEditor
* editor
)
8795 if ( CanHaveAttributes() )
8797 wxGridCellAttr
*attr
= GetOrCreateCellAttr(row
, col
);
8798 attr
->SetEditor(editor
);
8803 void wxGrid::SetReadOnly(int row
, int col
, bool isReadOnly
)
8805 if ( CanHaveAttributes() )
8807 wxGridCellAttr
*attr
= GetOrCreateCellAttr(row
, col
);
8808 attr
->SetReadOnly(isReadOnly
);
8813 // ----------------------------------------------------------------------------
8814 // Data type registration
8815 // ----------------------------------------------------------------------------
8817 void wxGrid::RegisterDataType(const wxString
& typeName
,
8818 wxGridCellRenderer
* renderer
,
8819 wxGridCellEditor
* editor
)
8821 m_typeRegistry
->RegisterDataType(typeName
, renderer
, editor
);
8825 wxGridCellEditor
* wxGrid::GetDefaultEditorForCell(int row
, int col
) const
8827 wxString typeName
= m_table
->GetTypeName(row
, col
);
8828 return GetDefaultEditorForType(typeName
);
8831 wxGridCellRenderer
* wxGrid::GetDefaultRendererForCell(int row
, int col
) const
8833 wxString typeName
= m_table
->GetTypeName(row
, col
);
8834 return GetDefaultRendererForType(typeName
);
8838 wxGrid::GetDefaultEditorForType(const wxString
& typeName
) const
8840 int index
= m_typeRegistry
->FindOrCloneDataType(typeName
);
8841 if ( index
== wxNOT_FOUND
)
8843 wxFAIL_MSG(wxT("Unknown data type name"));
8848 return m_typeRegistry
->GetEditor(index
);
8852 wxGrid::GetDefaultRendererForType(const wxString
& typeName
) const
8854 int index
= m_typeRegistry
->FindOrCloneDataType(typeName
);
8855 if ( index
== wxNOT_FOUND
)
8857 wxFAIL_MSG(wxT("Unknown data type name"));
8862 return m_typeRegistry
->GetRenderer(index
);
8866 // ----------------------------------------------------------------------------
8868 // ----------------------------------------------------------------------------
8870 void wxGrid::EnableDragRowSize( bool enable
)
8872 m_canDragRowSize
= enable
;
8876 void wxGrid::EnableDragColSize( bool enable
)
8878 m_canDragColSize
= enable
;
8881 void wxGrid::EnableDragGridSize( bool enable
)
8883 m_canDragGridSize
= enable
;
8887 void wxGrid::SetDefaultRowSize( int height
, bool resizeExistingRows
)
8889 m_defaultRowHeight
= wxMax( height
, WXGRID_MIN_ROW_HEIGHT
);
8891 if ( resizeExistingRows
)
8893 // since we are resizing all rows to the default row size,
8894 // we can simply clear the row heights and row bottoms
8895 // arrays (which also allows us to take advantage of
8896 // some speed optimisations)
8897 m_rowHeights
.Empty();
8898 m_rowBottoms
.Empty();
8899 if ( !GetBatchCount() )
8904 void wxGrid::SetRowSize( int row
, int height
)
8906 wxCHECK_RET( row
>= 0 && row
< m_numRows
, _T("invalid row index") );
8908 if ( m_rowHeights
.IsEmpty() )
8910 // need to really create the array
8914 int h
= wxMax( 0, height
);
8915 int diff
= h
- m_rowHeights
[row
];
8917 m_rowHeights
[row
] = h
;
8919 for ( i
= row
; i
< m_numRows
; i
++ )
8921 m_rowBottoms
[i
] += diff
;
8923 if ( !GetBatchCount() )
8927 void wxGrid::SetDefaultColSize( int width
, bool resizeExistingCols
)
8929 m_defaultColWidth
= wxMax( width
, WXGRID_MIN_COL_WIDTH
);
8931 if ( resizeExistingCols
)
8933 // since we are resizing all columns to the default column size,
8934 // we can simply clear the col widths and col rights
8935 // arrays (which also allows us to take advantage of
8936 // some speed optimisations)
8937 m_colWidths
.Empty();
8938 m_colRights
.Empty();
8939 if ( !GetBatchCount() )
8944 void wxGrid::SetColSize( int col
, int width
)
8946 wxCHECK_RET( col
>= 0 && col
< m_numCols
, _T("invalid column index") );
8948 // should we check that it's bigger than GetColMinimalWidth(col) here?
8950 if ( m_colWidths
.IsEmpty() )
8952 // need to really create the array
8956 int w
= wxMax( 0, width
);
8957 int diff
= w
- m_colWidths
[col
];
8958 m_colWidths
[col
] = w
;
8961 for ( i
= col
; i
< m_numCols
; i
++ )
8963 m_colRights
[i
] += diff
;
8965 if ( !GetBatchCount() )
8970 void wxGrid::SetColMinimalWidth( int col
, int width
)
8972 m_colMinWidths
.Put(col
, width
);
8975 void wxGrid::SetRowMinimalHeight( int row
, int width
)
8977 m_rowMinHeights
.Put(row
, width
);
8980 int wxGrid::GetColMinimalWidth(int col
) const
8982 long value
= m_colMinWidths
.Get(col
);
8983 return value
!= wxNOT_FOUND
? (int)value
: WXGRID_MIN_COL_WIDTH
;
8986 int wxGrid::GetRowMinimalHeight(int row
) const
8988 long value
= m_rowMinHeights
.Get(row
);
8989 return value
!= wxNOT_FOUND
? (int)value
: WXGRID_MIN_ROW_HEIGHT
;
8992 // ----------------------------------------------------------------------------
8994 // ----------------------------------------------------------------------------
8996 void wxGrid::AutoSizeColOrRow( int colOrRow
, bool setAsMin
, bool column
)
8998 wxClientDC
dc(m_gridWin
);
9000 // init both of them to avoid compiler warnings, even if weo nly need one
9008 wxCoord extent
, extentMax
= 0;
9009 int max
= column
? m_numRows
: m_numCols
;
9010 for ( int rowOrCol
= 0; rowOrCol
< max
; rowOrCol
++ )
9017 wxGridCellAttr
* attr
= GetCellAttr(row
, col
);
9018 wxGridCellRenderer
* renderer
= attr
->GetRenderer(this, row
, col
);
9021 wxSize size
= renderer
->GetBestSize(*this, *attr
, dc
, row
, col
);
9022 extent
= column
? size
.x
: size
.y
;
9023 if ( extent
> extentMax
)
9034 // now also compare with the column label extent
9036 dc
.SetFont( GetLabelFont() );
9039 dc
.GetTextExtent( GetColLabelValue(col
), &w
, &h
);
9041 dc
.GetTextExtent( GetRowLabelValue(row
), &w
, &h
);
9043 extent
= column
? w
: h
;
9044 if ( extent
> extentMax
)
9051 // empty column - give default extent (notice that if extentMax is less
9052 // than default extent but != 0, it's ok)
9053 extentMax
= column
? m_defaultColWidth
: m_defaultRowHeight
;
9059 // leave some space around text
9070 SetColSize(col
, extentMax
);
9071 if ( !GetBatchCount() )
9074 m_gridWin
->GetClientSize( &cw
, &ch
);
9075 wxRect
rect ( CellToRect( 0, col
) );
9077 CalcScrolledPosition(rect
.x
, 0, &rect
.x
, &dummy
);
9078 rect
.width
= cw
- rect
.x
;
9079 rect
.height
= m_colLabelHeight
;
9080 m_colLabelWin
->Refresh( TRUE
, &rect
);
9085 SetRowSize(row
, extentMax
);
9086 if ( !GetBatchCount() )
9089 m_gridWin
->GetClientSize( &cw
, &ch
);
9090 wxRect
rect ( CellToRect( row
, 0 ) );
9092 CalcScrolledPosition(0, rect
.y
, &dummy
, &rect
.y
);
9093 rect
.width
= m_rowLabelWidth
;
9094 rect
.height
= ch
- rect
.y
;
9095 m_rowLabelWin
->Refresh( TRUE
, &rect
);
9101 SetColMinimalWidth(col
, extentMax
);
9103 SetRowMinimalHeight(row
, extentMax
);
9107 int wxGrid::SetOrCalcColumnSizes(bool calcOnly
, bool setAsMin
)
9109 int width
= m_rowLabelWidth
;
9114 for ( int col
= 0; col
< m_numCols
; col
++ )
9118 AutoSizeColumn(col
, setAsMin
);
9121 width
+= GetColWidth(col
);
9130 int wxGrid::SetOrCalcRowSizes(bool calcOnly
, bool setAsMin
)
9132 int height
= m_colLabelHeight
;
9137 for ( int row
= 0; row
< m_numRows
; row
++ )
9141 AutoSizeRow(row
, setAsMin
);
9144 height
+= GetRowHeight(row
);
9153 void wxGrid::AutoSize()
9157 wxSize
size(SetOrCalcColumnSizes(FALSE
), SetOrCalcRowSizes(FALSE
));
9159 // round up the size to a multiple of scroll step - this ensures that we
9160 // won't get the scrollbars if we're sized exactly to this width
9161 wxSize
sizeFit(GetScrollX(size
.x
) * GRID_SCROLL_LINE_X
,
9162 GetScrollY(size
.y
) * GRID_SCROLL_LINE_Y
);
9164 // distribute the extra space between teh columns/rows to avoid having
9165 // extra white space
9166 wxCoord diff
= sizeFit
.x
- size
.x
;
9169 // try to resize the columns uniformly
9170 wxCoord diffPerCol
= diff
/ m_numCols
;
9173 for ( int col
= 0; col
< m_numCols
; col
++ )
9175 SetColSize(col
, GetColWidth(col
) + diffPerCol
);
9179 // add remaining amount to the last columns
9180 diff
-= diffPerCol
* m_numCols
;
9183 for ( int col
= m_numCols
- 1; col
>= m_numCols
- diff
; col
-- )
9185 SetColSize(col
, GetColWidth(col
) + 1);
9191 diff
= sizeFit
.y
- size
.y
;
9194 // try to resize the columns uniformly
9195 wxCoord diffPerRow
= diff
/ m_numRows
;
9198 for ( int row
= 0; row
< m_numRows
; row
++ )
9200 SetRowSize(row
, GetRowHeight(row
) + diffPerRow
);
9204 // add remaining amount to the last rows
9205 diff
-= diffPerRow
* m_numRows
;
9208 for ( int row
= m_numRows
- 1; row
>= m_numRows
- diff
; row
-- )
9210 SetRowSize(row
, GetRowHeight(row
) + 1);
9217 SetClientSize(sizeFit
);
9220 wxSize
wxGrid::DoGetBestSize() const
9222 // don't set sizes, only calculate them
9223 wxGrid
*self
= (wxGrid
*)this; // const_cast
9226 width
= self
->SetOrCalcColumnSizes(TRUE
);
9227 height
= self
->SetOrCalcRowSizes(TRUE
);
9229 int maxwidth
, maxheight
;
9230 wxDisplaySize( & maxwidth
, & maxheight
);
9232 if ( width
> maxwidth
) width
= maxwidth
;
9233 if ( height
> maxheight
) height
= maxheight
;
9235 return wxSize( width
, height
);
9244 wxPen
& wxGrid::GetDividerPen() const
9249 // ----------------------------------------------------------------------------
9250 // cell value accessor functions
9251 // ----------------------------------------------------------------------------
9253 void wxGrid::SetCellValue( int row
, int col
, const wxString
& s
)
9257 m_table
->SetValue( row
, col
, s
);
9258 if ( !GetBatchCount() )
9261 wxRect
rect( CellToRect( row
, col
) );
9263 rect
.width
= m_gridWin
->GetClientSize().GetWidth();
9264 CalcScrolledPosition(0, rect
.y
, &dummy
, &rect
.y
);
9265 m_gridWin
->Refresh( FALSE
, &rect
);
9268 if ( m_currentCellCoords
.GetRow() == row
&&
9269 m_currentCellCoords
.GetCol() == col
&&
9270 IsCellEditControlShown())
9271 // Note: If we are using IsCellEditControlEnabled,
9272 // this interacts badly with calling SetCellValue from
9273 // an EVT_GRID_CELL_CHANGE handler.
9275 HideCellEditControl();
9276 ShowCellEditControl(); // will reread data from table
9283 // ------ Block, row and col selection
9286 void wxGrid::SelectRow( int row
, bool addToSelected
)
9288 if ( IsSelection() && !addToSelected
)
9292 m_selection
->SelectRow( row
, FALSE
, addToSelected
);
9296 void wxGrid::SelectCol( int col
, bool addToSelected
)
9298 if ( IsSelection() && !addToSelected
)
9302 m_selection
->SelectCol( col
, FALSE
, addToSelected
);
9306 void wxGrid::SelectBlock( int topRow
, int leftCol
, int bottomRow
, int rightCol
,
9307 bool addToSelected
)
9309 if ( IsSelection() && !addToSelected
)
9313 m_selection
->SelectBlock( topRow
, leftCol
, bottomRow
, rightCol
,
9314 FALSE
, addToSelected
);
9318 void wxGrid::SelectAll()
9320 if ( m_numRows
> 0 && m_numCols
> 0 )
9323 m_selection
->SelectBlock( 0, 0, m_numRows
-1, m_numCols
-1 );
9328 // ------ Cell, row and col deselection
9331 void wxGrid::DeselectRow( int row
)
9336 if ( m_selection
->GetSelectionMode() == wxGrid::wxGridSelectRows
)
9338 if ( m_selection
->IsInSelection(row
, 0 ) )
9339 m_selection
->ToggleCellSelection( row
, 0);
9343 int nCols
= GetNumberCols();
9344 for ( int i
= 0; i
< nCols
; i
++ )
9346 if ( m_selection
->IsInSelection(row
, i
) )
9347 m_selection
->ToggleCellSelection( row
, i
);
9352 void wxGrid::DeselectCol( int col
)
9357 if ( m_selection
->GetSelectionMode() == wxGrid::wxGridSelectColumns
)
9359 if ( m_selection
->IsInSelection(0, col
) )
9360 m_selection
->ToggleCellSelection( 0, col
);
9364 int nRows
= GetNumberRows();
9365 for ( int i
= 0; i
< nRows
; i
++ )
9367 if ( m_selection
->IsInSelection(i
, col
) )
9368 m_selection
->ToggleCellSelection(i
, col
);
9373 void wxGrid::DeselectCell( int row
, int col
)
9375 if ( m_selection
&& m_selection
->IsInSelection(row
, col
) )
9376 m_selection
->ToggleCellSelection(row
, col
);
9379 bool wxGrid::IsSelection()
9381 return ( m_selection
&& (m_selection
->IsSelection() ||
9382 ( m_selectingTopLeft
!= wxGridNoCellCoords
&&
9383 m_selectingBottomRight
!= wxGridNoCellCoords
) ) );
9386 bool wxGrid::IsInSelection( int row
, int col
) const
9388 return ( m_selection
&& (m_selection
->IsInSelection( row
, col
) ||
9389 ( row
>= m_selectingTopLeft
.GetRow() &&
9390 col
>= m_selectingTopLeft
.GetCol() &&
9391 row
<= m_selectingBottomRight
.GetRow() &&
9392 col
<= m_selectingBottomRight
.GetCol() )) );
9395 wxGridCellCoordsArray
wxGrid::GetSelectedCells() const
9397 if (!m_selection
) { wxGridCellCoordsArray a
; return a
; }
9398 return m_selection
->m_cellSelection
;
9400 wxGridCellCoordsArray
wxGrid::GetSelectionBlockTopLeft() const
9402 if (!m_selection
) { wxGridCellCoordsArray a
; return a
; }
9403 return m_selection
->m_blockSelectionTopLeft
;
9405 wxGridCellCoordsArray
wxGrid::GetSelectionBlockBottomRight() const
9407 if (!m_selection
) { wxGridCellCoordsArray a
; return a
; }
9408 return m_selection
->m_blockSelectionTopLeft
;
9410 wxArrayInt
wxGrid::GetSelectedRows() const
9412 if (!m_selection
) { wxArrayInt a
; return a
; }
9413 return m_selection
->m_rowSelection
;
9415 wxArrayInt
wxGrid::GetSelectedCols() const
9417 if (!m_selection
) { wxArrayInt a
; return a
; }
9418 return m_selection
->m_colSelection
;
9422 void wxGrid::ClearSelection()
9424 m_selectingTopLeft
= wxGridNoCellCoords
;
9425 m_selectingBottomRight
= wxGridNoCellCoords
;
9427 m_selection
->ClearSelection();
9431 // This function returns the rectangle that encloses the given block
9432 // in device coords clipped to the client size of the grid window.
9434 wxRect
wxGrid::BlockToDeviceRect( const wxGridCellCoords
&topLeft
,
9435 const wxGridCellCoords
&bottomRight
)
9437 wxRect
rect( wxGridNoCellRect
);
9440 cellRect
= CellToRect( topLeft
);
9441 if ( cellRect
!= wxGridNoCellRect
)
9447 rect
= wxRect( 0, 0, 0, 0 );
9450 cellRect
= CellToRect( bottomRight
);
9451 if ( cellRect
!= wxGridNoCellRect
)
9457 return wxGridNoCellRect
;
9461 int left
= rect
.GetLeft();
9462 int top
= rect
.GetTop();
9463 int right
= rect
.GetRight();
9464 int bottom
= rect
.GetBottom();
9466 int leftCol
= topLeft
.GetCol();
9467 int topRow
= topLeft
.GetRow();
9468 int rightCol
= bottomRight
.GetCol();
9469 int bottomRow
= bottomRight
.GetRow();
9492 for ( j
= topRow
; j
<= bottomRow
; j
++ )
9494 for ( i
= leftCol
; i
<= rightCol
; i
++ )
9496 if ((j
==topRow
) || (j
==bottomRow
) || (i
==leftCol
) || (i
==rightCol
))
9498 cellRect
= CellToRect( j
, i
);
9500 if (cellRect
.x
< left
)
9502 if (cellRect
.y
< top
)
9504 if (cellRect
.x
+ cellRect
.width
> right
)
9505 right
= cellRect
.x
+ cellRect
.width
;
9506 if (cellRect
.y
+ cellRect
.height
> bottom
)
9507 bottom
= cellRect
.y
+ cellRect
.height
;
9509 else i
= rightCol
; // jump over inner cells.
9513 // convert to scrolled coords
9515 CalcScrolledPosition( left
, top
, &left
, &top
);
9516 CalcScrolledPosition( right
, bottom
, &right
, &bottom
);
9519 m_gridWin
->GetClientSize( &cw
, &ch
);
9521 if (right
< 0 || bottom
< 0 || left
> cw
|| top
> ch
)
9522 return wxRect( 0, 0, 0, 0);
9524 rect
.SetLeft( wxMax(0, left
) );
9525 rect
.SetTop( wxMax(0, top
) );
9526 rect
.SetRight( wxMin(cw
, right
) );
9527 rect
.SetBottom( wxMin(ch
, bottom
) );
9535 // ------ Grid event classes
9538 IMPLEMENT_DYNAMIC_CLASS( wxGridEvent
, wxNotifyEvent
)
9540 wxGridEvent::wxGridEvent( int id
, wxEventType type
, wxObject
* obj
,
9541 int row
, int col
, int x
, int y
, bool sel
,
9542 bool control
, bool shift
, bool alt
, bool meta
)
9543 : wxNotifyEvent( type
, id
)
9550 m_control
= control
;
9555 SetEventObject(obj
);
9559 IMPLEMENT_DYNAMIC_CLASS( wxGridSizeEvent
, wxNotifyEvent
)
9561 wxGridSizeEvent::wxGridSizeEvent( int id
, wxEventType type
, wxObject
* obj
,
9562 int rowOrCol
, int x
, int y
,
9563 bool control
, bool shift
, bool alt
, bool meta
)
9564 : wxNotifyEvent( type
, id
)
9566 m_rowOrCol
= rowOrCol
;
9569 m_control
= control
;
9574 SetEventObject(obj
);
9578 IMPLEMENT_DYNAMIC_CLASS( wxGridRangeSelectEvent
, wxNotifyEvent
)
9580 wxGridRangeSelectEvent::wxGridRangeSelectEvent(int id
, wxEventType type
, wxObject
* obj
,
9581 const wxGridCellCoords
& topLeft
,
9582 const wxGridCellCoords
& bottomRight
,
9583 bool sel
, bool control
,
9584 bool shift
, bool alt
, bool meta
)
9585 : wxNotifyEvent( type
, id
)
9587 m_topLeft
= topLeft
;
9588 m_bottomRight
= bottomRight
;
9590 m_control
= control
;
9595 SetEventObject(obj
);
9599 IMPLEMENT_DYNAMIC_CLASS(wxGridEditorCreatedEvent
, wxCommandEvent
)
9601 wxGridEditorCreatedEvent::wxGridEditorCreatedEvent(int id
, wxEventType type
,
9602 wxObject
* obj
, int row
,
9603 int col
, wxControl
* ctrl
)
9604 : wxCommandEvent(type
, id
)
9606 SetEventObject(obj
);
9613 #endif // !wxUSE_NEW_GRID/wxUSE_NEW_GRID
9615 #endif // wxUSE_GRID