1 ///////////////////////////////////////////////////////////////////////////
2 // Name: generic/grid.cpp
3 // Purpose: wxGrid and related classes
4 // Author: Michael Bedward (based on code by Julian Smart, Robin Dunn)
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 precompilation, includes "wx/wx.h".
25 #include "wx/wxprec.h"
33 #if !defined(wxUSE_NEW_GRID) || !(wxUSE_NEW_GRID)
39 #include "wx/dcclient.h"
40 #include "wx/settings.h"
42 #include "wx/textctrl.h"
43 #include "wx/checkbox.h"
44 #include "wx/combobox.h"
45 #include "wx/valtext.h"
48 #include "wx/textfile.h"
49 #include "wx/spinctrl.h"
53 // ----------------------------------------------------------------------------
55 // ----------------------------------------------------------------------------
57 WX_DEFINE_ARRAY(wxGridCellAttr
*, wxArrayAttrs
);
59 struct wxGridCellWithAttr
61 wxGridCellWithAttr(int row
, int col
, wxGridCellAttr
*attr_
)
62 : coords(row
, col
), attr(attr_
)
71 wxGridCellCoords coords
;
75 WX_DECLARE_OBJARRAY(wxGridCellWithAttr
, wxGridCellWithAttrArray
);
77 #include "wx/arrimpl.cpp"
79 WX_DEFINE_OBJARRAY(wxGridCellCoordsArray
)
80 WX_DEFINE_OBJARRAY(wxGridCellWithAttrArray
)
82 // ----------------------------------------------------------------------------
84 // ----------------------------------------------------------------------------
86 class WXDLLEXPORT wxGridRowLabelWindow
: public wxWindow
89 wxGridRowLabelWindow() { m_owner
= (wxGrid
*)NULL
; }
90 wxGridRowLabelWindow( wxGrid
*parent
, wxWindowID id
,
91 const wxPoint
&pos
, const wxSize
&size
);
96 void OnPaint( wxPaintEvent
& event
);
97 void OnMouseEvent( wxMouseEvent
& event
);
98 void OnKeyDown( wxKeyEvent
& event
);
100 DECLARE_DYNAMIC_CLASS(wxGridRowLabelWindow
)
101 DECLARE_EVENT_TABLE()
105 class WXDLLEXPORT wxGridColLabelWindow
: public wxWindow
108 wxGridColLabelWindow() { m_owner
= (wxGrid
*)NULL
; }
109 wxGridColLabelWindow( wxGrid
*parent
, wxWindowID id
,
110 const wxPoint
&pos
, const wxSize
&size
);
115 void OnPaint( wxPaintEvent
&event
);
116 void OnMouseEvent( wxMouseEvent
& event
);
117 void OnKeyDown( wxKeyEvent
& event
);
119 DECLARE_DYNAMIC_CLASS(wxGridColLabelWindow
)
120 DECLARE_EVENT_TABLE()
124 class WXDLLEXPORT wxGridCornerLabelWindow
: public wxWindow
127 wxGridCornerLabelWindow() { m_owner
= (wxGrid
*)NULL
; }
128 wxGridCornerLabelWindow( wxGrid
*parent
, wxWindowID id
,
129 const wxPoint
&pos
, const wxSize
&size
);
134 void OnMouseEvent( wxMouseEvent
& event
);
135 void OnKeyDown( wxKeyEvent
& event
);
136 void OnPaint( wxPaintEvent
& event
);
138 DECLARE_DYNAMIC_CLASS(wxGridCornerLabelWindow
)
139 DECLARE_EVENT_TABLE()
142 class WXDLLEXPORT wxGridWindow
: public wxPanel
147 m_owner
= (wxGrid
*)NULL
;
148 m_rowLabelWin
= (wxGridRowLabelWindow
*)NULL
;
149 m_colLabelWin
= (wxGridColLabelWindow
*)NULL
;
152 wxGridWindow( wxGrid
*parent
,
153 wxGridRowLabelWindow
*rowLblWin
,
154 wxGridColLabelWindow
*colLblWin
,
155 wxWindowID id
, const wxPoint
&pos
, const wxSize
&size
);
158 void ScrollWindow( int dx
, int dy
, const wxRect
*rect
);
162 wxGridRowLabelWindow
*m_rowLabelWin
;
163 wxGridColLabelWindow
*m_colLabelWin
;
165 void OnPaint( wxPaintEvent
&event
);
166 void OnMouseEvent( wxMouseEvent
& event
);
167 void OnKeyDown( wxKeyEvent
& );
168 void OnEraseBackground( wxEraseEvent
& );
171 DECLARE_DYNAMIC_CLASS(wxGridWindow
)
172 DECLARE_EVENT_TABLE()
177 class wxGridCellEditorEvtHandler
: public wxEvtHandler
180 wxGridCellEditorEvtHandler()
181 : m_grid(0), m_editor(0)
183 wxGridCellEditorEvtHandler(wxGrid
* grid
, wxGridCellEditor
* editor
)
184 : m_grid(grid
), m_editor(editor
)
187 void OnKeyDown(wxKeyEvent
& event
);
188 void OnChar(wxKeyEvent
& event
);
192 wxGridCellEditor
* m_editor
;
193 DECLARE_DYNAMIC_CLASS(wxGridCellEditorEvtHandler
)
194 DECLARE_EVENT_TABLE()
198 IMPLEMENT_DYNAMIC_CLASS( wxGridCellEditorEvtHandler
, wxEvtHandler
)
199 BEGIN_EVENT_TABLE( wxGridCellEditorEvtHandler
, wxEvtHandler
)
200 EVT_KEY_DOWN( wxGridCellEditorEvtHandler::OnKeyDown
)
201 EVT_CHAR( wxGridCellEditorEvtHandler::OnChar
)
206 // ----------------------------------------------------------------------------
207 // the internal data representation used by wxGridCellAttrProvider
208 // ----------------------------------------------------------------------------
210 // this class stores attributes set for cells
211 class WXDLLEXPORT wxGridCellAttrData
214 void SetAttr(wxGridCellAttr
*attr
, int row
, int col
);
215 wxGridCellAttr
*GetAttr(int row
, int col
) const;
216 void UpdateAttrRows( size_t pos
, int numRows
);
217 void UpdateAttrCols( size_t pos
, int numCols
);
220 // searches for the attr for given cell, returns wxNOT_FOUND if not found
221 int FindIndex(int row
, int col
) const;
223 wxGridCellWithAttrArray m_attrs
;
226 // this class stores attributes set for rows or columns
227 class WXDLLEXPORT wxGridRowOrColAttrData
230 // empty ctor to suppress warnings
231 wxGridRowOrColAttrData() { }
232 ~wxGridRowOrColAttrData();
234 void SetAttr(wxGridCellAttr
*attr
, int rowOrCol
);
235 wxGridCellAttr
*GetAttr(int rowOrCol
) const;
236 void UpdateAttrRowsOrCols( size_t pos
, int numRowsOrCols
);
239 wxArrayInt m_rowsOrCols
;
240 wxArrayAttrs m_attrs
;
243 // NB: this is just a wrapper around 3 objects: one which stores cell
244 // attributes, and 2 others for row/col ones
245 class WXDLLEXPORT wxGridCellAttrProviderData
248 wxGridCellAttrData m_cellAttrs
;
249 wxGridRowOrColAttrData m_rowAttrs
,
254 // ----------------------------------------------------------------------------
255 // data structures used for the data type registry
256 // ----------------------------------------------------------------------------
258 struct wxGridDataTypeInfo
{
259 wxGridDataTypeInfo(const wxString
& typeName
,
260 wxGridCellRenderer
* renderer
,
261 wxGridCellEditor
* editor
)
262 : m_typeName(typeName
), m_renderer(renderer
), m_editor(editor
)
265 ~wxGridDataTypeInfo() { delete m_renderer
; delete m_editor
; }
268 wxGridCellRenderer
* m_renderer
;
269 wxGridCellEditor
* m_editor
;
273 WX_DEFINE_ARRAY(wxGridDataTypeInfo
*, wxGridDataTypeInfoArray
);
276 class WXDLLEXPORT wxGridTypeRegistry
{
278 ~wxGridTypeRegistry();
279 void RegisterDataType(const wxString
& typeName
,
280 wxGridCellRenderer
* renderer
,
281 wxGridCellEditor
* editor
);
282 int FindDataType(const wxString
& typeName
);
283 wxGridCellRenderer
* GetRenderer(int index
);
284 wxGridCellEditor
* GetEditor(int index
);
287 wxGridDataTypeInfoArray m_typeinfo
;
293 // ----------------------------------------------------------------------------
294 // conditional compilation
295 // ----------------------------------------------------------------------------
297 #ifndef WXGRID_DRAW_LINES
298 #define WXGRID_DRAW_LINES 1
301 // ----------------------------------------------------------------------------
303 // ----------------------------------------------------------------------------
305 //#define DEBUG_ATTR_CACHE
306 #ifdef DEBUG_ATTR_CACHE
307 static size_t gs_nAttrCacheHits
= 0;
308 static size_t gs_nAttrCacheMisses
= 0;
309 #endif // DEBUG_ATTR_CACHE
311 // ----------------------------------------------------------------------------
313 // ----------------------------------------------------------------------------
315 wxGridCellCoords
wxGridNoCellCoords( -1, -1 );
316 wxRect
wxGridNoCellRect( -1, -1, -1, -1 );
319 // TODO: fixed so far - make configurable later (and also different for x/y)
320 static const size_t GRID_SCROLL_LINE
= 10;
322 // the size of hash tables used a bit everywhere (the max number of elements
323 // in these hash tables is the number of rows/columns)
324 static const int GRID_HASH_SIZE
= 100;
326 // ============================================================================
328 // ============================================================================
330 // ----------------------------------------------------------------------------
332 // ----------------------------------------------------------------------------
334 wxGridCellEditor::wxGridCellEditor()
340 wxGridCellEditor::~wxGridCellEditor()
345 void wxGridCellEditor::Create(wxWindow
* WXUNUSED(parent
),
346 wxWindowID
WXUNUSED(id
),
347 wxEvtHandler
* evtHandler
)
350 m_control
->PushEventHandler(evtHandler
);
353 void wxGridCellEditor::PaintBackground(const wxRect
& rectCell
,
354 wxGridCellAttr
*attr
)
356 // erase the background because we might not fill the cell
357 wxClientDC
dc(m_control
->GetParent());
358 dc
.SetPen(*wxTRANSPARENT_PEN
);
359 dc
.SetBrush(wxBrush(attr
->GetBackgroundColour(), wxSOLID
));
360 dc
.DrawRectangle(rectCell
);
362 // redraw the control we just painted over
363 m_control
->Refresh();
366 void wxGridCellEditor::Destroy()
370 m_control
->Destroy();
375 void wxGridCellEditor::Show(bool show
, wxGridCellAttr
*attr
)
377 wxASSERT_MSG(m_control
,
378 wxT("The wxGridCellEditor must be Created first!"));
379 m_control
->Show(show
);
383 // set the colours/fonts if we have any
386 m_colFgOld
= m_control
->GetForegroundColour();
387 m_control
->SetForegroundColour(attr
->GetTextColour());
389 m_colBgOld
= m_control
->GetBackgroundColour();
390 m_control
->SetBackgroundColour(attr
->GetBackgroundColour());
392 m_fontOld
= m_control
->GetFont();
393 m_control
->SetFont(attr
->GetFont());
395 // can't do anything more in the base class version, the other
396 // attributes may only be used by the derived classes
401 // restore the standard colours fonts
402 if ( m_colFgOld
.Ok() )
404 m_control
->SetForegroundColour(m_colFgOld
);
405 m_colFgOld
= wxNullColour
;
408 if ( m_colBgOld
.Ok() )
410 m_control
->SetBackgroundColour(m_colBgOld
);
411 m_colBgOld
= wxNullColour
;
414 if ( m_fontOld
.Ok() )
416 m_control
->SetFont(m_fontOld
);
417 m_fontOld
= wxNullFont
;
422 void wxGridCellEditor::SetSize(const wxRect
& rect
)
424 wxASSERT_MSG(m_control
,
425 wxT("The wxGridCellEditor must be Created first!"));
426 m_control
->SetSize(rect
, wxSIZE_ALLOW_MINUS_ONE
);
429 void wxGridCellEditor::HandleReturn(wxKeyEvent
& event
)
435 void wxGridCellEditor::StartingKey(wxKeyEvent
& event
)
440 void wxGridCellEditor::StartingClick()
444 // ----------------------------------------------------------------------------
445 // wxGridCellTextEditor
446 // ----------------------------------------------------------------------------
448 wxGridCellTextEditor::wxGridCellTextEditor()
452 void wxGridCellTextEditor::Create(wxWindow
* parent
,
454 wxEvtHandler
* evtHandler
)
456 m_control
= new wxTextCtrl(parent
, id
, wxEmptyString
,
457 wxDefaultPosition
, wxDefaultSize
458 #if defined(__WXMSW__)
459 , wxTE_MULTILINE
| wxTE_NO_VSCROLL
// necessary ???
463 wxGridCellEditor::Create(parent
, id
, evtHandler
);
466 void wxGridCellTextEditor::PaintBackground(const wxRect
& WXUNUSED(rectCell
),
467 wxGridCellAttr
* WXUNUSED(attr
))
469 // as we fill the entire client area, don't do anything here to minimize
473 void wxGridCellTextEditor::SetSize(const wxRect
& rectOrig
)
475 wxRect
rect(rectOrig
);
477 // Make the edit control large enough to allow for internal
480 // TODO: remove this if the text ctrl sizing is improved esp. for
483 #if defined(__WXGTK__)
484 rect
.Inflate(rect
.x
? 1 : 0, rect
.y
? 1 : 0);
486 int extra_x
= ( rect
.x
> 2 )? 2 : 1;
487 int extra_y
= ( rect
.y
> 2 )? 2 : 1;
488 #if defined(__WXMOTIF__)
492 rect
.SetLeft( wxMax(0, rect
.x
- extra_x
) );
493 rect
.SetTop( wxMax(0, rect
.y
- extra_y
) );
494 rect
.SetRight( rect
.GetRight() + 2*extra_x
);
495 rect
.SetBottom( rect
.GetBottom() + 2*extra_y
);
498 wxGridCellEditor::SetSize(rect
);
501 void wxGridCellTextEditor::BeginEdit(int row
, int col
, wxGrid
* grid
)
503 wxASSERT_MSG(m_control
,
504 wxT("The wxGridCellEditor must be Created first!"));
506 m_startValue
= grid
->GetTable()->GetValue(row
, col
);
508 DoBeginEdit(m_startValue
);
511 void wxGridCellTextEditor::DoBeginEdit(const wxString
& startValue
)
513 Text()->SetValue(startValue
);
514 Text()->SetInsertionPointEnd();
518 bool wxGridCellTextEditor::EndEdit(int row
, int col
,
521 wxASSERT_MSG(m_control
,
522 wxT("The wxGridCellEditor must be Created first!"));
524 bool changed
= FALSE
;
525 wxString value
= Text()->GetValue();
526 if (value
!= m_startValue
)
530 grid
->GetTable()->SetValue(row
, col
, value
);
532 m_startValue
= wxEmptyString
;
533 Text()->SetValue(m_startValue
);
539 void wxGridCellTextEditor::Reset()
541 wxASSERT_MSG(m_control
,
542 wxT("The wxGridCellEditor must be Created first!"));
544 DoReset(m_startValue
);
547 void wxGridCellTextEditor::DoReset(const wxString
& startValue
)
549 Text()->SetValue(startValue
);
550 Text()->SetInsertionPointEnd();
553 void wxGridCellTextEditor::StartingKey(wxKeyEvent
& event
)
555 if ( !event
.AltDown() && !event
.MetaDown() && !event
.ControlDown() )
557 // insert the key in the control
558 long keycode
= event
.KeyCode();
559 if ( isprint(keycode
) )
561 // FIXME this is not going to work for non letters...
562 if ( !event
.ShiftDown() )
564 keycode
= tolower(keycode
);
567 Text()->AppendText((wxChar
)keycode
);
577 void wxGridCellTextEditor::HandleReturn(wxKeyEvent
& event
)
579 #if defined(__WXMOTIF__) || defined(__WXGTK__)
580 // wxMotif needs a little extra help...
581 int pos
= Text()->GetInsertionPoint();
582 wxString
s( Text()->GetValue() );
583 s
= s
.Left(pos
) + "\n" + s
.Mid(pos
);
585 Text()->SetInsertionPoint( pos
);
587 // the other ports can handle a Return key press
593 // ----------------------------------------------------------------------------
594 // wxGridCellNumberEditor
595 // ----------------------------------------------------------------------------
597 wxGridCellNumberEditor::wxGridCellNumberEditor(int min
, int max
)
603 void wxGridCellNumberEditor::Create(wxWindow
* parent
,
605 wxEvtHandler
* evtHandler
)
609 // create a spin ctrl
610 m_control
= new wxSpinCtrl(parent
, -1, wxEmptyString
,
611 wxDefaultPosition
, wxDefaultSize
,
615 wxGridCellEditor::Create(parent
, id
, evtHandler
);
619 // just a text control
620 wxGridCellTextEditor::Create(parent
, id
, evtHandler
);
623 Text()->SetValidator(wxTextValidator(wxFILTER_NUMERIC
));
624 #endif // wxUSE_VALIDATORS
628 void wxGridCellNumberEditor::BeginEdit(int row
, int col
, wxGrid
* grid
)
630 // first get the value
631 wxGridTableBase
*table
= grid
->GetTable();
632 if ( table
->CanGetValueAs(row
, col
, wxGRID_VALUE_NUMBER
) )
634 m_valueOld
= table
->GetValueAsLong(row
, col
);
638 wxString sValue
= table
->GetValue(row
, col
);
639 if (! sValue
.ToLong(&m_valueOld
))
641 wxFAIL_MSG( _T("this cell doesn't have numeric value") );
648 Spin()->SetValue(m_valueOld
);
652 DoBeginEdit(GetString());
656 bool wxGridCellNumberEditor::EndEdit(int row
, int col
,
664 value
= Spin()->GetValue();
665 changed
= value
!= m_valueOld
;
669 changed
= Text()->GetValue().ToLong(&value
) && (value
!= m_valueOld
);
674 if (grid
->GetTable()->CanSetValueAs(row
, col
, wxGRID_VALUE_NUMBER
))
675 grid
->GetTable()->SetValueAsLong(row
, col
, value
);
677 grid
->GetTable()->SetValue(row
, col
, wxString::Format("%ld", value
));
683 void wxGridCellNumberEditor::Reset()
687 Spin()->SetValue(m_valueOld
);
691 DoReset(GetString());
695 void wxGridCellNumberEditor::StartingKey(wxKeyEvent
& event
)
699 long keycode
= event
.KeyCode();
700 if ( isdigit(keycode
) || keycode
== '+' || keycode
== '-' )
702 wxGridCellTextEditor::StartingKey(event
);
712 // ----------------------------------------------------------------------------
713 // wxGridCellFloatEditor
714 // ----------------------------------------------------------------------------
716 void wxGridCellFloatEditor::Create(wxWindow
* parent
,
718 wxEvtHandler
* evtHandler
)
720 wxGridCellTextEditor::Create(parent
, id
, evtHandler
);
723 Text()->SetValidator(wxTextValidator(wxFILTER_NUMERIC
));
724 #endif // wxUSE_VALIDATORS
727 void wxGridCellFloatEditor::BeginEdit(int row
, int col
, wxGrid
* grid
)
729 // first get the value
730 wxGridTableBase
*table
= grid
->GetTable();
731 if ( table
->CanGetValueAs(row
, col
, wxGRID_VALUE_FLOAT
) )
733 m_valueOld
= table
->GetValueAsDouble(row
, col
);
737 wxString sValue
= table
->GetValue(row
, col
);
738 if (! sValue
.ToDouble(&m_valueOld
))
740 wxFAIL_MSG( _T("this cell doesn't have float value") );
745 DoBeginEdit(GetString());
748 bool wxGridCellFloatEditor::EndEdit(int row
, int col
,
752 if ( Text()->GetValue().ToDouble(&value
) && (value
!= m_valueOld
) )
754 if (grid
->GetTable()->CanSetValueAs(row
, col
, wxGRID_VALUE_FLOAT
))
755 grid
->GetTable()->SetValueAsDouble(row
, col
, value
);
757 grid
->GetTable()->SetValue(row
, col
, wxString::Format("%f", value
));
767 void wxGridCellFloatEditor::Reset()
769 DoReset(GetString());
772 void wxGridCellFloatEditor::StartingKey(wxKeyEvent
& event
)
774 long keycode
= event
.KeyCode();
775 if ( isdigit(keycode
) ||
776 keycode
== '+' || keycode
== '-' || keycode
== '.' )
778 wxGridCellTextEditor::StartingKey(event
);
787 // ----------------------------------------------------------------------------
788 // wxGridCellBoolEditor
789 // ----------------------------------------------------------------------------
791 void wxGridCellBoolEditor::Create(wxWindow
* parent
,
793 wxEvtHandler
* evtHandler
)
795 m_control
= new wxCheckBox(parent
, id
, wxEmptyString
,
796 wxDefaultPosition
, wxDefaultSize
,
799 wxGridCellEditor::Create(parent
, id
, evtHandler
);
802 void wxGridCellBoolEditor::SetSize(const wxRect
& r
)
804 // position it in the centre of the rectangle (TODO: support alignment?)
806 m_control
->GetSize(&w
, &h
);
808 // the checkbox without label still has some space to the right in wxGTK,
809 // so shift it to the right
810 #if defined(__WXGTK__) || defined (__WXMOTIF__)
812 #endif // GTK && Motif
814 m_control
->Move(r
.x
+ r
.width
/2 - w
/2, r
.y
+ r
.height
/2 - h
/2);
817 void wxGridCellBoolEditor::Show(bool show
, wxGridCellAttr
*attr
)
819 m_control
->Show(show
);
823 wxColour colBg
= attr
? attr
->GetBackgroundColour() : *wxLIGHT_GREY
;
824 CBox()->SetBackgroundColour(colBg
);
828 void wxGridCellBoolEditor::BeginEdit(int row
, int col
, wxGrid
* grid
)
830 wxASSERT_MSG(m_control
,
831 wxT("The wxGridCellEditor must be Created first!"));
833 if (grid
->GetTable()->CanGetValueAs(row
, col
, wxGRID_VALUE_BOOL
))
834 m_startValue
= grid
->GetTable()->GetValueAsBool(row
, col
);
836 m_startValue
= !!grid
->GetTable()->GetValue(row
, col
);
837 CBox()->SetValue(m_startValue
);
841 bool wxGridCellBoolEditor::EndEdit(int row
, int col
,
844 wxASSERT_MSG(m_control
,
845 wxT("The wxGridCellEditor must be Created first!"));
847 bool changed
= FALSE
;
848 bool value
= CBox()->GetValue();
849 if ( value
!= m_startValue
)
854 if (grid
->GetTable()->CanGetValueAs(row
, col
, wxGRID_VALUE_BOOL
))
855 grid
->GetTable()->SetValueAsBool(row
, col
, value
);
857 grid
->GetTable()->SetValue(row
, col
, value
? _T("1") : wxEmptyString
);
863 void wxGridCellBoolEditor::Reset()
865 wxASSERT_MSG(m_control
,
866 wxT("The wxGridCellEditor must be Created first!"));
868 CBox()->SetValue(m_startValue
);
871 void wxGridCellBoolEditor::StartingClick()
873 CBox()->SetValue(!CBox()->GetValue());
876 // ----------------------------------------------------------------------------
877 // wxGridCellChoiceEditor
878 // ----------------------------------------------------------------------------
880 wxGridCellChoiceEditor::wxGridCellChoiceEditor(size_t count
,
881 const wxChar
* choices
[],
883 : m_allowOthers(allowOthers
)
885 m_choices
.Alloc(count
);
886 for ( size_t n
= 0; n
< count
; n
++ )
888 m_choices
.Add(choices
[n
]);
892 void wxGridCellChoiceEditor::Create(wxWindow
* parent
,
894 wxEvtHandler
* evtHandler
)
896 size_t count
= m_choices
.GetCount();
897 wxString
*choices
= new wxString
[count
];
898 for ( size_t n
= 0; n
< count
; n
++ )
900 choices
[n
] = m_choices
[n
];
903 m_control
= new wxComboBox(parent
, id
, wxEmptyString
,
904 wxDefaultPosition
, wxDefaultSize
,
906 m_allowOthers
? 0 : wxCB_READONLY
);
910 wxGridCellEditor::Create(parent
, id
, evtHandler
);
913 void wxGridCellChoiceEditor::PaintBackground(const wxRect
& rectCell
,
914 wxGridCellAttr
* attr
)
916 // as we fill the entire client area, don't do anything here to minimize
919 // TODO: It doesn't actually fill the client area since the height of a
920 // combo always defaults to the standard... Until someone has time to
921 // figure out the right rectangle to paint, just do it the normal way...
922 wxGridCellEditor::PaintBackground(rectCell
, attr
);
925 void wxGridCellChoiceEditor::BeginEdit(int row
, int col
, wxGrid
* grid
)
927 wxASSERT_MSG(m_control
,
928 wxT("The wxGridCellEditor must be Created first!"));
930 m_startValue
= grid
->GetTable()->GetValue(row
, col
);
932 Combo()->SetValue(m_startValue
);
933 size_t count
= m_choices
.GetCount();
934 for (size_t i
=0; i
<count
; i
++)
936 if (m_startValue
== m_choices
[i
])
938 Combo()->SetSelection(i
);
942 Combo()->SetInsertionPointEnd();
946 bool wxGridCellChoiceEditor::EndEdit(int row
, int col
,
949 wxString value
= Combo()->GetValue();
950 bool changed
= value
!= m_startValue
;
953 grid
->GetTable()->SetValue(row
, col
, value
);
955 m_startValue
= wxEmptyString
;
956 Combo()->SetValue(m_startValue
);
961 void wxGridCellChoiceEditor::Reset()
963 Combo()->SetValue(m_startValue
);
964 Combo()->SetInsertionPointEnd();
967 // ----------------------------------------------------------------------------
968 // wxGridCellEditorEvtHandler
969 // ----------------------------------------------------------------------------
971 void wxGridCellEditorEvtHandler::OnKeyDown(wxKeyEvent
& event
)
973 switch ( event
.KeyCode() )
977 m_grid
->DisableCellEditControl();
981 event
.Skip( m_grid
->ProcessEvent( event
) );
985 if (!m_grid
->ProcessEvent(event
))
986 m_editor
->HandleReturn(event
);
995 void wxGridCellEditorEvtHandler::OnChar(wxKeyEvent
& event
)
997 switch ( event
.KeyCode() )
1009 // ============================================================================
1011 // ============================================================================
1013 // ----------------------------------------------------------------------------
1014 // wxGridCellRenderer
1015 // ----------------------------------------------------------------------------
1017 void wxGridCellRenderer::Draw(wxGrid
& grid
,
1018 wxGridCellAttr
& attr
,
1024 dc
.SetBackgroundMode( wxSOLID
);
1028 dc
.SetBrush( wxBrush(grid
.GetSelectionBackground(), wxSOLID
) );
1032 dc
.SetBrush( wxBrush(attr
.GetBackgroundColour(), wxSOLID
) );
1035 dc
.SetPen( *wxTRANSPARENT_PEN
);
1036 dc
.DrawRectangle(rect
);
1039 wxGridCellRenderer::~wxGridCellRenderer()
1043 // ----------------------------------------------------------------------------
1044 // wxGridCellStringRenderer
1045 // ----------------------------------------------------------------------------
1047 void wxGridCellStringRenderer::SetTextColoursAndFont(wxGrid
& grid
,
1048 wxGridCellAttr
& attr
,
1052 dc
.SetBackgroundMode( wxTRANSPARENT
);
1054 // TODO some special colours for attr.IsReadOnly() case?
1058 dc
.SetTextBackground( grid
.GetSelectionBackground() );
1059 dc
.SetTextForeground( grid
.GetSelectionForeground() );
1063 dc
.SetTextBackground( attr
.GetBackgroundColour() );
1064 dc
.SetTextForeground( attr
.GetTextColour() );
1067 dc
.SetFont( attr
.GetFont() );
1070 wxSize
wxGridCellStringRenderer::DoGetBestSize(wxGridCellAttr
& attr
,
1072 const wxString
& text
)
1075 dc
.SetFont(attr
.GetFont());
1076 dc
.GetTextExtent(text
, &x
, &y
);
1078 return wxSize(x
, y
);
1081 wxSize
wxGridCellStringRenderer::GetBestSize(wxGrid
& grid
,
1082 wxGridCellAttr
& attr
,
1086 return DoGetBestSize(attr
, dc
, grid
.GetCellValue(row
, col
));
1089 void wxGridCellStringRenderer::Draw(wxGrid
& grid
,
1090 wxGridCellAttr
& attr
,
1092 const wxRect
& rectCell
,
1096 wxGridCellRenderer::Draw(grid
, attr
, dc
, rectCell
, row
, col
, isSelected
);
1098 // now we only have to draw the text
1099 SetTextColoursAndFont(grid
, attr
, dc
, isSelected
);
1102 attr
.GetAlignment(&hAlign
, &vAlign
);
1104 wxRect rect
= rectCell
;
1107 grid
.DrawTextRectangle(dc
, grid
.GetCellValue(row
, col
),
1108 rect
, hAlign
, vAlign
);
1111 // ----------------------------------------------------------------------------
1112 // wxGridCellNumberRenderer
1113 // ----------------------------------------------------------------------------
1115 wxString
wxGridCellNumberRenderer::GetString(wxGrid
& grid
, int row
, int col
)
1117 wxGridTableBase
*table
= grid
.GetTable();
1119 if ( table
->CanGetValueAs(row
, col
, wxGRID_VALUE_NUMBER
) )
1121 text
.Printf(_T("%ld"), table
->GetValueAsLong(row
, col
));
1125 text
= table
->GetValue(row
, col
);
1131 void wxGridCellNumberRenderer::Draw(wxGrid
& grid
,
1132 wxGridCellAttr
& attr
,
1134 const wxRect
& rectCell
,
1138 wxGridCellRenderer::Draw(grid
, attr
, dc
, rectCell
, row
, col
, isSelected
);
1140 SetTextColoursAndFont(grid
, attr
, dc
, isSelected
);
1142 // draw the text right aligned by default
1144 attr
.GetAlignment(&hAlign
, &vAlign
);
1147 wxRect rect
= rectCell
;
1150 grid
.DrawTextRectangle(dc
, GetString(grid
, row
, col
), rect
, hAlign
, vAlign
);
1153 wxSize
wxGridCellNumberRenderer::GetBestSize(wxGrid
& grid
,
1154 wxGridCellAttr
& attr
,
1158 return DoGetBestSize(attr
, dc
, GetString(grid
, row
, col
));
1161 // ----------------------------------------------------------------------------
1162 // wxGridCellFloatRenderer
1163 // ----------------------------------------------------------------------------
1165 wxGridCellFloatRenderer::wxGridCellFloatRenderer(int width
, int precision
)
1168 SetPrecision(precision
);
1171 wxString
wxGridCellFloatRenderer::GetString(wxGrid
& grid
, int row
, int col
)
1173 wxGridTableBase
*table
= grid
.GetTable();
1175 if ( table
->CanGetValueAs(row
, col
, wxGRID_VALUE_FLOAT
) )
1179 m_format
.Printf(_T("%%%d.%d%%f"), m_width
, m_precision
);
1182 text
.Printf(m_format
, table
->GetValueAsDouble(row
, col
));
1186 text
= table
->GetValue(row
, col
);
1192 void wxGridCellFloatRenderer::Draw(wxGrid
& grid
,
1193 wxGridCellAttr
& attr
,
1195 const wxRect
& rectCell
,
1199 wxGridCellRenderer::Draw(grid
, attr
, dc
, rectCell
, row
, col
, isSelected
);
1201 SetTextColoursAndFont(grid
, attr
, dc
, isSelected
);
1203 // draw the text right aligned by default
1205 attr
.GetAlignment(&hAlign
, &vAlign
);
1208 wxRect rect
= rectCell
;
1211 grid
.DrawTextRectangle(dc
, GetString(grid
, row
, col
), rect
, hAlign
, vAlign
);
1214 wxSize
wxGridCellFloatRenderer::GetBestSize(wxGrid
& grid
,
1215 wxGridCellAttr
& attr
,
1219 return DoGetBestSize(attr
, dc
, GetString(grid
, row
, col
));
1222 // ----------------------------------------------------------------------------
1223 // wxGridCellBoolRenderer
1224 // ----------------------------------------------------------------------------
1226 wxSize
wxGridCellBoolRenderer::ms_sizeCheckMark
;
1228 // between checkmark and box
1229 static const wxCoord wxGRID_CHECKMARK_MARGIN
= 4;
1231 wxSize
wxGridCellBoolRenderer::GetBestSize(wxGrid
& grid
,
1232 wxGridCellAttr
& WXUNUSED(attr
),
1237 // compute it only once (no locks for MT safeness in GUI thread...)
1238 if ( !ms_sizeCheckMark
.x
)
1240 // get checkbox size
1241 wxCoord checkSize
= 0;
1242 wxCheckBox
*checkbox
= new wxCheckBox(&grid
, -1, wxEmptyString
);
1243 wxSize size
= checkbox
->GetBestSize();
1244 checkSize
= size
.y
+ wxGRID_CHECKMARK_MARGIN
;
1246 // FIXME wxGTK::wxCheckBox::GetBestSize() gives "wrong" result
1247 #if defined(__WXGTK__) || defined(__WXMOTIF__)
1248 checkSize
-= size
.y
/ 2;
1253 ms_sizeCheckMark
.x
= ms_sizeCheckMark
.y
= checkSize
;
1256 return ms_sizeCheckMark
;
1259 void wxGridCellBoolRenderer::Draw(wxGrid
& grid
,
1260 wxGridCellAttr
& attr
,
1266 wxGridCellRenderer::Draw(grid
, attr
, dc
, rect
, row
, col
, isSelected
);
1268 // draw a check mark in the centre (ignoring alignment - TODO)
1269 wxSize size
= GetBestSize(grid
, attr
, dc
, row
, col
);
1271 rectMark
.x
= rect
.x
+ rect
.width
/2 - size
.x
/2;
1272 rectMark
.y
= rect
.y
+ rect
.height
/2 - size
.y
/2;
1273 rectMark
.width
= size
.x
;
1274 rectMark
.height
= size
.y
;
1276 dc
.SetBrush(*wxTRANSPARENT_BRUSH
);
1277 dc
.SetPen(wxPen(attr
.GetTextColour(), 1, wxSOLID
));
1278 dc
.DrawRectangle(rectMark
);
1280 rectMark
.Inflate(-wxGRID_CHECKMARK_MARGIN
);
1283 if (grid
.GetTable()->CanGetValueAs(row
, col
, wxT("bool")))
1284 value
= grid
.GetTable()->GetValueAsBool(row
, col
);
1286 value
= !!grid
.GetTable()->GetValue(row
, col
);
1290 dc
.SetTextForeground(attr
.GetTextColour());
1291 dc
.DrawCheckMark(rectMark
);
1295 // ----------------------------------------------------------------------------
1297 // ----------------------------------------------------------------------------
1299 const wxColour
& wxGridCellAttr::GetTextColour() const
1301 if (HasTextColour())
1305 else if (m_defGridAttr
!= this)
1307 return m_defGridAttr
->GetTextColour();
1311 wxFAIL_MSG(wxT("Missing default cell attribute"));
1312 return wxNullColour
;
1317 const wxColour
& wxGridCellAttr::GetBackgroundColour() const
1319 if (HasBackgroundColour())
1321 else if (m_defGridAttr
!= this)
1322 return m_defGridAttr
->GetBackgroundColour();
1325 wxFAIL_MSG(wxT("Missing default cell attribute"));
1326 return wxNullColour
;
1331 const wxFont
& wxGridCellAttr::GetFont() const
1335 else if (m_defGridAttr
!= this)
1336 return m_defGridAttr
->GetFont();
1339 wxFAIL_MSG(wxT("Missing default cell attribute"));
1345 void wxGridCellAttr::GetAlignment(int *hAlign
, int *vAlign
) const
1349 if ( hAlign
) *hAlign
= m_hAlign
;
1350 if ( vAlign
) *vAlign
= m_vAlign
;
1352 else if (m_defGridAttr
!= this)
1353 m_defGridAttr
->GetAlignment(hAlign
, vAlign
);
1356 wxFAIL_MSG(wxT("Missing default cell attribute"));
1361 // GetRenderer and GetEditor use a slightly different decision path about
1362 // which attribute to use. If a non-default attr object has one then it is
1363 // used, otherwise the default editor or renderer is fetched from the grid and
1364 // used. It should be the default for the data type of the cell. If it is
1365 // NULL (because the table has a type that the grid does not have in its
1366 // registry,) then the grid's default editor or renderer is used.
1368 wxGridCellRenderer
* wxGridCellAttr::GetRenderer(wxGrid
* grid
, int row
, int col
) const
1370 if ((m_defGridAttr
!= this || grid
== NULL
) && HasRenderer())
1371 return m_renderer
; // use local attribute
1373 wxGridCellRenderer
* renderer
= NULL
;
1374 if (grid
) // get renderer for the data type
1375 renderer
= grid
->GetDefaultRendererForCell(row
, col
);
1378 // if we still don't have one then use the grid default
1379 renderer
= m_defGridAttr
->GetRenderer(NULL
,0,0);
1382 wxFAIL_MSG(wxT("Missing default cell attribute"));
1387 wxGridCellEditor
* wxGridCellAttr::GetEditor(wxGrid
* grid
, int row
, int col
) const
1389 if ((m_defGridAttr
!= this || grid
== NULL
) && HasEditor())
1390 return m_editor
; // use local attribute
1392 wxGridCellEditor
* editor
= NULL
;
1393 if (grid
) // get renderer for the data type
1394 editor
= grid
->GetDefaultEditorForCell(row
, col
);
1397 // if we still don't have one then use the grid default
1398 editor
= m_defGridAttr
->GetEditor(NULL
,0,0);
1401 wxFAIL_MSG(wxT("Missing default cell attribute"));
1406 // ----------------------------------------------------------------------------
1407 // wxGridCellAttrData
1408 // ----------------------------------------------------------------------------
1410 void wxGridCellAttrData::SetAttr(wxGridCellAttr
*attr
, int row
, int col
)
1412 int n
= FindIndex(row
, col
);
1413 if ( n
== wxNOT_FOUND
)
1415 // add the attribute
1416 m_attrs
.Add(new wxGridCellWithAttr(row
, col
, attr
));
1422 // change the attribute
1423 m_attrs
[(size_t)n
].attr
= attr
;
1427 // remove this attribute
1428 m_attrs
.RemoveAt((size_t)n
);
1433 wxGridCellAttr
*wxGridCellAttrData::GetAttr(int row
, int col
) const
1435 wxGridCellAttr
*attr
= (wxGridCellAttr
*)NULL
;
1437 int n
= FindIndex(row
, col
);
1438 if ( n
!= wxNOT_FOUND
)
1440 attr
= m_attrs
[(size_t)n
].attr
;
1447 void wxGridCellAttrData::UpdateAttrRows( size_t pos
, int numRows
)
1449 size_t count
= m_attrs
.GetCount();
1450 for ( size_t n
= 0; n
< count
; n
++ )
1452 wxGridCellCoords
& coords
= m_attrs
[n
].coords
;
1453 wxCoord row
= coords
.GetRow();
1454 if ((size_t)row
>= pos
)
1458 // If rows inserted, include row counter where necessary
1459 coords
.SetRow(row
+ numRows
);
1461 else if (numRows
< 0)
1463 // If rows deleted ...
1464 if ((size_t)row
>= pos
- numRows
)
1466 // ...either decrement row counter (if row still exists)...
1467 coords
.SetRow(row
+ numRows
);
1471 // ...or remove the attribute
1472 m_attrs
.RemoveAt((size_t)n
);
1480 void wxGridCellAttrData::UpdateAttrCols( size_t pos
, int numCols
)
1482 size_t count
= m_attrs
.GetCount();
1483 for ( size_t n
= 0; n
< count
; n
++ )
1485 wxGridCellCoords
& coords
= m_attrs
[n
].coords
;
1486 wxCoord col
= coords
.GetCol();
1487 if ( (size_t)col
>= pos
)
1491 // If rows inserted, include row counter where necessary
1492 coords
.SetCol(col
+ numCols
);
1494 else if (numCols
< 0)
1496 // If rows deleted ...
1497 if ((size_t)col
>= pos
- numCols
)
1499 // ...either decrement row counter (if row still exists)...
1500 coords
.SetCol(col
+ numCols
);
1504 // ...or remove the attribute
1505 m_attrs
.RemoveAt((size_t)n
);
1513 int wxGridCellAttrData::FindIndex(int row
, int col
) const
1515 size_t count
= m_attrs
.GetCount();
1516 for ( size_t n
= 0; n
< count
; n
++ )
1518 const wxGridCellCoords
& coords
= m_attrs
[n
].coords
;
1519 if ( (coords
.GetRow() == row
) && (coords
.GetCol() == col
) )
1528 // ----------------------------------------------------------------------------
1529 // wxGridRowOrColAttrData
1530 // ----------------------------------------------------------------------------
1532 wxGridRowOrColAttrData::~wxGridRowOrColAttrData()
1534 size_t count
= m_attrs
.Count();
1535 for ( size_t n
= 0; n
< count
; n
++ )
1537 m_attrs
[n
]->DecRef();
1541 wxGridCellAttr
*wxGridRowOrColAttrData::GetAttr(int rowOrCol
) const
1543 wxGridCellAttr
*attr
= (wxGridCellAttr
*)NULL
;
1545 int n
= m_rowsOrCols
.Index(rowOrCol
);
1546 if ( n
!= wxNOT_FOUND
)
1548 attr
= m_attrs
[(size_t)n
];
1555 void wxGridRowOrColAttrData::SetAttr(wxGridCellAttr
*attr
, int rowOrCol
)
1557 int n
= m_rowsOrCols
.Index(rowOrCol
);
1558 if ( n
== wxNOT_FOUND
)
1560 // add the attribute
1561 m_rowsOrCols
.Add(rowOrCol
);
1568 // change the attribute
1569 m_attrs
[(size_t)n
] = attr
;
1573 // remove this attribute
1574 m_attrs
[(size_t)n
]->DecRef();
1575 m_rowsOrCols
.RemoveAt((size_t)n
);
1576 m_attrs
.RemoveAt((size_t)n
);
1581 void wxGridRowOrColAttrData::UpdateAttrRowsOrCols( size_t pos
, int numRowsOrCols
)
1583 size_t count
= m_attrs
.GetCount();
1584 for ( size_t n
= 0; n
< count
; n
++ )
1586 int & rowOrCol
= m_rowsOrCols
[n
];
1587 if ( (size_t)rowOrCol
>= pos
)
1589 if ( numRowsOrCols
> 0 )
1591 // If rows inserted, include row counter where necessary
1592 rowOrCol
+= numRowsOrCols
;
1594 else if ( numRowsOrCols
< 0)
1596 // If rows deleted, either decrement row counter (if row still exists)
1597 if ((size_t)rowOrCol
>= pos
- numRowsOrCols
)
1598 rowOrCol
+= numRowsOrCols
;
1601 m_rowsOrCols
.RemoveAt((size_t)n
);
1602 m_attrs
.RemoveAt((size_t)n
);
1610 // ----------------------------------------------------------------------------
1611 // wxGridCellAttrProvider
1612 // ----------------------------------------------------------------------------
1614 wxGridCellAttrProvider::wxGridCellAttrProvider()
1616 m_data
= (wxGridCellAttrProviderData
*)NULL
;
1619 wxGridCellAttrProvider::~wxGridCellAttrProvider()
1624 void wxGridCellAttrProvider::InitData()
1626 m_data
= new wxGridCellAttrProviderData
;
1629 wxGridCellAttr
*wxGridCellAttrProvider::GetAttr(int row
, int col
) const
1631 wxGridCellAttr
*attr
= (wxGridCellAttr
*)NULL
;
1634 // first look for the attribute of this specific cell
1635 attr
= m_data
->m_cellAttrs
.GetAttr(row
, col
);
1639 // then look for the col attr (col attributes are more common than
1640 // the row ones, hence they have priority)
1641 attr
= m_data
->m_colAttrs
.GetAttr(col
);
1646 // finally try the row attributes
1647 attr
= m_data
->m_rowAttrs
.GetAttr(row
);
1654 void wxGridCellAttrProvider::SetAttr(wxGridCellAttr
*attr
,
1660 m_data
->m_cellAttrs
.SetAttr(attr
, row
, col
);
1663 void wxGridCellAttrProvider::SetRowAttr(wxGridCellAttr
*attr
, int row
)
1668 m_data
->m_rowAttrs
.SetAttr(attr
, row
);
1671 void wxGridCellAttrProvider::SetColAttr(wxGridCellAttr
*attr
, int col
)
1676 m_data
->m_colAttrs
.SetAttr(attr
, col
);
1679 void wxGridCellAttrProvider::UpdateAttrRows( size_t pos
, int numRows
)
1683 m_data
->m_cellAttrs
.UpdateAttrRows( pos
, numRows
);
1685 m_data
->m_rowAttrs
.UpdateAttrRowsOrCols( pos
, numRows
);
1689 void wxGridCellAttrProvider::UpdateAttrCols( size_t pos
, int numCols
)
1693 m_data
->m_cellAttrs
.UpdateAttrCols( pos
, numCols
);
1695 m_data
->m_colAttrs
.UpdateAttrRowsOrCols( pos
, numCols
);
1699 // ----------------------------------------------------------------------------
1700 // wxGridTypeRegistry
1701 // ----------------------------------------------------------------------------
1703 wxGridTypeRegistry::~wxGridTypeRegistry()
1705 for (size_t i
=0; i
<m_typeinfo
.Count(); i
++)
1706 delete m_typeinfo
[i
];
1710 void wxGridTypeRegistry::RegisterDataType(const wxString
& typeName
,
1711 wxGridCellRenderer
* renderer
,
1712 wxGridCellEditor
* editor
)
1715 wxGridDataTypeInfo
* info
= new wxGridDataTypeInfo(typeName
, renderer
, editor
);
1717 // is it already registered?
1718 if ((loc
= FindDataType(typeName
)) != -1) {
1719 delete m_typeinfo
[loc
];
1720 m_typeinfo
[loc
] = info
;
1723 m_typeinfo
.Add(info
);
1727 int wxGridTypeRegistry::FindDataType(const wxString
& typeName
)
1731 for (size_t i
=0; i
<m_typeinfo
.Count(); i
++) {
1732 if (typeName
== m_typeinfo
[i
]->m_typeName
) {
1741 wxGridCellRenderer
* wxGridTypeRegistry::GetRenderer(int index
)
1743 wxGridCellRenderer
* renderer
= m_typeinfo
[index
]->m_renderer
;
1747 wxGridCellEditor
* wxGridTypeRegistry::GetEditor(int index
)
1749 wxGridCellEditor
* editor
= m_typeinfo
[index
]->m_editor
;
1753 // ----------------------------------------------------------------------------
1755 // ----------------------------------------------------------------------------
1757 IMPLEMENT_ABSTRACT_CLASS( wxGridTableBase
, wxObject
)
1760 wxGridTableBase::wxGridTableBase()
1762 m_view
= (wxGrid
*) NULL
;
1763 m_attrProvider
= (wxGridCellAttrProvider
*) NULL
;
1766 wxGridTableBase::~wxGridTableBase()
1768 delete m_attrProvider
;
1771 void wxGridTableBase::SetAttrProvider(wxGridCellAttrProvider
*attrProvider
)
1773 delete m_attrProvider
;
1774 m_attrProvider
= attrProvider
;
1777 bool wxGridTableBase::CanHaveAttributes()
1779 if ( ! GetAttrProvider() )
1781 // use the default attr provider by default
1782 SetAttrProvider(new wxGridCellAttrProvider
);
1787 wxGridCellAttr
*wxGridTableBase::GetAttr(int row
, int col
)
1789 if ( m_attrProvider
)
1790 return m_attrProvider
->GetAttr(row
, col
);
1792 return (wxGridCellAttr
*)NULL
;
1795 void wxGridTableBase::SetAttr(wxGridCellAttr
* attr
, int row
, int col
)
1797 if ( m_attrProvider
)
1799 m_attrProvider
->SetAttr(attr
, row
, col
);
1803 // as we take ownership of the pointer and don't store it, we must
1809 void wxGridTableBase::SetRowAttr(wxGridCellAttr
*attr
, int row
)
1811 if ( m_attrProvider
)
1813 m_attrProvider
->SetRowAttr(attr
, row
);
1817 // as we take ownership of the pointer and don't store it, we must
1823 void wxGridTableBase::SetColAttr(wxGridCellAttr
*attr
, int col
)
1825 if ( m_attrProvider
)
1827 m_attrProvider
->SetColAttr(attr
, col
);
1831 // as we take ownership of the pointer and don't store it, we must
1837 void wxGridTableBase::UpdateAttrRows( size_t pos
, int numRows
)
1839 if ( m_attrProvider
)
1841 m_attrProvider
->UpdateAttrRows( pos
, numRows
);
1845 void wxGridTableBase::UpdateAttrCols( size_t pos
, int numCols
)
1847 if ( m_attrProvider
)
1849 m_attrProvider
->UpdateAttrCols( pos
, numCols
);
1853 bool wxGridTableBase::InsertRows( size_t pos
, size_t numRows
)
1855 wxFAIL_MSG( wxT("Called grid table class function InsertRows\n"
1856 "but your derived table class does not override this function") );
1861 bool wxGridTableBase::AppendRows( size_t numRows
)
1863 wxFAIL_MSG( wxT("Called grid table class function AppendRows\n"
1864 "but your derived table class does not override this function"));
1869 bool wxGridTableBase::DeleteRows( size_t pos
, size_t numRows
)
1871 wxFAIL_MSG( wxT("Called grid table class function DeleteRows\n"
1872 "but your derived table class does not override this function"));
1877 bool wxGridTableBase::InsertCols( size_t pos
, size_t numCols
)
1879 wxFAIL_MSG( wxT("Called grid table class function InsertCols\n"
1880 "but your derived table class does not override this function"));
1885 bool wxGridTableBase::AppendCols( size_t numCols
)
1887 wxFAIL_MSG(wxT("Called grid table class function AppendCols\n"
1888 "but your derived table class does not override this function"));
1893 bool wxGridTableBase::DeleteCols( size_t pos
, size_t numCols
)
1895 wxFAIL_MSG( wxT("Called grid table class function DeleteCols\n"
1896 "but your derived table class does not override this function"));
1902 wxString
wxGridTableBase::GetRowLabelValue( int row
)
1905 s
<< row
+ 1; // RD: Starting the rows at zero confuses users, no matter
1906 // how much it makes sense to us geeks.
1910 wxString
wxGridTableBase::GetColLabelValue( int col
)
1912 // default col labels are:
1913 // cols 0 to 25 : A-Z
1914 // cols 26 to 675 : AA-ZZ
1919 for ( n
= 1; ; n
++ )
1921 s
+= (_T('A') + (wxChar
)( col%26
));
1923 if ( col
< 0 ) break;
1926 // reverse the string...
1928 for ( i
= 0; i
< n
; i
++ )
1937 wxString
wxGridTableBase::GetTypeName( int WXUNUSED(row
), int WXUNUSED(col
) )
1939 return wxGRID_VALUE_STRING
;
1942 bool wxGridTableBase::CanGetValueAs( int WXUNUSED(row
), int WXUNUSED(col
),
1943 const wxString
& typeName
)
1945 return typeName
== wxGRID_VALUE_STRING
;
1948 bool wxGridTableBase::CanSetValueAs( int row
, int col
, const wxString
& typeName
)
1950 return CanGetValueAs(row
, col
, typeName
);
1953 long wxGridTableBase::GetValueAsLong( int WXUNUSED(row
), int WXUNUSED(col
) )
1958 double wxGridTableBase::GetValueAsDouble( int WXUNUSED(row
), int WXUNUSED(col
) )
1963 bool wxGridTableBase::GetValueAsBool( int WXUNUSED(row
), int WXUNUSED(col
) )
1968 void wxGridTableBase::SetValueAsLong( int WXUNUSED(row
), int WXUNUSED(col
),
1969 long WXUNUSED(value
) )
1973 void wxGridTableBase::SetValueAsDouble( int WXUNUSED(row
), int WXUNUSED(col
),
1974 double WXUNUSED(value
) )
1978 void wxGridTableBase::SetValueAsBool( int WXUNUSED(row
), int WXUNUSED(col
),
1979 bool WXUNUSED(value
) )
1984 void* wxGridTableBase::GetValueAsCustom( int WXUNUSED(row
), int WXUNUSED(col
),
1985 const wxString
& WXUNUSED(typeName
) )
1990 void wxGridTableBase::SetValueAsCustom( int WXUNUSED(row
), int WXUNUSED(col
),
1991 const wxString
& WXUNUSED(typeName
),
1992 void* WXUNUSED(value
) )
1997 //////////////////////////////////////////////////////////////////////
1999 // Message class for the grid table to send requests and notifications
2003 wxGridTableMessage::wxGridTableMessage()
2005 m_table
= (wxGridTableBase
*) NULL
;
2011 wxGridTableMessage::wxGridTableMessage( wxGridTableBase
*table
, int id
,
2012 int commandInt1
, int commandInt2
)
2016 m_comInt1
= commandInt1
;
2017 m_comInt2
= commandInt2
;
2022 //////////////////////////////////////////////////////////////////////
2024 // A basic grid table for string data. An object of this class will
2025 // created by wxGrid if you don't specify an alternative table class.
2028 WX_DEFINE_OBJARRAY(wxGridStringArray
)
2030 IMPLEMENT_DYNAMIC_CLASS( wxGridStringTable
, wxGridTableBase
)
2032 wxGridStringTable::wxGridStringTable()
2037 wxGridStringTable::wxGridStringTable( int numRows
, int numCols
)
2042 m_data
.Alloc( numRows
);
2045 sa
.Alloc( numCols
);
2046 for ( col
= 0; col
< numCols
; col
++ )
2048 sa
.Add( wxEmptyString
);
2051 for ( row
= 0; row
< numRows
; row
++ )
2057 wxGridStringTable::~wxGridStringTable()
2061 long wxGridStringTable::GetNumberRows()
2063 return m_data
.GetCount();
2066 long wxGridStringTable::GetNumberCols()
2068 if ( m_data
.GetCount() > 0 )
2069 return m_data
[0].GetCount();
2074 wxString
wxGridStringTable::GetValue( int row
, int col
)
2076 // TODO: bounds checking
2078 return m_data
[row
][col
];
2081 void wxGridStringTable::SetValue( int row
, int col
, const wxString
& value
)
2083 // TODO: bounds checking
2085 m_data
[row
][col
] = value
;
2088 bool wxGridStringTable::IsEmptyCell( int row
, int col
)
2090 // TODO: bounds checking
2092 return (m_data
[row
][col
] == wxEmptyString
);
2096 void wxGridStringTable::Clear()
2099 int numRows
, numCols
;
2101 numRows
= m_data
.GetCount();
2104 numCols
= m_data
[0].GetCount();
2106 for ( row
= 0; row
< numRows
; row
++ )
2108 for ( col
= 0; col
< numCols
; col
++ )
2110 m_data
[row
][col
] = wxEmptyString
;
2117 bool wxGridStringTable::InsertRows( size_t pos
, size_t numRows
)
2121 size_t curNumRows
= m_data
.GetCount();
2122 size_t curNumCols
= ( curNumRows
> 0 ? m_data
[0].GetCount() : 0 );
2124 if ( pos
>= curNumRows
)
2126 return AppendRows( numRows
);
2130 sa
.Alloc( curNumCols
);
2131 for ( col
= 0; col
< curNumCols
; col
++ )
2133 sa
.Add( wxEmptyString
);
2136 for ( row
= pos
; row
< pos
+ numRows
; row
++ )
2138 m_data
.Insert( sa
, row
);
2140 UpdateAttrRows( pos
, numRows
);
2143 wxGridTableMessage
msg( this,
2144 wxGRIDTABLE_NOTIFY_ROWS_INSERTED
,
2148 GetView()->ProcessTableMessage( msg
);
2154 bool wxGridStringTable::AppendRows( size_t numRows
)
2158 size_t curNumRows
= m_data
.GetCount();
2159 size_t curNumCols
= ( curNumRows
> 0 ? m_data
[0].GetCount() : 0 );
2162 if ( curNumCols
> 0 )
2164 sa
.Alloc( curNumCols
);
2165 for ( col
= 0; col
< curNumCols
; col
++ )
2167 sa
.Add( wxEmptyString
);
2171 for ( row
= 0; row
< numRows
; row
++ )
2178 wxGridTableMessage
msg( this,
2179 wxGRIDTABLE_NOTIFY_ROWS_APPENDED
,
2182 GetView()->ProcessTableMessage( msg
);
2188 bool wxGridStringTable::DeleteRows( size_t pos
, size_t numRows
)
2192 size_t curNumRows
= m_data
.GetCount();
2194 if ( pos
>= curNumRows
)
2197 errmsg
.Printf("Called wxGridStringTable::DeleteRows(pos=%d, N=%d)\n"
2198 "Pos value is invalid for present table with %d rows",
2199 pos
, numRows
, curNumRows
);
2200 wxFAIL_MSG( wxT(errmsg
) );
2204 if ( numRows
> curNumRows
- pos
)
2206 numRows
= curNumRows
- pos
;
2209 if ( numRows
>= curNumRows
)
2211 m_data
.Empty(); // don't release memory just yet
2215 for ( n
= 0; n
< numRows
; n
++ )
2217 m_data
.Remove( pos
);
2220 UpdateAttrRows( pos
, -((int)numRows
) );
2223 wxGridTableMessage
msg( this,
2224 wxGRIDTABLE_NOTIFY_ROWS_DELETED
,
2228 GetView()->ProcessTableMessage( msg
);
2234 bool wxGridStringTable::InsertCols( size_t pos
, size_t numCols
)
2238 size_t curNumRows
= m_data
.GetCount();
2239 size_t curNumCols
= ( curNumRows
> 0 ? m_data
[0].GetCount() : 0 );
2241 if ( pos
>= curNumCols
)
2243 return AppendCols( numCols
);
2246 for ( row
= 0; row
< curNumRows
; row
++ )
2248 for ( col
= pos
; col
< pos
+ numCols
; col
++ )
2250 m_data
[row
].Insert( wxEmptyString
, col
);
2253 UpdateAttrCols( pos
, numCols
);
2256 wxGridTableMessage
msg( this,
2257 wxGRIDTABLE_NOTIFY_COLS_INSERTED
,
2261 GetView()->ProcessTableMessage( msg
);
2267 bool wxGridStringTable::AppendCols( size_t numCols
)
2271 size_t curNumRows
= m_data
.GetCount();
2274 // TODO: something better than this ?
2276 wxFAIL_MSG( wxT("Unable to append cols to a grid table with no rows.\n"
2277 "Call AppendRows() first") );
2281 for ( row
= 0; row
< curNumRows
; row
++ )
2283 for ( n
= 0; n
< numCols
; n
++ )
2285 m_data
[row
].Add( wxEmptyString
);
2291 wxGridTableMessage
msg( this,
2292 wxGRIDTABLE_NOTIFY_COLS_APPENDED
,
2295 GetView()->ProcessTableMessage( msg
);
2301 bool wxGridStringTable::DeleteCols( size_t pos
, size_t numCols
)
2305 size_t curNumRows
= m_data
.GetCount();
2306 size_t curNumCols
= ( curNumRows
> 0 ? m_data
[0].GetCount() : 0 );
2308 if ( pos
>= curNumCols
)
2311 errmsg
.Printf( "Called wxGridStringTable::DeleteCols(pos=%d, N=%d)...\n"
2312 "Pos value is invalid for present table with %d cols",
2313 pos
, numCols
, curNumCols
);
2314 wxFAIL_MSG( wxT( errmsg
) );
2318 if ( numCols
> curNumCols
- pos
)
2320 numCols
= curNumCols
- pos
;
2323 for ( row
= 0; row
< curNumRows
; row
++ )
2325 if ( numCols
>= curNumCols
)
2327 m_data
[row
].Clear();
2331 for ( n
= 0; n
< numCols
; n
++ )
2333 m_data
[row
].Remove( pos
);
2337 UpdateAttrCols( pos
, -((int)numCols
) );
2340 wxGridTableMessage
msg( this,
2341 wxGRIDTABLE_NOTIFY_COLS_DELETED
,
2345 GetView()->ProcessTableMessage( msg
);
2351 wxString
wxGridStringTable::GetRowLabelValue( int row
)
2353 if ( row
> (int)(m_rowLabels
.GetCount()) - 1 )
2355 // using default label
2357 return wxGridTableBase::GetRowLabelValue( row
);
2361 return m_rowLabels
[ row
];
2365 wxString
wxGridStringTable::GetColLabelValue( int col
)
2367 if ( col
> (int)(m_colLabels
.GetCount()) - 1 )
2369 // using default label
2371 return wxGridTableBase::GetColLabelValue( col
);
2375 return m_colLabels
[ col
];
2379 void wxGridStringTable::SetRowLabelValue( int row
, const wxString
& value
)
2381 if ( row
> (int)(m_rowLabels
.GetCount()) - 1 )
2383 int n
= m_rowLabels
.GetCount();
2385 for ( i
= n
; i
<= row
; i
++ )
2387 m_rowLabels
.Add( wxGridTableBase::GetRowLabelValue(i
) );
2391 m_rowLabels
[row
] = value
;
2394 void wxGridStringTable::SetColLabelValue( int col
, const wxString
& value
)
2396 if ( col
> (int)(m_colLabels
.GetCount()) - 1 )
2398 int n
= m_colLabels
.GetCount();
2400 for ( i
= n
; i
<= col
; i
++ )
2402 m_colLabels
.Add( wxGridTableBase::GetColLabelValue(i
) );
2406 m_colLabels
[col
] = value
;
2411 //////////////////////////////////////////////////////////////////////
2412 //////////////////////////////////////////////////////////////////////
2414 IMPLEMENT_DYNAMIC_CLASS( wxGridRowLabelWindow
, wxWindow
)
2416 BEGIN_EVENT_TABLE( wxGridRowLabelWindow
, wxWindow
)
2417 EVT_PAINT( wxGridRowLabelWindow::OnPaint
)
2418 EVT_MOUSE_EVENTS( wxGridRowLabelWindow::OnMouseEvent
)
2419 EVT_KEY_DOWN( wxGridRowLabelWindow::OnKeyDown
)
2422 wxGridRowLabelWindow::wxGridRowLabelWindow( wxGrid
*parent
,
2424 const wxPoint
&pos
, const wxSize
&size
)
2425 : wxWindow( parent
, id
, pos
, size
)
2430 void wxGridRowLabelWindow::OnPaint( wxPaintEvent
&event
)
2434 // NO - don't do this because it will set both the x and y origin
2435 // coords to match the parent scrolled window and we just want to
2436 // set the y coord - MB
2438 // m_owner->PrepareDC( dc );
2441 m_owner
->CalcUnscrolledPosition( 0, 0, &x
, &y
);
2442 dc
.SetDeviceOrigin( 0, -y
);
2444 m_owner
->CalcRowLabelsExposed( GetUpdateRegion() );
2445 m_owner
->DrawRowLabels( dc
);
2449 void wxGridRowLabelWindow::OnMouseEvent( wxMouseEvent
& event
)
2451 m_owner
->ProcessRowLabelMouseEvent( event
);
2455 // This seems to be required for wxMotif otherwise the mouse
2456 // cursor must be in the cell edit control to get key events
2458 void wxGridRowLabelWindow::OnKeyDown( wxKeyEvent
& event
)
2460 if ( !m_owner
->ProcessEvent( event
) ) event
.Skip();
2465 //////////////////////////////////////////////////////////////////////
2467 IMPLEMENT_DYNAMIC_CLASS( wxGridColLabelWindow
, wxWindow
)
2469 BEGIN_EVENT_TABLE( wxGridColLabelWindow
, wxWindow
)
2470 EVT_PAINT( wxGridColLabelWindow::OnPaint
)
2471 EVT_MOUSE_EVENTS( wxGridColLabelWindow::OnMouseEvent
)
2472 EVT_KEY_DOWN( wxGridColLabelWindow::OnKeyDown
)
2475 wxGridColLabelWindow::wxGridColLabelWindow( wxGrid
*parent
,
2477 const wxPoint
&pos
, const wxSize
&size
)
2478 : wxWindow( parent
, id
, pos
, size
)
2483 void wxGridColLabelWindow::OnPaint( wxPaintEvent
&event
)
2487 // NO - don't do this because it will set both the x and y origin
2488 // coords to match the parent scrolled window and we just want to
2489 // set the x coord - MB
2491 // m_owner->PrepareDC( dc );
2494 m_owner
->CalcUnscrolledPosition( 0, 0, &x
, &y
);
2495 dc
.SetDeviceOrigin( -x
, 0 );
2497 m_owner
->CalcColLabelsExposed( GetUpdateRegion() );
2498 m_owner
->DrawColLabels( dc
);
2502 void wxGridColLabelWindow::OnMouseEvent( wxMouseEvent
& event
)
2504 m_owner
->ProcessColLabelMouseEvent( event
);
2508 // This seems to be required for wxMotif otherwise the mouse
2509 // cursor must be in the cell edit control to get key events
2511 void wxGridColLabelWindow::OnKeyDown( wxKeyEvent
& event
)
2513 if ( !m_owner
->ProcessEvent( event
) ) event
.Skip();
2518 //////////////////////////////////////////////////////////////////////
2520 IMPLEMENT_DYNAMIC_CLASS( wxGridCornerLabelWindow
, wxWindow
)
2522 BEGIN_EVENT_TABLE( wxGridCornerLabelWindow
, wxWindow
)
2523 EVT_MOUSE_EVENTS( wxGridCornerLabelWindow::OnMouseEvent
)
2524 EVT_PAINT( wxGridCornerLabelWindow::OnPaint
)
2525 EVT_KEY_DOWN( wxGridCornerLabelWindow::OnKeyDown
)
2528 wxGridCornerLabelWindow::wxGridCornerLabelWindow( wxGrid
*parent
,
2530 const wxPoint
&pos
, const wxSize
&size
)
2531 : wxWindow( parent
, id
, pos
, size
)
2536 void wxGridCornerLabelWindow::OnPaint( wxPaintEvent
& WXUNUSED(event
) )
2540 int client_height
= 0;
2541 int client_width
= 0;
2542 GetClientSize( &client_width
, &client_height
);
2544 dc
.SetPen( *wxBLACK_PEN
);
2545 dc
.DrawLine( client_width
-1, client_height
-1, client_width
-1, 0 );
2546 dc
.DrawLine( client_width
-1, client_height
-1, 0, client_height
-1 );
2548 dc
.SetPen( *wxWHITE_PEN
);
2549 dc
.DrawLine( 0, 0, client_width
, 0 );
2550 dc
.DrawLine( 0, 0, 0, client_height
);
2554 void wxGridCornerLabelWindow::OnMouseEvent( wxMouseEvent
& event
)
2556 m_owner
->ProcessCornerLabelMouseEvent( event
);
2560 // This seems to be required for wxMotif otherwise the mouse
2561 // cursor must be in the cell edit control to get key events
2563 void wxGridCornerLabelWindow::OnKeyDown( wxKeyEvent
& event
)
2565 if ( !m_owner
->ProcessEvent( event
) ) event
.Skip();
2570 //////////////////////////////////////////////////////////////////////
2572 IMPLEMENT_DYNAMIC_CLASS( wxGridWindow
, wxPanel
)
2574 BEGIN_EVENT_TABLE( wxGridWindow
, wxPanel
)
2575 EVT_PAINT( wxGridWindow::OnPaint
)
2576 EVT_MOUSE_EVENTS( wxGridWindow::OnMouseEvent
)
2577 EVT_KEY_DOWN( wxGridWindow::OnKeyDown
)
2578 EVT_ERASE_BACKGROUND( wxGridWindow::OnEraseBackground
)
2581 wxGridWindow::wxGridWindow( wxGrid
*parent
,
2582 wxGridRowLabelWindow
*rowLblWin
,
2583 wxGridColLabelWindow
*colLblWin
,
2584 wxWindowID id
, const wxPoint
&pos
, const wxSize
&size
)
2585 : wxPanel( parent
, id
, pos
, size
, 0, "grid window" )
2588 m_rowLabelWin
= rowLblWin
;
2589 m_colLabelWin
= colLblWin
;
2590 SetBackgroundColour( "WHITE" );
2594 wxGridWindow::~wxGridWindow()
2599 void wxGridWindow::OnPaint( wxPaintEvent
&WXUNUSED(event
) )
2601 wxPaintDC
dc( this );
2602 m_owner
->PrepareDC( dc
);
2603 wxRegion reg
= GetUpdateRegion();
2604 m_owner
->CalcCellsExposed( reg
);
2605 m_owner
->DrawGridCellArea( dc
);
2606 #if WXGRID_DRAW_LINES
2607 m_owner
->DrawAllGridLines( dc
, reg
);
2609 m_owner
->DrawGridSpace( dc
);
2610 m_owner
->DrawHighlight( dc
);
2614 void wxGridWindow::ScrollWindow( int dx
, int dy
, const wxRect
*rect
)
2616 wxPanel::ScrollWindow( dx
, dy
, rect
);
2617 m_rowLabelWin
->ScrollWindow( 0, dy
, rect
);
2618 m_colLabelWin
->ScrollWindow( dx
, 0, rect
);
2622 void wxGridWindow::OnMouseEvent( wxMouseEvent
& event
)
2624 m_owner
->ProcessGridCellMouseEvent( event
);
2628 // This seems to be required for wxMotif otherwise the mouse
2629 // cursor must be in the cell edit control to get key events
2631 void wxGridWindow::OnKeyDown( wxKeyEvent
& event
)
2633 if ( !m_owner
->ProcessEvent( event
) ) event
.Skip();
2637 void wxGridWindow::OnEraseBackground(wxEraseEvent
& event
)
2642 //////////////////////////////////////////////////////////////////////
2645 IMPLEMENT_DYNAMIC_CLASS( wxGrid
, wxScrolledWindow
)
2647 BEGIN_EVENT_TABLE( wxGrid
, wxScrolledWindow
)
2648 EVT_PAINT( wxGrid::OnPaint
)
2649 EVT_SIZE( wxGrid::OnSize
)
2650 EVT_KEY_DOWN( wxGrid::OnKeyDown
)
2651 EVT_ERASE_BACKGROUND( wxGrid::OnEraseBackground
)
2654 wxGrid::wxGrid( wxWindow
*parent
,
2659 const wxString
& name
)
2660 : wxScrolledWindow( parent
, id
, pos
, size
, style
, name
),
2661 m_colMinWidths(wxKEY_INTEGER
, GRID_HASH_SIZE
)
2670 m_defaultCellAttr
->SafeDecRef();
2672 #ifdef DEBUG_ATTR_CACHE
2673 size_t total
= gs_nAttrCacheHits
+ gs_nAttrCacheMisses
;
2674 wxPrintf(_T("wxGrid attribute cache statistics: "
2675 "total: %u, hits: %u (%u%%)\n"),
2676 total
, gs_nAttrCacheHits
,
2677 total
? (gs_nAttrCacheHits
*100) / total
: 0);
2683 delete m_typeRegistry
;
2688 // ----- internal init and update functions
2691 void wxGrid::Create()
2693 m_created
= FALSE
; // set to TRUE by CreateGrid
2694 m_displayed
= TRUE
; // FALSE; // set to TRUE by OnPaint
2696 m_table
= (wxGridTableBase
*) NULL
;
2699 m_cellEditCtrlEnabled
= FALSE
;
2701 m_defaultCellAttr
= new wxGridCellAttr
;
2702 m_defaultCellAttr
->SetDefAttr(m_defaultCellAttr
);
2704 // Set default cell attributes
2705 m_defaultCellAttr
->SetFont(GetFont());
2706 m_defaultCellAttr
->SetAlignment(wxLEFT
, wxTOP
);
2707 m_defaultCellAttr
->SetTextColour(
2708 wxSystemSettings::GetSystemColour(wxSYS_COLOUR_WINDOWTEXT
));
2709 m_defaultCellAttr
->SetBackgroundColour(
2710 wxSystemSettings::GetSystemColour(wxSYS_COLOUR_WINDOW
));
2711 m_defaultCellAttr
->SetRenderer(new wxGridCellStringRenderer
);
2712 m_defaultCellAttr
->SetEditor(new wxGridCellTextEditor
);
2717 m_currentCellCoords
= wxGridNoCellCoords
;
2719 m_rowLabelWidth
= WXGRID_DEFAULT_ROW_LABEL_WIDTH
;
2720 m_colLabelHeight
= WXGRID_DEFAULT_COL_LABEL_HEIGHT
;
2722 // data type registration: register all standard data types
2723 // TODO: may be allow the app to selectively disable some of them?
2724 m_typeRegistry
= new wxGridTypeRegistry
;
2725 RegisterDataType(wxGRID_VALUE_STRING
,
2726 new wxGridCellStringRenderer
,
2727 new wxGridCellTextEditor
);
2728 RegisterDataType(wxGRID_VALUE_BOOL
,
2729 new wxGridCellBoolRenderer
,
2730 new wxGridCellBoolEditor
);
2731 RegisterDataType(wxGRID_VALUE_NUMBER
,
2732 new wxGridCellNumberRenderer
,
2733 new wxGridCellNumberEditor
);
2735 // subwindow components that make up the wxGrid
2736 m_cornerLabelWin
= new wxGridCornerLabelWindow( this,
2741 m_rowLabelWin
= new wxGridRowLabelWindow( this,
2746 m_colLabelWin
= new wxGridColLabelWindow( this,
2751 m_gridWin
= new wxGridWindow( this,
2758 SetTargetWindow( m_gridWin
);
2762 bool wxGrid::CreateGrid( int numRows
, int numCols
)
2766 wxFAIL_MSG( wxT("wxGrid::CreateGrid or wxGrid::SetTable called more than once") );
2771 m_numRows
= numRows
;
2772 m_numCols
= numCols
;
2774 m_table
= new wxGridStringTable( m_numRows
, m_numCols
);
2775 m_table
->SetView( this );
2784 bool wxGrid::SetTable( wxGridTableBase
*table
, bool takeOwnership
)
2788 // RD: Actually, this should probably be allowed. I think it would be
2789 // nice to be able to switch multiple Tables in and out of a single
2790 // View at runtime. Is there anything in the implmentation that would
2793 wxFAIL_MSG( wxT("wxGrid::CreateGrid or wxGrid::SetTable called more than once") );
2798 m_numRows
= table
->GetNumberRows();
2799 m_numCols
= table
->GetNumberCols();
2802 m_table
->SetView( this );
2815 if ( m_numRows
<= 0 )
2816 m_numRows
= WXGRID_DEFAULT_NUMBER_ROWS
;
2818 if ( m_numCols
<= 0 )
2819 m_numCols
= WXGRID_DEFAULT_NUMBER_COLS
;
2821 m_rowLabelWidth
= WXGRID_DEFAULT_ROW_LABEL_WIDTH
;
2822 m_colLabelHeight
= WXGRID_DEFAULT_COL_LABEL_HEIGHT
;
2824 if ( m_rowLabelWin
)
2826 m_labelBackgroundColour
= m_rowLabelWin
->GetBackgroundColour();
2830 m_labelBackgroundColour
= wxColour( _T("WHITE") );
2833 m_labelTextColour
= wxColour( _T("BLACK") );
2836 m_attrCache
.row
= -1;
2838 // TODO: something better than this ?
2840 m_labelFont
= this->GetFont();
2841 m_labelFont
.SetWeight( m_labelFont
.GetWeight() + 2 );
2843 m_rowLabelHorizAlign
= wxLEFT
;
2844 m_rowLabelVertAlign
= wxCENTRE
;
2846 m_colLabelHorizAlign
= wxCENTRE
;
2847 m_colLabelVertAlign
= wxTOP
;
2849 m_defaultColWidth
= WXGRID_DEFAULT_COL_WIDTH
;
2850 m_defaultRowHeight
= m_gridWin
->GetCharHeight();
2852 #if defined(__WXMOTIF__) || defined(__WXGTK__) // see also text ctrl sizing in ShowCellEditControl()
2853 m_defaultRowHeight
+= 8;
2855 m_defaultRowHeight
+= 4;
2858 m_gridLineColour
= wxColour( 128, 128, 255 );
2859 m_gridLinesEnabled
= TRUE
;
2861 m_cursorMode
= WXGRID_CURSOR_SELECT_CELL
;
2862 m_winCapture
= (wxWindow
*)NULL
;
2863 m_canDragRowSize
= TRUE
;
2864 m_canDragColSize
= TRUE
;
2865 m_canDragGridSize
= TRUE
;
2867 m_dragRowOrCol
= -1;
2868 m_isDragging
= FALSE
;
2869 m_startDragPos
= wxDefaultPosition
;
2871 m_waitForSlowClick
= FALSE
;
2873 m_rowResizeCursor
= wxCursor( wxCURSOR_SIZENS
);
2874 m_colResizeCursor
= wxCursor( wxCURSOR_SIZEWE
);
2876 m_currentCellCoords
= wxGridNoCellCoords
;
2878 m_selectedTopLeft
= wxGridNoCellCoords
;
2879 m_selectedBottomRight
= wxGridNoCellCoords
;
2880 m_selectionBackground
= wxSystemSettings::GetSystemColour(wxSYS_COLOUR_HIGHLIGHT
);
2881 m_selectionForeground
= wxSystemSettings::GetSystemColour(wxSYS_COLOUR_HIGHLIGHTTEXT
);
2883 m_editable
= TRUE
; // default for whole grid
2885 m_inOnKeyDown
= FALSE
;
2889 // ----------------------------------------------------------------------------
2890 // the idea is to call these functions only when necessary because they create
2891 // quite big arrays which eat memory mostly unnecessary - in particular, if
2892 // default widths/heights are used for all rows/columns, we may not use these
2895 // with some extra code, it should be possible to only store the
2896 // widths/heights different from default ones but this will be done later...
2897 // ----------------------------------------------------------------------------
2899 void wxGrid::InitRowHeights()
2901 m_rowHeights
.Empty();
2902 m_rowBottoms
.Empty();
2904 m_rowHeights
.Alloc( m_numRows
);
2905 m_rowBottoms
.Alloc( m_numRows
);
2908 for ( int i
= 0; i
< m_numRows
; i
++ )
2910 m_rowHeights
.Add( m_defaultRowHeight
);
2911 rowBottom
+= m_defaultRowHeight
;
2912 m_rowBottoms
.Add( rowBottom
);
2916 void wxGrid::InitColWidths()
2918 m_colWidths
.Empty();
2919 m_colRights
.Empty();
2921 m_colWidths
.Alloc( m_numCols
);
2922 m_colRights
.Alloc( m_numCols
);
2924 for ( int i
= 0; i
< m_numCols
; i
++ )
2926 m_colWidths
.Add( m_defaultColWidth
);
2927 colRight
+= m_defaultColWidth
;
2928 m_colRights
.Add( colRight
);
2932 int wxGrid::GetColWidth(int col
) const
2934 return m_colWidths
.IsEmpty() ? m_defaultColWidth
: m_colWidths
[col
];
2937 int wxGrid::GetColLeft(int col
) const
2939 return m_colRights
.IsEmpty() ? col
* m_defaultColWidth
2940 : m_colRights
[col
] - m_colWidths
[col
];
2943 int wxGrid::GetColRight(int col
) const
2945 return m_colRights
.IsEmpty() ? (col
+ 1) * m_defaultColWidth
2949 int wxGrid::GetRowHeight(int row
) const
2951 return m_rowHeights
.IsEmpty() ? m_defaultRowHeight
: m_rowHeights
[row
];
2954 int wxGrid::GetRowTop(int row
) const
2956 return m_rowBottoms
.IsEmpty() ? row
* m_defaultRowHeight
2957 : m_rowBottoms
[row
] - m_rowHeights
[row
];
2960 int wxGrid::GetRowBottom(int row
) const
2962 return m_rowBottoms
.IsEmpty() ? (row
+ 1) * m_defaultRowHeight
2963 : m_rowBottoms
[row
];
2966 void wxGrid::CalcDimensions()
2969 GetClientSize( &cw
, &ch
);
2971 if ( m_numRows
> 0 && m_numCols
> 0 )
2973 int right
= GetColRight( m_numCols
-1 ) + 50;
2974 int bottom
= GetRowBottom( m_numRows
-1 ) + 50;
2976 // TODO: restore the scroll position that we had before sizing
2979 GetViewStart( &x
, &y
);
2980 SetScrollbars( GRID_SCROLL_LINE
, GRID_SCROLL_LINE
,
2981 right
/GRID_SCROLL_LINE
, bottom
/GRID_SCROLL_LINE
,
2987 void wxGrid::CalcWindowSizes()
2990 GetClientSize( &cw
, &ch
);
2992 if ( m_cornerLabelWin
->IsShown() )
2993 m_cornerLabelWin
->SetSize( 0, 0, m_rowLabelWidth
, m_colLabelHeight
);
2995 if ( m_colLabelWin
->IsShown() )
2996 m_colLabelWin
->SetSize( m_rowLabelWidth
, 0, cw
-m_rowLabelWidth
, m_colLabelHeight
);
2998 if ( m_rowLabelWin
->IsShown() )
2999 m_rowLabelWin
->SetSize( 0, m_colLabelHeight
, m_rowLabelWidth
, ch
-m_colLabelHeight
);
3001 if ( m_gridWin
->IsShown() )
3002 m_gridWin
->SetSize( m_rowLabelWidth
, m_colLabelHeight
, cw
-m_rowLabelWidth
, ch
-m_colLabelHeight
);
3006 // this is called when the grid table sends a message to say that it
3007 // has been redimensioned
3009 bool wxGrid::Redimension( wxGridTableMessage
& msg
)
3013 // if we were using the default widths/heights so far, we must change them
3015 if ( m_colWidths
.IsEmpty() )
3020 if ( m_rowHeights
.IsEmpty() )
3025 switch ( msg
.GetId() )
3027 case wxGRIDTABLE_NOTIFY_ROWS_INSERTED
:
3029 size_t pos
= msg
.GetCommandInt();
3030 int numRows
= msg
.GetCommandInt2();
3031 for ( i
= 0; i
< numRows
; i
++ )
3033 m_rowHeights
.Insert( m_defaultRowHeight
, pos
);
3034 m_rowBottoms
.Insert( 0, pos
);
3036 m_numRows
+= numRows
;
3039 if ( pos
> 0 ) bottom
= m_rowBottoms
[pos
-1];
3041 for ( i
= pos
; i
< m_numRows
; i
++ )
3043 bottom
+= m_rowHeights
[i
];
3044 m_rowBottoms
[i
] = bottom
;
3050 case wxGRIDTABLE_NOTIFY_ROWS_APPENDED
:
3052 int numRows
= msg
.GetCommandInt();
3053 for ( i
= 0; i
< numRows
; i
++ )
3055 m_rowHeights
.Add( m_defaultRowHeight
);
3056 m_rowBottoms
.Add( 0 );
3059 int oldNumRows
= m_numRows
;
3060 m_numRows
+= numRows
;
3063 if ( oldNumRows
> 0 ) bottom
= m_rowBottoms
[oldNumRows
-1];
3065 for ( i
= oldNumRows
; i
< m_numRows
; i
++ )
3067 bottom
+= m_rowHeights
[i
];
3068 m_rowBottoms
[i
] = bottom
;
3074 case wxGRIDTABLE_NOTIFY_ROWS_DELETED
:
3076 size_t pos
= msg
.GetCommandInt();
3077 int numRows
= msg
.GetCommandInt2();
3078 for ( i
= 0; i
< numRows
; i
++ )
3080 m_rowHeights
.Remove( pos
);
3081 m_rowBottoms
.Remove( pos
);
3083 m_numRows
-= numRows
;
3088 m_colWidths
.Clear();
3089 m_colRights
.Clear();
3090 m_currentCellCoords
= wxGridNoCellCoords
;
3094 if ( m_currentCellCoords
.GetRow() >= m_numRows
)
3095 m_currentCellCoords
.Set( 0, 0 );
3098 for ( i
= 0; i
< m_numRows
; i
++ )
3100 h
+= m_rowHeights
[i
];
3101 m_rowBottoms
[i
] = h
;
3109 case wxGRIDTABLE_NOTIFY_COLS_INSERTED
:
3111 size_t pos
= msg
.GetCommandInt();
3112 int numCols
= msg
.GetCommandInt2();
3113 for ( i
= 0; i
< numCols
; i
++ )
3115 m_colWidths
.Insert( m_defaultColWidth
, pos
);
3116 m_colRights
.Insert( 0, pos
);
3118 m_numCols
+= numCols
;
3121 if ( pos
> 0 ) right
= m_colRights
[pos
-1];
3123 for ( i
= pos
; i
< m_numCols
; i
++ )
3125 right
+= m_colWidths
[i
];
3126 m_colRights
[i
] = right
;
3132 case wxGRIDTABLE_NOTIFY_COLS_APPENDED
:
3134 int numCols
= msg
.GetCommandInt();
3135 for ( i
= 0; i
< numCols
; i
++ )
3137 m_colWidths
.Add( m_defaultColWidth
);
3138 m_colRights
.Add( 0 );
3141 int oldNumCols
= m_numCols
;
3142 m_numCols
+= numCols
;
3145 if ( oldNumCols
> 0 ) right
= m_colRights
[oldNumCols
-1];
3147 for ( i
= oldNumCols
; i
< m_numCols
; i
++ )
3149 right
+= m_colWidths
[i
];
3150 m_colRights
[i
] = right
;
3156 case wxGRIDTABLE_NOTIFY_COLS_DELETED
:
3158 size_t pos
= msg
.GetCommandInt();
3159 int numCols
= msg
.GetCommandInt2();
3160 for ( i
= 0; i
< numCols
; i
++ )
3162 m_colWidths
.Remove( pos
);
3163 m_colRights
.Remove( pos
);
3165 m_numCols
-= numCols
;
3169 #if 0 // leave the row alone here so that AppendCols will work subsequently
3171 m_rowHeights
.Clear();
3172 m_rowBottoms
.Clear();
3174 m_currentCellCoords
= wxGridNoCellCoords
;
3178 if ( m_currentCellCoords
.GetCol() >= m_numCols
)
3179 m_currentCellCoords
.Set( 0, 0 );
3182 for ( i
= 0; i
< m_numCols
; i
++ )
3184 w
+= m_colWidths
[i
];
3197 void wxGrid::CalcRowLabelsExposed( wxRegion
& reg
)
3199 wxRegionIterator
iter( reg
);
3202 m_rowLabelsExposed
.Empty();
3209 // TODO: remove this when we can...
3210 // There is a bug in wxMotif that gives garbage update
3211 // rectangles if you jump-scroll a long way by clicking the
3212 // scrollbar with middle button. This is a work-around
3214 #if defined(__WXMOTIF__)
3216 m_gridWin
->GetClientSize( &cw
, &ch
);
3217 if ( r
.GetTop() > ch
) r
.SetTop( 0 );
3218 r
.SetBottom( wxMin( r
.GetBottom(), ch
) );
3221 // logical bounds of update region
3224 CalcUnscrolledPosition( 0, r
.GetTop(), &dummy
, &top
);
3225 CalcUnscrolledPosition( 0, r
.GetBottom(), &dummy
, &bottom
);
3227 // find the row labels within these bounds
3230 for ( row
= 0; row
< m_numRows
; row
++ )
3232 if ( GetRowBottom(row
) < top
)
3235 if ( GetRowTop(row
) > bottom
)
3238 m_rowLabelsExposed
.Add( row
);
3246 void wxGrid::CalcColLabelsExposed( wxRegion
& reg
)
3248 wxRegionIterator
iter( reg
);
3251 m_colLabelsExposed
.Empty();
3258 // TODO: remove this when we can...
3259 // There is a bug in wxMotif that gives garbage update
3260 // rectangles if you jump-scroll a long way by clicking the
3261 // scrollbar with middle button. This is a work-around
3263 #if defined(__WXMOTIF__)
3265 m_gridWin
->GetClientSize( &cw
, &ch
);
3266 if ( r
.GetLeft() > cw
) r
.SetLeft( 0 );
3267 r
.SetRight( wxMin( r
.GetRight(), cw
) );
3270 // logical bounds of update region
3273 CalcUnscrolledPosition( r
.GetLeft(), 0, &left
, &dummy
);
3274 CalcUnscrolledPosition( r
.GetRight(), 0, &right
, &dummy
);
3276 // find the cells within these bounds
3279 for ( col
= 0; col
< m_numCols
; col
++ )
3281 if ( GetColRight(col
) < left
)
3284 if ( GetColLeft(col
) > right
)
3287 m_colLabelsExposed
.Add( col
);
3295 void wxGrid::CalcCellsExposed( wxRegion
& reg
)
3297 wxRegionIterator
iter( reg
);
3300 m_cellsExposed
.Empty();
3301 m_rowsExposed
.Empty();
3302 m_colsExposed
.Empty();
3304 int left
, top
, right
, bottom
;
3309 // TODO: remove this when we can...
3310 // There is a bug in wxMotif that gives garbage update
3311 // rectangles if you jump-scroll a long way by clicking the
3312 // scrollbar with middle button. This is a work-around
3314 #if defined(__WXMOTIF__)
3316 m_gridWin
->GetClientSize( &cw
, &ch
);
3317 if ( r
.GetTop() > ch
) r
.SetTop( 0 );
3318 if ( r
.GetLeft() > cw
) r
.SetLeft( 0 );
3319 r
.SetRight( wxMin( r
.GetRight(), cw
) );
3320 r
.SetBottom( wxMin( r
.GetBottom(), ch
) );
3323 // logical bounds of update region
3325 CalcUnscrolledPosition( r
.GetLeft(), r
.GetTop(), &left
, &top
);
3326 CalcUnscrolledPosition( r
.GetRight(), r
.GetBottom(), &right
, &bottom
);
3328 // find the cells within these bounds
3331 for ( row
= 0; row
< m_numRows
; row
++ )
3333 if ( GetRowBottom(row
) <= top
)
3336 if ( GetRowTop(row
) > bottom
)
3339 m_rowsExposed
.Add( row
);
3341 for ( col
= 0; col
< m_numCols
; col
++ )
3343 if ( GetColRight(col
) <= left
)
3346 if ( GetColLeft(col
) > right
)
3349 if ( m_colsExposed
.Index( col
) == wxNOT_FOUND
)
3350 m_colsExposed
.Add( col
);
3351 m_cellsExposed
.Add( wxGridCellCoords( row
, col
) );
3360 void wxGrid::ProcessRowLabelMouseEvent( wxMouseEvent
& event
)
3363 wxPoint
pos( event
.GetPosition() );
3364 CalcUnscrolledPosition( pos
.x
, pos
.y
, &x
, &y
);
3366 if ( event
.Dragging() )
3368 m_isDragging
= TRUE
;
3370 if ( event
.LeftIsDown() )
3372 switch( m_cursorMode
)
3374 case WXGRID_CURSOR_RESIZE_ROW
:
3376 int cw
, ch
, left
, dummy
;
3377 m_gridWin
->GetClientSize( &cw
, &ch
);
3378 CalcUnscrolledPosition( 0, 0, &left
, &dummy
);
3380 wxClientDC
dc( m_gridWin
);
3382 y
= wxMax( y
, GetRowTop(m_dragRowOrCol
) + WXGRID_MIN_ROW_HEIGHT
);
3383 dc
.SetLogicalFunction(wxINVERT
);
3384 if ( m_dragLastPos
>= 0 )
3386 dc
.DrawLine( left
, m_dragLastPos
, left
+cw
, m_dragLastPos
);
3388 dc
.DrawLine( left
, y
, left
+cw
, y
);
3393 case WXGRID_CURSOR_SELECT_ROW
:
3394 if ( (row
= YToRow( y
)) >= 0 &&
3395 !IsInSelection( row
, 0 ) )
3397 SelectRow( row
, TRUE
);
3400 // default label to suppress warnings about "enumeration value
3401 // 'xxx' not handled in switch
3409 m_isDragging
= FALSE
;
3412 // ------------ Entering or leaving the window
3414 if ( event
.Entering() || event
.Leaving() )
3416 ChangeCursorMode(WXGRID_CURSOR_SELECT_CELL
, m_rowLabelWin
);
3420 // ------------ Left button pressed
3422 else if ( event
.LeftDown() )
3424 // don't send a label click event for a hit on the
3425 // edge of the row label - this is probably the user
3426 // wanting to resize the row
3428 if ( YToEdgeOfRow(y
) < 0 )
3432 !SendEvent( wxEVT_GRID_LABEL_LEFT_CLICK
, row
, -1, event
) )
3434 SelectRow( row
, event
.ShiftDown() );
3435 ChangeCursorMode(WXGRID_CURSOR_SELECT_ROW
, m_rowLabelWin
);
3440 // starting to drag-resize a row
3442 if ( CanDragRowSize() )
3443 ChangeCursorMode(WXGRID_CURSOR_RESIZE_ROW
, m_rowLabelWin
);
3448 // ------------ Left double click
3450 else if (event
.LeftDClick() )
3452 if ( YToEdgeOfRow(y
) < 0 )
3455 SendEvent( wxEVT_GRID_LABEL_LEFT_DCLICK
, row
, -1, event
);
3460 // ------------ Left button released
3462 else if ( event
.LeftUp() )
3464 if ( m_cursorMode
== WXGRID_CURSOR_RESIZE_ROW
)
3466 DoEndDragResizeRow();
3468 // Note: we are ending the event *after* doing
3469 // default processing in this case
3471 SendEvent( wxEVT_GRID_ROW_SIZE
, m_dragRowOrCol
, -1, event
);
3474 ChangeCursorMode(WXGRID_CURSOR_SELECT_CELL
, m_rowLabelWin
);
3479 // ------------ Right button down
3481 else if ( event
.RightDown() )
3484 if ( !SendEvent( wxEVT_GRID_LABEL_RIGHT_CLICK
, row
, -1, event
) )
3486 // no default action at the moment
3491 // ------------ Right double click
3493 else if ( event
.RightDClick() )
3496 if ( !SendEvent( wxEVT_GRID_LABEL_RIGHT_DCLICK
, row
, -1, event
) )
3498 // no default action at the moment
3503 // ------------ No buttons down and mouse moving
3505 else if ( event
.Moving() )
3507 m_dragRowOrCol
= YToEdgeOfRow( y
);
3508 if ( m_dragRowOrCol
>= 0 )
3510 if ( m_cursorMode
== WXGRID_CURSOR_SELECT_CELL
)
3512 // don't capture the mouse yet
3513 if ( CanDragRowSize() )
3514 ChangeCursorMode(WXGRID_CURSOR_RESIZE_ROW
, m_rowLabelWin
, FALSE
);
3517 else if ( m_cursorMode
!= WXGRID_CURSOR_SELECT_CELL
)
3519 ChangeCursorMode(WXGRID_CURSOR_SELECT_CELL
, m_rowLabelWin
, FALSE
);
3525 void wxGrid::ProcessColLabelMouseEvent( wxMouseEvent
& event
)
3528 wxPoint
pos( event
.GetPosition() );
3529 CalcUnscrolledPosition( pos
.x
, pos
.y
, &x
, &y
);
3531 if ( event
.Dragging() )
3533 m_isDragging
= TRUE
;
3535 if ( event
.LeftIsDown() )
3537 switch( m_cursorMode
)
3539 case WXGRID_CURSOR_RESIZE_COL
:
3541 int cw
, ch
, dummy
, top
;
3542 m_gridWin
->GetClientSize( &cw
, &ch
);
3543 CalcUnscrolledPosition( 0, 0, &dummy
, &top
);
3545 wxClientDC
dc( m_gridWin
);
3548 x
= wxMax( x
, GetColLeft(m_dragRowOrCol
) +
3549 GetColMinimalWidth(m_dragRowOrCol
));
3550 dc
.SetLogicalFunction(wxINVERT
);
3551 if ( m_dragLastPos
>= 0 )
3553 dc
.DrawLine( m_dragLastPos
, top
, m_dragLastPos
, top
+ch
);
3555 dc
.DrawLine( x
, top
, x
, top
+ch
);
3560 case WXGRID_CURSOR_SELECT_COL
:
3561 if ( (col
= XToCol( x
)) >= 0 &&
3562 !IsInSelection( 0, col
) )
3564 SelectCol( col
, TRUE
);
3567 // default label to suppress warnings about "enumeration value
3568 // 'xxx' not handled in switch
3576 m_isDragging
= FALSE
;
3579 // ------------ Entering or leaving the window
3581 if ( event
.Entering() || event
.Leaving() )
3583 ChangeCursorMode(WXGRID_CURSOR_SELECT_CELL
, m_colLabelWin
);
3587 // ------------ Left button pressed
3589 else if ( event
.LeftDown() )
3591 // don't send a label click event for a hit on the
3592 // edge of the col label - this is probably the user
3593 // wanting to resize the col
3595 if ( XToEdgeOfCol(x
) < 0 )
3599 !SendEvent( wxEVT_GRID_LABEL_LEFT_CLICK
, -1, col
, event
) )
3601 SelectCol( col
, event
.ShiftDown() );
3602 ChangeCursorMode(WXGRID_CURSOR_SELECT_COL
, m_colLabelWin
);
3607 // starting to drag-resize a col
3609 if ( CanDragColSize() )
3610 ChangeCursorMode(WXGRID_CURSOR_RESIZE_COL
, m_colLabelWin
);
3615 // ------------ Left double click
3617 if ( event
.LeftDClick() )
3619 if ( XToEdgeOfCol(x
) < 0 )
3622 SendEvent( wxEVT_GRID_LABEL_LEFT_DCLICK
, -1, col
, event
);
3627 // ------------ Left button released
3629 else if ( event
.LeftUp() )
3631 if ( m_cursorMode
== WXGRID_CURSOR_RESIZE_COL
)
3633 DoEndDragResizeCol();
3635 // Note: we are ending the event *after* doing
3636 // default processing in this case
3638 SendEvent( wxEVT_GRID_COL_SIZE
, -1, m_dragRowOrCol
, event
);
3641 ChangeCursorMode(WXGRID_CURSOR_SELECT_CELL
, m_colLabelWin
);
3646 // ------------ Right button down
3648 else if ( event
.RightDown() )
3651 if ( !SendEvent( wxEVT_GRID_LABEL_RIGHT_CLICK
, -1, col
, event
) )
3653 // no default action at the moment
3658 // ------------ Right double click
3660 else if ( event
.RightDClick() )
3663 if ( !SendEvent( wxEVT_GRID_LABEL_RIGHT_DCLICK
, -1, col
, event
) )
3665 // no default action at the moment
3670 // ------------ No buttons down and mouse moving
3672 else if ( event
.Moving() )
3674 m_dragRowOrCol
= XToEdgeOfCol( x
);
3675 if ( m_dragRowOrCol
>= 0 )
3677 if ( m_cursorMode
== WXGRID_CURSOR_SELECT_CELL
)
3679 // don't capture the cursor yet
3680 if ( CanDragColSize() )
3681 ChangeCursorMode(WXGRID_CURSOR_RESIZE_COL
, m_colLabelWin
, FALSE
);
3684 else if ( m_cursorMode
!= WXGRID_CURSOR_SELECT_CELL
)
3686 ChangeCursorMode(WXGRID_CURSOR_SELECT_CELL
, m_colLabelWin
, FALSE
);
3692 void wxGrid::ProcessCornerLabelMouseEvent( wxMouseEvent
& event
)
3694 if ( event
.LeftDown() )
3696 // indicate corner label by having both row and
3699 if ( !SendEvent( wxEVT_GRID_LABEL_LEFT_CLICK
, -1, -1, event
) )
3705 else if ( event
.LeftDClick() )
3707 SendEvent( wxEVT_GRID_LABEL_LEFT_DCLICK
, -1, -1, event
);
3710 else if ( event
.RightDown() )
3712 if ( !SendEvent( wxEVT_GRID_LABEL_RIGHT_CLICK
, -1, -1, event
) )
3714 // no default action at the moment
3718 else if ( event
.RightDClick() )
3720 if ( !SendEvent( wxEVT_GRID_LABEL_RIGHT_DCLICK
, -1, -1, event
) )
3722 // no default action at the moment
3727 void wxGrid::ChangeCursorMode(CursorMode mode
,
3732 static const wxChar
*cursorModes
[] =
3741 wxLogTrace(_T("grid"),
3742 _T("wxGrid cursor mode (mouse capture for %s): %s -> %s"),
3743 win
== m_colLabelWin
? _T("colLabelWin")
3744 : win
? _T("rowLabelWin")
3746 cursorModes
[m_cursorMode
], cursorModes
[mode
]);
3747 #endif // __WXDEBUG__
3749 if ( mode
== m_cursorMode
)
3754 // by default use the grid itself
3760 m_winCapture
->ReleaseMouse();
3761 m_winCapture
= (wxWindow
*)NULL
;
3764 m_cursorMode
= mode
;
3766 switch ( m_cursorMode
)
3768 case WXGRID_CURSOR_RESIZE_ROW
:
3769 win
->SetCursor( m_rowResizeCursor
);
3772 case WXGRID_CURSOR_RESIZE_COL
:
3773 win
->SetCursor( m_colResizeCursor
);
3777 win
->SetCursor( *wxSTANDARD_CURSOR
);
3780 // we need to capture mouse when resizing
3781 bool resize
= m_cursorMode
== WXGRID_CURSOR_RESIZE_ROW
||
3782 m_cursorMode
== WXGRID_CURSOR_RESIZE_COL
;
3784 if ( captureMouse
&& resize
)
3786 win
->CaptureMouse();
3791 void wxGrid::ProcessGridCellMouseEvent( wxMouseEvent
& event
)
3794 wxPoint
pos( event
.GetPosition() );
3795 CalcUnscrolledPosition( pos
.x
, pos
.y
, &x
, &y
);
3797 wxGridCellCoords coords
;
3798 XYToCell( x
, y
, coords
);
3800 if ( event
.Dragging() )
3802 //wxLogDebug("pos(%d, %d) coords(%d, %d)", pos.x, pos.y, coords.GetRow(), coords.GetCol());
3804 // Don't start doing anything until the mouse has been drug at
3805 // least 3 pixels in any direction...
3808 if (m_startDragPos
== wxDefaultPosition
)
3810 m_startDragPos
= pos
;
3813 if (abs(m_startDragPos
.x
- pos
.x
) < 4 && abs(m_startDragPos
.y
- pos
.y
) < 4)
3817 m_isDragging
= TRUE
;
3818 if ( m_cursorMode
== WXGRID_CURSOR_SELECT_CELL
)
3820 // Hide the edit control, so it
3821 // won't interfer with drag-shrinking.
3822 if ( IsCellEditControlEnabled() )
3824 HideCellEditControl();
3825 SaveEditControlValue();
3828 // Have we captured the mouse yet?
3831 m_winCapture
= m_gridWin
;
3832 m_winCapture
->CaptureMouse();
3835 if ( coords
!= wxGridNoCellCoords
)
3837 if ( !IsSelection() )
3839 SelectBlock( coords
, coords
);
3843 SelectBlock( m_currentCellCoords
, coords
);
3846 if (! IsVisible(coords
))
3848 MakeCellVisible(coords
);
3849 // TODO: need to introduce a delay or something here. The
3850 // scrolling is way to fast, at least on MSW.
3854 else if ( m_cursorMode
== WXGRID_CURSOR_RESIZE_ROW
)
3856 int cw
, ch
, left
, dummy
;
3857 m_gridWin
->GetClientSize( &cw
, &ch
);
3858 CalcUnscrolledPosition( 0, 0, &left
, &dummy
);
3860 wxClientDC
dc( m_gridWin
);
3862 y
= wxMax( y
, GetRowTop(m_dragRowOrCol
) + WXGRID_MIN_ROW_HEIGHT
);
3863 dc
.SetLogicalFunction(wxINVERT
);
3864 if ( m_dragLastPos
>= 0 )
3866 dc
.DrawLine( left
, m_dragLastPos
, left
+cw
, m_dragLastPos
);
3868 dc
.DrawLine( left
, y
, left
+cw
, y
);
3871 else if ( m_cursorMode
== WXGRID_CURSOR_RESIZE_COL
)
3873 int cw
, ch
, dummy
, top
;
3874 m_gridWin
->GetClientSize( &cw
, &ch
);
3875 CalcUnscrolledPosition( 0, 0, &dummy
, &top
);
3877 wxClientDC
dc( m_gridWin
);
3879 x
= wxMax( x
, GetColLeft(m_dragRowOrCol
) +
3880 GetColMinimalWidth(m_dragRowOrCol
) );
3881 dc
.SetLogicalFunction(wxINVERT
);
3882 if ( m_dragLastPos
>= 0 )
3884 dc
.DrawLine( m_dragLastPos
, top
, m_dragLastPos
, top
+ch
);
3886 dc
.DrawLine( x
, top
, x
, top
+ch
);
3893 m_isDragging
= FALSE
;
3894 m_startDragPos
= wxDefaultPosition
;
3896 // VZ: if we do this, the mode is reset to WXGRID_CURSOR_SELECT_CELL
3897 // immediately after it becomes WXGRID_CURSOR_RESIZE_ROW/COL under
3900 if ( event
.Entering() || event
.Leaving() )
3902 ChangeCursorMode(WXGRID_CURSOR_SELECT_CELL
);
3903 m_gridWin
->SetCursor( *wxSTANDARD_CURSOR
);
3908 // ------------ Left button pressed
3910 if ( event
.LeftDown() && coords
!= wxGridNoCellCoords
)
3912 if ( event
.ShiftDown() )
3914 SelectBlock( m_currentCellCoords
, coords
);
3916 else if ( XToEdgeOfCol(x
) < 0 &&
3917 YToEdgeOfRow(y
) < 0 )
3919 if ( !SendEvent( wxEVT_GRID_CELL_LEFT_CLICK
,
3924 DisableCellEditControl();
3925 MakeCellVisible( coords
);
3927 // if this is the second click on this cell then start
3929 if ( m_waitForSlowClick
&&
3930 (coords
== m_currentCellCoords
) &&
3931 CanEnableCellControl())
3933 EnableCellEditControl();
3935 wxGridCellAttr
* attr
= GetCellAttr(m_currentCellCoords
);
3936 attr
->GetEditor(this, coords
.GetRow(), coords
.GetCol())->StartingClick();
3939 m_waitForSlowClick
= FALSE
;
3943 SetCurrentCell( coords
);
3944 m_waitForSlowClick
= TRUE
;
3951 // ------------ Left double click
3953 else if ( event
.LeftDClick() && coords
!= wxGridNoCellCoords
)
3955 DisableCellEditControl();
3957 if ( XToEdgeOfCol(x
) < 0 && YToEdgeOfRow(y
) < 0 )
3959 SendEvent( wxEVT_GRID_CELL_LEFT_DCLICK
,
3967 // ------------ Left button released
3969 else if ( event
.LeftUp() )
3971 if ( m_cursorMode
== WXGRID_CURSOR_SELECT_CELL
)
3973 if ( IsSelection() )
3977 m_winCapture
->ReleaseMouse();
3978 m_winCapture
= NULL
;
3980 SendEvent( wxEVT_GRID_RANGE_SELECT
, -1, -1, event
);
3983 // Show the edit control, if it has been hidden for
3985 ShowCellEditControl();
3987 else if ( m_cursorMode
== WXGRID_CURSOR_RESIZE_ROW
)
3989 ChangeCursorMode(WXGRID_CURSOR_SELECT_CELL
);
3990 DoEndDragResizeRow();
3992 // Note: we are ending the event *after* doing
3993 // default processing in this case
3995 SendEvent( wxEVT_GRID_ROW_SIZE
, m_dragRowOrCol
, -1, event
);
3997 else if ( m_cursorMode
== WXGRID_CURSOR_RESIZE_COL
)
3999 ChangeCursorMode(WXGRID_CURSOR_SELECT_CELL
);
4000 DoEndDragResizeCol();
4002 // Note: we are ending the event *after* doing
4003 // default processing in this case
4005 SendEvent( wxEVT_GRID_COL_SIZE
, -1, m_dragRowOrCol
, event
);
4012 // ------------ Right button down
4014 else if ( event
.RightDown() && coords
!= wxGridNoCellCoords
)
4016 DisableCellEditControl();
4017 if ( !SendEvent( wxEVT_GRID_CELL_RIGHT_CLICK
,
4022 // no default action at the moment
4027 // ------------ Right double click
4029 else if ( event
.RightDClick() && coords
!= wxGridNoCellCoords
)
4031 DisableCellEditControl();
4032 if ( !SendEvent( wxEVT_GRID_CELL_RIGHT_DCLICK
,
4037 // no default action at the moment
4041 // ------------ Moving and no button action
4043 else if ( event
.Moving() && !event
.IsButton() )
4045 int dragRow
= YToEdgeOfRow( y
);
4046 int dragCol
= XToEdgeOfCol( x
);
4048 // Dragging on the corner of a cell to resize in both
4049 // directions is not implemented yet...
4051 if ( dragRow
>= 0 && dragCol
>= 0 )
4053 ChangeCursorMode(WXGRID_CURSOR_SELECT_CELL
);
4059 m_dragRowOrCol
= dragRow
;
4061 if ( m_cursorMode
== WXGRID_CURSOR_SELECT_CELL
)
4063 if ( CanDragRowSize() && CanDragGridSize() )
4064 ChangeCursorMode(WXGRID_CURSOR_RESIZE_ROW
);
4072 m_dragRowOrCol
= dragCol
;
4074 if ( m_cursorMode
== WXGRID_CURSOR_SELECT_CELL
)
4076 if ( CanDragColSize() && CanDragGridSize() )
4077 ChangeCursorMode(WXGRID_CURSOR_RESIZE_COL
);
4083 // Neither on a row or col edge
4085 if ( m_cursorMode
!= WXGRID_CURSOR_SELECT_CELL
)
4087 ChangeCursorMode(WXGRID_CURSOR_SELECT_CELL
);
4093 void wxGrid::DoEndDragResizeRow()
4095 if ( m_dragLastPos
>= 0 )
4097 // erase the last line and resize the row
4099 int cw
, ch
, left
, dummy
;
4100 m_gridWin
->GetClientSize( &cw
, &ch
);
4101 CalcUnscrolledPosition( 0, 0, &left
, &dummy
);
4103 wxClientDC
dc( m_gridWin
);
4105 dc
.SetLogicalFunction( wxINVERT
);
4106 dc
.DrawLine( left
, m_dragLastPos
, left
+cw
, m_dragLastPos
);
4107 HideCellEditControl();
4108 SaveEditControlValue();
4110 int rowTop
= GetRowTop(m_dragRowOrCol
);
4111 SetRowSize( m_dragRowOrCol
,
4112 wxMax( m_dragLastPos
- rowTop
, WXGRID_MIN_ROW_HEIGHT
) );
4114 if ( !GetBatchCount() )
4116 // Only needed to get the correct rect.y:
4117 wxRect
rect ( CellToRect( m_dragRowOrCol
, 0 ) );
4119 CalcScrolledPosition(0, rect
.y
, &dummy
, &rect
.y
);
4120 rect
.width
= m_rowLabelWidth
;
4121 rect
.height
= ch
- rect
.y
;
4122 m_rowLabelWin
->Refresh( TRUE
, &rect
);
4124 m_gridWin
->Refresh( FALSE
, &rect
);
4127 ShowCellEditControl();
4132 void wxGrid::DoEndDragResizeCol()
4134 if ( m_dragLastPos
>= 0 )
4136 // erase the last line and resize the col
4138 int cw
, ch
, dummy
, top
;
4139 m_gridWin
->GetClientSize( &cw
, &ch
);
4140 CalcUnscrolledPosition( 0, 0, &dummy
, &top
);
4142 wxClientDC
dc( m_gridWin
);
4144 dc
.SetLogicalFunction( wxINVERT
);
4145 dc
.DrawLine( m_dragLastPos
, top
, m_dragLastPos
, top
+ch
);
4146 HideCellEditControl();
4147 SaveEditControlValue();
4149 int colLeft
= GetColLeft(m_dragRowOrCol
);
4150 SetColSize( m_dragRowOrCol
,
4151 wxMax( m_dragLastPos
- colLeft
,
4152 GetColMinimalWidth(m_dragRowOrCol
) ) );
4154 if ( !GetBatchCount() )
4156 // Only needed to get the correct rect.x:
4157 wxRect
rect ( CellToRect( 0, m_dragRowOrCol
) );
4159 CalcScrolledPosition(rect
.x
, 0, &rect
.x
, &dummy
);
4160 rect
.width
= cw
- rect
.x
;
4161 rect
.height
= m_colLabelHeight
;
4162 m_colLabelWin
->Refresh( TRUE
, &rect
);
4164 m_gridWin
->Refresh( FALSE
, &rect
);
4167 ShowCellEditControl();
4174 // ------ interaction with data model
4176 bool wxGrid::ProcessTableMessage( wxGridTableMessage
& msg
)
4178 switch ( msg
.GetId() )
4180 case wxGRIDTABLE_REQUEST_VIEW_GET_VALUES
:
4181 return GetModelValues();
4183 case wxGRIDTABLE_REQUEST_VIEW_SEND_VALUES
:
4184 return SetModelValues();
4186 case wxGRIDTABLE_NOTIFY_ROWS_INSERTED
:
4187 case wxGRIDTABLE_NOTIFY_ROWS_APPENDED
:
4188 case wxGRIDTABLE_NOTIFY_ROWS_DELETED
:
4189 case wxGRIDTABLE_NOTIFY_COLS_INSERTED
:
4190 case wxGRIDTABLE_NOTIFY_COLS_APPENDED
:
4191 case wxGRIDTABLE_NOTIFY_COLS_DELETED
:
4192 return Redimension( msg
);
4201 // The behaviour of this function depends on the grid table class
4202 // Clear() function. For the default wxGridStringTable class the
4203 // behavious is to replace all cell contents with wxEmptyString but
4204 // not to change the number of rows or cols.
4206 void wxGrid::ClearGrid()
4210 if (IsCellEditControlEnabled())
4211 DisableCellEditControl();
4214 if ( !GetBatchCount() ) m_gridWin
->Refresh();
4219 bool wxGrid::InsertRows( int pos
, int numRows
, bool WXUNUSED(updateLabels
) )
4221 // TODO: something with updateLabels flag
4225 wxFAIL_MSG( wxT("Called wxGrid::InsertRows() before calling CreateGrid()") );
4231 if (IsCellEditControlEnabled())
4232 DisableCellEditControl();
4234 bool ok
= m_table
->InsertRows( pos
, numRows
);
4236 // the table will have sent the results of the insert row
4237 // operation to this view object as a grid table message
4241 if ( m_numCols
== 0 )
4243 m_table
->AppendCols( WXGRID_DEFAULT_NUMBER_COLS
);
4245 // TODO: perhaps instead of appending the default number of cols
4246 // we should remember what the last non-zero number of cols was ?
4250 if ( m_currentCellCoords
== wxGridNoCellCoords
)
4252 // if we have just inserted cols into an empty grid the current
4253 // cell will be undefined...
4255 SetCurrentCell( 0, 0 );
4259 if ( !GetBatchCount() ) Refresh();
4271 bool wxGrid::AppendRows( int numRows
, bool WXUNUSED(updateLabels
) )
4273 // TODO: something with updateLabels flag
4277 wxFAIL_MSG( wxT("Called wxGrid::AppendRows() before calling CreateGrid()") );
4281 if ( m_table
&& m_table
->AppendRows( numRows
) )
4283 if ( m_currentCellCoords
== wxGridNoCellCoords
)
4285 // if we have just inserted cols into an empty grid the current
4286 // cell will be undefined...
4288 SetCurrentCell( 0, 0 );
4291 // the table will have sent the results of the append row
4292 // operation to this view object as a grid table message
4295 if ( !GetBatchCount() ) Refresh();
4305 bool wxGrid::DeleteRows( int pos
, int numRows
, bool WXUNUSED(updateLabels
) )
4307 // TODO: something with updateLabels flag
4311 wxFAIL_MSG( wxT("Called wxGrid::DeleteRows() before calling CreateGrid()") );
4317 if (IsCellEditControlEnabled())
4318 DisableCellEditControl();
4320 if (m_table
->DeleteRows( pos
, numRows
))
4323 // the table will have sent the results of the delete row
4324 // operation to this view object as a grid table message
4327 if ( !GetBatchCount() ) Refresh();
4335 bool wxGrid::InsertCols( int pos
, int numCols
, bool WXUNUSED(updateLabels
) )
4337 // TODO: something with updateLabels flag
4341 wxFAIL_MSG( wxT("Called wxGrid::InsertCols() before calling CreateGrid()") );
4347 if (IsCellEditControlEnabled())
4348 DisableCellEditControl();
4350 bool ok
= m_table
->InsertCols( pos
, numCols
);
4352 // the table will have sent the results of the insert col
4353 // operation to this view object as a grid table message
4357 if ( m_currentCellCoords
== wxGridNoCellCoords
)
4359 // if we have just inserted cols into an empty grid the current
4360 // cell will be undefined...
4362 SetCurrentCell( 0, 0 );
4366 if ( !GetBatchCount() ) Refresh();
4378 bool wxGrid::AppendCols( int numCols
, bool WXUNUSED(updateLabels
) )
4380 // TODO: something with updateLabels flag
4384 wxFAIL_MSG( wxT("Called wxGrid::AppendCols() before calling CreateGrid()") );
4388 if ( m_table
&& m_table
->AppendCols( numCols
) )
4390 // the table will have sent the results of the append col
4391 // operation to this view object as a grid table message
4393 if ( m_currentCellCoords
== wxGridNoCellCoords
)
4395 // if we have just inserted cols into an empty grid the current
4396 // cell will be undefined...
4398 SetCurrentCell( 0, 0 );
4402 if ( !GetBatchCount() ) Refresh();
4412 bool wxGrid::DeleteCols( int pos
, int numCols
, bool WXUNUSED(updateLabels
) )
4414 // TODO: something with updateLabels flag
4418 wxFAIL_MSG( wxT("Called wxGrid::DeleteCols() before calling CreateGrid()") );
4424 if (IsCellEditControlEnabled())
4425 DisableCellEditControl();
4427 if ( m_table
->DeleteCols( pos
, numCols
) )
4429 // the table will have sent the results of the delete col
4430 // operation to this view object as a grid table message
4433 if ( !GetBatchCount() ) Refresh();
4443 // ----- event handlers
4446 // Generate a grid event based on a mouse event and
4447 // return the result of ProcessEvent()
4449 bool wxGrid::SendEvent( const wxEventType type
,
4451 wxMouseEvent
& mouseEv
)
4453 if ( type
== wxEVT_GRID_ROW_SIZE
|| type
== wxEVT_GRID_COL_SIZE
)
4455 int rowOrCol
= (row
== -1 ? col
: row
);
4457 wxGridSizeEvent
gridEvt( GetId(),
4461 mouseEv
.GetX(), mouseEv
.GetY(),
4462 mouseEv
.ControlDown(),
4463 mouseEv
.ShiftDown(),
4465 mouseEv
.MetaDown() );
4467 return GetEventHandler()->ProcessEvent(gridEvt
);
4469 else if ( type
== wxEVT_GRID_RANGE_SELECT
)
4471 wxGridRangeSelectEvent
gridEvt( GetId(),
4475 m_selectedBottomRight
,
4476 mouseEv
.ControlDown(),
4477 mouseEv
.ShiftDown(),
4479 mouseEv
.MetaDown() );
4481 return GetEventHandler()->ProcessEvent(gridEvt
);
4485 wxGridEvent
gridEvt( GetId(),
4489 mouseEv
.GetX(), mouseEv
.GetY(),
4490 mouseEv
.ControlDown(),
4491 mouseEv
.ShiftDown(),
4493 mouseEv
.MetaDown() );
4495 return GetEventHandler()->ProcessEvent(gridEvt
);
4500 // Generate a grid event of specified type and return the result
4501 // of ProcessEvent().
4503 bool wxGrid::SendEvent( const wxEventType type
,
4506 if ( type
== wxEVT_GRID_ROW_SIZE
|| type
== wxEVT_GRID_COL_SIZE
)
4508 int rowOrCol
= (row
== -1 ? col
: row
);
4510 wxGridSizeEvent
gridEvt( GetId(),
4515 return GetEventHandler()->ProcessEvent(gridEvt
);
4519 wxGridEvent
gridEvt( GetId(),
4524 return GetEventHandler()->ProcessEvent(gridEvt
);
4529 void wxGrid::OnPaint( wxPaintEvent
& WXUNUSED(event
) )
4531 wxPaintDC
dc( this );
4533 if ( m_currentCellCoords
== wxGridNoCellCoords
&&
4534 m_numRows
&& m_numCols
)
4536 m_currentCellCoords
.Set(0, 0);
4537 ShowCellEditControl();
4544 // This is just here to make sure that CalcDimensions gets called when
4545 // the grid view is resized... then the size event is skipped to allow
4546 // the box sizers to handle everything
4548 void wxGrid::OnSize( wxSizeEvent
& event
)
4555 void wxGrid::OnKeyDown( wxKeyEvent
& event
)
4557 if ( m_inOnKeyDown
)
4559 // shouldn't be here - we are going round in circles...
4561 wxFAIL_MSG( wxT("wxGrid::OnKeyDown called while already active") );
4564 m_inOnKeyDown
= TRUE
;
4566 // propagate the event up and see if it gets processed
4568 wxWindow
*parent
= GetParent();
4569 wxKeyEvent
keyEvt( event
);
4570 keyEvt
.SetEventObject( parent
);
4572 if ( !parent
->GetEventHandler()->ProcessEvent( keyEvt
) )
4575 // TODO: Should also support Shift-cursor keys for
4576 // extending the selection. Maybe add a flag to
4577 // MoveCursorXXX() and MoveCursorXXXBlock() and
4578 // just send event.ShiftDown().
4580 // try local handlers
4582 switch ( event
.KeyCode() )
4585 if ( event
.ControlDown() )
4587 MoveCursorUpBlock();
4596 if ( event
.ControlDown() )
4598 MoveCursorDownBlock();
4607 if ( event
.ControlDown() )
4609 MoveCursorLeftBlock();
4618 if ( event
.ControlDown() )
4620 MoveCursorRightBlock();
4629 if ( event
.ControlDown() )
4631 event
.Skip(); // to let the edit control have the return
4640 if (event
.ShiftDown())
4647 if ( event
.ControlDown() )
4649 MakeCellVisible( 0, 0 );
4650 SetCurrentCell( 0, 0 );
4659 if ( event
.ControlDown() )
4661 MakeCellVisible( m_numRows
-1, m_numCols
-1 );
4662 SetCurrentCell( m_numRows
-1, m_numCols
-1 );
4678 // We don't want these keys to trigger the edit control, any others?
4687 if ( !IsEditable() )
4692 // Otherwise fall through to default
4695 // now try the cell edit control
4697 if ( !IsCellEditControlEnabled() && CanEnableCellControl() )
4699 EnableCellEditControl();
4700 int row
= m_currentCellCoords
.GetRow();
4701 int col
= m_currentCellCoords
.GetCol();
4702 wxGridCellAttr
* attr
= GetCellAttr(row
, col
);
4703 attr
->GetEditor(this, row
, col
)->StartingKey(event
);
4708 // let others process char events for readonly cells
4715 m_inOnKeyDown
= FALSE
;
4719 void wxGrid::OnEraseBackground(wxEraseEvent
&)
4723 void wxGrid::SetCurrentCell( const wxGridCellCoords
& coords
)
4725 if ( SendEvent( wxEVT_GRID_SELECT_CELL
, coords
.GetRow(), coords
.GetCol() ) )
4727 // the event has been intercepted - do nothing
4732 m_currentCellCoords
!= wxGridNoCellCoords
)
4734 HideCellEditControl();
4735 DisableCellEditControl();
4737 // Clear the old current cell highlight
4738 wxRect r
= BlockToDeviceRect(m_currentCellCoords
, m_currentCellCoords
);
4740 // Otherwise refresh redraws the highlight!
4741 m_currentCellCoords
= coords
;
4743 m_gridWin
->Refresh( FALSE
, &r
);
4746 m_currentCellCoords
= coords
;
4750 wxClientDC
dc(m_gridWin
);
4753 wxGridCellAttr
* attr
= GetCellAttr(coords
);
4754 DrawCellHighlight(dc
, attr
);
4757 if ( IsSelection() )
4759 wxRect
r( SelectionToDeviceRect() );
4761 if ( !GetBatchCount() ) m_gridWin
->Refresh( FALSE
, &r
);
4768 // ------ functions to get/send data (see also public functions)
4771 bool wxGrid::GetModelValues()
4775 // all we need to do is repaint the grid
4777 m_gridWin
->Refresh();
4785 bool wxGrid::SetModelValues()
4791 for ( row
= 0; row
< m_numRows
; row
++ )
4793 for ( col
= 0; col
< m_numCols
; col
++ )
4795 m_table
->SetValue( row
, col
, GetCellValue(row
, col
) );
4807 // Note - this function only draws cells that are in the list of
4808 // exposed cells (usually set from the update region by
4809 // CalcExposedCells)
4811 void wxGrid::DrawGridCellArea( wxDC
& dc
)
4813 if ( !m_numRows
|| !m_numCols
) return;
4816 size_t numCells
= m_cellsExposed
.GetCount();
4818 for ( i
= 0; i
< numCells
; i
++ )
4820 DrawCell( dc
, m_cellsExposed
[i
] );
4825 void wxGrid::DrawGridSpace( wxDC
& dc
)
4827 if ( m_numRows
&& m_numCols
)
4830 m_gridWin
->GetClientSize( &cw
, &ch
);
4833 CalcUnscrolledPosition( cw
, ch
, &right
, &bottom
);
4835 if ( right
> GetColRight(m_numCols
-1) ||
4836 bottom
> GetRowBottom(m_numRows
-1) )
4839 CalcUnscrolledPosition( 0, 0, &left
, &top
);
4841 dc
.SetBrush( wxBrush(GetDefaultCellBackgroundColour(), wxSOLID
) );
4842 dc
.SetPen( *wxTRANSPARENT_PEN
);
4844 if ( right
> GetColRight(m_numCols
-1) )
4845 dc
.DrawRectangle( GetColRight(m_numCols
-1), top
,
4846 right
- GetColRight(m_numCols
-1), ch
);
4848 if ( bottom
> GetRowBottom(m_numRows
-1) )
4849 dc
.DrawRectangle( left
, GetRowBottom(m_numRows
-1),
4850 cw
, bottom
- GetRowBottom(m_numRows
-1) );
4856 void wxGrid::DrawCell( wxDC
& dc
, const wxGridCellCoords
& coords
)
4858 int row
= coords
.GetRow();
4859 int col
= coords
.GetCol();
4861 if ( GetColWidth(col
) <= 0 || GetRowHeight(row
) <= 0 )
4864 // we draw the cell border ourselves
4865 #if !WXGRID_DRAW_LINES
4866 if ( m_gridLinesEnabled
)
4867 DrawCellBorder( dc
, coords
);
4870 wxGridCellAttr
* attr
= GetCellAttr(row
, col
);
4872 bool isCurrent
= coords
== m_currentCellCoords
;
4875 rect
.x
= GetColLeft(col
);
4876 rect
.y
= GetRowTop(row
);
4877 rect
.width
= GetColWidth(col
) - 1;
4878 rect
.height
= GetRowHeight(row
) - 1;
4880 // if the editor is shown, we should use it and not the renderer
4881 if ( isCurrent
&& IsCellEditControlEnabled() )
4883 attr
->GetEditor(this, row
, col
)->PaintBackground(rect
, attr
);
4887 // but all the rest is drawn by the cell renderer and hence may be
4889 attr
->GetRenderer(this, row
, col
)->
4890 Draw(*this, *attr
, dc
, rect
, row
, col
, IsInSelection(coords
));
4897 void wxGrid::DrawCellHighlight( wxDC
& dc
, const wxGridCellAttr
*attr
)
4899 int row
= m_currentCellCoords
.GetRow();
4900 int col
= m_currentCellCoords
.GetCol();
4902 if ( GetColWidth(col
) <= 0 || GetRowHeight(row
) <= 0 )
4906 rect
.x
= GetColLeft(col
);
4907 rect
.y
= GetRowTop(row
);
4908 rect
.width
= GetColWidth(col
) - 1;
4909 rect
.height
= GetRowHeight(row
) - 1;
4911 // hmmm... what could we do here to show that the cell is disabled?
4912 // for now, I just draw a thinner border than for the other ones, but
4913 // it doesn't look really good
4914 dc
.SetPen(wxPen(m_gridLineColour
, attr
->IsReadOnly() ? 1 : 3, wxSOLID
));
4915 dc
.SetBrush(*wxTRANSPARENT_BRUSH
);
4917 dc
.DrawRectangle(rect
);
4920 // VZ: my experiments with 3d borders...
4922 // how to properly set colours for arbitrary bg?
4923 wxCoord x1
= rect
.x
,
4925 x2
= rect
.x
+ rect
.width
-1,
4926 y2
= rect
.y
+ rect
.height
-1;
4928 dc
.SetPen(*wxWHITE_PEN
);
4929 dc
.DrawLine(x1
, y1
, x2
, y1
);
4930 dc
.DrawLine(x1
, y1
, x1
, y2
);
4932 dc
.DrawLine(x1
+ 1, y2
- 1, x2
- 1, y2
- 1);
4933 dc
.DrawLine(x2
- 1, y1
+ 1, x2
- 1, y2
);
4935 dc
.SetPen(*wxBLACK_PEN
);
4936 dc
.DrawLine(x1
, y2
, x2
, y2
);
4937 dc
.DrawLine(x2
, y1
, x2
, y2
+1);
4942 void wxGrid::DrawCellBorder( wxDC
& dc
, const wxGridCellCoords
& coords
)
4944 int row
= coords
.GetRow();
4945 int col
= coords
.GetCol();
4946 if ( GetColWidth(col
) <= 0 || GetRowHeight(row
) <= 0 )
4949 dc
.SetPen( wxPen(GetGridLineColour(), 1, wxSOLID
) );
4951 // right hand border
4953 dc
.DrawLine( GetColRight(col
), GetRowTop(row
),
4954 GetColRight(col
), GetRowBottom(row
) );
4958 dc
.DrawLine( GetColLeft(col
), GetRowBottom(row
),
4959 GetColRight(col
), GetRowBottom(row
) );
4962 void wxGrid::DrawHighlight(wxDC
& dc
)
4964 if ( IsCellEditControlEnabled() )
4966 // don't show highlight when the edit control is shown
4970 // if the active cell was repainted, repaint its highlight too because it
4971 // might have been damaged by the grid lines
4972 size_t count
= m_cellsExposed
.GetCount();
4973 for ( size_t n
= 0; n
< count
; n
++ )
4975 if ( m_cellsExposed
[n
] == m_currentCellCoords
)
4977 wxGridCellAttr
* attr
= GetCellAttr(m_currentCellCoords
);
4978 DrawCellHighlight(dc
, attr
);
4986 // TODO: remove this ???
4987 // This is used to redraw all grid lines e.g. when the grid line colour
4990 void wxGrid::DrawAllGridLines( wxDC
& dc
, const wxRegion
& reg
)
4992 if ( !m_gridLinesEnabled
||
4994 !m_numCols
) return;
4996 int top
, bottom
, left
, right
;
5002 m_gridWin
->GetClientSize(&cw
, &ch
);
5004 // virtual coords of visible area
5006 CalcUnscrolledPosition( 0, 0, &left
, &top
);
5007 CalcUnscrolledPosition( cw
, ch
, &right
, &bottom
);
5012 reg
.GetBox(x
, y
, w
, h
);
5013 CalcUnscrolledPosition( x
, y
, &left
, &top
);
5014 CalcUnscrolledPosition( x
+ w
, y
+ h
, &right
, &bottom
);
5018 m_gridWin
->GetClientSize(&cw
, &ch
);
5019 CalcUnscrolledPosition( 0, 0, &left
, &top
);
5020 CalcUnscrolledPosition( cw
, ch
, &right
, &bottom
);
5023 // avoid drawing grid lines past the last row and col
5025 right
= wxMin( right
, GetColRight(m_numCols
- 1) );
5026 bottom
= wxMin( bottom
, GetRowBottom(m_numRows
- 1) );
5028 dc
.SetPen( wxPen(GetGridLineColour(), 1, wxSOLID
) );
5030 // horizontal grid lines
5033 for ( i
= 0; i
< m_numRows
; i
++ )
5035 int bot
= GetRowBottom(i
) - 1;
5044 dc
.DrawLine( left
, bot
, right
, bot
);
5049 // vertical grid lines
5051 for ( i
= 0; i
< m_numCols
; i
++ )
5053 int colRight
= GetColRight(i
) - 1;
5054 if ( colRight
> right
)
5059 if ( colRight
>= left
)
5061 dc
.DrawLine( colRight
, top
, colRight
, bottom
);
5067 void wxGrid::DrawRowLabels( wxDC
& dc
)
5069 if ( !m_numRows
|| !m_numCols
) return;
5072 size_t numLabels
= m_rowLabelsExposed
.GetCount();
5074 for ( i
= 0; i
< numLabels
; i
++ )
5076 DrawRowLabel( dc
, m_rowLabelsExposed
[i
] );
5081 void wxGrid::DrawRowLabel( wxDC
& dc
, int row
)
5083 if ( GetRowHeight(row
) <= 0 )
5086 int rowTop
= GetRowTop(row
),
5087 rowBottom
= GetRowBottom(row
) - 1;
5089 dc
.SetPen( *wxBLACK_PEN
);
5090 dc
.DrawLine( m_rowLabelWidth
-1, rowTop
,
5091 m_rowLabelWidth
-1, rowBottom
);
5093 dc
.DrawLine( 0, rowBottom
, m_rowLabelWidth
-1, rowBottom
);
5095 dc
.SetPen( *wxWHITE_PEN
);
5096 dc
.DrawLine( 0, rowTop
, 0, rowBottom
);
5097 dc
.DrawLine( 0, rowTop
, m_rowLabelWidth
-1, rowTop
);
5099 dc
.SetBackgroundMode( wxTRANSPARENT
);
5100 dc
.SetTextForeground( GetLabelTextColour() );
5101 dc
.SetFont( GetLabelFont() );
5104 GetRowLabelAlignment( &hAlign
, &vAlign
);
5108 rect
.SetY( GetRowTop(row
) + 2 );
5109 rect
.SetWidth( m_rowLabelWidth
- 4 );
5110 rect
.SetHeight( GetRowHeight(row
) - 4 );
5111 DrawTextRectangle( dc
, GetRowLabelValue( row
), rect
, hAlign
, vAlign
);
5115 void wxGrid::DrawColLabels( wxDC
& dc
)
5117 if ( !m_numRows
|| !m_numCols
) return;
5120 size_t numLabels
= m_colLabelsExposed
.GetCount();
5122 for ( i
= 0; i
< numLabels
; i
++ )
5124 DrawColLabel( dc
, m_colLabelsExposed
[i
] );
5129 void wxGrid::DrawColLabel( wxDC
& dc
, int col
)
5131 if ( GetColWidth(col
) <= 0 )
5134 int colLeft
= GetColLeft(col
),
5135 colRight
= GetColRight(col
) - 1;
5137 dc
.SetPen( *wxBLACK_PEN
);
5138 dc
.DrawLine( colRight
, 0,
5139 colRight
, m_colLabelHeight
-1 );
5141 dc
.DrawLine( colLeft
, m_colLabelHeight
-1,
5142 colRight
, m_colLabelHeight
-1 );
5144 dc
.SetPen( *wxWHITE_PEN
);
5145 dc
.DrawLine( colLeft
, 0, colLeft
, m_colLabelHeight
-1 );
5146 dc
.DrawLine( colLeft
, 0, colRight
, 0 );
5148 dc
.SetBackgroundMode( wxTRANSPARENT
);
5149 dc
.SetTextForeground( GetLabelTextColour() );
5150 dc
.SetFont( GetLabelFont() );
5152 dc
.SetBackgroundMode( wxTRANSPARENT
);
5153 dc
.SetTextForeground( GetLabelTextColour() );
5154 dc
.SetFont( GetLabelFont() );
5157 GetColLabelAlignment( &hAlign
, &vAlign
);
5160 rect
.SetX( colLeft
+ 2 );
5162 rect
.SetWidth( GetColWidth(col
) - 4 );
5163 rect
.SetHeight( m_colLabelHeight
- 4 );
5164 DrawTextRectangle( dc
, GetColLabelValue( col
), rect
, hAlign
, vAlign
);
5168 void wxGrid::DrawTextRectangle( wxDC
& dc
,
5169 const wxString
& value
,
5174 long textWidth
, textHeight
;
5175 long lineWidth
, lineHeight
;
5176 wxArrayString lines
;
5178 dc
.SetClippingRegion( rect
);
5179 StringToLines( value
, lines
);
5180 if ( lines
.GetCount() )
5182 GetTextBoxSize( dc
, lines
, &textWidth
, &textHeight
);
5183 dc
.GetTextExtent( lines
[0], &lineWidth
, &lineHeight
);
5186 switch ( horizAlign
)
5189 x
= rect
.x
+ (rect
.width
- textWidth
- 1);
5193 x
= rect
.x
+ ((rect
.width
- textWidth
)/2);
5202 switch ( vertAlign
)
5205 y
= rect
.y
+ (rect
.height
- textHeight
- 1);
5209 y
= rect
.y
+ ((rect
.height
- textHeight
)/2);
5218 for ( size_t i
= 0; i
< lines
.GetCount(); i
++ )
5220 dc
.DrawText( lines
[i
], (long)x
, (long)y
);
5225 dc
.DestroyClippingRegion();
5229 // Split multi line text up into an array of strings. Any existing
5230 // contents of the string array are preserved.
5232 void wxGrid::StringToLines( const wxString
& value
, wxArrayString
& lines
)
5236 wxString eol
= wxTextFile::GetEOL( wxTextFileType_Unix
);
5237 wxString tVal
= wxTextFile::Translate( value
, wxTextFileType_Unix
);
5239 while ( startPos
< (int)tVal
.Length() )
5241 pos
= tVal
.Mid(startPos
).Find( eol
);
5246 else if ( pos
== 0 )
5248 lines
.Add( wxEmptyString
);
5252 lines
.Add( value
.Mid(startPos
, pos
) );
5256 if ( startPos
< (int)value
.Length() )
5258 lines
.Add( value
.Mid( startPos
) );
5263 void wxGrid::GetTextBoxSize( wxDC
& dc
,
5264 wxArrayString
& lines
,
5265 long *width
, long *height
)
5272 for ( i
= 0; i
< lines
.GetCount(); i
++ )
5274 dc
.GetTextExtent( lines
[i
], &lineW
, &lineH
);
5275 w
= wxMax( w
, lineW
);
5285 // ------ Edit control functions
5289 void wxGrid::EnableEditing( bool edit
)
5291 // TODO: improve this ?
5293 if ( edit
!= m_editable
)
5297 // FIXME IMHO this won't disable the edit control if edit == FALSE
5298 // because of the check in the beginning of
5299 // EnableCellEditControl() just below (VZ)
5300 EnableCellEditControl(m_editable
);
5305 void wxGrid::EnableCellEditControl( bool enable
)
5310 if ( m_currentCellCoords
== wxGridNoCellCoords
)
5311 SetCurrentCell( 0, 0 );
5313 if ( enable
!= m_cellEditCtrlEnabled
)
5315 // TODO allow the app to Veto() this event?
5316 SendEvent(enable
? wxEVT_GRID_EDITOR_SHOWN
: wxEVT_GRID_EDITOR_HIDDEN
);
5320 // this should be checked by the caller!
5321 wxASSERT_MSG( CanEnableCellControl(),
5322 _T("can't enable editing for this cell!") );
5324 // do it before ShowCellEditControl()
5325 m_cellEditCtrlEnabled
= enable
;
5327 ShowCellEditControl();
5331 HideCellEditControl();
5332 SaveEditControlValue();
5334 // do it after HideCellEditControl()
5335 m_cellEditCtrlEnabled
= enable
;
5340 bool wxGrid::IsCurrentCellReadOnly() const
5343 wxGridCellAttr
* attr
= ((wxGrid
*)this)->GetCellAttr(m_currentCellCoords
);
5344 bool readonly
= attr
->IsReadOnly();
5350 bool wxGrid::CanEnableCellControl() const
5352 return m_editable
&& !IsCurrentCellReadOnly();
5355 bool wxGrid::IsCellEditControlEnabled() const
5357 // the cell edit control might be disable for all cells or just for the
5358 // current one if it's read only
5359 return m_cellEditCtrlEnabled
? !IsCurrentCellReadOnly() : FALSE
;
5362 void wxGrid::ShowCellEditControl()
5364 if ( IsCellEditControlEnabled() )
5366 if ( !IsVisible( m_currentCellCoords
) )
5372 wxRect rect
= CellToRect( m_currentCellCoords
);
5373 int row
= m_currentCellCoords
.GetRow();
5374 int col
= m_currentCellCoords
.GetCol();
5376 // convert to scrolled coords
5378 CalcScrolledPosition( rect
.x
, rect
.y
, &rect
.x
, &rect
.y
);
5380 // done in PaintBackground()
5382 // erase the highlight and the cell contents because the editor
5383 // might not cover the entire cell
5384 wxClientDC
dc( m_gridWin
);
5386 dc
.SetBrush(*wxLIGHT_GREY_BRUSH
); //wxBrush(attr->GetBackgroundColour(), wxSOLID));
5387 dc
.SetPen(*wxTRANSPARENT_PEN
);
5388 dc
.DrawRectangle(rect
);
5391 // cell is shifted by one pixel
5395 wxGridCellAttr
* attr
= GetCellAttr(row
, col
);
5396 wxGridCellEditor
* editor
= attr
->GetEditor(this, row
, col
);
5397 if ( !editor
->IsCreated() )
5399 editor
->Create(m_gridWin
, -1,
5400 new wxGridCellEditorEvtHandler(this, editor
));
5403 editor
->SetSize( rect
);
5405 editor
->Show( TRUE
, attr
);
5406 editor
->BeginEdit(row
, col
, this);
5413 void wxGrid::HideCellEditControl()
5415 if ( IsCellEditControlEnabled() )
5417 int row
= m_currentCellCoords
.GetRow();
5418 int col
= m_currentCellCoords
.GetCol();
5420 wxGridCellAttr
* attr
= GetCellAttr(row
, col
);
5421 attr
->GetEditor(this, row
, col
)->Show( FALSE
);
5423 m_gridWin
->SetFocus();
5428 void wxGrid::SaveEditControlValue()
5430 if ( IsCellEditControlEnabled() )
5432 int row
= m_currentCellCoords
.GetRow();
5433 int col
= m_currentCellCoords
.GetCol();
5435 wxGridCellAttr
* attr
= GetCellAttr(row
, col
);
5436 wxGridCellEditor
* editor
= attr
->GetEditor(this, row
, col
);
5437 bool changed
= editor
->EndEdit(row
, col
, this);
5443 SendEvent( wxEVT_GRID_CELL_CHANGE
,
5444 m_currentCellCoords
.GetRow(),
5445 m_currentCellCoords
.GetCol() );
5452 // ------ Grid location functions
5453 // Note that all of these functions work with the logical coordinates of
5454 // grid cells and labels so you will need to convert from device
5455 // coordinates for mouse events etc.
5458 void wxGrid::XYToCell( int x
, int y
, wxGridCellCoords
& coords
)
5460 int row
= YToRow(y
);
5461 int col
= XToCol(x
);
5463 if ( row
== -1 || col
== -1 )
5465 coords
= wxGridNoCellCoords
;
5469 coords
.Set( row
, col
);
5474 int wxGrid::YToRow( int y
)
5478 for ( i
= 0; i
< m_numRows
; i
++ )
5480 if ( y
< GetRowBottom(i
) )
5488 int wxGrid::XToCol( int x
)
5492 for ( i
= 0; i
< m_numCols
; i
++ )
5494 if ( x
< GetColRight(i
) )
5502 // return the row number that that the y coord is near the edge of, or
5503 // -1 if not near an edge
5505 int wxGrid::YToEdgeOfRow( int y
)
5509 for ( i
= 0; i
< m_numRows
; i
++ )
5511 if ( GetRowHeight(i
) > WXGRID_LABEL_EDGE_ZONE
)
5513 d
= abs( y
- GetRowBottom(i
) );
5514 if ( d
< WXGRID_LABEL_EDGE_ZONE
)
5523 // return the col number that that the x coord is near the edge of, or
5524 // -1 if not near an edge
5526 int wxGrid::XToEdgeOfCol( int x
)
5530 for ( i
= 0; i
< m_numCols
; i
++ )
5532 if ( GetColWidth(i
) > WXGRID_LABEL_EDGE_ZONE
)
5534 d
= abs( x
- GetColRight(i
) );
5535 if ( d
< WXGRID_LABEL_EDGE_ZONE
)
5544 wxRect
wxGrid::CellToRect( int row
, int col
)
5546 wxRect
rect( -1, -1, -1, -1 );
5548 if ( row
>= 0 && row
< m_numRows
&&
5549 col
>= 0 && col
< m_numCols
)
5551 rect
.x
= GetColLeft(col
);
5552 rect
.y
= GetRowTop(row
);
5553 rect
.width
= GetColWidth(col
);
5554 rect
.height
= GetRowHeight(row
);
5561 bool wxGrid::IsVisible( int row
, int col
, bool wholeCellVisible
)
5563 // get the cell rectangle in logical coords
5565 wxRect
r( CellToRect( row
, col
) );
5567 // convert to device coords
5569 int left
, top
, right
, bottom
;
5570 CalcScrolledPosition( r
.GetLeft(), r
.GetTop(), &left
, &top
);
5571 CalcScrolledPosition( r
.GetRight(), r
.GetBottom(), &right
, &bottom
);
5573 // check against the client area of the grid window
5576 m_gridWin
->GetClientSize( &cw
, &ch
);
5578 if ( wholeCellVisible
)
5580 // is the cell wholly visible ?
5582 return ( left
>= 0 && right
<= cw
&&
5583 top
>= 0 && bottom
<= ch
);
5587 // is the cell partly visible ?
5589 return ( ((left
>=0 && left
< cw
) || (right
> 0 && right
<= cw
)) &&
5590 ((top
>=0 && top
< ch
) || (bottom
> 0 && bottom
<= ch
)) );
5595 // make the specified cell location visible by doing a minimal amount
5598 void wxGrid::MakeCellVisible( int row
, int col
)
5601 int xpos
= -1, ypos
= -1;
5603 if ( row
>= 0 && row
< m_numRows
&&
5604 col
>= 0 && col
< m_numCols
)
5606 // get the cell rectangle in logical coords
5608 wxRect
r( CellToRect( row
, col
) );
5610 // convert to device coords
5612 int left
, top
, right
, bottom
;
5613 CalcScrolledPosition( r
.GetLeft(), r
.GetTop(), &left
, &top
);
5614 CalcScrolledPosition( r
.GetRight(), r
.GetBottom(), &right
, &bottom
);
5617 m_gridWin
->GetClientSize( &cw
, &ch
);
5623 else if ( bottom
> ch
)
5625 int h
= r
.GetHeight();
5627 for ( i
= row
-1; i
>= 0; i
-- )
5629 int rowHeight
= GetRowHeight(i
);
5630 if ( h
+ rowHeight
> ch
)
5637 // we divide it later by GRID_SCROLL_LINE, make sure that we don't
5638 // have rounding errors (this is important, because if we do, we
5639 // might not scroll at all and some cells won't be redrawn)
5640 ypos
+= GRID_SCROLL_LINE
/ 2;
5647 else if ( right
> cw
)
5649 int w
= r
.GetWidth();
5651 for ( i
= col
-1; i
>= 0; i
-- )
5653 int colWidth
= GetColWidth(i
);
5654 if ( w
+ colWidth
> cw
)
5661 // see comment for ypos above
5662 xpos
+= GRID_SCROLL_LINE
/ 2;
5665 if ( xpos
!= -1 || ypos
!= -1 )
5667 if ( xpos
!= -1 ) xpos
/= GRID_SCROLL_LINE
;
5668 if ( ypos
!= -1 ) ypos
/= GRID_SCROLL_LINE
;
5669 Scroll( xpos
, ypos
);
5677 // ------ Grid cursor movement functions
5680 bool wxGrid::MoveCursorUp()
5682 if ( m_currentCellCoords
!= wxGridNoCellCoords
&&
5683 m_currentCellCoords
.GetRow() > 0 )
5685 MakeCellVisible( m_currentCellCoords
.GetRow() - 1,
5686 m_currentCellCoords
.GetCol() );
5688 SetCurrentCell( m_currentCellCoords
.GetRow() - 1,
5689 m_currentCellCoords
.GetCol() );
5698 bool wxGrid::MoveCursorDown()
5700 // TODO: allow for scrolling
5702 if ( m_currentCellCoords
!= wxGridNoCellCoords
&&
5703 m_currentCellCoords
.GetRow() < m_numRows
-1 )
5705 MakeCellVisible( m_currentCellCoords
.GetRow() + 1,
5706 m_currentCellCoords
.GetCol() );
5708 SetCurrentCell( m_currentCellCoords
.GetRow() + 1,
5709 m_currentCellCoords
.GetCol() );
5718 bool wxGrid::MoveCursorLeft()
5720 if ( m_currentCellCoords
!= wxGridNoCellCoords
&&
5721 m_currentCellCoords
.GetCol() > 0 )
5723 MakeCellVisible( m_currentCellCoords
.GetRow(),
5724 m_currentCellCoords
.GetCol() - 1 );
5726 SetCurrentCell( m_currentCellCoords
.GetRow(),
5727 m_currentCellCoords
.GetCol() - 1 );
5736 bool wxGrid::MoveCursorRight()
5738 if ( m_currentCellCoords
!= wxGridNoCellCoords
&&
5739 m_currentCellCoords
.GetCol() < m_numCols
- 1 )
5741 MakeCellVisible( m_currentCellCoords
.GetRow(),
5742 m_currentCellCoords
.GetCol() + 1 );
5744 SetCurrentCell( m_currentCellCoords
.GetRow(),
5745 m_currentCellCoords
.GetCol() + 1 );
5754 bool wxGrid::MovePageUp()
5756 if ( m_currentCellCoords
== wxGridNoCellCoords
) return FALSE
;
5758 int row
= m_currentCellCoords
.GetRow();
5762 m_gridWin
->GetClientSize( &cw
, &ch
);
5764 int y
= GetRowTop(row
);
5765 int newRow
= YToRow( y
- ch
+ 1 );
5770 else if ( newRow
== row
)
5775 MakeCellVisible( newRow
, m_currentCellCoords
.GetCol() );
5776 SetCurrentCell( newRow
, m_currentCellCoords
.GetCol() );
5784 bool wxGrid::MovePageDown()
5786 if ( m_currentCellCoords
== wxGridNoCellCoords
) return FALSE
;
5788 int row
= m_currentCellCoords
.GetRow();
5789 if ( row
< m_numRows
)
5792 m_gridWin
->GetClientSize( &cw
, &ch
);
5794 int y
= GetRowTop(row
);
5795 int newRow
= YToRow( y
+ ch
);
5798 newRow
= m_numRows
- 1;
5800 else if ( newRow
== row
)
5805 MakeCellVisible( newRow
, m_currentCellCoords
.GetCol() );
5806 SetCurrentCell( newRow
, m_currentCellCoords
.GetCol() );
5814 bool wxGrid::MoveCursorUpBlock()
5817 m_currentCellCoords
!= wxGridNoCellCoords
&&
5818 m_currentCellCoords
.GetRow() > 0 )
5820 int row
= m_currentCellCoords
.GetRow();
5821 int col
= m_currentCellCoords
.GetCol();
5823 if ( m_table
->IsEmptyCell(row
, col
) )
5825 // starting in an empty cell: find the next block of
5831 if ( !(m_table
->IsEmptyCell(row
, col
)) ) break;
5834 else if ( m_table
->IsEmptyCell(row
-1, col
) )
5836 // starting at the top of a block: find the next block
5842 if ( !(m_table
->IsEmptyCell(row
, col
)) ) break;
5847 // starting within a block: find the top of the block
5852 if ( m_table
->IsEmptyCell(row
, col
) )
5860 MakeCellVisible( row
, col
);
5861 SetCurrentCell( row
, col
);
5869 bool wxGrid::MoveCursorDownBlock()
5872 m_currentCellCoords
!= wxGridNoCellCoords
&&
5873 m_currentCellCoords
.GetRow() < m_numRows
-1 )
5875 int row
= m_currentCellCoords
.GetRow();
5876 int col
= m_currentCellCoords
.GetCol();
5878 if ( m_table
->IsEmptyCell(row
, col
) )
5880 // starting in an empty cell: find the next block of
5883 while ( row
< m_numRows
-1 )
5886 if ( !(m_table
->IsEmptyCell(row
, col
)) ) break;
5889 else if ( m_table
->IsEmptyCell(row
+1, col
) )
5891 // starting at the bottom of a block: find the next block
5894 while ( row
< m_numRows
-1 )
5897 if ( !(m_table
->IsEmptyCell(row
, col
)) ) break;
5902 // starting within a block: find the bottom of the block
5904 while ( row
< m_numRows
-1 )
5907 if ( m_table
->IsEmptyCell(row
, col
) )
5915 MakeCellVisible( row
, col
);
5916 SetCurrentCell( row
, col
);
5924 bool wxGrid::MoveCursorLeftBlock()
5927 m_currentCellCoords
!= wxGridNoCellCoords
&&
5928 m_currentCellCoords
.GetCol() > 0 )
5930 int row
= m_currentCellCoords
.GetRow();
5931 int col
= m_currentCellCoords
.GetCol();
5933 if ( m_table
->IsEmptyCell(row
, col
) )
5935 // starting in an empty cell: find the next block of
5941 if ( !(m_table
->IsEmptyCell(row
, col
)) ) break;
5944 else if ( m_table
->IsEmptyCell(row
, col
-1) )
5946 // starting at the left of a block: find the next block
5952 if ( !(m_table
->IsEmptyCell(row
, col
)) ) break;
5957 // starting within a block: find the left of the block
5962 if ( m_table
->IsEmptyCell(row
, col
) )
5970 MakeCellVisible( row
, col
);
5971 SetCurrentCell( row
, col
);
5979 bool wxGrid::MoveCursorRightBlock()
5982 m_currentCellCoords
!= wxGridNoCellCoords
&&
5983 m_currentCellCoords
.GetCol() < m_numCols
-1 )
5985 int row
= m_currentCellCoords
.GetRow();
5986 int col
= m_currentCellCoords
.GetCol();
5988 if ( m_table
->IsEmptyCell(row
, col
) )
5990 // starting in an empty cell: find the next block of
5993 while ( col
< m_numCols
-1 )
5996 if ( !(m_table
->IsEmptyCell(row
, col
)) ) break;
5999 else if ( m_table
->IsEmptyCell(row
, col
+1) )
6001 // starting at the right of a block: find the next block
6004 while ( col
< m_numCols
-1 )
6007 if ( !(m_table
->IsEmptyCell(row
, col
)) ) break;
6012 // starting within a block: find the right of the block
6014 while ( col
< m_numCols
-1 )
6017 if ( m_table
->IsEmptyCell(row
, col
) )
6025 MakeCellVisible( row
, col
);
6026 SetCurrentCell( row
, col
);
6037 // ------ Label values and formatting
6040 void wxGrid::GetRowLabelAlignment( int *horiz
, int *vert
)
6042 *horiz
= m_rowLabelHorizAlign
;
6043 *vert
= m_rowLabelVertAlign
;
6046 void wxGrid::GetColLabelAlignment( int *horiz
, int *vert
)
6048 *horiz
= m_colLabelHorizAlign
;
6049 *vert
= m_colLabelVertAlign
;
6052 wxString
wxGrid::GetRowLabelValue( int row
)
6056 return m_table
->GetRowLabelValue( row
);
6066 wxString
wxGrid::GetColLabelValue( int col
)
6070 return m_table
->GetColLabelValue( col
);
6081 void wxGrid::SetRowLabelSize( int width
)
6083 width
= wxMax( width
, 0 );
6084 if ( width
!= m_rowLabelWidth
)
6088 m_rowLabelWin
->Show( FALSE
);
6089 m_cornerLabelWin
->Show( FALSE
);
6091 else if ( m_rowLabelWidth
== 0 )
6093 m_rowLabelWin
->Show( TRUE
);
6094 if ( m_colLabelHeight
> 0 ) m_cornerLabelWin
->Show( TRUE
);
6097 m_rowLabelWidth
= width
;
6104 void wxGrid::SetColLabelSize( int height
)
6106 height
= wxMax( height
, 0 );
6107 if ( height
!= m_colLabelHeight
)
6111 m_colLabelWin
->Show( FALSE
);
6112 m_cornerLabelWin
->Show( FALSE
);
6114 else if ( m_colLabelHeight
== 0 )
6116 m_colLabelWin
->Show( TRUE
);
6117 if ( m_rowLabelWidth
> 0 ) m_cornerLabelWin
->Show( TRUE
);
6120 m_colLabelHeight
= height
;
6127 void wxGrid::SetLabelBackgroundColour( const wxColour
& colour
)
6129 if ( m_labelBackgroundColour
!= colour
)
6131 m_labelBackgroundColour
= colour
;
6132 m_rowLabelWin
->SetBackgroundColour( colour
);
6133 m_colLabelWin
->SetBackgroundColour( colour
);
6134 m_cornerLabelWin
->SetBackgroundColour( colour
);
6136 if ( !GetBatchCount() )
6138 m_rowLabelWin
->Refresh();
6139 m_colLabelWin
->Refresh();
6140 m_cornerLabelWin
->Refresh();
6145 void wxGrid::SetLabelTextColour( const wxColour
& colour
)
6147 if ( m_labelTextColour
!= colour
)
6149 m_labelTextColour
= colour
;
6150 if ( !GetBatchCount() )
6152 m_rowLabelWin
->Refresh();
6153 m_colLabelWin
->Refresh();
6158 void wxGrid::SetLabelFont( const wxFont
& font
)
6161 if ( !GetBatchCount() )
6163 m_rowLabelWin
->Refresh();
6164 m_colLabelWin
->Refresh();
6168 void wxGrid::SetRowLabelAlignment( int horiz
, int vert
)
6170 if ( horiz
== wxLEFT
|| horiz
== wxCENTRE
|| horiz
== wxRIGHT
)
6172 m_rowLabelHorizAlign
= horiz
;
6175 if ( vert
== wxTOP
|| vert
== wxCENTRE
|| vert
== wxBOTTOM
)
6177 m_rowLabelVertAlign
= vert
;
6180 if ( !GetBatchCount() )
6182 m_rowLabelWin
->Refresh();
6186 void wxGrid::SetColLabelAlignment( int horiz
, int vert
)
6188 if ( horiz
== wxLEFT
|| horiz
== wxCENTRE
|| horiz
== wxRIGHT
)
6190 m_colLabelHorizAlign
= horiz
;
6193 if ( vert
== wxTOP
|| vert
== wxCENTRE
|| vert
== wxBOTTOM
)
6195 m_colLabelVertAlign
= vert
;
6198 if ( !GetBatchCount() )
6200 m_colLabelWin
->Refresh();
6204 void wxGrid::SetRowLabelValue( int row
, const wxString
& s
)
6208 m_table
->SetRowLabelValue( row
, s
);
6209 if ( !GetBatchCount() )
6211 wxRect rect
= CellToRect( row
, 0);
6212 if ( rect
.height
> 0 )
6214 CalcScrolledPosition(0, rect
.y
, &rect
.x
, &rect
.y
);
6216 rect
.width
= m_rowLabelWidth
;
6217 m_rowLabelWin
->Refresh( TRUE
, &rect
);
6223 void wxGrid::SetColLabelValue( int col
, const wxString
& s
)
6227 m_table
->SetColLabelValue( col
, s
);
6228 if ( !GetBatchCount() )
6230 wxRect rect
= CellToRect( 0, col
);
6231 if ( rect
.width
> 0 )
6233 CalcScrolledPosition(rect
.x
, 0, &rect
.x
, &rect
.y
);
6235 rect
.height
= m_colLabelHeight
;
6236 m_colLabelWin
->Refresh( TRUE
, &rect
);
6242 void wxGrid::SetGridLineColour( const wxColour
& colour
)
6244 if ( m_gridLineColour
!= colour
)
6246 m_gridLineColour
= colour
;
6248 wxClientDC
dc( m_gridWin
);
6250 DrawAllGridLines( dc
, wxRegion() );
6254 void wxGrid::EnableGridLines( bool enable
)
6256 if ( enable
!= m_gridLinesEnabled
)
6258 m_gridLinesEnabled
= enable
;
6260 if ( !GetBatchCount() )
6264 wxClientDC
dc( m_gridWin
);
6266 DrawAllGridLines( dc
, wxRegion() );
6270 m_gridWin
->Refresh();
6277 int wxGrid::GetDefaultRowSize()
6279 return m_defaultRowHeight
;
6282 int wxGrid::GetRowSize( int row
)
6284 wxCHECK_MSG( row
>= 0 && row
< m_numRows
, 0, _T("invalid row index") );
6286 return GetRowHeight(row
);
6289 int wxGrid::GetDefaultColSize()
6291 return m_defaultColWidth
;
6294 int wxGrid::GetColSize( int col
)
6296 wxCHECK_MSG( col
>= 0 && col
< m_numCols
, 0, _T("invalid column index") );
6298 return GetColWidth(col
);
6301 // ============================================================================
6302 // access to the grid attributes: each of them has a default value in the grid
6303 // itself and may be overidden on a per-cell basis
6304 // ============================================================================
6306 // ----------------------------------------------------------------------------
6307 // setting default attributes
6308 // ----------------------------------------------------------------------------
6310 void wxGrid::SetDefaultCellBackgroundColour( const wxColour
& col
)
6312 m_defaultCellAttr
->SetBackgroundColour(col
);
6314 m_gridWin
->SetBackgroundColour(col
);
6318 void wxGrid::SetDefaultCellTextColour( const wxColour
& col
)
6320 m_defaultCellAttr
->SetTextColour(col
);
6323 void wxGrid::SetDefaultCellAlignment( int horiz
, int vert
)
6325 m_defaultCellAttr
->SetAlignment(horiz
, vert
);
6328 void wxGrid::SetDefaultCellFont( const wxFont
& font
)
6330 m_defaultCellAttr
->SetFont(font
);
6333 void wxGrid::SetDefaultRenderer(wxGridCellRenderer
*renderer
)
6335 m_defaultCellAttr
->SetRenderer(renderer
);
6338 void wxGrid::SetDefaultEditor(wxGridCellEditor
*editor
)
6340 m_defaultCellAttr
->SetEditor(editor
);
6343 // ----------------------------------------------------------------------------
6344 // access to the default attrbiutes
6345 // ----------------------------------------------------------------------------
6347 wxColour
wxGrid::GetDefaultCellBackgroundColour()
6349 return m_defaultCellAttr
->GetBackgroundColour();
6352 wxColour
wxGrid::GetDefaultCellTextColour()
6354 return m_defaultCellAttr
->GetTextColour();
6357 wxFont
wxGrid::GetDefaultCellFont()
6359 return m_defaultCellAttr
->GetFont();
6362 void wxGrid::GetDefaultCellAlignment( int *horiz
, int *vert
)
6364 m_defaultCellAttr
->GetAlignment(horiz
, vert
);
6367 wxGridCellRenderer
*wxGrid::GetDefaultRenderer() const
6369 return m_defaultCellAttr
->GetRenderer(NULL
,0,0);
6372 wxGridCellEditor
*wxGrid::GetDefaultEditor() const
6374 return m_defaultCellAttr
->GetEditor(NULL
,0,0);
6377 // ----------------------------------------------------------------------------
6378 // access to cell attributes
6379 // ----------------------------------------------------------------------------
6381 wxColour
wxGrid::GetCellBackgroundColour(int row
, int col
)
6383 wxGridCellAttr
*attr
= GetCellAttr(row
, col
);
6384 wxColour colour
= attr
->GetBackgroundColour();
6389 wxColour
wxGrid::GetCellTextColour( int row
, int col
)
6391 wxGridCellAttr
*attr
= GetCellAttr(row
, col
);
6392 wxColour colour
= attr
->GetTextColour();
6397 wxFont
wxGrid::GetCellFont( int row
, int col
)
6399 wxGridCellAttr
*attr
= GetCellAttr(row
, col
);
6400 wxFont font
= attr
->GetFont();
6405 void wxGrid::GetCellAlignment( int row
, int col
, int *horiz
, int *vert
)
6407 wxGridCellAttr
*attr
= GetCellAttr(row
, col
);
6408 attr
->GetAlignment(horiz
, vert
);
6412 wxGridCellRenderer
* wxGrid::GetCellRenderer(int row
, int col
)
6414 wxGridCellAttr
* attr
= GetCellAttr(row
, col
);
6415 wxGridCellRenderer
* renderer
= attr
->GetRenderer(this, row
, col
);
6420 wxGridCellEditor
* wxGrid::GetCellEditor(int row
, int col
)
6422 wxGridCellAttr
* attr
= GetCellAttr(row
, col
);
6423 wxGridCellEditor
* editor
= attr
->GetEditor(this, row
, col
);
6428 bool wxGrid::IsReadOnly(int row
, int col
) const
6430 wxGridCellAttr
* attr
= GetCellAttr(row
, col
);
6431 bool isReadOnly
= attr
->IsReadOnly();
6436 // ----------------------------------------------------------------------------
6437 // attribute support: cache, automatic provider creation, ...
6438 // ----------------------------------------------------------------------------
6440 bool wxGrid::CanHaveAttributes()
6447 return m_table
->CanHaveAttributes();
6450 void wxGrid::ClearAttrCache()
6452 if ( m_attrCache
.row
!= -1 )
6454 m_attrCache
.attr
->SafeDecRef();
6455 m_attrCache
.row
= -1;
6459 void wxGrid::CacheAttr(int row
, int col
, wxGridCellAttr
*attr
) const
6461 wxGrid
*self
= (wxGrid
*)this; // const_cast
6463 self
->ClearAttrCache();
6464 self
->m_attrCache
.row
= row
;
6465 self
->m_attrCache
.col
= col
;
6466 self
->m_attrCache
.attr
= attr
;
6470 bool wxGrid::LookupAttr(int row
, int col
, wxGridCellAttr
**attr
) const
6472 if ( row
== m_attrCache
.row
&& col
== m_attrCache
.col
)
6474 *attr
= m_attrCache
.attr
;
6475 (*attr
)->SafeIncRef();
6477 #ifdef DEBUG_ATTR_CACHE
6478 gs_nAttrCacheHits
++;
6485 #ifdef DEBUG_ATTR_CACHE
6486 gs_nAttrCacheMisses
++;
6492 wxGridCellAttr
*wxGrid::GetCellAttr(int row
, int col
) const
6494 wxGridCellAttr
*attr
;
6495 if ( !LookupAttr(row
, col
, &attr
) )
6497 attr
= m_table
? m_table
->GetAttr(row
, col
) : (wxGridCellAttr
*)NULL
;
6498 CacheAttr(row
, col
, attr
);
6502 attr
->SetDefAttr(m_defaultCellAttr
);
6506 attr
= m_defaultCellAttr
;
6513 wxGridCellAttr
*wxGrid::GetOrCreateCellAttr(int row
, int col
) const
6515 wxGridCellAttr
*attr
;
6516 if ( !LookupAttr(row
, col
, &attr
) || !attr
)
6518 wxASSERT_MSG( m_table
,
6519 _T("we may only be called if CanHaveAttributes() "
6520 "returned TRUE and then m_table should be !NULL") );
6522 attr
= m_table
->GetAttr(row
, col
);
6525 attr
= new wxGridCellAttr
;
6527 // artificially inc the ref count to match DecRef() in caller
6530 m_table
->SetAttr(attr
, row
, col
);
6533 CacheAttr(row
, col
, attr
);
6535 attr
->SetDefAttr(m_defaultCellAttr
);
6539 // ----------------------------------------------------------------------------
6540 // setting cell attributes: this is forwarded to the table
6541 // ----------------------------------------------------------------------------
6543 void wxGrid::SetRowAttr(int row
, wxGridCellAttr
*attr
)
6545 if ( CanHaveAttributes() )
6547 m_table
->SetRowAttr(attr
, row
);
6555 void wxGrid::SetColAttr(int col
, wxGridCellAttr
*attr
)
6557 if ( CanHaveAttributes() )
6559 m_table
->SetColAttr(attr
, col
);
6567 void wxGrid::SetCellBackgroundColour( int row
, int col
, const wxColour
& colour
)
6569 if ( CanHaveAttributes() )
6571 wxGridCellAttr
*attr
= GetOrCreateCellAttr(row
, col
);
6572 attr
->SetBackgroundColour(colour
);
6577 void wxGrid::SetCellTextColour( int row
, int col
, const wxColour
& colour
)
6579 if ( CanHaveAttributes() )
6581 wxGridCellAttr
*attr
= GetOrCreateCellAttr(row
, col
);
6582 attr
->SetTextColour(colour
);
6587 void wxGrid::SetCellFont( int row
, int col
, const wxFont
& font
)
6589 if ( CanHaveAttributes() )
6591 wxGridCellAttr
*attr
= GetOrCreateCellAttr(row
, col
);
6592 attr
->SetFont(font
);
6597 void wxGrid::SetCellAlignment( int row
, int col
, int horiz
, int vert
)
6599 if ( CanHaveAttributes() )
6601 wxGridCellAttr
*attr
= GetOrCreateCellAttr(row
, col
);
6602 attr
->SetAlignment(horiz
, vert
);
6607 void wxGrid::SetCellRenderer(int row
, int col
, wxGridCellRenderer
*renderer
)
6609 if ( CanHaveAttributes() )
6611 wxGridCellAttr
*attr
= GetOrCreateCellAttr(row
, col
);
6612 attr
->SetRenderer(renderer
);
6617 void wxGrid::SetCellEditor(int row
, int col
, wxGridCellEditor
* editor
)
6619 if ( CanHaveAttributes() )
6621 wxGridCellAttr
*attr
= GetOrCreateCellAttr(row
, col
);
6622 attr
->SetEditor(editor
);
6627 void wxGrid::SetReadOnly(int row
, int col
, bool isReadOnly
)
6629 if ( CanHaveAttributes() )
6631 wxGridCellAttr
*attr
= GetOrCreateCellAttr(row
, col
);
6632 attr
->SetReadOnly(isReadOnly
);
6637 // ----------------------------------------------------------------------------
6638 // Data type registration
6639 // ----------------------------------------------------------------------------
6641 void wxGrid::RegisterDataType(const wxString
& typeName
,
6642 wxGridCellRenderer
* renderer
,
6643 wxGridCellEditor
* editor
)
6645 m_typeRegistry
->RegisterDataType(typeName
, renderer
, editor
);
6649 wxGridCellEditor
* wxGrid::GetDefaultEditorForCell(int row
, int col
) const
6651 wxString typeName
= m_table
->GetTypeName(row
, col
);
6652 return GetDefaultEditorForType(typeName
);
6655 wxGridCellRenderer
* wxGrid::GetDefaultRendererForCell(int row
, int col
) const
6657 wxString typeName
= m_table
->GetTypeName(row
, col
);
6658 return GetDefaultRendererForType(typeName
);
6662 wxGrid::GetDefaultEditorForType(const wxString
& typeName
) const
6664 int index
= m_typeRegistry
->FindDataType(typeName
);
6666 // Should we force the failure here or let it fallback to string handling???
6667 // wxFAIL_MSG(wxT("Unknown data type name"));
6670 return m_typeRegistry
->GetEditor(index
);
6674 wxGrid::GetDefaultRendererForType(const wxString
& typeName
) const
6676 int index
= m_typeRegistry
->FindDataType(typeName
);
6678 // Should we force the failure here or let it fallback to string handling???
6679 // wxFAIL_MSG(wxT("Unknown data type name"));
6682 return m_typeRegistry
->GetRenderer(index
);
6686 // ----------------------------------------------------------------------------
6688 // ----------------------------------------------------------------------------
6690 void wxGrid::EnableDragRowSize( bool enable
)
6692 m_canDragRowSize
= enable
;
6696 void wxGrid::EnableDragColSize( bool enable
)
6698 m_canDragColSize
= enable
;
6701 void wxGrid::EnableDragGridSize( bool enable
)
6703 m_canDragGridSize
= enable
;
6707 void wxGrid::SetDefaultRowSize( int height
, bool resizeExistingRows
)
6709 m_defaultRowHeight
= wxMax( height
, WXGRID_MIN_ROW_HEIGHT
);
6711 if ( resizeExistingRows
)
6719 void wxGrid::SetRowSize( int row
, int height
)
6721 wxCHECK_RET( row
>= 0 && row
< m_numRows
, _T("invalid row index") );
6723 if ( m_rowHeights
.IsEmpty() )
6725 // need to really create the array
6729 int h
= wxMax( 0, height
);
6730 int diff
= h
- m_rowHeights
[row
];
6732 m_rowHeights
[row
] = h
;
6734 for ( i
= row
; i
< m_numRows
; i
++ )
6736 m_rowBottoms
[i
] += diff
;
6741 void wxGrid::SetDefaultColSize( int width
, bool resizeExistingCols
)
6743 m_defaultColWidth
= wxMax( width
, WXGRID_MIN_COL_WIDTH
);
6745 if ( resizeExistingCols
)
6753 void wxGrid::SetColSize( int col
, int width
)
6755 wxCHECK_RET( col
>= 0 && col
< m_numCols
, _T("invalid column index") );
6757 // should we check that it's bigger than GetColMinimalWidth(col) here?
6759 if ( m_colWidths
.IsEmpty() )
6761 // need to really create the array
6765 int w
= wxMax( 0, width
);
6766 int diff
= w
- m_colWidths
[col
];
6767 m_colWidths
[col
] = w
;
6770 for ( i
= col
; i
< m_numCols
; i
++ )
6772 m_colRights
[i
] += diff
;
6778 void wxGrid::SetColMinimalWidth( int col
, int width
)
6780 m_colMinWidths
.Put(col
, (wxObject
*)width
);
6783 int wxGrid::GetColMinimalWidth(int col
) const
6785 wxObject
*obj
= m_colMinWidths
.Get(m_dragRowOrCol
);
6786 return obj
? (int)obj
: WXGRID_MIN_COL_WIDTH
;
6789 void wxGrid::AutoSizeColumn( int col
, bool setAsMin
)
6791 wxClientDC
dc(m_gridWin
);
6793 wxCoord width
, widthMax
= 0;
6794 for ( int row
= 0; row
< m_numRows
; row
++ )
6796 wxGridCellAttr
* attr
= GetCellAttr(row
, col
);
6797 wxGridCellRenderer
* renderer
= attr
->GetRenderer(this, row
, col
);
6800 width
= renderer
->GetBestSize(*this, *attr
, dc
, row
, col
).x
;
6801 if ( width
> widthMax
)
6810 // now also compare with the column label width
6811 dc
.SetFont( GetLabelFont() );
6812 dc
.GetTextExtent( GetColLabelValue(col
), &width
, NULL
);
6813 if ( width
> widthMax
)
6820 // empty column - give default width (notice that if widthMax is less
6821 // than default width but != 0, it's ok)
6822 widthMax
= m_defaultColWidth
;
6826 // leave some space around text
6830 SetColSize(col
, widthMax
);
6833 SetColMinimalWidth(col
, widthMax
);
6837 void wxGrid::AutoSizeColumns( bool setAsMin
)
6839 for ( int col
= 0; col
< m_numCols
; col
++ )
6841 AutoSizeColumn(col
, setAsMin
);
6846 // ------ cell value accessor functions
6849 void wxGrid::SetCellValue( int row
, int col
, const wxString
& s
)
6853 m_table
->SetValue( row
, col
, s
.c_str() );
6854 if ( !GetBatchCount() )
6856 wxClientDC
dc( m_gridWin
);
6858 DrawCell( dc
, wxGridCellCoords(row
, col
) );
6861 if ( m_currentCellCoords
.GetRow() == row
&&
6862 m_currentCellCoords
.GetCol() == col
&&
6863 IsCellEditControlEnabled())
6865 HideCellEditControl();
6866 ShowCellEditControl(); // will reread data from table
6873 // ------ Block, row and col selection
6876 void wxGrid::SelectRow( int row
, bool addToSelected
)
6880 if ( IsSelection() && addToSelected
)
6883 bool need_refresh
[4];
6887 need_refresh
[3] = FALSE
;
6891 wxCoord oldLeft
= m_selectedTopLeft
.GetCol();
6892 wxCoord oldTop
= m_selectedTopLeft
.GetRow();
6893 wxCoord oldRight
= m_selectedBottomRight
.GetCol();
6894 wxCoord oldBottom
= m_selectedBottomRight
.GetRow();
6898 need_refresh
[0] = TRUE
;
6899 rect
[0] = BlockToDeviceRect( wxGridCellCoords ( row
, 0 ),
6900 wxGridCellCoords ( oldTop
- 1,
6902 m_selectedTopLeft
.SetRow( row
);
6907 need_refresh
[1] = TRUE
;
6908 rect
[1] = BlockToDeviceRect( wxGridCellCoords ( oldTop
, 0 ),
6909 wxGridCellCoords ( oldBottom
,
6912 m_selectedTopLeft
.SetCol( 0 );
6915 if ( oldBottom
< row
)
6917 need_refresh
[2] = TRUE
;
6918 rect
[2] = BlockToDeviceRect( wxGridCellCoords ( oldBottom
+ 1, 0 ),
6919 wxGridCellCoords ( row
,
6921 m_selectedBottomRight
.SetRow( row
);
6924 if ( oldRight
< m_numCols
- 1 )
6926 need_refresh
[3] = TRUE
;
6927 rect
[3] = BlockToDeviceRect( wxGridCellCoords ( oldTop
,
6929 wxGridCellCoords ( oldBottom
,
6931 m_selectedBottomRight
.SetCol( m_numCols
- 1 );
6934 for (i
= 0; i
< 4; i
++ )
6935 if ( need_refresh
[i
] && rect
[i
] != wxGridNoCellRect
)
6936 m_gridWin
->Refresh( FALSE
, &(rect
[i
]) );
6940 r
= SelectionToDeviceRect();
6942 if ( r
!= wxGridNoCellRect
) m_gridWin
->Refresh( FALSE
, &r
);
6944 m_selectedTopLeft
.Set( row
, 0 );
6945 m_selectedBottomRight
.Set( row
, m_numCols
-1 );
6946 r
= SelectionToDeviceRect();
6947 m_gridWin
->Refresh( FALSE
, &r
);
6950 wxGridRangeSelectEvent
gridEvt( GetId(),
6951 wxEVT_GRID_RANGE_SELECT
,
6954 m_selectedBottomRight
);
6956 GetEventHandler()->ProcessEvent(gridEvt
);
6960 void wxGrid::SelectCol( int col
, bool addToSelected
)
6962 if ( IsSelection() && addToSelected
)
6965 bool need_refresh
[4];
6969 need_refresh
[3] = FALSE
;
6972 wxCoord oldLeft
= m_selectedTopLeft
.GetCol();
6973 wxCoord oldTop
= m_selectedTopLeft
.GetRow();
6974 wxCoord oldRight
= m_selectedBottomRight
.GetCol();
6975 wxCoord oldBottom
= m_selectedBottomRight
.GetRow();
6977 if ( oldLeft
> col
)
6979 need_refresh
[0] = TRUE
;
6980 rect
[0] = BlockToDeviceRect( wxGridCellCoords ( 0, col
),
6981 wxGridCellCoords ( m_numRows
- 1,
6983 m_selectedTopLeft
.SetCol( col
);
6988 need_refresh
[1] = TRUE
;
6989 rect
[1] = BlockToDeviceRect( wxGridCellCoords ( 0, oldLeft
),
6990 wxGridCellCoords ( oldTop
- 1,
6992 m_selectedTopLeft
.SetRow( 0 );
6995 if ( oldRight
< col
)
6997 need_refresh
[2] = TRUE
;
6998 rect
[2] = BlockToDeviceRect( wxGridCellCoords ( 0, oldRight
+ 1 ),
6999 wxGridCellCoords ( m_numRows
- 1,
7001 m_selectedBottomRight
.SetCol( col
);
7004 if ( oldBottom
< m_numRows
- 1 )
7006 need_refresh
[3] = TRUE
;
7007 rect
[3] = BlockToDeviceRect( wxGridCellCoords ( oldBottom
+ 1,
7009 wxGridCellCoords ( m_numRows
- 1,
7011 m_selectedBottomRight
.SetRow( m_numRows
- 1 );
7014 for (i
= 0; i
< 4; i
++ )
7015 if ( need_refresh
[i
] && rect
[i
] != wxGridNoCellRect
)
7016 m_gridWin
->Refresh( FALSE
, &(rect
[i
]) );
7022 r
= SelectionToDeviceRect();
7024 if ( r
!= wxGridNoCellRect
) m_gridWin
->Refresh( FALSE
, &r
);
7026 m_selectedTopLeft
.Set( 0, col
);
7027 m_selectedBottomRight
.Set( m_numRows
-1, col
);
7028 r
= SelectionToDeviceRect();
7029 m_gridWin
->Refresh( FALSE
, &r
);
7032 wxGridRangeSelectEvent
gridEvt( GetId(),
7033 wxEVT_GRID_RANGE_SELECT
,
7036 m_selectedBottomRight
);
7038 GetEventHandler()->ProcessEvent(gridEvt
);
7042 void wxGrid::SelectBlock( int topRow
, int leftCol
, int bottomRow
, int rightCol
)
7045 wxGridCellCoords updateTopLeft
, updateBottomRight
;
7047 if ( topRow
> bottomRow
)
7054 if ( leftCol
> rightCol
)
7061 updateTopLeft
= wxGridCellCoords( topRow
, leftCol
);
7062 updateBottomRight
= wxGridCellCoords( bottomRow
, rightCol
);
7064 if ( m_selectedTopLeft
!= updateTopLeft
||
7065 m_selectedBottomRight
!= updateBottomRight
)
7067 // Compute two optimal update rectangles:
7068 // Either one rectangle is a real subset of the
7069 // other, or they are (almost) disjoint!
7071 bool need_refresh
[4];
7075 need_refresh
[3] = FALSE
;
7078 // Store intermediate values
7079 wxCoord oldLeft
= m_selectedTopLeft
.GetCol();
7080 wxCoord oldTop
= m_selectedTopLeft
.GetRow();
7081 wxCoord oldRight
= m_selectedBottomRight
.GetCol();
7082 wxCoord oldBottom
= m_selectedBottomRight
.GetRow();
7084 // Determine the outer/inner coordinates.
7085 if (oldLeft
> leftCol
)
7091 if (oldTop
> topRow
)
7097 if (oldRight
< rightCol
)
7100 oldRight
= rightCol
;
7103 if (oldBottom
< bottomRow
)
7106 oldBottom
= bottomRow
;
7110 // Now, either the stuff marked old is the outer
7111 // rectangle or we don't have a situation where one
7112 // is contained in the other.
7114 if ( oldLeft
< leftCol
)
7116 need_refresh
[0] = TRUE
;
7117 rect
[0] = BlockToDeviceRect( wxGridCellCoords ( oldTop
,
7119 wxGridCellCoords ( oldBottom
,
7123 if ( oldTop
< topRow
)
7125 need_refresh
[1] = TRUE
;
7126 rect
[1] = BlockToDeviceRect( wxGridCellCoords ( oldTop
,
7128 wxGridCellCoords ( topRow
- 1,
7132 if ( oldRight
> rightCol
)
7134 need_refresh
[2] = TRUE
;
7135 rect
[2] = BlockToDeviceRect( wxGridCellCoords ( oldTop
,
7137 wxGridCellCoords ( oldBottom
,
7141 if ( oldBottom
> bottomRow
)
7143 need_refresh
[3] = TRUE
;
7144 rect
[3] = BlockToDeviceRect( wxGridCellCoords ( bottomRow
+ 1,
7146 wxGridCellCoords ( oldBottom
,
7152 m_selectedTopLeft
= updateTopLeft
;
7153 m_selectedBottomRight
= updateBottomRight
;
7155 // various Refresh() calls
7156 for (i
= 0; i
< 4; i
++ )
7157 if ( need_refresh
[i
] && rect
[i
] != wxGridNoCellRect
)
7158 m_gridWin
->Refresh( FALSE
, &(rect
[i
]) );
7161 // only generate an event if the block is not being selected by
7162 // dragging the mouse (in which case the event will be generated in
7163 // the mouse event handler)
7164 if ( !m_isDragging
)
7166 wxGridRangeSelectEvent
gridEvt( GetId(),
7167 wxEVT_GRID_RANGE_SELECT
,
7170 m_selectedBottomRight
);
7172 GetEventHandler()->ProcessEvent(gridEvt
);
7176 void wxGrid::SelectAll()
7178 m_selectedTopLeft
.Set( 0, 0 );
7179 m_selectedBottomRight
.Set( m_numRows
-1, m_numCols
-1 );
7181 m_gridWin
->Refresh();
7185 void wxGrid::ClearSelection()
7187 m_selectedTopLeft
= wxGridNoCellCoords
;
7188 m_selectedBottomRight
= wxGridNoCellCoords
;
7192 // This function returns the rectangle that encloses the given block
7193 // in device coords clipped to the client size of the grid window.
7195 wxRect
wxGrid::BlockToDeviceRect( const wxGridCellCoords
&topLeft
,
7196 const wxGridCellCoords
&bottomRight
)
7198 wxRect
rect( wxGridNoCellRect
);
7201 cellRect
= CellToRect( topLeft
);
7202 if ( cellRect
!= wxGridNoCellRect
)
7208 rect
= wxRect( 0, 0, 0, 0 );
7211 cellRect
= CellToRect( bottomRight
);
7212 if ( cellRect
!= wxGridNoCellRect
)
7218 return wxGridNoCellRect
;
7221 // convert to scrolled coords
7223 int left
, top
, right
, bottom
;
7224 CalcScrolledPosition( rect
.GetLeft(), rect
.GetTop(), &left
, &top
);
7225 CalcScrolledPosition( rect
.GetRight(), rect
.GetBottom(), &right
, &bottom
);
7228 m_gridWin
->GetClientSize( &cw
, &ch
);
7230 rect
.SetLeft( wxMax(0, left
) );
7231 rect
.SetTop( wxMax(0, top
) );
7232 rect
.SetRight( wxMin(cw
, right
) );
7233 rect
.SetBottom( wxMin(ch
, bottom
) );
7241 // ------ Grid event classes
7244 IMPLEMENT_DYNAMIC_CLASS( wxGridEvent
, wxEvent
)
7246 wxGridEvent::wxGridEvent( int id
, wxEventType type
, wxObject
* obj
,
7247 int row
, int col
, int x
, int y
,
7248 bool control
, bool shift
, bool alt
, bool meta
)
7249 : wxNotifyEvent( type
, id
)
7255 m_control
= control
;
7260 SetEventObject(obj
);
7264 IMPLEMENT_DYNAMIC_CLASS( wxGridSizeEvent
, wxEvent
)
7266 wxGridSizeEvent::wxGridSizeEvent( int id
, wxEventType type
, wxObject
* obj
,
7267 int rowOrCol
, int x
, int y
,
7268 bool control
, bool shift
, bool alt
, bool meta
)
7269 : wxNotifyEvent( type
, id
)
7271 m_rowOrCol
= rowOrCol
;
7274 m_control
= control
;
7279 SetEventObject(obj
);
7283 IMPLEMENT_DYNAMIC_CLASS( wxGridRangeSelectEvent
, wxEvent
)
7285 wxGridRangeSelectEvent::wxGridRangeSelectEvent(int id
, wxEventType type
, wxObject
* obj
,
7286 const wxGridCellCoords
& topLeft
,
7287 const wxGridCellCoords
& bottomRight
,
7288 bool control
, bool shift
, bool alt
, bool meta
)
7289 : wxNotifyEvent( type
, id
)
7291 m_topLeft
= topLeft
;
7292 m_bottomRight
= bottomRight
;
7293 m_control
= control
;
7298 SetEventObject(obj
);
7302 #endif // ifndef wxUSE_NEW_GRID