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/valtext.h"
47 #include "wx/textfile.h"
48 #include "wx/spinctrl.h"
52 // ----------------------------------------------------------------------------
54 // ----------------------------------------------------------------------------
56 WX_DEFINE_ARRAY(wxGridCellAttr
*, wxArrayAttrs
);
58 struct wxGridCellWithAttr
60 wxGridCellWithAttr(int row
, int col
, wxGridCellAttr
*attr_
)
61 : coords(row
, col
), attr(attr_
)
70 wxGridCellCoords coords
;
74 WX_DECLARE_OBJARRAY(wxGridCellWithAttr
, wxGridCellWithAttrArray
);
76 #include "wx/arrimpl.cpp"
78 WX_DEFINE_OBJARRAY(wxGridCellCoordsArray
)
79 WX_DEFINE_OBJARRAY(wxGridCellWithAttrArray
)
81 // ----------------------------------------------------------------------------
83 // ----------------------------------------------------------------------------
85 class WXDLLEXPORT wxGridRowLabelWindow
: public wxWindow
88 wxGridRowLabelWindow() { m_owner
= (wxGrid
*)NULL
; }
89 wxGridRowLabelWindow( wxGrid
*parent
, wxWindowID id
,
90 const wxPoint
&pos
, const wxSize
&size
);
95 void OnPaint( wxPaintEvent
& event
);
96 void OnMouseEvent( wxMouseEvent
& event
);
97 void OnKeyDown( wxKeyEvent
& event
);
99 DECLARE_DYNAMIC_CLASS(wxGridRowLabelWindow
)
100 DECLARE_EVENT_TABLE()
104 class WXDLLEXPORT wxGridColLabelWindow
: public wxWindow
107 wxGridColLabelWindow() { m_owner
= (wxGrid
*)NULL
; }
108 wxGridColLabelWindow( wxGrid
*parent
, wxWindowID id
,
109 const wxPoint
&pos
, const wxSize
&size
);
114 void OnPaint( wxPaintEvent
&event
);
115 void OnMouseEvent( wxMouseEvent
& event
);
116 void OnKeyDown( wxKeyEvent
& event
);
118 DECLARE_DYNAMIC_CLASS(wxGridColLabelWindow
)
119 DECLARE_EVENT_TABLE()
123 class WXDLLEXPORT wxGridCornerLabelWindow
: public wxWindow
126 wxGridCornerLabelWindow() { m_owner
= (wxGrid
*)NULL
; }
127 wxGridCornerLabelWindow( wxGrid
*parent
, wxWindowID id
,
128 const wxPoint
&pos
, const wxSize
&size
);
133 void OnMouseEvent( wxMouseEvent
& event
);
134 void OnKeyDown( wxKeyEvent
& event
);
135 void OnPaint( wxPaintEvent
& event
);
137 DECLARE_DYNAMIC_CLASS(wxGridCornerLabelWindow
)
138 DECLARE_EVENT_TABLE()
141 class WXDLLEXPORT wxGridWindow
: public wxPanel
146 m_owner
= (wxGrid
*)NULL
;
147 m_rowLabelWin
= (wxGridRowLabelWindow
*)NULL
;
148 m_colLabelWin
= (wxGridColLabelWindow
*)NULL
;
151 wxGridWindow( wxGrid
*parent
,
152 wxGridRowLabelWindow
*rowLblWin
,
153 wxGridColLabelWindow
*colLblWin
,
154 wxWindowID id
, const wxPoint
&pos
, const wxSize
&size
);
157 void ScrollWindow( int dx
, int dy
, const wxRect
*rect
);
161 wxGridRowLabelWindow
*m_rowLabelWin
;
162 wxGridColLabelWindow
*m_colLabelWin
;
164 void OnPaint( wxPaintEvent
&event
);
165 void OnMouseEvent( wxMouseEvent
& event
);
166 void OnKeyDown( wxKeyEvent
& );
167 void OnEraseBackground( wxEraseEvent
& );
170 DECLARE_DYNAMIC_CLASS(wxGridWindow
)
171 DECLARE_EVENT_TABLE()
176 class wxGridCellEditorEvtHandler
: public wxEvtHandler
179 wxGridCellEditorEvtHandler()
180 : m_grid(0), m_editor(0)
182 wxGridCellEditorEvtHandler(wxGrid
* grid
, wxGridCellEditor
* editor
)
183 : m_grid(grid
), m_editor(editor
)
186 void OnKeyDown(wxKeyEvent
& event
);
187 void OnChar(wxKeyEvent
& event
);
191 wxGridCellEditor
* m_editor
;
192 DECLARE_DYNAMIC_CLASS(wxGridCellEditorEvtHandler
)
193 DECLARE_EVENT_TABLE()
197 IMPLEMENT_DYNAMIC_CLASS( wxGridCellEditorEvtHandler
, wxEvtHandler
)
198 BEGIN_EVENT_TABLE( wxGridCellEditorEvtHandler
, wxEvtHandler
)
199 EVT_KEY_DOWN( wxGridCellEditorEvtHandler::OnKeyDown
)
200 EVT_CHAR( wxGridCellEditorEvtHandler::OnChar
)
205 // ----------------------------------------------------------------------------
206 // the internal data representation used by wxGridCellAttrProvider
207 // ----------------------------------------------------------------------------
209 // this class stores attributes set for cells
210 class WXDLLEXPORT wxGridCellAttrData
213 void SetAttr(wxGridCellAttr
*attr
, int row
, int col
);
214 wxGridCellAttr
*GetAttr(int row
, int col
) const;
215 void UpdateAttrRows( size_t pos
, int numRows
);
216 void UpdateAttrCols( size_t pos
, int numCols
);
219 // searches for the attr for given cell, returns wxNOT_FOUND if not found
220 int FindIndex(int row
, int col
) const;
222 wxGridCellWithAttrArray m_attrs
;
225 // this class stores attributes set for rows or columns
226 class WXDLLEXPORT wxGridRowOrColAttrData
229 // empty ctor to suppress warnings
230 wxGridRowOrColAttrData() { }
231 ~wxGridRowOrColAttrData();
233 void SetAttr(wxGridCellAttr
*attr
, int rowOrCol
);
234 wxGridCellAttr
*GetAttr(int rowOrCol
) const;
235 void UpdateAttrRowsOrCols( size_t pos
, int numRowsOrCols
);
238 wxArrayInt m_rowsOrCols
;
239 wxArrayAttrs m_attrs
;
242 // NB: this is just a wrapper around 3 objects: one which stores cell
243 // attributes, and 2 others for row/col ones
244 class WXDLLEXPORT wxGridCellAttrProviderData
247 wxGridCellAttrData m_cellAttrs
;
248 wxGridRowOrColAttrData m_rowAttrs
,
253 // ----------------------------------------------------------------------------
254 // data structures used for the data type registry
255 // ----------------------------------------------------------------------------
257 struct wxGridDataTypeInfo
{
258 wxGridDataTypeInfo(const wxString
& typeName
,
259 wxGridCellRenderer
* renderer
,
260 wxGridCellEditor
* editor
)
261 : m_typeName(typeName
), m_renderer(renderer
), m_editor(editor
)
264 ~wxGridDataTypeInfo() { delete m_renderer
; delete m_editor
; }
267 wxGridCellRenderer
* m_renderer
;
268 wxGridCellEditor
* m_editor
;
272 WX_DEFINE_ARRAY(wxGridDataTypeInfo
*, wxGridDataTypeInfoArray
);
275 class WXDLLEXPORT wxGridTypeRegistry
{
277 ~wxGridTypeRegistry();
278 void RegisterDataType(const wxString
& typeName
,
279 wxGridCellRenderer
* renderer
,
280 wxGridCellEditor
* editor
);
281 int FindDataType(const wxString
& typeName
);
282 wxGridCellRenderer
* GetRenderer(int index
);
283 wxGridCellEditor
* GetEditor(int index
);
286 wxGridDataTypeInfoArray m_typeinfo
;
292 // ----------------------------------------------------------------------------
293 // conditional compilation
294 // ----------------------------------------------------------------------------
296 #ifndef WXGRID_DRAW_LINES
297 #define WXGRID_DRAW_LINES 1
300 // ----------------------------------------------------------------------------
302 // ----------------------------------------------------------------------------
304 //#define DEBUG_ATTR_CACHE
305 #ifdef DEBUG_ATTR_CACHE
306 static size_t gs_nAttrCacheHits
= 0;
307 static size_t gs_nAttrCacheMisses
= 0;
308 #endif // DEBUG_ATTR_CACHE
310 // ----------------------------------------------------------------------------
312 // ----------------------------------------------------------------------------
314 wxGridCellCoords
wxGridNoCellCoords( -1, -1 );
315 wxRect
wxGridNoCellRect( -1, -1, -1, -1 );
318 // TODO: fixed so far - make configurable later (and also different for x/y)
319 static const size_t GRID_SCROLL_LINE
= 10;
321 // the size of hash tables used a bit everywhere (the max number of elements
322 // in these hash tables is the number of rows/columns)
323 static const int GRID_HASH_SIZE
= 100;
325 // ============================================================================
327 // ============================================================================
329 // ----------------------------------------------------------------------------
331 // ----------------------------------------------------------------------------
333 wxGridCellEditor::wxGridCellEditor()
339 wxGridCellEditor::~wxGridCellEditor()
344 void wxGridCellEditor::Create(wxWindow
* WXUNUSED(parent
),
345 wxWindowID
WXUNUSED(id
),
346 wxEvtHandler
* evtHandler
)
349 m_control
->PushEventHandler(evtHandler
);
352 void wxGridCellEditor::PaintBackground(const wxRect
& rectCell
,
353 wxGridCellAttr
*attr
)
355 // erase the background because we might not fill the cell
356 wxClientDC
dc(m_control
->GetParent());
357 dc
.SetPen(*wxTRANSPARENT_PEN
);
358 dc
.SetBrush(wxBrush(attr
->GetBackgroundColour(), wxSOLID
));
359 dc
.DrawRectangle(rectCell
);
361 // redraw the control we just painted over
362 m_control
->Refresh();
365 void wxGridCellEditor::Destroy()
369 m_control
->Destroy();
374 void wxGridCellEditor::Show(bool show
, wxGridCellAttr
*attr
)
376 wxASSERT_MSG(m_control
,
377 wxT("The wxGridCellEditor must be Created first!"));
378 m_control
->Show(show
);
382 // set the colours/fonts if we have any
385 m_colFgOld
= m_control
->GetForegroundColour();
386 m_control
->SetForegroundColour(attr
->GetTextColour());
388 m_colBgOld
= m_control
->GetBackgroundColour();
389 m_control
->SetBackgroundColour(attr
->GetBackgroundColour());
391 m_fontOld
= m_control
->GetFont();
392 m_control
->SetFont(attr
->GetFont());
394 // can't do anything more in the base class version, the other
395 // attributes may only be used by the derived classes
400 // restore the standard colours fonts
401 if ( m_colFgOld
.Ok() )
403 m_control
->SetForegroundColour(m_colFgOld
);
404 m_colFgOld
= wxNullColour
;
407 if ( m_colBgOld
.Ok() )
409 m_control
->SetBackgroundColour(m_colBgOld
);
410 m_colBgOld
= wxNullColour
;
413 if ( m_fontOld
.Ok() )
415 m_control
->SetFont(m_fontOld
);
416 m_fontOld
= wxNullFont
;
421 void wxGridCellEditor::SetSize(const wxRect
& rect
)
423 wxASSERT_MSG(m_control
,
424 wxT("The wxGridCellEditor must be Created first!"));
425 m_control
->SetSize(rect
);
428 void wxGridCellEditor::HandleReturn(wxKeyEvent
& event
)
434 void wxGridCellEditor::StartingKey(wxKeyEvent
& event
)
439 void wxGridCellEditor::StartingClick()
443 // ----------------------------------------------------------------------------
444 // wxGridCellTextEditor
445 // ----------------------------------------------------------------------------
447 wxGridCellTextEditor::wxGridCellTextEditor()
451 void wxGridCellTextEditor::Create(wxWindow
* parent
,
453 wxEvtHandler
* evtHandler
)
455 m_control
= new wxTextCtrl(parent
, id
, wxEmptyString
,
456 wxDefaultPosition
, wxDefaultSize
457 #if defined(__WXMSW__)
458 , wxTE_MULTILINE
| wxTE_NO_VSCROLL
// necessary ???
462 wxGridCellEditor::Create(parent
, id
, evtHandler
);
465 void wxGridCellTextEditor::PaintBackground(const wxRect
& WXUNUSED(rectCell
),
466 wxGridCellAttr
* WXUNUSED(attr
))
468 // as we fill the entire client area, don't do anything here to minimize
472 void wxGridCellTextEditor::SetSize(const wxRect
& rectOrig
)
474 wxRect
rect(rectOrig
);
476 // Make the edit control large enough to allow for internal
479 // TODO: remove this if the text ctrl sizing is improved esp. for
482 #if defined(__WXGTK__)
483 rect
.Inflate(rect
.x
? 1 : 0, rect
.y
? 1 : 0);
485 int extra
= row
&& col
? 2 : 1;
486 #if defined(__WXMOTIF__)
489 rect
.SetLeft( wxMax(0, rect
.x
- extra
) );
490 rect
.SetTop( wxMax(0, rect
.y
- extra
) );
491 rect
.SetRight( rect
.GetRight() + 2*extra
);
492 rect
.SetBottom( rect
.GetBottom() + 2*extra
);
495 wxGridCellEditor::SetSize(rect
);
498 void wxGridCellTextEditor::BeginEdit(int row
, int col
, wxGrid
* grid
)
500 wxASSERT_MSG(m_control
,
501 wxT("The wxGridCellEditor must be Created first!"));
503 m_startValue
= grid
->GetTable()->GetValue(row
, col
);
505 DoBeginEdit(m_startValue
);
508 void wxGridCellTextEditor::DoBeginEdit(const wxString
& startValue
)
510 Text()->SetValue(startValue
);
511 Text()->SetInsertionPointEnd();
515 bool wxGridCellTextEditor::EndEdit(int row
, int col
, bool saveValue
,
518 wxASSERT_MSG(m_control
,
519 wxT("The wxGridCellEditor must be Created first!"));
521 bool changed
= FALSE
;
522 wxString value
= Text()->GetValue();
523 if (value
!= m_startValue
)
527 grid
->GetTable()->SetValue(row
, col
, value
);
529 m_startValue
= wxEmptyString
;
530 Text()->SetValue(m_startValue
);
536 void wxGridCellTextEditor::Reset()
538 wxASSERT_MSG(m_control
,
539 wxT("The wxGridCellEditor must be Created first!"));
541 DoReset(m_startValue
);
544 void wxGridCellTextEditor::DoReset(const wxString
& startValue
)
546 Text()->SetValue(startValue
);
547 Text()->SetInsertionPointEnd();
550 void wxGridCellTextEditor::StartingKey(wxKeyEvent
& event
)
552 if ( !event
.AltDown() && !event
.MetaDown() && !event
.ControlDown() )
554 // insert the key in the control
555 long keycode
= event
.KeyCode();
556 if ( isprint(keycode
) )
558 // FIXME this is not going to work for non letters...
559 if ( !event
.ShiftDown() )
561 keycode
= tolower(keycode
);
564 Text()->AppendText((wxChar
)keycode
);
574 void wxGridCellTextEditor::HandleReturn(wxKeyEvent
& event
)
576 #if defined(__WXMOTIF__) || defined(__WXGTK__)
577 // wxMotif needs a little extra help...
578 int pos
= Text()->GetInsertionPoint();
579 wxString
s( Text()->GetValue() );
580 s
= s
.Left(pos
) + "\n" + s
.Mid(pos
);
582 Text()->SetInsertionPoint( pos
);
584 // the other ports can handle a Return key press
590 // ----------------------------------------------------------------------------
591 // wxGridCellNumberEditor
592 // ----------------------------------------------------------------------------
594 wxGridCellNumberEditor::wxGridCellNumberEditor(int min
, int max
)
600 void wxGridCellNumberEditor::Create(wxWindow
* parent
,
602 wxEvtHandler
* evtHandler
)
606 // create a spin ctrl
607 m_control
= new wxSpinCtrl(parent
, -1, wxEmptyString
,
608 wxDefaultPosition
, wxDefaultSize
,
612 wxGridCellEditor::Create(parent
, id
, evtHandler
);
616 // just a text control
617 wxGridCellTextEditor::Create(parent
, id
, evtHandler
);
620 Text()->SetValidator(new wxTextValidator(wxFILTER_NUMERIC
));
621 #endif // wxUSE_VALIDATORS
625 void wxGridCellNumberEditor::BeginEdit(int row
, int col
, wxGrid
* grid
)
627 // first get the value
628 wxGridTableBase
*table
= grid
->GetTable();
629 if ( table
->CanGetValueAs(row
, col
, wxGRID_VALUE_NUMBER
) )
631 m_valueOld
= table
->GetValueAsLong(row
, col
);
635 wxFAIL_MSG( _T("this cell doesn't have numeric value") );
642 Spin()->SetValue(m_valueOld
);
646 DoBeginEdit(GetString());
650 bool wxGridCellNumberEditor::EndEdit(int row
, int col
, bool saveValue
,
658 value
= Spin()->GetValue();
659 changed
= value
!= m_valueOld
;
663 changed
= Text()->GetValue().ToLong(&value
) && (value
!= m_valueOld
);
668 grid
->GetTable()->SetValueAsLong(row
, col
, value
);
674 void wxGridCellNumberEditor::Reset()
678 Spin()->SetValue(m_valueOld
);
682 DoReset(GetString());
686 void wxGridCellNumberEditor::StartingKey(wxKeyEvent
& event
)
690 long keycode
= event
.KeyCode();
691 if ( isdigit(keycode
) || keycode
== '+' || keycode
== '-' )
693 wxGridCellTextEditor::StartingKey(event
);
702 // ----------------------------------------------------------------------------
703 // wxGridCellFloatEditor
704 // ----------------------------------------------------------------------------
706 void wxGridCellFloatEditor::Create(wxWindow
* parent
,
708 wxEvtHandler
* evtHandler
)
710 wxGridCellTextEditor::Create(parent
, id
, evtHandler
);
713 Text()->SetValidator(new wxTextValidator(wxFILTER_NUMERIC
));
714 #endif // wxUSE_VALIDATORS
717 void wxGridCellFloatEditor::BeginEdit(int row
, int col
, wxGrid
* grid
)
719 // first get the value
720 wxGridTableBase
*table
= grid
->GetTable();
721 if ( table
->CanGetValueAs(row
, col
, wxGRID_VALUE_FLOAT
) )
723 m_valueOld
= table
->GetValueAsDouble(row
, col
);
727 wxFAIL_MSG( _T("this cell doesn't have float value") );
732 DoBeginEdit(GetString());
735 bool wxGridCellFloatEditor::EndEdit(int row
, int col
, bool saveValue
,
739 if ( Text()->GetValue().ToDouble(&value
) && (value
!= m_valueOld
) )
741 grid
->GetTable()->SetValueAsDouble(row
, col
, value
);
751 void wxGridCellFloatEditor::Reset()
753 DoReset(GetString());
756 void wxGridCellFloatEditor::StartingKey(wxKeyEvent
& event
)
758 long keycode
= event
.KeyCode();
759 if ( isdigit(keycode
) ||
760 keycode
== '+' || keycode
== '-' || keycode
== '.' )
762 wxGridCellTextEditor::StartingKey(event
);
771 // ----------------------------------------------------------------------------
772 // wxGridCellBoolEditor
773 // ----------------------------------------------------------------------------
775 void wxGridCellBoolEditor::Create(wxWindow
* parent
,
777 wxEvtHandler
* evtHandler
)
779 m_control
= new wxCheckBox(parent
, id
, wxEmptyString
,
780 wxDefaultPosition
, wxDefaultSize
,
783 wxGridCellEditor::Create(parent
, id
, evtHandler
);
786 void wxGridCellBoolEditor::SetSize(const wxRect
& r
)
788 // position it in the centre of the rectangle (TODO: support alignment?)
790 m_control
->GetSize(&w
, &h
);
792 // the checkbox without label still has some space to the right in wxGTK,
793 // so shift it to the right
798 m_control
->Move(r
.x
+ r
.width
/2 - w
/2, r
.y
+ r
.height
/2 - h
/2);
801 void wxGridCellBoolEditor::Show(bool show
, wxGridCellAttr
*attr
)
803 m_control
->Show(show
);
807 wxColour colBg
= attr
? attr
->GetBackgroundColour() : *wxLIGHT_GREY
;
808 CBox()->SetBackgroundColour(colBg
);
812 void wxGridCellBoolEditor::BeginEdit(int row
, int col
, wxGrid
* grid
)
814 wxASSERT_MSG(m_control
,
815 wxT("The wxGridCellEditor must be Created first!"));
817 if (grid
->GetTable()->CanGetValueAs(row
, col
, wxT("bool")))
818 m_startValue
= grid
->GetTable()->GetValueAsBool(row
, col
);
820 m_startValue
= !!grid
->GetTable()->GetValue(row
, col
);
821 CBox()->SetValue(m_startValue
);
825 bool wxGridCellBoolEditor::EndEdit(int row
, int col
,
829 wxASSERT_MSG(m_control
,
830 wxT("The wxGridCellEditor must be Created first!"));
832 bool changed
= FALSE
;
833 bool value
= CBox()->GetValue();
834 if ( value
!= m_startValue
)
839 if (grid
->GetTable()->CanGetValueAs(row
, col
, wxT("bool")))
840 grid
->GetTable()->SetValueAsBool(row
, col
, value
);
842 grid
->GetTable()->SetValue(row
, col
, value
? _T("1") : wxEmptyString
);
848 void wxGridCellBoolEditor::Reset()
850 wxASSERT_MSG(m_control
,
851 wxT("The wxGridCellEditor must be Created first!"));
853 CBox()->SetValue(m_startValue
);
856 void wxGridCellBoolEditor::StartingClick()
858 CBox()->SetValue(!CBox()->GetValue());
861 // ----------------------------------------------------------------------------
862 // wxGridCellEditorEvtHandler
863 // ----------------------------------------------------------------------------
865 void wxGridCellEditorEvtHandler::OnKeyDown(wxKeyEvent
& event
)
867 switch ( event
.KeyCode() )
871 m_grid
->DisableCellEditControl();
875 event
.Skip( m_grid
->ProcessEvent( event
) );
879 if (!m_grid
->ProcessEvent(event
))
880 m_editor
->HandleReturn(event
);
889 void wxGridCellEditorEvtHandler::OnChar(wxKeyEvent
& event
)
891 switch ( event
.KeyCode() )
903 // ============================================================================
905 // ============================================================================
907 // ----------------------------------------------------------------------------
908 // wxGridCellRenderer
909 // ----------------------------------------------------------------------------
911 void wxGridCellRenderer::Draw(wxGrid
& grid
,
912 wxGridCellAttr
& attr
,
918 dc
.SetBackgroundMode( wxSOLID
);
922 dc
.SetBrush( wxBrush(grid
.GetSelectionBackground(), wxSOLID
) );
926 dc
.SetBrush( wxBrush(attr
.GetBackgroundColour(), wxSOLID
) );
929 dc
.SetPen( *wxTRANSPARENT_PEN
);
930 dc
.DrawRectangle(rect
);
933 wxGridCellRenderer::~wxGridCellRenderer()
937 // ----------------------------------------------------------------------------
938 // wxGridCellStringRenderer
939 // ----------------------------------------------------------------------------
941 void wxGridCellStringRenderer::SetTextColoursAndFont(wxGrid
& grid
,
942 wxGridCellAttr
& attr
,
946 dc
.SetBackgroundMode( wxTRANSPARENT
);
948 // TODO some special colours for attr.IsReadOnly() case?
952 dc
.SetTextBackground( grid
.GetSelectionBackground() );
953 dc
.SetTextForeground( grid
.GetSelectionForeground() );
957 dc
.SetTextBackground( attr
.GetBackgroundColour() );
958 dc
.SetTextForeground( attr
.GetTextColour() );
961 dc
.SetFont( attr
.GetFont() );
964 void wxGridCellStringRenderer::Draw(wxGrid
& grid
,
965 wxGridCellAttr
& attr
,
967 const wxRect
& rectCell
,
971 wxGridCellRenderer::Draw(grid
, attr
, dc
, rectCell
, row
, col
, isSelected
);
973 // now we only have to draw the text
974 SetTextColoursAndFont(grid
, attr
, dc
, isSelected
);
977 attr
.GetAlignment(&hAlign
, &vAlign
);
979 wxRect rect
= rectCell
;
982 grid
.DrawTextRectangle(dc
, grid
.GetCellValue(row
, col
),
983 rect
, hAlign
, vAlign
);
986 void wxGridCellNumberRenderer::Draw(wxGrid
& grid
,
987 wxGridCellAttr
& attr
,
989 const wxRect
& rectCell
,
993 wxGridCellRenderer::Draw(grid
, attr
, dc
, rectCell
, row
, col
, isSelected
);
995 SetTextColoursAndFont(grid
, attr
, dc
, isSelected
);
997 // draw the text right aligned by default
999 attr
.GetAlignment(&hAlign
, &vAlign
);
1002 wxRect rect
= rectCell
;
1005 wxGridTableBase
*table
= grid
.GetTable();
1007 if ( table
->CanGetValueAs(row
, col
, wxGRID_VALUE_NUMBER
) )
1009 text
.Printf(_T("%ld"), table
->GetValueAsLong(row
, col
));
1011 //else: leave the string empty or put 0 into it?
1013 grid
.DrawTextRectangle(dc
, text
, rect
, hAlign
, vAlign
);
1016 // ----------------------------------------------------------------------------
1017 // wxGridCellFloatRenderer
1018 // ----------------------------------------------------------------------------
1020 wxGridCellFloatRenderer::wxGridCellFloatRenderer(int width
, int precision
)
1023 SetPrecision(precision
);
1026 void wxGridCellFloatRenderer::Draw(wxGrid
& grid
,
1027 wxGridCellAttr
& attr
,
1029 const wxRect
& rectCell
,
1033 wxGridCellRenderer::Draw(grid
, attr
, dc
, rectCell
, row
, col
, isSelected
);
1035 SetTextColoursAndFont(grid
, attr
, dc
, isSelected
);
1037 // draw the text right aligned by default
1039 attr
.GetAlignment(&hAlign
, &vAlign
);
1042 wxRect rect
= rectCell
;
1045 wxGridTableBase
*table
= grid
.GetTable();
1047 if ( table
->CanGetValueAs(row
, col
, wxGRID_VALUE_FLOAT
) )
1051 m_format
.Printf(_T("%%%d.%d%%f"), m_width
, m_precision
);
1054 text
.Printf(m_format
, table
->GetValueAsDouble(row
, col
));
1056 //else: leave the string empty or put 0 into it?
1058 grid
.DrawTextRectangle(dc
, text
, rect
, hAlign
, vAlign
);
1061 // ----------------------------------------------------------------------------
1062 // wxGridCellBoolRenderer
1063 // ----------------------------------------------------------------------------
1065 void wxGridCellBoolRenderer::Draw(wxGrid
& grid
,
1066 wxGridCellAttr
& attr
,
1072 wxGridCellRenderer::Draw(grid
, attr
, dc
, rect
, row
, col
, isSelected
);
1074 // between checkmark and box
1075 static const wxCoord margin
= 4;
1077 // get checkbox size
1078 static wxCoord s_checkSize
= 0;
1079 if ( s_checkSize
== 0 )
1081 // compute it only once (no locks for MT safeness in GUI thread...)
1082 wxCheckBox
*checkbox
= new wxCheckBox(&grid
, -1, wxEmptyString
);
1083 wxSize size
= checkbox
->GetBestSize();
1084 s_checkSize
= size
.y
+ margin
;
1086 // FIXME wxGTK::wxCheckBox::GetBestSize() is really weird...
1088 s_checkSize
-= size
.y
/ 2;
1094 // draw a check mark in the centre (ignoring alignment - TODO)
1096 rectMark
.x
= rect
.x
+ rect
.width
/2 - s_checkSize
/2;
1097 rectMark
.y
= rect
.y
+ rect
.height
/2 - s_checkSize
/2;
1098 rectMark
.width
= rectMark
.height
= s_checkSize
;
1100 dc
.SetBrush(*wxTRANSPARENT_BRUSH
);
1101 dc
.SetPen(wxPen(attr
.GetTextColour(), 1, wxSOLID
));
1102 dc
.DrawRectangle(rectMark
);
1104 rectMark
.Inflate(-margin
);
1107 if (grid
.GetTable()->CanGetValueAs(row
, col
, wxT("bool")))
1108 value
= grid
.GetTable()->GetValueAsBool(row
, col
);
1110 value
= !!grid
.GetTable()->GetValue(row
, col
);
1114 dc
.SetTextForeground(attr
.GetTextColour());
1115 dc
.DrawCheckMark(rectMark
);
1119 // ----------------------------------------------------------------------------
1121 // ----------------------------------------------------------------------------
1123 const wxColour
& wxGridCellAttr::GetTextColour() const
1125 if (HasTextColour())
1129 else if (m_defGridAttr
!= this)
1131 return m_defGridAttr
->GetTextColour();
1135 wxFAIL_MSG(wxT("Missing default cell attribute"));
1136 return wxNullColour
;
1141 const wxColour
& wxGridCellAttr::GetBackgroundColour() const
1143 if (HasBackgroundColour())
1145 else if (m_defGridAttr
!= this)
1146 return m_defGridAttr
->GetBackgroundColour();
1149 wxFAIL_MSG(wxT("Missing default cell attribute"));
1150 return wxNullColour
;
1155 const wxFont
& wxGridCellAttr::GetFont() const
1159 else if (m_defGridAttr
!= this)
1160 return m_defGridAttr
->GetFont();
1163 wxFAIL_MSG(wxT("Missing default cell attribute"));
1169 void wxGridCellAttr::GetAlignment(int *hAlign
, int *vAlign
) const
1173 if ( hAlign
) *hAlign
= m_hAlign
;
1174 if ( vAlign
) *vAlign
= m_vAlign
;
1176 else if (m_defGridAttr
!= this)
1177 m_defGridAttr
->GetAlignment(hAlign
, vAlign
);
1180 wxFAIL_MSG(wxT("Missing default cell attribute"));
1185 // GetRenderer and GetEditor use a slightly different decision path about
1186 // which to use. If a non-default attr object has one then it is used,
1187 // otherwise the default editor or renderer passed in is used. It should be
1188 // the default for the data type of the cell. If it is NULL (because the
1189 // table has a type that the grid does not have in its registry,) then the
1190 // grid's default editor or renderer is used.
1192 wxGridCellRenderer
* wxGridCellAttr::GetRenderer(wxGridCellRenderer
* def
) const
1194 if ((m_defGridAttr
!= this || def
== NULL
) && HasRenderer())
1198 else if (m_defGridAttr
!= this)
1199 return m_defGridAttr
->GetRenderer(NULL
);
1202 wxFAIL_MSG(wxT("Missing default cell attribute"));
1207 wxGridCellEditor
* wxGridCellAttr::GetEditor(wxGridCellEditor
* def
) const
1209 if ((m_defGridAttr
!= this || def
== NULL
) && HasEditor())
1213 else if (m_defGridAttr
!= this)
1214 return m_defGridAttr
->GetEditor(NULL
);
1217 wxFAIL_MSG(wxT("Missing default cell attribute"));
1222 // ----------------------------------------------------------------------------
1223 // wxGridCellAttrData
1224 // ----------------------------------------------------------------------------
1226 void wxGridCellAttrData::SetAttr(wxGridCellAttr
*attr
, int row
, int col
)
1228 int n
= FindIndex(row
, col
);
1229 if ( n
== wxNOT_FOUND
)
1231 // add the attribute
1232 m_attrs
.Add(new wxGridCellWithAttr(row
, col
, attr
));
1238 // change the attribute
1239 m_attrs
[(size_t)n
].attr
= attr
;
1243 // remove this attribute
1244 m_attrs
.RemoveAt((size_t)n
);
1249 wxGridCellAttr
*wxGridCellAttrData::GetAttr(int row
, int col
) const
1251 wxGridCellAttr
*attr
= (wxGridCellAttr
*)NULL
;
1253 int n
= FindIndex(row
, col
);
1254 if ( n
!= wxNOT_FOUND
)
1256 attr
= m_attrs
[(size_t)n
].attr
;
1263 void wxGridCellAttrData::UpdateAttrRows( size_t pos
, int numRows
)
1265 size_t count
= m_attrs
.GetCount();
1266 for ( size_t n
= 0; n
< count
; n
++ )
1268 wxGridCellCoords
& coords
= m_attrs
[n
].coords
;
1269 wxCoord row
= coords
.GetRow();
1270 if ((size_t)row
>= pos
)
1274 // If rows inserted, include row counter where necessary
1275 coords
.SetRow(row
+ numRows
);
1277 else if (numRows
< 0)
1279 // If rows deleted ...
1280 if ((size_t)row
>= pos
- numRows
)
1282 // ...either decrement row counter (if row still exists)...
1283 coords
.SetRow(row
+ numRows
);
1287 // ...or remove the attribute
1288 m_attrs
.RemoveAt((size_t)n
);
1296 void wxGridCellAttrData::UpdateAttrCols( size_t pos
, int numCols
)
1298 size_t count
= m_attrs
.GetCount();
1299 for ( size_t n
= 0; n
< count
; n
++ )
1301 wxGridCellCoords
& coords
= m_attrs
[n
].coords
;
1302 wxCoord col
= coords
.GetCol();
1303 if ( (size_t)col
>= pos
)
1307 // If rows inserted, include row counter where necessary
1308 coords
.SetCol(col
+ numCols
);
1310 else if (numCols
< 0)
1312 // If rows deleted ...
1313 if ((size_t)col
>= pos
- numCols
)
1315 // ...either decrement row counter (if row still exists)...
1316 coords
.SetCol(col
+ numCols
);
1320 // ...or remove the attribute
1321 m_attrs
.RemoveAt((size_t)n
);
1329 int wxGridCellAttrData::FindIndex(int row
, int col
) const
1331 size_t count
= m_attrs
.GetCount();
1332 for ( size_t n
= 0; n
< count
; n
++ )
1334 const wxGridCellCoords
& coords
= m_attrs
[n
].coords
;
1335 if ( (coords
.GetRow() == row
) && (coords
.GetCol() == col
) )
1344 // ----------------------------------------------------------------------------
1345 // wxGridRowOrColAttrData
1346 // ----------------------------------------------------------------------------
1348 wxGridRowOrColAttrData::~wxGridRowOrColAttrData()
1350 size_t count
= m_attrs
.Count();
1351 for ( size_t n
= 0; n
< count
; n
++ )
1353 m_attrs
[n
]->DecRef();
1357 wxGridCellAttr
*wxGridRowOrColAttrData::GetAttr(int rowOrCol
) const
1359 wxGridCellAttr
*attr
= (wxGridCellAttr
*)NULL
;
1361 int n
= m_rowsOrCols
.Index(rowOrCol
);
1362 if ( n
!= wxNOT_FOUND
)
1364 attr
= m_attrs
[(size_t)n
];
1371 void wxGridRowOrColAttrData::SetAttr(wxGridCellAttr
*attr
, int rowOrCol
)
1373 int n
= m_rowsOrCols
.Index(rowOrCol
);
1374 if ( n
== wxNOT_FOUND
)
1376 // add the attribute
1377 m_rowsOrCols
.Add(rowOrCol
);
1384 // change the attribute
1385 m_attrs
[(size_t)n
] = attr
;
1389 // remove this attribute
1390 m_attrs
[(size_t)n
]->DecRef();
1391 m_rowsOrCols
.RemoveAt((size_t)n
);
1392 m_attrs
.RemoveAt((size_t)n
);
1397 void wxGridRowOrColAttrData::UpdateAttrRowsOrCols( size_t pos
, int numRowsOrCols
)
1399 size_t count
= m_attrs
.GetCount();
1400 for ( size_t n
= 0; n
< count
; n
++ )
1402 int & rowOrCol
= m_rowsOrCols
[n
];
1403 if ( (size_t)rowOrCol
>= pos
)
1405 if ( numRowsOrCols
> 0 )
1407 // If rows inserted, include row counter where necessary
1408 rowOrCol
+= numRowsOrCols
;
1410 else if ( numRowsOrCols
< 0)
1412 // If rows deleted, either decrement row counter (if row still exists)
1413 if ((size_t)rowOrCol
>= pos
- numRowsOrCols
)
1414 rowOrCol
+= numRowsOrCols
;
1417 m_rowsOrCols
.RemoveAt((size_t)n
);
1418 m_attrs
.RemoveAt((size_t)n
);
1426 // ----------------------------------------------------------------------------
1427 // wxGridCellAttrProvider
1428 // ----------------------------------------------------------------------------
1430 wxGridCellAttrProvider::wxGridCellAttrProvider()
1432 m_data
= (wxGridCellAttrProviderData
*)NULL
;
1435 wxGridCellAttrProvider::~wxGridCellAttrProvider()
1440 void wxGridCellAttrProvider::InitData()
1442 m_data
= new wxGridCellAttrProviderData
;
1445 wxGridCellAttr
*wxGridCellAttrProvider::GetAttr(int row
, int col
) const
1447 wxGridCellAttr
*attr
= (wxGridCellAttr
*)NULL
;
1450 // first look for the attribute of this specific cell
1451 attr
= m_data
->m_cellAttrs
.GetAttr(row
, col
);
1455 // then look for the col attr (col attributes are more common than
1456 // the row ones, hence they have priority)
1457 attr
= m_data
->m_colAttrs
.GetAttr(col
);
1462 // finally try the row attributes
1463 attr
= m_data
->m_rowAttrs
.GetAttr(row
);
1470 void wxGridCellAttrProvider::SetAttr(wxGridCellAttr
*attr
,
1476 m_data
->m_cellAttrs
.SetAttr(attr
, row
, col
);
1479 void wxGridCellAttrProvider::SetRowAttr(wxGridCellAttr
*attr
, int row
)
1484 m_data
->m_rowAttrs
.SetAttr(attr
, row
);
1487 void wxGridCellAttrProvider::SetColAttr(wxGridCellAttr
*attr
, int col
)
1492 m_data
->m_colAttrs
.SetAttr(attr
, col
);
1495 void wxGridCellAttrProvider::UpdateAttrRows( size_t pos
, int numRows
)
1499 m_data
->m_cellAttrs
.UpdateAttrRows( pos
, numRows
);
1501 m_data
->m_rowAttrs
.UpdateAttrRowsOrCols( pos
, numRows
);
1505 void wxGridCellAttrProvider::UpdateAttrCols( size_t pos
, int numCols
)
1509 m_data
->m_cellAttrs
.UpdateAttrCols( pos
, numCols
);
1511 m_data
->m_colAttrs
.UpdateAttrRowsOrCols( pos
, numCols
);
1515 // ----------------------------------------------------------------------------
1516 // wxGridTypeRegistry
1517 // ----------------------------------------------------------------------------
1519 wxGridTypeRegistry::~wxGridTypeRegistry()
1521 for (size_t i
=0; i
<m_typeinfo
.Count(); i
++)
1522 delete m_typeinfo
[i
];
1526 void wxGridTypeRegistry::RegisterDataType(const wxString
& typeName
,
1527 wxGridCellRenderer
* renderer
,
1528 wxGridCellEditor
* editor
)
1531 wxGridDataTypeInfo
* info
= new wxGridDataTypeInfo(typeName
, renderer
, editor
);
1533 // is it already registered?
1534 if ((loc
= FindDataType(typeName
)) != -1) {
1535 delete m_typeinfo
[loc
];
1536 m_typeinfo
[loc
] = info
;
1539 m_typeinfo
.Add(info
);
1543 int wxGridTypeRegistry::FindDataType(const wxString
& typeName
)
1547 for (size_t i
=0; i
<m_typeinfo
.Count(); i
++) {
1548 if (typeName
== m_typeinfo
[i
]->m_typeName
) {
1557 wxGridCellRenderer
* wxGridTypeRegistry::GetRenderer(int index
)
1559 wxGridCellRenderer
* renderer
= m_typeinfo
[index
]->m_renderer
;
1563 wxGridCellEditor
* wxGridTypeRegistry::GetEditor(int index
)
1565 wxGridCellEditor
* editor
= m_typeinfo
[index
]->m_editor
;
1569 // ----------------------------------------------------------------------------
1571 // ----------------------------------------------------------------------------
1573 IMPLEMENT_ABSTRACT_CLASS( wxGridTableBase
, wxObject
)
1576 wxGridTableBase::wxGridTableBase()
1578 m_view
= (wxGrid
*) NULL
;
1579 m_attrProvider
= (wxGridCellAttrProvider
*) NULL
;
1582 wxGridTableBase::~wxGridTableBase()
1584 delete m_attrProvider
;
1587 void wxGridTableBase::SetAttrProvider(wxGridCellAttrProvider
*attrProvider
)
1589 delete m_attrProvider
;
1590 m_attrProvider
= attrProvider
;
1593 bool wxGridTableBase::CanHaveAttributes()
1595 if ( ! GetAttrProvider() )
1597 // use the default attr provider by default
1598 SetAttrProvider(new wxGridCellAttrProvider
);
1603 wxGridCellAttr
*wxGridTableBase::GetAttr(int row
, int col
)
1605 if ( m_attrProvider
)
1606 return m_attrProvider
->GetAttr(row
, col
);
1608 return (wxGridCellAttr
*)NULL
;
1611 void wxGridTableBase::SetAttr(wxGridCellAttr
* attr
, int row
, int col
)
1613 if ( m_attrProvider
)
1615 m_attrProvider
->SetAttr(attr
, row
, col
);
1619 // as we take ownership of the pointer and don't store it, we must
1625 void wxGridTableBase::SetRowAttr(wxGridCellAttr
*attr
, int row
)
1627 if ( m_attrProvider
)
1629 m_attrProvider
->SetRowAttr(attr
, row
);
1633 // as we take ownership of the pointer and don't store it, we must
1639 void wxGridTableBase::SetColAttr(wxGridCellAttr
*attr
, int col
)
1641 if ( m_attrProvider
)
1643 m_attrProvider
->SetColAttr(attr
, col
);
1647 // as we take ownership of the pointer and don't store it, we must
1653 void wxGridTableBase::UpdateAttrRows( size_t pos
, int numRows
)
1655 if ( m_attrProvider
)
1657 m_attrProvider
->UpdateAttrRows( pos
, numRows
);
1661 void wxGridTableBase::UpdateAttrCols( size_t pos
, int numCols
)
1663 if ( m_attrProvider
)
1665 m_attrProvider
->UpdateAttrCols( pos
, numCols
);
1669 bool wxGridTableBase::InsertRows( size_t pos
, size_t numRows
)
1671 wxFAIL_MSG( wxT("Called grid table class function InsertRows\n"
1672 "but your derived table class does not override this function") );
1677 bool wxGridTableBase::AppendRows( size_t numRows
)
1679 wxFAIL_MSG( wxT("Called grid table class function AppendRows\n"
1680 "but your derived table class does not override this function"));
1685 bool wxGridTableBase::DeleteRows( size_t pos
, size_t numRows
)
1687 wxFAIL_MSG( wxT("Called grid table class function DeleteRows\n"
1688 "but your derived table class does not override this function"));
1693 bool wxGridTableBase::InsertCols( size_t pos
, size_t numCols
)
1695 wxFAIL_MSG( wxT("Called grid table class function InsertCols\n"
1696 "but your derived table class does not override this function"));
1701 bool wxGridTableBase::AppendCols( size_t numCols
)
1703 wxFAIL_MSG(wxT("Called grid table class function AppendCols\n"
1704 "but your derived table class does not override this function"));
1709 bool wxGridTableBase::DeleteCols( size_t pos
, size_t numCols
)
1711 wxFAIL_MSG( wxT("Called grid table class function DeleteCols\n"
1712 "but your derived table class does not override this function"));
1718 wxString
wxGridTableBase::GetRowLabelValue( int row
)
1721 s
<< row
+ 1; // RD: Starting the rows at zero confuses users, no matter
1722 // how much it makes sense to us geeks.
1726 wxString
wxGridTableBase::GetColLabelValue( int col
)
1728 // default col labels are:
1729 // cols 0 to 25 : A-Z
1730 // cols 26 to 675 : AA-ZZ
1735 for ( n
= 1; ; n
++ )
1737 s
+= (_T('A') + (wxChar
)( col%26
));
1739 if ( col
< 0 ) break;
1742 // reverse the string...
1744 for ( i
= 0; i
< n
; i
++ )
1753 wxString
wxGridTableBase::GetTypeName( int WXUNUSED(row
), int WXUNUSED(col
) )
1755 return wxGRID_VALUE_STRING
;
1758 bool wxGridTableBase::CanGetValueAs( int WXUNUSED(row
), int WXUNUSED(col
),
1759 const wxString
& typeName
)
1761 return typeName
== wxGRID_VALUE_STRING
;
1764 bool wxGridTableBase::CanSetValueAs( int row
, int col
, const wxString
& typeName
)
1766 return CanGetValueAs(row
, col
, typeName
);
1769 long wxGridTableBase::GetValueAsLong( int WXUNUSED(row
), int WXUNUSED(col
) )
1774 double wxGridTableBase::GetValueAsDouble( int WXUNUSED(row
), int WXUNUSED(col
) )
1779 bool wxGridTableBase::GetValueAsBool( int WXUNUSED(row
), int WXUNUSED(col
) )
1784 void wxGridTableBase::SetValueAsLong( int WXUNUSED(row
), int WXUNUSED(col
),
1785 long WXUNUSED(value
) )
1789 void wxGridTableBase::SetValueAsDouble( int WXUNUSED(row
), int WXUNUSED(col
),
1790 double WXUNUSED(value
) )
1794 void wxGridTableBase::SetValueAsBool( int WXUNUSED(row
), int WXUNUSED(col
),
1795 bool WXUNUSED(value
) )
1800 void* wxGridTableBase::GetValueAsCustom( int WXUNUSED(row
), int WXUNUSED(col
),
1801 const wxString
& WXUNUSED(typeName
) )
1806 void wxGridTableBase::SetValueAsCustom( int WXUNUSED(row
), int WXUNUSED(col
),
1807 const wxString
& WXUNUSED(typeName
),
1808 void* WXUNUSED(value
) )
1813 //////////////////////////////////////////////////////////////////////
1815 // Message class for the grid table to send requests and notifications
1819 wxGridTableMessage::wxGridTableMessage()
1821 m_table
= (wxGridTableBase
*) NULL
;
1827 wxGridTableMessage::wxGridTableMessage( wxGridTableBase
*table
, int id
,
1828 int commandInt1
, int commandInt2
)
1832 m_comInt1
= commandInt1
;
1833 m_comInt2
= commandInt2
;
1838 //////////////////////////////////////////////////////////////////////
1840 // A basic grid table for string data. An object of this class will
1841 // created by wxGrid if you don't specify an alternative table class.
1844 WX_DEFINE_OBJARRAY(wxGridStringArray
)
1846 IMPLEMENT_DYNAMIC_CLASS( wxGridStringTable
, wxGridTableBase
)
1848 wxGridStringTable::wxGridStringTable()
1853 wxGridStringTable::wxGridStringTable( int numRows
, int numCols
)
1858 m_data
.Alloc( numRows
);
1861 sa
.Alloc( numCols
);
1862 for ( col
= 0; col
< numCols
; col
++ )
1864 sa
.Add( wxEmptyString
);
1867 for ( row
= 0; row
< numRows
; row
++ )
1873 wxGridStringTable::~wxGridStringTable()
1877 long wxGridStringTable::GetNumberRows()
1879 return m_data
.GetCount();
1882 long wxGridStringTable::GetNumberCols()
1884 if ( m_data
.GetCount() > 0 )
1885 return m_data
[0].GetCount();
1890 wxString
wxGridStringTable::GetValue( int row
, int col
)
1892 // TODO: bounds checking
1894 return m_data
[row
][col
];
1897 void wxGridStringTable::SetValue( int row
, int col
, const wxString
& value
)
1899 // TODO: bounds checking
1901 m_data
[row
][col
] = value
;
1904 bool wxGridStringTable::IsEmptyCell( int row
, int col
)
1906 // TODO: bounds checking
1908 return (m_data
[row
][col
] == wxEmptyString
);
1912 void wxGridStringTable::Clear()
1915 int numRows
, numCols
;
1917 numRows
= m_data
.GetCount();
1920 numCols
= m_data
[0].GetCount();
1922 for ( row
= 0; row
< numRows
; row
++ )
1924 for ( col
= 0; col
< numCols
; col
++ )
1926 m_data
[row
][col
] = wxEmptyString
;
1933 bool wxGridStringTable::InsertRows( size_t pos
, size_t numRows
)
1937 size_t curNumRows
= m_data
.GetCount();
1938 size_t curNumCols
= ( curNumRows
> 0 ? m_data
[0].GetCount() : 0 );
1940 if ( pos
>= curNumRows
)
1942 return AppendRows( numRows
);
1946 sa
.Alloc( curNumCols
);
1947 for ( col
= 0; col
< curNumCols
; col
++ )
1949 sa
.Add( wxEmptyString
);
1952 for ( row
= pos
; row
< pos
+ numRows
; row
++ )
1954 m_data
.Insert( sa
, row
);
1956 UpdateAttrRows( pos
, numRows
);
1959 wxGridTableMessage
msg( this,
1960 wxGRIDTABLE_NOTIFY_ROWS_INSERTED
,
1964 GetView()->ProcessTableMessage( msg
);
1970 bool wxGridStringTable::AppendRows( size_t numRows
)
1974 size_t curNumRows
= m_data
.GetCount();
1975 size_t curNumCols
= ( curNumRows
> 0 ? m_data
[0].GetCount() : 0 );
1978 if ( curNumCols
> 0 )
1980 sa
.Alloc( curNumCols
);
1981 for ( col
= 0; col
< curNumCols
; col
++ )
1983 sa
.Add( wxEmptyString
);
1987 for ( row
= 0; row
< numRows
; row
++ )
1994 wxGridTableMessage
msg( this,
1995 wxGRIDTABLE_NOTIFY_ROWS_APPENDED
,
1998 GetView()->ProcessTableMessage( msg
);
2004 bool wxGridStringTable::DeleteRows( size_t pos
, size_t numRows
)
2008 size_t curNumRows
= m_data
.GetCount();
2010 if ( pos
>= curNumRows
)
2013 errmsg
.Printf("Called wxGridStringTable::DeleteRows(pos=%d, N=%d)\n"
2014 "Pos value is invalid for present table with %d rows",
2015 pos
, numRows
, curNumRows
);
2016 wxFAIL_MSG( wxT(errmsg
) );
2020 if ( numRows
> curNumRows
- pos
)
2022 numRows
= curNumRows
- pos
;
2025 if ( numRows
>= curNumRows
)
2027 m_data
.Empty(); // don't release memory just yet
2031 for ( n
= 0; n
< numRows
; n
++ )
2033 m_data
.Remove( pos
);
2036 UpdateAttrRows( pos
, -((int)numRows
) );
2039 wxGridTableMessage
msg( this,
2040 wxGRIDTABLE_NOTIFY_ROWS_DELETED
,
2044 GetView()->ProcessTableMessage( msg
);
2050 bool wxGridStringTable::InsertCols( size_t pos
, size_t numCols
)
2054 size_t curNumRows
= m_data
.GetCount();
2055 size_t curNumCols
= ( curNumRows
> 0 ? m_data
[0].GetCount() : 0 );
2057 if ( pos
>= curNumCols
)
2059 return AppendCols( numCols
);
2062 for ( row
= 0; row
< curNumRows
; row
++ )
2064 for ( col
= pos
; col
< pos
+ numCols
; col
++ )
2066 m_data
[row
].Insert( wxEmptyString
, col
);
2069 UpdateAttrCols( pos
, numCols
);
2072 wxGridTableMessage
msg( this,
2073 wxGRIDTABLE_NOTIFY_COLS_INSERTED
,
2077 GetView()->ProcessTableMessage( msg
);
2083 bool wxGridStringTable::AppendCols( size_t numCols
)
2087 size_t curNumRows
= m_data
.GetCount();
2090 // TODO: something better than this ?
2092 wxFAIL_MSG( wxT("Unable to append cols to a grid table with no rows.\n"
2093 "Call AppendRows() first") );
2097 for ( row
= 0; row
< curNumRows
; row
++ )
2099 for ( n
= 0; n
< numCols
; n
++ )
2101 m_data
[row
].Add( wxEmptyString
);
2107 wxGridTableMessage
msg( this,
2108 wxGRIDTABLE_NOTIFY_COLS_APPENDED
,
2111 GetView()->ProcessTableMessage( msg
);
2117 bool wxGridStringTable::DeleteCols( size_t pos
, size_t numCols
)
2121 size_t curNumRows
= m_data
.GetCount();
2122 size_t curNumCols
= ( curNumRows
> 0 ? m_data
[0].GetCount() : 0 );
2124 if ( pos
>= curNumCols
)
2127 errmsg
.Printf( "Called wxGridStringTable::DeleteCols(pos=%d, N=%d)...\n"
2128 "Pos value is invalid for present table with %d cols",
2129 pos
, numCols
, curNumCols
);
2130 wxFAIL_MSG( wxT( errmsg
) );
2134 if ( numCols
> curNumCols
- pos
)
2136 numCols
= curNumCols
- pos
;
2139 for ( row
= 0; row
< curNumRows
; row
++ )
2141 if ( numCols
>= curNumCols
)
2143 m_data
[row
].Clear();
2147 for ( n
= 0; n
< numCols
; n
++ )
2149 m_data
[row
].Remove( pos
);
2153 UpdateAttrCols( pos
, -((int)numCols
) );
2156 wxGridTableMessage
msg( this,
2157 wxGRIDTABLE_NOTIFY_COLS_DELETED
,
2161 GetView()->ProcessTableMessage( msg
);
2167 wxString
wxGridStringTable::GetRowLabelValue( int row
)
2169 if ( row
> (int)(m_rowLabels
.GetCount()) - 1 )
2171 // using default label
2173 return wxGridTableBase::GetRowLabelValue( row
);
2177 return m_rowLabels
[ row
];
2181 wxString
wxGridStringTable::GetColLabelValue( int col
)
2183 if ( col
> (int)(m_colLabels
.GetCount()) - 1 )
2185 // using default label
2187 return wxGridTableBase::GetColLabelValue( col
);
2191 return m_colLabels
[ col
];
2195 void wxGridStringTable::SetRowLabelValue( int row
, const wxString
& value
)
2197 if ( row
> (int)(m_rowLabels
.GetCount()) - 1 )
2199 int n
= m_rowLabels
.GetCount();
2201 for ( i
= n
; i
<= row
; i
++ )
2203 m_rowLabels
.Add( wxGridTableBase::GetRowLabelValue(i
) );
2207 m_rowLabels
[row
] = value
;
2210 void wxGridStringTable::SetColLabelValue( int col
, const wxString
& value
)
2212 if ( col
> (int)(m_colLabels
.GetCount()) - 1 )
2214 int n
= m_colLabels
.GetCount();
2216 for ( i
= n
; i
<= col
; i
++ )
2218 m_colLabels
.Add( wxGridTableBase::GetColLabelValue(i
) );
2222 m_colLabels
[col
] = value
;
2227 //////////////////////////////////////////////////////////////////////
2228 //////////////////////////////////////////////////////////////////////
2230 IMPLEMENT_DYNAMIC_CLASS( wxGridRowLabelWindow
, wxWindow
)
2232 BEGIN_EVENT_TABLE( wxGridRowLabelWindow
, wxWindow
)
2233 EVT_PAINT( wxGridRowLabelWindow::OnPaint
)
2234 EVT_MOUSE_EVENTS( wxGridRowLabelWindow::OnMouseEvent
)
2235 EVT_KEY_DOWN( wxGridRowLabelWindow::OnKeyDown
)
2238 wxGridRowLabelWindow::wxGridRowLabelWindow( wxGrid
*parent
,
2240 const wxPoint
&pos
, const wxSize
&size
)
2241 : wxWindow( parent
, id
, pos
, size
)
2246 void wxGridRowLabelWindow::OnPaint( wxPaintEvent
&event
)
2250 // NO - don't do this because it will set both the x and y origin
2251 // coords to match the parent scrolled window and we just want to
2252 // set the y coord - MB
2254 // m_owner->PrepareDC( dc );
2257 m_owner
->CalcUnscrolledPosition( 0, 0, &x
, &y
);
2258 dc
.SetDeviceOrigin( 0, -y
);
2260 m_owner
->CalcRowLabelsExposed( GetUpdateRegion() );
2261 m_owner
->DrawRowLabels( dc
);
2265 void wxGridRowLabelWindow::OnMouseEvent( wxMouseEvent
& event
)
2267 m_owner
->ProcessRowLabelMouseEvent( event
);
2271 // This seems to be required for wxMotif otherwise the mouse
2272 // cursor must be in the cell edit control to get key events
2274 void wxGridRowLabelWindow::OnKeyDown( wxKeyEvent
& event
)
2276 if ( !m_owner
->ProcessEvent( event
) ) event
.Skip();
2281 //////////////////////////////////////////////////////////////////////
2283 IMPLEMENT_DYNAMIC_CLASS( wxGridColLabelWindow
, wxWindow
)
2285 BEGIN_EVENT_TABLE( wxGridColLabelWindow
, wxWindow
)
2286 EVT_PAINT( wxGridColLabelWindow::OnPaint
)
2287 EVT_MOUSE_EVENTS( wxGridColLabelWindow::OnMouseEvent
)
2288 EVT_KEY_DOWN( wxGridColLabelWindow::OnKeyDown
)
2291 wxGridColLabelWindow::wxGridColLabelWindow( wxGrid
*parent
,
2293 const wxPoint
&pos
, const wxSize
&size
)
2294 : wxWindow( parent
, id
, pos
, size
)
2299 void wxGridColLabelWindow::OnPaint( wxPaintEvent
&event
)
2303 // NO - don't do this because it will set both the x and y origin
2304 // coords to match the parent scrolled window and we just want to
2305 // set the x coord - MB
2307 // m_owner->PrepareDC( dc );
2310 m_owner
->CalcUnscrolledPosition( 0, 0, &x
, &y
);
2311 dc
.SetDeviceOrigin( -x
, 0 );
2313 m_owner
->CalcColLabelsExposed( GetUpdateRegion() );
2314 m_owner
->DrawColLabels( dc
);
2318 void wxGridColLabelWindow::OnMouseEvent( wxMouseEvent
& event
)
2320 m_owner
->ProcessColLabelMouseEvent( event
);
2324 // This seems to be required for wxMotif otherwise the mouse
2325 // cursor must be in the cell edit control to get key events
2327 void wxGridColLabelWindow::OnKeyDown( wxKeyEvent
& event
)
2329 if ( !m_owner
->ProcessEvent( event
) ) event
.Skip();
2334 //////////////////////////////////////////////////////////////////////
2336 IMPLEMENT_DYNAMIC_CLASS( wxGridCornerLabelWindow
, wxWindow
)
2338 BEGIN_EVENT_TABLE( wxGridCornerLabelWindow
, wxWindow
)
2339 EVT_MOUSE_EVENTS( wxGridCornerLabelWindow::OnMouseEvent
)
2340 EVT_PAINT( wxGridCornerLabelWindow::OnPaint
)
2341 EVT_KEY_DOWN( wxGridCornerLabelWindow::OnKeyDown
)
2344 wxGridCornerLabelWindow::wxGridCornerLabelWindow( wxGrid
*parent
,
2346 const wxPoint
&pos
, const wxSize
&size
)
2347 : wxWindow( parent
, id
, pos
, size
)
2352 void wxGridCornerLabelWindow::OnPaint( wxPaintEvent
& WXUNUSED(event
) )
2356 int client_height
= 0;
2357 int client_width
= 0;
2358 GetClientSize( &client_width
, &client_height
);
2360 dc
.SetPen( *wxBLACK_PEN
);
2361 dc
.DrawLine( client_width
-1, client_height
-1, client_width
-1, 0 );
2362 dc
.DrawLine( client_width
-1, client_height
-1, 0, client_height
-1 );
2364 dc
.SetPen( *wxWHITE_PEN
);
2365 dc
.DrawLine( 0, 0, client_width
, 0 );
2366 dc
.DrawLine( 0, 0, 0, client_height
);
2370 void wxGridCornerLabelWindow::OnMouseEvent( wxMouseEvent
& event
)
2372 m_owner
->ProcessCornerLabelMouseEvent( event
);
2376 // This seems to be required for wxMotif otherwise the mouse
2377 // cursor must be in the cell edit control to get key events
2379 void wxGridCornerLabelWindow::OnKeyDown( wxKeyEvent
& event
)
2381 if ( !m_owner
->ProcessEvent( event
) ) event
.Skip();
2386 //////////////////////////////////////////////////////////////////////
2388 IMPLEMENT_DYNAMIC_CLASS( wxGridWindow
, wxPanel
)
2390 BEGIN_EVENT_TABLE( wxGridWindow
, wxPanel
)
2391 EVT_PAINT( wxGridWindow::OnPaint
)
2392 EVT_MOUSE_EVENTS( wxGridWindow::OnMouseEvent
)
2393 EVT_KEY_DOWN( wxGridWindow::OnKeyDown
)
2394 EVT_ERASE_BACKGROUND( wxGridWindow::OnEraseBackground
)
2397 wxGridWindow::wxGridWindow( wxGrid
*parent
,
2398 wxGridRowLabelWindow
*rowLblWin
,
2399 wxGridColLabelWindow
*colLblWin
,
2400 wxWindowID id
, const wxPoint
&pos
, const wxSize
&size
)
2401 : wxPanel( parent
, id
, pos
, size
, 0, "grid window" )
2404 m_rowLabelWin
= rowLblWin
;
2405 m_colLabelWin
= colLblWin
;
2406 SetBackgroundColour( "WHITE" );
2410 wxGridWindow::~wxGridWindow()
2415 void wxGridWindow::OnPaint( wxPaintEvent
&WXUNUSED(event
) )
2417 wxPaintDC
dc( this );
2418 m_owner
->PrepareDC( dc
);
2419 wxRegion reg
= GetUpdateRegion();
2420 m_owner
->CalcCellsExposed( reg
);
2421 m_owner
->DrawGridCellArea( dc
);
2422 #if WXGRID_DRAW_LINES
2423 m_owner
->DrawAllGridLines( dc
, reg
);
2425 m_owner
->DrawHighlight( dc
);
2429 void wxGridWindow::ScrollWindow( int dx
, int dy
, const wxRect
*rect
)
2431 wxPanel::ScrollWindow( dx
, dy
, rect
);
2432 m_rowLabelWin
->ScrollWindow( 0, dy
, rect
);
2433 m_colLabelWin
->ScrollWindow( dx
, 0, rect
);
2437 void wxGridWindow::OnMouseEvent( wxMouseEvent
& event
)
2439 m_owner
->ProcessGridCellMouseEvent( event
);
2443 // This seems to be required for wxMotif otherwise the mouse
2444 // cursor must be in the cell edit control to get key events
2446 void wxGridWindow::OnKeyDown( wxKeyEvent
& event
)
2448 if ( !m_owner
->ProcessEvent( event
) ) event
.Skip();
2451 // We are trapping erase background events to reduce flicker under MSW
2452 // and GTK but this can leave junk in the space beyond the last row and
2453 // col. So here we paint these spaces if they are visible.
2455 void wxGridWindow::OnEraseBackground(wxEraseEvent
& event
)
2458 GetClientSize( &cw
, &ch
);
2461 m_owner
->CalcUnscrolledPosition( cw
, ch
, &right
, &bottom
);
2464 rightRect
= m_owner
->CellToRect( 0, m_owner
->GetNumberCols()-1 );
2467 bottomRect
= m_owner
->CellToRect( m_owner
->GetNumberRows()-1, 0 );
2469 if ( right
> rightRect
.GetRight() || bottom
> bottomRect
.GetBottom() )
2472 m_owner
->CalcUnscrolledPosition( 0, 0, &left
, &top
);
2474 wxClientDC
dc( this );
2475 m_owner
->PrepareDC( dc
);
2476 dc
.SetBrush( wxBrush(m_owner
->GetDefaultCellBackgroundColour(), wxSOLID
) );
2477 dc
.SetPen( *wxTRANSPARENT_PEN
);
2479 if ( right
> rightRect
.GetRight() )
2480 dc
.DrawRectangle( rightRect
.GetRight()+1, top
, right
- rightRect
.GetRight(), ch
);
2482 if ( bottom
> bottomRect
.GetBottom() )
2483 dc
.DrawRectangle( left
, bottomRect
.GetBottom()+1, cw
, bottom
- bottomRect
.GetBottom() );
2488 //////////////////////////////////////////////////////////////////////
2491 IMPLEMENT_DYNAMIC_CLASS( wxGrid
, wxScrolledWindow
)
2493 BEGIN_EVENT_TABLE( wxGrid
, wxScrolledWindow
)
2494 EVT_PAINT( wxGrid::OnPaint
)
2495 EVT_SIZE( wxGrid::OnSize
)
2496 EVT_KEY_DOWN( wxGrid::OnKeyDown
)
2497 EVT_ERASE_BACKGROUND( wxGrid::OnEraseBackground
)
2500 wxGrid::wxGrid( wxWindow
*parent
,
2505 const wxString
& name
)
2506 : wxScrolledWindow( parent
, id
, pos
, size
, style
, name
),
2507 m_colMinWidths(wxKEY_INTEGER
, GRID_HASH_SIZE
)
2516 m_defaultCellAttr
->SafeDecRef();
2518 #ifdef DEBUG_ATTR_CACHE
2519 size_t total
= gs_nAttrCacheHits
+ gs_nAttrCacheMisses
;
2520 wxPrintf(_T("wxGrid attribute cache statistics: "
2521 "total: %u, hits: %u (%u%%)\n"),
2522 total
, gs_nAttrCacheHits
,
2523 total
? (gs_nAttrCacheHits
*100) / total
: 0);
2529 delete m_typeRegistry
;
2534 // ----- internal init and update functions
2537 void wxGrid::Create()
2539 m_created
= FALSE
; // set to TRUE by CreateGrid
2540 m_displayed
= TRUE
; // FALSE; // set to TRUE by OnPaint
2542 m_table
= (wxGridTableBase
*) NULL
;
2545 m_cellEditCtrlEnabled
= FALSE
;
2547 m_defaultCellAttr
= new wxGridCellAttr
;
2548 m_defaultCellAttr
->SetDefAttr(m_defaultCellAttr
);
2550 // Set default cell attributes
2551 m_defaultCellAttr
->SetFont(GetFont());
2552 m_defaultCellAttr
->SetAlignment(wxLEFT
, wxTOP
);
2553 m_defaultCellAttr
->SetTextColour(
2554 wxSystemSettings::GetSystemColour(wxSYS_COLOUR_WINDOWTEXT
));
2555 m_defaultCellAttr
->SetBackgroundColour(
2556 wxSystemSettings::GetSystemColour(wxSYS_COLOUR_WINDOW
));
2557 m_defaultCellAttr
->SetRenderer(new wxGridCellStringRenderer
);
2558 m_defaultCellAttr
->SetEditor(new wxGridCellTextEditor
);
2563 m_currentCellCoords
= wxGridNoCellCoords
;
2565 m_rowLabelWidth
= WXGRID_DEFAULT_ROW_LABEL_WIDTH
;
2566 m_colLabelHeight
= WXGRID_DEFAULT_COL_LABEL_HEIGHT
;
2568 // data type registration: register all standard data types
2569 // TODO: may be allow the app to selectively disable some of them?
2570 m_typeRegistry
= new wxGridTypeRegistry
;
2571 RegisterDataType(wxGRID_VALUE_STRING
,
2572 new wxGridCellStringRenderer
,
2573 new wxGridCellTextEditor
);
2574 RegisterDataType(wxGRID_VALUE_BOOL
,
2575 new wxGridCellBoolRenderer
,
2576 new wxGridCellBoolEditor
);
2577 RegisterDataType(wxGRID_VALUE_NUMBER
,
2578 new wxGridCellNumberRenderer
,
2579 new wxGridCellNumberEditor
);
2581 // subwindow components that make up the wxGrid
2582 m_cornerLabelWin
= new wxGridCornerLabelWindow( this,
2587 m_rowLabelWin
= new wxGridRowLabelWindow( this,
2592 m_colLabelWin
= new wxGridColLabelWindow( this,
2597 m_gridWin
= new wxGridWindow( this,
2604 SetTargetWindow( m_gridWin
);
2608 bool wxGrid::CreateGrid( int numRows
, int numCols
)
2612 wxFAIL_MSG( wxT("wxGrid::CreateGrid or wxGrid::SetTable called more than once") );
2617 m_numRows
= numRows
;
2618 m_numCols
= numCols
;
2620 m_table
= new wxGridStringTable( m_numRows
, m_numCols
);
2621 m_table
->SetView( this );
2630 bool wxGrid::SetTable( wxGridTableBase
*table
, bool takeOwnership
)
2634 // RD: Actually, this should probably be allowed. I think it would be
2635 // nice to be able to switch multiple Tables in and out of a single
2636 // View at runtime. Is there anything in the implmentation that would
2639 wxFAIL_MSG( wxT("wxGrid::CreateGrid or wxGrid::SetTable called more than once") );
2644 m_numRows
= table
->GetNumberRows();
2645 m_numCols
= table
->GetNumberCols();
2648 m_table
->SetView( this );
2661 if ( m_numRows
<= 0 )
2662 m_numRows
= WXGRID_DEFAULT_NUMBER_ROWS
;
2664 if ( m_numCols
<= 0 )
2665 m_numCols
= WXGRID_DEFAULT_NUMBER_COLS
;
2667 m_rowLabelWidth
= WXGRID_DEFAULT_ROW_LABEL_WIDTH
;
2668 m_colLabelHeight
= WXGRID_DEFAULT_COL_LABEL_HEIGHT
;
2670 if ( m_rowLabelWin
)
2672 m_labelBackgroundColour
= m_rowLabelWin
->GetBackgroundColour();
2676 m_labelBackgroundColour
= wxColour( _T("WHITE") );
2679 m_labelTextColour
= wxColour( _T("BLACK") );
2682 m_attrCache
.row
= -1;
2684 // TODO: something better than this ?
2686 m_labelFont
= this->GetFont();
2687 m_labelFont
.SetWeight( m_labelFont
.GetWeight() + 2 );
2689 m_rowLabelHorizAlign
= wxLEFT
;
2690 m_rowLabelVertAlign
= wxCENTRE
;
2692 m_colLabelHorizAlign
= wxCENTRE
;
2693 m_colLabelVertAlign
= wxTOP
;
2695 m_defaultColWidth
= WXGRID_DEFAULT_COL_WIDTH
;
2696 m_defaultRowHeight
= m_gridWin
->GetCharHeight();
2698 #if defined(__WXMOTIF__) || defined(__WXGTK__) // see also text ctrl sizing in ShowCellEditControl()
2699 m_defaultRowHeight
+= 8;
2701 m_defaultRowHeight
+= 4;
2704 m_gridLineColour
= wxColour( 128, 128, 255 );
2705 m_gridLinesEnabled
= TRUE
;
2707 m_cursorMode
= WXGRID_CURSOR_SELECT_CELL
;
2708 m_winCapture
= (wxWindow
*)NULL
;
2709 m_canDragRowSize
= TRUE
;
2710 m_canDragColSize
= TRUE
;
2712 m_dragRowOrCol
= -1;
2713 m_isDragging
= FALSE
;
2714 m_startDragPos
= wxDefaultPosition
;
2716 m_waitForSlowClick
= FALSE
;
2718 m_rowResizeCursor
= wxCursor( wxCURSOR_SIZENS
);
2719 m_colResizeCursor
= wxCursor( wxCURSOR_SIZEWE
);
2721 m_currentCellCoords
= wxGridNoCellCoords
;
2723 m_selectedTopLeft
= wxGridNoCellCoords
;
2724 m_selectedBottomRight
= wxGridNoCellCoords
;
2725 m_selectionBackground
= wxSystemSettings::GetSystemColour(wxSYS_COLOUR_HIGHLIGHT
);
2726 m_selectionForeground
= wxSystemSettings::GetSystemColour(wxSYS_COLOUR_HIGHLIGHTTEXT
);
2728 m_editable
= TRUE
; // default for whole grid
2730 m_inOnKeyDown
= FALSE
;
2734 // ----------------------------------------------------------------------------
2735 // the idea is to call these functions only when necessary because they create
2736 // quite big arrays which eat memory mostly unnecessary - in particular, if
2737 // default widths/heights are used for all rows/columns, we may not use these
2740 // with some extra code, it should be possible to only store the
2741 // widths/heights different from default ones but this will be done later...
2742 // ----------------------------------------------------------------------------
2744 void wxGrid::InitRowHeights()
2746 m_rowHeights
.Empty();
2747 m_rowBottoms
.Empty();
2749 m_rowHeights
.Alloc( m_numRows
);
2750 m_rowBottoms
.Alloc( m_numRows
);
2753 for ( int i
= 0; i
< m_numRows
; i
++ )
2755 m_rowHeights
.Add( m_defaultRowHeight
);
2756 rowBottom
+= m_defaultRowHeight
;
2757 m_rowBottoms
.Add( rowBottom
);
2761 void wxGrid::InitColWidths()
2763 m_colWidths
.Empty();
2764 m_colRights
.Empty();
2766 m_colWidths
.Alloc( m_numCols
);
2767 m_colRights
.Alloc( m_numCols
);
2769 for ( int i
= 0; i
< m_numCols
; i
++ )
2771 m_colWidths
.Add( m_defaultColWidth
);
2772 colRight
+= m_defaultColWidth
;
2773 m_colRights
.Add( colRight
);
2777 int wxGrid::GetColWidth(int col
) const
2779 return m_colWidths
.IsEmpty() ? m_defaultColWidth
: m_colWidths
[col
];
2782 int wxGrid::GetColLeft(int col
) const
2784 return m_colRights
.IsEmpty() ? col
* m_defaultColWidth
2785 : m_colRights
[col
] - m_colWidths
[col
];
2788 int wxGrid::GetColRight(int col
) const
2790 return m_colRights
.IsEmpty() ? (col
+ 1) * m_defaultColWidth
2794 int wxGrid::GetRowHeight(int row
) const
2796 return m_rowHeights
.IsEmpty() ? m_defaultRowHeight
: m_rowHeights
[row
];
2799 int wxGrid::GetRowTop(int row
) const
2801 return m_rowBottoms
.IsEmpty() ? row
* m_defaultRowHeight
2802 : m_rowBottoms
[row
] - m_rowHeights
[row
];
2805 int wxGrid::GetRowBottom(int row
) const
2807 return m_rowBottoms
.IsEmpty() ? (row
+ 1) * m_defaultRowHeight
2808 : m_rowBottoms
[row
];
2811 void wxGrid::CalcDimensions()
2814 GetClientSize( &cw
, &ch
);
2816 if ( m_numRows
> 0 && m_numCols
> 0 )
2818 int right
= GetColRight( m_numCols
-1 ) + 50;
2819 int bottom
= GetRowBottom( m_numRows
-1 ) + 50;
2821 // TODO: restore the scroll position that we had before sizing
2824 GetViewStart( &x
, &y
);
2825 SetScrollbars( GRID_SCROLL_LINE
, GRID_SCROLL_LINE
,
2826 right
/GRID_SCROLL_LINE
, bottom
/GRID_SCROLL_LINE
,
2832 void wxGrid::CalcWindowSizes()
2835 GetClientSize( &cw
, &ch
);
2837 if ( m_cornerLabelWin
->IsShown() )
2838 m_cornerLabelWin
->SetSize( 0, 0, m_rowLabelWidth
, m_colLabelHeight
);
2840 if ( m_colLabelWin
->IsShown() )
2841 m_colLabelWin
->SetSize( m_rowLabelWidth
, 0, cw
-m_rowLabelWidth
, m_colLabelHeight
);
2843 if ( m_rowLabelWin
->IsShown() )
2844 m_rowLabelWin
->SetSize( 0, m_colLabelHeight
, m_rowLabelWidth
, ch
-m_colLabelHeight
);
2846 if ( m_gridWin
->IsShown() )
2847 m_gridWin
->SetSize( m_rowLabelWidth
, m_colLabelHeight
, cw
-m_rowLabelWidth
, ch
-m_colLabelHeight
);
2851 // this is called when the grid table sends a message to say that it
2852 // has been redimensioned
2854 bool wxGrid::Redimension( wxGridTableMessage
& msg
)
2858 // if we were using the default widths/heights so far, we must change them
2860 if ( m_colWidths
.IsEmpty() )
2865 if ( m_rowHeights
.IsEmpty() )
2870 switch ( msg
.GetId() )
2872 case wxGRIDTABLE_NOTIFY_ROWS_INSERTED
:
2874 size_t pos
= msg
.GetCommandInt();
2875 int numRows
= msg
.GetCommandInt2();
2876 for ( i
= 0; i
< numRows
; i
++ )
2878 m_rowHeights
.Insert( m_defaultRowHeight
, pos
);
2879 m_rowBottoms
.Insert( 0, pos
);
2881 m_numRows
+= numRows
;
2884 if ( pos
> 0 ) bottom
= m_rowBottoms
[pos
-1];
2886 for ( i
= pos
; i
< m_numRows
; i
++ )
2888 bottom
+= m_rowHeights
[i
];
2889 m_rowBottoms
[i
] = bottom
;
2895 case wxGRIDTABLE_NOTIFY_ROWS_APPENDED
:
2897 int numRows
= msg
.GetCommandInt();
2898 for ( i
= 0; i
< numRows
; i
++ )
2900 m_rowHeights
.Add( m_defaultRowHeight
);
2901 m_rowBottoms
.Add( 0 );
2904 int oldNumRows
= m_numRows
;
2905 m_numRows
+= numRows
;
2908 if ( oldNumRows
> 0 ) bottom
= m_rowBottoms
[oldNumRows
-1];
2910 for ( i
= oldNumRows
; i
< m_numRows
; i
++ )
2912 bottom
+= m_rowHeights
[i
];
2913 m_rowBottoms
[i
] = bottom
;
2919 case wxGRIDTABLE_NOTIFY_ROWS_DELETED
:
2921 size_t pos
= msg
.GetCommandInt();
2922 int numRows
= msg
.GetCommandInt2();
2923 for ( i
= 0; i
< numRows
; i
++ )
2925 m_rowHeights
.Remove( pos
);
2926 m_rowBottoms
.Remove( pos
);
2928 m_numRows
-= numRows
;
2933 m_colWidths
.Clear();
2934 m_colRights
.Clear();
2935 m_currentCellCoords
= wxGridNoCellCoords
;
2939 if ( m_currentCellCoords
.GetRow() >= m_numRows
)
2940 m_currentCellCoords
.Set( 0, 0 );
2943 for ( i
= 0; i
< m_numRows
; i
++ )
2945 h
+= m_rowHeights
[i
];
2946 m_rowBottoms
[i
] = h
;
2954 case wxGRIDTABLE_NOTIFY_COLS_INSERTED
:
2956 size_t pos
= msg
.GetCommandInt();
2957 int numCols
= msg
.GetCommandInt2();
2958 for ( i
= 0; i
< numCols
; i
++ )
2960 m_colWidths
.Insert( m_defaultColWidth
, pos
);
2961 m_colRights
.Insert( 0, pos
);
2963 m_numCols
+= numCols
;
2966 if ( pos
> 0 ) right
= m_colRights
[pos
-1];
2968 for ( i
= pos
; i
< m_numCols
; i
++ )
2970 right
+= m_colWidths
[i
];
2971 m_colRights
[i
] = right
;
2977 case wxGRIDTABLE_NOTIFY_COLS_APPENDED
:
2979 int numCols
= msg
.GetCommandInt();
2980 for ( i
= 0; i
< numCols
; i
++ )
2982 m_colWidths
.Add( m_defaultColWidth
);
2983 m_colRights
.Add( 0 );
2986 int oldNumCols
= m_numCols
;
2987 m_numCols
+= numCols
;
2990 if ( oldNumCols
> 0 ) right
= m_colRights
[oldNumCols
-1];
2992 for ( i
= oldNumCols
; i
< m_numCols
; i
++ )
2994 right
+= m_colWidths
[i
];
2995 m_colRights
[i
] = right
;
3001 case wxGRIDTABLE_NOTIFY_COLS_DELETED
:
3003 size_t pos
= msg
.GetCommandInt();
3004 int numCols
= msg
.GetCommandInt2();
3005 for ( i
= 0; i
< numCols
; i
++ )
3007 m_colWidths
.Remove( pos
);
3008 m_colRights
.Remove( pos
);
3010 m_numCols
-= numCols
;
3014 #if 0 // leave the row alone here so that AppendCols will work subsequently
3016 m_rowHeights
.Clear();
3017 m_rowBottoms
.Clear();
3019 m_currentCellCoords
= wxGridNoCellCoords
;
3023 if ( m_currentCellCoords
.GetCol() >= m_numCols
)
3024 m_currentCellCoords
.Set( 0, 0 );
3027 for ( i
= 0; i
< m_numCols
; i
++ )
3029 w
+= m_colWidths
[i
];
3042 void wxGrid::CalcRowLabelsExposed( wxRegion
& reg
)
3044 wxRegionIterator
iter( reg
);
3047 m_rowLabelsExposed
.Empty();
3054 // TODO: remove this when we can...
3055 // There is a bug in wxMotif that gives garbage update
3056 // rectangles if you jump-scroll a long way by clicking the
3057 // scrollbar with middle button. This is a work-around
3059 #if defined(__WXMOTIF__)
3061 m_gridWin
->GetClientSize( &cw
, &ch
);
3062 if ( r
.GetTop() > ch
) r
.SetTop( 0 );
3063 r
.SetBottom( wxMin( r
.GetBottom(), ch
) );
3066 // logical bounds of update region
3069 CalcUnscrolledPosition( 0, r
.GetTop(), &dummy
, &top
);
3070 CalcUnscrolledPosition( 0, r
.GetBottom(), &dummy
, &bottom
);
3072 // find the row labels within these bounds
3075 for ( row
= 0; row
< m_numRows
; row
++ )
3077 if ( GetRowBottom(row
) < top
)
3080 if ( GetRowTop(row
) > bottom
)
3083 m_rowLabelsExposed
.Add( row
);
3091 void wxGrid::CalcColLabelsExposed( wxRegion
& reg
)
3093 wxRegionIterator
iter( reg
);
3096 m_colLabelsExposed
.Empty();
3103 // TODO: remove this when we can...
3104 // There is a bug in wxMotif that gives garbage update
3105 // rectangles if you jump-scroll a long way by clicking the
3106 // scrollbar with middle button. This is a work-around
3108 #if defined(__WXMOTIF__)
3110 m_gridWin
->GetClientSize( &cw
, &ch
);
3111 if ( r
.GetLeft() > cw
) r
.SetLeft( 0 );
3112 r
.SetRight( wxMin( r
.GetRight(), cw
) );
3115 // logical bounds of update region
3118 CalcUnscrolledPosition( r
.GetLeft(), 0, &left
, &dummy
);
3119 CalcUnscrolledPosition( r
.GetRight(), 0, &right
, &dummy
);
3121 // find the cells within these bounds
3124 for ( col
= 0; col
< m_numCols
; col
++ )
3126 if ( GetColRight(col
) < left
)
3129 if ( GetColLeft(col
) > right
)
3132 m_colLabelsExposed
.Add( col
);
3140 void wxGrid::CalcCellsExposed( wxRegion
& reg
)
3142 wxRegionIterator
iter( reg
);
3145 m_cellsExposed
.Empty();
3146 m_rowsExposed
.Empty();
3147 m_colsExposed
.Empty();
3149 int left
, top
, right
, bottom
;
3154 // TODO: remove this when we can...
3155 // There is a bug in wxMotif that gives garbage update
3156 // rectangles if you jump-scroll a long way by clicking the
3157 // scrollbar with middle button. This is a work-around
3159 #if defined(__WXMOTIF__)
3161 m_gridWin
->GetClientSize( &cw
, &ch
);
3162 if ( r
.GetTop() > ch
) r
.SetTop( 0 );
3163 if ( r
.GetLeft() > cw
) r
.SetLeft( 0 );
3164 r
.SetRight( wxMin( r
.GetRight(), cw
) );
3165 r
.SetBottom( wxMin( r
.GetBottom(), ch
) );
3168 // logical bounds of update region
3170 CalcUnscrolledPosition( r
.GetLeft(), r
.GetTop(), &left
, &top
);
3171 CalcUnscrolledPosition( r
.GetRight(), r
.GetBottom(), &right
, &bottom
);
3173 // find the cells within these bounds
3176 for ( row
= 0; row
< m_numRows
; row
++ )
3178 if ( GetRowBottom(row
) <= top
)
3181 if ( GetRowTop(row
) > bottom
)
3184 m_rowsExposed
.Add( row
);
3186 for ( col
= 0; col
< m_numCols
; col
++ )
3188 if ( GetColRight(col
) <= left
)
3191 if ( GetColLeft(col
) > right
)
3194 if ( m_colsExposed
.Index( col
) == wxNOT_FOUND
)
3195 m_colsExposed
.Add( col
);
3196 m_cellsExposed
.Add( wxGridCellCoords( row
, col
) );
3205 void wxGrid::ProcessRowLabelMouseEvent( wxMouseEvent
& event
)
3208 wxPoint
pos( event
.GetPosition() );
3209 CalcUnscrolledPosition( pos
.x
, pos
.y
, &x
, &y
);
3211 if ( event
.Dragging() )
3213 m_isDragging
= TRUE
;
3215 if ( event
.LeftIsDown() )
3217 switch( m_cursorMode
)
3219 case WXGRID_CURSOR_RESIZE_ROW
:
3221 int cw
, ch
, left
, dummy
;
3222 m_gridWin
->GetClientSize( &cw
, &ch
);
3223 CalcUnscrolledPosition( 0, 0, &left
, &dummy
);
3225 wxClientDC
dc( m_gridWin
);
3227 y
= wxMax( y
, GetRowTop(m_dragRowOrCol
) + WXGRID_MIN_ROW_HEIGHT
);
3228 dc
.SetLogicalFunction(wxINVERT
);
3229 if ( m_dragLastPos
>= 0 )
3231 dc
.DrawLine( left
, m_dragLastPos
, left
+cw
, m_dragLastPos
);
3233 dc
.DrawLine( left
, y
, left
+cw
, y
);
3238 case WXGRID_CURSOR_SELECT_ROW
:
3239 if ( (row
= YToRow( y
)) >= 0 &&
3240 !IsInSelection( row
, 0 ) )
3242 SelectRow( row
, TRUE
);
3245 // default label to suppress warnings about "enumeration value
3246 // 'xxx' not handled in switch
3254 m_isDragging
= FALSE
;
3257 // ------------ Entering or leaving the window
3259 if ( event
.Entering() || event
.Leaving() )
3261 ChangeCursorMode(WXGRID_CURSOR_SELECT_CELL
, m_rowLabelWin
);
3265 // ------------ Left button pressed
3267 else if ( event
.LeftDown() )
3269 // don't send a label click event for a hit on the
3270 // edge of the row label - this is probably the user
3271 // wanting to resize the row
3273 if ( YToEdgeOfRow(y
) < 0 )
3277 !SendEvent( wxEVT_GRID_LABEL_LEFT_CLICK
, row
, -1, event
) )
3279 SelectRow( row
, event
.ShiftDown() );
3280 ChangeCursorMode(WXGRID_CURSOR_SELECT_ROW
, m_rowLabelWin
);
3285 // starting to drag-resize a row
3287 if ( CanDragRowSize() )
3288 ChangeCursorMode(WXGRID_CURSOR_RESIZE_ROW
, m_rowLabelWin
);
3293 // ------------ Left double click
3295 else if (event
.LeftDClick() )
3297 if ( YToEdgeOfRow(y
) < 0 )
3300 SendEvent( wxEVT_GRID_LABEL_LEFT_DCLICK
, row
, -1, event
);
3305 // ------------ Left button released
3307 else if ( event
.LeftUp() )
3309 if ( m_cursorMode
== WXGRID_CURSOR_RESIZE_ROW
)
3311 DoEndDragResizeRow();
3313 // Note: we are ending the event *after* doing
3314 // default processing in this case
3316 SendEvent( wxEVT_GRID_ROW_SIZE
, m_dragRowOrCol
, -1, event
);
3319 ChangeCursorMode(WXGRID_CURSOR_SELECT_CELL
, m_rowLabelWin
);
3324 // ------------ Right button down
3326 else if ( event
.RightDown() )
3329 if ( !SendEvent( wxEVT_GRID_LABEL_RIGHT_CLICK
, row
, -1, event
) )
3331 // no default action at the moment
3336 // ------------ Right double click
3338 else if ( event
.RightDClick() )
3341 if ( !SendEvent( wxEVT_GRID_LABEL_RIGHT_DCLICK
, row
, -1, event
) )
3343 // no default action at the moment
3348 // ------------ No buttons down and mouse moving
3350 else if ( event
.Moving() )
3352 m_dragRowOrCol
= YToEdgeOfRow( y
);
3353 if ( m_dragRowOrCol
>= 0 )
3355 if ( m_cursorMode
== WXGRID_CURSOR_SELECT_CELL
)
3357 // don't capture the mouse yet
3358 if ( CanDragRowSize() )
3359 ChangeCursorMode(WXGRID_CURSOR_RESIZE_ROW
, m_rowLabelWin
, FALSE
);
3362 else if ( m_cursorMode
!= WXGRID_CURSOR_SELECT_CELL
)
3364 ChangeCursorMode(WXGRID_CURSOR_SELECT_CELL
, m_rowLabelWin
, FALSE
);
3370 void wxGrid::ProcessColLabelMouseEvent( wxMouseEvent
& event
)
3373 wxPoint
pos( event
.GetPosition() );
3374 CalcUnscrolledPosition( pos
.x
, pos
.y
, &x
, &y
);
3376 if ( event
.Dragging() )
3378 m_isDragging
= TRUE
;
3380 if ( event
.LeftIsDown() )
3382 switch( m_cursorMode
)
3384 case WXGRID_CURSOR_RESIZE_COL
:
3386 int cw
, ch
, dummy
, top
;
3387 m_gridWin
->GetClientSize( &cw
, &ch
);
3388 CalcUnscrolledPosition( 0, 0, &dummy
, &top
);
3390 wxClientDC
dc( m_gridWin
);
3393 x
= wxMax( x
, GetColLeft(m_dragRowOrCol
) +
3394 GetColMinimalWidth(m_dragRowOrCol
));
3395 dc
.SetLogicalFunction(wxINVERT
);
3396 if ( m_dragLastPos
>= 0 )
3398 dc
.DrawLine( m_dragLastPos
, top
, m_dragLastPos
, top
+ch
);
3400 dc
.DrawLine( x
, top
, x
, top
+ch
);
3405 case WXGRID_CURSOR_SELECT_COL
:
3406 if ( (col
= XToCol( x
)) >= 0 &&
3407 !IsInSelection( 0, col
) )
3409 SelectCol( col
, TRUE
);
3412 // default label to suppress warnings about "enumeration value
3413 // 'xxx' not handled in switch
3421 m_isDragging
= FALSE
;
3424 // ------------ Entering or leaving the window
3426 if ( event
.Entering() || event
.Leaving() )
3428 ChangeCursorMode(WXGRID_CURSOR_SELECT_CELL
, m_colLabelWin
);
3432 // ------------ Left button pressed
3434 else if ( event
.LeftDown() )
3436 // don't send a label click event for a hit on the
3437 // edge of the col label - this is probably the user
3438 // wanting to resize the col
3440 if ( XToEdgeOfCol(x
) < 0 )
3444 !SendEvent( wxEVT_GRID_LABEL_LEFT_CLICK
, -1, col
, event
) )
3446 SelectCol( col
, event
.ShiftDown() );
3447 ChangeCursorMode(WXGRID_CURSOR_SELECT_COL
, m_colLabelWin
);
3452 // starting to drag-resize a col
3454 if ( CanDragColSize() )
3455 ChangeCursorMode(WXGRID_CURSOR_RESIZE_COL
, m_colLabelWin
);
3460 // ------------ Left double click
3462 if ( event
.LeftDClick() )
3464 if ( XToEdgeOfCol(x
) < 0 )
3467 SendEvent( wxEVT_GRID_LABEL_LEFT_DCLICK
, -1, col
, event
);
3472 // ------------ Left button released
3474 else if ( event
.LeftUp() )
3476 if ( m_cursorMode
== WXGRID_CURSOR_RESIZE_COL
)
3478 DoEndDragResizeCol();
3480 // Note: we are ending the event *after* doing
3481 // default processing in this case
3483 SendEvent( wxEVT_GRID_COL_SIZE
, -1, m_dragRowOrCol
, event
);
3486 ChangeCursorMode(WXGRID_CURSOR_SELECT_CELL
, m_colLabelWin
);
3491 // ------------ Right button down
3493 else if ( event
.RightDown() )
3496 if ( !SendEvent( wxEVT_GRID_LABEL_RIGHT_CLICK
, -1, col
, event
) )
3498 // no default action at the moment
3503 // ------------ Right double click
3505 else if ( event
.RightDClick() )
3508 if ( !SendEvent( wxEVT_GRID_LABEL_RIGHT_DCLICK
, -1, col
, event
) )
3510 // no default action at the moment
3515 // ------------ No buttons down and mouse moving
3517 else if ( event
.Moving() )
3519 m_dragRowOrCol
= XToEdgeOfCol( x
);
3520 if ( m_dragRowOrCol
>= 0 )
3522 if ( m_cursorMode
== WXGRID_CURSOR_SELECT_CELL
)
3524 // don't capture the cursor yet
3525 if ( CanDragColSize() )
3526 ChangeCursorMode(WXGRID_CURSOR_RESIZE_COL
, m_colLabelWin
, FALSE
);
3529 else if ( m_cursorMode
!= WXGRID_CURSOR_SELECT_CELL
)
3531 ChangeCursorMode(WXGRID_CURSOR_SELECT_CELL
, m_colLabelWin
, FALSE
);
3537 void wxGrid::ProcessCornerLabelMouseEvent( wxMouseEvent
& event
)
3539 if ( event
.LeftDown() )
3541 // indicate corner label by having both row and
3544 if ( !SendEvent( wxEVT_GRID_LABEL_LEFT_CLICK
, -1, -1, event
) )
3550 else if ( event
.LeftDClick() )
3552 SendEvent( wxEVT_GRID_LABEL_LEFT_DCLICK
, -1, -1, event
);
3555 else if ( event
.RightDown() )
3557 if ( !SendEvent( wxEVT_GRID_LABEL_RIGHT_CLICK
, -1, -1, event
) )
3559 // no default action at the moment
3563 else if ( event
.RightDClick() )
3565 if ( !SendEvent( wxEVT_GRID_LABEL_RIGHT_DCLICK
, -1, -1, event
) )
3567 // no default action at the moment
3572 void wxGrid::ChangeCursorMode(CursorMode mode
,
3577 static const wxChar
*cursorModes
[] =
3586 wxLogTrace(_T("grid"),
3587 _T("wxGrid cursor mode (mouse capture for %s): %s -> %s"),
3588 win
== m_colLabelWin
? _T("colLabelWin")
3589 : win
? _T("rowLabelWin")
3591 cursorModes
[m_cursorMode
], cursorModes
[mode
]);
3592 #endif // __WXDEBUG__
3594 if ( mode
== m_cursorMode
)
3599 // by default use the grid itself
3605 m_winCapture
->ReleaseMouse();
3606 m_winCapture
= (wxWindow
*)NULL
;
3609 m_cursorMode
= mode
;
3611 switch ( m_cursorMode
)
3613 case WXGRID_CURSOR_RESIZE_ROW
:
3614 win
->SetCursor( m_rowResizeCursor
);
3617 case WXGRID_CURSOR_RESIZE_COL
:
3618 win
->SetCursor( m_colResizeCursor
);
3622 win
->SetCursor( *wxSTANDARD_CURSOR
);
3625 // we need to capture mouse when resizing
3626 bool resize
= m_cursorMode
== WXGRID_CURSOR_RESIZE_ROW
||
3627 m_cursorMode
== WXGRID_CURSOR_RESIZE_COL
;
3629 if ( captureMouse
&& resize
)
3631 win
->CaptureMouse();
3636 void wxGrid::ProcessGridCellMouseEvent( wxMouseEvent
& event
)
3639 wxPoint
pos( event
.GetPosition() );
3640 CalcUnscrolledPosition( pos
.x
, pos
.y
, &x
, &y
);
3642 wxGridCellCoords coords
;
3643 XYToCell( x
, y
, coords
);
3645 if ( event
.Dragging() )
3647 //wxLogDebug("pos(%d, %d) coords(%d, %d)", pos.x, pos.y, coords.GetRow(), coords.GetCol());
3649 // Don't start doing anything until the mouse has been drug at
3650 // least 3 pixels in any direction...
3653 if (m_startDragPos
== wxDefaultPosition
)
3655 m_startDragPos
= pos
;
3658 if (abs(m_startDragPos
.x
- pos
.x
) < 4 && abs(m_startDragPos
.y
- pos
.y
) < 4)
3662 m_isDragging
= TRUE
;
3663 if ( m_cursorMode
== WXGRID_CURSOR_SELECT_CELL
)
3665 // Hide the edit control, so it
3666 // won't interfer with drag-shrinking.
3667 if ( IsCellEditControlEnabled() )
3668 HideCellEditControl();
3670 // Have we captured the mouse yet?
3673 m_winCapture
= m_gridWin
;
3674 m_winCapture
->CaptureMouse();
3677 if ( coords
!= wxGridNoCellCoords
)
3679 if ( !IsSelection() )
3681 SelectBlock( coords
, coords
);
3685 SelectBlock( m_currentCellCoords
, coords
);
3688 if (! IsVisible(coords
))
3690 MakeCellVisible(coords
);
3691 // TODO: need to introduce a delay or something here. The
3692 // scrolling is way to fast, at least on MSW.
3696 else if ( m_cursorMode
== WXGRID_CURSOR_RESIZE_ROW
)
3698 int cw
, ch
, left
, dummy
;
3699 m_gridWin
->GetClientSize( &cw
, &ch
);
3700 CalcUnscrolledPosition( 0, 0, &left
, &dummy
);
3702 wxClientDC
dc( m_gridWin
);
3704 y
= wxMax( y
, GetRowTop(m_dragRowOrCol
) + WXGRID_MIN_ROW_HEIGHT
);
3705 dc
.SetLogicalFunction(wxINVERT
);
3706 if ( m_dragLastPos
>= 0 )
3708 dc
.DrawLine( left
, m_dragLastPos
, left
+cw
, m_dragLastPos
);
3710 dc
.DrawLine( left
, y
, left
+cw
, y
);
3713 else if ( m_cursorMode
== WXGRID_CURSOR_RESIZE_COL
)
3715 int cw
, ch
, dummy
, top
;
3716 m_gridWin
->GetClientSize( &cw
, &ch
);
3717 CalcUnscrolledPosition( 0, 0, &dummy
, &top
);
3719 wxClientDC
dc( m_gridWin
);
3721 x
= wxMax( x
, GetColLeft(m_dragRowOrCol
) +
3722 GetColMinimalWidth(m_dragRowOrCol
) );
3723 dc
.SetLogicalFunction(wxINVERT
);
3724 if ( m_dragLastPos
>= 0 )
3726 dc
.DrawLine( m_dragLastPos
, top
, m_dragLastPos
, top
+ch
);
3728 dc
.DrawLine( x
, top
, x
, top
+ch
);
3735 m_isDragging
= FALSE
;
3736 m_startDragPos
= wxDefaultPosition
;
3739 if ( coords
!= wxGridNoCellCoords
)
3741 // VZ: if we do this, the mode is reset to WXGRID_CURSOR_SELECT_CELL
3742 // immediately after it becomes WXGRID_CURSOR_RESIZE_ROW/COL under
3745 if ( event
.Entering() || event
.Leaving() )
3747 ChangeCursorMode(WXGRID_CURSOR_SELECT_CELL
);
3748 m_gridWin
->SetCursor( *wxSTANDARD_CURSOR
);
3753 // ------------ Left button pressed
3755 if ( event
.LeftDown() )
3757 DisableCellEditControl();
3758 if ( event
.ShiftDown() )
3760 SelectBlock( m_currentCellCoords
, coords
);
3762 else if ( XToEdgeOfCol(x
) < 0 &&
3763 YToEdgeOfRow(y
) < 0 )
3765 if ( !SendEvent( wxEVT_GRID_CELL_LEFT_CLICK
,
3770 MakeCellVisible( coords
);
3772 // if this is the second click on this cell then start
3774 if ( m_waitForSlowClick
&&
3775 (coords
== m_currentCellCoords
) &&
3776 CanEnableCellControl())
3778 EnableCellEditControl();
3780 wxGridCellAttr
* attr
= GetCellAttr(m_currentCellCoords
);
3781 attr
->GetEditor(GetDefaultEditorForCell(coords
.GetRow(), coords
.GetCol()))->StartingClick();
3784 m_waitForSlowClick
= FALSE
;
3788 SetCurrentCell( coords
);
3789 m_waitForSlowClick
= TRUE
;
3796 // ------------ Left double click
3798 else if ( event
.LeftDClick() )
3800 DisableCellEditControl();
3801 if ( XToEdgeOfCol(x
) < 0 && YToEdgeOfRow(y
) < 0 )
3803 SendEvent( wxEVT_GRID_CELL_LEFT_DCLICK
,
3811 // ------------ Left button released
3813 else if ( event
.LeftUp() )
3815 if ( m_cursorMode
== WXGRID_CURSOR_SELECT_CELL
)
3817 if ( IsSelection() )
3821 m_winCapture
->ReleaseMouse();
3822 m_winCapture
= NULL
;
3824 SendEvent( wxEVT_GRID_RANGE_SELECT
, -1, -1, event
);
3827 // Show the edit control, if it has been hidden for
3829 ShowCellEditControl();
3831 else if ( m_cursorMode
== WXGRID_CURSOR_RESIZE_ROW
)
3833 ChangeCursorMode(WXGRID_CURSOR_SELECT_CELL
);
3834 DoEndDragResizeRow();
3836 // Note: we are ending the event *after* doing
3837 // default processing in this case
3839 SendEvent( wxEVT_GRID_ROW_SIZE
, m_dragRowOrCol
, -1, event
);
3841 else if ( m_cursorMode
== WXGRID_CURSOR_RESIZE_COL
)
3843 ChangeCursorMode(WXGRID_CURSOR_SELECT_CELL
);
3844 DoEndDragResizeCol();
3846 // Note: we are ending the event *after* doing
3847 // default processing in this case
3849 SendEvent( wxEVT_GRID_COL_SIZE
, -1, m_dragRowOrCol
, event
);
3856 // ------------ Right button down
3858 else if ( event
.RightDown() )
3860 DisableCellEditControl();
3861 if ( !SendEvent( wxEVT_GRID_CELL_RIGHT_CLICK
,
3866 // no default action at the moment
3871 // ------------ Right double click
3873 else if ( event
.RightDClick() )
3875 DisableCellEditControl();
3876 if ( !SendEvent( wxEVT_GRID_CELL_RIGHT_DCLICK
,
3881 // no default action at the moment
3885 // ------------ Moving and no button action
3887 else if ( event
.Moving() && !event
.IsButton() )
3889 int dragRow
= YToEdgeOfRow( y
);
3890 int dragCol
= XToEdgeOfCol( x
);
3892 // Dragging on the corner of a cell to resize in both
3893 // directions is not implemented yet...
3895 if ( dragRow
>= 0 && dragCol
>= 0 )
3897 ChangeCursorMode(WXGRID_CURSOR_SELECT_CELL
);
3903 m_dragRowOrCol
= dragRow
;
3905 if ( m_cursorMode
== WXGRID_CURSOR_SELECT_CELL
)
3907 if ( CanDragRowSize() )
3908 ChangeCursorMode(WXGRID_CURSOR_RESIZE_ROW
);
3916 m_dragRowOrCol
= dragCol
;
3918 if ( m_cursorMode
== WXGRID_CURSOR_SELECT_CELL
)
3920 if ( CanDragColSize() )
3921 ChangeCursorMode(WXGRID_CURSOR_RESIZE_COL
);
3927 // Neither on a row or col edge
3929 if ( m_cursorMode
!= WXGRID_CURSOR_SELECT_CELL
)
3931 ChangeCursorMode(WXGRID_CURSOR_SELECT_CELL
);
3938 void wxGrid::DoEndDragResizeRow()
3940 if ( m_dragLastPos
>= 0 )
3942 // erase the last line and resize the row
3944 int cw
, ch
, left
, dummy
;
3945 m_gridWin
->GetClientSize( &cw
, &ch
);
3946 CalcUnscrolledPosition( 0, 0, &left
, &dummy
);
3948 wxClientDC
dc( m_gridWin
);
3950 dc
.SetLogicalFunction( wxINVERT
);
3951 dc
.DrawLine( left
, m_dragLastPos
, left
+cw
, m_dragLastPos
);
3952 HideCellEditControl();
3954 int rowTop
= GetRowTop(m_dragRowOrCol
);
3955 SetRowSize( m_dragRowOrCol
,
3956 wxMax( m_dragLastPos
- rowTop
, WXGRID_MIN_ROW_HEIGHT
) );
3958 if ( !GetBatchCount() )
3960 // Only needed to get the correct rect.y:
3961 wxRect
rect ( CellToRect( m_dragRowOrCol
, 0 ) );
3963 CalcScrolledPosition(0, rect
.y
, &dummy
, &rect
.y
);
3964 rect
.width
= m_rowLabelWidth
;
3965 rect
.height
= ch
- rect
.y
;
3966 m_rowLabelWin
->Refresh( TRUE
, &rect
);
3968 m_gridWin
->Refresh( FALSE
, &rect
);
3971 ShowCellEditControl();
3976 void wxGrid::DoEndDragResizeCol()
3978 if ( m_dragLastPos
>= 0 )
3980 // erase the last line and resize the col
3982 int cw
, ch
, dummy
, top
;
3983 m_gridWin
->GetClientSize( &cw
, &ch
);
3984 CalcUnscrolledPosition( 0, 0, &dummy
, &top
);
3986 wxClientDC
dc( m_gridWin
);
3988 dc
.SetLogicalFunction( wxINVERT
);
3989 dc
.DrawLine( m_dragLastPos
, top
, m_dragLastPos
, top
+ch
);
3990 HideCellEditControl();
3992 int colLeft
= GetColLeft(m_dragRowOrCol
);
3993 SetColSize( m_dragRowOrCol
,
3994 wxMax( m_dragLastPos
- colLeft
,
3995 GetColMinimalWidth(m_dragRowOrCol
) ) );
3997 if ( !GetBatchCount() )
3999 // Only needed to get the correct rect.x:
4000 wxRect
rect ( CellToRect( 0, m_dragRowOrCol
) );
4002 CalcScrolledPosition(rect
.x
, 0, &rect
.x
, &dummy
);
4003 rect
.width
= cw
- rect
.x
;
4004 rect
.height
= m_colLabelHeight
;
4005 m_colLabelWin
->Refresh( TRUE
, &rect
);
4007 m_gridWin
->Refresh( FALSE
, &rect
);
4010 ShowCellEditControl();
4017 // ------ interaction with data model
4019 bool wxGrid::ProcessTableMessage( wxGridTableMessage
& msg
)
4021 switch ( msg
.GetId() )
4023 case wxGRIDTABLE_REQUEST_VIEW_GET_VALUES
:
4024 return GetModelValues();
4026 case wxGRIDTABLE_REQUEST_VIEW_SEND_VALUES
:
4027 return SetModelValues();
4029 case wxGRIDTABLE_NOTIFY_ROWS_INSERTED
:
4030 case wxGRIDTABLE_NOTIFY_ROWS_APPENDED
:
4031 case wxGRIDTABLE_NOTIFY_ROWS_DELETED
:
4032 case wxGRIDTABLE_NOTIFY_COLS_INSERTED
:
4033 case wxGRIDTABLE_NOTIFY_COLS_APPENDED
:
4034 case wxGRIDTABLE_NOTIFY_COLS_DELETED
:
4035 return Redimension( msg
);
4044 // The behaviour of this function depends on the grid table class
4045 // Clear() function. For the default wxGridStringTable class the
4046 // behavious is to replace all cell contents with wxEmptyString but
4047 // not to change the number of rows or cols.
4049 void wxGrid::ClearGrid()
4054 SetEditControlValue();
4055 if ( !GetBatchCount() ) m_gridWin
->Refresh();
4060 bool wxGrid::InsertRows( int pos
, int numRows
, bool WXUNUSED(updateLabels
) )
4062 // TODO: something with updateLabels flag
4066 wxFAIL_MSG( wxT("Called wxGrid::InsertRows() before calling CreateGrid()") );
4072 if (IsCellEditControlEnabled())
4073 DisableCellEditControl();
4075 bool ok
= m_table
->InsertRows( pos
, numRows
);
4077 // the table will have sent the results of the insert row
4078 // operation to this view object as a grid table message
4082 if ( m_numCols
== 0 )
4084 m_table
->AppendCols( WXGRID_DEFAULT_NUMBER_COLS
);
4086 // TODO: perhaps instead of appending the default number of cols
4087 // we should remember what the last non-zero number of cols was ?
4091 if ( m_currentCellCoords
== wxGridNoCellCoords
)
4093 // if we have just inserted cols into an empty grid the current
4094 // cell will be undefined...
4096 SetCurrentCell( 0, 0 );
4100 if ( !GetBatchCount() ) Refresh();
4103 SetEditControlValue();
4113 bool wxGrid::AppendRows( int numRows
, bool WXUNUSED(updateLabels
) )
4115 // TODO: something with updateLabels flag
4119 wxFAIL_MSG( wxT("Called wxGrid::AppendRows() before calling CreateGrid()") );
4123 if ( m_table
&& m_table
->AppendRows( numRows
) )
4125 if ( m_currentCellCoords
== wxGridNoCellCoords
)
4127 // if we have just inserted cols into an empty grid the current
4128 // cell will be undefined...
4130 SetCurrentCell( 0, 0 );
4133 // the table will have sent the results of the append row
4134 // operation to this view object as a grid table message
4137 if ( !GetBatchCount() ) Refresh();
4147 bool wxGrid::DeleteRows( int pos
, int numRows
, bool WXUNUSED(updateLabels
) )
4149 // TODO: something with updateLabels flag
4153 wxFAIL_MSG( wxT("Called wxGrid::DeleteRows() before calling CreateGrid()") );
4159 if (IsCellEditControlEnabled())
4160 DisableCellEditControl();
4162 if (m_table
->DeleteRows( pos
, numRows
))
4165 // the table will have sent the results of the delete row
4166 // operation to this view object as a grid table message
4169 if ( !GetBatchCount() ) Refresh();
4177 bool wxGrid::InsertCols( int pos
, int numCols
, bool WXUNUSED(updateLabels
) )
4179 // TODO: something with updateLabels flag
4183 wxFAIL_MSG( wxT("Called wxGrid::InsertCols() before calling CreateGrid()") );
4189 if (IsCellEditControlEnabled())
4190 DisableCellEditControl();
4192 bool ok
= m_table
->InsertCols( pos
, numCols
);
4194 // the table will have sent the results of the insert col
4195 // operation to this view object as a grid table message
4199 if ( m_currentCellCoords
== wxGridNoCellCoords
)
4201 // if we have just inserted cols into an empty grid the current
4202 // cell will be undefined...
4204 SetCurrentCell( 0, 0 );
4208 if ( !GetBatchCount() ) Refresh();
4211 SetEditControlValue();
4221 bool wxGrid::AppendCols( int numCols
, bool WXUNUSED(updateLabels
) )
4223 // TODO: something with updateLabels flag
4227 wxFAIL_MSG( wxT("Called wxGrid::AppendCols() before calling CreateGrid()") );
4231 if ( m_table
&& m_table
->AppendCols( numCols
) )
4233 // the table will have sent the results of the append col
4234 // operation to this view object as a grid table message
4236 if ( m_currentCellCoords
== wxGridNoCellCoords
)
4238 // if we have just inserted cols into an empty grid the current
4239 // cell will be undefined...
4241 SetCurrentCell( 0, 0 );
4245 if ( !GetBatchCount() ) Refresh();
4255 bool wxGrid::DeleteCols( int pos
, int numCols
, bool WXUNUSED(updateLabels
) )
4257 // TODO: something with updateLabels flag
4261 wxFAIL_MSG( wxT("Called wxGrid::DeleteCols() before calling CreateGrid()") );
4267 if (IsCellEditControlEnabled())
4268 DisableCellEditControl();
4270 if ( m_table
->DeleteCols( pos
, numCols
) )
4272 // the table will have sent the results of the delete col
4273 // operation to this view object as a grid table message
4276 if ( !GetBatchCount() ) Refresh();
4286 // ----- event handlers
4289 // Generate a grid event based on a mouse event and
4290 // return the result of ProcessEvent()
4292 bool wxGrid::SendEvent( const wxEventType type
,
4294 wxMouseEvent
& mouseEv
)
4296 if ( type
== wxEVT_GRID_ROW_SIZE
|| type
== wxEVT_GRID_COL_SIZE
)
4298 int rowOrCol
= (row
== -1 ? col
: row
);
4300 wxGridSizeEvent
gridEvt( GetId(),
4304 mouseEv
.GetX(), mouseEv
.GetY(),
4305 mouseEv
.ControlDown(),
4306 mouseEv
.ShiftDown(),
4308 mouseEv
.MetaDown() );
4310 return GetEventHandler()->ProcessEvent(gridEvt
);
4312 else if ( type
== wxEVT_GRID_RANGE_SELECT
)
4314 wxGridRangeSelectEvent
gridEvt( GetId(),
4318 m_selectedBottomRight
,
4319 mouseEv
.ControlDown(),
4320 mouseEv
.ShiftDown(),
4322 mouseEv
.MetaDown() );
4324 return GetEventHandler()->ProcessEvent(gridEvt
);
4328 wxGridEvent
gridEvt( GetId(),
4332 mouseEv
.GetX(), mouseEv
.GetY(),
4333 mouseEv
.ControlDown(),
4334 mouseEv
.ShiftDown(),
4336 mouseEv
.MetaDown() );
4338 return GetEventHandler()->ProcessEvent(gridEvt
);
4343 // Generate a grid event of specified type and return the result
4344 // of ProcessEvent().
4346 bool wxGrid::SendEvent( const wxEventType type
,
4349 if ( type
== wxEVT_GRID_ROW_SIZE
|| type
== wxEVT_GRID_COL_SIZE
)
4351 int rowOrCol
= (row
== -1 ? col
: row
);
4353 wxGridSizeEvent
gridEvt( GetId(),
4358 return GetEventHandler()->ProcessEvent(gridEvt
);
4362 wxGridEvent
gridEvt( GetId(),
4367 return GetEventHandler()->ProcessEvent(gridEvt
);
4372 void wxGrid::OnPaint( wxPaintEvent
& WXUNUSED(event
) )
4374 wxPaintDC
dc( this );
4376 if ( m_currentCellCoords
== wxGridNoCellCoords
&&
4377 m_numRows
&& m_numCols
)
4379 m_currentCellCoords
.Set(0, 0);
4380 SetEditControlValue();
4381 ShowCellEditControl();
4388 // This is just here to make sure that CalcDimensions gets called when
4389 // the grid view is resized... then the size event is skipped to allow
4390 // the box sizers to handle everything
4392 void wxGrid::OnSize( wxSizeEvent
& event
)
4399 void wxGrid::OnKeyDown( wxKeyEvent
& event
)
4401 if ( m_inOnKeyDown
)
4403 // shouldn't be here - we are going round in circles...
4405 wxFAIL_MSG( wxT("wxGrid::OnKeyDown called while already active") );
4408 m_inOnKeyDown
= TRUE
;
4410 // propagate the event up and see if it gets processed
4412 wxWindow
*parent
= GetParent();
4413 wxKeyEvent
keyEvt( event
);
4414 keyEvt
.SetEventObject( parent
);
4416 if ( !parent
->GetEventHandler()->ProcessEvent( keyEvt
) )
4419 // TODO: Should also support Shift-cursor keys for
4420 // extending the selection. Maybe add a flag to
4421 // MoveCursorXXX() and MoveCursorXXXBlock() and
4422 // just send event.ShiftDown().
4424 // try local handlers
4426 switch ( event
.KeyCode() )
4429 if ( event
.ControlDown() )
4431 MoveCursorUpBlock();
4440 if ( event
.ControlDown() )
4442 MoveCursorDownBlock();
4451 if ( event
.ControlDown() )
4453 MoveCursorLeftBlock();
4462 if ( event
.ControlDown() )
4464 MoveCursorRightBlock();
4473 if ( event
.ControlDown() )
4475 event
.Skip(); // to let the edit control have the return
4484 if (event
.ShiftDown())
4491 if ( event
.ControlDown() )
4493 MakeCellVisible( 0, 0 );
4494 SetCurrentCell( 0, 0 );
4503 if ( event
.ControlDown() )
4505 MakeCellVisible( m_numRows
-1, m_numCols
-1 );
4506 SetCurrentCell( m_numRows
-1, m_numCols
-1 );
4522 // We don't want these keys to trigger the edit control, any others?
4531 if ( !IsEditable() )
4536 // Otherwise fall through to default
4539 // now try the cell edit control
4541 if ( !IsCellEditControlEnabled() && CanEnableCellControl() )
4543 EnableCellEditControl();
4544 int row
= m_currentCellCoords
.GetRow();
4545 int col
= m_currentCellCoords
.GetCol();
4546 wxGridCellAttr
* attr
= GetCellAttr(row
, col
);
4547 attr
->GetEditor(GetDefaultEditorForCell(row
, col
))->StartingKey(event
);
4552 // let others process char events for readonly cells
4559 m_inOnKeyDown
= FALSE
;
4563 void wxGrid::OnEraseBackground(wxEraseEvent
&)
4567 void wxGrid::SetCurrentCell( const wxGridCellCoords
& coords
)
4569 if ( SendEvent( wxEVT_GRID_SELECT_CELL
, coords
.GetRow(), coords
.GetCol() ) )
4571 // the event has been intercepted - do nothing
4576 m_currentCellCoords
!= wxGridNoCellCoords
)
4578 HideCellEditControl();
4579 SaveEditControlValue();
4580 DisableCellEditControl();
4582 // Clear the old current cell highlight
4583 wxRect r
= BlockToDeviceRect(m_currentCellCoords
, m_currentCellCoords
);
4585 // Otherwise refresh redraws the highlight!
4586 m_currentCellCoords
= coords
;
4588 m_gridWin
->Refresh( FALSE
, &r
);
4591 m_currentCellCoords
= coords
;
4593 SetEditControlValue();
4597 wxClientDC
dc(m_gridWin
);
4600 wxGridCellAttr
* attr
= GetCellAttr(coords
);
4601 DrawCellHighlight(dc
, attr
);
4604 if ( IsSelection() )
4606 wxRect
r( SelectionToDeviceRect() );
4608 if ( !GetBatchCount() ) m_gridWin
->Refresh( FALSE
, &r
);
4615 // ------ functions to get/send data (see also public functions)
4618 bool wxGrid::GetModelValues()
4622 // all we need to do is repaint the grid
4624 m_gridWin
->Refresh();
4632 bool wxGrid::SetModelValues()
4638 for ( row
= 0; row
< m_numRows
; row
++ )
4640 for ( col
= 0; col
< m_numCols
; col
++ )
4642 m_table
->SetValue( row
, col
, GetCellValue(row
, col
) );
4654 // Note - this function only draws cells that are in the list of
4655 // exposed cells (usually set from the update region by
4656 // CalcExposedCells)
4658 void wxGrid::DrawGridCellArea( wxDC
& dc
)
4660 if ( !m_numRows
|| !m_numCols
) return;
4663 size_t numCells
= m_cellsExposed
.GetCount();
4665 for ( i
= 0; i
< numCells
; i
++ )
4667 DrawCell( dc
, m_cellsExposed
[i
] );
4672 void wxGrid::DrawCell( wxDC
& dc
, const wxGridCellCoords
& coords
)
4674 int row
= coords
.GetRow();
4675 int col
= coords
.GetCol();
4677 if ( GetColWidth(col
) <= 0 || GetRowHeight(row
) <= 0 )
4680 // we draw the cell border ourselves
4681 #if !WXGRID_DRAW_LINES
4682 if ( m_gridLinesEnabled
)
4683 DrawCellBorder( dc
, coords
);
4686 wxGridCellAttr
* attr
= GetCellAttr(row
, col
);
4688 bool isCurrent
= coords
== m_currentCellCoords
;
4691 rect
.x
= GetColLeft(col
);
4692 rect
.y
= GetRowTop(row
);
4693 rect
.width
= GetColWidth(col
) - 1;
4694 rect
.height
= GetRowHeight(row
) - 1;
4696 // if the editor is shown, we should use it and not the renderer
4697 if ( isCurrent
&& IsCellEditControlEnabled() )
4699 attr
->GetEditor(GetDefaultEditorForCell(row
, col
))->
4700 PaintBackground(rect
, attr
);
4704 // but all the rest is drawn by the cell renderer and hence may be
4706 attr
->GetRenderer(GetDefaultRendererForCell(row
,col
))->
4707 Draw(*this, *attr
, dc
, rect
, row
, col
, IsInSelection(coords
));
4714 void wxGrid::DrawCellHighlight( wxDC
& dc
, const wxGridCellAttr
*attr
)
4716 int row
= m_currentCellCoords
.GetRow();
4717 int col
= m_currentCellCoords
.GetCol();
4719 if ( GetColWidth(col
) <= 0 || GetRowHeight(row
) <= 0 )
4723 rect
.x
= GetColLeft(col
);
4724 rect
.y
= GetRowTop(row
);
4725 rect
.width
= GetColWidth(col
) - 1;
4726 rect
.height
= GetRowHeight(row
) - 1;
4728 // hmmm... what could we do here to show that the cell is disabled?
4729 // for now, I just draw a thinner border than for the other ones, but
4730 // it doesn't look really good
4731 dc
.SetPen(wxPen(m_gridLineColour
, attr
->IsReadOnly() ? 1 : 3, wxSOLID
));
4732 dc
.SetBrush(*wxTRANSPARENT_BRUSH
);
4734 dc
.DrawRectangle(rect
);
4737 // VZ: my experiments with 3d borders...
4739 // how to properly set colours for arbitrary bg?
4740 wxCoord x1
= rect
.x
,
4742 x2
= rect
.x
+ rect
.width
-1,
4743 y2
= rect
.y
+ rect
.height
-1;
4745 dc
.SetPen(*wxWHITE_PEN
);
4746 dc
.DrawLine(x1
, y1
, x2
, y1
);
4747 dc
.DrawLine(x1
, y1
, x1
, y2
);
4749 dc
.DrawLine(x1
+ 1, y2
- 1, x2
- 1, y2
- 1);
4750 dc
.DrawLine(x2
- 1, y1
+ 1, x2
- 1, y2
);
4752 dc
.SetPen(*wxBLACK_PEN
);
4753 dc
.DrawLine(x1
, y2
, x2
, y2
);
4754 dc
.DrawLine(x2
, y1
, x2
, y2
+1);
4759 void wxGrid::DrawCellBorder( wxDC
& dc
, const wxGridCellCoords
& coords
)
4761 int row
= coords
.GetRow();
4762 int col
= coords
.GetCol();
4763 if ( GetColWidth(col
) <= 0 || GetRowHeight(row
) <= 0 )
4766 dc
.SetPen( wxPen(GetGridLineColour(), 1, wxSOLID
) );
4768 // right hand border
4770 dc
.DrawLine( GetColRight(col
), GetRowTop(row
),
4771 GetColRight(col
), GetRowBottom(row
) );
4775 dc
.DrawLine( GetColLeft(col
), GetRowBottom(row
),
4776 GetColRight(col
), GetRowBottom(row
) );
4779 void wxGrid::DrawHighlight(wxDC
& dc
)
4781 if ( IsCellEditControlEnabled() )
4783 // don't show highlight when the edit control is shown
4787 // if the active cell was repainted, repaint its highlight too because it
4788 // might have been damaged by the grid lines
4789 size_t count
= m_cellsExposed
.GetCount();
4790 for ( size_t n
= 0; n
< count
; n
++ )
4792 if ( m_cellsExposed
[n
] == m_currentCellCoords
)
4794 wxGridCellAttr
* attr
= GetCellAttr(m_currentCellCoords
);
4795 DrawCellHighlight(dc
, attr
);
4803 // TODO: remove this ???
4804 // This is used to redraw all grid lines e.g. when the grid line colour
4807 void wxGrid::DrawAllGridLines( wxDC
& dc
, const wxRegion
& reg
)
4809 if ( !m_gridLinesEnabled
||
4811 !m_numCols
) return;
4813 int top
, bottom
, left
, right
;
4818 m_gridWin
->GetClientSize(&cw
, &ch
);
4820 // virtual coords of visible area
4822 CalcUnscrolledPosition( 0, 0, &left
, &top
);
4823 CalcUnscrolledPosition( cw
, ch
, &right
, &bottom
);
4828 reg
.GetBox(x
, y
, w
, h
);
4829 CalcUnscrolledPosition( x
, y
, &left
, &top
);
4830 CalcUnscrolledPosition( x
+ w
, y
+ h
, &right
, &bottom
);
4833 // avoid drawing grid lines past the last row and col
4835 right
= wxMin( right
, GetColRight(m_numCols
- 1) );
4836 bottom
= wxMin( bottom
, GetRowBottom(m_numRows
- 1) );
4838 dc
.SetPen( wxPen(GetGridLineColour(), 1, wxSOLID
) );
4840 // horizontal grid lines
4843 for ( i
= 0; i
< m_numRows
; i
++ )
4845 int bot
= GetRowBottom(i
) - 1;
4854 dc
.DrawLine( left
, bot
, right
, bot
);
4859 // vertical grid lines
4861 for ( i
= 0; i
< m_numCols
; i
++ )
4863 int colRight
= GetColRight(i
) - 1;
4864 if ( colRight
> right
)
4869 if ( colRight
>= left
)
4871 dc
.DrawLine( colRight
, top
, colRight
, bottom
);
4877 void wxGrid::DrawRowLabels( wxDC
& dc
)
4879 if ( !m_numRows
|| !m_numCols
) return;
4882 size_t numLabels
= m_rowLabelsExposed
.GetCount();
4884 for ( i
= 0; i
< numLabels
; i
++ )
4886 DrawRowLabel( dc
, m_rowLabelsExposed
[i
] );
4891 void wxGrid::DrawRowLabel( wxDC
& dc
, int row
)
4893 if ( GetRowHeight(row
) <= 0 )
4896 int rowTop
= GetRowTop(row
),
4897 rowBottom
= GetRowBottom(row
) - 1;
4899 dc
.SetPen( *wxBLACK_PEN
);
4900 dc
.DrawLine( m_rowLabelWidth
-1, rowTop
,
4901 m_rowLabelWidth
-1, rowBottom
);
4903 dc
.DrawLine( 0, rowBottom
, m_rowLabelWidth
-1, rowBottom
);
4905 dc
.SetPen( *wxWHITE_PEN
);
4906 dc
.DrawLine( 0, rowTop
, 0, rowBottom
);
4907 dc
.DrawLine( 0, rowTop
, m_rowLabelWidth
-1, rowTop
);
4909 dc
.SetBackgroundMode( wxTRANSPARENT
);
4910 dc
.SetTextForeground( GetLabelTextColour() );
4911 dc
.SetFont( GetLabelFont() );
4914 GetRowLabelAlignment( &hAlign
, &vAlign
);
4918 rect
.SetY( GetRowTop(row
) + 2 );
4919 rect
.SetWidth( m_rowLabelWidth
- 4 );
4920 rect
.SetHeight( GetRowHeight(row
) - 4 );
4921 DrawTextRectangle( dc
, GetRowLabelValue( row
), rect
, hAlign
, vAlign
);
4925 void wxGrid::DrawColLabels( wxDC
& dc
)
4927 if ( !m_numRows
|| !m_numCols
) return;
4930 size_t numLabels
= m_colLabelsExposed
.GetCount();
4932 for ( i
= 0; i
< numLabels
; i
++ )
4934 DrawColLabel( dc
, m_colLabelsExposed
[i
] );
4939 void wxGrid::DrawColLabel( wxDC
& dc
, int col
)
4941 if ( GetColWidth(col
) <= 0 )
4944 int colLeft
= GetColLeft(col
),
4945 colRight
= GetColRight(col
) - 1;
4947 dc
.SetPen( *wxBLACK_PEN
);
4948 dc
.DrawLine( colRight
, 0,
4949 colRight
, m_colLabelHeight
-1 );
4951 dc
.DrawLine( colLeft
, m_colLabelHeight
-1,
4952 colRight
, m_colLabelHeight
-1 );
4954 dc
.SetPen( *wxWHITE_PEN
);
4955 dc
.DrawLine( colLeft
, 0, colLeft
, m_colLabelHeight
-1 );
4956 dc
.DrawLine( colLeft
, 0, colRight
, 0 );
4958 dc
.SetBackgroundMode( wxTRANSPARENT
);
4959 dc
.SetTextForeground( GetLabelTextColour() );
4960 dc
.SetFont( GetLabelFont() );
4962 dc
.SetBackgroundMode( wxTRANSPARENT
);
4963 dc
.SetTextForeground( GetLabelTextColour() );
4964 dc
.SetFont( GetLabelFont() );
4967 GetColLabelAlignment( &hAlign
, &vAlign
);
4970 rect
.SetX( colLeft
+ 2 );
4972 rect
.SetWidth( GetColWidth(col
) - 4 );
4973 rect
.SetHeight( m_colLabelHeight
- 4 );
4974 DrawTextRectangle( dc
, GetColLabelValue( col
), rect
, hAlign
, vAlign
);
4978 void wxGrid::DrawTextRectangle( wxDC
& dc
,
4979 const wxString
& value
,
4984 long textWidth
, textHeight
;
4985 long lineWidth
, lineHeight
;
4986 wxArrayString lines
;
4988 dc
.SetClippingRegion( rect
);
4989 StringToLines( value
, lines
);
4990 if ( lines
.GetCount() )
4992 GetTextBoxSize( dc
, lines
, &textWidth
, &textHeight
);
4993 dc
.GetTextExtent( lines
[0], &lineWidth
, &lineHeight
);
4996 switch ( horizAlign
)
4999 x
= rect
.x
+ (rect
.width
- textWidth
- 1);
5003 x
= rect
.x
+ ((rect
.width
- textWidth
)/2);
5012 switch ( vertAlign
)
5015 y
= rect
.y
+ (rect
.height
- textHeight
- 1);
5019 y
= rect
.y
+ ((rect
.height
- textHeight
)/2);
5028 for ( size_t i
= 0; i
< lines
.GetCount(); i
++ )
5030 dc
.DrawText( lines
[i
], (long)x
, (long)y
);
5035 dc
.DestroyClippingRegion();
5039 // Split multi line text up into an array of strings. Any existing
5040 // contents of the string array are preserved.
5042 void wxGrid::StringToLines( const wxString
& value
, wxArrayString
& lines
)
5046 wxString eol
= wxTextFile::GetEOL( wxTextFileType_Unix
);
5047 wxString tVal
= wxTextFile::Translate( value
, wxTextFileType_Unix
);
5049 while ( startPos
< (int)tVal
.Length() )
5051 pos
= tVal
.Mid(startPos
).Find( eol
);
5056 else if ( pos
== 0 )
5058 lines
.Add( wxEmptyString
);
5062 lines
.Add( value
.Mid(startPos
, pos
) );
5066 if ( startPos
< (int)value
.Length() )
5068 lines
.Add( value
.Mid( startPos
) );
5073 void wxGrid::GetTextBoxSize( wxDC
& dc
,
5074 wxArrayString
& lines
,
5075 long *width
, long *height
)
5082 for ( i
= 0; i
< lines
.GetCount(); i
++ )
5084 dc
.GetTextExtent( lines
[i
], &lineW
, &lineH
);
5085 w
= wxMax( w
, lineW
);
5095 // ------ Edit control functions
5099 void wxGrid::EnableEditing( bool edit
)
5101 // TODO: improve this ?
5103 if ( edit
!= m_editable
)
5107 // FIXME IMHO this won't disable the edit control if edit == FALSE
5108 // because of the check in the beginning of
5109 // EnableCellEditControl() just below (VZ)
5110 EnableCellEditControl(m_editable
);
5115 void wxGrid::EnableCellEditControl( bool enable
)
5120 if ( m_currentCellCoords
== wxGridNoCellCoords
)
5121 SetCurrentCell( 0, 0 );
5123 if ( enable
!= m_cellEditCtrlEnabled
)
5125 // TODO allow the app to Veto() this event?
5126 SendEvent(enable
? wxEVT_GRID_EDITOR_SHOWN
: wxEVT_GRID_EDITOR_HIDDEN
);
5130 // this should be checked by the caller!
5131 wxASSERT_MSG( CanEnableCellControl(),
5132 _T("can't enable editing for this cell!") );
5134 // do it before ShowCellEditControl()
5135 m_cellEditCtrlEnabled
= enable
;
5137 SetEditControlValue();
5138 ShowCellEditControl();
5142 HideCellEditControl();
5143 SaveEditControlValue();
5145 // do it after HideCellEditControl()
5146 m_cellEditCtrlEnabled
= enable
;
5151 bool wxGrid::IsCurrentCellReadOnly() const
5154 wxGridCellAttr
* attr
= ((wxGrid
*)this)->GetCellAttr(m_currentCellCoords
);
5155 bool readonly
= attr
->IsReadOnly();
5161 bool wxGrid::CanEnableCellControl() const
5163 return m_editable
&& !IsCurrentCellReadOnly();
5166 bool wxGrid::IsCellEditControlEnabled() const
5168 // the cell edit control might be disable for all cells or just for the
5169 // current one if it's read only
5170 return m_cellEditCtrlEnabled
? !IsCurrentCellReadOnly() : FALSE
;
5173 void wxGrid::ShowCellEditControl()
5175 if ( IsCellEditControlEnabled() )
5177 if ( !IsVisible( m_currentCellCoords
) )
5183 wxRect rect
= CellToRect( m_currentCellCoords
);
5184 int row
= m_currentCellCoords
.GetRow();
5185 int col
= m_currentCellCoords
.GetCol();
5187 // convert to scrolled coords
5189 CalcScrolledPosition( rect
.x
, rect
.y
, &rect
.x
, &rect
.y
);
5191 // done in PaintBackground()
5193 // erase the highlight and the cell contents because the editor
5194 // might not cover the entire cell
5195 wxClientDC
dc( m_gridWin
);
5197 dc
.SetBrush(*wxLIGHT_GREY_BRUSH
); //wxBrush(attr->GetBackgroundColour(), wxSOLID));
5198 dc
.SetPen(*wxTRANSPARENT_PEN
);
5199 dc
.DrawRectangle(rect
);
5202 // cell is shifted by one pixel
5206 wxGridCellAttr
* attr
= GetCellAttr(row
, col
);
5207 wxGridCellEditor
* editor
= attr
->GetEditor(GetDefaultEditorForCell(row
, col
));
5208 if ( !editor
->IsCreated() )
5210 editor
->Create(m_gridWin
, -1,
5211 new wxGridCellEditorEvtHandler(this, editor
));
5214 editor
->SetSize( rect
);
5216 editor
->Show( TRUE
, attr
);
5217 editor
->BeginEdit(row
, col
, this);
5224 void wxGrid::HideCellEditControl()
5226 if ( IsCellEditControlEnabled() )
5228 int row
= m_currentCellCoords
.GetRow();
5229 int col
= m_currentCellCoords
.GetCol();
5231 wxGridCellAttr
* attr
= GetCellAttr(row
, col
);
5232 attr
->GetEditor(GetDefaultEditorForCell(row
, col
))->Show( FALSE
);
5234 m_gridWin
->SetFocus();
5239 void wxGrid::SetEditControlValue( const wxString
& value
)
5241 // RD: The new Editors get the value from the table themselves now. This
5242 // method can probably be removed...
5246 void wxGrid::SaveEditControlValue()
5248 if ( IsCellEditControlEnabled() )
5250 int row
= m_currentCellCoords
.GetRow();
5251 int col
= m_currentCellCoords
.GetCol();
5253 wxGridCellAttr
* attr
= GetCellAttr(row
, col
);
5254 wxGridCellEditor
* editor
= attr
->GetEditor(GetDefaultEditorForCell(row
, col
));
5255 bool changed
= editor
->EndEdit(row
, col
, TRUE
, this);
5261 SendEvent( wxEVT_GRID_CELL_CHANGE
,
5262 m_currentCellCoords
.GetRow(),
5263 m_currentCellCoords
.GetCol() );
5270 // ------ Grid location functions
5271 // Note that all of these functions work with the logical coordinates of
5272 // grid cells and labels so you will need to convert from device
5273 // coordinates for mouse events etc.
5276 void wxGrid::XYToCell( int x
, int y
, wxGridCellCoords
& coords
)
5278 int row
= YToRow(y
);
5279 int col
= XToCol(x
);
5281 if ( row
== -1 || col
== -1 )
5283 coords
= wxGridNoCellCoords
;
5287 coords
.Set( row
, col
);
5292 int wxGrid::YToRow( int y
)
5296 for ( i
= 0; i
< m_numRows
; i
++ )
5298 if ( y
< GetRowBottom(i
) )
5302 return m_numRows
; //-1;
5306 int wxGrid::XToCol( int x
)
5310 for ( i
= 0; i
< m_numCols
; i
++ )
5312 if ( x
< GetColRight(i
) )
5316 return m_numCols
; //-1;
5320 // return the row number that that the y coord is near the edge of, or
5321 // -1 if not near an edge
5323 int wxGrid::YToEdgeOfRow( int y
)
5327 for ( i
= 0; i
< m_numRows
; i
++ )
5329 if ( GetRowHeight(i
) > WXGRID_LABEL_EDGE_ZONE
)
5331 d
= abs( y
- GetRowBottom(i
) );
5332 if ( d
< WXGRID_LABEL_EDGE_ZONE
)
5341 // return the col number that that the x coord is near the edge of, or
5342 // -1 if not near an edge
5344 int wxGrid::XToEdgeOfCol( int x
)
5348 for ( i
= 0; i
< m_numCols
; i
++ )
5350 if ( GetColWidth(i
) > WXGRID_LABEL_EDGE_ZONE
)
5352 d
= abs( x
- GetColRight(i
) );
5353 if ( d
< WXGRID_LABEL_EDGE_ZONE
)
5362 wxRect
wxGrid::CellToRect( int row
, int col
)
5364 wxRect
rect( -1, -1, -1, -1 );
5366 if ( row
>= 0 && row
< m_numRows
&&
5367 col
>= 0 && col
< m_numCols
)
5369 rect
.x
= GetColLeft(col
);
5370 rect
.y
= GetRowTop(row
);
5371 rect
.width
= GetColWidth(col
);
5372 rect
.height
= GetRowHeight(row
);
5379 bool wxGrid::IsVisible( int row
, int col
, bool wholeCellVisible
)
5381 // get the cell rectangle in logical coords
5383 wxRect
r( CellToRect( row
, col
) );
5385 // convert to device coords
5387 int left
, top
, right
, bottom
;
5388 CalcScrolledPosition( r
.GetLeft(), r
.GetTop(), &left
, &top
);
5389 CalcScrolledPosition( r
.GetRight(), r
.GetBottom(), &right
, &bottom
);
5391 // check against the client area of the grid window
5394 m_gridWin
->GetClientSize( &cw
, &ch
);
5396 if ( wholeCellVisible
)
5398 // is the cell wholly visible ?
5400 return ( left
>= 0 && right
<= cw
&&
5401 top
>= 0 && bottom
<= ch
);
5405 // is the cell partly visible ?
5407 return ( ((left
>=0 && left
< cw
) || (right
> 0 && right
<= cw
)) &&
5408 ((top
>=0 && top
< ch
) || (bottom
> 0 && bottom
<= ch
)) );
5413 // make the specified cell location visible by doing a minimal amount
5416 void wxGrid::MakeCellVisible( int row
, int col
)
5419 int xpos
= -1, ypos
= -1;
5421 if ( row
>= 0 && row
< m_numRows
&&
5422 col
>= 0 && col
< m_numCols
)
5424 // get the cell rectangle in logical coords
5426 wxRect
r( CellToRect( row
, col
) );
5428 // convert to device coords
5430 int left
, top
, right
, bottom
;
5431 CalcScrolledPosition( r
.GetLeft(), r
.GetTop(), &left
, &top
);
5432 CalcScrolledPosition( r
.GetRight(), r
.GetBottom(), &right
, &bottom
);
5435 m_gridWin
->GetClientSize( &cw
, &ch
);
5441 else if ( bottom
> ch
)
5443 int h
= r
.GetHeight();
5445 for ( i
= row
-1; i
>= 0; i
-- )
5447 int rowHeight
= GetRowHeight(i
);
5448 if ( h
+ rowHeight
> ch
)
5455 // we divide it later by GRID_SCROLL_LINE, make sure that we don't
5456 // have rounding errors (this is important, because if we do, we
5457 // might not scroll at all and some cells won't be redrawn)
5458 ypos
+= GRID_SCROLL_LINE
/ 2;
5465 else if ( right
> cw
)
5467 int w
= r
.GetWidth();
5469 for ( i
= col
-1; i
>= 0; i
-- )
5471 int colWidth
= GetColWidth(i
);
5472 if ( w
+ colWidth
> cw
)
5479 // see comment for ypos above
5480 xpos
+= GRID_SCROLL_LINE
/ 2;
5483 if ( xpos
!= -1 || ypos
!= -1 )
5485 if ( xpos
!= -1 ) xpos
/= GRID_SCROLL_LINE
;
5486 if ( ypos
!= -1 ) ypos
/= GRID_SCROLL_LINE
;
5487 Scroll( xpos
, ypos
);
5495 // ------ Grid cursor movement functions
5498 bool wxGrid::MoveCursorUp()
5500 if ( m_currentCellCoords
!= wxGridNoCellCoords
&&
5501 m_currentCellCoords
.GetRow() > 0 )
5503 MakeCellVisible( m_currentCellCoords
.GetRow() - 1,
5504 m_currentCellCoords
.GetCol() );
5506 SetCurrentCell( m_currentCellCoords
.GetRow() - 1,
5507 m_currentCellCoords
.GetCol() );
5516 bool wxGrid::MoveCursorDown()
5518 // TODO: allow for scrolling
5520 if ( m_currentCellCoords
!= wxGridNoCellCoords
&&
5521 m_currentCellCoords
.GetRow() < m_numRows
-1 )
5523 MakeCellVisible( m_currentCellCoords
.GetRow() + 1,
5524 m_currentCellCoords
.GetCol() );
5526 SetCurrentCell( m_currentCellCoords
.GetRow() + 1,
5527 m_currentCellCoords
.GetCol() );
5536 bool wxGrid::MoveCursorLeft()
5538 if ( m_currentCellCoords
!= wxGridNoCellCoords
&&
5539 m_currentCellCoords
.GetCol() > 0 )
5541 MakeCellVisible( m_currentCellCoords
.GetRow(),
5542 m_currentCellCoords
.GetCol() - 1 );
5544 SetCurrentCell( m_currentCellCoords
.GetRow(),
5545 m_currentCellCoords
.GetCol() - 1 );
5554 bool wxGrid::MoveCursorRight()
5556 if ( m_currentCellCoords
!= wxGridNoCellCoords
&&
5557 m_currentCellCoords
.GetCol() < m_numCols
- 1 )
5559 MakeCellVisible( m_currentCellCoords
.GetRow(),
5560 m_currentCellCoords
.GetCol() + 1 );
5562 SetCurrentCell( m_currentCellCoords
.GetRow(),
5563 m_currentCellCoords
.GetCol() + 1 );
5572 bool wxGrid::MovePageUp()
5574 if ( m_currentCellCoords
== wxGridNoCellCoords
) return FALSE
;
5576 int row
= m_currentCellCoords
.GetRow();
5580 m_gridWin
->GetClientSize( &cw
, &ch
);
5582 int y
= GetRowTop(row
);
5583 int newRow
= YToRow( y
- ch
+ 1 );
5588 else if ( newRow
== row
)
5593 MakeCellVisible( newRow
, m_currentCellCoords
.GetCol() );
5594 SetCurrentCell( newRow
, m_currentCellCoords
.GetCol() );
5602 bool wxGrid::MovePageDown()
5604 if ( m_currentCellCoords
== wxGridNoCellCoords
) return FALSE
;
5606 int row
= m_currentCellCoords
.GetRow();
5607 if ( row
< m_numRows
)
5610 m_gridWin
->GetClientSize( &cw
, &ch
);
5612 int y
= GetRowTop(row
);
5613 int newRow
= YToRow( y
+ ch
);
5616 newRow
= m_numRows
- 1;
5618 else if ( newRow
== row
)
5623 MakeCellVisible( newRow
, m_currentCellCoords
.GetCol() );
5624 SetCurrentCell( newRow
, m_currentCellCoords
.GetCol() );
5632 bool wxGrid::MoveCursorUpBlock()
5635 m_currentCellCoords
!= wxGridNoCellCoords
&&
5636 m_currentCellCoords
.GetRow() > 0 )
5638 int row
= m_currentCellCoords
.GetRow();
5639 int col
= m_currentCellCoords
.GetCol();
5641 if ( m_table
->IsEmptyCell(row
, col
) )
5643 // starting in an empty cell: find the next block of
5649 if ( !(m_table
->IsEmptyCell(row
, col
)) ) break;
5652 else if ( m_table
->IsEmptyCell(row
-1, col
) )
5654 // starting at the top of a block: find the next block
5660 if ( !(m_table
->IsEmptyCell(row
, col
)) ) break;
5665 // starting within a block: find the top of the block
5670 if ( m_table
->IsEmptyCell(row
, col
) )
5678 MakeCellVisible( row
, col
);
5679 SetCurrentCell( row
, col
);
5687 bool wxGrid::MoveCursorDownBlock()
5690 m_currentCellCoords
!= wxGridNoCellCoords
&&
5691 m_currentCellCoords
.GetRow() < m_numRows
-1 )
5693 int row
= m_currentCellCoords
.GetRow();
5694 int col
= m_currentCellCoords
.GetCol();
5696 if ( m_table
->IsEmptyCell(row
, col
) )
5698 // starting in an empty cell: find the next block of
5701 while ( row
< m_numRows
-1 )
5704 if ( !(m_table
->IsEmptyCell(row
, col
)) ) break;
5707 else if ( m_table
->IsEmptyCell(row
+1, col
) )
5709 // starting at the bottom of a block: find the next block
5712 while ( row
< m_numRows
-1 )
5715 if ( !(m_table
->IsEmptyCell(row
, col
)) ) break;
5720 // starting within a block: find the bottom of the block
5722 while ( row
< m_numRows
-1 )
5725 if ( m_table
->IsEmptyCell(row
, col
) )
5733 MakeCellVisible( row
, col
);
5734 SetCurrentCell( row
, col
);
5742 bool wxGrid::MoveCursorLeftBlock()
5745 m_currentCellCoords
!= wxGridNoCellCoords
&&
5746 m_currentCellCoords
.GetCol() > 0 )
5748 int row
= m_currentCellCoords
.GetRow();
5749 int col
= m_currentCellCoords
.GetCol();
5751 if ( m_table
->IsEmptyCell(row
, col
) )
5753 // starting in an empty cell: find the next block of
5759 if ( !(m_table
->IsEmptyCell(row
, col
)) ) break;
5762 else if ( m_table
->IsEmptyCell(row
, col
-1) )
5764 // starting at the left of a block: find the next block
5770 if ( !(m_table
->IsEmptyCell(row
, col
)) ) break;
5775 // starting within a block: find the left of the block
5780 if ( m_table
->IsEmptyCell(row
, col
) )
5788 MakeCellVisible( row
, col
);
5789 SetCurrentCell( row
, col
);
5797 bool wxGrid::MoveCursorRightBlock()
5800 m_currentCellCoords
!= wxGridNoCellCoords
&&
5801 m_currentCellCoords
.GetCol() < m_numCols
-1 )
5803 int row
= m_currentCellCoords
.GetRow();
5804 int col
= m_currentCellCoords
.GetCol();
5806 if ( m_table
->IsEmptyCell(row
, col
) )
5808 // starting in an empty cell: find the next block of
5811 while ( col
< m_numCols
-1 )
5814 if ( !(m_table
->IsEmptyCell(row
, col
)) ) break;
5817 else if ( m_table
->IsEmptyCell(row
, col
+1) )
5819 // starting at the right of a block: find the next block
5822 while ( col
< m_numCols
-1 )
5825 if ( !(m_table
->IsEmptyCell(row
, col
)) ) break;
5830 // starting within a block: find the right of the block
5832 while ( col
< m_numCols
-1 )
5835 if ( m_table
->IsEmptyCell(row
, col
) )
5843 MakeCellVisible( row
, col
);
5844 SetCurrentCell( row
, col
);
5855 // ------ Label values and formatting
5858 void wxGrid::GetRowLabelAlignment( int *horiz
, int *vert
)
5860 *horiz
= m_rowLabelHorizAlign
;
5861 *vert
= m_rowLabelVertAlign
;
5864 void wxGrid::GetColLabelAlignment( int *horiz
, int *vert
)
5866 *horiz
= m_colLabelHorizAlign
;
5867 *vert
= m_colLabelVertAlign
;
5870 wxString
wxGrid::GetRowLabelValue( int row
)
5874 return m_table
->GetRowLabelValue( row
);
5884 wxString
wxGrid::GetColLabelValue( int col
)
5888 return m_table
->GetColLabelValue( col
);
5899 void wxGrid::SetRowLabelSize( int width
)
5901 width
= wxMax( width
, 0 );
5902 if ( width
!= m_rowLabelWidth
)
5906 m_rowLabelWin
->Show( FALSE
);
5907 m_cornerLabelWin
->Show( FALSE
);
5909 else if ( m_rowLabelWidth
== 0 )
5911 m_rowLabelWin
->Show( TRUE
);
5912 if ( m_colLabelHeight
> 0 ) m_cornerLabelWin
->Show( TRUE
);
5915 m_rowLabelWidth
= width
;
5922 void wxGrid::SetColLabelSize( int height
)
5924 height
= wxMax( height
, 0 );
5925 if ( height
!= m_colLabelHeight
)
5929 m_colLabelWin
->Show( FALSE
);
5930 m_cornerLabelWin
->Show( FALSE
);
5932 else if ( m_colLabelHeight
== 0 )
5934 m_colLabelWin
->Show( TRUE
);
5935 if ( m_rowLabelWidth
> 0 ) m_cornerLabelWin
->Show( TRUE
);
5938 m_colLabelHeight
= height
;
5945 void wxGrid::SetLabelBackgroundColour( const wxColour
& colour
)
5947 if ( m_labelBackgroundColour
!= colour
)
5949 m_labelBackgroundColour
= colour
;
5950 m_rowLabelWin
->SetBackgroundColour( colour
);
5951 m_colLabelWin
->SetBackgroundColour( colour
);
5952 m_cornerLabelWin
->SetBackgroundColour( colour
);
5954 if ( !GetBatchCount() )
5956 m_rowLabelWin
->Refresh();
5957 m_colLabelWin
->Refresh();
5958 m_cornerLabelWin
->Refresh();
5963 void wxGrid::SetLabelTextColour( const wxColour
& colour
)
5965 if ( m_labelTextColour
!= colour
)
5967 m_labelTextColour
= colour
;
5968 if ( !GetBatchCount() )
5970 m_rowLabelWin
->Refresh();
5971 m_colLabelWin
->Refresh();
5976 void wxGrid::SetLabelFont( const wxFont
& font
)
5979 if ( !GetBatchCount() )
5981 m_rowLabelWin
->Refresh();
5982 m_colLabelWin
->Refresh();
5986 void wxGrid::SetRowLabelAlignment( int horiz
, int vert
)
5988 if ( horiz
== wxLEFT
|| horiz
== wxCENTRE
|| horiz
== wxRIGHT
)
5990 m_rowLabelHorizAlign
= horiz
;
5993 if ( vert
== wxTOP
|| vert
== wxCENTRE
|| vert
== wxBOTTOM
)
5995 m_rowLabelVertAlign
= vert
;
5998 if ( !GetBatchCount() )
6000 m_rowLabelWin
->Refresh();
6004 void wxGrid::SetColLabelAlignment( int horiz
, int vert
)
6006 if ( horiz
== wxLEFT
|| horiz
== wxCENTRE
|| horiz
== wxRIGHT
)
6008 m_colLabelHorizAlign
= horiz
;
6011 if ( vert
== wxTOP
|| vert
== wxCENTRE
|| vert
== wxBOTTOM
)
6013 m_colLabelVertAlign
= vert
;
6016 if ( !GetBatchCount() )
6018 m_colLabelWin
->Refresh();
6022 void wxGrid::SetRowLabelValue( int row
, const wxString
& s
)
6026 m_table
->SetRowLabelValue( row
, s
);
6027 if ( !GetBatchCount() )
6029 wxRect rect
= CellToRect( row
, 0);
6030 if ( rect
.height
> 0 )
6032 CalcScrolledPosition(0, rect
.y
, &rect
.x
, &rect
.y
);
6034 rect
.width
= m_rowLabelWidth
;
6035 m_rowLabelWin
->Refresh( TRUE
, &rect
);
6041 void wxGrid::SetColLabelValue( int col
, const wxString
& s
)
6045 m_table
->SetColLabelValue( col
, s
);
6046 if ( !GetBatchCount() )
6048 wxRect rect
= CellToRect( 0, col
);
6049 if ( rect
.width
> 0 )
6051 CalcScrolledPosition(rect
.x
, 0, &rect
.x
, &rect
.y
);
6053 rect
.height
= m_colLabelHeight
;
6054 m_colLabelWin
->Refresh( TRUE
, &rect
);
6060 void wxGrid::SetGridLineColour( const wxColour
& colour
)
6062 if ( m_gridLineColour
!= colour
)
6064 m_gridLineColour
= colour
;
6066 wxClientDC
dc( m_gridWin
);
6068 DrawAllGridLines( dc
, wxRegion() );
6072 void wxGrid::EnableGridLines( bool enable
)
6074 if ( enable
!= m_gridLinesEnabled
)
6076 m_gridLinesEnabled
= enable
;
6078 if ( !GetBatchCount() )
6082 wxClientDC
dc( m_gridWin
);
6084 DrawAllGridLines( dc
, wxRegion() );
6088 m_gridWin
->Refresh();
6095 int wxGrid::GetDefaultRowSize()
6097 return m_defaultRowHeight
;
6100 int wxGrid::GetRowSize( int row
)
6102 wxCHECK_MSG( row
>= 0 && row
< m_numRows
, 0, _T("invalid row index") );
6104 return GetRowHeight(row
);
6107 int wxGrid::GetDefaultColSize()
6109 return m_defaultColWidth
;
6112 int wxGrid::GetColSize( int col
)
6114 wxCHECK_MSG( col
>= 0 && col
< m_numCols
, 0, _T("invalid column index") );
6116 return GetColWidth(col
);
6119 // ============================================================================
6120 // access to the grid attributes: each of them has a default value in the grid
6121 // itself and may be overidden on a per-cell basis
6122 // ============================================================================
6124 // ----------------------------------------------------------------------------
6125 // setting default attributes
6126 // ----------------------------------------------------------------------------
6128 void wxGrid::SetDefaultCellBackgroundColour( const wxColour
& col
)
6130 m_defaultCellAttr
->SetBackgroundColour(col
);
6132 m_gridWin
->SetBackgroundColour(col
);
6136 void wxGrid::SetDefaultCellTextColour( const wxColour
& col
)
6138 m_defaultCellAttr
->SetTextColour(col
);
6141 void wxGrid::SetDefaultCellAlignment( int horiz
, int vert
)
6143 m_defaultCellAttr
->SetAlignment(horiz
, vert
);
6146 void wxGrid::SetDefaultCellFont( const wxFont
& font
)
6148 m_defaultCellAttr
->SetFont(font
);
6151 void wxGrid::SetDefaultRenderer(wxGridCellRenderer
*renderer
)
6153 m_defaultCellAttr
->SetRenderer(renderer
);
6156 void wxGrid::SetDefaultEditor(wxGridCellEditor
*editor
)
6158 m_defaultCellAttr
->SetEditor(editor
);
6161 // ----------------------------------------------------------------------------
6162 // access to the default attrbiutes
6163 // ----------------------------------------------------------------------------
6165 wxColour
wxGrid::GetDefaultCellBackgroundColour()
6167 return m_defaultCellAttr
->GetBackgroundColour();
6170 wxColour
wxGrid::GetDefaultCellTextColour()
6172 return m_defaultCellAttr
->GetTextColour();
6175 wxFont
wxGrid::GetDefaultCellFont()
6177 return m_defaultCellAttr
->GetFont();
6180 void wxGrid::GetDefaultCellAlignment( int *horiz
, int *vert
)
6182 m_defaultCellAttr
->GetAlignment(horiz
, vert
);
6185 wxGridCellRenderer
*wxGrid::GetDefaultRenderer() const
6187 return m_defaultCellAttr
->GetRenderer(NULL
);
6190 wxGridCellEditor
*wxGrid::GetDefaultEditor() const
6192 return m_defaultCellAttr
->GetEditor(NULL
);
6195 // ----------------------------------------------------------------------------
6196 // access to cell attributes
6197 // ----------------------------------------------------------------------------
6199 wxColour
wxGrid::GetCellBackgroundColour(int row
, int col
)
6201 wxGridCellAttr
*attr
= GetCellAttr(row
, col
);
6202 wxColour colour
= attr
->GetBackgroundColour();
6207 wxColour
wxGrid::GetCellTextColour( int row
, int col
)
6209 wxGridCellAttr
*attr
= GetCellAttr(row
, col
);
6210 wxColour colour
= attr
->GetTextColour();
6215 wxFont
wxGrid::GetCellFont( int row
, int col
)
6217 wxGridCellAttr
*attr
= GetCellAttr(row
, col
);
6218 wxFont font
= attr
->GetFont();
6223 void wxGrid::GetCellAlignment( int row
, int col
, int *horiz
, int *vert
)
6225 wxGridCellAttr
*attr
= GetCellAttr(row
, col
);
6226 attr
->GetAlignment(horiz
, vert
);
6230 wxGridCellRenderer
* wxGrid::GetCellRenderer(int row
, int col
)
6232 wxGridCellAttr
* attr
= GetCellAttr(row
, col
);
6233 wxGridCellRenderer
* renderer
= attr
->GetRenderer(GetDefaultRendererForCell(row
,col
));
6238 wxGridCellEditor
* wxGrid::GetCellEditor(int row
, int col
)
6240 wxGridCellAttr
* attr
= GetCellAttr(row
, col
);
6241 wxGridCellEditor
* editor
= attr
->GetEditor(GetDefaultEditorForCell(row
, col
));
6246 bool wxGrid::IsReadOnly(int row
, int col
) const
6248 wxGridCellAttr
* attr
= GetCellAttr(row
, col
);
6249 bool isReadOnly
= attr
->IsReadOnly();
6254 // ----------------------------------------------------------------------------
6255 // attribute support: cache, automatic provider creation, ...
6256 // ----------------------------------------------------------------------------
6258 bool wxGrid::CanHaveAttributes()
6265 return m_table
->CanHaveAttributes();
6268 void wxGrid::ClearAttrCache()
6270 if ( m_attrCache
.row
!= -1 )
6272 m_attrCache
.attr
->SafeDecRef();
6273 m_attrCache
.row
= -1;
6277 void wxGrid::CacheAttr(int row
, int col
, wxGridCellAttr
*attr
) const
6279 wxGrid
*self
= (wxGrid
*)this; // const_cast
6281 self
->ClearAttrCache();
6282 self
->m_attrCache
.row
= row
;
6283 self
->m_attrCache
.col
= col
;
6284 self
->m_attrCache
.attr
= attr
;
6288 bool wxGrid::LookupAttr(int row
, int col
, wxGridCellAttr
**attr
) const
6290 if ( row
== m_attrCache
.row
&& col
== m_attrCache
.col
)
6292 *attr
= m_attrCache
.attr
;
6293 (*attr
)->SafeIncRef();
6295 #ifdef DEBUG_ATTR_CACHE
6296 gs_nAttrCacheHits
++;
6303 #ifdef DEBUG_ATTR_CACHE
6304 gs_nAttrCacheMisses
++;
6310 wxGridCellAttr
*wxGrid::GetCellAttr(int row
, int col
) const
6312 wxGridCellAttr
*attr
;
6313 if ( !LookupAttr(row
, col
, &attr
) )
6315 attr
= m_table
? m_table
->GetAttr(row
, col
) : (wxGridCellAttr
*)NULL
;
6316 CacheAttr(row
, col
, attr
);
6320 attr
->SetDefAttr(m_defaultCellAttr
);
6324 attr
= m_defaultCellAttr
;
6331 wxGridCellAttr
*wxGrid::GetOrCreateCellAttr(int row
, int col
) const
6333 wxGridCellAttr
*attr
;
6334 if ( !LookupAttr(row
, col
, &attr
) || !attr
)
6336 wxASSERT_MSG( m_table
,
6337 _T("we may only be called if CanHaveAttributes() "
6338 "returned TRUE and then m_table should be !NULL") );
6340 attr
= m_table
->GetAttr(row
, col
);
6343 attr
= new wxGridCellAttr
;
6345 // artificially inc the ref count to match DecRef() in caller
6348 m_table
->SetAttr(attr
, row
, col
);
6351 CacheAttr(row
, col
, attr
);
6353 attr
->SetDefAttr(m_defaultCellAttr
);
6357 // ----------------------------------------------------------------------------
6358 // setting cell attributes: this is forwarded to the table
6359 // ----------------------------------------------------------------------------
6361 void wxGrid::SetRowAttr(int row
, wxGridCellAttr
*attr
)
6363 if ( CanHaveAttributes() )
6365 m_table
->SetRowAttr(attr
, row
);
6373 void wxGrid::SetColAttr(int col
, wxGridCellAttr
*attr
)
6375 if ( CanHaveAttributes() )
6377 m_table
->SetColAttr(attr
, col
);
6385 void wxGrid::SetCellBackgroundColour( int row
, int col
, const wxColour
& colour
)
6387 if ( CanHaveAttributes() )
6389 wxGridCellAttr
*attr
= GetOrCreateCellAttr(row
, col
);
6390 attr
->SetBackgroundColour(colour
);
6395 void wxGrid::SetCellTextColour( int row
, int col
, const wxColour
& colour
)
6397 if ( CanHaveAttributes() )
6399 wxGridCellAttr
*attr
= GetOrCreateCellAttr(row
, col
);
6400 attr
->SetTextColour(colour
);
6405 void wxGrid::SetCellFont( int row
, int col
, const wxFont
& font
)
6407 if ( CanHaveAttributes() )
6409 wxGridCellAttr
*attr
= GetOrCreateCellAttr(row
, col
);
6410 attr
->SetFont(font
);
6415 void wxGrid::SetCellAlignment( int row
, int col
, int horiz
, int vert
)
6417 if ( CanHaveAttributes() )
6419 wxGridCellAttr
*attr
= GetOrCreateCellAttr(row
, col
);
6420 attr
->SetAlignment(horiz
, vert
);
6425 void wxGrid::SetCellRenderer(int row
, int col
, wxGridCellRenderer
*renderer
)
6427 if ( CanHaveAttributes() )
6429 wxGridCellAttr
*attr
= GetOrCreateCellAttr(row
, col
);
6430 attr
->SetRenderer(renderer
);
6435 void wxGrid::SetCellEditor(int row
, int col
, wxGridCellEditor
* editor
)
6437 if ( CanHaveAttributes() )
6439 wxGridCellAttr
*attr
= GetOrCreateCellAttr(row
, col
);
6440 attr
->SetEditor(editor
);
6445 void wxGrid::SetReadOnly(int row
, int col
, bool isReadOnly
)
6447 if ( CanHaveAttributes() )
6449 wxGridCellAttr
*attr
= GetOrCreateCellAttr(row
, col
);
6450 attr
->SetReadOnly(isReadOnly
);
6455 // ----------------------------------------------------------------------------
6456 // Data type registration
6457 // ----------------------------------------------------------------------------
6459 void wxGrid::RegisterDataType(const wxString
& typeName
,
6460 wxGridCellRenderer
* renderer
,
6461 wxGridCellEditor
* editor
)
6463 m_typeRegistry
->RegisterDataType(typeName
, renderer
, editor
);
6467 wxGridCellEditor
* wxGrid::GetDefaultEditorForCell(int row
, int col
) const
6469 wxString typeName
= m_table
->GetTypeName(row
, col
);
6470 return GetDefaultEditorForType(typeName
);
6473 wxGridCellRenderer
* wxGrid::GetDefaultRendererForCell(int row
, int col
) const
6475 wxString typeName
= m_table
->GetTypeName(row
, col
);
6476 return GetDefaultRendererForType(typeName
);
6480 wxGrid::GetDefaultEditorForType(const wxString
& typeName
) const
6482 int index
= m_typeRegistry
->FindDataType(typeName
);
6484 // Should we force the failure here or let it fallback to string handling???
6485 // wxFAIL_MSG(wxT("Unknown data type name"));
6488 return m_typeRegistry
->GetEditor(index
);
6492 wxGrid::GetDefaultRendererForType(const wxString
& typeName
) const
6494 int index
= m_typeRegistry
->FindDataType(typeName
);
6496 // Should we force the failure here or let it fallback to string handling???
6497 // wxFAIL_MSG(wxT("Unknown data type name"));
6500 return m_typeRegistry
->GetRenderer(index
);
6504 // ----------------------------------------------------------------------------
6506 // ----------------------------------------------------------------------------
6508 void wxGrid::EnableDragRowSize( bool enable
)
6510 m_canDragRowSize
= enable
;
6514 void wxGrid::EnableDragColSize( bool enable
)
6516 m_canDragColSize
= enable
;
6520 void wxGrid::SetDefaultRowSize( int height
, bool resizeExistingRows
)
6522 m_defaultRowHeight
= wxMax( height
, WXGRID_MIN_ROW_HEIGHT
);
6524 if ( resizeExistingRows
)
6532 void wxGrid::SetRowSize( int row
, int height
)
6534 wxCHECK_RET( row
>= 0 && row
< m_numRows
, _T("invalid row index") );
6536 if ( m_rowHeights
.IsEmpty() )
6538 // need to really create the array
6542 int h
= wxMax( 0, height
);
6543 int diff
= h
- m_rowHeights
[row
];
6545 m_rowHeights
[row
] = h
;
6547 for ( i
= row
; i
< m_numRows
; i
++ )
6549 m_rowBottoms
[i
] += diff
;
6554 void wxGrid::SetDefaultColSize( int width
, bool resizeExistingCols
)
6556 m_defaultColWidth
= wxMax( width
, WXGRID_MIN_COL_WIDTH
);
6558 if ( resizeExistingCols
)
6566 void wxGrid::SetColSize( int col
, int width
)
6568 wxCHECK_RET( col
>= 0 && col
< m_numCols
, _T("invalid column index") );
6570 // should we check that it's bigger than GetColMinimalWidth(col) here?
6572 if ( m_colWidths
.IsEmpty() )
6574 // need to really create the array
6578 int w
= wxMax( 0, width
);
6579 int diff
= w
- m_colWidths
[col
];
6580 m_colWidths
[col
] = w
;
6583 for ( i
= col
; i
< m_numCols
; i
++ )
6585 m_colRights
[i
] += diff
;
6591 void wxGrid::SetColMinimalWidth( int col
, int width
)
6593 m_colMinWidths
.Put(col
, (wxObject
*)width
);
6596 int wxGrid::GetColMinimalWidth(int col
) const
6598 wxObject
*obj
= m_colMinWidths
.Get(m_dragRowOrCol
);
6599 return obj
? (int)obj
: WXGRID_MIN_COL_WIDTH
;
6603 // ------ cell value accessor functions
6606 void wxGrid::SetCellValue( int row
, int col
, const wxString
& s
)
6610 m_table
->SetValue( row
, col
, s
.c_str() );
6611 if ( !GetBatchCount() )
6613 wxClientDC
dc( m_gridWin
);
6615 DrawCell( dc
, wxGridCellCoords(row
, col
) );
6618 #if 0 // TODO: edit in place
6620 if ( m_currentCellCoords
.GetRow() == row
&&
6621 m_currentCellCoords
.GetCol() == col
)
6623 SetEditControlValue( s
);
6632 // ------ Block, row and col selection
6635 void wxGrid::SelectRow( int row
, bool addToSelected
)
6639 if ( IsSelection() && addToSelected
)
6642 bool need_refresh
[4];
6646 need_refresh
[3] = FALSE
;
6650 wxCoord oldLeft
= m_selectedTopLeft
.GetCol();
6651 wxCoord oldTop
= m_selectedTopLeft
.GetRow();
6652 wxCoord oldRight
= m_selectedBottomRight
.GetCol();
6653 wxCoord oldBottom
= m_selectedBottomRight
.GetRow();
6657 need_refresh
[0] = TRUE
;
6658 rect
[0] = BlockToDeviceRect( wxGridCellCoords ( row
, 0 ),
6659 wxGridCellCoords ( oldTop
- 1,
6661 m_selectedTopLeft
.SetRow( row
);
6666 need_refresh
[1] = TRUE
;
6667 rect
[1] = BlockToDeviceRect( wxGridCellCoords ( oldTop
, 0 ),
6668 wxGridCellCoords ( oldBottom
,
6671 m_selectedTopLeft
.SetCol( 0 );
6674 if ( oldBottom
< row
)
6676 need_refresh
[2] = TRUE
;
6677 rect
[2] = BlockToDeviceRect( wxGridCellCoords ( oldBottom
+ 1, 0 ),
6678 wxGridCellCoords ( row
,
6680 m_selectedBottomRight
.SetRow( row
);
6683 if ( oldRight
< m_numCols
- 1 )
6685 need_refresh
[3] = TRUE
;
6686 rect
[3] = BlockToDeviceRect( wxGridCellCoords ( oldTop
,
6688 wxGridCellCoords ( oldBottom
,
6690 m_selectedBottomRight
.SetCol( m_numCols
- 1 );
6693 for (i
= 0; i
< 4; i
++ )
6694 if ( need_refresh
[i
] && rect
[i
] != wxGridNoCellRect
)
6695 m_gridWin
->Refresh( FALSE
, &(rect
[i
]) );
6699 r
= SelectionToDeviceRect();
6701 if ( r
!= wxGridNoCellRect
) m_gridWin
->Refresh( FALSE
, &r
);
6703 m_selectedTopLeft
.Set( row
, 0 );
6704 m_selectedBottomRight
.Set( row
, m_numCols
-1 );
6705 r
= SelectionToDeviceRect();
6706 m_gridWin
->Refresh( FALSE
, &r
);
6709 wxGridRangeSelectEvent
gridEvt( GetId(),
6710 wxEVT_GRID_RANGE_SELECT
,
6713 m_selectedBottomRight
);
6715 GetEventHandler()->ProcessEvent(gridEvt
);
6719 void wxGrid::SelectCol( int col
, bool addToSelected
)
6721 if ( IsSelection() && addToSelected
)
6724 bool need_refresh
[4];
6728 need_refresh
[3] = FALSE
;
6731 wxCoord oldLeft
= m_selectedTopLeft
.GetCol();
6732 wxCoord oldTop
= m_selectedTopLeft
.GetRow();
6733 wxCoord oldRight
= m_selectedBottomRight
.GetCol();
6734 wxCoord oldBottom
= m_selectedBottomRight
.GetRow();
6736 if ( oldLeft
> col
)
6738 need_refresh
[0] = TRUE
;
6739 rect
[0] = BlockToDeviceRect( wxGridCellCoords ( 0, col
),
6740 wxGridCellCoords ( m_numRows
- 1,
6742 m_selectedTopLeft
.SetCol( col
);
6747 need_refresh
[1] = TRUE
;
6748 rect
[1] = BlockToDeviceRect( wxGridCellCoords ( 0, oldLeft
),
6749 wxGridCellCoords ( oldTop
- 1,
6751 m_selectedTopLeft
.SetRow( 0 );
6754 if ( oldRight
< col
)
6756 need_refresh
[2] = TRUE
;
6757 rect
[2] = BlockToDeviceRect( wxGridCellCoords ( 0, oldRight
+ 1 ),
6758 wxGridCellCoords ( m_numRows
- 1,
6760 m_selectedBottomRight
.SetCol( col
);
6763 if ( oldBottom
< m_numRows
- 1 )
6765 need_refresh
[3] = TRUE
;
6766 rect
[3] = BlockToDeviceRect( wxGridCellCoords ( oldBottom
+ 1,
6768 wxGridCellCoords ( m_numRows
- 1,
6770 m_selectedBottomRight
.SetRow( m_numRows
- 1 );
6773 for (i
= 0; i
< 4; i
++ )
6774 if ( need_refresh
[i
] && rect
[i
] != wxGridNoCellRect
)
6775 m_gridWin
->Refresh( FALSE
, &(rect
[i
]) );
6781 r
= SelectionToDeviceRect();
6783 if ( r
!= wxGridNoCellRect
) m_gridWin
->Refresh( FALSE
, &r
);
6785 m_selectedTopLeft
.Set( 0, col
);
6786 m_selectedBottomRight
.Set( m_numRows
-1, col
);
6787 r
= SelectionToDeviceRect();
6788 m_gridWin
->Refresh( FALSE
, &r
);
6791 wxGridRangeSelectEvent
gridEvt( GetId(),
6792 wxEVT_GRID_RANGE_SELECT
,
6795 m_selectedBottomRight
);
6797 GetEventHandler()->ProcessEvent(gridEvt
);
6801 void wxGrid::SelectBlock( int topRow
, int leftCol
, int bottomRow
, int rightCol
)
6804 wxGridCellCoords updateTopLeft
, updateBottomRight
;
6806 if ( topRow
> bottomRow
)
6813 if ( leftCol
> rightCol
)
6820 updateTopLeft
= wxGridCellCoords( topRow
, leftCol
);
6821 updateBottomRight
= wxGridCellCoords( bottomRow
, rightCol
);
6823 if ( m_selectedTopLeft
!= updateTopLeft
||
6824 m_selectedBottomRight
!= updateBottomRight
)
6826 // Compute two optimal update rectangles:
6827 // Either one rectangle is a real subset of the
6828 // other, or they are (almost) disjoint!
6830 bool need_refresh
[4];
6834 need_refresh
[3] = FALSE
;
6837 // Store intermediate values
6838 wxCoord oldLeft
= m_selectedTopLeft
.GetCol();
6839 wxCoord oldTop
= m_selectedTopLeft
.GetRow();
6840 wxCoord oldRight
= m_selectedBottomRight
.GetCol();
6841 wxCoord oldBottom
= m_selectedBottomRight
.GetRow();
6843 // Determine the outer/inner coordinates.
6844 if (oldLeft
> leftCol
)
6850 if (oldTop
> topRow
)
6856 if (oldRight
< rightCol
)
6859 oldRight
= rightCol
;
6862 if (oldBottom
< bottomRow
)
6865 oldBottom
= bottomRow
;
6869 // Now, either the stuff marked old is the outer
6870 // rectangle or we don't have a situation where one
6871 // is contained in the other.
6873 if ( oldLeft
< leftCol
)
6875 need_refresh
[0] = TRUE
;
6876 rect
[0] = BlockToDeviceRect( wxGridCellCoords ( oldTop
,
6878 wxGridCellCoords ( oldBottom
,
6882 if ( oldTop
< topRow
)
6884 need_refresh
[1] = TRUE
;
6885 rect
[1] = BlockToDeviceRect( wxGridCellCoords ( oldTop
,
6887 wxGridCellCoords ( topRow
- 1,
6891 if ( oldRight
> rightCol
)
6893 need_refresh
[2] = TRUE
;
6894 rect
[2] = BlockToDeviceRect( wxGridCellCoords ( oldTop
,
6896 wxGridCellCoords ( oldBottom
,
6900 if ( oldBottom
> bottomRow
)
6902 need_refresh
[3] = TRUE
;
6903 rect
[3] = BlockToDeviceRect( wxGridCellCoords ( bottomRow
+ 1,
6905 wxGridCellCoords ( oldBottom
,
6911 m_selectedTopLeft
= updateTopLeft
;
6912 m_selectedBottomRight
= updateBottomRight
;
6914 // various Refresh() calls
6915 for (i
= 0; i
< 4; i
++ )
6916 if ( need_refresh
[i
] && rect
[i
] != wxGridNoCellRect
)
6917 m_gridWin
->Refresh( FALSE
, &(rect
[i
]) );
6920 // only generate an event if the block is not being selected by
6921 // dragging the mouse (in which case the event will be generated in
6922 // the mouse event handler)
6923 if ( !m_isDragging
)
6925 wxGridRangeSelectEvent
gridEvt( GetId(),
6926 wxEVT_GRID_RANGE_SELECT
,
6929 m_selectedBottomRight
);
6931 GetEventHandler()->ProcessEvent(gridEvt
);
6935 void wxGrid::SelectAll()
6937 m_selectedTopLeft
.Set( 0, 0 );
6938 m_selectedBottomRight
.Set( m_numRows
-1, m_numCols
-1 );
6940 m_gridWin
->Refresh();
6944 void wxGrid::ClearSelection()
6946 m_selectedTopLeft
= wxGridNoCellCoords
;
6947 m_selectedBottomRight
= wxGridNoCellCoords
;
6951 // This function returns the rectangle that encloses the given block
6952 // in device coords clipped to the client size of the grid window.
6954 wxRect
wxGrid::BlockToDeviceRect( const wxGridCellCoords
&topLeft
,
6955 const wxGridCellCoords
&bottomRight
)
6957 wxRect
rect( wxGridNoCellRect
);
6960 cellRect
= CellToRect( topLeft
);
6961 if ( cellRect
!= wxGridNoCellRect
)
6967 rect
= wxRect( 0, 0, 0, 0 );
6970 cellRect
= CellToRect( bottomRight
);
6971 if ( cellRect
!= wxGridNoCellRect
)
6977 return wxGridNoCellRect
;
6980 // convert to scrolled coords
6982 int left
, top
, right
, bottom
;
6983 CalcScrolledPosition( rect
.GetLeft(), rect
.GetTop(), &left
, &top
);
6984 CalcScrolledPosition( rect
.GetRight(), rect
.GetBottom(), &right
, &bottom
);
6987 m_gridWin
->GetClientSize( &cw
, &ch
);
6989 rect
.SetLeft( wxMax(0, left
) );
6990 rect
.SetTop( wxMax(0, top
) );
6991 rect
.SetRight( wxMin(cw
, right
) );
6992 rect
.SetBottom( wxMin(ch
, bottom
) );
7000 // ------ Grid event classes
7003 IMPLEMENT_DYNAMIC_CLASS( wxGridEvent
, wxEvent
)
7005 wxGridEvent::wxGridEvent( int id
, wxEventType type
, wxObject
* obj
,
7006 int row
, int col
, int x
, int y
,
7007 bool control
, bool shift
, bool alt
, bool meta
)
7008 : wxNotifyEvent( type
, id
)
7014 m_control
= control
;
7019 SetEventObject(obj
);
7023 IMPLEMENT_DYNAMIC_CLASS( wxGridSizeEvent
, wxEvent
)
7025 wxGridSizeEvent::wxGridSizeEvent( int id
, wxEventType type
, wxObject
* obj
,
7026 int rowOrCol
, int x
, int y
,
7027 bool control
, bool shift
, bool alt
, bool meta
)
7028 : wxNotifyEvent( type
, id
)
7030 m_rowOrCol
= rowOrCol
;
7033 m_control
= control
;
7038 SetEventObject(obj
);
7042 IMPLEMENT_DYNAMIC_CLASS( wxGridRangeSelectEvent
, wxEvent
)
7044 wxGridRangeSelectEvent::wxGridRangeSelectEvent(int id
, wxEventType type
, wxObject
* obj
,
7045 const wxGridCellCoords
& topLeft
,
7046 const wxGridCellCoords
& bottomRight
,
7047 bool control
, bool shift
, bool alt
, bool meta
)
7048 : wxNotifyEvent( type
, id
)
7050 m_topLeft
= topLeft
;
7051 m_bottomRight
= bottomRight
;
7052 m_control
= control
;
7057 SetEventObject(obj
);
7061 #endif // ifndef wxUSE_NEW_GRID