1 /////////////////////////////////////////////////////////////////////////////
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 /////////////////////////////////////////////////////////////////////////////
13 #pragma implementation "grid.h"
16 // For compilers that support precompilation, includes "wx/wx.h".
17 #include "wx/wxprec.h"
25 #if !defined(wxUSE_NEW_GRID) || !(wxUSE_NEW_GRID)
31 #include "wx/dcclient.h"
32 #include "wx/settings.h"
36 // this include needs to be outside precomp for BCC
37 #include "wx/textfile.h"
39 #include "wx/generic/grid.h"
41 // ----------------------------------------------------------------------------
42 // array classes instantiation
43 // ----------------------------------------------------------------------------
45 struct wxGridCellWithAttr
47 wxGridCellWithAttr(int row
, int col
, wxGridCellAttr
*attr_
)
48 : coords(row
, col
), attr(attr_
)
57 wxGridCellCoords coords
;
61 WX_DECLARE_OBJARRAY(wxGridCellWithAttr
, wxGridCellWithAttrArray
);
63 #include "wx/arrimpl.cpp"
65 WX_DEFINE_OBJARRAY(wxGridCellCoordsArray
)
66 WX_DEFINE_OBJARRAY(wxGridCellWithAttrArray
)
68 // ----------------------------------------------------------------------------
70 // ----------------------------------------------------------------------------
72 class WXDLLEXPORT wxGridRowLabelWindow
: public wxWindow
75 wxGridRowLabelWindow() { m_owner
= (wxGrid
*)NULL
; }
76 wxGridRowLabelWindow( wxGrid
*parent
, wxWindowID id
,
77 const wxPoint
&pos
, const wxSize
&size
);
82 void OnPaint( wxPaintEvent
& event
);
83 void OnMouseEvent( wxMouseEvent
& event
);
84 void OnKeyDown( wxKeyEvent
& event
);
86 DECLARE_DYNAMIC_CLASS(wxGridRowLabelWindow
)
91 class WXDLLEXPORT wxGridColLabelWindow
: public wxWindow
94 wxGridColLabelWindow() { m_owner
= (wxGrid
*)NULL
; }
95 wxGridColLabelWindow( wxGrid
*parent
, wxWindowID id
,
96 const wxPoint
&pos
, const wxSize
&size
);
101 void OnPaint( wxPaintEvent
&event
);
102 void OnMouseEvent( wxMouseEvent
& event
);
103 void OnKeyDown( wxKeyEvent
& event
);
105 DECLARE_DYNAMIC_CLASS(wxGridColLabelWindow
)
106 DECLARE_EVENT_TABLE()
110 class WXDLLEXPORT wxGridCornerLabelWindow
: public wxWindow
113 wxGridCornerLabelWindow() { m_owner
= (wxGrid
*)NULL
; }
114 wxGridCornerLabelWindow( wxGrid
*parent
, wxWindowID id
,
115 const wxPoint
&pos
, const wxSize
&size
);
120 void OnMouseEvent( wxMouseEvent
& event
);
121 void OnKeyDown( wxKeyEvent
& event
);
122 void OnPaint( wxPaintEvent
& event
);
124 DECLARE_DYNAMIC_CLASS(wxGridCornerLabelWindow
)
125 DECLARE_EVENT_TABLE()
128 class WXDLLEXPORT wxGridWindow
: public wxPanel
133 m_owner
= (wxGrid
*)NULL
;
134 m_rowLabelWin
= (wxGridRowLabelWindow
*)NULL
;
135 m_colLabelWin
= (wxGridColLabelWindow
*)NULL
;
138 wxGridWindow( wxGrid
*parent
,
139 wxGridRowLabelWindow
*rowLblWin
,
140 wxGridColLabelWindow
*colLblWin
,
141 wxWindowID id
, const wxPoint
&pos
, const wxSize
&size
);
144 void ScrollWindow( int dx
, int dy
, const wxRect
*rect
);
148 wxGridRowLabelWindow
*m_rowLabelWin
;
149 wxGridColLabelWindow
*m_colLabelWin
;
151 void OnPaint( wxPaintEvent
&event
);
152 void OnMouseEvent( wxMouseEvent
& event
);
153 void OnKeyDown( wxKeyEvent
& );
155 DECLARE_DYNAMIC_CLASS(wxGridWindow
)
156 DECLARE_EVENT_TABLE()
159 // the internal data representation used by wxGridCellAttrProvider
161 // TODO make it more efficient
162 class WXDLLEXPORT wxGridCellAttrProviderData
165 void SetAttr(wxGridCellAttr
*attr
, int row
, int col
);
166 wxGridCellAttr
*GetAttr(int row
, int col
) const;
169 // searches for the attr for given cell, returns wxNOT_FOUND if not found
170 int FindIndex(int row
, int col
) const;
172 wxGridCellWithAttrArray m_attrs
;
175 // ----------------------------------------------------------------------------
176 // conditional compilation
177 // ----------------------------------------------------------------------------
179 #ifndef WXGRID_DRAW_LINES
180 #define WXGRID_DRAW_LINES 1
183 //////////////////////////////////////////////////////////////////////
185 wxGridCellCoords
wxGridNoCellCoords( -1, -1 );
186 wxRect
wxGridNoCellRect( -1, -1, -1, -1 );
189 // TODO: fixed so far - make configurable later (and also different for x/y)
190 static const size_t GRID_SCROLL_LINE
= 10;
192 // ----------------------------------------------------------------------------
193 // wxGridCellAttrProviderData
194 // ----------------------------------------------------------------------------
196 void wxGridCellAttrProviderData::SetAttr(wxGridCellAttr
*attr
,
199 int n
= FindIndex(row
, col
);
200 if ( n
== wxNOT_FOUND
)
203 m_attrs
.Add(new wxGridCellWithAttr(row
, col
, attr
));
209 // change the attribute
210 m_attrs
[(size_t)n
].attr
= attr
;
214 // remove this attribute
215 m_attrs
.RemoveAt((size_t)n
);
220 wxGridCellAttr
*wxGridCellAttrProviderData::GetAttr(int row
, int col
) const
222 wxGridCellAttr
*attr
= (wxGridCellAttr
*)NULL
;
224 int n
= FindIndex(row
, col
);
225 if ( n
!= wxNOT_FOUND
)
227 attr
= m_attrs
[(size_t)n
].attr
;
234 int wxGridCellAttrProviderData::FindIndex(int row
, int col
) const
236 size_t count
= m_attrs
.GetCount();
237 for ( size_t n
= 0; n
< count
; n
++ )
239 const wxGridCellCoords
& coords
= m_attrs
[n
].coords
;
240 if ( (coords
.GetRow() == row
) && (coords
.GetCol() == col
) )
249 // ----------------------------------------------------------------------------
250 // wxGridCellAttrProvider
251 // ----------------------------------------------------------------------------
253 wxGridCellAttrProvider::wxGridCellAttrProvider()
255 m_data
= (wxGridCellAttrProviderData
*)NULL
;
258 wxGridCellAttrProvider::~wxGridCellAttrProvider()
263 void wxGridCellAttrProvider::InitData()
265 m_data
= new wxGridCellAttrProviderData
;
268 wxGridCellAttr
*wxGridCellAttrProvider::GetAttr(int row
, int col
) const
270 return m_data
? m_data
->GetAttr(row
, col
) : (wxGridCellAttr
*)NULL
;
273 void wxGridCellAttrProvider::SetAttr(wxGridCellAttr
*attr
,
279 m_data
->SetAttr(attr
, row
, col
);
282 //////////////////////////////////////////////////////////////////////
284 // Abstract base class for grid data (the model)
286 IMPLEMENT_ABSTRACT_CLASS( wxGridTableBase
, wxObject
)
289 wxGridTableBase::wxGridTableBase()
291 m_view
= (wxGrid
*) NULL
;
292 m_attrProvider
= (wxGridCellAttrProvider
*) NULL
;
295 wxGridTableBase::~wxGridTableBase()
297 delete m_attrProvider
;
300 void wxGridTableBase::SetAttrProvider(wxGridCellAttrProvider
*attrProvider
)
302 delete m_attrProvider
;
303 m_attrProvider
= attrProvider
;
306 wxGridCellAttr
*wxGridTableBase::GetAttr(int row
, int col
)
308 if ( m_attrProvider
)
309 return m_attrProvider
->GetAttr(row
, col
);
311 return (wxGridCellAttr
*)NULL
;
314 void wxGridTableBase::SetAttr(wxGridCellAttr
*attr
, int row
, int col
)
316 if ( m_attrProvider
)
318 m_attrProvider
->SetAttr(attr
, row
, col
);
322 // as we take ownership of the pointer and don't store it, we must
328 bool wxGridTableBase::InsertRows( size_t pos
, size_t numRows
)
330 wxFAIL_MSG( wxT("Called grid table class function InsertRows\n"
331 "but your derived table class does not override this function") );
336 bool wxGridTableBase::AppendRows( size_t numRows
)
338 wxFAIL_MSG( wxT("Called grid table class function AppendRows\n"
339 "but your derived table class does not override this function"));
344 bool wxGridTableBase::DeleteRows( size_t pos
, size_t numRows
)
346 wxFAIL_MSG( wxT("Called grid table class function DeleteRows\n"
347 "but your derived table class does not override this function"));
352 bool wxGridTableBase::InsertCols( size_t pos
, size_t numCols
)
354 wxFAIL_MSG( wxT("Called grid table class function InsertCols\n"
355 "but your derived table class does not override this function"));
360 bool wxGridTableBase::AppendCols( size_t numCols
)
362 wxFAIL_MSG(wxT("Called grid table class function AppendCols\n"
363 "but your derived table class does not override this function"));
368 bool wxGridTableBase::DeleteCols( size_t pos
, size_t numCols
)
370 wxFAIL_MSG( wxT("Called grid table class function DeleteCols\n"
371 "but your derived table class does not override this function"));
377 wxString
wxGridTableBase::GetRowLabelValue( int row
)
384 wxString
wxGridTableBase::GetColLabelValue( int col
)
386 // default col labels are:
387 // cols 0 to 25 : A-Z
388 // cols 26 to 675 : AA-ZZ
395 s
+= (_T('A') + (wxChar
)( col%26
));
397 if ( col
< 0 ) break;
400 // reverse the string...
402 for ( i
= 0; i
< n
; i
++ )
412 //////////////////////////////////////////////////////////////////////
414 // Message class for the grid table to send requests and notifications
418 wxGridTableMessage::wxGridTableMessage()
420 m_table
= (wxGridTableBase
*) NULL
;
426 wxGridTableMessage::wxGridTableMessage( wxGridTableBase
*table
, int id
,
427 int commandInt1
, int commandInt2
)
431 m_comInt1
= commandInt1
;
432 m_comInt2
= commandInt2
;
437 //////////////////////////////////////////////////////////////////////
439 // A basic grid table for string data. An object of this class will
440 // created by wxGrid if you don't specify an alternative table class.
443 WX_DEFINE_OBJARRAY(wxGridStringArray
)
445 IMPLEMENT_DYNAMIC_CLASS( wxGridStringTable
, wxGridTableBase
)
447 wxGridStringTable::wxGridStringTable()
452 wxGridStringTable::wxGridStringTable( int numRows
, int numCols
)
457 m_data
.Alloc( numRows
);
461 for ( col
= 0; col
< numCols
; col
++ )
463 sa
.Add( wxEmptyString
);
466 for ( row
= 0; row
< numRows
; row
++ )
472 wxGridStringTable::~wxGridStringTable()
476 long wxGridStringTable::GetNumberRows()
478 return m_data
.GetCount();
481 long wxGridStringTable::GetNumberCols()
483 if ( m_data
.GetCount() > 0 )
484 return m_data
[0].GetCount();
489 wxString
wxGridStringTable::GetValue( int row
, int col
)
491 // TODO: bounds checking
493 return m_data
[row
][col
];
496 void wxGridStringTable::SetValue( int row
, int col
, const wxString
& s
)
498 // TODO: bounds checking
500 m_data
[row
][col
] = s
;
503 bool wxGridStringTable::IsEmptyCell( int row
, int col
)
505 // TODO: bounds checking
507 return (m_data
[row
][col
] == wxEmptyString
);
511 void wxGridStringTable::Clear()
514 int numRows
, numCols
;
516 numRows
= m_data
.GetCount();
519 numCols
= m_data
[0].GetCount();
521 for ( row
= 0; row
< numRows
; row
++ )
523 for ( col
= 0; col
< numCols
; col
++ )
525 m_data
[row
][col
] = wxEmptyString
;
532 bool wxGridStringTable::InsertRows( size_t pos
, size_t numRows
)
536 size_t curNumRows
= m_data
.GetCount();
537 size_t curNumCols
= ( curNumRows
> 0 ? m_data
[0].GetCount() : 0 );
539 if ( pos
>= curNumRows
)
541 return AppendRows( numRows
);
545 sa
.Alloc( curNumCols
);
546 for ( col
= 0; col
< curNumCols
; col
++ )
548 sa
.Add( wxEmptyString
);
551 for ( row
= pos
; row
< pos
+ numRows
; row
++ )
553 m_data
.Insert( sa
, row
);
558 wxGridTableMessage
msg( this,
559 wxGRIDTABLE_NOTIFY_ROWS_INSERTED
,
563 GetView()->ProcessTableMessage( msg
);
569 bool wxGridStringTable::AppendRows( size_t numRows
)
573 size_t curNumRows
= m_data
.GetCount();
574 size_t curNumCols
= ( curNumRows
> 0 ? m_data
[0].GetCount() : 0 );
577 if ( curNumCols
> 0 )
579 sa
.Alloc( curNumCols
);
580 for ( col
= 0; col
< curNumCols
; col
++ )
582 sa
.Add( wxEmptyString
);
586 for ( row
= 0; row
< numRows
; row
++ )
593 wxGridTableMessage
msg( this,
594 wxGRIDTABLE_NOTIFY_ROWS_APPENDED
,
597 GetView()->ProcessTableMessage( msg
);
603 bool wxGridStringTable::DeleteRows( size_t pos
, size_t numRows
)
607 size_t curNumRows
= m_data
.GetCount();
609 if ( pos
>= curNumRows
)
612 errmsg
.Printf("Called wxGridStringTable::DeleteRows(pos=%d, N=%d)\n"
613 "Pos value is invalid for present table with %d rows",
614 pos
, numRows
, curNumRows
);
615 wxFAIL_MSG( wxT(errmsg
) );
619 if ( numRows
> curNumRows
- pos
)
621 numRows
= curNumRows
- pos
;
624 if ( numRows
>= curNumRows
)
626 m_data
.Empty(); // don't release memory just yet
630 for ( n
= 0; n
< numRows
; n
++ )
632 m_data
.Remove( pos
);
638 wxGridTableMessage
msg( this,
639 wxGRIDTABLE_NOTIFY_ROWS_DELETED
,
643 GetView()->ProcessTableMessage( msg
);
649 bool wxGridStringTable::InsertCols( size_t pos
, size_t numCols
)
653 size_t curNumRows
= m_data
.GetCount();
654 size_t curNumCols
= ( curNumRows
> 0 ? m_data
[0].GetCount() : 0 );
656 if ( pos
>= curNumCols
)
658 return AppendCols( numCols
);
661 for ( row
= 0; row
< curNumRows
; row
++ )
663 for ( col
= pos
; col
< pos
+ numCols
; col
++ )
665 m_data
[row
].Insert( wxEmptyString
, col
);
671 wxGridTableMessage
msg( this,
672 wxGRIDTABLE_NOTIFY_COLS_INSERTED
,
676 GetView()->ProcessTableMessage( msg
);
682 bool wxGridStringTable::AppendCols( size_t numCols
)
686 size_t curNumRows
= m_data
.GetCount();
689 // TODO: something better than this ?
691 wxFAIL_MSG( wxT("Unable to append cols to a grid table with no rows.\n"
692 "Call AppendRows() first") );
696 for ( row
= 0; row
< curNumRows
; row
++ )
698 for ( n
= 0; n
< numCols
; n
++ )
700 m_data
[row
].Add( wxEmptyString
);
706 wxGridTableMessage
msg( this,
707 wxGRIDTABLE_NOTIFY_COLS_APPENDED
,
710 GetView()->ProcessTableMessage( msg
);
716 bool wxGridStringTable::DeleteCols( size_t pos
, size_t numCols
)
720 size_t curNumRows
= m_data
.GetCount();
721 size_t curNumCols
= ( curNumRows
> 0 ? m_data
[0].GetCount() : 0 );
723 if ( pos
>= curNumCols
)
726 errmsg
.Printf( "Called wxGridStringTable::DeleteCols(pos=%d, N=%d)...\n"
727 "Pos value is invalid for present table with %d cols",
728 pos
, numCols
, curNumCols
);
729 wxFAIL_MSG( wxT( errmsg
) );
733 if ( numCols
> curNumCols
- pos
)
735 numCols
= curNumCols
- pos
;
738 for ( row
= 0; row
< curNumRows
; row
++ )
740 if ( numCols
>= curNumCols
)
746 for ( n
= 0; n
< numCols
; n
++ )
748 m_data
[row
].Remove( pos
);
755 wxGridTableMessage
msg( this,
756 wxGRIDTABLE_NOTIFY_COLS_DELETED
,
760 GetView()->ProcessTableMessage( msg
);
766 wxString
wxGridStringTable::GetRowLabelValue( int row
)
768 if ( row
> (int)(m_rowLabels
.GetCount()) - 1 )
770 // using default label
772 return wxGridTableBase::GetRowLabelValue( row
);
776 return m_rowLabels
[ row
];
780 wxString
wxGridStringTable::GetColLabelValue( int col
)
782 if ( col
> (int)(m_colLabels
.GetCount()) - 1 )
784 // using default label
786 return wxGridTableBase::GetColLabelValue( col
);
790 return m_colLabels
[ col
];
794 void wxGridStringTable::SetRowLabelValue( int row
, const wxString
& value
)
796 if ( row
> (int)(m_rowLabels
.GetCount()) - 1 )
798 int n
= m_rowLabels
.GetCount();
800 for ( i
= n
; i
<= row
; i
++ )
802 m_rowLabels
.Add( wxGridTableBase::GetRowLabelValue(i
) );
806 m_rowLabels
[row
] = value
;
809 void wxGridStringTable::SetColLabelValue( int col
, const wxString
& value
)
811 if ( col
> (int)(m_colLabels
.GetCount()) - 1 )
813 int n
= m_colLabels
.GetCount();
815 for ( i
= n
; i
<= col
; i
++ )
817 m_colLabels
.Add( wxGridTableBase::GetColLabelValue(i
) );
821 m_colLabels
[col
] = value
;
827 //////////////////////////////////////////////////////////////////////
829 IMPLEMENT_DYNAMIC_CLASS( wxGridTextCtrl
, wxTextCtrl
)
831 BEGIN_EVENT_TABLE( wxGridTextCtrl
, wxTextCtrl
)
832 EVT_KEY_DOWN( wxGridTextCtrl::OnKeyDown
)
836 wxGridTextCtrl::wxGridTextCtrl( wxWindow
*par
,
840 const wxString
& value
,
844 : wxTextCtrl( par
, id
, value
, pos
, size
, style
)
847 m_isCellControl
= isCellControl
;
851 void wxGridTextCtrl::OnKeyDown( wxKeyEvent
& event
)
853 switch ( event
.KeyCode() )
856 m_grid
->SetEditControlValue( startValue
);
857 SetInsertionPointEnd();
867 if ( m_isCellControl
)
869 // send the event to the parent grid, skipping the
870 // event if nothing happens
872 event
.Skip( m_grid
->ProcessEvent( event
) );
876 // default text control response within the top edit
884 if ( m_isCellControl
)
886 if ( !m_grid
->ProcessEvent( event
) )
888 #if defined(__WXMOTIF__) || defined(__WXGTK__)
889 // wxMotif needs a little extra help...
891 int pos
= GetInsertionPoint();
892 wxString
s( GetValue() );
893 s
= s
.Left(pos
) + "\n" + s
.Mid(pos
);
895 SetInsertionPoint( pos
);
897 // the other ports can handle a Return key press
907 if ( m_isCellControl
)
909 // send the event to the parent grid, skipping the
910 // event if nothing happens
912 event
.Skip( m_grid
->ProcessEvent( event
) );
916 // default text control response within the top edit
928 void wxGridTextCtrl::SetStartValue( const wxString
& s
)
931 wxTextCtrl::SetValue(s
);
936 //////////////////////////////////////////////////////////////////////
938 IMPLEMENT_DYNAMIC_CLASS( wxGridRowLabelWindow
, wxWindow
)
940 BEGIN_EVENT_TABLE( wxGridRowLabelWindow
, wxWindow
)
941 EVT_PAINT( wxGridRowLabelWindow::OnPaint
)
942 EVT_MOUSE_EVENTS( wxGridRowLabelWindow::OnMouseEvent
)
943 EVT_KEY_DOWN( wxGridRowLabelWindow::OnKeyDown
)
946 wxGridRowLabelWindow::wxGridRowLabelWindow( wxGrid
*parent
,
948 const wxPoint
&pos
, const wxSize
&size
)
949 : wxWindow( parent
, id
, pos
, size
)
954 void wxGridRowLabelWindow::OnPaint( wxPaintEvent
&event
)
958 // NO - don't do this because it will set both the x and y origin
959 // coords to match the parent scrolled window and we just want to
960 // set the y coord - MB
962 // m_owner->PrepareDC( dc );
965 m_owner
->CalcUnscrolledPosition( 0, 0, &x
, &y
);
966 dc
.SetDeviceOrigin( 0, -y
);
968 m_owner
->CalcRowLabelsExposed( GetUpdateRegion() );
969 m_owner
->DrawRowLabels( dc
);
973 void wxGridRowLabelWindow::OnMouseEvent( wxMouseEvent
& event
)
975 m_owner
->ProcessRowLabelMouseEvent( event
);
979 // This seems to be required for wxMotif otherwise the mouse
980 // cursor must be in the cell edit control to get key events
982 void wxGridRowLabelWindow::OnKeyDown( wxKeyEvent
& event
)
984 if ( !m_owner
->ProcessEvent( event
) ) event
.Skip();
989 //////////////////////////////////////////////////////////////////////
991 IMPLEMENT_DYNAMIC_CLASS( wxGridColLabelWindow
, wxWindow
)
993 BEGIN_EVENT_TABLE( wxGridColLabelWindow
, wxWindow
)
994 EVT_PAINT( wxGridColLabelWindow::OnPaint
)
995 EVT_MOUSE_EVENTS( wxGridColLabelWindow::OnMouseEvent
)
996 EVT_KEY_DOWN( wxGridColLabelWindow::OnKeyDown
)
999 wxGridColLabelWindow::wxGridColLabelWindow( wxGrid
*parent
,
1001 const wxPoint
&pos
, const wxSize
&size
)
1002 : wxWindow( parent
, id
, pos
, size
)
1007 void wxGridColLabelWindow::OnPaint( wxPaintEvent
&event
)
1011 // NO - don't do this because it will set both the x and y origin
1012 // coords to match the parent scrolled window and we just want to
1013 // set the x coord - MB
1015 // m_owner->PrepareDC( dc );
1018 m_owner
->CalcUnscrolledPosition( 0, 0, &x
, &y
);
1019 dc
.SetDeviceOrigin( -x
, 0 );
1021 m_owner
->CalcColLabelsExposed( GetUpdateRegion() );
1022 m_owner
->DrawColLabels( dc
);
1026 void wxGridColLabelWindow::OnMouseEvent( wxMouseEvent
& event
)
1028 m_owner
->ProcessColLabelMouseEvent( event
);
1032 // This seems to be required for wxMotif otherwise the mouse
1033 // cursor must be in the cell edit control to get key events
1035 void wxGridColLabelWindow::OnKeyDown( wxKeyEvent
& event
)
1037 if ( !m_owner
->ProcessEvent( event
) ) event
.Skip();
1042 //////////////////////////////////////////////////////////////////////
1044 IMPLEMENT_DYNAMIC_CLASS( wxGridCornerLabelWindow
, wxWindow
)
1046 BEGIN_EVENT_TABLE( wxGridCornerLabelWindow
, wxWindow
)
1047 EVT_MOUSE_EVENTS( wxGridCornerLabelWindow::OnMouseEvent
)
1048 EVT_PAINT( wxGridCornerLabelWindow::OnPaint
)
1049 EVT_KEY_DOWN( wxGridCornerLabelWindow::OnKeyDown
)
1052 wxGridCornerLabelWindow::wxGridCornerLabelWindow( wxGrid
*parent
,
1054 const wxPoint
&pos
, const wxSize
&size
)
1055 : wxWindow( parent
, id
, pos
, size
)
1060 void wxGridCornerLabelWindow::OnPaint( wxPaintEvent
& WXUNUSED(event
) )
1064 int client_height
= 0;
1065 int client_width
= 0;
1066 GetClientSize( &client_width
, &client_height
);
1068 dc
.SetPen( *wxBLACK_PEN
);
1069 dc
.DrawLine( client_width
-1, client_height
-1, client_width
-1, 0 );
1070 dc
.DrawLine( client_width
-1, client_height
-1, 0, client_height
-1 );
1072 dc
.SetPen( *wxWHITE_PEN
);
1073 dc
.DrawLine( 0, 0, client_width
, 0 );
1074 dc
.DrawLine( 0, 0, 0, client_height
);
1078 void wxGridCornerLabelWindow::OnMouseEvent( wxMouseEvent
& event
)
1080 m_owner
->ProcessCornerLabelMouseEvent( event
);
1084 // This seems to be required for wxMotif otherwise the mouse
1085 // cursor must be in the cell edit control to get key events
1087 void wxGridCornerLabelWindow::OnKeyDown( wxKeyEvent
& event
)
1089 if ( !m_owner
->ProcessEvent( event
) ) event
.Skip();
1094 //////////////////////////////////////////////////////////////////////
1096 IMPLEMENT_DYNAMIC_CLASS( wxGridWindow
, wxPanel
)
1098 BEGIN_EVENT_TABLE( wxGridWindow
, wxPanel
)
1099 EVT_PAINT( wxGridWindow::OnPaint
)
1100 EVT_MOUSE_EVENTS( wxGridWindow::OnMouseEvent
)
1101 EVT_KEY_DOWN( wxGridWindow::OnKeyDown
)
1104 wxGridWindow::wxGridWindow( wxGrid
*parent
,
1105 wxGridRowLabelWindow
*rowLblWin
,
1106 wxGridColLabelWindow
*colLblWin
,
1107 wxWindowID id
, const wxPoint
&pos
, const wxSize
&size
)
1108 : wxPanel( parent
, id
, pos
, size
, 0, "grid window" )
1111 m_rowLabelWin
= rowLblWin
;
1112 m_colLabelWin
= colLblWin
;
1114 SetBackgroundColour( "WHITE" );
1118 wxGridWindow::~wxGridWindow()
1123 void wxGridWindow::OnPaint( wxPaintEvent
&WXUNUSED(event
) )
1125 wxPaintDC
dc( this );
1126 m_owner
->PrepareDC( dc
);
1127 wxRegion reg
= GetUpdateRegion();
1128 m_owner
->CalcCellsExposed( reg
);
1129 m_owner
->DrawGridCellArea( dc
);
1130 #if WXGRID_DRAW_LINES
1131 m_owner
->DrawAllGridLines( dc
, reg
);
1136 void wxGridWindow::ScrollWindow( int dx
, int dy
, const wxRect
*rect
)
1138 wxPanel::ScrollWindow( dx
, dy
, rect
);
1139 m_rowLabelWin
->ScrollWindow( 0, dy
, rect
);
1140 m_colLabelWin
->ScrollWindow( dx
, 0, rect
);
1144 void wxGridWindow::OnMouseEvent( wxMouseEvent
& event
)
1146 m_owner
->ProcessGridCellMouseEvent( event
);
1150 // This seems to be required for wxMotif otherwise the mouse
1151 // cursor must be in the cell edit control to get key events
1153 void wxGridWindow::OnKeyDown( wxKeyEvent
& event
)
1155 if ( !m_owner
->ProcessEvent( event
) ) event
.Skip();
1160 //////////////////////////////////////////////////////////////////////
1162 IMPLEMENT_DYNAMIC_CLASS( wxGrid
, wxScrolledWindow
)
1164 BEGIN_EVENT_TABLE( wxGrid
, wxScrolledWindow
)
1165 EVT_PAINT( wxGrid::OnPaint
)
1166 EVT_SIZE( wxGrid::OnSize
)
1167 EVT_KEY_DOWN( wxGrid::OnKeyDown
)
1170 wxGrid::wxGrid( wxWindow
*parent
,
1175 const wxString
& name
)
1176 : wxScrolledWindow( parent
, id
, pos
, size
, style
, name
)
1189 // ----- internal init and update functions
1192 void wxGrid::Create()
1194 m_created
= FALSE
; // set to TRUE by CreateGrid
1195 m_displayed
= FALSE
; // set to TRUE by OnPaint
1197 m_table
= (wxGridTableBase
*) NULL
;
1198 m_cellEditCtrl
= (wxWindow
*) NULL
;
1202 m_currentCellCoords
= wxGridNoCellCoords
;
1204 m_rowLabelWidth
= WXGRID_DEFAULT_ROW_LABEL_WIDTH
;
1205 m_colLabelHeight
= WXGRID_DEFAULT_COL_LABEL_HEIGHT
;
1207 m_cornerLabelWin
= new wxGridCornerLabelWindow( this,
1212 m_rowLabelWin
= new wxGridRowLabelWindow( this,
1217 m_colLabelWin
= new wxGridColLabelWindow( this,
1222 m_gridWin
= new wxGridWindow( this,
1229 SetTargetWindow( m_gridWin
);
1233 bool wxGrid::CreateGrid( int numRows
, int numCols
)
1237 wxFAIL_MSG( wxT("wxGrid::CreateGrid called more than once") );
1242 m_numRows
= numRows
;
1243 m_numCols
= numCols
;
1245 m_table
= new wxGridStringTable( m_numRows
, m_numCols
);
1246 m_table
->SetView( this );
1259 if ( m_numRows
<= 0 )
1260 m_numRows
= WXGRID_DEFAULT_NUMBER_ROWS
;
1262 if ( m_numCols
<= 0 )
1263 m_numCols
= WXGRID_DEFAULT_NUMBER_COLS
;
1265 m_rowLabelWidth
= WXGRID_DEFAULT_ROW_LABEL_WIDTH
;
1266 m_colLabelHeight
= WXGRID_DEFAULT_COL_LABEL_HEIGHT
;
1268 if ( m_rowLabelWin
)
1270 m_labelBackgroundColour
= m_rowLabelWin
->GetBackgroundColour();
1274 m_labelBackgroundColour
= wxColour( _T("WHITE") );
1277 m_labelTextColour
= wxColour( _T("BLACK") );
1279 // TODO: something better than this ?
1281 m_labelFont
= this->GetFont();
1282 m_labelFont
.SetWeight( m_labelFont
.GetWeight() + 2 );
1284 m_rowLabelHorizAlign
= wxLEFT
;
1285 m_rowLabelVertAlign
= wxCENTRE
;
1287 m_colLabelHorizAlign
= wxCENTRE
;
1288 m_colLabelVertAlign
= wxTOP
;
1290 m_defaultColWidth
= WXGRID_DEFAULT_COL_WIDTH
;
1291 m_defaultRowHeight
= m_gridWin
->GetCharHeight();
1293 #if defined(__WXMOTIF__) || defined(__WXGTK__) // see also text ctrl sizing in ShowCellEditControl()
1294 m_defaultRowHeight
+= 8;
1296 m_defaultRowHeight
+= 4;
1299 m_rowHeights
.Alloc( m_numRows
);
1300 m_rowBottoms
.Alloc( m_numRows
);
1302 for ( i
= 0; i
< m_numRows
; i
++ )
1304 m_rowHeights
.Add( m_defaultRowHeight
);
1305 rowBottom
+= m_defaultRowHeight
;
1306 m_rowBottoms
.Add( rowBottom
);
1309 m_colWidths
.Alloc( m_numCols
);
1310 m_colRights
.Alloc( m_numCols
);
1312 for ( i
= 0; i
< m_numCols
; i
++ )
1314 m_colWidths
.Add( m_defaultColWidth
);
1315 colRight
+= m_defaultColWidth
;
1316 m_colRights
.Add( colRight
);
1319 // TODO: improve this by using wxSystemSettings?
1321 m_defaultCellFont
= GetFont();
1323 m_defaultCellHAlign
= wxLEFT
;
1324 m_defaultCellVAlign
= wxTOP
;
1326 m_gridLineColour
= wxColour( 128, 128, 255 );
1327 m_gridLinesEnabled
= TRUE
;
1329 m_cursorMode
= WXGRID_CURSOR_SELECT_CELL
;
1330 m_winCapture
= (wxWindow
*)NULL
;
1332 m_dragRowOrCol
= -1;
1333 m_isDragging
= FALSE
;
1335 m_rowResizeCursor
= wxCursor( wxCURSOR_SIZENS
);
1336 m_colResizeCursor
= wxCursor( wxCURSOR_SIZEWE
);
1338 m_currentCellCoords
= wxGridNoCellCoords
;
1340 m_selectedTopLeft
= wxGridNoCellCoords
;
1341 m_selectedBottomRight
= wxGridNoCellCoords
;
1343 m_editable
= TRUE
; // default for whole grid
1345 m_inOnKeyDown
= FALSE
;
1348 // TODO: extend this to other types of controls
1350 m_cellEditCtrl
= new wxGridTextCtrl( m_gridWin
,
1357 #if defined(__WXMSW__)
1358 , wxTE_MULTILINE
| wxTE_NO_VSCROLL
1362 m_cellEditCtrl
->Show( FALSE
);
1363 m_cellEditCtrlEnabled
= TRUE
;
1364 m_editCtrlType
= wxGRID_TEXTCTRL
;
1368 void wxGrid::CalcDimensions()
1371 GetClientSize( &cw
, &ch
);
1373 if ( m_numRows
> 0 && m_numCols
> 0 )
1375 int right
= m_colRights
[ m_numCols
-1 ] + 50;
1376 int bottom
= m_rowBottoms
[ m_numRows
-1 ] + 50;
1378 // TODO: restore the scroll position that we had before sizing
1381 GetViewStart( &x
, &y
);
1382 SetScrollbars( GRID_SCROLL_LINE
, GRID_SCROLL_LINE
,
1383 right
/GRID_SCROLL_LINE
, bottom
/GRID_SCROLL_LINE
,
1389 void wxGrid::CalcWindowSizes()
1392 GetClientSize( &cw
, &ch
);
1394 if ( m_cornerLabelWin
->IsShown() )
1395 m_cornerLabelWin
->SetSize( 0, 0, m_rowLabelWidth
, m_colLabelHeight
);
1397 if ( m_colLabelWin
->IsShown() )
1398 m_colLabelWin
->SetSize( m_rowLabelWidth
, 0, cw
-m_rowLabelWidth
, m_colLabelHeight
);
1400 if ( m_rowLabelWin
->IsShown() )
1401 m_rowLabelWin
->SetSize( 0, m_colLabelHeight
, m_rowLabelWidth
, ch
-m_colLabelHeight
);
1403 if ( m_gridWin
->IsShown() )
1404 m_gridWin
->SetSize( m_rowLabelWidth
, m_colLabelHeight
, cw
-m_rowLabelWidth
, ch
-m_colLabelHeight
);
1408 // this is called when the grid table sends a message to say that it
1409 // has been redimensioned
1411 bool wxGrid::Redimension( wxGridTableMessage
& msg
)
1415 switch ( msg
.GetId() )
1417 case wxGRIDTABLE_NOTIFY_ROWS_INSERTED
:
1419 size_t pos
= msg
.GetCommandInt();
1420 int numRows
= msg
.GetCommandInt2();
1421 for ( i
= 0; i
< numRows
; i
++ )
1423 m_rowHeights
.Insert( m_defaultRowHeight
, pos
);
1424 m_rowBottoms
.Insert( 0, pos
);
1426 m_numRows
+= numRows
;
1429 if ( pos
> 0 ) bottom
= m_rowBottoms
[pos
-1];
1431 for ( i
= pos
; i
< m_numRows
; i
++ )
1433 bottom
+= m_rowHeights
[i
];
1434 m_rowBottoms
[i
] = bottom
;
1440 case wxGRIDTABLE_NOTIFY_ROWS_APPENDED
:
1442 int numRows
= msg
.GetCommandInt();
1443 for ( i
= 0; i
< numRows
; i
++ )
1445 m_rowHeights
.Add( m_defaultRowHeight
);
1446 m_rowBottoms
.Add( 0 );
1449 int oldNumRows
= m_numRows
;
1450 m_numRows
+= numRows
;
1453 if ( oldNumRows
> 0 ) bottom
= m_rowBottoms
[oldNumRows
-1];
1455 for ( i
= oldNumRows
; i
< m_numRows
; i
++ )
1457 bottom
+= m_rowHeights
[i
];
1458 m_rowBottoms
[i
] = bottom
;
1464 case wxGRIDTABLE_NOTIFY_ROWS_DELETED
:
1466 size_t pos
= msg
.GetCommandInt();
1467 int numRows
= msg
.GetCommandInt2();
1468 for ( i
= 0; i
< numRows
; i
++ )
1470 m_rowHeights
.Remove( pos
);
1471 m_rowBottoms
.Remove( pos
);
1473 m_numRows
-= numRows
;
1478 m_colWidths
.Clear();
1479 m_colRights
.Clear();
1480 m_currentCellCoords
= wxGridNoCellCoords
;
1484 if ( m_currentCellCoords
.GetRow() >= m_numRows
)
1485 m_currentCellCoords
.Set( 0, 0 );
1488 for ( i
= 0; i
< m_numRows
; i
++ )
1490 h
+= m_rowHeights
[i
];
1491 m_rowBottoms
[i
] = h
;
1499 case wxGRIDTABLE_NOTIFY_COLS_INSERTED
:
1501 size_t pos
= msg
.GetCommandInt();
1502 int numCols
= msg
.GetCommandInt2();
1503 for ( i
= 0; i
< numCols
; i
++ )
1505 m_colWidths
.Insert( m_defaultColWidth
, pos
);
1506 m_colRights
.Insert( 0, pos
);
1508 m_numCols
+= numCols
;
1511 if ( pos
> 0 ) right
= m_colRights
[pos
-1];
1513 for ( i
= pos
; i
< m_numCols
; i
++ )
1515 right
+= m_colWidths
[i
];
1516 m_colRights
[i
] = right
;
1522 case wxGRIDTABLE_NOTIFY_COLS_APPENDED
:
1524 int numCols
= msg
.GetCommandInt();
1525 for ( i
= 0; i
< numCols
; i
++ )
1527 m_colWidths
.Add( m_defaultColWidth
);
1528 m_colRights
.Add( 0 );
1531 int oldNumCols
= m_numCols
;
1532 m_numCols
+= numCols
;
1535 if ( oldNumCols
> 0 ) right
= m_colRights
[oldNumCols
-1];
1537 for ( i
= oldNumCols
; i
< m_numCols
; i
++ )
1539 right
+= m_colWidths
[i
];
1540 m_colRights
[i
] = right
;
1546 case wxGRIDTABLE_NOTIFY_COLS_DELETED
:
1548 size_t pos
= msg
.GetCommandInt();
1549 int numCols
= msg
.GetCommandInt2();
1550 for ( i
= 0; i
< numCols
; i
++ )
1552 m_colWidths
.Remove( pos
);
1553 m_colRights
.Remove( pos
);
1555 m_numCols
-= numCols
;
1559 #if 0 // leave the row alone here so that AppendCols will work subsequently
1561 m_rowHeights
.Clear();
1562 m_rowBottoms
.Clear();
1564 m_currentCellCoords
= wxGridNoCellCoords
;
1568 if ( m_currentCellCoords
.GetCol() >= m_numCols
)
1569 m_currentCellCoords
.Set( 0, 0 );
1572 for ( i
= 0; i
< m_numCols
; i
++ )
1574 w
+= m_colWidths
[i
];
1587 void wxGrid::CalcRowLabelsExposed( wxRegion
& reg
)
1589 wxRegionIterator
iter( reg
);
1592 m_rowLabelsExposed
.Empty();
1599 // TODO: remove this when we can...
1600 // There is a bug in wxMotif that gives garbage update
1601 // rectangles if you jump-scroll a long way by clicking the
1602 // scrollbar with middle button. This is a work-around
1604 #if defined(__WXMOTIF__)
1606 m_gridWin
->GetClientSize( &cw
, &ch
);
1607 if ( r
.GetTop() > ch
) r
.SetTop( 0 );
1608 r
.SetBottom( wxMin( r
.GetBottom(), ch
) );
1611 // logical bounds of update region
1614 CalcUnscrolledPosition( 0, r
.GetTop(), &dummy
, &top
);
1615 CalcUnscrolledPosition( 0, r
.GetBottom(), &dummy
, &bottom
);
1617 // find the row labels within these bounds
1621 for ( row
= 0; row
< m_numRows
; row
++ )
1623 if ( m_rowBottoms
[row
] < top
) continue;
1625 rowTop
= m_rowBottoms
[row
] - m_rowHeights
[row
];
1626 if ( rowTop
> bottom
) break;
1628 m_rowLabelsExposed
.Add( row
);
1636 void wxGrid::CalcColLabelsExposed( wxRegion
& reg
)
1638 wxRegionIterator
iter( reg
);
1641 m_colLabelsExposed
.Empty();
1648 // TODO: remove this when we can...
1649 // There is a bug in wxMotif that gives garbage update
1650 // rectangles if you jump-scroll a long way by clicking the
1651 // scrollbar with middle button. This is a work-around
1653 #if defined(__WXMOTIF__)
1655 m_gridWin
->GetClientSize( &cw
, &ch
);
1656 if ( r
.GetLeft() > cw
) r
.SetLeft( 0 );
1657 r
.SetRight( wxMin( r
.GetRight(), cw
) );
1660 // logical bounds of update region
1663 CalcUnscrolledPosition( r
.GetLeft(), 0, &left
, &dummy
);
1664 CalcUnscrolledPosition( r
.GetRight(), 0, &right
, &dummy
);
1666 // find the cells within these bounds
1670 for ( col
= 0; col
< m_numCols
; col
++ )
1672 if ( m_colRights
[col
] < left
) continue;
1674 colLeft
= m_colRights
[col
] - m_colWidths
[col
];
1675 if ( colLeft
> right
) break;
1677 m_colLabelsExposed
.Add( col
);
1685 void wxGrid::CalcCellsExposed( wxRegion
& reg
)
1687 wxRegionIterator
iter( reg
);
1690 m_cellsExposed
.Empty();
1691 m_rowsExposed
.Empty();
1692 m_colsExposed
.Empty();
1694 int left
, top
, right
, bottom
;
1699 // TODO: remove this when we can...
1700 // There is a bug in wxMotif that gives garbage update
1701 // rectangles if you jump-scroll a long way by clicking the
1702 // scrollbar with middle button. This is a work-around
1704 #if defined(__WXMOTIF__)
1706 m_gridWin
->GetClientSize( &cw
, &ch
);
1707 if ( r
.GetTop() > ch
) r
.SetTop( 0 );
1708 if ( r
.GetLeft() > cw
) r
.SetLeft( 0 );
1709 r
.SetRight( wxMin( r
.GetRight(), cw
) );
1710 r
.SetBottom( wxMin( r
.GetBottom(), ch
) );
1713 // logical bounds of update region
1715 CalcUnscrolledPosition( r
.GetLeft(), r
.GetTop(), &left
, &top
);
1716 CalcUnscrolledPosition( r
.GetRight(), r
.GetBottom(), &right
, &bottom
);
1718 // find the cells within these bounds
1721 int colLeft
, rowTop
;
1722 for ( row
= 0; row
< m_numRows
; row
++ )
1724 if ( m_rowBottoms
[row
] < top
) continue;
1726 rowTop
= m_rowBottoms
[row
] - m_rowHeights
[row
];
1727 if ( rowTop
> bottom
) break;
1729 m_rowsExposed
.Add( row
);
1731 for ( col
= 0; col
< m_numCols
; col
++ )
1733 if ( m_colRights
[col
] < left
) continue;
1735 colLeft
= m_colRights
[col
] - m_colWidths
[col
];
1736 if ( colLeft
> right
) break;
1738 if ( m_colsExposed
.Index( col
) == wxNOT_FOUND
) m_colsExposed
.Add( col
);
1739 m_cellsExposed
.Add( wxGridCellCoords( row
, col
) );
1748 void wxGrid::ProcessRowLabelMouseEvent( wxMouseEvent
& event
)
1751 wxPoint
pos( event
.GetPosition() );
1752 CalcUnscrolledPosition( pos
.x
, pos
.y
, &x
, &y
);
1754 if ( event
.Dragging() )
1756 m_isDragging
= TRUE
;
1758 if ( event
.LeftIsDown() )
1760 switch( m_cursorMode
)
1762 case WXGRID_CURSOR_RESIZE_ROW
:
1764 int cw
, ch
, left
, dummy
;
1765 m_gridWin
->GetClientSize( &cw
, &ch
);
1766 CalcUnscrolledPosition( 0, 0, &left
, &dummy
);
1768 wxClientDC
dc( m_gridWin
);
1770 dc
.SetLogicalFunction(wxINVERT
);
1771 if ( m_dragLastPos
>= 0 )
1773 dc
.DrawLine( left
, m_dragLastPos
, left
+cw
, m_dragLastPos
);
1775 dc
.DrawLine( left
, y
, left
+cw
, y
);
1780 case WXGRID_CURSOR_SELECT_ROW
:
1781 if ( (row
= YToRow( y
)) >= 0 &&
1782 !IsInSelection( row
, 0 ) )
1784 SelectRow( row
, TRUE
);
1787 // default label to suppress warnings about "enumeration value
1788 // 'xxx' not handled in switch
1796 m_isDragging
= FALSE
;
1799 // ------------ Entering or leaving the window
1801 if ( event
.Entering() || event
.Leaving() )
1803 ChangeCursorMode(WXGRID_CURSOR_SELECT_CELL
, m_rowLabelWin
);
1807 // ------------ Left button pressed
1809 else if ( event
.LeftDown() )
1811 // don't send a label click event for a hit on the
1812 // edge of the row label - this is probably the user
1813 // wanting to resize the row
1815 if ( YToEdgeOfRow(y
) < 0 )
1819 !SendEvent( EVT_GRID_LABEL_LEFT_CLICK
, row
, -1, event
) )
1821 SelectRow( row
, event
.ShiftDown() );
1822 ChangeCursorMode(WXGRID_CURSOR_SELECT_ROW
, m_rowLabelWin
);
1827 // starting to drag-resize a row
1829 ChangeCursorMode(WXGRID_CURSOR_RESIZE_ROW
, m_rowLabelWin
);
1834 // ------------ Left double click
1836 else if (event
.LeftDClick() )
1838 if ( YToEdgeOfRow(y
) < 0 )
1841 SendEvent( EVT_GRID_LABEL_LEFT_DCLICK
, row
, -1, event
);
1846 // ------------ Left button released
1848 else if ( event
.LeftUp() )
1850 if ( m_cursorMode
== WXGRID_CURSOR_RESIZE_ROW
)
1852 DoEndDragResizeRow();
1854 // Note: we are ending the event *after* doing
1855 // default processing in this case
1857 SendEvent( EVT_GRID_ROW_SIZE
, m_dragRowOrCol
, -1, event
);
1860 ChangeCursorMode(WXGRID_CURSOR_SELECT_CELL
, m_rowLabelWin
);
1865 // ------------ Right button down
1867 else if ( event
.RightDown() )
1870 if ( !SendEvent( EVT_GRID_LABEL_RIGHT_CLICK
, row
, -1, event
) )
1872 // no default action at the moment
1877 // ------------ Right double click
1879 else if ( event
.RightDClick() )
1882 if ( !SendEvent( EVT_GRID_LABEL_RIGHT_DCLICK
, row
, -1, event
) )
1884 // no default action at the moment
1889 // ------------ No buttons down and mouse moving
1891 else if ( event
.Moving() )
1893 m_dragRowOrCol
= YToEdgeOfRow( y
);
1894 if ( m_dragRowOrCol
>= 0 )
1896 if ( m_cursorMode
== WXGRID_CURSOR_SELECT_CELL
)
1898 // don't capture the mouse yet
1899 ChangeCursorMode(WXGRID_CURSOR_RESIZE_ROW
, m_rowLabelWin
, FALSE
);
1902 else if ( m_cursorMode
!= WXGRID_CURSOR_SELECT_CELL
)
1904 ChangeCursorMode(WXGRID_CURSOR_SELECT_CELL
, m_rowLabelWin
, FALSE
);
1910 void wxGrid::ProcessColLabelMouseEvent( wxMouseEvent
& event
)
1913 wxPoint
pos( event
.GetPosition() );
1914 CalcUnscrolledPosition( pos
.x
, pos
.y
, &x
, &y
);
1916 if ( event
.Dragging() )
1918 m_isDragging
= TRUE
;
1920 if ( event
.LeftIsDown() )
1922 switch( m_cursorMode
)
1924 case WXGRID_CURSOR_RESIZE_COL
:
1926 int cw
, ch
, dummy
, top
;
1927 m_gridWin
->GetClientSize( &cw
, &ch
);
1928 CalcUnscrolledPosition( 0, 0, &dummy
, &top
);
1930 wxClientDC
dc( m_gridWin
);
1932 dc
.SetLogicalFunction(wxINVERT
);
1933 if ( m_dragLastPos
>= 0 )
1935 dc
.DrawLine( m_dragLastPos
, top
, m_dragLastPos
, top
+ch
);
1937 dc
.DrawLine( x
, top
, x
, top
+ch
);
1942 case WXGRID_CURSOR_SELECT_COL
:
1943 if ( (col
= XToCol( x
)) >= 0 &&
1944 !IsInSelection( 0, col
) )
1946 SelectCol( col
, TRUE
);
1949 // default label to suppress warnings about "enumeration value
1950 // 'xxx' not handled in switch
1958 m_isDragging
= FALSE
;
1961 // ------------ Entering or leaving the window
1963 if ( event
.Entering() || event
.Leaving() )
1965 ChangeCursorMode(WXGRID_CURSOR_SELECT_CELL
, m_colLabelWin
);
1969 // ------------ Left button pressed
1971 else if ( event
.LeftDown() )
1973 // don't send a label click event for a hit on the
1974 // edge of the col label - this is probably the user
1975 // wanting to resize the col
1977 if ( XToEdgeOfCol(x
) < 0 )
1981 !SendEvent( EVT_GRID_LABEL_LEFT_CLICK
, -1, col
, event
) )
1983 SelectCol( col
, event
.ShiftDown() );
1984 ChangeCursorMode(WXGRID_CURSOR_SELECT_COL
, m_colLabelWin
);
1989 // starting to drag-resize a col
1991 ChangeCursorMode(WXGRID_CURSOR_RESIZE_COL
, m_colLabelWin
);
1996 // ------------ Left double click
1998 if ( event
.LeftDClick() )
2000 if ( XToEdgeOfCol(x
) < 0 )
2003 SendEvent( EVT_GRID_LABEL_LEFT_DCLICK
, -1, col
, event
);
2008 // ------------ Left button released
2010 else if ( event
.LeftUp() )
2012 if ( m_cursorMode
== WXGRID_CURSOR_RESIZE_COL
)
2014 DoEndDragResizeCol();
2016 // Note: we are ending the event *after* doing
2017 // default processing in this case
2019 SendEvent( EVT_GRID_COL_SIZE
, -1, m_dragRowOrCol
, event
);
2022 ChangeCursorMode(WXGRID_CURSOR_SELECT_CELL
, m_colLabelWin
);
2027 // ------------ Right button down
2029 else if ( event
.RightDown() )
2032 if ( !SendEvent( EVT_GRID_LABEL_RIGHT_CLICK
, -1, col
, event
) )
2034 // no default action at the moment
2039 // ------------ Right double click
2041 else if ( event
.RightDClick() )
2044 if ( !SendEvent( EVT_GRID_LABEL_RIGHT_DCLICK
, -1, col
, event
) )
2046 // no default action at the moment
2051 // ------------ No buttons down and mouse moving
2053 else if ( event
.Moving() )
2055 m_dragRowOrCol
= XToEdgeOfCol( x
);
2056 if ( m_dragRowOrCol
>= 0 )
2058 if ( m_cursorMode
== WXGRID_CURSOR_SELECT_CELL
)
2060 // don't capture the cursor yet
2061 ChangeCursorMode(WXGRID_CURSOR_RESIZE_COL
, m_colLabelWin
, FALSE
);
2064 else if ( m_cursorMode
!= WXGRID_CURSOR_SELECT_CELL
)
2066 ChangeCursorMode(WXGRID_CURSOR_SELECT_CELL
, m_colLabelWin
, FALSE
);
2072 void wxGrid::ProcessCornerLabelMouseEvent( wxMouseEvent
& event
)
2074 if ( event
.LeftDown() )
2076 // indicate corner label by having both row and
2079 if ( !SendEvent( EVT_GRID_LABEL_LEFT_CLICK
, -1, -1, event
) )
2085 else if ( event
.LeftDClick() )
2087 SendEvent( EVT_GRID_LABEL_LEFT_DCLICK
, -1, -1, event
);
2090 else if ( event
.RightDown() )
2092 if ( !SendEvent( EVT_GRID_LABEL_RIGHT_CLICK
, -1, -1, event
) )
2094 // no default action at the moment
2098 else if ( event
.RightDClick() )
2100 if ( !SendEvent( EVT_GRID_LABEL_RIGHT_DCLICK
, -1, -1, event
) )
2102 // no default action at the moment
2107 void wxGrid::ChangeCursorMode(CursorMode mode
,
2112 static const wxChar
*cursorModes
[] =
2121 wxLogTrace(_T("grid"),
2122 _T("wxGrid cursor mode (mouse capture for %s): %s -> %s"),
2123 win
== m_colLabelWin
? _T("colLabelWin")
2124 : win
? _T("rowLabelWin")
2126 cursorModes
[m_cursorMode
], cursorModes
[mode
]);
2127 #endif // __WXDEBUG__
2129 if ( mode
== m_cursorMode
)
2134 // by default use the grid itself
2140 m_winCapture
->ReleaseMouse();
2141 m_winCapture
= (wxWindow
*)NULL
;
2144 m_cursorMode
= mode
;
2146 switch ( m_cursorMode
)
2148 case WXGRID_CURSOR_RESIZE_ROW
:
2149 win
->SetCursor( m_rowResizeCursor
);
2152 case WXGRID_CURSOR_RESIZE_COL
:
2153 win
->SetCursor( m_colResizeCursor
);
2157 win
->SetCursor( *wxSTANDARD_CURSOR
);
2160 // we need to capture mouse when resizing
2161 bool resize
= m_cursorMode
== WXGRID_CURSOR_RESIZE_ROW
||
2162 m_cursorMode
== WXGRID_CURSOR_RESIZE_COL
;
2164 if ( captureMouse
&& resize
)
2166 win
->CaptureMouse();
2171 void wxGrid::ProcessGridCellMouseEvent( wxMouseEvent
& event
)
2174 wxPoint
pos( event
.GetPosition() );
2175 CalcUnscrolledPosition( pos
.x
, pos
.y
, &x
, &y
);
2177 wxGridCellCoords coords
;
2178 XYToCell( x
, y
, coords
);
2180 if ( event
.Dragging() )
2182 m_isDragging
= TRUE
;
2183 if ( m_cursorMode
== WXGRID_CURSOR_SELECT_CELL
)
2185 // Hide the edit control, so it
2186 // won't interfer with drag-shrinking.
2187 if ( IsCellEditControlEnabled() )
2188 HideCellEditControl();
2189 if ( coords
!= wxGridNoCellCoords
)
2191 if ( !IsSelection() )
2193 SelectBlock( coords
, coords
);
2197 SelectBlock( m_currentCellCoords
, coords
);
2201 else if ( m_cursorMode
== WXGRID_CURSOR_RESIZE_ROW
)
2203 int cw
, ch
, left
, dummy
;
2204 m_gridWin
->GetClientSize( &cw
, &ch
);
2205 CalcUnscrolledPosition( 0, 0, &left
, &dummy
);
2207 wxClientDC
dc( m_gridWin
);
2209 dc
.SetLogicalFunction(wxINVERT
);
2210 if ( m_dragLastPos
>= 0 )
2212 dc
.DrawLine( left
, m_dragLastPos
, left
+cw
, m_dragLastPos
);
2214 dc
.DrawLine( left
, y
, left
+cw
, y
);
2217 else if ( m_cursorMode
== WXGRID_CURSOR_RESIZE_COL
)
2219 int cw
, ch
, dummy
, top
;
2220 m_gridWin
->GetClientSize( &cw
, &ch
);
2221 CalcUnscrolledPosition( 0, 0, &dummy
, &top
);
2223 wxClientDC
dc( m_gridWin
);
2225 dc
.SetLogicalFunction(wxINVERT
);
2226 if ( m_dragLastPos
>= 0 )
2228 dc
.DrawLine( m_dragLastPos
, top
, m_dragLastPos
, top
+ch
);
2230 dc
.DrawLine( x
, top
, x
, top
+ch
);
2237 m_isDragging
= FALSE
;
2239 if ( coords
!= wxGridNoCellCoords
)
2241 // VZ: if we do this, the mode is reset to WXGRID_CURSOR_SELECT_CELL
2242 // immediately after it becomes WXGRID_CURSOR_RESIZE_ROW/COL under
2245 if ( event
.Entering() || event
.Leaving() )
2247 ChangeCursorMode(WXGRID_CURSOR_SELECT_CELL
);
2248 m_gridWin
->SetCursor( *wxSTANDARD_CURSOR
);
2253 // ------------ Left button pressed
2255 if ( event
.LeftDown() )
2257 if ( event
.ShiftDown() )
2259 SelectBlock( m_currentCellCoords
, coords
);
2261 else if ( XToEdgeOfCol(x
) < 0 &&
2262 YToEdgeOfRow(y
) < 0 )
2264 if ( !SendEvent( EVT_GRID_CELL_LEFT_CLICK
,
2269 MakeCellVisible( coords
);
2270 SetCurrentCell( coords
);
2276 // ------------ Left double click
2278 else if ( event
.LeftDClick() )
2280 if ( XToEdgeOfCol(x
) < 0 && YToEdgeOfRow(y
) < 0 )
2282 SendEvent( EVT_GRID_CELL_LEFT_DCLICK
,
2290 // ------------ Left button released
2292 else if ( event
.LeftUp() )
2294 if ( m_cursorMode
== WXGRID_CURSOR_SELECT_CELL
)
2296 if ( IsSelection() )
2298 SendEvent( EVT_GRID_RANGE_SELECT
, -1, -1, event
);
2301 // Show the edit control, if it has
2302 // been hidden for drag-shrinking.
2303 if ( IsCellEditControlEnabled() )
2304 ShowCellEditControl();
2306 else if ( m_cursorMode
== WXGRID_CURSOR_RESIZE_ROW
)
2308 ChangeCursorMode(WXGRID_CURSOR_SELECT_CELL
);
2309 DoEndDragResizeRow();
2311 // Note: we are ending the event *after* doing
2312 // default processing in this case
2314 SendEvent( EVT_GRID_ROW_SIZE
, m_dragRowOrCol
, -1, event
);
2316 else if ( m_cursorMode
== WXGRID_CURSOR_RESIZE_COL
)
2318 ChangeCursorMode(WXGRID_CURSOR_SELECT_CELL
);
2319 DoEndDragResizeCol();
2321 // Note: we are ending the event *after* doing
2322 // default processing in this case
2324 SendEvent( EVT_GRID_COL_SIZE
, -1, m_dragRowOrCol
, event
);
2331 // ------------ Right button down
2333 else if ( event
.RightDown() )
2335 if ( !SendEvent( EVT_GRID_CELL_RIGHT_CLICK
,
2340 // no default action at the moment
2345 // ------------ Right double click
2347 else if ( event
.RightDClick() )
2349 if ( !SendEvent( EVT_GRID_CELL_RIGHT_DCLICK
,
2354 // no default action at the moment
2358 // ------------ Moving and no button action
2360 else if ( event
.Moving() && !event
.IsButton() )
2362 int dragRow
= YToEdgeOfRow( y
);
2363 int dragCol
= XToEdgeOfCol( x
);
2365 // Dragging on the corner of a cell to resize in both
2366 // directions is not implemented yet...
2368 if ( dragRow
>= 0 && dragCol
>= 0 )
2370 ChangeCursorMode(WXGRID_CURSOR_SELECT_CELL
);
2376 m_dragRowOrCol
= dragRow
;
2378 if ( m_cursorMode
== WXGRID_CURSOR_SELECT_CELL
)
2380 ChangeCursorMode(WXGRID_CURSOR_RESIZE_ROW
);
2388 m_dragRowOrCol
= dragCol
;
2390 if ( m_cursorMode
== WXGRID_CURSOR_SELECT_CELL
)
2392 ChangeCursorMode(WXGRID_CURSOR_RESIZE_COL
);
2398 // Neither on a row or col edge
2400 if ( m_cursorMode
!= WXGRID_CURSOR_SELECT_CELL
)
2402 ChangeCursorMode(WXGRID_CURSOR_SELECT_CELL
);
2409 void wxGrid::DoEndDragResizeRow()
2411 if ( m_dragLastPos
>= 0 )
2413 // erase the last line and resize the row
2415 int cw
, ch
, left
, dummy
;
2416 m_gridWin
->GetClientSize( &cw
, &ch
);
2417 CalcUnscrolledPosition( 0, 0, &left
, &dummy
);
2419 wxClientDC
dc( m_gridWin
);
2421 dc
.SetLogicalFunction( wxINVERT
);
2422 dc
.DrawLine( left
, m_dragLastPos
, left
+cw
, m_dragLastPos
);
2423 HideCellEditControl();
2425 int rowTop
= m_rowBottoms
[m_dragRowOrCol
] - m_rowHeights
[m_dragRowOrCol
];
2426 SetRowSize( m_dragRowOrCol
,
2427 wxMax( m_dragLastPos
- rowTop
, WXGRID_MIN_ROW_HEIGHT
) );
2429 if ( !GetBatchCount() )
2431 // Only needed to get the correct rect.y:
2432 wxRect
rect ( CellToRect( m_dragRowOrCol
, 0 ) );
2434 CalcScrolledPosition(0, rect
.y
, &dummy
, &rect
.y
);
2435 rect
.width
= m_rowLabelWidth
;
2436 rect
.height
= ch
- rect
.y
;
2437 m_rowLabelWin
->Refresh( TRUE
, &rect
);
2439 m_gridWin
->Refresh( FALSE
, &rect
);
2442 ShowCellEditControl();
2447 void wxGrid::DoEndDragResizeCol()
2449 if ( m_dragLastPos
>= 0 )
2451 // erase the last line and resize the col
2453 int cw
, ch
, dummy
, top
;
2454 m_gridWin
->GetClientSize( &cw
, &ch
);
2455 CalcUnscrolledPosition( 0, 0, &dummy
, &top
);
2457 wxClientDC
dc( m_gridWin
);
2459 dc
.SetLogicalFunction( wxINVERT
);
2460 dc
.DrawLine( m_dragLastPos
, top
, m_dragLastPos
, top
+ch
);
2461 HideCellEditControl();
2463 int colLeft
= m_colRights
[m_dragRowOrCol
] - m_colWidths
[m_dragRowOrCol
];
2464 SetColSize( m_dragRowOrCol
,
2465 wxMax( m_dragLastPos
- colLeft
, WXGRID_MIN_COL_WIDTH
) );
2467 if ( !GetBatchCount() )
2469 // Only needed to get the correct rect.x:
2470 wxRect
rect ( CellToRect( 0, m_dragRowOrCol
) );
2472 CalcScrolledPosition(rect
.x
, 0, &rect
.x
, &dummy
);
2473 rect
.width
= cw
- rect
.x
;
2474 rect
.height
= m_colLabelHeight
;
2475 m_colLabelWin
->Refresh( TRUE
, &rect
);
2477 m_gridWin
->Refresh( FALSE
, &rect
);
2480 ShowCellEditControl();
2487 // ------ interaction with data model
2489 bool wxGrid::ProcessTableMessage( wxGridTableMessage
& msg
)
2491 switch ( msg
.GetId() )
2493 case wxGRIDTABLE_REQUEST_VIEW_GET_VALUES
:
2494 return GetModelValues();
2496 case wxGRIDTABLE_REQUEST_VIEW_SEND_VALUES
:
2497 return SetModelValues();
2499 case wxGRIDTABLE_NOTIFY_ROWS_INSERTED
:
2500 case wxGRIDTABLE_NOTIFY_ROWS_APPENDED
:
2501 case wxGRIDTABLE_NOTIFY_ROWS_DELETED
:
2502 case wxGRIDTABLE_NOTIFY_COLS_INSERTED
:
2503 case wxGRIDTABLE_NOTIFY_COLS_APPENDED
:
2504 case wxGRIDTABLE_NOTIFY_COLS_DELETED
:
2505 return Redimension( msg
);
2514 // The behaviour of this function depends on the grid table class
2515 // Clear() function. For the default wxGridStringTable class the
2516 // behavious is to replace all cell contents with wxEmptyString but
2517 // not to change the number of rows or cols.
2519 void wxGrid::ClearGrid()
2524 SetEditControlValue();
2525 if ( !GetBatchCount() ) m_gridWin
->Refresh();
2530 bool wxGrid::InsertRows( int pos
, int numRows
, bool WXUNUSED(updateLabels
) )
2532 // TODO: something with updateLabels flag
2536 wxFAIL_MSG( wxT("Called wxGrid::InsertRows() before calling CreateGrid()") );
2542 bool ok
= m_table
->InsertRows( pos
, numRows
);
2544 // the table will have sent the results of the insert row
2545 // operation to this view object as a grid table message
2549 if ( m_numCols
== 0 )
2551 m_table
->AppendCols( WXGRID_DEFAULT_NUMBER_COLS
);
2553 // TODO: perhaps instead of appending the default number of cols
2554 // we should remember what the last non-zero number of cols was ?
2558 if ( m_currentCellCoords
== wxGridNoCellCoords
)
2560 // if we have just inserted cols into an empty grid the current
2561 // cell will be undefined...
2563 SetCurrentCell( 0, 0 );
2567 if ( !GetBatchCount() ) Refresh();
2570 SetEditControlValue();
2580 bool wxGrid::AppendRows( int numRows
, bool WXUNUSED(updateLabels
) )
2582 // TODO: something with updateLabels flag
2586 wxFAIL_MSG( wxT("Called wxGrid::AppendRows() before calling CreateGrid()") );
2590 if ( m_table
&& m_table
->AppendRows( numRows
) )
2592 if ( m_currentCellCoords
== wxGridNoCellCoords
)
2594 // if we have just inserted cols into an empty grid the current
2595 // cell will be undefined...
2597 SetCurrentCell( 0, 0 );
2600 // the table will have sent the results of the append row
2601 // operation to this view object as a grid table message
2604 if ( !GetBatchCount() ) Refresh();
2614 bool wxGrid::DeleteRows( int pos
, int numRows
, bool WXUNUSED(updateLabels
) )
2616 // TODO: something with updateLabels flag
2620 wxFAIL_MSG( wxT("Called wxGrid::DeleteRows() before calling CreateGrid()") );
2624 if ( m_table
&& m_table
->DeleteRows( pos
, numRows
) )
2626 // the table will have sent the results of the delete row
2627 // operation to this view object as a grid table message
2629 if ( m_numRows
> 0 )
2630 SetEditControlValue();
2632 HideCellEditControl();
2635 if ( !GetBatchCount() ) Refresh();
2645 bool wxGrid::InsertCols( int pos
, int numCols
, bool WXUNUSED(updateLabels
) )
2647 // TODO: something with updateLabels flag
2651 wxFAIL_MSG( wxT("Called wxGrid::InsertCols() before calling CreateGrid()") );
2657 HideCellEditControl();
2658 bool ok
= m_table
->InsertCols( pos
, numCols
);
2660 // the table will have sent the results of the insert col
2661 // operation to this view object as a grid table message
2665 if ( m_currentCellCoords
== wxGridNoCellCoords
)
2667 // if we have just inserted cols into an empty grid the current
2668 // cell will be undefined...
2670 SetCurrentCell( 0, 0 );
2674 if ( !GetBatchCount() ) Refresh();
2677 SetEditControlValue();
2687 bool wxGrid::AppendCols( int numCols
, bool WXUNUSED(updateLabels
) )
2689 // TODO: something with updateLabels flag
2693 wxFAIL_MSG( wxT("Called wxGrid::AppendCols() before calling CreateGrid()") );
2697 if ( m_table
&& m_table
->AppendCols( numCols
) )
2699 // the table will have sent the results of the append col
2700 // operation to this view object as a grid table message
2702 if ( m_currentCellCoords
== wxGridNoCellCoords
)
2704 // if we have just inserted cols into an empty grid the current
2705 // cell will be undefined...
2707 SetCurrentCell( 0, 0 );
2711 if ( !GetBatchCount() ) Refresh();
2721 bool wxGrid::DeleteCols( int pos
, int numCols
, bool WXUNUSED(updateLabels
) )
2723 // TODO: something with updateLabels flag
2727 wxFAIL_MSG( wxT("Called wxGrid::DeleteCols() before calling CreateGrid()") );
2731 if ( m_table
&& m_table
->DeleteCols( pos
, numCols
) )
2733 // the table will have sent the results of the delete col
2734 // operation to this view object as a grid table message
2736 if ( m_numCols
> 0 )
2737 SetEditControlValue();
2739 HideCellEditControl();
2742 if ( !GetBatchCount() ) Refresh();
2754 // ----- event handlers
2757 // Generate a grid event based on a mouse event and
2758 // return the result of ProcessEvent()
2760 bool wxGrid::SendEvent( const wxEventType type
,
2762 wxMouseEvent
& mouseEv
)
2764 if ( type
== EVT_GRID_ROW_SIZE
||
2765 type
== EVT_GRID_COL_SIZE
)
2767 int rowOrCol
= (row
== -1 ? col
: row
);
2769 wxGridSizeEvent
gridEvt( GetId(),
2773 mouseEv
.GetX(), mouseEv
.GetY(),
2774 mouseEv
.ControlDown(),
2775 mouseEv
.ShiftDown(),
2777 mouseEv
.MetaDown() );
2779 return GetEventHandler()->ProcessEvent(gridEvt
);
2781 else if ( type
== EVT_GRID_RANGE_SELECT
)
2783 wxGridRangeSelectEvent
gridEvt( GetId(),
2787 m_selectedBottomRight
,
2788 mouseEv
.ControlDown(),
2789 mouseEv
.ShiftDown(),
2791 mouseEv
.MetaDown() );
2793 return GetEventHandler()->ProcessEvent(gridEvt
);
2797 wxGridEvent
gridEvt( GetId(),
2801 mouseEv
.GetX(), mouseEv
.GetY(),
2802 mouseEv
.ControlDown(),
2803 mouseEv
.ShiftDown(),
2805 mouseEv
.MetaDown() );
2807 return GetEventHandler()->ProcessEvent(gridEvt
);
2812 // Generate a grid event of specified type and return the result
2813 // of ProcessEvent().
2815 bool wxGrid::SendEvent( const wxEventType type
,
2818 if ( type
== EVT_GRID_ROW_SIZE
||
2819 type
== EVT_GRID_COL_SIZE
)
2821 int rowOrCol
= (row
== -1 ? col
: row
);
2823 wxGridSizeEvent
gridEvt( GetId(),
2828 return GetEventHandler()->ProcessEvent(gridEvt
);
2832 wxGridEvent
gridEvt( GetId(),
2837 return GetEventHandler()->ProcessEvent(gridEvt
);
2842 void wxGrid::OnPaint( wxPaintEvent
& WXUNUSED(event
) )
2844 wxPaintDC
dc( this );
2846 if ( m_currentCellCoords
== wxGridNoCellCoords
&&
2847 m_numRows
&& m_numCols
)
2849 m_currentCellCoords
.Set(0, 0);
2850 SetEditControlValue();
2851 ShowCellEditControl();
2858 // This is just here to make sure that CalcDimensions gets called when
2859 // the grid view is resized... then the size event is skipped to allow
2860 // the box sizers to handle everything
2862 void wxGrid::OnSize( wxSizeEvent
& event
)
2869 void wxGrid::OnKeyDown( wxKeyEvent
& event
)
2871 if ( m_inOnKeyDown
)
2873 // shouldn't be here - we are going round in circles...
2875 wxFAIL_MSG( wxT("wxGrid::OnKeyDown called while alread active") );
2878 m_inOnKeyDown
= TRUE
;
2880 // propagate the event up and see if it gets processed
2882 wxWindow
*parent
= GetParent();
2883 wxKeyEvent
keyEvt( event
);
2884 keyEvt
.SetEventObject( parent
);
2886 if ( !parent
->GetEventHandler()->ProcessEvent( keyEvt
) )
2888 // try local handlers
2890 switch ( event
.KeyCode() )
2893 if ( event
.ControlDown() )
2895 MoveCursorUpBlock();
2904 if ( event
.ControlDown() )
2906 MoveCursorDownBlock();
2915 if ( event
.ControlDown() )
2917 MoveCursorLeftBlock();
2926 if ( event
.ControlDown() )
2928 MoveCursorRightBlock();
2937 if ( !IsEditable() )
2948 if ( event
.ControlDown() )
2950 event
.Skip(); // to let the edit control have the return
2959 if ( event
.ControlDown() )
2961 MakeCellVisible( 0, 0 );
2962 SetCurrentCell( 0, 0 );
2971 if ( event
.ControlDown() )
2973 MakeCellVisible( m_numRows
-1, m_numCols
-1 );
2974 SetCurrentCell( m_numRows
-1, m_numCols
-1 );
2991 // now try the cell edit control
2993 if ( IsCellEditControlEnabled() )
2995 event
.SetEventObject( m_cellEditCtrl
);
2996 m_cellEditCtrl
->GetEventHandler()->ProcessEvent( event
);
3002 m_inOnKeyDown
= FALSE
;
3006 void wxGrid::SetCurrentCell( const wxGridCellCoords
& coords
)
3008 if ( SendEvent( EVT_GRID_SELECT_CELL
, coords
.GetRow(), coords
.GetCol() ) )
3010 // the event has been intercepted - do nothing
3015 m_currentCellCoords
!= wxGridNoCellCoords
)
3017 HideCellEditControl();
3018 SaveEditControlValue();
3021 m_currentCellCoords
= coords
;
3023 SetEditControlValue();
3027 ShowCellEditControl();
3029 if ( IsSelection() )
3031 wxRect
r( SelectionToDeviceRect() );
3033 if ( !GetBatchCount() ) m_gridWin
->Refresh( FALSE
, &r
);
3040 // ------ functions to get/send data (see also public functions)
3043 bool wxGrid::GetModelValues()
3047 // all we need to do is repaint the grid
3049 m_gridWin
->Refresh();
3057 bool wxGrid::SetModelValues()
3063 for ( row
= 0; row
< m_numRows
; row
++ )
3065 for ( col
= 0; col
< m_numCols
; col
++ )
3067 m_table
->SetValue( row
, col
, GetCellValue(row
, col
) );
3079 // Note - this function only draws cells that are in the list of
3080 // exposed cells (usually set from the update region by
3081 // CalcExposedCells)
3083 void wxGrid::DrawGridCellArea( wxDC
& dc
)
3085 if ( !m_numRows
|| !m_numCols
) return;
3088 size_t numCells
= m_cellsExposed
.GetCount();
3090 for ( i
= 0; i
< numCells
; i
++ )
3092 DrawCell( dc
, m_cellsExposed
[i
] );
3097 void wxGrid::DrawCell( wxDC
& dc
, const wxGridCellCoords
& coords
)
3099 if ( m_colWidths
[coords
.GetCol()] <=0 ||
3100 m_rowHeights
[coords
.GetRow()] <= 0 ) return;
3102 #if !WXGRID_DRAW_LINES
3103 if ( m_gridLinesEnabled
)
3104 DrawCellBorder( dc
, coords
);
3107 DrawCellBackground( dc
, coords
);
3109 // TODO: separate functions here for different kinds of cells ?
3112 DrawCellValue( dc
, coords
);
3116 void wxGrid::DrawCellBorder( wxDC
& dc
, const wxGridCellCoords
& coords
)
3118 if ( m_colWidths
[coords
.GetCol()] <=0 ||
3119 m_rowHeights
[coords
.GetRow()] <= 0 ) return;
3121 dc
.SetPen( wxPen(GetGridLineColour(), 1, wxSOLID
) );
3122 int row
= coords
.GetRow();
3123 int col
= coords
.GetCol();
3125 // right hand border
3127 dc
.DrawLine( m_colRights
[col
], m_rowBottoms
[row
] - m_rowHeights
[row
],
3128 m_colRights
[col
], m_rowBottoms
[row
] );
3132 dc
.DrawLine( m_colRights
[col
] - m_colWidths
[col
], m_rowBottoms
[row
],
3133 m_colRights
[col
], m_rowBottoms
[row
] );
3137 void wxGrid::DrawCellBackground( wxDC
& dc
, const wxGridCellCoords
& coords
)
3139 if ( m_colWidths
[coords
.GetCol()] <=0 ||
3140 m_rowHeights
[coords
.GetRow()] <= 0 ) return;
3142 int row
= coords
.GetRow();
3143 int col
= coords
.GetCol();
3145 dc
.SetBackgroundMode( wxSOLID
);
3147 if ( IsInSelection( coords
) )
3149 // TODO: improve this
3151 dc
.SetBrush( *wxBLACK_BRUSH
);
3155 dc
.SetBrush( wxBrush(GetCellBackgroundColour(row
, col
), wxSOLID
) );
3158 dc
.SetPen( *wxTRANSPARENT_PEN
);
3160 dc
.DrawRectangle( m_colRights
[col
] - m_colWidths
[col
] + 1,
3161 m_rowBottoms
[row
] - m_rowHeights
[row
] + 1,
3163 m_rowHeights
[row
]-1 );
3167 void wxGrid::DrawCellValue( wxDC
& dc
, const wxGridCellCoords
& coords
)
3169 if ( m_colWidths
[coords
.GetCol()] <=0 ||
3170 m_rowHeights
[coords
.GetRow()] <= 0 ) return;
3172 int row
= coords
.GetRow();
3173 int col
= coords
.GetCol();
3175 dc
.SetBackgroundMode( wxTRANSPARENT
);
3177 if ( IsInSelection( row
, col
) )
3179 // TODO: improve this
3181 dc
.SetTextBackground( wxColour(0, 0, 0) );
3182 dc
.SetTextForeground( wxColour(255, 255, 255) );
3186 dc
.SetTextBackground( GetCellBackgroundColour(row
, col
) );
3187 dc
.SetTextForeground( GetCellTextColour(row
, col
) );
3189 dc
.SetFont( GetCellFont(row
, col
) );
3192 GetCellAlignment( row
, col
, &hAlign
, &vAlign
);
3195 rect
.SetX( m_colRights
[col
] - m_colWidths
[col
] + 2 );
3196 rect
.SetY( m_rowBottoms
[row
] - m_rowHeights
[row
] + 2 );
3197 rect
.SetWidth( m_colWidths
[col
] - 4 );
3198 rect
.SetHeight( m_rowHeights
[row
] - 4 );
3200 DrawTextRectangle( dc
, GetCellValue( row
, col
), rect
, hAlign
, vAlign
);
3205 // TODO: remove this ???
3206 // This is used to redraw all grid lines e.g. when the grid line colour
3209 void wxGrid::DrawAllGridLines( wxDC
& dc
, const wxRegion
& reg
)
3211 if ( !m_gridLinesEnabled
||
3213 !m_numCols
) return;
3215 int top
, bottom
, left
, right
;
3219 m_gridWin
->GetClientSize(&cw
, &ch
);
3221 // virtual coords of visible area
3223 CalcUnscrolledPosition( 0, 0, &left
, &top
);
3224 CalcUnscrolledPosition( cw
, ch
, &right
, &bottom
);
3228 reg
.GetBox(x
, y
, w
, h
);
3229 CalcUnscrolledPosition( x
, y
, &left
, &top
);
3230 CalcUnscrolledPosition( x
+ w
, y
+ h
, &right
, &bottom
);
3233 // avoid drawing grid lines past the last row and col
3235 right
= wxMin( right
, m_colRights
[m_numCols
-1] );
3236 bottom
= wxMin( bottom
, m_rowBottoms
[m_numRows
-1] );
3238 dc
.SetPen( wxPen(GetGridLineColour(), 1, wxSOLID
) );
3240 // horizontal grid lines
3243 for ( i
= 0; i
< m_numRows
; i
++ )
3245 if ( m_rowBottoms
[i
] > bottom
)
3249 else if ( m_rowBottoms
[i
] >= top
)
3251 dc
.DrawLine( left
, m_rowBottoms
[i
], right
, m_rowBottoms
[i
] );
3256 // vertical grid lines
3258 for ( i
= 0; i
< m_numCols
; i
++ )
3260 if ( m_colRights
[i
] > right
)
3264 else if ( m_colRights
[i
] >= left
)
3266 dc
.DrawLine( m_colRights
[i
], top
, m_colRights
[i
], bottom
);
3272 void wxGrid::DrawRowLabels( wxDC
& dc
)
3274 if ( !m_numRows
|| !m_numCols
) return;
3277 size_t numLabels
= m_rowLabelsExposed
.GetCount();
3279 for ( i
= 0; i
< numLabels
; i
++ )
3281 DrawRowLabel( dc
, m_rowLabelsExposed
[i
] );
3286 void wxGrid::DrawRowLabel( wxDC
& dc
, int row
)
3288 if ( m_rowHeights
[row
] <= 0 ) return;
3290 int rowTop
= m_rowBottoms
[row
] - m_rowHeights
[row
];
3292 dc
.SetPen( *wxBLACK_PEN
);
3293 dc
.DrawLine( m_rowLabelWidth
-1, rowTop
,
3294 m_rowLabelWidth
-1, m_rowBottoms
[row
]-1 );
3296 dc
.DrawLine( 0, m_rowBottoms
[row
]-1,
3297 m_rowLabelWidth
-1, m_rowBottoms
[row
]-1 );
3299 dc
.SetPen( *wxWHITE_PEN
);
3300 dc
.DrawLine( 0, rowTop
, 0, m_rowBottoms
[row
]-1 );
3301 dc
.DrawLine( 0, rowTop
, m_rowLabelWidth
-1, rowTop
);
3303 dc
.SetBackgroundMode( wxTRANSPARENT
);
3304 dc
.SetTextForeground( GetLabelTextColour() );
3305 dc
.SetFont( GetLabelFont() );
3308 GetRowLabelAlignment( &hAlign
, &vAlign
);
3312 rect
.SetY( m_rowBottoms
[row
] - m_rowHeights
[row
] + 2 );
3313 rect
.SetWidth( m_rowLabelWidth
- 4 );
3314 rect
.SetHeight( m_rowHeights
[row
] - 4 );
3315 DrawTextRectangle( dc
, GetRowLabelValue( row
), rect
, hAlign
, vAlign
);
3319 void wxGrid::DrawColLabels( wxDC
& dc
)
3321 if ( !m_numRows
|| !m_numCols
) return;
3324 size_t numLabels
= m_colLabelsExposed
.GetCount();
3326 for ( i
= 0; i
< numLabels
; i
++ )
3328 DrawColLabel( dc
, m_colLabelsExposed
[i
] );
3333 void wxGrid::DrawColLabel( wxDC
& dc
, int col
)
3335 if ( m_colWidths
[col
] <= 0 ) return;
3337 int colLeft
= m_colRights
[col
] - m_colWidths
[col
];
3339 dc
.SetPen( *wxBLACK_PEN
);
3340 dc
.DrawLine( m_colRights
[col
]-1, 0,
3341 m_colRights
[col
]-1, m_colLabelHeight
-1 );
3343 dc
.DrawLine( colLeft
, m_colLabelHeight
-1,
3344 m_colRights
[col
]-1, m_colLabelHeight
-1 );
3346 dc
.SetPen( *wxWHITE_PEN
);
3347 dc
.DrawLine( colLeft
, 0, colLeft
, m_colLabelHeight
-1 );
3348 dc
.DrawLine( colLeft
, 0, m_colRights
[col
]-1, 0 );
3350 dc
.SetBackgroundMode( wxTRANSPARENT
);
3351 dc
.SetTextForeground( GetLabelTextColour() );
3352 dc
.SetFont( GetLabelFont() );
3354 dc
.SetBackgroundMode( wxTRANSPARENT
);
3355 dc
.SetTextForeground( GetLabelTextColour() );
3356 dc
.SetFont( GetLabelFont() );
3359 GetColLabelAlignment( &hAlign
, &vAlign
);
3362 rect
.SetX( m_colRights
[col
] - m_colWidths
[col
] + 2 );
3364 rect
.SetWidth( m_colWidths
[col
] - 4 );
3365 rect
.SetHeight( m_colLabelHeight
- 4 );
3366 DrawTextRectangle( dc
, GetColLabelValue( col
), rect
, hAlign
, vAlign
);
3370 void wxGrid::DrawTextRectangle( wxDC
& dc
,
3371 const wxString
& value
,
3376 long textWidth
, textHeight
;
3377 long lineWidth
, lineHeight
;
3378 wxArrayString lines
;
3380 dc
.SetClippingRegion( rect
);
3381 StringToLines( value
, lines
);
3382 if ( lines
.GetCount() )
3384 GetTextBoxSize( dc
, lines
, &textWidth
, &textHeight
);
3385 dc
.GetTextExtent( lines
[0], &lineWidth
, &lineHeight
);
3388 switch ( horizAlign
)
3391 x
= rect
.x
+ (rect
.width
- textWidth
- 1);
3395 x
= rect
.x
+ ((rect
.width
- textWidth
)/2);
3404 switch ( vertAlign
)
3407 y
= rect
.y
+ (rect
.height
- textHeight
- 1);
3411 y
= rect
.y
+ ((rect
.height
- textHeight
)/2);
3420 for ( size_t i
= 0; i
< lines
.GetCount(); i
++ )
3422 dc
.DrawText( lines
[i
], (long)x
, (long)y
);
3427 dc
.DestroyClippingRegion();
3431 // Split multi line text up into an array of strings. Any existing
3432 // contents of the string array are preserved.
3434 void wxGrid::StringToLines( const wxString
& value
, wxArrayString
& lines
)
3438 wxString eol
= wxTextFile::GetEOL( wxTextFileType_Unix
);
3439 wxString tVal
= wxTextFile::Translate( value
, wxTextFileType_Unix
);
3441 while ( startPos
< (int)tVal
.Length() )
3443 pos
= tVal
.Mid(startPos
).Find( eol
);
3448 else if ( pos
== 0 )
3450 lines
.Add( wxEmptyString
);
3454 lines
.Add( value
.Mid(startPos
, pos
) );
3458 if ( startPos
< (int)value
.Length() )
3460 lines
.Add( value
.Mid( startPos
) );
3465 void wxGrid::GetTextBoxSize( wxDC
& dc
,
3466 wxArrayString
& lines
,
3467 long *width
, long *height
)
3474 for ( i
= 0; i
< lines
.GetCount(); i
++ )
3476 dc
.GetTextExtent( lines
[i
], &lineW
, &lineH
);
3477 w
= wxMax( w
, lineW
);
3487 // ------ Edit control functions
3491 void wxGrid::EnableEditing( bool edit
)
3493 // TODO: improve this ?
3495 if ( edit
!= m_editable
)
3499 // TODO: extend this for other edit control types
3501 if ( m_editCtrlType
== wxGRID_TEXTCTRL
)
3503 ((wxTextCtrl
*)m_cellEditCtrl
)->SetEditable( m_editable
);
3509 #if 0 // disabled for the moment - the cell control is always active
3510 void wxGrid::EnableCellEditControl( bool enable
)
3512 if ( m_cellEditCtrl
&&
3513 enable
!= m_cellEditCtrlEnabled
)
3515 m_cellEditCtrlEnabled
= enable
;
3517 if ( m_cellEditCtrlEnabled
)
3519 SetEditControlValue();
3520 ShowCellEditControl();
3524 HideCellEditControl();
3525 SaveEditControlValue();
3532 void wxGrid::ShowCellEditControl()
3536 if ( IsCellEditControlEnabled() )
3538 if ( !IsVisible( m_currentCellCoords
) )
3544 rect
= CellToRect( m_currentCellCoords
);
3546 // convert to scrolled coords
3548 int left
, top
, right
, bottom
;
3549 CalcScrolledPosition( rect
.GetLeft(), rect
.GetTop(), &left
, &top
);
3550 CalcScrolledPosition( rect
.GetRight(), rect
.GetBottom(), &right
, &bottom
);
3553 m_gridWin
->GetClientSize( &cw
, &ch
);
3555 // Make the edit control large enough to allow for internal margins
3556 // TODO: remove this if the text ctrl sizing is improved esp. for unix
3559 #if defined(__WXMOTIF__)
3560 if ( m_currentCellCoords
.GetRow() == 0 ||
3561 m_currentCellCoords
.GetCol() == 0 )
3570 if ( m_currentCellCoords
.GetRow() == 0 ||
3571 m_currentCellCoords
.GetCol() == 0 )
3581 #if defined(__WXGTK__)
3584 if (left
!= 0) left_diff
++;
3585 if (top
!= 0) top_diff
++;
3586 rect
.SetLeft( left
+ left_diff
);
3587 rect
.SetTop( top
+ top_diff
);
3588 rect
.SetRight( rect
.GetRight() - left_diff
);
3589 rect
.SetBottom( rect
.GetBottom() - top_diff
);
3591 rect
.SetLeft( wxMax(0, left
- extra
) );
3592 rect
.SetTop( wxMax(0, top
- extra
) );
3593 rect
.SetRight( rect
.GetRight() + 2*extra
);
3594 rect
.SetBottom( rect
.GetBottom() + 2*extra
);
3597 m_cellEditCtrl
->SetSize( rect
);
3598 m_cellEditCtrl
->Show( TRUE
);
3600 switch ( m_editCtrlType
)
3602 case wxGRID_TEXTCTRL
:
3603 ((wxTextCtrl
*) m_cellEditCtrl
)->SetInsertionPointEnd();
3606 case wxGRID_CHECKBOX
:
3607 // TODO: anything ???
3612 // TODO: anything ???
3616 case wxGRID_COMBOBOX
:
3617 // TODO: anything ???
3622 m_cellEditCtrl
->SetFocus();
3628 void wxGrid::HideCellEditControl()
3630 if ( IsCellEditControlEnabled() )
3632 m_cellEditCtrl
->Show( FALSE
);
3637 void wxGrid::SetEditControlValue( const wxString
& value
)
3643 s
= GetCellValue(m_currentCellCoords
);
3647 if ( IsCellEditControlEnabled() )
3649 switch ( m_editCtrlType
)
3651 case wxGRID_TEXTCTRL
:
3652 ((wxGridTextCtrl
*)m_cellEditCtrl
)->SetStartValue(s
);
3655 case wxGRID_CHECKBOX
:
3656 // TODO: implement this
3661 // TODO: implement this
3665 case wxGRID_COMBOBOX
:
3666 // TODO: implement this
3675 void wxGrid::SaveEditControlValue()
3679 wxWindow
*ctrl
= (wxWindow
*)NULL
;
3681 if ( IsCellEditControlEnabled() )
3683 ctrl
= m_cellEditCtrl
;
3690 bool valueChanged
= FALSE
;
3692 switch ( m_editCtrlType
)
3694 case wxGRID_TEXTCTRL
:
3695 valueChanged
= (((wxGridTextCtrl
*)ctrl
)->GetValue() !=
3696 ((wxGridTextCtrl
*)ctrl
)->GetStartValue());
3697 SetCellValue( m_currentCellCoords
,
3698 ((wxTextCtrl
*) ctrl
)->GetValue() );
3701 case wxGRID_CHECKBOX
:
3702 // TODO: implement this
3707 // TODO: implement this
3711 case wxGRID_COMBOBOX
:
3712 // TODO: implement this
3719 SendEvent( EVT_GRID_CELL_CHANGE
,
3720 m_currentCellCoords
.GetRow(),
3721 m_currentCellCoords
.GetCol() );
3728 // ------ Grid location functions
3729 // Note that all of these functions work with the logical coordinates of
3730 // grid cells and labels so you will need to convert from device
3731 // coordinates for mouse events etc.
3734 void wxGrid::XYToCell( int x
, int y
, wxGridCellCoords
& coords
)
3736 int row
= YToRow(y
);
3737 int col
= XToCol(x
);
3739 if ( row
== -1 || col
== -1 )
3741 coords
= wxGridNoCellCoords
;
3745 coords
.Set( row
, col
);
3750 int wxGrid::YToRow( int y
)
3754 for ( i
= 0; i
< m_numRows
; i
++ )
3756 if ( y
< m_rowBottoms
[i
] ) return i
;
3763 int wxGrid::XToCol( int x
)
3767 for ( i
= 0; i
< m_numCols
; i
++ )
3769 if ( x
< m_colRights
[i
] ) return i
;
3776 // return the row number that that the y coord is near the edge of, or
3777 // -1 if not near an edge
3779 int wxGrid::YToEdgeOfRow( int y
)
3783 for ( i
= 0; i
< m_numRows
; i
++ )
3785 if ( m_rowHeights
[i
] > WXGRID_LABEL_EDGE_ZONE
)
3787 d
= abs( y
- m_rowBottoms
[i
] );
3789 if ( d
< WXGRID_LABEL_EDGE_ZONE
) return i
;
3798 // return the col number that that the x coord is near the edge of, or
3799 // -1 if not near an edge
3801 int wxGrid::XToEdgeOfCol( int x
)
3805 for ( i
= 0; i
< m_numCols
; i
++ )
3807 if ( m_colWidths
[i
] > WXGRID_LABEL_EDGE_ZONE
)
3809 d
= abs( x
- m_colRights
[i
] );
3811 if ( d
< WXGRID_LABEL_EDGE_ZONE
) return i
;
3820 wxRect
wxGrid::CellToRect( int row
, int col
)
3822 wxRect
rect( -1, -1, -1, -1 );
3824 if ( row
>= 0 && row
< m_numRows
&&
3825 col
>= 0 && col
< m_numCols
)
3827 rect
.x
= m_colRights
[col
] - m_colWidths
[col
];
3828 rect
.y
= m_rowBottoms
[row
] - m_rowHeights
[row
];
3829 rect
.width
= m_colWidths
[col
];
3830 rect
.height
= m_rowHeights
[ row
];
3837 bool wxGrid::IsVisible( int row
, int col
, bool wholeCellVisible
)
3839 // get the cell rectangle in logical coords
3841 wxRect
r( CellToRect( row
, col
) );
3843 // convert to device coords
3845 int left
, top
, right
, bottom
;
3846 CalcScrolledPosition( r
.GetLeft(), r
.GetTop(), &left
, &top
);
3847 CalcScrolledPosition( r
.GetRight(), r
.GetBottom(), &right
, &bottom
);
3849 // check against the client area of the grid window
3852 m_gridWin
->GetClientSize( &cw
, &ch
);
3854 if ( wholeCellVisible
)
3856 // is the cell wholly visible ?
3858 return ( left
>= 0 && right
<= cw
&&
3859 top
>= 0 && bottom
<= ch
);
3863 // is the cell partly visible ?
3865 return ( ((left
>=0 && left
< cw
) || (right
> 0 && right
<= cw
)) &&
3866 ((top
>=0 && top
< ch
) || (bottom
> 0 && bottom
<= ch
)) );
3871 // make the specified cell location visible by doing a minimal amount
3874 void wxGrid::MakeCellVisible( int row
, int col
)
3877 int xpos
= -1, ypos
= -1;
3879 if ( row
>= 0 && row
< m_numRows
&&
3880 col
>= 0 && col
< m_numCols
)
3882 // get the cell rectangle in logical coords
3884 wxRect
r( CellToRect( row
, col
) );
3886 // convert to device coords
3888 int left
, top
, right
, bottom
;
3889 CalcScrolledPosition( r
.GetLeft(), r
.GetTop(), &left
, &top
);
3890 CalcScrolledPosition( r
.GetRight(), r
.GetBottom(), &right
, &bottom
);
3893 m_gridWin
->GetClientSize( &cw
, &ch
);
3899 else if ( bottom
> ch
)
3901 int h
= r
.GetHeight();
3903 for ( i
= row
-1; i
>= 0; i
-- )
3905 if ( h
+ m_rowHeights
[i
] > ch
) break;
3907 h
+= m_rowHeights
[i
];
3908 ypos
-= m_rowHeights
[i
];
3911 // we divide it later by GRID_SCROLL_LINE, make sure that we don't
3912 // have rounding errors (this is important, because if we do, we
3913 // might not scroll at all and some cells won't be redrawn)
3914 ypos
+= GRID_SCROLL_LINE
/ 2;
3921 else if ( right
> cw
)
3923 int w
= r
.GetWidth();
3925 for ( i
= col
-1; i
>= 0; i
-- )
3927 if ( w
+ m_colWidths
[i
] > cw
) break;
3929 w
+= m_colWidths
[i
];
3930 xpos
-= m_colWidths
[i
];
3933 // see comment for ypos above
3934 xpos
+= GRID_SCROLL_LINE
/ 2;
3937 if ( xpos
!= -1 || ypos
!= -1 )
3939 if ( xpos
!= -1 ) xpos
/= GRID_SCROLL_LINE
;
3940 if ( ypos
!= -1 ) ypos
/= GRID_SCROLL_LINE
;
3941 Scroll( xpos
, ypos
);
3949 // ------ Grid cursor movement functions
3952 bool wxGrid::MoveCursorUp()
3954 if ( m_currentCellCoords
!= wxGridNoCellCoords
&&
3955 m_currentCellCoords
.GetRow() > 0 )
3957 MakeCellVisible( m_currentCellCoords
.GetRow() - 1,
3958 m_currentCellCoords
.GetCol() );
3960 SetCurrentCell( m_currentCellCoords
.GetRow() - 1,
3961 m_currentCellCoords
.GetCol() );
3970 bool wxGrid::MoveCursorDown()
3972 // TODO: allow for scrolling
3974 if ( m_currentCellCoords
!= wxGridNoCellCoords
&&
3975 m_currentCellCoords
.GetRow() < m_numRows
-1 )
3977 MakeCellVisible( m_currentCellCoords
.GetRow() + 1,
3978 m_currentCellCoords
.GetCol() );
3980 SetCurrentCell( m_currentCellCoords
.GetRow() + 1,
3981 m_currentCellCoords
.GetCol() );
3990 bool wxGrid::MoveCursorLeft()
3992 if ( m_currentCellCoords
!= wxGridNoCellCoords
&&
3993 m_currentCellCoords
.GetCol() > 0 )
3995 MakeCellVisible( m_currentCellCoords
.GetRow(),
3996 m_currentCellCoords
.GetCol() - 1 );
3998 SetCurrentCell( m_currentCellCoords
.GetRow(),
3999 m_currentCellCoords
.GetCol() - 1 );
4008 bool wxGrid::MoveCursorRight()
4010 if ( m_currentCellCoords
!= wxGridNoCellCoords
&&
4011 m_currentCellCoords
.GetCol() < m_numCols
- 1 )
4013 MakeCellVisible( m_currentCellCoords
.GetRow(),
4014 m_currentCellCoords
.GetCol() + 1 );
4016 SetCurrentCell( m_currentCellCoords
.GetRow(),
4017 m_currentCellCoords
.GetCol() + 1 );
4026 bool wxGrid::MovePageUp()
4028 if ( m_currentCellCoords
== wxGridNoCellCoords
) return FALSE
;
4030 int row
= m_currentCellCoords
.GetRow();
4034 m_gridWin
->GetClientSize( &cw
, &ch
);
4036 int y
= m_rowBottoms
[ row
] - m_rowHeights
[ row
];
4037 int newRow
= YToRow( y
- ch
+ 1 );
4042 else if ( newRow
== row
)
4047 MakeCellVisible( newRow
, m_currentCellCoords
.GetCol() );
4048 SetCurrentCell( newRow
, m_currentCellCoords
.GetCol() );
4056 bool wxGrid::MovePageDown()
4058 if ( m_currentCellCoords
== wxGridNoCellCoords
) return FALSE
;
4060 int row
= m_currentCellCoords
.GetRow();
4061 if ( row
< m_numRows
)
4064 m_gridWin
->GetClientSize( &cw
, &ch
);
4066 int y
= m_rowBottoms
[ row
] - m_rowHeights
[ row
];
4067 int newRow
= YToRow( y
+ ch
);
4070 newRow
= m_numRows
- 1;
4072 else if ( newRow
== row
)
4077 MakeCellVisible( newRow
, m_currentCellCoords
.GetCol() );
4078 SetCurrentCell( newRow
, m_currentCellCoords
.GetCol() );
4086 bool wxGrid::MoveCursorUpBlock()
4089 m_currentCellCoords
!= wxGridNoCellCoords
&&
4090 m_currentCellCoords
.GetRow() > 0 )
4092 int row
= m_currentCellCoords
.GetRow();
4093 int col
= m_currentCellCoords
.GetCol();
4095 if ( m_table
->IsEmptyCell(row
, col
) )
4097 // starting in an empty cell: find the next block of
4103 if ( !(m_table
->IsEmptyCell(row
, col
)) ) break;
4106 else if ( m_table
->IsEmptyCell(row
-1, col
) )
4108 // starting at the top of a block: find the next block
4114 if ( !(m_table
->IsEmptyCell(row
, col
)) ) break;
4119 // starting within a block: find the top of the block
4124 if ( m_table
->IsEmptyCell(row
, col
) )
4132 MakeCellVisible( row
, col
);
4133 SetCurrentCell( row
, col
);
4141 bool wxGrid::MoveCursorDownBlock()
4144 m_currentCellCoords
!= wxGridNoCellCoords
&&
4145 m_currentCellCoords
.GetRow() < m_numRows
-1 )
4147 int row
= m_currentCellCoords
.GetRow();
4148 int col
= m_currentCellCoords
.GetCol();
4150 if ( m_table
->IsEmptyCell(row
, col
) )
4152 // starting in an empty cell: find the next block of
4155 while ( row
< m_numRows
-1 )
4158 if ( !(m_table
->IsEmptyCell(row
, col
)) ) break;
4161 else if ( m_table
->IsEmptyCell(row
+1, col
) )
4163 // starting at the bottom of a block: find the next block
4166 while ( row
< m_numRows
-1 )
4169 if ( !(m_table
->IsEmptyCell(row
, col
)) ) break;
4174 // starting within a block: find the bottom of the block
4176 while ( row
< m_numRows
-1 )
4179 if ( m_table
->IsEmptyCell(row
, col
) )
4187 MakeCellVisible( row
, col
);
4188 SetCurrentCell( row
, col
);
4196 bool wxGrid::MoveCursorLeftBlock()
4199 m_currentCellCoords
!= wxGridNoCellCoords
&&
4200 m_currentCellCoords
.GetCol() > 0 )
4202 int row
= m_currentCellCoords
.GetRow();
4203 int col
= m_currentCellCoords
.GetCol();
4205 if ( m_table
->IsEmptyCell(row
, col
) )
4207 // starting in an empty cell: find the next block of
4213 if ( !(m_table
->IsEmptyCell(row
, col
)) ) break;
4216 else if ( m_table
->IsEmptyCell(row
, col
-1) )
4218 // starting at the left of a block: find the next block
4224 if ( !(m_table
->IsEmptyCell(row
, col
)) ) break;
4229 // starting within a block: find the left of the block
4234 if ( m_table
->IsEmptyCell(row
, col
) )
4242 MakeCellVisible( row
, col
);
4243 SetCurrentCell( row
, col
);
4251 bool wxGrid::MoveCursorRightBlock()
4254 m_currentCellCoords
!= wxGridNoCellCoords
&&
4255 m_currentCellCoords
.GetCol() < m_numCols
-1 )
4257 int row
= m_currentCellCoords
.GetRow();
4258 int col
= m_currentCellCoords
.GetCol();
4260 if ( m_table
->IsEmptyCell(row
, col
) )
4262 // starting in an empty cell: find the next block of
4265 while ( col
< m_numCols
-1 )
4268 if ( !(m_table
->IsEmptyCell(row
, col
)) ) break;
4271 else if ( m_table
->IsEmptyCell(row
, col
+1) )
4273 // starting at the right of a block: find the next block
4276 while ( col
< m_numCols
-1 )
4279 if ( !(m_table
->IsEmptyCell(row
, col
)) ) break;
4284 // starting within a block: find the right of the block
4286 while ( col
< m_numCols
-1 )
4289 if ( m_table
->IsEmptyCell(row
, col
) )
4297 MakeCellVisible( row
, col
);
4298 SetCurrentCell( row
, col
);
4309 // ------ Label values and formatting
4312 void wxGrid::GetRowLabelAlignment( int *horiz
, int *vert
)
4314 *horiz
= m_rowLabelHorizAlign
;
4315 *vert
= m_rowLabelVertAlign
;
4318 void wxGrid::GetColLabelAlignment( int *horiz
, int *vert
)
4320 *horiz
= m_colLabelHorizAlign
;
4321 *vert
= m_colLabelVertAlign
;
4324 wxString
wxGrid::GetRowLabelValue( int row
)
4328 return m_table
->GetRowLabelValue( row
);
4338 wxString
wxGrid::GetColLabelValue( int col
)
4342 return m_table
->GetColLabelValue( col
);
4353 void wxGrid::SetRowLabelSize( int width
)
4355 width
= wxMax( width
, 0 );
4356 if ( width
!= m_rowLabelWidth
)
4360 m_rowLabelWin
->Show( FALSE
);
4361 m_cornerLabelWin
->Show( FALSE
);
4363 else if ( m_rowLabelWidth
== 0 )
4365 m_rowLabelWin
->Show( TRUE
);
4366 if ( m_colLabelHeight
> 0 ) m_cornerLabelWin
->Show( TRUE
);
4369 m_rowLabelWidth
= width
;
4376 void wxGrid::SetColLabelSize( int height
)
4378 height
= wxMax( height
, 0 );
4379 if ( height
!= m_colLabelHeight
)
4383 m_colLabelWin
->Show( FALSE
);
4384 m_cornerLabelWin
->Show( FALSE
);
4386 else if ( m_colLabelHeight
== 0 )
4388 m_colLabelWin
->Show( TRUE
);
4389 if ( m_rowLabelWidth
> 0 ) m_cornerLabelWin
->Show( TRUE
);
4392 m_colLabelHeight
= height
;
4399 void wxGrid::SetLabelBackgroundColour( const wxColour
& colour
)
4401 if ( m_labelBackgroundColour
!= colour
)
4403 m_labelBackgroundColour
= colour
;
4404 m_rowLabelWin
->SetBackgroundColour( colour
);
4405 m_colLabelWin
->SetBackgroundColour( colour
);
4406 m_cornerLabelWin
->SetBackgroundColour( colour
);
4408 if ( !GetBatchCount() )
4410 m_rowLabelWin
->Refresh();
4411 m_colLabelWin
->Refresh();
4412 m_cornerLabelWin
->Refresh();
4417 void wxGrid::SetLabelTextColour( const wxColour
& colour
)
4419 if ( m_labelTextColour
!= colour
)
4421 m_labelTextColour
= colour
;
4422 if ( !GetBatchCount() )
4424 m_rowLabelWin
->Refresh();
4425 m_colLabelWin
->Refresh();
4430 void wxGrid::SetLabelFont( const wxFont
& font
)
4433 if ( !GetBatchCount() )
4435 m_rowLabelWin
->Refresh();
4436 m_colLabelWin
->Refresh();
4440 void wxGrid::SetRowLabelAlignment( int horiz
, int vert
)
4442 if ( horiz
== wxLEFT
|| horiz
== wxCENTRE
|| horiz
== wxRIGHT
)
4444 m_rowLabelHorizAlign
= horiz
;
4447 if ( vert
== wxTOP
|| vert
== wxCENTRE
|| vert
== wxBOTTOM
)
4449 m_rowLabelVertAlign
= vert
;
4452 if ( !GetBatchCount() )
4454 m_rowLabelWin
->Refresh();
4458 void wxGrid::SetColLabelAlignment( int horiz
, int vert
)
4460 if ( horiz
== wxLEFT
|| horiz
== wxCENTRE
|| horiz
== wxRIGHT
)
4462 m_colLabelHorizAlign
= horiz
;
4465 if ( vert
== wxTOP
|| vert
== wxCENTRE
|| vert
== wxBOTTOM
)
4467 m_colLabelVertAlign
= vert
;
4470 if ( !GetBatchCount() )
4472 m_colLabelWin
->Refresh();
4476 void wxGrid::SetRowLabelValue( int row
, const wxString
& s
)
4480 m_table
->SetRowLabelValue( row
, s
);
4481 if ( !GetBatchCount() )
4483 wxRect rect
= CellToRect( row
, 0);
4484 if ( rect
.height
> 0 )
4486 CalcScrolledPosition(0, rect
.y
, &rect
.x
, &rect
.y
);
4488 rect
.width
= m_rowLabelWidth
;
4489 m_rowLabelWin
->Refresh( TRUE
, &rect
);
4495 void wxGrid::SetColLabelValue( int col
, const wxString
& s
)
4499 m_table
->SetColLabelValue( col
, s
);
4500 if ( !GetBatchCount() )
4502 wxRect rect
= CellToRect( 0, col
);
4503 if ( rect
.width
> 0 )
4505 CalcScrolledPosition(rect
.x
, 0, &rect
.x
, &rect
.y
);
4507 rect
.height
= m_colLabelHeight
;
4508 m_colLabelWin
->Refresh( TRUE
, &rect
);
4514 void wxGrid::SetGridLineColour( const wxColour
& colour
)
4516 if ( m_gridLineColour
!= colour
)
4518 m_gridLineColour
= colour
;
4520 wxClientDC
dc( m_gridWin
);
4522 DrawAllGridLines( dc
, wxRegion() );
4526 void wxGrid::EnableGridLines( bool enable
)
4528 if ( enable
!= m_gridLinesEnabled
)
4530 m_gridLinesEnabled
= enable
;
4532 if ( !GetBatchCount() )
4536 wxClientDC
dc( m_gridWin
);
4538 DrawAllGridLines( dc
, wxRegion() );
4542 m_gridWin
->Refresh();
4549 int wxGrid::GetDefaultRowSize()
4551 return m_defaultRowHeight
;
4554 int wxGrid::GetRowSize( int row
)
4556 wxCHECK_MSG( row
>= 0 && row
< m_numRows
, 0, _T("invalid row index") );
4558 return m_rowHeights
[row
];
4561 int wxGrid::GetDefaultColSize()
4563 return m_defaultColWidth
;
4566 int wxGrid::GetColSize( int col
)
4568 wxCHECK_MSG( col
>= 0 && col
< m_numCols
, 0, _T("invalid column index") );
4570 return m_colWidths
[col
];
4573 // ============================================================================
4574 // access to the grid attributes: each of them has a default value in the grid
4575 // itself and may be overidden on a per-cell basis
4576 // ============================================================================
4578 // ----------------------------------------------------------------------------
4579 // setting default attributes
4580 // ----------------------------------------------------------------------------
4582 void wxGrid::SetDefaultCellBackgroundColour( const wxColour
& col
)
4584 m_gridWin
->SetBackgroundColour(col
);
4587 void wxGrid::SetDefaultCellTextColour( const wxColour
& col
)
4589 m_gridWin
->SetForegroundColour(col
);
4592 void wxGrid::SetDefaultCellAlignment( int horiz
, int vert
)
4594 m_defaultCellHAlign
= horiz
;
4595 m_defaultCellVAlign
= vert
;
4598 void wxGrid::SetDefaultCellFont( const wxFont
& font
)
4600 m_defaultCellFont
= font
;
4603 // ----------------------------------------------------------------------------
4604 // access to the default attrbiutes
4605 // ----------------------------------------------------------------------------
4607 wxColour
wxGrid::GetDefaultCellBackgroundColour()
4609 return m_gridWin
->GetBackgroundColour();
4612 wxColour
wxGrid::GetDefaultCellTextColour()
4614 return m_gridWin
->GetForegroundColour();
4617 wxFont
wxGrid::GetDefaultCellFont()
4619 return m_defaultCellFont
;
4622 void wxGrid::GetDefaultCellAlignment( int *horiz
, int *vert
)
4625 *horiz
= m_defaultCellHAlign
;
4627 *vert
= m_defaultCellVAlign
;
4630 // ----------------------------------------------------------------------------
4631 // access to cell attributes
4632 // ----------------------------------------------------------------------------
4634 // TODO VZ: we must cache the attr to allow only retrieveing it once!
4636 wxColour
wxGrid::GetCellBackgroundColour(int row
, int col
)
4638 wxGridCellAttr
*attr
= m_table
? m_table
->GetAttr(row
, col
) : NULL
;
4641 if ( attr
&& attr
->HasBackgroundColour() )
4642 colour
= attr
->GetBackgroundColour();
4644 colour
= GetDefaultCellBackgroundColour();
4651 wxColour
wxGrid::GetCellTextColour( int row
, int col
)
4653 wxGridCellAttr
*attr
= m_table
? m_table
->GetAttr(row
, col
) : NULL
;
4656 if ( attr
&& attr
->HasTextColour() )
4657 colour
= attr
->GetTextColour();
4659 colour
= GetDefaultCellTextColour();
4666 wxFont
wxGrid::GetCellFont( int row
, int col
)
4668 wxGridCellAttr
*attr
= m_table
? m_table
->GetAttr(row
, col
) : NULL
;
4671 if ( attr
&& attr
->HasFont() )
4672 font
= attr
->GetFont();
4674 font
= GetDefaultCellFont();
4681 void wxGrid::GetCellAlignment( int row
, int col
, int *horiz
, int *vert
)
4683 wxGridCellAttr
*attr
= m_table
? m_table
->GetAttr(row
, col
) : NULL
;
4685 if ( attr
&& attr
->HasAlignment() )
4686 attr
->GetAlignment(horiz
, vert
);
4688 GetDefaultCellAlignment(horiz
, vert
);
4693 // ----------------------------------------------------------------------------
4694 // setting cell attributes: this is forwarded to the table
4695 // ----------------------------------------------------------------------------
4697 bool wxGrid::CanHaveAttributes()
4704 if ( !m_table
->GetAttrProvider() )
4706 // use the default attr provider by default
4707 // (another choice would be to just return FALSE thus forcing the user
4709 m_table
->SetAttrProvider(new wxGridCellAttrProvider
);
4715 wxGridCellAttr
*wxGrid::GetCellAttr(int row
, int col
) const
4717 wxGridCellAttr
*attr
= m_table
->GetAttr(row
, col
);
4720 attr
= new wxGridCellAttr
;
4722 // artificially inc the ref count to match DecRef() in caller
4725 m_table
->SetAttr(attr
, row
, col
);
4731 void wxGrid::SetCellBackgroundColour( int row
, int col
, const wxColour
& colour
)
4733 if ( CanHaveAttributes() )
4735 wxGridCellAttr
*attr
= GetCellAttr(row
, col
);
4736 attr
->SetBackgroundColour(colour
);
4741 void wxGrid::SetCellTextColour( int row
, int col
, const wxColour
& colour
)
4743 if ( CanHaveAttributes() )
4745 wxGridCellAttr
*attr
= GetCellAttr(row
, col
);
4746 attr
->SetTextColour(colour
);
4751 void wxGrid::SetCellFont( int row
, int col
, const wxFont
& font
)
4753 if ( CanHaveAttributes() )
4755 wxGridCellAttr
*attr
= GetCellAttr(row
, col
);
4756 attr
->SetFont(font
);
4761 void wxGrid::SetCellAlignment( int row
, int col
, int horiz
, int vert
)
4763 if ( CanHaveAttributes() )
4765 wxGridCellAttr
*attr
= GetCellAttr(row
, col
);
4766 attr
->SetAlignment(horiz
, vert
);
4771 // ----------------------------------------------------------------------------
4773 // ----------------------------------------------------------------------------
4775 void wxGrid::SetDefaultRowSize( int height
, bool resizeExistingRows
)
4777 m_defaultRowHeight
= wxMax( height
, WXGRID_MIN_ROW_HEIGHT
);
4779 if ( resizeExistingRows
)
4783 for ( row
= 0; row
< m_numRows
; row
++ )
4785 m_rowHeights
[row
] = m_defaultRowHeight
;
4786 bottom
+= m_defaultRowHeight
;
4787 m_rowBottoms
[row
] = bottom
;
4793 void wxGrid::SetRowSize( int row
, int height
)
4795 wxCHECK_RET( row
>= 0 && row
< m_numRows
, _T("invalid row index") );
4799 int h
= wxMax( 0, height
);
4800 int diff
= h
- m_rowHeights
[row
];
4802 m_rowHeights
[row
] = h
;
4803 for ( i
= row
; i
< m_numRows
; i
++ )
4805 m_rowBottoms
[i
] += diff
;
4810 void wxGrid::SetDefaultColSize( int width
, bool resizeExistingCols
)
4812 m_defaultColWidth
= wxMax( width
, WXGRID_MIN_COL_WIDTH
);
4814 if ( resizeExistingCols
)
4818 for ( col
= 0; col
< m_numCols
; col
++ )
4820 m_colWidths
[col
] = m_defaultColWidth
;
4821 right
+= m_defaultColWidth
;
4822 m_colRights
[col
] = right
;
4828 void wxGrid::SetColSize( int col
, int width
)
4830 wxCHECK_RET( col
>= 0 && col
< m_numCols
, _T("invalid column index") );
4834 int w
= wxMax( 0, width
);
4835 int diff
= w
- m_colWidths
[col
];
4836 m_colWidths
[col
] = w
;
4838 for ( i
= col
; i
< m_numCols
; i
++ )
4840 m_colRights
[i
] += diff
;
4847 // ------ cell value accessor functions
4850 void wxGrid::SetCellValue( int row
, int col
, const wxString
& s
)
4854 m_table
->SetValue( row
, col
, s
.c_str() );
4855 if ( !GetBatchCount() )
4857 wxClientDC
dc( m_gridWin
);
4859 DrawCell( dc
, wxGridCellCoords(row
, col
) );
4862 #if 0 // TODO: edit in place
4864 if ( m_currentCellCoords
.GetRow() == row
&&
4865 m_currentCellCoords
.GetCol() == col
)
4867 SetEditControlValue( s
);
4876 // ------ Block, row and col selection
4879 void wxGrid::SelectRow( int row
, bool addToSelected
)
4883 if ( IsSelection() && addToSelected
)
4886 bool need_refresh
[4] = { FALSE
, FALSE
, FALSE
, FALSE
};
4889 wxCoord oldLeft
= m_selectedTopLeft
.GetCol();
4890 wxCoord oldTop
= m_selectedTopLeft
.GetRow();
4891 wxCoord oldRight
= m_selectedBottomRight
.GetCol();
4892 wxCoord oldBottom
= m_selectedBottomRight
.GetRow();
4896 need_refresh
[0] = TRUE
;
4897 rect
[0] = BlockToDeviceRect( wxGridCellCoords ( row
, 0 ),
4898 wxGridCellCoords ( oldTop
- 1,
4900 m_selectedTopLeft
.SetRow( row
);
4905 need_refresh
[1] = TRUE
;
4906 rect
[1] = BlockToDeviceRect( wxGridCellCoords ( oldTop
, 0 ),
4907 wxGridCellCoords ( oldBottom
,
4910 m_selectedTopLeft
.SetCol( 0 );
4913 if ( oldBottom
< row
)
4915 need_refresh
[2] = TRUE
;
4916 rect
[2] = BlockToDeviceRect( wxGridCellCoords ( oldBottom
+ 1, 0 ),
4917 wxGridCellCoords ( row
,
4919 m_selectedBottomRight
.SetRow( row
);
4922 if ( oldRight
< m_numCols
- 1 )
4924 need_refresh
[3] = TRUE
;
4925 rect
[3] = BlockToDeviceRect( wxGridCellCoords ( oldTop
,
4927 wxGridCellCoords ( oldBottom
,
4929 m_selectedBottomRight
.SetCol( m_numCols
- 1 );
4932 for (i
= 0; i
< 4; i
++ )
4933 if ( need_refresh
[i
] && rect
[i
] != wxGridNoCellRect
)
4934 m_gridWin
->Refresh( FALSE
, &(rect
[i
]) );
4938 r
= SelectionToDeviceRect();
4940 if ( r
!= wxGridNoCellRect
) m_gridWin
->Refresh( FALSE
, &r
);
4942 m_selectedTopLeft
.Set( row
, 0 );
4943 m_selectedBottomRight
.Set( row
, m_numCols
-1 );
4944 r
= SelectionToDeviceRect();
4945 m_gridWin
->Refresh( FALSE
, &r
);
4948 wxGridRangeSelectEvent
gridEvt( GetId(),
4949 EVT_GRID_RANGE_SELECT
,
4952 m_selectedBottomRight
);
4954 GetEventHandler()->ProcessEvent(gridEvt
);
4958 void wxGrid::SelectCol( int col
, bool addToSelected
)
4960 if ( IsSelection() && addToSelected
)
4963 bool need_refresh
[4] = { FALSE
, FALSE
, FALSE
, FALSE
};
4966 wxCoord oldLeft
= m_selectedTopLeft
.GetCol();
4967 wxCoord oldTop
= m_selectedTopLeft
.GetRow();
4968 wxCoord oldRight
= m_selectedBottomRight
.GetCol();
4969 wxCoord oldBottom
= m_selectedBottomRight
.GetRow();
4971 if ( oldLeft
> col
)
4973 need_refresh
[0] = TRUE
;
4974 rect
[0] = BlockToDeviceRect( wxGridCellCoords ( 0, col
),
4975 wxGridCellCoords ( m_numRows
- 1,
4977 m_selectedTopLeft
.SetCol( col
);
4982 need_refresh
[1] = TRUE
;
4983 rect
[1] = BlockToDeviceRect( wxGridCellCoords ( 0, oldLeft
),
4984 wxGridCellCoords ( oldTop
- 1,
4986 m_selectedTopLeft
.SetRow( 0 );
4989 if ( oldRight
< col
)
4991 need_refresh
[2] = TRUE
;
4992 rect
[2] = BlockToDeviceRect( wxGridCellCoords ( 0, oldRight
+ 1 ),
4993 wxGridCellCoords ( m_numRows
- 1,
4995 m_selectedBottomRight
.SetCol( col
);
4998 if ( oldBottom
< m_numRows
- 1 )
5000 need_refresh
[3] = TRUE
;
5001 rect
[3] = BlockToDeviceRect( wxGridCellCoords ( oldBottom
+ 1,
5003 wxGridCellCoords ( m_numRows
- 1,
5005 m_selectedBottomRight
.SetRow( m_numRows
- 1 );
5008 for (i
= 0; i
< 4; i
++ )
5009 if ( need_refresh
[i
] && rect
[i
] != wxGridNoCellRect
)
5010 m_gridWin
->Refresh( FALSE
, &(rect
[i
]) );
5016 r
= SelectionToDeviceRect();
5018 if ( r
!= wxGridNoCellRect
) m_gridWin
->Refresh( FALSE
, &r
);
5020 m_selectedTopLeft
.Set( 0, col
);
5021 m_selectedBottomRight
.Set( m_numRows
-1, col
);
5022 r
= SelectionToDeviceRect();
5023 m_gridWin
->Refresh( FALSE
, &r
);
5026 wxGridRangeSelectEvent
gridEvt( GetId(),
5027 EVT_GRID_RANGE_SELECT
,
5030 m_selectedBottomRight
);
5032 GetEventHandler()->ProcessEvent(gridEvt
);
5036 void wxGrid::SelectBlock( int topRow
, int leftCol
, int bottomRow
, int rightCol
)
5039 wxGridCellCoords updateTopLeft
, updateBottomRight
;
5041 if ( topRow
> bottomRow
)
5048 if ( leftCol
> rightCol
)
5055 updateTopLeft
= wxGridCellCoords( topRow
, leftCol
);
5056 updateBottomRight
= wxGridCellCoords( bottomRow
, rightCol
);
5058 if ( m_selectedTopLeft
!= updateTopLeft
||
5059 m_selectedBottomRight
!= updateBottomRight
)
5061 // Compute two optimal update rectangles:
5062 // Either one rectangle is a real subset of the
5063 // other, or they are (almost) disjoint!
5065 bool need_refresh
[4] = { FALSE
, FALSE
, FALSE
, FALSE
};
5068 // Store intermediate values
5069 wxCoord oldLeft
= m_selectedTopLeft
.GetCol();
5070 wxCoord oldTop
= m_selectedTopLeft
.GetRow();
5071 wxCoord oldRight
= m_selectedBottomRight
.GetCol();
5072 wxCoord oldBottom
= m_selectedBottomRight
.GetRow();
5074 // Determine the outer/inner coordinates.
5075 if (oldLeft
> leftCol
)
5081 if (oldTop
> topRow
)
5087 if (oldRight
< rightCol
)
5090 oldRight
= rightCol
;
5093 if (oldBottom
< bottomRow
)
5096 oldBottom
= bottomRow
;
5100 // Now, either the stuff marked old is the outer
5101 // rectangle or we don't have a situation where one
5102 // is contained in the other.
5104 if ( oldLeft
< leftCol
)
5106 need_refresh
[0] = TRUE
;
5107 rect
[0] = BlockToDeviceRect( wxGridCellCoords ( oldTop
,
5109 wxGridCellCoords ( oldBottom
,
5113 if ( oldTop
< topRow
)
5115 need_refresh
[1] = TRUE
;
5116 rect
[1] = BlockToDeviceRect( wxGridCellCoords ( oldTop
,
5118 wxGridCellCoords ( topRow
- 1,
5122 if ( oldRight
> rightCol
)
5124 need_refresh
[2] = TRUE
;
5125 rect
[2] = BlockToDeviceRect( wxGridCellCoords ( oldTop
,
5127 wxGridCellCoords ( oldBottom
,
5131 if ( oldBottom
> bottomRow
)
5133 need_refresh
[3] = TRUE
;
5134 rect
[3] = BlockToDeviceRect( wxGridCellCoords ( bottomRow
+ 1,
5136 wxGridCellCoords ( oldBottom
,
5142 m_selectedTopLeft
= updateTopLeft
;
5143 m_selectedBottomRight
= updateBottomRight
;
5145 // various Refresh() calls
5146 for (i
= 0; i
< 4; i
++ )
5147 if ( need_refresh
[i
] && rect
[i
] != wxGridNoCellRect
)
5148 m_gridWin
->Refresh( FALSE
, &(rect
[i
]) );
5151 // only generate an event if the block is not being selected by
5152 // dragging the mouse (in which case the event will be generated in
5153 // the mouse event handler)
5154 if ( !m_isDragging
)
5156 wxGridRangeSelectEvent
gridEvt( GetId(),
5157 EVT_GRID_RANGE_SELECT
,
5160 m_selectedBottomRight
);
5162 GetEventHandler()->ProcessEvent(gridEvt
);
5166 void wxGrid::SelectAll()
5168 m_selectedTopLeft
.Set( 0, 0 );
5169 m_selectedBottomRight
.Set( m_numRows
-1, m_numCols
-1 );
5171 m_gridWin
->Refresh();
5175 void wxGrid::ClearSelection()
5177 m_selectedTopLeft
= wxGridNoCellCoords
;
5178 m_selectedBottomRight
= wxGridNoCellCoords
;
5182 // This function returns the rectangle that encloses the given block
5183 // in device coords clipped to the client size of the grid window.
5185 wxRect
wxGrid::BlockToDeviceRect( const wxGridCellCoords
&topLeft
,
5186 const wxGridCellCoords
&bottomRight
)
5188 wxRect
rect( wxGridNoCellRect
);
5191 cellRect
= CellToRect( topLeft
);
5192 if ( cellRect
!= wxGridNoCellRect
)
5198 rect
= wxRect( 0, 0, 0, 0 );
5201 cellRect
= CellToRect( bottomRight
);
5202 if ( cellRect
!= wxGridNoCellRect
)
5208 return wxGridNoCellRect
;
5211 // convert to scrolled coords
5213 int left
, top
, right
, bottom
;
5214 CalcScrolledPosition( rect
.GetLeft(), rect
.GetTop(), &left
, &top
);
5215 CalcScrolledPosition( rect
.GetRight(), rect
.GetBottom(), &right
, &bottom
);
5218 m_gridWin
->GetClientSize( &cw
, &ch
);
5220 rect
.SetLeft( wxMax(0, left
) );
5221 rect
.SetTop( wxMax(0, top
) );
5222 rect
.SetRight( wxMin(cw
, right
) );
5223 rect
.SetBottom( wxMin(ch
, bottom
) );
5231 // ------ Grid event classes
5234 IMPLEMENT_DYNAMIC_CLASS( wxGridEvent
, wxEvent
)
5236 wxGridEvent::wxGridEvent( int id
, wxEventType type
, wxObject
* obj
,
5237 int row
, int col
, int x
, int y
,
5238 bool control
, bool shift
, bool alt
, bool meta
)
5239 : wxNotifyEvent( type
, id
)
5245 m_control
= control
;
5250 SetEventObject(obj
);
5254 IMPLEMENT_DYNAMIC_CLASS( wxGridSizeEvent
, wxEvent
)
5256 wxGridSizeEvent::wxGridSizeEvent( int id
, wxEventType type
, wxObject
* obj
,
5257 int rowOrCol
, int x
, int y
,
5258 bool control
, bool shift
, bool alt
, bool meta
)
5259 : wxNotifyEvent( type
, id
)
5261 m_rowOrCol
= rowOrCol
;
5264 m_control
= control
;
5269 SetEventObject(obj
);
5273 IMPLEMENT_DYNAMIC_CLASS( wxGridRangeSelectEvent
, wxEvent
)
5275 wxGridRangeSelectEvent::wxGridRangeSelectEvent(int id
, wxEventType type
, wxObject
* obj
,
5276 const wxGridCellCoords
& topLeft
,
5277 const wxGridCellCoords
& bottomRight
,
5278 bool control
, bool shift
, bool alt
, bool meta
)
5279 : wxNotifyEvent( type
, id
)
5281 m_topLeft
= topLeft
;
5282 m_bottomRight
= bottomRight
;
5283 m_control
= control
;
5288 SetEventObject(obj
);
5292 #endif // ifndef wxUSE_NEW_GRID