1 ///////////////////////////////////////////////////////////////////////////
2 // Name: generic/grid.cpp
3 // Purpose: wxGrid and related classes
4 // Author: Michael Bedward (based on code by Julian Smart, Robin Dunn)
8 // Copyright: (c) Michael Bedward (mbedward@ozemail.com.au)
9 // Licence: wxWindows licence
10 /////////////////////////////////////////////////////////////////////////////
12 // ============================================================================
14 // ============================================================================
16 // ----------------------------------------------------------------------------
18 // ----------------------------------------------------------------------------
21 #pragma implementation "grid.h"
24 // For compilers that support precompilation, includes "wx/wx.h".
25 #include "wx/wxprec.h"
33 #if !defined(wxUSE_NEW_GRID) || !(wxUSE_NEW_GRID)
39 #include "wx/dcclient.h"
40 #include "wx/settings.h"
42 #include "wx/textctrl.h"
43 #include "wx/checkbox.h"
44 #include "wx/combobox.h"
45 #include "wx/valtext.h"
48 #include "wx/textfile.h"
49 #include "wx/spinctrl.h"
50 #include "wx/tokenzr.h"
53 #include "wx/generic/gridsel.h"
55 // ----------------------------------------------------------------------------
57 // ----------------------------------------------------------------------------
59 WX_DEFINE_ARRAY(wxGridCellAttr
*, wxArrayAttrs
);
61 struct wxGridCellWithAttr
63 wxGridCellWithAttr(int row
, int col
, wxGridCellAttr
*attr_
)
64 : coords(row
, col
), attr(attr_
)
73 wxGridCellCoords coords
;
77 WX_DECLARE_OBJARRAY(wxGridCellWithAttr
, wxGridCellWithAttrArray
);
79 #include "wx/arrimpl.cpp"
81 WX_DEFINE_OBJARRAY(wxGridCellCoordsArray
)
82 WX_DEFINE_OBJARRAY(wxGridCellWithAttrArray
)
84 // ----------------------------------------------------------------------------
86 // ----------------------------------------------------------------------------
88 class WXDLLEXPORT wxGridRowLabelWindow
: public wxWindow
91 wxGridRowLabelWindow() { m_owner
= (wxGrid
*)NULL
; }
92 wxGridRowLabelWindow( wxGrid
*parent
, wxWindowID id
,
93 const wxPoint
&pos
, const wxSize
&size
);
98 void OnPaint( wxPaintEvent
& event
);
99 void OnMouseEvent( wxMouseEvent
& event
);
100 void OnKeyDown( wxKeyEvent
& event
);
102 DECLARE_DYNAMIC_CLASS(wxGridRowLabelWindow
)
103 DECLARE_EVENT_TABLE()
107 class WXDLLEXPORT wxGridColLabelWindow
: public wxWindow
110 wxGridColLabelWindow() { m_owner
= (wxGrid
*)NULL
; }
111 wxGridColLabelWindow( wxGrid
*parent
, wxWindowID id
,
112 const wxPoint
&pos
, const wxSize
&size
);
117 void OnPaint( wxPaintEvent
&event
);
118 void OnMouseEvent( wxMouseEvent
& event
);
119 void OnKeyDown( wxKeyEvent
& event
);
121 DECLARE_DYNAMIC_CLASS(wxGridColLabelWindow
)
122 DECLARE_EVENT_TABLE()
126 class WXDLLEXPORT wxGridCornerLabelWindow
: public wxWindow
129 wxGridCornerLabelWindow() { m_owner
= (wxGrid
*)NULL
; }
130 wxGridCornerLabelWindow( wxGrid
*parent
, wxWindowID id
,
131 const wxPoint
&pos
, const wxSize
&size
);
136 void OnMouseEvent( wxMouseEvent
& event
);
137 void OnKeyDown( wxKeyEvent
& event
);
138 void OnPaint( wxPaintEvent
& event
);
140 DECLARE_DYNAMIC_CLASS(wxGridCornerLabelWindow
)
141 DECLARE_EVENT_TABLE()
144 class WXDLLEXPORT wxGridWindow
: public wxPanel
149 m_owner
= (wxGrid
*)NULL
;
150 m_rowLabelWin
= (wxGridRowLabelWindow
*)NULL
;
151 m_colLabelWin
= (wxGridColLabelWindow
*)NULL
;
154 wxGridWindow( wxGrid
*parent
,
155 wxGridRowLabelWindow
*rowLblWin
,
156 wxGridColLabelWindow
*colLblWin
,
157 wxWindowID id
, const wxPoint
&pos
, const wxSize
&size
);
160 void ScrollWindow( int dx
, int dy
, const wxRect
*rect
);
164 wxGridRowLabelWindow
*m_rowLabelWin
;
165 wxGridColLabelWindow
*m_colLabelWin
;
167 void OnPaint( wxPaintEvent
&event
);
168 void OnMouseEvent( wxMouseEvent
& event
);
169 void OnKeyDown( wxKeyEvent
& );
170 void OnEraseBackground( wxEraseEvent
& );
173 DECLARE_DYNAMIC_CLASS(wxGridWindow
)
174 DECLARE_EVENT_TABLE()
179 class wxGridCellEditorEvtHandler
: public wxEvtHandler
182 wxGridCellEditorEvtHandler()
183 : m_grid(0), m_editor(0)
185 wxGridCellEditorEvtHandler(wxGrid
* grid
, wxGridCellEditor
* editor
)
186 : m_grid(grid
), m_editor(editor
)
189 void OnKeyDown(wxKeyEvent
& event
);
190 void OnChar(wxKeyEvent
& event
);
194 wxGridCellEditor
* m_editor
;
195 DECLARE_DYNAMIC_CLASS(wxGridCellEditorEvtHandler
)
196 DECLARE_EVENT_TABLE()
200 IMPLEMENT_DYNAMIC_CLASS( wxGridCellEditorEvtHandler
, wxEvtHandler
)
201 BEGIN_EVENT_TABLE( wxGridCellEditorEvtHandler
, wxEvtHandler
)
202 EVT_KEY_DOWN( wxGridCellEditorEvtHandler::OnKeyDown
)
203 EVT_CHAR( wxGridCellEditorEvtHandler::OnChar
)
208 // ----------------------------------------------------------------------------
209 // the internal data representation used by wxGridCellAttrProvider
210 // ----------------------------------------------------------------------------
212 // this class stores attributes set for cells
213 class WXDLLEXPORT wxGridCellAttrData
216 void SetAttr(wxGridCellAttr
*attr
, int row
, int col
);
217 wxGridCellAttr
*GetAttr(int row
, int col
) const;
218 void UpdateAttrRows( size_t pos
, int numRows
);
219 void UpdateAttrCols( size_t pos
, int numCols
);
222 // searches for the attr for given cell, returns wxNOT_FOUND if not found
223 int FindIndex(int row
, int col
) const;
225 wxGridCellWithAttrArray m_attrs
;
228 // this class stores attributes set for rows or columns
229 class WXDLLEXPORT wxGridRowOrColAttrData
232 // empty ctor to suppress warnings
233 wxGridRowOrColAttrData() { }
234 ~wxGridRowOrColAttrData();
236 void SetAttr(wxGridCellAttr
*attr
, int rowOrCol
);
237 wxGridCellAttr
*GetAttr(int rowOrCol
) const;
238 void UpdateAttrRowsOrCols( size_t pos
, int numRowsOrCols
);
241 wxArrayInt m_rowsOrCols
;
242 wxArrayAttrs m_attrs
;
245 // NB: this is just a wrapper around 3 objects: one which stores cell
246 // attributes, and 2 others for row/col ones
247 class WXDLLEXPORT wxGridCellAttrProviderData
250 wxGridCellAttrData m_cellAttrs
;
251 wxGridRowOrColAttrData m_rowAttrs
,
256 // ----------------------------------------------------------------------------
257 // data structures used for the data type registry
258 // ----------------------------------------------------------------------------
260 struct wxGridDataTypeInfo
262 wxGridDataTypeInfo(const wxString
& typeName
,
263 wxGridCellRenderer
* renderer
,
264 wxGridCellEditor
* editor
)
265 : m_typeName(typeName
), m_renderer(renderer
), m_editor(editor
)
268 ~wxGridDataTypeInfo()
270 wxSafeDecRef(m_renderer
);
271 wxSafeDecRef(m_editor
);
275 wxGridCellRenderer
* m_renderer
;
276 wxGridCellEditor
* m_editor
;
280 WX_DEFINE_ARRAY(wxGridDataTypeInfo
*, wxGridDataTypeInfoArray
);
283 class WXDLLEXPORT wxGridTypeRegistry
286 ~wxGridTypeRegistry();
288 void RegisterDataType(const wxString
& typeName
,
289 wxGridCellRenderer
* renderer
,
290 wxGridCellEditor
* editor
);
292 // find one of already registered data types
293 int FindRegisteredDataType(const wxString
& typeName
);
295 // try to FindRegisteredDataType(), if this fails and typeName is one of
296 // standard typenames, register it and return its index
297 int FindDataType(const wxString
& typeName
);
299 // try to FindDataType(), if it fails see if it is not one of already
300 // registered data types with some params in which case clone the
301 // registered data type and set params for it
302 int FindOrCloneDataType(const wxString
& typeName
);
304 wxGridCellRenderer
* GetRenderer(int index
);
305 wxGridCellEditor
* GetEditor(int index
);
308 wxGridDataTypeInfoArray m_typeinfo
;
311 // ----------------------------------------------------------------------------
312 // conditional compilation
313 // ----------------------------------------------------------------------------
315 #ifndef WXGRID_DRAW_LINES
316 #define WXGRID_DRAW_LINES 1
319 // ----------------------------------------------------------------------------
321 // ----------------------------------------------------------------------------
323 //#define DEBUG_ATTR_CACHE
324 #ifdef DEBUG_ATTR_CACHE
325 static size_t gs_nAttrCacheHits
= 0;
326 static size_t gs_nAttrCacheMisses
= 0;
327 #endif // DEBUG_ATTR_CACHE
329 // ----------------------------------------------------------------------------
331 // ----------------------------------------------------------------------------
333 wxGridCellCoords
wxGridNoCellCoords( -1, -1 );
334 wxRect
wxGridNoCellRect( -1, -1, -1, -1 );
337 // TODO: fixed so far - make configurable later (and also different for x/y)
338 static const size_t GRID_SCROLL_LINE
= 10;
340 // the size of hash tables used a bit everywhere (the max number of elements
341 // in these hash tables is the number of rows/columns)
342 static const int GRID_HASH_SIZE
= 100;
344 // ============================================================================
346 // ============================================================================
348 // ----------------------------------------------------------------------------
350 // ----------------------------------------------------------------------------
352 wxGridCellEditor::wxGridCellEditor()
358 wxGridCellEditor::~wxGridCellEditor()
363 void wxGridCellEditor::Create(wxWindow
* WXUNUSED(parent
),
364 wxWindowID
WXUNUSED(id
),
365 wxEvtHandler
* evtHandler
)
368 m_control
->PushEventHandler(evtHandler
);
371 void wxGridCellEditor::PaintBackground(const wxRect
& rectCell
,
372 wxGridCellAttr
*attr
)
374 // erase the background because we might not fill the cell
375 wxClientDC
dc(m_control
->GetParent());
376 dc
.SetPen(*wxTRANSPARENT_PEN
);
377 dc
.SetBrush(wxBrush(attr
->GetBackgroundColour(), wxSOLID
));
378 dc
.DrawRectangle(rectCell
);
380 // redraw the control we just painted over
381 m_control
->Refresh();
384 void wxGridCellEditor::Destroy()
388 m_control
->PopEventHandler(TRUE
/* delete it*/);
390 m_control
->Destroy();
395 void wxGridCellEditor::Show(bool show
, wxGridCellAttr
*attr
)
397 wxASSERT_MSG(m_control
,
398 wxT("The wxGridCellEditor must be Created first!"));
399 m_control
->Show(show
);
403 // set the colours/fonts if we have any
406 m_colFgOld
= m_control
->GetForegroundColour();
407 m_control
->SetForegroundColour(attr
->GetTextColour());
409 m_colBgOld
= m_control
->GetBackgroundColour();
410 m_control
->SetBackgroundColour(attr
->GetBackgroundColour());
412 m_fontOld
= m_control
->GetFont();
413 m_control
->SetFont(attr
->GetFont());
415 // can't do anything more in the base class version, the other
416 // attributes may only be used by the derived classes
421 // restore the standard colours fonts
422 if ( m_colFgOld
.Ok() )
424 m_control
->SetForegroundColour(m_colFgOld
);
425 m_colFgOld
= wxNullColour
;
428 if ( m_colBgOld
.Ok() )
430 m_control
->SetBackgroundColour(m_colBgOld
);
431 m_colBgOld
= wxNullColour
;
434 if ( m_fontOld
.Ok() )
436 m_control
->SetFont(m_fontOld
);
437 m_fontOld
= wxNullFont
;
442 void wxGridCellEditor::SetSize(const wxRect
& rect
)
444 wxASSERT_MSG(m_control
,
445 wxT("The wxGridCellEditor must be Created first!"));
446 m_control
->SetSize(rect
, wxSIZE_ALLOW_MINUS_ONE
);
449 void wxGridCellEditor::HandleReturn(wxKeyEvent
& event
)
455 void wxGridCellEditor::StartingKey(wxKeyEvent
& event
)
460 void wxGridCellEditor::StartingClick()
464 // ----------------------------------------------------------------------------
465 // wxGridCellTextEditor
466 // ----------------------------------------------------------------------------
468 wxGridCellTextEditor::wxGridCellTextEditor()
473 void wxGridCellTextEditor::Create(wxWindow
* parent
,
475 wxEvtHandler
* evtHandler
)
477 m_control
= new wxTextCtrl(parent
, id
, wxEmptyString
,
478 wxDefaultPosition
, wxDefaultSize
479 #if defined(__WXMSW__)
480 , wxTE_MULTILINE
| wxTE_NO_VSCROLL
// necessary ???
484 // TODO: use m_maxChars
486 wxGridCellEditor::Create(parent
, id
, evtHandler
);
489 void wxGridCellTextEditor::PaintBackground(const wxRect
& WXUNUSED(rectCell
),
490 wxGridCellAttr
* WXUNUSED(attr
))
492 // as we fill the entire client area, don't do anything here to minimize
496 void wxGridCellTextEditor::SetSize(const wxRect
& rectOrig
)
498 wxRect
rect(rectOrig
);
500 // Make the edit control large enough to allow for internal
503 // TODO: remove this if the text ctrl sizing is improved esp. for
506 #if defined(__WXGTK__)
515 int extra_x
= ( rect
.x
> 2 )? 2 : 1;
516 int extra_y
= ( rect
.y
> 2 )? 2 : 1;
517 #if defined(__WXMOTIF__)
521 rect
.SetLeft( wxMax(0, rect
.x
- extra_x
) );
522 rect
.SetTop( wxMax(0, rect
.y
- extra_y
) );
523 rect
.SetRight( rect
.GetRight() + 2*extra_x
);
524 rect
.SetBottom( rect
.GetBottom() + 2*extra_y
);
527 wxGridCellEditor::SetSize(rect
);
530 void wxGridCellTextEditor::BeginEdit(int row
, int col
, wxGrid
* grid
)
532 wxASSERT_MSG(m_control
,
533 wxT("The wxGridCellEditor must be Created first!"));
535 m_startValue
= grid
->GetTable()->GetValue(row
, col
);
537 DoBeginEdit(m_startValue
);
540 void wxGridCellTextEditor::DoBeginEdit(const wxString
& startValue
)
542 Text()->SetValue(startValue
);
543 Text()->SetInsertionPointEnd();
547 bool wxGridCellTextEditor::EndEdit(int row
, int col
,
550 wxASSERT_MSG(m_control
,
551 wxT("The wxGridCellEditor must be Created first!"));
553 bool changed
= FALSE
;
554 wxString value
= Text()->GetValue();
555 if (value
!= m_startValue
)
559 grid
->GetTable()->SetValue(row
, col
, value
);
561 m_startValue
= wxEmptyString
;
562 Text()->SetValue(m_startValue
);
568 void wxGridCellTextEditor::Reset()
570 wxASSERT_MSG(m_control
,
571 wxT("The wxGridCellEditor must be Created first!"));
573 DoReset(m_startValue
);
576 void wxGridCellTextEditor::DoReset(const wxString
& startValue
)
578 Text()->SetValue(startValue
);
579 Text()->SetInsertionPointEnd();
582 void wxGridCellTextEditor::StartingKey(wxKeyEvent
& event
)
584 if ( !event
.AltDown() && !event
.MetaDown() && !event
.ControlDown() )
586 // insert the key in the control
587 long keycode
= event
.KeyCode();
588 if ( isprint(keycode
) )
590 // FIXME this is not going to work for non letters...
591 if ( !event
.ShiftDown() )
593 keycode
= tolower(keycode
);
596 Text()->AppendText((wxChar
)keycode
);
606 void wxGridCellTextEditor::HandleReturn(wxKeyEvent
& event
)
608 #if defined(__WXMOTIF__) || defined(__WXGTK__)
609 // wxMotif needs a little extra help...
610 int pos
= Text()->GetInsertionPoint();
611 wxString
s( Text()->GetValue() );
612 s
= s
.Left(pos
) + "\n" + s
.Mid(pos
);
614 Text()->SetInsertionPoint( pos
);
616 // the other ports can handle a Return key press
622 void wxGridCellTextEditor::SetParameters(const wxString
& params
)
632 if ( !params
.ToLong(&tmp
) )
634 wxLogDebug(_T("Invalid wxGridCellTextEditor parameter string "
635 "'%s' ignored"), params
.c_str());
639 m_maxChars
= (size_t)tmp
;
644 // ----------------------------------------------------------------------------
645 // wxGridCellNumberEditor
646 // ----------------------------------------------------------------------------
648 wxGridCellNumberEditor::wxGridCellNumberEditor(int min
, int max
)
654 void wxGridCellNumberEditor::Create(wxWindow
* parent
,
656 wxEvtHandler
* evtHandler
)
660 // create a spin ctrl
661 m_control
= new wxSpinCtrl(parent
, -1, wxEmptyString
,
662 wxDefaultPosition
, wxDefaultSize
,
666 wxGridCellEditor::Create(parent
, id
, evtHandler
);
670 // just a text control
671 wxGridCellTextEditor::Create(parent
, id
, evtHandler
);
674 Text()->SetValidator(wxTextValidator(wxFILTER_NUMERIC
));
675 #endif // wxUSE_VALIDATORS
679 void wxGridCellNumberEditor::BeginEdit(int row
, int col
, wxGrid
* grid
)
681 // first get the value
682 wxGridTableBase
*table
= grid
->GetTable();
683 if ( table
->CanGetValueAs(row
, col
, wxGRID_VALUE_NUMBER
) )
685 m_valueOld
= table
->GetValueAsLong(row
, col
);
689 wxString sValue
= table
->GetValue(row
, col
);
690 if (! sValue
.ToLong(&m_valueOld
))
692 wxFAIL_MSG( _T("this cell doesn't have numeric value") );
699 Spin()->SetValue(m_valueOld
);
703 DoBeginEdit(GetString());
707 bool wxGridCellNumberEditor::EndEdit(int row
, int col
,
715 value
= Spin()->GetValue();
716 changed
= value
!= m_valueOld
;
720 changed
= Text()->GetValue().ToLong(&value
) && (value
!= m_valueOld
);
725 if (grid
->GetTable()->CanSetValueAs(row
, col
, wxGRID_VALUE_NUMBER
))
726 grid
->GetTable()->SetValueAsLong(row
, col
, value
);
728 grid
->GetTable()->SetValue(row
, col
, wxString::Format("%ld", value
));
734 void wxGridCellNumberEditor::Reset()
738 Spin()->SetValue(m_valueOld
);
742 DoReset(GetString());
746 void wxGridCellNumberEditor::StartingKey(wxKeyEvent
& event
)
750 long keycode
= event
.KeyCode();
751 if ( isdigit(keycode
) || keycode
== '+' || keycode
== '-' )
753 wxGridCellTextEditor::StartingKey(event
);
763 void wxGridCellNumberEditor::SetParameters(const wxString
& params
)
774 if ( params
.BeforeFirst(_T(',')).ToLong(&tmp
) )
778 if ( params
.AfterFirst(_T(',')).ToLong(&tmp
) )
782 // skip the error message below
787 wxLogDebug(_T("Invalid wxGridCellNumberEditor parameter string "
788 "'%s' ignored"), params
.c_str());
792 // ----------------------------------------------------------------------------
793 // wxGridCellFloatEditor
794 // ----------------------------------------------------------------------------
796 void wxGridCellFloatEditor::Create(wxWindow
* parent
,
798 wxEvtHandler
* evtHandler
)
800 wxGridCellTextEditor::Create(parent
, id
, evtHandler
);
803 Text()->SetValidator(wxTextValidator(wxFILTER_NUMERIC
));
804 #endif // wxUSE_VALIDATORS
807 void wxGridCellFloatEditor::BeginEdit(int row
, int col
, wxGrid
* grid
)
809 // first get the value
810 wxGridTableBase
*table
= grid
->GetTable();
811 if ( table
->CanGetValueAs(row
, col
, wxGRID_VALUE_FLOAT
) )
813 m_valueOld
= table
->GetValueAsDouble(row
, col
);
817 wxString sValue
= table
->GetValue(row
, col
);
818 if (! sValue
.ToDouble(&m_valueOld
))
820 wxFAIL_MSG( _T("this cell doesn't have float value") );
825 DoBeginEdit(GetString());
828 bool wxGridCellFloatEditor::EndEdit(int row
, int col
,
832 if ( Text()->GetValue().ToDouble(&value
) && (value
!= m_valueOld
) )
834 if (grid
->GetTable()->CanSetValueAs(row
, col
, wxGRID_VALUE_FLOAT
))
835 grid
->GetTable()->SetValueAsDouble(row
, col
, value
);
837 grid
->GetTable()->SetValue(row
, col
, wxString::Format("%f", value
));
847 void wxGridCellFloatEditor::Reset()
849 DoReset(GetString());
852 void wxGridCellFloatEditor::StartingKey(wxKeyEvent
& event
)
854 long keycode
= event
.KeyCode();
855 if ( isdigit(keycode
) ||
856 keycode
== '+' || keycode
== '-' || keycode
== '.' )
858 wxGridCellTextEditor::StartingKey(event
);
867 // ----------------------------------------------------------------------------
868 // wxGridCellBoolEditor
869 // ----------------------------------------------------------------------------
871 void wxGridCellBoolEditor::Create(wxWindow
* parent
,
873 wxEvtHandler
* evtHandler
)
875 m_control
= new wxCheckBox(parent
, id
, wxEmptyString
,
876 wxDefaultPosition
, wxDefaultSize
,
879 wxGridCellEditor::Create(parent
, id
, evtHandler
);
882 void wxGridCellBoolEditor::SetSize(const wxRect
& r
)
885 wxSize size
= m_control
->GetSize();
886 wxCoord minSize
= wxMin(r
.width
, r
.height
);
888 // check if the checkbox is not too big/small for this cell
889 wxSize sizeBest
= m_control
->GetBestSize();
890 if ( !(size
== sizeBest
) )
892 // reset to default size if it had been made smaller
898 if ( size
.x
>= minSize
|| size
.y
>= minSize
)
900 // leave 1 pixel margin
901 size
.x
= size
.y
= minSize
- 2;
908 m_control
->SetSize(size
);
911 // position it in the centre of the rectangle (TODO: support alignment?)
913 #if defined(__WXGTK__) || defined (__WXMOTIF__)
914 // the checkbox without label still has some space to the right in wxGTK,
915 // so shift it to the right
917 #elif defined(__WXMSW__)
918 // here too, but in other way
923 m_control
->Move(r
.x
+ r
.width
/2 - size
.x
/2, r
.y
+ r
.height
/2 - size
.y
/2);
926 void wxGridCellBoolEditor::Show(bool show
, wxGridCellAttr
*attr
)
928 m_control
->Show(show
);
932 wxColour colBg
= attr
? attr
->GetBackgroundColour() : *wxLIGHT_GREY
;
933 CBox()->SetBackgroundColour(colBg
);
937 void wxGridCellBoolEditor::BeginEdit(int row
, int col
, wxGrid
* grid
)
939 wxASSERT_MSG(m_control
,
940 wxT("The wxGridCellEditor must be Created first!"));
942 if (grid
->GetTable()->CanGetValueAs(row
, col
, wxGRID_VALUE_BOOL
))
943 m_startValue
= grid
->GetTable()->GetValueAsBool(row
, col
);
945 m_startValue
= !!grid
->GetTable()->GetValue(row
, col
);
946 CBox()->SetValue(m_startValue
);
950 bool wxGridCellBoolEditor::EndEdit(int row
, int col
,
953 wxASSERT_MSG(m_control
,
954 wxT("The wxGridCellEditor must be Created first!"));
956 bool changed
= FALSE
;
957 bool value
= CBox()->GetValue();
958 if ( value
!= m_startValue
)
963 if (grid
->GetTable()->CanGetValueAs(row
, col
, wxGRID_VALUE_BOOL
))
964 grid
->GetTable()->SetValueAsBool(row
, col
, value
);
966 grid
->GetTable()->SetValue(row
, col
, value
? _T("1") : wxEmptyString
);
972 void wxGridCellBoolEditor::Reset()
974 wxASSERT_MSG(m_control
,
975 wxT("The wxGridCellEditor must be Created first!"));
977 CBox()->SetValue(m_startValue
);
980 void wxGridCellBoolEditor::StartingClick()
982 CBox()->SetValue(!CBox()->GetValue());
985 // ----------------------------------------------------------------------------
986 // wxGridCellChoiceEditor
987 // ----------------------------------------------------------------------------
989 wxGridCellChoiceEditor::wxGridCellChoiceEditor(size_t count
,
990 const wxChar
* choices
[],
992 : m_allowOthers(allowOthers
)
996 m_choices
.Alloc(count
);
997 for ( size_t n
= 0; n
< count
; n
++ )
999 m_choices
.Add(choices
[n
]);
1004 wxGridCellEditor
*wxGridCellChoiceEditor::Clone() const
1006 wxGridCellChoiceEditor
*editor
= new wxGridCellChoiceEditor
;
1007 editor
->m_allowOthers
= m_allowOthers
;
1008 editor
->m_choices
= m_choices
;
1013 void wxGridCellChoiceEditor::Create(wxWindow
* parent
,
1015 wxEvtHandler
* evtHandler
)
1017 size_t count
= m_choices
.GetCount();
1018 wxString
*choices
= new wxString
[count
];
1019 for ( size_t n
= 0; n
< count
; n
++ )
1021 choices
[n
] = m_choices
[n
];
1024 m_control
= new wxComboBox(parent
, id
, wxEmptyString
,
1025 wxDefaultPosition
, wxDefaultSize
,
1027 m_allowOthers
? 0 : wxCB_READONLY
);
1031 wxGridCellEditor::Create(parent
, id
, evtHandler
);
1034 void wxGridCellChoiceEditor::PaintBackground(const wxRect
& rectCell
,
1035 wxGridCellAttr
* attr
)
1037 // as we fill the entire client area, don't do anything here to minimize
1040 // TODO: It doesn't actually fill the client area since the height of a
1041 // combo always defaults to the standard... Until someone has time to
1042 // figure out the right rectangle to paint, just do it the normal way...
1043 wxGridCellEditor::PaintBackground(rectCell
, attr
);
1046 void wxGridCellChoiceEditor::BeginEdit(int row
, int col
, wxGrid
* grid
)
1048 wxASSERT_MSG(m_control
,
1049 wxT("The wxGridCellEditor must be Created first!"));
1051 m_startValue
= grid
->GetTable()->GetValue(row
, col
);
1053 Combo()->SetValue(m_startValue
);
1054 size_t count
= m_choices
.GetCount();
1055 for (size_t i
=0; i
<count
; i
++)
1057 if (m_startValue
== m_choices
[i
])
1059 Combo()->SetSelection(i
);
1063 Combo()->SetInsertionPointEnd();
1064 Combo()->SetFocus();
1067 bool wxGridCellChoiceEditor::EndEdit(int row
, int col
,
1070 wxString value
= Combo()->GetValue();
1071 bool changed
= value
!= m_startValue
;
1074 grid
->GetTable()->SetValue(row
, col
, value
);
1076 m_startValue
= wxEmptyString
;
1077 Combo()->SetValue(m_startValue
);
1082 void wxGridCellChoiceEditor::Reset()
1084 Combo()->SetValue(m_startValue
);
1085 Combo()->SetInsertionPointEnd();
1088 void wxGridCellChoiceEditor::SetParameters(const wxString
& params
)
1098 wxStringTokenizer
tk(params
, _T(','));
1099 while ( tk
.HasMoreTokens() )
1101 m_choices
.Add(tk
.GetNextToken());
1105 // ----------------------------------------------------------------------------
1106 // wxGridCellEditorEvtHandler
1107 // ----------------------------------------------------------------------------
1109 void wxGridCellEditorEvtHandler::OnKeyDown(wxKeyEvent
& event
)
1111 switch ( event
.KeyCode() )
1115 m_grid
->DisableCellEditControl();
1119 event
.Skip( m_grid
->ProcessEvent( event
) );
1123 if (!m_grid
->ProcessEvent(event
))
1124 m_editor
->HandleReturn(event
);
1133 void wxGridCellEditorEvtHandler::OnChar(wxKeyEvent
& event
)
1135 switch ( event
.KeyCode() )
1147 // ----------------------------------------------------------------------------
1148 // wxGridCellWorker is an (almost) empty common base class for
1149 // wxGridCellRenderer and wxGridCellEditor managing ref counting
1150 // ----------------------------------------------------------------------------
1152 void wxGridCellWorker::SetParameters(const wxString
& WXUNUSED(params
))
1157 wxGridCellWorker::~wxGridCellWorker()
1161 // ============================================================================
1163 // ============================================================================
1165 // ----------------------------------------------------------------------------
1166 // wxGridCellRenderer
1167 // ----------------------------------------------------------------------------
1169 void wxGridCellRenderer::Draw(wxGrid
& grid
,
1170 wxGridCellAttr
& attr
,
1176 dc
.SetBackgroundMode( wxSOLID
);
1180 dc
.SetBrush( wxBrush(grid
.GetSelectionBackground(), wxSOLID
) );
1184 dc
.SetBrush( wxBrush(attr
.GetBackgroundColour(), wxSOLID
) );
1187 dc
.SetPen( *wxTRANSPARENT_PEN
);
1188 dc
.DrawRectangle(rect
);
1191 // ----------------------------------------------------------------------------
1192 // wxGridCellStringRenderer
1193 // ----------------------------------------------------------------------------
1195 void wxGridCellStringRenderer::SetTextColoursAndFont(wxGrid
& grid
,
1196 wxGridCellAttr
& attr
,
1200 dc
.SetBackgroundMode( wxTRANSPARENT
);
1202 // TODO some special colours for attr.IsReadOnly() case?
1206 dc
.SetTextBackground( grid
.GetSelectionBackground() );
1207 dc
.SetTextForeground( grid
.GetSelectionForeground() );
1211 dc
.SetTextBackground( attr
.GetBackgroundColour() );
1212 dc
.SetTextForeground( attr
.GetTextColour() );
1215 dc
.SetFont( attr
.GetFont() );
1218 wxSize
wxGridCellStringRenderer::DoGetBestSize(wxGridCellAttr
& attr
,
1220 const wxString
& text
)
1223 dc
.SetFont(attr
.GetFont());
1224 dc
.GetTextExtent(text
, &x
, &y
);
1226 return wxSize(x
, y
);
1229 wxSize
wxGridCellStringRenderer::GetBestSize(wxGrid
& grid
,
1230 wxGridCellAttr
& attr
,
1234 return DoGetBestSize(attr
, dc
, grid
.GetCellValue(row
, col
));
1237 void wxGridCellStringRenderer::Draw(wxGrid
& grid
,
1238 wxGridCellAttr
& attr
,
1240 const wxRect
& rectCell
,
1244 wxGridCellRenderer::Draw(grid
, attr
, dc
, rectCell
, row
, col
, isSelected
);
1246 // now we only have to draw the text
1247 SetTextColoursAndFont(grid
, attr
, dc
, isSelected
);
1250 attr
.GetAlignment(&hAlign
, &vAlign
);
1252 wxRect rect
= rectCell
;
1255 grid
.DrawTextRectangle(dc
, grid
.GetCellValue(row
, col
),
1256 rect
, hAlign
, vAlign
);
1259 // ----------------------------------------------------------------------------
1260 // wxGridCellNumberRenderer
1261 // ----------------------------------------------------------------------------
1263 wxString
wxGridCellNumberRenderer::GetString(wxGrid
& grid
, int row
, int col
)
1265 wxGridTableBase
*table
= grid
.GetTable();
1267 if ( table
->CanGetValueAs(row
, col
, wxGRID_VALUE_NUMBER
) )
1269 text
.Printf(_T("%ld"), table
->GetValueAsLong(row
, col
));
1273 text
= table
->GetValue(row
, col
);
1279 void wxGridCellNumberRenderer::Draw(wxGrid
& grid
,
1280 wxGridCellAttr
& attr
,
1282 const wxRect
& rectCell
,
1286 wxGridCellRenderer::Draw(grid
, attr
, dc
, rectCell
, row
, col
, isSelected
);
1288 SetTextColoursAndFont(grid
, attr
, dc
, isSelected
);
1290 // draw the text right aligned by default
1292 attr
.GetAlignment(&hAlign
, &vAlign
);
1295 wxRect rect
= rectCell
;
1298 grid
.DrawTextRectangle(dc
, GetString(grid
, row
, col
), rect
, hAlign
, vAlign
);
1301 wxSize
wxGridCellNumberRenderer::GetBestSize(wxGrid
& grid
,
1302 wxGridCellAttr
& attr
,
1306 return DoGetBestSize(attr
, dc
, GetString(grid
, row
, col
));
1309 // ----------------------------------------------------------------------------
1310 // wxGridCellFloatRenderer
1311 // ----------------------------------------------------------------------------
1313 wxGridCellFloatRenderer::wxGridCellFloatRenderer(int width
, int precision
)
1316 SetPrecision(precision
);
1319 wxGridCellRenderer
*wxGridCellFloatRenderer::Clone() const
1321 wxGridCellFloatRenderer
*renderer
= new wxGridCellFloatRenderer
;
1322 renderer
->m_width
= m_width
;
1323 renderer
->m_precision
= m_precision
;
1324 renderer
->m_format
= m_format
;
1329 wxString
wxGridCellFloatRenderer::GetString(wxGrid
& grid
, int row
, int col
)
1331 wxGridTableBase
*table
= grid
.GetTable();
1336 if ( table
->CanGetValueAs(row
, col
, wxGRID_VALUE_FLOAT
) )
1338 val
= table
->GetValueAsDouble(row
, col
);
1343 text
= table
->GetValue(row
, col
);
1344 hasDouble
= text
.ToDouble(&val
);
1351 if ( m_width
== -1 )
1353 // default width/precision
1354 m_format
= _T("%f");
1356 else if ( m_precision
== -1 )
1358 // default precision
1359 m_format
.Printf(_T("%%%d.f"), m_width
);
1363 m_format
.Printf(_T("%%%d.%df"), m_width
, m_precision
);
1367 text
.Printf(m_format
, val
);
1369 //else: text already contains the string
1374 void wxGridCellFloatRenderer::Draw(wxGrid
& grid
,
1375 wxGridCellAttr
& attr
,
1377 const wxRect
& rectCell
,
1381 wxGridCellRenderer::Draw(grid
, attr
, dc
, rectCell
, row
, col
, isSelected
);
1383 SetTextColoursAndFont(grid
, attr
, dc
, isSelected
);
1385 // draw the text right aligned by default
1387 attr
.GetAlignment(&hAlign
, &vAlign
);
1390 wxRect rect
= rectCell
;
1393 grid
.DrawTextRectangle(dc
, GetString(grid
, row
, col
), rect
, hAlign
, vAlign
);
1396 wxSize
wxGridCellFloatRenderer::GetBestSize(wxGrid
& grid
,
1397 wxGridCellAttr
& attr
,
1401 return DoGetBestSize(attr
, dc
, GetString(grid
, row
, col
));
1404 void wxGridCellFloatRenderer::SetParameters(const wxString
& params
)
1410 // reset to defaults
1416 wxString tmp
= params
.BeforeFirst(_T(','));
1420 if ( !tmp
.ToLong(&width
) )
1426 SetWidth((int)width
);
1428 tmp
= params
.AfterFirst(_T(','));
1432 if ( !tmp
.ToLong(&precision
) )
1438 SetPrecision((int)precision
);
1446 wxLogDebug(_T("Invalid wxGridCellFloatRenderer parameter string "
1447 "'%s ignored"), params
.c_str());
1452 // ----------------------------------------------------------------------------
1453 // wxGridCellBoolRenderer
1454 // ----------------------------------------------------------------------------
1456 wxSize
wxGridCellBoolRenderer::ms_sizeCheckMark
;
1458 // FIXME these checkbox size calculations are really ugly...
1460 // between checkmark and box
1461 static const wxCoord wxGRID_CHECKMARK_MARGIN
= 2;
1463 wxSize
wxGridCellBoolRenderer::GetBestSize(wxGrid
& grid
,
1464 wxGridCellAttr
& WXUNUSED(attr
),
1469 // compute it only once (no locks for MT safeness in GUI thread...)
1470 if ( !ms_sizeCheckMark
.x
)
1472 // get checkbox size
1473 wxCoord checkSize
= 0;
1474 wxCheckBox
*checkbox
= new wxCheckBox(&grid
, -1, wxEmptyString
);
1475 wxSize size
= checkbox
->GetBestSize();
1476 checkSize
= size
.y
+ 2*wxGRID_CHECKMARK_MARGIN
;
1478 // FIXME wxGTK::wxCheckBox::GetBestSize() gives "wrong" result
1479 #if defined(__WXGTK__) || defined(__WXMOTIF__)
1480 checkSize
-= size
.y
/ 2;
1485 ms_sizeCheckMark
.x
= ms_sizeCheckMark
.y
= checkSize
;
1488 return ms_sizeCheckMark
;
1491 void wxGridCellBoolRenderer::Draw(wxGrid
& grid
,
1492 wxGridCellAttr
& attr
,
1498 wxGridCellRenderer::Draw(grid
, attr
, dc
, rect
, row
, col
, isSelected
);
1500 // draw a check mark in the centre (ignoring alignment - TODO)
1501 wxSize size
= GetBestSize(grid
, attr
, dc
, row
, col
);
1503 // don't draw outside the cell
1504 wxCoord minSize
= wxMin(rect
.width
, rect
.height
);
1505 if ( size
.x
>= minSize
|| size
.y
>= minSize
)
1507 // and even leave (at least) 1 pixel margin
1508 size
.x
= size
.y
= minSize
- 2;
1511 // draw a border around checkmark
1513 rectBorder
.x
= rect
.x
+ rect
.width
/2 - size
.x
/2;
1514 rectBorder
.y
= rect
.y
+ rect
.height
/2 - size
.y
/2;
1515 rectBorder
.width
= size
.x
;
1516 rectBorder
.height
= size
.y
;
1519 if ( grid
.GetTable()->CanGetValueAs(row
, col
, wxGRID_VALUE_BOOL
) )
1520 value
= grid
.GetTable()->GetValueAsBool(row
, col
);
1522 value
= !!grid
.GetTable()->GetValue(row
, col
);
1526 wxRect rectMark
= rectBorder
;
1528 // MSW DrawCheckMark() is weird (and should probably be changed...)
1529 rectMark
.Inflate(-wxGRID_CHECKMARK_MARGIN
/2);
1533 rectMark
.Inflate(-wxGRID_CHECKMARK_MARGIN
);
1536 dc
.SetTextForeground(attr
.GetTextColour());
1537 dc
.DrawCheckMark(rectMark
);
1540 dc
.SetBrush(*wxTRANSPARENT_BRUSH
);
1541 dc
.SetPen(wxPen(attr
.GetTextColour(), 1, wxSOLID
));
1542 dc
.DrawRectangle(rectBorder
);
1545 // ----------------------------------------------------------------------------
1547 // ----------------------------------------------------------------------------
1549 wxGridCellAttr
*wxGridCellAttr::Clone() const
1551 wxGridCellAttr
*attr
= new wxGridCellAttr
;
1552 if ( HasTextColour() )
1553 attr
->SetTextColour(GetTextColour());
1554 if ( HasBackgroundColour() )
1555 attr
->SetBackgroundColour(GetBackgroundColour());
1557 attr
->SetFont(GetFont());
1558 if ( HasAlignment() )
1559 attr
->SetAlignment(m_hAlign
, m_vAlign
);
1563 attr
->SetRenderer(m_renderer
);
1564 m_renderer
->IncRef();
1568 attr
->SetEditor(m_editor
);
1573 attr
->SetReadOnly();
1575 attr
->SetDefAttr(m_defGridAttr
);
1580 const wxColour
& wxGridCellAttr::GetTextColour() const
1582 if (HasTextColour())
1586 else if (m_defGridAttr
!= this)
1588 return m_defGridAttr
->GetTextColour();
1592 wxFAIL_MSG(wxT("Missing default cell attribute"));
1593 return wxNullColour
;
1598 const wxColour
& wxGridCellAttr::GetBackgroundColour() const
1600 if (HasBackgroundColour())
1602 else if (m_defGridAttr
!= this)
1603 return m_defGridAttr
->GetBackgroundColour();
1606 wxFAIL_MSG(wxT("Missing default cell attribute"));
1607 return wxNullColour
;
1612 const wxFont
& wxGridCellAttr::GetFont() const
1616 else if (m_defGridAttr
!= this)
1617 return m_defGridAttr
->GetFont();
1620 wxFAIL_MSG(wxT("Missing default cell attribute"));
1626 void wxGridCellAttr::GetAlignment(int *hAlign
, int *vAlign
) const
1630 if ( hAlign
) *hAlign
= m_hAlign
;
1631 if ( vAlign
) *vAlign
= m_vAlign
;
1633 else if (m_defGridAttr
!= this)
1634 m_defGridAttr
->GetAlignment(hAlign
, vAlign
);
1637 wxFAIL_MSG(wxT("Missing default cell attribute"));
1642 // GetRenderer and GetEditor use a slightly different decision path about
1643 // which attribute to use. If a non-default attr object has one then it is
1644 // used, otherwise the default editor or renderer is fetched from the grid and
1645 // used. It should be the default for the data type of the cell. If it is
1646 // NULL (because the table has a type that the grid does not have in its
1647 // registry,) then the grid's default editor or renderer is used.
1649 wxGridCellRenderer
* wxGridCellAttr::GetRenderer(wxGrid
* grid
, int row
, int col
) const
1651 wxGridCellRenderer
* renderer
= NULL
;
1653 if ( m_defGridAttr
!= this || grid
== NULL
)
1655 renderer
= m_renderer
; // use local attribute
1660 if ( !renderer
&& grid
) // get renderer for the data type
1662 // GetDefaultRendererForCell() will do IncRef() for us
1663 renderer
= grid
->GetDefaultRendererForCell(row
, col
);
1668 // if we still don't have one then use the grid default
1669 // (no need for IncRef() here neither)
1670 renderer
= m_defGridAttr
->GetRenderer(NULL
,0,0);
1675 wxFAIL_MSG(wxT("Missing default cell attribute"));
1681 wxGridCellEditor
* wxGridCellAttr::GetEditor(wxGrid
* grid
, int row
, int col
) const
1683 wxGridCellEditor
* editor
= NULL
;
1685 if ( m_defGridAttr
!= this || grid
== NULL
)
1687 editor
= m_editor
; // use local attribute
1692 if ( !editor
&& grid
) // get renderer for the data type
1693 editor
= grid
->GetDefaultEditorForCell(row
, col
);
1696 // if we still don't have one then use the grid default
1697 editor
= m_defGridAttr
->GetEditor(NULL
,0,0);
1701 wxFAIL_MSG(wxT("Missing default cell attribute"));
1707 // ----------------------------------------------------------------------------
1708 // wxGridCellAttrData
1709 // ----------------------------------------------------------------------------
1711 void wxGridCellAttrData::SetAttr(wxGridCellAttr
*attr
, int row
, int col
)
1713 int n
= FindIndex(row
, col
);
1714 if ( n
== wxNOT_FOUND
)
1716 // add the attribute
1717 m_attrs
.Add(new wxGridCellWithAttr(row
, col
, attr
));
1723 // change the attribute
1724 m_attrs
[(size_t)n
].attr
= attr
;
1728 // remove this attribute
1729 m_attrs
.RemoveAt((size_t)n
);
1734 wxGridCellAttr
*wxGridCellAttrData::GetAttr(int row
, int col
) const
1736 wxGridCellAttr
*attr
= (wxGridCellAttr
*)NULL
;
1738 int n
= FindIndex(row
, col
);
1739 if ( n
!= wxNOT_FOUND
)
1741 attr
= m_attrs
[(size_t)n
].attr
;
1748 void wxGridCellAttrData::UpdateAttrRows( size_t pos
, int numRows
)
1750 size_t count
= m_attrs
.GetCount();
1751 for ( size_t n
= 0; n
< count
; n
++ )
1753 wxGridCellCoords
& coords
= m_attrs
[n
].coords
;
1754 wxCoord row
= coords
.GetRow();
1755 if ((size_t)row
>= pos
)
1759 // If rows inserted, include row counter where necessary
1760 coords
.SetRow(row
+ numRows
);
1762 else if (numRows
< 0)
1764 // If rows deleted ...
1765 if ((size_t)row
>= pos
- numRows
)
1767 // ...either decrement row counter (if row still exists)...
1768 coords
.SetRow(row
+ numRows
);
1772 // ...or remove the attribute
1773 m_attrs
.RemoveAt((size_t)n
);
1781 void wxGridCellAttrData::UpdateAttrCols( size_t pos
, int numCols
)
1783 size_t count
= m_attrs
.GetCount();
1784 for ( size_t n
= 0; n
< count
; n
++ )
1786 wxGridCellCoords
& coords
= m_attrs
[n
].coords
;
1787 wxCoord col
= coords
.GetCol();
1788 if ( (size_t)col
>= pos
)
1792 // If rows inserted, include row counter where necessary
1793 coords
.SetCol(col
+ numCols
);
1795 else if (numCols
< 0)
1797 // If rows deleted ...
1798 if ((size_t)col
>= pos
- numCols
)
1800 // ...either decrement row counter (if row still exists)...
1801 coords
.SetCol(col
+ numCols
);
1805 // ...or remove the attribute
1806 m_attrs
.RemoveAt((size_t)n
);
1814 int wxGridCellAttrData::FindIndex(int row
, int col
) const
1816 size_t count
= m_attrs
.GetCount();
1817 for ( size_t n
= 0; n
< count
; n
++ )
1819 const wxGridCellCoords
& coords
= m_attrs
[n
].coords
;
1820 if ( (coords
.GetRow() == row
) && (coords
.GetCol() == col
) )
1829 // ----------------------------------------------------------------------------
1830 // wxGridRowOrColAttrData
1831 // ----------------------------------------------------------------------------
1833 wxGridRowOrColAttrData::~wxGridRowOrColAttrData()
1835 size_t count
= m_attrs
.Count();
1836 for ( size_t n
= 0; n
< count
; n
++ )
1838 m_attrs
[n
]->DecRef();
1842 wxGridCellAttr
*wxGridRowOrColAttrData::GetAttr(int rowOrCol
) const
1844 wxGridCellAttr
*attr
= (wxGridCellAttr
*)NULL
;
1846 int n
= m_rowsOrCols
.Index(rowOrCol
);
1847 if ( n
!= wxNOT_FOUND
)
1849 attr
= m_attrs
[(size_t)n
];
1856 void wxGridRowOrColAttrData::SetAttr(wxGridCellAttr
*attr
, int rowOrCol
)
1858 int i
= m_rowsOrCols
.Index(rowOrCol
);
1859 if ( i
== wxNOT_FOUND
)
1861 // add the attribute
1862 m_rowsOrCols
.Add(rowOrCol
);
1867 size_t n
= (size_t)i
;
1870 // change the attribute
1871 m_attrs
[n
]->DecRef();
1876 // remove this attribute
1877 m_attrs
[n
]->DecRef();
1878 m_rowsOrCols
.RemoveAt(n
);
1879 m_attrs
.RemoveAt(n
);
1884 void wxGridRowOrColAttrData::UpdateAttrRowsOrCols( size_t pos
, int numRowsOrCols
)
1886 size_t count
= m_attrs
.GetCount();
1887 for ( size_t n
= 0; n
< count
; n
++ )
1889 int & rowOrCol
= m_rowsOrCols
[n
];
1890 if ( (size_t)rowOrCol
>= pos
)
1892 if ( numRowsOrCols
> 0 )
1894 // If rows inserted, include row counter where necessary
1895 rowOrCol
+= numRowsOrCols
;
1897 else if ( numRowsOrCols
< 0)
1899 // If rows deleted, either decrement row counter (if row still exists)
1900 if ((size_t)rowOrCol
>= pos
- numRowsOrCols
)
1901 rowOrCol
+= numRowsOrCols
;
1904 m_rowsOrCols
.RemoveAt((size_t)n
);
1905 m_attrs
.RemoveAt((size_t)n
);
1913 // ----------------------------------------------------------------------------
1914 // wxGridCellAttrProvider
1915 // ----------------------------------------------------------------------------
1917 wxGridCellAttrProvider::wxGridCellAttrProvider()
1919 m_data
= (wxGridCellAttrProviderData
*)NULL
;
1922 wxGridCellAttrProvider::~wxGridCellAttrProvider()
1927 void wxGridCellAttrProvider::InitData()
1929 m_data
= new wxGridCellAttrProviderData
;
1932 wxGridCellAttr
*wxGridCellAttrProvider::GetAttr(int row
, int col
) const
1934 wxGridCellAttr
*attr
= (wxGridCellAttr
*)NULL
;
1937 // first look for the attribute of this specific cell
1938 attr
= m_data
->m_cellAttrs
.GetAttr(row
, col
);
1942 // then look for the col attr (col attributes are more common than
1943 // the row ones, hence they have priority)
1944 attr
= m_data
->m_colAttrs
.GetAttr(col
);
1949 // finally try the row attributes
1950 attr
= m_data
->m_rowAttrs
.GetAttr(row
);
1957 void wxGridCellAttrProvider::SetAttr(wxGridCellAttr
*attr
,
1963 m_data
->m_cellAttrs
.SetAttr(attr
, row
, col
);
1966 void wxGridCellAttrProvider::SetRowAttr(wxGridCellAttr
*attr
, int row
)
1971 m_data
->m_rowAttrs
.SetAttr(attr
, row
);
1974 void wxGridCellAttrProvider::SetColAttr(wxGridCellAttr
*attr
, int col
)
1979 m_data
->m_colAttrs
.SetAttr(attr
, col
);
1982 void wxGridCellAttrProvider::UpdateAttrRows( size_t pos
, int numRows
)
1986 m_data
->m_cellAttrs
.UpdateAttrRows( pos
, numRows
);
1988 m_data
->m_rowAttrs
.UpdateAttrRowsOrCols( pos
, numRows
);
1992 void wxGridCellAttrProvider::UpdateAttrCols( size_t pos
, int numCols
)
1996 m_data
->m_cellAttrs
.UpdateAttrCols( pos
, numCols
);
1998 m_data
->m_colAttrs
.UpdateAttrRowsOrCols( pos
, numCols
);
2002 // ----------------------------------------------------------------------------
2003 // wxGridTypeRegistry
2004 // ----------------------------------------------------------------------------
2006 wxGridTypeRegistry::~wxGridTypeRegistry()
2008 size_t count
= m_typeinfo
.Count();
2009 for ( size_t i
= 0; i
< count
; i
++ )
2010 delete m_typeinfo
[i
];
2014 void wxGridTypeRegistry::RegisterDataType(const wxString
& typeName
,
2015 wxGridCellRenderer
* renderer
,
2016 wxGridCellEditor
* editor
)
2018 wxGridDataTypeInfo
* info
= new wxGridDataTypeInfo(typeName
, renderer
, editor
);
2020 // is it already registered?
2021 int loc
= FindRegisteredDataType(typeName
);
2022 if ( loc
!= wxNOT_FOUND
)
2024 delete m_typeinfo
[loc
];
2025 m_typeinfo
[loc
] = info
;
2029 m_typeinfo
.Add(info
);
2033 int wxGridTypeRegistry::FindRegisteredDataType(const wxString
& typeName
)
2035 size_t count
= m_typeinfo
.GetCount();
2036 for ( size_t i
= 0; i
< count
; i
++ )
2038 if ( typeName
== m_typeinfo
[i
]->m_typeName
)
2047 int wxGridTypeRegistry::FindDataType(const wxString
& typeName
)
2049 int index
= FindRegisteredDataType(typeName
);
2050 if ( index
== wxNOT_FOUND
)
2052 // check whether this is one of the standard ones, in which case
2053 // register it "on the fly"
2054 if ( typeName
== wxGRID_VALUE_STRING
)
2056 RegisterDataType(wxGRID_VALUE_STRING
,
2057 new wxGridCellStringRenderer
,
2058 new wxGridCellTextEditor
);
2060 else if ( typeName
== wxGRID_VALUE_BOOL
)
2062 RegisterDataType(wxGRID_VALUE_BOOL
,
2063 new wxGridCellBoolRenderer
,
2064 new wxGridCellBoolEditor
);
2066 else if ( typeName
== wxGRID_VALUE_NUMBER
)
2068 RegisterDataType(wxGRID_VALUE_NUMBER
,
2069 new wxGridCellNumberRenderer
,
2070 new wxGridCellNumberEditor
);
2072 else if ( typeName
== wxGRID_VALUE_FLOAT
)
2074 RegisterDataType(wxGRID_VALUE_FLOAT
,
2075 new wxGridCellFloatRenderer
,
2076 new wxGridCellFloatEditor
);
2078 else if ( typeName
== wxGRID_VALUE_CHOICE
)
2080 RegisterDataType(wxGRID_VALUE_CHOICE
,
2081 new wxGridCellStringRenderer
,
2082 new wxGridCellChoiceEditor
);
2089 // we get here only if just added the entry for this type, so return
2091 index
= m_typeinfo
.GetCount() - 1;
2097 int wxGridTypeRegistry::FindOrCloneDataType(const wxString
& typeName
)
2099 int index
= FindDataType(typeName
);
2100 if ( index
== wxNOT_FOUND
)
2102 // the first part of the typename is the "real" type, anything after ':'
2103 // are the parameters for the renderer
2104 index
= FindDataType(typeName
.BeforeFirst(_T(':')));
2105 if ( index
== wxNOT_FOUND
)
2110 wxGridCellRenderer
*renderer
= GetRenderer(index
);
2111 wxGridCellRenderer
*rendererOld
= renderer
;
2112 renderer
= renderer
->Clone();
2113 rendererOld
->DecRef();
2115 wxGridCellEditor
*editor
= GetEditor(index
);
2116 wxGridCellEditor
*editorOld
= editor
;
2117 editor
= editor
->Clone();
2118 editorOld
->DecRef();
2120 // do it even if there are no parameters to reset them to defaults
2121 wxString params
= typeName
.AfterFirst(_T(':'));
2122 renderer
->SetParameters(params
);
2123 editor
->SetParameters(params
);
2125 // register the new typename
2126 RegisterDataType(typeName
, renderer
, editor
);
2128 // we just registered it, it's the last one
2129 index
= m_typeinfo
.GetCount() - 1;
2135 wxGridCellRenderer
* wxGridTypeRegistry::GetRenderer(int index
)
2137 wxGridCellRenderer
* renderer
= m_typeinfo
[index
]->m_renderer
;
2142 wxGridCellEditor
* wxGridTypeRegistry::GetEditor(int index
)
2144 wxGridCellEditor
* editor
= m_typeinfo
[index
]->m_editor
;
2149 // ----------------------------------------------------------------------------
2151 // ----------------------------------------------------------------------------
2153 IMPLEMENT_ABSTRACT_CLASS( wxGridTableBase
, wxObject
)
2156 wxGridTableBase::wxGridTableBase()
2158 m_view
= (wxGrid
*) NULL
;
2159 m_attrProvider
= (wxGridCellAttrProvider
*) NULL
;
2162 wxGridTableBase::~wxGridTableBase()
2164 delete m_attrProvider
;
2167 void wxGridTableBase::SetAttrProvider(wxGridCellAttrProvider
*attrProvider
)
2169 delete m_attrProvider
;
2170 m_attrProvider
= attrProvider
;
2173 bool wxGridTableBase::CanHaveAttributes()
2175 if ( ! GetAttrProvider() )
2177 // use the default attr provider by default
2178 SetAttrProvider(new wxGridCellAttrProvider
);
2183 wxGridCellAttr
*wxGridTableBase::GetAttr(int row
, int col
)
2185 if ( m_attrProvider
)
2186 return m_attrProvider
->GetAttr(row
, col
);
2188 return (wxGridCellAttr
*)NULL
;
2191 void wxGridTableBase::SetAttr(wxGridCellAttr
* attr
, int row
, int col
)
2193 if ( m_attrProvider
)
2195 m_attrProvider
->SetAttr(attr
, row
, col
);
2199 // as we take ownership of the pointer and don't store it, we must
2205 void wxGridTableBase::SetRowAttr(wxGridCellAttr
*attr
, int row
)
2207 if ( m_attrProvider
)
2209 m_attrProvider
->SetRowAttr(attr
, row
);
2213 // as we take ownership of the pointer and don't store it, we must
2219 void wxGridTableBase::SetColAttr(wxGridCellAttr
*attr
, int col
)
2221 if ( m_attrProvider
)
2223 m_attrProvider
->SetColAttr(attr
, col
);
2227 // as we take ownership of the pointer and don't store it, we must
2233 void wxGridTableBase::UpdateAttrRows( size_t pos
, int numRows
)
2235 if ( m_attrProvider
)
2237 m_attrProvider
->UpdateAttrRows( pos
, numRows
);
2241 void wxGridTableBase::UpdateAttrCols( size_t pos
, int numCols
)
2243 if ( m_attrProvider
)
2245 m_attrProvider
->UpdateAttrCols( pos
, numCols
);
2249 bool wxGridTableBase::InsertRows( size_t pos
, size_t numRows
)
2251 wxFAIL_MSG( wxT("Called grid table class function InsertRows\n"
2252 "but your derived table class does not override this function") );
2257 bool wxGridTableBase::AppendRows( size_t numRows
)
2259 wxFAIL_MSG( wxT("Called grid table class function AppendRows\n"
2260 "but your derived table class does not override this function"));
2265 bool wxGridTableBase::DeleteRows( size_t pos
, size_t numRows
)
2267 wxFAIL_MSG( wxT("Called grid table class function DeleteRows\n"
2268 "but your derived table class does not override this function"));
2273 bool wxGridTableBase::InsertCols( size_t pos
, size_t numCols
)
2275 wxFAIL_MSG( wxT("Called grid table class function InsertCols\n"
2276 "but your derived table class does not override this function"));
2281 bool wxGridTableBase::AppendCols( size_t numCols
)
2283 wxFAIL_MSG(wxT("Called grid table class function AppendCols\n"
2284 "but your derived table class does not override this function"));
2289 bool wxGridTableBase::DeleteCols( size_t pos
, size_t numCols
)
2291 wxFAIL_MSG( wxT("Called grid table class function DeleteCols\n"
2292 "but your derived table class does not override this function"));
2298 wxString
wxGridTableBase::GetRowLabelValue( int row
)
2301 s
<< row
+ 1; // RD: Starting the rows at zero confuses users, no matter
2302 // how much it makes sense to us geeks.
2306 wxString
wxGridTableBase::GetColLabelValue( int col
)
2308 // default col labels are:
2309 // cols 0 to 25 : A-Z
2310 // cols 26 to 675 : AA-ZZ
2315 for ( n
= 1; ; n
++ )
2317 s
+= (_T('A') + (wxChar
)( col%26
));
2319 if ( col
< 0 ) break;
2322 // reverse the string...
2324 for ( i
= 0; i
< n
; i
++ )
2333 wxString
wxGridTableBase::GetTypeName( int WXUNUSED(row
), int WXUNUSED(col
) )
2335 return wxGRID_VALUE_STRING
;
2338 bool wxGridTableBase::CanGetValueAs( int WXUNUSED(row
), int WXUNUSED(col
),
2339 const wxString
& typeName
)
2341 return typeName
== wxGRID_VALUE_STRING
;
2344 bool wxGridTableBase::CanSetValueAs( int row
, int col
, const wxString
& typeName
)
2346 return CanGetValueAs(row
, col
, typeName
);
2349 long wxGridTableBase::GetValueAsLong( int WXUNUSED(row
), int WXUNUSED(col
) )
2354 double wxGridTableBase::GetValueAsDouble( int WXUNUSED(row
), int WXUNUSED(col
) )
2359 bool wxGridTableBase::GetValueAsBool( int WXUNUSED(row
), int WXUNUSED(col
) )
2364 void wxGridTableBase::SetValueAsLong( int WXUNUSED(row
), int WXUNUSED(col
),
2365 long WXUNUSED(value
) )
2369 void wxGridTableBase::SetValueAsDouble( int WXUNUSED(row
), int WXUNUSED(col
),
2370 double WXUNUSED(value
) )
2374 void wxGridTableBase::SetValueAsBool( int WXUNUSED(row
), int WXUNUSED(col
),
2375 bool WXUNUSED(value
) )
2380 void* wxGridTableBase::GetValueAsCustom( int WXUNUSED(row
), int WXUNUSED(col
),
2381 const wxString
& WXUNUSED(typeName
) )
2386 void wxGridTableBase::SetValueAsCustom( int WXUNUSED(row
), int WXUNUSED(col
),
2387 const wxString
& WXUNUSED(typeName
),
2388 void* WXUNUSED(value
) )
2392 //////////////////////////////////////////////////////////////////////
2394 // Message class for the grid table to send requests and notifications
2398 wxGridTableMessage::wxGridTableMessage()
2400 m_table
= (wxGridTableBase
*) NULL
;
2406 wxGridTableMessage::wxGridTableMessage( wxGridTableBase
*table
, int id
,
2407 int commandInt1
, int commandInt2
)
2411 m_comInt1
= commandInt1
;
2412 m_comInt2
= commandInt2
;
2417 //////////////////////////////////////////////////////////////////////
2419 // A basic grid table for string data. An object of this class will
2420 // created by wxGrid if you don't specify an alternative table class.
2423 WX_DEFINE_OBJARRAY(wxGridStringArray
)
2425 IMPLEMENT_DYNAMIC_CLASS( wxGridStringTable
, wxGridTableBase
)
2427 wxGridStringTable::wxGridStringTable()
2432 wxGridStringTable::wxGridStringTable( int numRows
, int numCols
)
2437 m_data
.Alloc( numRows
);
2440 sa
.Alloc( numCols
);
2441 for ( col
= 0; col
< numCols
; col
++ )
2443 sa
.Add( wxEmptyString
);
2446 for ( row
= 0; row
< numRows
; row
++ )
2452 wxGridStringTable::~wxGridStringTable()
2456 long wxGridStringTable::GetNumberRows()
2458 return m_data
.GetCount();
2461 long wxGridStringTable::GetNumberCols()
2463 if ( m_data
.GetCount() > 0 )
2464 return m_data
[0].GetCount();
2469 wxString
wxGridStringTable::GetValue( int row
, int col
)
2471 wxASSERT_MSG( (row
< GetNumberRows()) && (col
< GetNumberCols()),
2472 _T("invalid row or column index in wxGridStringTable") );
2474 return m_data
[row
][col
];
2477 void wxGridStringTable::SetValue( int row
, int col
, const wxString
& value
)
2479 wxASSERT_MSG( (row
< GetNumberRows()) && (col
< GetNumberCols()),
2480 _T("invalid row or column index in wxGridStringTable") );
2482 m_data
[row
][col
] = value
;
2485 bool wxGridStringTable::IsEmptyCell( int row
, int col
)
2487 wxASSERT_MSG( (row
< GetNumberRows()) && (col
< GetNumberCols()),
2488 _T("invalid row or column index in wxGridStringTable") );
2490 return (m_data
[row
][col
] == wxEmptyString
);
2493 void wxGridStringTable::Clear()
2496 int numRows
, numCols
;
2498 numRows
= m_data
.GetCount();
2501 numCols
= m_data
[0].GetCount();
2503 for ( row
= 0; row
< numRows
; row
++ )
2505 for ( col
= 0; col
< numCols
; col
++ )
2507 m_data
[row
][col
] = wxEmptyString
;
2514 bool wxGridStringTable::InsertRows( size_t pos
, size_t numRows
)
2518 size_t curNumRows
= m_data
.GetCount();
2519 size_t curNumCols
= ( curNumRows
> 0 ? m_data
[0].GetCount() : 0 );
2521 if ( pos
>= curNumRows
)
2523 return AppendRows( numRows
);
2527 sa
.Alloc( curNumCols
);
2528 for ( col
= 0; col
< curNumCols
; col
++ )
2530 sa
.Add( wxEmptyString
);
2533 for ( row
= pos
; row
< pos
+ numRows
; row
++ )
2535 m_data
.Insert( sa
, row
);
2537 UpdateAttrRows( pos
, numRows
);
2540 wxGridTableMessage
msg( this,
2541 wxGRIDTABLE_NOTIFY_ROWS_INSERTED
,
2545 GetView()->ProcessTableMessage( msg
);
2551 bool wxGridStringTable::AppendRows( size_t numRows
)
2555 size_t curNumRows
= m_data
.GetCount();
2556 size_t curNumCols
= ( curNumRows
> 0 ? m_data
[0].GetCount() : 0 );
2559 if ( curNumCols
> 0 )
2561 sa
.Alloc( curNumCols
);
2562 for ( col
= 0; col
< curNumCols
; col
++ )
2564 sa
.Add( wxEmptyString
);
2568 for ( row
= 0; row
< numRows
; row
++ )
2575 wxGridTableMessage
msg( this,
2576 wxGRIDTABLE_NOTIFY_ROWS_APPENDED
,
2579 GetView()->ProcessTableMessage( msg
);
2585 bool wxGridStringTable::DeleteRows( size_t pos
, size_t numRows
)
2589 size_t curNumRows
= m_data
.GetCount();
2591 if ( pos
>= curNumRows
)
2594 errmsg
.Printf("Called wxGridStringTable::DeleteRows(pos=%d, N=%d)\n"
2595 "Pos value is invalid for present table with %d rows",
2596 pos
, numRows
, curNumRows
);
2597 wxFAIL_MSG( wxT(errmsg
) );
2601 if ( numRows
> curNumRows
- pos
)
2603 numRows
= curNumRows
- pos
;
2606 if ( numRows
>= curNumRows
)
2608 m_data
.Empty(); // don't release memory just yet
2612 for ( n
= 0; n
< numRows
; n
++ )
2614 m_data
.Remove( pos
);
2617 UpdateAttrRows( pos
, -((int)numRows
) );
2620 wxGridTableMessage
msg( this,
2621 wxGRIDTABLE_NOTIFY_ROWS_DELETED
,
2625 GetView()->ProcessTableMessage( msg
);
2631 bool wxGridStringTable::InsertCols( size_t pos
, size_t numCols
)
2635 size_t curNumRows
= m_data
.GetCount();
2636 size_t curNumCols
= ( curNumRows
> 0 ? m_data
[0].GetCount() : 0 );
2638 if ( pos
>= curNumCols
)
2640 return AppendCols( numCols
);
2643 for ( row
= 0; row
< curNumRows
; row
++ )
2645 for ( col
= pos
; col
< pos
+ numCols
; col
++ )
2647 m_data
[row
].Insert( wxEmptyString
, col
);
2650 UpdateAttrCols( pos
, numCols
);
2653 wxGridTableMessage
msg( this,
2654 wxGRIDTABLE_NOTIFY_COLS_INSERTED
,
2658 GetView()->ProcessTableMessage( msg
);
2664 bool wxGridStringTable::AppendCols( size_t numCols
)
2668 size_t curNumRows
= m_data
.GetCount();
2671 // TODO: something better than this ?
2673 wxFAIL_MSG( wxT("Unable to append cols to a grid table with no rows.\n"
2674 "Call AppendRows() first") );
2678 for ( row
= 0; row
< curNumRows
; row
++ )
2680 for ( n
= 0; n
< numCols
; n
++ )
2682 m_data
[row
].Add( wxEmptyString
);
2688 wxGridTableMessage
msg( this,
2689 wxGRIDTABLE_NOTIFY_COLS_APPENDED
,
2692 GetView()->ProcessTableMessage( msg
);
2698 bool wxGridStringTable::DeleteCols( size_t pos
, size_t numCols
)
2702 size_t curNumRows
= m_data
.GetCount();
2703 size_t curNumCols
= ( curNumRows
> 0 ? m_data
[0].GetCount() : 0 );
2705 if ( pos
>= curNumCols
)
2708 errmsg
.Printf( "Called wxGridStringTable::DeleteCols(pos=%d, N=%d)...\n"
2709 "Pos value is invalid for present table with %d cols",
2710 pos
, numCols
, curNumCols
);
2711 wxFAIL_MSG( wxT( errmsg
) );
2715 if ( numCols
> curNumCols
- pos
)
2717 numCols
= curNumCols
- pos
;
2720 for ( row
= 0; row
< curNumRows
; row
++ )
2722 if ( numCols
>= curNumCols
)
2724 m_data
[row
].Clear();
2728 for ( n
= 0; n
< numCols
; n
++ )
2730 m_data
[row
].Remove( pos
);
2734 UpdateAttrCols( pos
, -((int)numCols
) );
2737 wxGridTableMessage
msg( this,
2738 wxGRIDTABLE_NOTIFY_COLS_DELETED
,
2742 GetView()->ProcessTableMessage( msg
);
2748 wxString
wxGridStringTable::GetRowLabelValue( int row
)
2750 if ( row
> (int)(m_rowLabels
.GetCount()) - 1 )
2752 // using default label
2754 return wxGridTableBase::GetRowLabelValue( row
);
2758 return m_rowLabels
[ row
];
2762 wxString
wxGridStringTable::GetColLabelValue( int col
)
2764 if ( col
> (int)(m_colLabels
.GetCount()) - 1 )
2766 // using default label
2768 return wxGridTableBase::GetColLabelValue( col
);
2772 return m_colLabels
[ col
];
2776 void wxGridStringTable::SetRowLabelValue( int row
, const wxString
& value
)
2778 if ( row
> (int)(m_rowLabels
.GetCount()) - 1 )
2780 int n
= m_rowLabels
.GetCount();
2782 for ( i
= n
; i
<= row
; i
++ )
2784 m_rowLabels
.Add( wxGridTableBase::GetRowLabelValue(i
) );
2788 m_rowLabels
[row
] = value
;
2791 void wxGridStringTable::SetColLabelValue( int col
, const wxString
& value
)
2793 if ( col
> (int)(m_colLabels
.GetCount()) - 1 )
2795 int n
= m_colLabels
.GetCount();
2797 for ( i
= n
; i
<= col
; i
++ )
2799 m_colLabels
.Add( wxGridTableBase::GetColLabelValue(i
) );
2803 m_colLabels
[col
] = value
;
2808 //////////////////////////////////////////////////////////////////////
2809 //////////////////////////////////////////////////////////////////////
2811 IMPLEMENT_DYNAMIC_CLASS( wxGridRowLabelWindow
, wxWindow
)
2813 BEGIN_EVENT_TABLE( wxGridRowLabelWindow
, wxWindow
)
2814 EVT_PAINT( wxGridRowLabelWindow::OnPaint
)
2815 EVT_MOUSE_EVENTS( wxGridRowLabelWindow::OnMouseEvent
)
2816 EVT_KEY_DOWN( wxGridRowLabelWindow::OnKeyDown
)
2819 wxGridRowLabelWindow::wxGridRowLabelWindow( wxGrid
*parent
,
2821 const wxPoint
&pos
, const wxSize
&size
)
2822 : wxWindow( parent
, id
, pos
, size
, wxWANTS_CHARS
)
2827 void wxGridRowLabelWindow::OnPaint( wxPaintEvent
&event
)
2831 // NO - don't do this because it will set both the x and y origin
2832 // coords to match the parent scrolled window and we just want to
2833 // set the y coord - MB
2835 // m_owner->PrepareDC( dc );
2838 m_owner
->CalcUnscrolledPosition( 0, 0, &x
, &y
);
2839 dc
.SetDeviceOrigin( 0, -y
);
2841 m_owner
->CalcRowLabelsExposed( GetUpdateRegion() );
2842 m_owner
->DrawRowLabels( dc
);
2846 void wxGridRowLabelWindow::OnMouseEvent( wxMouseEvent
& event
)
2848 m_owner
->ProcessRowLabelMouseEvent( event
);
2852 // This seems to be required for wxMotif otherwise the mouse
2853 // cursor must be in the cell edit control to get key events
2855 void wxGridRowLabelWindow::OnKeyDown( wxKeyEvent
& event
)
2857 if ( !m_owner
->ProcessEvent( event
) ) event
.Skip();
2862 //////////////////////////////////////////////////////////////////////
2864 IMPLEMENT_DYNAMIC_CLASS( wxGridColLabelWindow
, wxWindow
)
2866 BEGIN_EVENT_TABLE( wxGridColLabelWindow
, wxWindow
)
2867 EVT_PAINT( wxGridColLabelWindow::OnPaint
)
2868 EVT_MOUSE_EVENTS( wxGridColLabelWindow::OnMouseEvent
)
2869 EVT_KEY_DOWN( wxGridColLabelWindow::OnKeyDown
)
2872 wxGridColLabelWindow::wxGridColLabelWindow( wxGrid
*parent
,
2874 const wxPoint
&pos
, const wxSize
&size
)
2875 : wxWindow( parent
, id
, pos
, size
, wxWANTS_CHARS
)
2880 void wxGridColLabelWindow::OnPaint( wxPaintEvent
&event
)
2884 // NO - don't do this because it will set both the x and y origin
2885 // coords to match the parent scrolled window and we just want to
2886 // set the x coord - MB
2888 // m_owner->PrepareDC( dc );
2891 m_owner
->CalcUnscrolledPosition( 0, 0, &x
, &y
);
2892 dc
.SetDeviceOrigin( -x
, 0 );
2894 m_owner
->CalcColLabelsExposed( GetUpdateRegion() );
2895 m_owner
->DrawColLabels( dc
);
2899 void wxGridColLabelWindow::OnMouseEvent( wxMouseEvent
& event
)
2901 m_owner
->ProcessColLabelMouseEvent( event
);
2905 // This seems to be required for wxMotif otherwise the mouse
2906 // cursor must be in the cell edit control to get key events
2908 void wxGridColLabelWindow::OnKeyDown( wxKeyEvent
& event
)
2910 if ( !m_owner
->ProcessEvent( event
) ) event
.Skip();
2915 //////////////////////////////////////////////////////////////////////
2917 IMPLEMENT_DYNAMIC_CLASS( wxGridCornerLabelWindow
, wxWindow
)
2919 BEGIN_EVENT_TABLE( wxGridCornerLabelWindow
, wxWindow
)
2920 EVT_MOUSE_EVENTS( wxGridCornerLabelWindow::OnMouseEvent
)
2921 EVT_PAINT( wxGridCornerLabelWindow::OnPaint
)
2922 EVT_KEY_DOWN( wxGridCornerLabelWindow::OnKeyDown
)
2925 wxGridCornerLabelWindow::wxGridCornerLabelWindow( wxGrid
*parent
,
2927 const wxPoint
&pos
, const wxSize
&size
)
2928 : wxWindow( parent
, id
, pos
, size
, wxWANTS_CHARS
)
2933 void wxGridCornerLabelWindow::OnPaint( wxPaintEvent
& WXUNUSED(event
) )
2937 int client_height
= 0;
2938 int client_width
= 0;
2939 GetClientSize( &client_width
, &client_height
);
2941 dc
.SetPen( *wxBLACK_PEN
);
2942 dc
.DrawLine( client_width
-1, client_height
-1, client_width
-1, 0 );
2943 dc
.DrawLine( client_width
-1, client_height
-1, 0, client_height
-1 );
2945 dc
.SetPen( *wxWHITE_PEN
);
2946 dc
.DrawLine( 0, 0, client_width
, 0 );
2947 dc
.DrawLine( 0, 0, 0, client_height
);
2951 void wxGridCornerLabelWindow::OnMouseEvent( wxMouseEvent
& event
)
2953 m_owner
->ProcessCornerLabelMouseEvent( event
);
2957 // This seems to be required for wxMotif otherwise the mouse
2958 // cursor must be in the cell edit control to get key events
2960 void wxGridCornerLabelWindow::OnKeyDown( wxKeyEvent
& event
)
2962 if ( !m_owner
->ProcessEvent( event
) ) event
.Skip();
2967 //////////////////////////////////////////////////////////////////////
2969 IMPLEMENT_DYNAMIC_CLASS( wxGridWindow
, wxPanel
)
2971 BEGIN_EVENT_TABLE( wxGridWindow
, wxPanel
)
2972 EVT_PAINT( wxGridWindow::OnPaint
)
2973 EVT_MOUSE_EVENTS( wxGridWindow::OnMouseEvent
)
2974 EVT_KEY_DOWN( wxGridWindow::OnKeyDown
)
2975 EVT_ERASE_BACKGROUND( wxGridWindow::OnEraseBackground
)
2978 wxGridWindow::wxGridWindow( wxGrid
*parent
,
2979 wxGridRowLabelWindow
*rowLblWin
,
2980 wxGridColLabelWindow
*colLblWin
,
2981 wxWindowID id
, const wxPoint
&pos
, const wxSize
&size
)
2982 : wxPanel( parent
, id
, pos
, size
, wxWANTS_CHARS
, "grid window" )
2985 m_rowLabelWin
= rowLblWin
;
2986 m_colLabelWin
= colLblWin
;
2987 SetBackgroundColour( "WHITE" );
2991 wxGridWindow::~wxGridWindow()
2996 void wxGridWindow::OnPaint( wxPaintEvent
&WXUNUSED(event
) )
2998 wxPaintDC
dc( this );
2999 m_owner
->PrepareDC( dc
);
3000 wxRegion reg
= GetUpdateRegion();
3001 m_owner
->CalcCellsExposed( reg
);
3002 m_owner
->DrawGridCellArea( dc
);
3003 #if WXGRID_DRAW_LINES
3004 m_owner
->DrawAllGridLines( dc
, reg
);
3006 m_owner
->DrawGridSpace( dc
);
3007 m_owner
->DrawHighlight( dc
);
3011 void wxGridWindow::ScrollWindow( int dx
, int dy
, const wxRect
*rect
)
3013 wxPanel::ScrollWindow( dx
, dy
, rect
);
3014 m_rowLabelWin
->ScrollWindow( 0, dy
, rect
);
3015 m_colLabelWin
->ScrollWindow( dx
, 0, rect
);
3019 void wxGridWindow::OnMouseEvent( wxMouseEvent
& event
)
3021 m_owner
->ProcessGridCellMouseEvent( event
);
3025 // This seems to be required for wxMotif otherwise the mouse
3026 // cursor must be in the cell edit control to get key events
3028 void wxGridWindow::OnKeyDown( wxKeyEvent
& event
)
3030 if ( !m_owner
->ProcessEvent( event
) ) event
.Skip();
3034 void wxGridWindow::OnEraseBackground(wxEraseEvent
& event
)
3039 //////////////////////////////////////////////////////////////////////
3042 IMPLEMENT_DYNAMIC_CLASS( wxGrid
, wxScrolledWindow
)
3044 BEGIN_EVENT_TABLE( wxGrid
, wxScrolledWindow
)
3045 EVT_PAINT( wxGrid::OnPaint
)
3046 EVT_SIZE( wxGrid::OnSize
)
3047 EVT_KEY_DOWN( wxGrid::OnKeyDown
)
3048 EVT_ERASE_BACKGROUND( wxGrid::OnEraseBackground
)
3051 wxGrid::wxGrid( wxWindow
*parent
,
3056 const wxString
& name
)
3057 : wxScrolledWindow( parent
, id
, pos
, size
, (style
| wxWANTS_CHARS
), name
),
3058 m_colMinWidths(GRID_HASH_SIZE
),
3059 m_rowMinHeights(GRID_HASH_SIZE
)
3068 wxSafeDecRef(m_defaultCellAttr
);
3070 #ifdef DEBUG_ATTR_CACHE
3071 size_t total
= gs_nAttrCacheHits
+ gs_nAttrCacheMisses
;
3072 wxPrintf(_T("wxGrid attribute cache statistics: "
3073 "total: %u, hits: %u (%u%%)\n"),
3074 total
, gs_nAttrCacheHits
,
3075 total
? (gs_nAttrCacheHits
*100) / total
: 0);
3081 delete m_typeRegistry
;
3087 // ----- internal init and update functions
3090 void wxGrid::Create()
3092 m_created
= FALSE
; // set to TRUE by CreateGrid
3094 m_table
= (wxGridTableBase
*) NULL
;
3097 m_cellEditCtrlEnabled
= FALSE
;
3099 m_defaultCellAttr
= new wxGridCellAttr
;
3100 m_defaultCellAttr
->SetDefAttr(m_defaultCellAttr
);
3102 // Set default cell attributes
3103 m_defaultCellAttr
->SetFont(GetFont());
3104 m_defaultCellAttr
->SetAlignment(wxLEFT
, wxTOP
);
3105 m_defaultCellAttr
->SetTextColour(
3106 wxSystemSettings::GetSystemColour(wxSYS_COLOUR_WINDOWTEXT
));
3107 m_defaultCellAttr
->SetBackgroundColour(
3108 wxSystemSettings::GetSystemColour(wxSYS_COLOUR_WINDOW
));
3109 m_defaultCellAttr
->SetRenderer(new wxGridCellStringRenderer
);
3110 m_defaultCellAttr
->SetEditor(new wxGridCellTextEditor
);
3115 m_currentCellCoords
= wxGridNoCellCoords
;
3117 m_rowLabelWidth
= WXGRID_DEFAULT_ROW_LABEL_WIDTH
;
3118 m_colLabelHeight
= WXGRID_DEFAULT_COL_LABEL_HEIGHT
;
3120 // create the type registry
3121 m_typeRegistry
= new wxGridTypeRegistry
;
3123 // subwindow components that make up the wxGrid
3124 m_cornerLabelWin
= new wxGridCornerLabelWindow( this,
3129 m_rowLabelWin
= new wxGridRowLabelWindow( this,
3134 m_colLabelWin
= new wxGridColLabelWindow( this,
3139 m_gridWin
= new wxGridWindow( this,
3146 SetTargetWindow( m_gridWin
);
3150 bool wxGrid::CreateGrid( int numRows
, int numCols
,
3151 wxGrid::wxGridSelectionModes selmode
)
3155 wxFAIL_MSG( wxT("wxGrid::CreateGrid or wxGrid::SetTable called more than once") );
3160 m_numRows
= numRows
;
3161 m_numCols
= numCols
;
3163 m_table
= new wxGridStringTable( m_numRows
, m_numCols
);
3164 m_table
->SetView( this );
3167 m_selection
= new wxGridSelection( this, selmode
);
3173 void wxGrid::SetSelectionMode(wxGrid::wxGridSelectionModes selmode
)
3177 wxFAIL_MSG( wxT("Called wxGrid::SetSelectionMode() before calling CreateGrid()") );
3180 m_selection
->SetSelectionMode( selmode
);
3183 bool wxGrid::SetTable( wxGridTableBase
*table
, bool takeOwnership
,
3184 wxGrid::wxGridSelectionModes selmode
)
3188 // RD: Actually, this should probably be allowed. I think it would be
3189 // nice to be able to switch multiple Tables in and out of a single
3190 // View at runtime. Is there anything in the implmentation that would
3193 // At least, you now have to cope with m_selection
3194 wxFAIL_MSG( wxT("wxGrid::CreateGrid or wxGrid::SetTable called more than once") );
3199 m_numRows
= table
->GetNumberRows();
3200 m_numCols
= table
->GetNumberCols();
3203 m_table
->SetView( this );
3207 m_selection
= new wxGridSelection( this, selmode
);
3217 if ( m_numRows
<= 0 )
3218 m_numRows
= WXGRID_DEFAULT_NUMBER_ROWS
;
3220 if ( m_numCols
<= 0 )
3221 m_numCols
= WXGRID_DEFAULT_NUMBER_COLS
;
3223 m_rowLabelWidth
= WXGRID_DEFAULT_ROW_LABEL_WIDTH
;
3224 m_colLabelHeight
= WXGRID_DEFAULT_COL_LABEL_HEIGHT
;
3226 if ( m_rowLabelWin
)
3228 m_labelBackgroundColour
= m_rowLabelWin
->GetBackgroundColour();
3232 m_labelBackgroundColour
= wxColour( _T("WHITE") );
3235 m_labelTextColour
= wxColour( _T("BLACK") );
3238 m_attrCache
.row
= -1;
3240 // TODO: something better than this ?
3242 m_labelFont
= this->GetFont();
3243 m_labelFont
.SetWeight( m_labelFont
.GetWeight() + 2 );
3245 m_rowLabelHorizAlign
= wxLEFT
;
3246 m_rowLabelVertAlign
= wxCENTRE
;
3248 m_colLabelHorizAlign
= wxCENTRE
;
3249 m_colLabelVertAlign
= wxTOP
;
3251 m_defaultColWidth
= WXGRID_DEFAULT_COL_WIDTH
;
3252 m_defaultRowHeight
= m_gridWin
->GetCharHeight();
3254 #if defined(__WXMOTIF__) || defined(__WXGTK__) // see also text ctrl sizing in ShowCellEditControl()
3255 m_defaultRowHeight
+= 8;
3257 m_defaultRowHeight
+= 4;
3260 m_gridLineColour
= wxColour( 128, 128, 255 );
3261 m_gridLinesEnabled
= TRUE
;
3263 m_cursorMode
= WXGRID_CURSOR_SELECT_CELL
;
3264 m_winCapture
= (wxWindow
*)NULL
;
3265 m_canDragRowSize
= TRUE
;
3266 m_canDragColSize
= TRUE
;
3267 m_canDragGridSize
= TRUE
;
3269 m_dragRowOrCol
= -1;
3270 m_isDragging
= FALSE
;
3271 m_startDragPos
= wxDefaultPosition
;
3273 m_waitForSlowClick
= FALSE
;
3275 m_rowResizeCursor
= wxCursor( wxCURSOR_SIZENS
);
3276 m_colResizeCursor
= wxCursor( wxCURSOR_SIZEWE
);
3278 m_currentCellCoords
= wxGridNoCellCoords
;
3280 m_selectingTopLeft
= wxGridNoCellCoords
;
3281 m_selectingBottomRight
= wxGridNoCellCoords
;
3282 m_selectionBackground
= wxSystemSettings::GetSystemColour(wxSYS_COLOUR_HIGHLIGHT
);
3283 m_selectionForeground
= wxSystemSettings::GetSystemColour(wxSYS_COLOUR_HIGHLIGHTTEXT
);
3285 m_editable
= TRUE
; // default for whole grid
3287 m_inOnKeyDown
= FALSE
;
3296 // ----------------------------------------------------------------------------
3297 // the idea is to call these functions only when necessary because they create
3298 // quite big arrays which eat memory mostly unnecessary - in particular, if
3299 // default widths/heights are used for all rows/columns, we may not use these
3302 // with some extra code, it should be possible to only store the
3303 // widths/heights different from default ones but this will be done later...
3304 // ----------------------------------------------------------------------------
3306 void wxGrid::InitRowHeights()
3308 m_rowHeights
.Empty();
3309 m_rowBottoms
.Empty();
3311 m_rowHeights
.Alloc( m_numRows
);
3312 m_rowBottoms
.Alloc( m_numRows
);
3315 for ( int i
= 0; i
< m_numRows
; i
++ )
3317 m_rowHeights
.Add( m_defaultRowHeight
);
3318 rowBottom
+= m_defaultRowHeight
;
3319 m_rowBottoms
.Add( rowBottom
);
3323 void wxGrid::InitColWidths()
3325 m_colWidths
.Empty();
3326 m_colRights
.Empty();
3328 m_colWidths
.Alloc( m_numCols
);
3329 m_colRights
.Alloc( m_numCols
);
3331 for ( int i
= 0; i
< m_numCols
; i
++ )
3333 m_colWidths
.Add( m_defaultColWidth
);
3334 colRight
+= m_defaultColWidth
;
3335 m_colRights
.Add( colRight
);
3339 int wxGrid::GetColWidth(int col
) const
3341 return m_colWidths
.IsEmpty() ? m_defaultColWidth
: m_colWidths
[col
];
3344 int wxGrid::GetColLeft(int col
) const
3346 return m_colRights
.IsEmpty() ? col
* m_defaultColWidth
3347 : m_colRights
[col
] - m_colWidths
[col
];
3350 int wxGrid::GetColRight(int col
) const
3352 return m_colRights
.IsEmpty() ? (col
+ 1) * m_defaultColWidth
3356 int wxGrid::GetRowHeight(int row
) const
3358 return m_rowHeights
.IsEmpty() ? m_defaultRowHeight
: m_rowHeights
[row
];
3361 int wxGrid::GetRowTop(int row
) const
3363 return m_rowBottoms
.IsEmpty() ? row
* m_defaultRowHeight
3364 : m_rowBottoms
[row
] - m_rowHeights
[row
];
3367 int wxGrid::GetRowBottom(int row
) const
3369 return m_rowBottoms
.IsEmpty() ? (row
+ 1) * m_defaultRowHeight
3370 : m_rowBottoms
[row
];
3373 void wxGrid::CalcDimensions()
3376 GetClientSize( &cw
, &ch
);
3378 if ( m_numRows
> 0 && m_numCols
> 0 )
3380 int right
= GetColRight( m_numCols
-1 ) + m_extraWidth
;
3381 int bottom
= GetRowBottom( m_numRows
-1 ) + m_extraHeight
;
3383 // TODO: restore the scroll position that we had before sizing
3386 GetViewStart( &x
, &y
);
3387 SetScrollbars( GRID_SCROLL_LINE
, GRID_SCROLL_LINE
,
3388 right
/GRID_SCROLL_LINE
, bottom
/GRID_SCROLL_LINE
,
3394 void wxGrid::CalcWindowSizes()
3397 GetClientSize( &cw
, &ch
);
3399 if ( m_cornerLabelWin
->IsShown() )
3400 m_cornerLabelWin
->SetSize( 0, 0, m_rowLabelWidth
, m_colLabelHeight
);
3402 if ( m_colLabelWin
->IsShown() )
3403 m_colLabelWin
->SetSize( m_rowLabelWidth
, 0, cw
-m_rowLabelWidth
, m_colLabelHeight
);
3405 if ( m_rowLabelWin
->IsShown() )
3406 m_rowLabelWin
->SetSize( 0, m_colLabelHeight
, m_rowLabelWidth
, ch
-m_colLabelHeight
);
3408 if ( m_gridWin
->IsShown() )
3409 m_gridWin
->SetSize( m_rowLabelWidth
, m_colLabelHeight
, cw
-m_rowLabelWidth
, ch
-m_colLabelHeight
);
3413 // this is called when the grid table sends a message to say that it
3414 // has been redimensioned
3416 bool wxGrid::Redimension( wxGridTableMessage
& msg
)
3420 // if we were using the default widths/heights so far, we must change them
3422 if ( m_colWidths
.IsEmpty() )
3427 if ( m_rowHeights
.IsEmpty() )
3432 switch ( msg
.GetId() )
3434 case wxGRIDTABLE_NOTIFY_ROWS_INSERTED
:
3436 size_t pos
= msg
.GetCommandInt();
3437 int numRows
= msg
.GetCommandInt2();
3438 for ( i
= 0; i
< numRows
; i
++ )
3440 m_rowHeights
.Insert( m_defaultRowHeight
, pos
);
3441 m_rowBottoms
.Insert( 0, pos
);
3443 m_numRows
+= numRows
;
3446 if ( pos
> 0 ) bottom
= m_rowBottoms
[pos
-1];
3448 for ( i
= pos
; i
< m_numRows
; i
++ )
3450 bottom
+= m_rowHeights
[i
];
3451 m_rowBottoms
[i
] = bottom
;
3457 case wxGRIDTABLE_NOTIFY_ROWS_APPENDED
:
3459 int numRows
= msg
.GetCommandInt();
3460 for ( i
= 0; i
< numRows
; i
++ )
3462 m_rowHeights
.Add( m_defaultRowHeight
);
3463 m_rowBottoms
.Add( 0 );
3466 int oldNumRows
= m_numRows
;
3467 m_numRows
+= numRows
;
3470 if ( oldNumRows
> 0 ) bottom
= m_rowBottoms
[oldNumRows
-1];
3472 for ( i
= oldNumRows
; i
< m_numRows
; i
++ )
3474 bottom
+= m_rowHeights
[i
];
3475 m_rowBottoms
[i
] = bottom
;
3481 case wxGRIDTABLE_NOTIFY_ROWS_DELETED
:
3483 size_t pos
= msg
.GetCommandInt();
3484 int numRows
= msg
.GetCommandInt2();
3485 for ( i
= 0; i
< numRows
; i
++ )
3487 m_rowHeights
.Remove( pos
);
3488 m_rowBottoms
.Remove( pos
);
3490 m_numRows
-= numRows
;
3495 m_colWidths
.Clear();
3496 m_colRights
.Clear();
3497 m_currentCellCoords
= wxGridNoCellCoords
;
3501 if ( m_currentCellCoords
.GetRow() >= m_numRows
)
3502 m_currentCellCoords
.Set( 0, 0 );
3505 for ( i
= 0; i
< m_numRows
; i
++ )
3507 h
+= m_rowHeights
[i
];
3508 m_rowBottoms
[i
] = h
;
3516 case wxGRIDTABLE_NOTIFY_COLS_INSERTED
:
3518 size_t pos
= msg
.GetCommandInt();
3519 int numCols
= msg
.GetCommandInt2();
3520 for ( i
= 0; i
< numCols
; i
++ )
3522 m_colWidths
.Insert( m_defaultColWidth
, pos
);
3523 m_colRights
.Insert( 0, pos
);
3525 m_numCols
+= numCols
;
3528 if ( pos
> 0 ) right
= m_colRights
[pos
-1];
3530 for ( i
= pos
; i
< m_numCols
; i
++ )
3532 right
+= m_colWidths
[i
];
3533 m_colRights
[i
] = right
;
3539 case wxGRIDTABLE_NOTIFY_COLS_APPENDED
:
3541 int numCols
= msg
.GetCommandInt();
3542 for ( i
= 0; i
< numCols
; i
++ )
3544 m_colWidths
.Add( m_defaultColWidth
);
3545 m_colRights
.Add( 0 );
3548 int oldNumCols
= m_numCols
;
3549 m_numCols
+= numCols
;
3552 if ( oldNumCols
> 0 ) right
= m_colRights
[oldNumCols
-1];
3554 for ( i
= oldNumCols
; i
< m_numCols
; i
++ )
3556 right
+= m_colWidths
[i
];
3557 m_colRights
[i
] = right
;
3563 case wxGRIDTABLE_NOTIFY_COLS_DELETED
:
3565 size_t pos
= msg
.GetCommandInt();
3566 int numCols
= msg
.GetCommandInt2();
3567 for ( i
= 0; i
< numCols
; i
++ )
3569 m_colWidths
.Remove( pos
);
3570 m_colRights
.Remove( pos
);
3572 m_numCols
-= numCols
;
3576 #if 0 // leave the row alone here so that AppendCols will work subsequently
3578 m_rowHeights
.Clear();
3579 m_rowBottoms
.Clear();
3581 m_currentCellCoords
= wxGridNoCellCoords
;
3585 if ( m_currentCellCoords
.GetCol() >= m_numCols
)
3586 m_currentCellCoords
.Set( 0, 0 );
3589 for ( i
= 0; i
< m_numCols
; i
++ )
3591 w
+= m_colWidths
[i
];
3604 void wxGrid::CalcRowLabelsExposed( wxRegion
& reg
)
3606 wxRegionIterator
iter( reg
);
3609 m_rowLabelsExposed
.Empty();
3616 // TODO: remove this when we can...
3617 // There is a bug in wxMotif that gives garbage update
3618 // rectangles if you jump-scroll a long way by clicking the
3619 // scrollbar with middle button. This is a work-around
3621 #if defined(__WXMOTIF__)
3623 m_gridWin
->GetClientSize( &cw
, &ch
);
3624 if ( r
.GetTop() > ch
) r
.SetTop( 0 );
3625 r
.SetBottom( wxMin( r
.GetBottom(), ch
) );
3628 // logical bounds of update region
3631 CalcUnscrolledPosition( 0, r
.GetTop(), &dummy
, &top
);
3632 CalcUnscrolledPosition( 0, r
.GetBottom(), &dummy
, &bottom
);
3634 // find the row labels within these bounds
3637 for ( row
= 0; row
< m_numRows
; row
++ )
3639 if ( GetRowBottom(row
) < top
)
3642 if ( GetRowTop(row
) > bottom
)
3645 m_rowLabelsExposed
.Add( row
);
3653 void wxGrid::CalcColLabelsExposed( wxRegion
& reg
)
3655 wxRegionIterator
iter( reg
);
3658 m_colLabelsExposed
.Empty();
3665 // TODO: remove this when we can...
3666 // There is a bug in wxMotif that gives garbage update
3667 // rectangles if you jump-scroll a long way by clicking the
3668 // scrollbar with middle button. This is a work-around
3670 #if defined(__WXMOTIF__)
3672 m_gridWin
->GetClientSize( &cw
, &ch
);
3673 if ( r
.GetLeft() > cw
) r
.SetLeft( 0 );
3674 r
.SetRight( wxMin( r
.GetRight(), cw
) );
3677 // logical bounds of update region
3680 CalcUnscrolledPosition( r
.GetLeft(), 0, &left
, &dummy
);
3681 CalcUnscrolledPosition( r
.GetRight(), 0, &right
, &dummy
);
3683 // find the cells within these bounds
3686 for ( col
= 0; col
< m_numCols
; col
++ )
3688 if ( GetColRight(col
) < left
)
3691 if ( GetColLeft(col
) > right
)
3694 m_colLabelsExposed
.Add( col
);
3702 void wxGrid::CalcCellsExposed( wxRegion
& reg
)
3704 wxRegionIterator
iter( reg
);
3707 m_cellsExposed
.Empty();
3708 m_rowsExposed
.Empty();
3709 m_colsExposed
.Empty();
3711 int left
, top
, right
, bottom
;
3716 // TODO: remove this when we can...
3717 // There is a bug in wxMotif that gives garbage update
3718 // rectangles if you jump-scroll a long way by clicking the
3719 // scrollbar with middle button. This is a work-around
3721 #if defined(__WXMOTIF__)
3723 m_gridWin
->GetClientSize( &cw
, &ch
);
3724 if ( r
.GetTop() > ch
) r
.SetTop( 0 );
3725 if ( r
.GetLeft() > cw
) r
.SetLeft( 0 );
3726 r
.SetRight( wxMin( r
.GetRight(), cw
) );
3727 r
.SetBottom( wxMin( r
.GetBottom(), ch
) );
3730 // logical bounds of update region
3732 CalcUnscrolledPosition( r
.GetLeft(), r
.GetTop(), &left
, &top
);
3733 CalcUnscrolledPosition( r
.GetRight(), r
.GetBottom(), &right
, &bottom
);
3735 // find the cells within these bounds
3738 for ( row
= 0; row
< m_numRows
; row
++ )
3740 if ( GetRowBottom(row
) <= top
)
3743 if ( GetRowTop(row
) > bottom
)
3746 m_rowsExposed
.Add( row
);
3748 for ( col
= 0; col
< m_numCols
; col
++ )
3750 if ( GetColRight(col
) <= left
)
3753 if ( GetColLeft(col
) > right
)
3756 if ( m_colsExposed
.Index( col
) == wxNOT_FOUND
)
3757 m_colsExposed
.Add( col
);
3758 m_cellsExposed
.Add( wxGridCellCoords( row
, col
) );
3767 void wxGrid::ProcessRowLabelMouseEvent( wxMouseEvent
& event
)
3770 wxPoint
pos( event
.GetPosition() );
3771 CalcUnscrolledPosition( pos
.x
, pos
.y
, &x
, &y
);
3773 if ( event
.Dragging() )
3775 m_isDragging
= TRUE
;
3777 if ( event
.LeftIsDown() )
3779 switch( m_cursorMode
)
3781 case WXGRID_CURSOR_RESIZE_ROW
:
3783 int cw
, ch
, left
, dummy
;
3784 m_gridWin
->GetClientSize( &cw
, &ch
);
3785 CalcUnscrolledPosition( 0, 0, &left
, &dummy
);
3787 wxClientDC
dc( m_gridWin
);
3790 GetRowTop(m_dragRowOrCol
) +
3791 GetRowMinimalHeight(m_dragRowOrCol
) );
3792 dc
.SetLogicalFunction(wxINVERT
);
3793 if ( m_dragLastPos
>= 0 )
3795 dc
.DrawLine( left
, m_dragLastPos
, left
+cw
, m_dragLastPos
);
3797 dc
.DrawLine( left
, y
, left
+cw
, y
);
3802 case WXGRID_CURSOR_SELECT_ROW
:
3803 if ( (row
= YToRow( y
)) >= 0 &&
3804 !IsInSelection( row
, 0 ) )
3806 SelectRow( row
, TRUE
);
3809 // default label to suppress warnings about "enumeration value
3810 // 'xxx' not handled in switch
3818 m_isDragging
= FALSE
;
3821 // ------------ Entering or leaving the window
3823 if ( event
.Entering() || event
.Leaving() )
3825 ChangeCursorMode(WXGRID_CURSOR_SELECT_CELL
, m_rowLabelWin
);
3829 // ------------ Left button pressed
3831 else if ( event
.LeftDown() )
3833 // don't send a label click event for a hit on the
3834 // edge of the row label - this is probably the user
3835 // wanting to resize the row
3837 if ( YToEdgeOfRow(y
) < 0 )
3841 !SendEvent( wxEVT_GRID_LABEL_LEFT_CLICK
, row
, -1, event
) )
3843 SelectRow( row
, event
.ShiftDown() );
3844 ChangeCursorMode(WXGRID_CURSOR_SELECT_ROW
, m_rowLabelWin
);
3849 // starting to drag-resize a row
3851 if ( CanDragRowSize() )
3852 ChangeCursorMode(WXGRID_CURSOR_RESIZE_ROW
, m_rowLabelWin
);
3857 // ------------ Left double click
3859 else if (event
.LeftDClick() )
3861 if ( YToEdgeOfRow(y
) < 0 )
3864 SendEvent( wxEVT_GRID_LABEL_LEFT_DCLICK
, row
, -1, event
);
3869 // ------------ Left button released
3871 else if ( event
.LeftUp() )
3873 if ( m_cursorMode
== WXGRID_CURSOR_RESIZE_ROW
)
3875 DoEndDragResizeRow();
3877 // Note: we are ending the event *after* doing
3878 // default processing in this case
3880 SendEvent( wxEVT_GRID_ROW_SIZE
, m_dragRowOrCol
, -1, event
);
3883 ChangeCursorMode(WXGRID_CURSOR_SELECT_CELL
, m_rowLabelWin
);
3888 // ------------ Right button down
3890 else if ( event
.RightDown() )
3893 if ( !SendEvent( wxEVT_GRID_LABEL_RIGHT_CLICK
, row
, -1, event
) )
3895 // no default action at the moment
3900 // ------------ Right double click
3902 else if ( event
.RightDClick() )
3905 if ( !SendEvent( wxEVT_GRID_LABEL_RIGHT_DCLICK
, row
, -1, event
) )
3907 // no default action at the moment
3912 // ------------ No buttons down and mouse moving
3914 else if ( event
.Moving() )
3916 m_dragRowOrCol
= YToEdgeOfRow( y
);
3917 if ( m_dragRowOrCol
>= 0 )
3919 if ( m_cursorMode
== WXGRID_CURSOR_SELECT_CELL
)
3921 // don't capture the mouse yet
3922 if ( CanDragRowSize() )
3923 ChangeCursorMode(WXGRID_CURSOR_RESIZE_ROW
, m_rowLabelWin
, FALSE
);
3926 else if ( m_cursorMode
!= WXGRID_CURSOR_SELECT_CELL
)
3928 ChangeCursorMode(WXGRID_CURSOR_SELECT_CELL
, m_rowLabelWin
, FALSE
);
3934 void wxGrid::ProcessColLabelMouseEvent( wxMouseEvent
& event
)
3937 wxPoint
pos( event
.GetPosition() );
3938 CalcUnscrolledPosition( pos
.x
, pos
.y
, &x
, &y
);
3940 if ( event
.Dragging() )
3942 m_isDragging
= TRUE
;
3944 if ( event
.LeftIsDown() )
3946 switch( m_cursorMode
)
3948 case WXGRID_CURSOR_RESIZE_COL
:
3950 int cw
, ch
, dummy
, top
;
3951 m_gridWin
->GetClientSize( &cw
, &ch
);
3952 CalcUnscrolledPosition( 0, 0, &dummy
, &top
);
3954 wxClientDC
dc( m_gridWin
);
3957 x
= wxMax( x
, GetColLeft(m_dragRowOrCol
) +
3958 GetColMinimalWidth(m_dragRowOrCol
));
3959 dc
.SetLogicalFunction(wxINVERT
);
3960 if ( m_dragLastPos
>= 0 )
3962 dc
.DrawLine( m_dragLastPos
, top
, m_dragLastPos
, top
+ch
);
3964 dc
.DrawLine( x
, top
, x
, top
+ch
);
3969 case WXGRID_CURSOR_SELECT_COL
:
3970 if ( (col
= XToCol( x
)) >= 0 &&
3971 !IsInSelection( 0, col
) )
3973 SelectCol( col
, TRUE
);
3976 // default label to suppress warnings about "enumeration value
3977 // 'xxx' not handled in switch
3985 m_isDragging
= FALSE
;
3988 // ------------ Entering or leaving the window
3990 if ( event
.Entering() || event
.Leaving() )
3992 ChangeCursorMode(WXGRID_CURSOR_SELECT_CELL
, m_colLabelWin
);
3996 // ------------ Left button pressed
3998 else if ( event
.LeftDown() )
4000 // don't send a label click event for a hit on the
4001 // edge of the col label - this is probably the user
4002 // wanting to resize the col
4004 if ( XToEdgeOfCol(x
) < 0 )
4008 !SendEvent( wxEVT_GRID_LABEL_LEFT_CLICK
, -1, col
, event
) )
4010 SelectCol( col
, event
.ShiftDown() );
4011 ChangeCursorMode(WXGRID_CURSOR_SELECT_COL
, m_colLabelWin
);
4016 // starting to drag-resize a col
4018 if ( CanDragColSize() )
4019 ChangeCursorMode(WXGRID_CURSOR_RESIZE_COL
, m_colLabelWin
);
4024 // ------------ Left double click
4026 if ( event
.LeftDClick() )
4028 if ( XToEdgeOfCol(x
) < 0 )
4031 SendEvent( wxEVT_GRID_LABEL_LEFT_DCLICK
, -1, col
, event
);
4036 // ------------ Left button released
4038 else if ( event
.LeftUp() )
4040 if ( m_cursorMode
== WXGRID_CURSOR_RESIZE_COL
)
4042 DoEndDragResizeCol();
4044 // Note: we are ending the event *after* doing
4045 // default processing in this case
4047 SendEvent( wxEVT_GRID_COL_SIZE
, -1, m_dragRowOrCol
, event
);
4050 ChangeCursorMode(WXGRID_CURSOR_SELECT_CELL
, m_colLabelWin
);
4055 // ------------ Right button down
4057 else if ( event
.RightDown() )
4060 if ( !SendEvent( wxEVT_GRID_LABEL_RIGHT_CLICK
, -1, col
, event
) )
4062 // no default action at the moment
4067 // ------------ Right double click
4069 else if ( event
.RightDClick() )
4072 if ( !SendEvent( wxEVT_GRID_LABEL_RIGHT_DCLICK
, -1, col
, event
) )
4074 // no default action at the moment
4079 // ------------ No buttons down and mouse moving
4081 else if ( event
.Moving() )
4083 m_dragRowOrCol
= XToEdgeOfCol( x
);
4084 if ( m_dragRowOrCol
>= 0 )
4086 if ( m_cursorMode
== WXGRID_CURSOR_SELECT_CELL
)
4088 // don't capture the cursor yet
4089 if ( CanDragColSize() )
4090 ChangeCursorMode(WXGRID_CURSOR_RESIZE_COL
, m_colLabelWin
, FALSE
);
4093 else if ( m_cursorMode
!= WXGRID_CURSOR_SELECT_CELL
)
4095 ChangeCursorMode(WXGRID_CURSOR_SELECT_CELL
, m_colLabelWin
, FALSE
);
4101 void wxGrid::ProcessCornerLabelMouseEvent( wxMouseEvent
& event
)
4103 if ( event
.LeftDown() )
4105 // indicate corner label by having both row and
4108 if ( !SendEvent( wxEVT_GRID_LABEL_LEFT_CLICK
, -1, -1, event
) )
4114 else if ( event
.LeftDClick() )
4116 SendEvent( wxEVT_GRID_LABEL_LEFT_DCLICK
, -1, -1, event
);
4119 else if ( event
.RightDown() )
4121 if ( !SendEvent( wxEVT_GRID_LABEL_RIGHT_CLICK
, -1, -1, event
) )
4123 // no default action at the moment
4127 else if ( event
.RightDClick() )
4129 if ( !SendEvent( wxEVT_GRID_LABEL_RIGHT_DCLICK
, -1, -1, event
) )
4131 // no default action at the moment
4136 void wxGrid::ChangeCursorMode(CursorMode mode
,
4141 static const wxChar
*cursorModes
[] =
4150 wxLogTrace(_T("grid"),
4151 _T("wxGrid cursor mode (mouse capture for %s): %s -> %s"),
4152 win
== m_colLabelWin
? _T("colLabelWin")
4153 : win
? _T("rowLabelWin")
4155 cursorModes
[m_cursorMode
], cursorModes
[mode
]);
4156 #endif // __WXDEBUG__
4158 if ( mode
== m_cursorMode
)
4163 // by default use the grid itself
4169 m_winCapture
->ReleaseMouse();
4170 m_winCapture
= (wxWindow
*)NULL
;
4173 m_cursorMode
= mode
;
4175 switch ( m_cursorMode
)
4177 case WXGRID_CURSOR_RESIZE_ROW
:
4178 win
->SetCursor( m_rowResizeCursor
);
4181 case WXGRID_CURSOR_RESIZE_COL
:
4182 win
->SetCursor( m_colResizeCursor
);
4186 win
->SetCursor( *wxSTANDARD_CURSOR
);
4189 // we need to capture mouse when resizing
4190 bool resize
= m_cursorMode
== WXGRID_CURSOR_RESIZE_ROW
||
4191 m_cursorMode
== WXGRID_CURSOR_RESIZE_COL
;
4193 if ( captureMouse
&& resize
)
4195 win
->CaptureMouse();
4200 void wxGrid::ProcessGridCellMouseEvent( wxMouseEvent
& event
)
4203 wxPoint
pos( event
.GetPosition() );
4204 CalcUnscrolledPosition( pos
.x
, pos
.y
, &x
, &y
);
4206 wxGridCellCoords coords
;
4207 XYToCell( x
, y
, coords
);
4209 if ( event
.Dragging() )
4211 //wxLogDebug("pos(%d, %d) coords(%d, %d)", pos.x, pos.y, coords.GetRow(), coords.GetCol());
4213 // Don't start doing anything until the mouse has been drug at
4214 // least 3 pixels in any direction...
4217 if (m_startDragPos
== wxDefaultPosition
)
4219 m_startDragPos
= pos
;
4222 if (abs(m_startDragPos
.x
- pos
.x
) < 4 && abs(m_startDragPos
.y
- pos
.y
) < 4)
4226 m_isDragging
= TRUE
;
4227 if ( m_cursorMode
== WXGRID_CURSOR_SELECT_CELL
)
4229 // Hide the edit control, so it
4230 // won't interfer with drag-shrinking.
4231 if ( IsCellEditControlEnabled() )
4233 HideCellEditControl();
4234 SaveEditControlValue();
4237 // Have we captured the mouse yet?
4240 m_winCapture
= m_gridWin
;
4241 m_winCapture
->CaptureMouse();
4244 if ( coords
!= wxGridNoCellCoords
)
4246 if ( event
.ControlDown() )
4248 if ( m_selectingKeyboard
== wxGridNoCellCoords
)
4249 m_selectingKeyboard
= coords
;
4250 SelectBlock ( m_selectingKeyboard
, coords
);
4254 if ( !IsSelection() )
4256 SelectBlock( coords
, coords
);
4260 SelectBlock( m_currentCellCoords
, coords
);
4264 if (! IsVisible(coords
))
4266 MakeCellVisible(coords
);
4267 // TODO: need to introduce a delay or something here. The
4268 // scrolling is way to fast, at least on MSW.
4272 else if ( m_cursorMode
== WXGRID_CURSOR_RESIZE_ROW
)
4274 int cw
, ch
, left
, dummy
;
4275 m_gridWin
->GetClientSize( &cw
, &ch
);
4276 CalcUnscrolledPosition( 0, 0, &left
, &dummy
);
4278 wxClientDC
dc( m_gridWin
);
4280 y
= wxMax( y
, GetRowTop(m_dragRowOrCol
) +
4281 GetRowMinimalHeight(m_dragRowOrCol
) );
4282 dc
.SetLogicalFunction(wxINVERT
);
4283 if ( m_dragLastPos
>= 0 )
4285 dc
.DrawLine( left
, m_dragLastPos
, left
+cw
, m_dragLastPos
);
4287 dc
.DrawLine( left
, y
, left
+cw
, y
);
4290 else if ( m_cursorMode
== WXGRID_CURSOR_RESIZE_COL
)
4292 int cw
, ch
, dummy
, top
;
4293 m_gridWin
->GetClientSize( &cw
, &ch
);
4294 CalcUnscrolledPosition( 0, 0, &dummy
, &top
);
4296 wxClientDC
dc( m_gridWin
);
4298 x
= wxMax( x
, GetColLeft(m_dragRowOrCol
) +
4299 GetColMinimalWidth(m_dragRowOrCol
) );
4300 dc
.SetLogicalFunction(wxINVERT
);
4301 if ( m_dragLastPos
>= 0 )
4303 dc
.DrawLine( m_dragLastPos
, top
, m_dragLastPos
, top
+ch
);
4305 dc
.DrawLine( x
, top
, x
, top
+ch
);
4312 m_isDragging
= FALSE
;
4313 m_startDragPos
= wxDefaultPosition
;
4315 // VZ: if we do this, the mode is reset to WXGRID_CURSOR_SELECT_CELL
4316 // immediately after it becomes WXGRID_CURSOR_RESIZE_ROW/COL under
4319 if ( event
.Entering() || event
.Leaving() )
4321 ChangeCursorMode(WXGRID_CURSOR_SELECT_CELL
);
4322 m_gridWin
->SetCursor( *wxSTANDARD_CURSOR
);
4327 // ------------ Left button pressed
4329 if ( event
.LeftDown() && coords
!= wxGridNoCellCoords
)
4331 if ( !event
.ShiftDown() && !event
.ControlDown() )
4333 if ( event
.ShiftDown() )
4335 m_selection
->SelectBlock( m_currentCellCoords
.GetRow(),
4336 m_currentCellCoords
.GetCol(),
4339 event
.ControlDown(),
4344 else if ( XToEdgeOfCol(x
) < 0 &&
4345 YToEdgeOfRow(y
) < 0 )
4347 if ( !SendEvent( wxEVT_GRID_CELL_LEFT_CLICK
,
4352 DisableCellEditControl();
4353 MakeCellVisible( coords
);
4355 // if this is the second click on this cell then start
4357 if ( m_waitForSlowClick
&&
4358 (coords
== m_currentCellCoords
) &&
4359 CanEnableCellControl())
4361 EnableCellEditControl();
4363 wxGridCellAttr
* attr
= GetCellAttr(m_currentCellCoords
);
4364 wxGridCellEditor
*editor
= attr
->GetEditor(this,
4367 editor
->StartingClick();
4371 m_waitForSlowClick
= FALSE
;
4375 if ( event
.ControlDown() )
4377 m_selection
->ToggleCellSelection( coords
.GetRow(),
4379 event
.ControlDown(),
4383 m_selectingTopLeft
= wxGridNoCellCoords
;
4384 m_selectingBottomRight
= wxGridNoCellCoords
;
4385 m_selectingKeyboard
= coords
;
4388 SetCurrentCell( coords
);
4389 m_waitForSlowClick
= TRUE
;
4396 // ------------ Left double click
4398 else if ( event
.LeftDClick() && coords
!= wxGridNoCellCoords
)
4400 DisableCellEditControl();
4402 if ( XToEdgeOfCol(x
) < 0 && YToEdgeOfRow(y
) < 0 )
4404 SendEvent( wxEVT_GRID_CELL_LEFT_DCLICK
,
4412 // ------------ Left button released
4414 else if ( event
.LeftUp() )
4416 if ( m_cursorMode
== WXGRID_CURSOR_SELECT_CELL
)
4418 if ( m_selectingTopLeft
!= wxGridNoCellCoords
&&
4419 m_selectingBottomRight
!= wxGridNoCellCoords
)
4423 m_winCapture
->ReleaseMouse();
4424 m_winCapture
= NULL
;
4426 m_selection
->SelectBlock( m_selectingTopLeft
.GetRow(),
4427 m_selectingTopLeft
.GetCol(),
4428 m_selectingBottomRight
.GetRow(),
4429 m_selectingBottomRight
.GetCol(),
4430 event
.ControlDown(),
4434 m_selectingTopLeft
= wxGridNoCellCoords
;
4435 m_selectingBottomRight
= wxGridNoCellCoords
;
4438 // Show the edit control, if it has been hidden for
4440 ShowCellEditControl();
4442 else if ( m_cursorMode
== WXGRID_CURSOR_RESIZE_ROW
)
4444 ChangeCursorMode(WXGRID_CURSOR_SELECT_CELL
);
4445 DoEndDragResizeRow();
4447 // Note: we are ending the event *after* doing
4448 // default processing in this case
4450 SendEvent( wxEVT_GRID_ROW_SIZE
, m_dragRowOrCol
, -1, event
);
4452 else if ( m_cursorMode
== WXGRID_CURSOR_RESIZE_COL
)
4454 ChangeCursorMode(WXGRID_CURSOR_SELECT_CELL
);
4455 DoEndDragResizeCol();
4457 // Note: we are ending the event *after* doing
4458 // default processing in this case
4460 SendEvent( wxEVT_GRID_COL_SIZE
, -1, m_dragRowOrCol
, event
);
4467 // ------------ Right button down
4469 else if ( event
.RightDown() && coords
!= wxGridNoCellCoords
)
4471 DisableCellEditControl();
4472 if ( !SendEvent( wxEVT_GRID_CELL_RIGHT_CLICK
,
4477 // no default action at the moment
4482 // ------------ Right double click
4484 else if ( event
.RightDClick() && coords
!= wxGridNoCellCoords
)
4486 DisableCellEditControl();
4487 if ( !SendEvent( wxEVT_GRID_CELL_RIGHT_DCLICK
,
4492 // no default action at the moment
4496 // ------------ Moving and no button action
4498 else if ( event
.Moving() && !event
.IsButton() )
4500 int dragRow
= YToEdgeOfRow( y
);
4501 int dragCol
= XToEdgeOfCol( x
);
4503 // Dragging on the corner of a cell to resize in both
4504 // directions is not implemented yet...
4506 if ( dragRow
>= 0 && dragCol
>= 0 )
4508 ChangeCursorMode(WXGRID_CURSOR_SELECT_CELL
);
4514 m_dragRowOrCol
= dragRow
;
4516 if ( m_cursorMode
== WXGRID_CURSOR_SELECT_CELL
)
4518 if ( CanDragRowSize() && CanDragGridSize() )
4519 ChangeCursorMode(WXGRID_CURSOR_RESIZE_ROW
);
4524 m_dragRowOrCol
= dragCol
;
4532 m_dragRowOrCol
= dragCol
;
4534 if ( m_cursorMode
== WXGRID_CURSOR_SELECT_CELL
)
4536 if ( CanDragColSize() && CanDragGridSize() )
4537 ChangeCursorMode(WXGRID_CURSOR_RESIZE_COL
);
4543 // Neither on a row or col edge
4545 if ( m_cursorMode
!= WXGRID_CURSOR_SELECT_CELL
)
4547 ChangeCursorMode(WXGRID_CURSOR_SELECT_CELL
);
4553 void wxGrid::DoEndDragResizeRow()
4555 if ( m_dragLastPos
>= 0 )
4557 // erase the last line and resize the row
4559 int cw
, ch
, left
, dummy
;
4560 m_gridWin
->GetClientSize( &cw
, &ch
);
4561 CalcUnscrolledPosition( 0, 0, &left
, &dummy
);
4563 wxClientDC
dc( m_gridWin
);
4565 dc
.SetLogicalFunction( wxINVERT
);
4566 dc
.DrawLine( left
, m_dragLastPos
, left
+cw
, m_dragLastPos
);
4567 HideCellEditControl();
4568 SaveEditControlValue();
4570 int rowTop
= GetRowTop(m_dragRowOrCol
);
4571 SetRowSize( m_dragRowOrCol
,
4572 wxMax( m_dragLastPos
- rowTop
, WXGRID_MIN_ROW_HEIGHT
) );
4574 if ( !GetBatchCount() )
4576 // Only needed to get the correct rect.y:
4577 wxRect
rect ( CellToRect( m_dragRowOrCol
, 0 ) );
4579 CalcScrolledPosition(0, rect
.y
, &dummy
, &rect
.y
);
4580 rect
.width
= m_rowLabelWidth
;
4581 rect
.height
= ch
- rect
.y
;
4582 m_rowLabelWin
->Refresh( TRUE
, &rect
);
4584 m_gridWin
->Refresh( FALSE
, &rect
);
4587 ShowCellEditControl();
4592 void wxGrid::DoEndDragResizeCol()
4594 if ( m_dragLastPos
>= 0 )
4596 // erase the last line and resize the col
4598 int cw
, ch
, dummy
, top
;
4599 m_gridWin
->GetClientSize( &cw
, &ch
);
4600 CalcUnscrolledPosition( 0, 0, &dummy
, &top
);
4602 wxClientDC
dc( m_gridWin
);
4604 dc
.SetLogicalFunction( wxINVERT
);
4605 dc
.DrawLine( m_dragLastPos
, top
, m_dragLastPos
, top
+ch
);
4606 HideCellEditControl();
4607 SaveEditControlValue();
4609 int colLeft
= GetColLeft(m_dragRowOrCol
);
4610 SetColSize( m_dragRowOrCol
,
4611 wxMax( m_dragLastPos
- colLeft
,
4612 GetColMinimalWidth(m_dragRowOrCol
) ) );
4614 if ( !GetBatchCount() )
4616 // Only needed to get the correct rect.x:
4617 wxRect
rect ( CellToRect( 0, m_dragRowOrCol
) );
4619 CalcScrolledPosition(rect
.x
, 0, &rect
.x
, &dummy
);
4620 rect
.width
= cw
- rect
.x
;
4621 rect
.height
= m_colLabelHeight
;
4622 m_colLabelWin
->Refresh( TRUE
, &rect
);
4624 m_gridWin
->Refresh( FALSE
, &rect
);
4627 ShowCellEditControl();
4634 // ------ interaction with data model
4636 bool wxGrid::ProcessTableMessage( wxGridTableMessage
& msg
)
4638 switch ( msg
.GetId() )
4640 case wxGRIDTABLE_REQUEST_VIEW_GET_VALUES
:
4641 return GetModelValues();
4643 case wxGRIDTABLE_REQUEST_VIEW_SEND_VALUES
:
4644 return SetModelValues();
4646 case wxGRIDTABLE_NOTIFY_ROWS_INSERTED
:
4647 case wxGRIDTABLE_NOTIFY_ROWS_APPENDED
:
4648 case wxGRIDTABLE_NOTIFY_ROWS_DELETED
:
4649 case wxGRIDTABLE_NOTIFY_COLS_INSERTED
:
4650 case wxGRIDTABLE_NOTIFY_COLS_APPENDED
:
4651 case wxGRIDTABLE_NOTIFY_COLS_DELETED
:
4652 return Redimension( msg
);
4661 // The behaviour of this function depends on the grid table class
4662 // Clear() function. For the default wxGridStringTable class the
4663 // behavious is to replace all cell contents with wxEmptyString but
4664 // not to change the number of rows or cols.
4666 void wxGrid::ClearGrid()
4670 if (IsCellEditControlEnabled())
4671 DisableCellEditControl();
4674 if ( !GetBatchCount() ) m_gridWin
->Refresh();
4679 bool wxGrid::InsertRows( int pos
, int numRows
, bool WXUNUSED(updateLabels
) )
4681 // TODO: something with updateLabels flag
4685 wxFAIL_MSG( wxT("Called wxGrid::InsertRows() before calling CreateGrid()") );
4691 if (IsCellEditControlEnabled())
4692 DisableCellEditControl();
4694 bool ok
= m_table
->InsertRows( pos
, numRows
);
4696 // the table will have sent the results of the insert row
4697 // operation to this view object as a grid table message
4701 if ( m_numCols
== 0 )
4703 m_table
->AppendCols( WXGRID_DEFAULT_NUMBER_COLS
);
4705 // TODO: perhaps instead of appending the default number of cols
4706 // we should remember what the last non-zero number of cols was ?
4710 if ( m_currentCellCoords
== wxGridNoCellCoords
)
4712 // if we have just inserted cols into an empty grid the current
4713 // cell will be undefined...
4715 SetCurrentCell( 0, 0 );
4718 m_selection
->UpdateRows( pos
, numRows
);
4719 if ( !GetBatchCount() ) Refresh();
4731 bool wxGrid::AppendRows( int numRows
, bool WXUNUSED(updateLabels
) )
4733 // TODO: something with updateLabels flag
4737 wxFAIL_MSG( wxT("Called wxGrid::AppendRows() before calling CreateGrid()") );
4741 if ( m_table
&& m_table
->AppendRows( numRows
) )
4743 if ( m_currentCellCoords
== wxGridNoCellCoords
)
4745 // if we have just inserted cols into an empty grid the current
4746 // cell will be undefined...
4748 SetCurrentCell( 0, 0 );
4751 // the table will have sent the results of the append row
4752 // operation to this view object as a grid table message
4754 if ( !GetBatchCount() ) Refresh();
4764 bool wxGrid::DeleteRows( int pos
, int numRows
, bool WXUNUSED(updateLabels
) )
4766 // TODO: something with updateLabels flag
4770 wxFAIL_MSG( wxT("Called wxGrid::DeleteRows() before calling CreateGrid()") );
4776 if (IsCellEditControlEnabled())
4777 DisableCellEditControl();
4779 if (m_table
->DeleteRows( pos
, numRows
))
4782 // the table will have sent the results of the delete row
4783 // operation to this view object as a grid table message
4785 m_selection
->UpdateRows( pos
, -((int)numRows
) );
4786 if ( !GetBatchCount() ) Refresh();
4794 bool wxGrid::InsertCols( int pos
, int numCols
, bool WXUNUSED(updateLabels
) )
4796 // TODO: something with updateLabels flag
4800 wxFAIL_MSG( wxT("Called wxGrid::InsertCols() before calling CreateGrid()") );
4806 if (IsCellEditControlEnabled())
4807 DisableCellEditControl();
4809 bool ok
= m_table
->InsertCols( pos
, numCols
);
4811 // the table will have sent the results of the insert col
4812 // operation to this view object as a grid table message
4816 if ( m_currentCellCoords
== wxGridNoCellCoords
)
4818 // if we have just inserted cols into an empty grid the current
4819 // cell will be undefined...
4821 SetCurrentCell( 0, 0 );
4824 m_selection
->UpdateCols( pos
, numCols
);
4825 if ( !GetBatchCount() ) Refresh();
4837 bool wxGrid::AppendCols( int numCols
, bool WXUNUSED(updateLabels
) )
4839 // TODO: something with updateLabels flag
4843 wxFAIL_MSG( wxT("Called wxGrid::AppendCols() before calling CreateGrid()") );
4847 if ( m_table
&& m_table
->AppendCols( numCols
) )
4849 // the table will have sent the results of the append col
4850 // operation to this view object as a grid table message
4852 if ( m_currentCellCoords
== wxGridNoCellCoords
)
4854 // if we have just inserted cols into an empty grid the current
4855 // cell will be undefined...
4857 SetCurrentCell( 0, 0 );
4860 if ( !GetBatchCount() ) Refresh();
4870 bool wxGrid::DeleteCols( int pos
, int numCols
, bool WXUNUSED(updateLabels
) )
4872 // TODO: something with updateLabels flag
4876 wxFAIL_MSG( wxT("Called wxGrid::DeleteCols() before calling CreateGrid()") );
4882 if (IsCellEditControlEnabled())
4883 DisableCellEditControl();
4885 if ( m_table
->DeleteCols( pos
, numCols
) )
4887 // the table will have sent the results of the delete col
4888 // operation to this view object as a grid table message
4890 m_selection
->UpdateCols( pos
, -((int)numCols
) );
4891 if ( !GetBatchCount() ) Refresh();
4901 // ----- event handlers
4904 // Generate a grid event based on a mouse event and
4905 // return the result of ProcessEvent()
4907 bool wxGrid::SendEvent( const wxEventType type
,
4909 wxMouseEvent
& mouseEv
)
4911 if ( type
== wxEVT_GRID_ROW_SIZE
|| type
== wxEVT_GRID_COL_SIZE
)
4913 int rowOrCol
= (row
== -1 ? col
: row
);
4915 wxGridSizeEvent
gridEvt( GetId(),
4919 mouseEv
.GetX(), mouseEv
.GetY(),
4920 mouseEv
.ControlDown(),
4921 mouseEv
.ShiftDown(),
4923 mouseEv
.MetaDown() );
4925 return GetEventHandler()->ProcessEvent(gridEvt
);
4927 else if ( type
== wxEVT_GRID_RANGE_SELECT
)
4929 // Right now, it should _never_ end up here!
4930 wxGridRangeSelectEvent
gridEvt( GetId(),
4934 m_selectingBottomRight
,
4936 mouseEv
.ControlDown(),
4937 mouseEv
.ShiftDown(),
4939 mouseEv
.MetaDown() );
4941 return GetEventHandler()->ProcessEvent(gridEvt
);
4945 wxGridEvent
gridEvt( GetId(),
4949 mouseEv
.GetX(), mouseEv
.GetY(),
4951 mouseEv
.ControlDown(),
4952 mouseEv
.ShiftDown(),
4954 mouseEv
.MetaDown() );
4956 return GetEventHandler()->ProcessEvent(gridEvt
);
4961 // Generate a grid event of specified type and return the result
4962 // of ProcessEvent().
4964 bool wxGrid::SendEvent( const wxEventType type
,
4967 if ( type
== wxEVT_GRID_ROW_SIZE
|| type
== wxEVT_GRID_COL_SIZE
)
4969 int rowOrCol
= (row
== -1 ? col
: row
);
4971 wxGridSizeEvent
gridEvt( GetId(),
4976 return GetEventHandler()->ProcessEvent(gridEvt
);
4980 wxGridEvent
gridEvt( GetId(),
4985 return GetEventHandler()->ProcessEvent(gridEvt
);
4990 void wxGrid::OnPaint( wxPaintEvent
& WXUNUSED(event
) )
4992 wxPaintDC
dc( this );
4996 // This is just here to make sure that CalcDimensions gets called when
4997 // the grid view is resized... then the size event is skipped to allow
4998 // the box sizers to handle everything
5000 void wxGrid::OnSize( wxSizeEvent
& event
)
5007 void wxGrid::OnKeyDown( wxKeyEvent
& event
)
5009 if ( m_inOnKeyDown
)
5011 // shouldn't be here - we are going round in circles...
5013 wxFAIL_MSG( wxT("wxGrid::OnKeyDown called while already active") );
5016 m_inOnKeyDown
= TRUE
;
5018 // propagate the event up and see if it gets processed
5020 wxWindow
*parent
= GetParent();
5021 wxKeyEvent
keyEvt( event
);
5022 keyEvt
.SetEventObject( parent
);
5024 if ( !parent
->GetEventHandler()->ProcessEvent( keyEvt
) )
5027 // try local handlers
5029 if ( !event
.ShiftDown() &&
5030 m_selectingKeyboard
!= wxGridNoCellCoords
)
5032 if ( m_selectingTopLeft
!= wxGridNoCellCoords
&&
5033 m_selectingBottomRight
!= wxGridNoCellCoords
)
5034 m_selection
->SelectBlock( m_selectingTopLeft
.GetRow(),
5035 m_selectingTopLeft
.GetCol(),
5036 m_selectingBottomRight
.GetRow(),
5037 m_selectingBottomRight
.GetCol(),
5038 event
.ControlDown(),
5042 m_selectingTopLeft
= wxGridNoCellCoords
;
5043 m_selectingBottomRight
= wxGridNoCellCoords
;
5044 m_selectingKeyboard
= wxGridNoCellCoords
;
5047 switch ( event
.KeyCode() )
5050 if ( event
.ControlDown() )
5052 MoveCursorUpBlock( event
.ShiftDown() );
5056 MoveCursorUp( event
.ShiftDown() );
5061 if ( event
.ControlDown() )
5063 MoveCursorDownBlock( event
.ShiftDown() );
5067 MoveCursorDown( event
.ShiftDown() );
5072 if ( event
.ControlDown() )
5074 MoveCursorLeftBlock( event
.ShiftDown() );
5078 MoveCursorLeft( event
.ShiftDown() );
5083 if ( event
.ControlDown() )
5085 MoveCursorRightBlock( event
.ShiftDown() );
5089 MoveCursorRight( event
.ShiftDown() );
5094 if ( event
.ControlDown() )
5096 event
.Skip(); // to let the edit control have the return
5100 MoveCursorDown( event
.ShiftDown() );
5105 m_selection
->ClearSelection();
5109 if (event
.ShiftDown())
5110 MoveCursorLeft( FALSE
);
5112 MoveCursorRight( FALSE
);
5116 if ( event
.ControlDown() )
5118 MakeCellVisible( 0, 0 );
5119 SetCurrentCell( 0, 0 );
5128 if ( event
.ControlDown() )
5130 MakeCellVisible( m_numRows
-1, m_numCols
-1 );
5131 SetCurrentCell( m_numRows
-1, m_numCols
-1 );
5148 if ( event
.ControlDown() )
5150 m_selection
->ToggleCellSelection( m_currentCellCoords
.GetRow(),
5151 m_currentCellCoords
.GetCol(),
5152 event
.ControlDown(),
5158 if ( !IsEditable() )
5160 MoveCursorRight( FALSE
);
5163 // Otherwise fall through to default
5166 // alphanumeric keys or F2 (special key just for this) enable
5167 // the cell edit control
5168 // On just Shift/Control I get values for event.KeyCode()
5169 // that are outside the range where isalnum's behaviour is
5170 // well defined, so do an additional sanity check.
5171 if ( !(event
.AltDown() ||
5173 event
.ControlDown()) &&
5174 ((isalnum(event
.KeyCode()) &&
5175 (event
.KeyCode() < 256 && event
.KeyCode() >= 0)) ||
5176 event
.KeyCode() == WXK_F2
) &&
5177 !IsCellEditControlEnabled() &&
5178 CanEnableCellControl() )
5180 EnableCellEditControl();
5181 int row
= m_currentCellCoords
.GetRow();
5182 int col
= m_currentCellCoords
.GetCol();
5183 wxGridCellAttr
* attr
= GetCellAttr(row
, col
);
5184 wxGridCellEditor
*editor
= attr
->GetEditor(this, row
, col
);
5185 editor
->StartingKey(event
);
5191 // let others process char events with modifiers or all
5192 // char events for readonly cells
5199 m_inOnKeyDown
= FALSE
;
5202 void wxGrid::OnEraseBackground(wxEraseEvent
&)
5206 void wxGrid::SetCurrentCell( const wxGridCellCoords
& coords
)
5208 if ( m_currentCellCoords
!= wxGridNoCellCoords
)
5210 HideCellEditControl();
5211 DisableCellEditControl();
5213 // Clear the old current cell highlight
5214 wxRect r
= BlockToDeviceRect(m_currentCellCoords
, m_currentCellCoords
);
5216 // Otherwise refresh redraws the highlight!
5217 m_currentCellCoords
= coords
;
5219 m_gridWin
->Refresh( FALSE
, &r
);
5222 m_currentCellCoords
= coords
;
5224 wxClientDC
dc(m_gridWin
);
5227 wxGridCellAttr
* attr
= GetCellAttr(coords
);
5228 DrawCellHighlight(dc
, attr
);
5232 // SN: For my extended selection code, automatic
5233 // deselection is definitely not a good idea.
5234 if ( IsSelection() )
5236 wxRect
r( SelectionToDeviceRect() );
5238 if ( !GetBatchCount() ) m_gridWin
->Refresh( FALSE
, &r
);
5245 // ------ functions to get/send data (see also public functions)
5248 bool wxGrid::GetModelValues()
5252 // all we need to do is repaint the grid
5254 m_gridWin
->Refresh();
5262 bool wxGrid::SetModelValues()
5268 for ( row
= 0; row
< m_numRows
; row
++ )
5270 for ( col
= 0; col
< m_numCols
; col
++ )
5272 m_table
->SetValue( row
, col
, GetCellValue(row
, col
) );
5284 // Note - this function only draws cells that are in the list of
5285 // exposed cells (usually set from the update region by
5286 // CalcExposedCells)
5288 void wxGrid::DrawGridCellArea( wxDC
& dc
)
5290 if ( !m_numRows
|| !m_numCols
) return;
5293 size_t numCells
= m_cellsExposed
.GetCount();
5295 for ( i
= 0; i
< numCells
; i
++ )
5297 DrawCell( dc
, m_cellsExposed
[i
] );
5302 void wxGrid::DrawGridSpace( wxDC
& dc
)
5304 if ( m_numRows
&& m_numCols
)
5307 m_gridWin
->GetClientSize( &cw
, &ch
);
5310 CalcUnscrolledPosition( cw
, ch
, &right
, &bottom
);
5312 if ( right
> GetColRight(m_numCols
-1) ||
5313 bottom
> GetRowBottom(m_numRows
-1) )
5316 CalcUnscrolledPosition( 0, 0, &left
, &top
);
5318 dc
.SetBrush( wxBrush(GetDefaultCellBackgroundColour(), wxSOLID
) );
5319 dc
.SetPen( *wxTRANSPARENT_PEN
);
5321 if ( right
> GetColRight(m_numCols
-1) )
5322 dc
.DrawRectangle( GetColRight(m_numCols
-1), top
,
5323 right
- GetColRight(m_numCols
-1), ch
);
5325 if ( bottom
> GetRowBottom(m_numRows
-1) )
5326 dc
.DrawRectangle( left
, GetRowBottom(m_numRows
-1),
5327 cw
, bottom
- GetRowBottom(m_numRows
-1) );
5333 void wxGrid::DrawCell( wxDC
& dc
, const wxGridCellCoords
& coords
)
5335 int row
= coords
.GetRow();
5336 int col
= coords
.GetCol();
5338 if ( GetColWidth(col
) <= 0 || GetRowHeight(row
) <= 0 )
5341 // we draw the cell border ourselves
5342 #if !WXGRID_DRAW_LINES
5343 if ( m_gridLinesEnabled
)
5344 DrawCellBorder( dc
, coords
);
5347 wxGridCellAttr
* attr
= GetCellAttr(row
, col
);
5349 bool isCurrent
= coords
== m_currentCellCoords
;
5352 rect
.x
= GetColLeft(col
);
5353 rect
.y
= GetRowTop(row
);
5354 rect
.width
= GetColWidth(col
) - 1;
5355 rect
.height
= GetRowHeight(row
) - 1;
5357 // if the editor is shown, we should use it and not the renderer
5358 if ( isCurrent
&& IsCellEditControlEnabled() )
5360 wxGridCellEditor
*editor
= attr
->GetEditor(this, row
, col
);
5361 editor
->PaintBackground(rect
, attr
);
5366 // but all the rest is drawn by the cell renderer and hence may be
5368 wxGridCellRenderer
*renderer
= attr
->GetRenderer(this, row
, col
);
5369 renderer
->Draw(*this, *attr
, dc
, rect
, row
, col
, IsInSelection(coords
));
5376 void wxGrid::DrawCellHighlight( wxDC
& dc
, const wxGridCellAttr
*attr
)
5378 int row
= m_currentCellCoords
.GetRow();
5379 int col
= m_currentCellCoords
.GetCol();
5381 if ( GetColWidth(col
) <= 0 || GetRowHeight(row
) <= 0 )
5385 rect
.x
= GetColLeft(col
);
5386 rect
.y
= GetRowTop(row
);
5387 rect
.width
= GetColWidth(col
) - 1;
5388 rect
.height
= GetRowHeight(row
) - 1;
5390 // hmmm... what could we do here to show that the cell is disabled?
5391 // for now, I just draw a thinner border than for the other ones, but
5392 // it doesn't look really good
5393 dc
.SetPen(wxPen(m_gridLineColour
, attr
->IsReadOnly() ? 1 : 3, wxSOLID
));
5394 dc
.SetBrush(*wxTRANSPARENT_BRUSH
);
5396 dc
.DrawRectangle(rect
);
5399 // VZ: my experiments with 3d borders...
5401 // how to properly set colours for arbitrary bg?
5402 wxCoord x1
= rect
.x
,
5404 x2
= rect
.x
+ rect
.width
-1,
5405 y2
= rect
.y
+ rect
.height
-1;
5407 dc
.SetPen(*wxWHITE_PEN
);
5408 dc
.DrawLine(x1
, y1
, x2
, y1
);
5409 dc
.DrawLine(x1
, y1
, x1
, y2
);
5411 dc
.DrawLine(x1
+ 1, y2
- 1, x2
- 1, y2
- 1);
5412 dc
.DrawLine(x2
- 1, y1
+ 1, x2
- 1, y2
);
5414 dc
.SetPen(*wxBLACK_PEN
);
5415 dc
.DrawLine(x1
, y2
, x2
, y2
);
5416 dc
.DrawLine(x2
, y1
, x2
, y2
+1);
5421 void wxGrid::DrawCellBorder( wxDC
& dc
, const wxGridCellCoords
& coords
)
5423 int row
= coords
.GetRow();
5424 int col
= coords
.GetCol();
5425 if ( GetColWidth(col
) <= 0 || GetRowHeight(row
) <= 0 )
5428 dc
.SetPen( wxPen(GetGridLineColour(), 1, wxSOLID
) );
5430 // right hand border
5432 dc
.DrawLine( GetColRight(col
), GetRowTop(row
),
5433 GetColRight(col
), GetRowBottom(row
) );
5437 dc
.DrawLine( GetColLeft(col
), GetRowBottom(row
),
5438 GetColRight(col
), GetRowBottom(row
) );
5441 void wxGrid::DrawHighlight(wxDC
& dc
)
5443 // This if block was previously in wxGrid::OnPaint but that doesn't
5444 // seem to get called under wxGTK - MB
5446 if ( m_currentCellCoords
== wxGridNoCellCoords
&&
5447 m_numRows
&& m_numCols
)
5449 m_currentCellCoords
.Set(0, 0);
5452 if ( IsCellEditControlEnabled() )
5454 // don't show highlight when the edit control is shown
5458 // if the active cell was repainted, repaint its highlight too because it
5459 // might have been damaged by the grid lines
5460 size_t count
= m_cellsExposed
.GetCount();
5461 for ( size_t n
= 0; n
< count
; n
++ )
5463 if ( m_cellsExposed
[n
] == m_currentCellCoords
)
5465 wxGridCellAttr
* attr
= GetCellAttr(m_currentCellCoords
);
5466 DrawCellHighlight(dc
, attr
);
5474 // TODO: remove this ???
5475 // This is used to redraw all grid lines e.g. when the grid line colour
5478 void wxGrid::DrawAllGridLines( wxDC
& dc
, const wxRegion
& reg
)
5480 if ( !m_gridLinesEnabled
||
5482 !m_numCols
) return;
5484 int top
, bottom
, left
, right
;
5490 m_gridWin
->GetClientSize(&cw
, &ch
);
5492 // virtual coords of visible area
5494 CalcUnscrolledPosition( 0, 0, &left
, &top
);
5495 CalcUnscrolledPosition( cw
, ch
, &right
, &bottom
);
5500 reg
.GetBox(x
, y
, w
, h
);
5501 CalcUnscrolledPosition( x
, y
, &left
, &top
);
5502 CalcUnscrolledPosition( x
+ w
, y
+ h
, &right
, &bottom
);
5506 m_gridWin
->GetClientSize(&cw
, &ch
);
5507 CalcUnscrolledPosition( 0, 0, &left
, &top
);
5508 CalcUnscrolledPosition( cw
, ch
, &right
, &bottom
);
5511 // avoid drawing grid lines past the last row and col
5513 right
= wxMin( right
, GetColRight(m_numCols
- 1) );
5514 bottom
= wxMin( bottom
, GetRowBottom(m_numRows
- 1) );
5516 dc
.SetPen( wxPen(GetGridLineColour(), 1, wxSOLID
) );
5518 // horizontal grid lines
5521 for ( i
= 0; i
< m_numRows
; i
++ )
5523 int bot
= GetRowBottom(i
) - 1;
5532 dc
.DrawLine( left
, bot
, right
, bot
);
5537 // vertical grid lines
5539 for ( i
= 0; i
< m_numCols
; i
++ )
5541 int colRight
= GetColRight(i
) - 1;
5542 if ( colRight
> right
)
5547 if ( colRight
>= left
)
5549 dc
.DrawLine( colRight
, top
, colRight
, bottom
);
5555 void wxGrid::DrawRowLabels( wxDC
& dc
)
5557 if ( !m_numRows
|| !m_numCols
) return;
5560 size_t numLabels
= m_rowLabelsExposed
.GetCount();
5562 for ( i
= 0; i
< numLabels
; i
++ )
5564 DrawRowLabel( dc
, m_rowLabelsExposed
[i
] );
5569 void wxGrid::DrawRowLabel( wxDC
& dc
, int row
)
5571 if ( GetRowHeight(row
) <= 0 )
5574 int rowTop
= GetRowTop(row
),
5575 rowBottom
= GetRowBottom(row
) - 1;
5577 dc
.SetPen( *wxBLACK_PEN
);
5578 dc
.DrawLine( m_rowLabelWidth
-1, rowTop
,
5579 m_rowLabelWidth
-1, rowBottom
);
5581 dc
.DrawLine( 0, rowBottom
, m_rowLabelWidth
-1, rowBottom
);
5583 dc
.SetPen( *wxWHITE_PEN
);
5584 dc
.DrawLine( 0, rowTop
, 0, rowBottom
);
5585 dc
.DrawLine( 0, rowTop
, m_rowLabelWidth
-1, rowTop
);
5587 dc
.SetBackgroundMode( wxTRANSPARENT
);
5588 dc
.SetTextForeground( GetLabelTextColour() );
5589 dc
.SetFont( GetLabelFont() );
5592 GetRowLabelAlignment( &hAlign
, &vAlign
);
5596 rect
.SetY( GetRowTop(row
) + 2 );
5597 rect
.SetWidth( m_rowLabelWidth
- 4 );
5598 rect
.SetHeight( GetRowHeight(row
) - 4 );
5599 DrawTextRectangle( dc
, GetRowLabelValue( row
), rect
, hAlign
, vAlign
);
5603 void wxGrid::DrawColLabels( wxDC
& dc
)
5605 if ( !m_numRows
|| !m_numCols
) return;
5608 size_t numLabels
= m_colLabelsExposed
.GetCount();
5610 for ( i
= 0; i
< numLabels
; i
++ )
5612 DrawColLabel( dc
, m_colLabelsExposed
[i
] );
5617 void wxGrid::DrawColLabel( wxDC
& dc
, int col
)
5619 if ( GetColWidth(col
) <= 0 )
5622 int colLeft
= GetColLeft(col
),
5623 colRight
= GetColRight(col
) - 1;
5625 dc
.SetPen( *wxBLACK_PEN
);
5626 dc
.DrawLine( colRight
, 0,
5627 colRight
, m_colLabelHeight
-1 );
5629 dc
.DrawLine( colLeft
, m_colLabelHeight
-1,
5630 colRight
, m_colLabelHeight
-1 );
5632 dc
.SetPen( *wxWHITE_PEN
);
5633 dc
.DrawLine( colLeft
, 0, colLeft
, m_colLabelHeight
-1 );
5634 dc
.DrawLine( colLeft
, 0, colRight
, 0 );
5636 dc
.SetBackgroundMode( wxTRANSPARENT
);
5637 dc
.SetTextForeground( GetLabelTextColour() );
5638 dc
.SetFont( GetLabelFont() );
5640 dc
.SetBackgroundMode( wxTRANSPARENT
);
5641 dc
.SetTextForeground( GetLabelTextColour() );
5642 dc
.SetFont( GetLabelFont() );
5645 GetColLabelAlignment( &hAlign
, &vAlign
);
5648 rect
.SetX( colLeft
+ 2 );
5650 rect
.SetWidth( GetColWidth(col
) - 4 );
5651 rect
.SetHeight( m_colLabelHeight
- 4 );
5652 DrawTextRectangle( dc
, GetColLabelValue( col
), rect
, hAlign
, vAlign
);
5656 void wxGrid::DrawTextRectangle( wxDC
& dc
,
5657 const wxString
& value
,
5662 long textWidth
, textHeight
;
5663 long lineWidth
, lineHeight
;
5664 wxArrayString lines
;
5666 dc
.SetClippingRegion( rect
);
5667 StringToLines( value
, lines
);
5668 if ( lines
.GetCount() )
5670 GetTextBoxSize( dc
, lines
, &textWidth
, &textHeight
);
5671 dc
.GetTextExtent( lines
[0], &lineWidth
, &lineHeight
);
5674 switch ( horizAlign
)
5677 x
= rect
.x
+ (rect
.width
- textWidth
- 1);
5681 x
= rect
.x
+ ((rect
.width
- textWidth
)/2);
5690 switch ( vertAlign
)
5693 y
= rect
.y
+ (rect
.height
- textHeight
- 1);
5697 y
= rect
.y
+ ((rect
.height
- textHeight
)/2);
5706 for ( size_t i
= 0; i
< lines
.GetCount(); i
++ )
5708 dc
.DrawText( lines
[i
], (long)x
, (long)y
);
5713 dc
.DestroyClippingRegion();
5717 // Split multi line text up into an array of strings. Any existing
5718 // contents of the string array are preserved.
5720 void wxGrid::StringToLines( const wxString
& value
, wxArrayString
& lines
)
5724 wxString eol
= wxTextFile::GetEOL( wxTextFileType_Unix
);
5725 wxString tVal
= wxTextFile::Translate( value
, wxTextFileType_Unix
);
5727 while ( startPos
< (int)tVal
.Length() )
5729 pos
= tVal
.Mid(startPos
).Find( eol
);
5734 else if ( pos
== 0 )
5736 lines
.Add( wxEmptyString
);
5740 lines
.Add( value
.Mid(startPos
, pos
) );
5744 if ( startPos
< (int)value
.Length() )
5746 lines
.Add( value
.Mid( startPos
) );
5751 void wxGrid::GetTextBoxSize( wxDC
& dc
,
5752 wxArrayString
& lines
,
5753 long *width
, long *height
)
5760 for ( i
= 0; i
< lines
.GetCount(); i
++ )
5762 dc
.GetTextExtent( lines
[i
], &lineW
, &lineH
);
5763 w
= wxMax( w
, lineW
);
5773 // ------ Edit control functions
5777 void wxGrid::EnableEditing( bool edit
)
5779 // TODO: improve this ?
5781 if ( edit
!= m_editable
)
5785 // FIXME IMHO this won't disable the edit control if edit == FALSE
5786 // because of the check in the beginning of
5787 // EnableCellEditControl() just below (VZ)
5788 EnableCellEditControl(m_editable
);
5793 void wxGrid::EnableCellEditControl( bool enable
)
5798 if ( m_currentCellCoords
== wxGridNoCellCoords
)
5799 SetCurrentCell( 0, 0 );
5801 if ( enable
!= m_cellEditCtrlEnabled
)
5803 // TODO allow the app to Veto() this event?
5804 SendEvent(enable
? wxEVT_GRID_EDITOR_SHOWN
: wxEVT_GRID_EDITOR_HIDDEN
);
5808 // this should be checked by the caller!
5809 wxASSERT_MSG( CanEnableCellControl(),
5810 _T("can't enable editing for this cell!") );
5812 // do it before ShowCellEditControl()
5813 m_cellEditCtrlEnabled
= enable
;
5815 ShowCellEditControl();
5819 HideCellEditControl();
5820 SaveEditControlValue();
5822 // do it after HideCellEditControl()
5823 m_cellEditCtrlEnabled
= enable
;
5828 bool wxGrid::IsCurrentCellReadOnly() const
5831 wxGridCellAttr
* attr
= ((wxGrid
*)this)->GetCellAttr(m_currentCellCoords
);
5832 bool readonly
= attr
->IsReadOnly();
5838 bool wxGrid::CanEnableCellControl() const
5840 return m_editable
&& !IsCurrentCellReadOnly();
5843 bool wxGrid::IsCellEditControlEnabled() const
5845 // the cell edit control might be disable for all cells or just for the
5846 // current one if it's read only
5847 return m_cellEditCtrlEnabled
? !IsCurrentCellReadOnly() : FALSE
;
5850 void wxGrid::ShowCellEditControl()
5852 if ( IsCellEditControlEnabled() )
5854 if ( !IsVisible( m_currentCellCoords
) )
5860 wxRect rect
= CellToRect( m_currentCellCoords
);
5861 int row
= m_currentCellCoords
.GetRow();
5862 int col
= m_currentCellCoords
.GetCol();
5864 // convert to scrolled coords
5866 CalcScrolledPosition( rect
.x
, rect
.y
, &rect
.x
, &rect
.y
);
5868 // done in PaintBackground()
5870 // erase the highlight and the cell contents because the editor
5871 // might not cover the entire cell
5872 wxClientDC
dc( m_gridWin
);
5874 dc
.SetBrush(*wxLIGHT_GREY_BRUSH
); //wxBrush(attr->GetBackgroundColour(), wxSOLID));
5875 dc
.SetPen(*wxTRANSPARENT_PEN
);
5876 dc
.DrawRectangle(rect
);
5879 // cell is shifted by one pixel
5883 wxGridCellAttr
* attr
= GetCellAttr(row
, col
);
5884 wxGridCellEditor
* editor
= attr
->GetEditor(this, row
, col
);
5885 if ( !editor
->IsCreated() )
5887 editor
->Create(m_gridWin
, -1,
5888 new wxGridCellEditorEvtHandler(this, editor
));
5891 editor
->Show( TRUE
, attr
);
5893 editor
->SetSize( rect
);
5895 editor
->BeginEdit(row
, col
, this);
5904 void wxGrid::HideCellEditControl()
5906 if ( IsCellEditControlEnabled() )
5908 int row
= m_currentCellCoords
.GetRow();
5909 int col
= m_currentCellCoords
.GetCol();
5911 wxGridCellAttr
* attr
= GetCellAttr(row
, col
);
5912 wxGridCellEditor
*editor
= attr
->GetEditor(this, row
, col
);
5913 editor
->Show( FALSE
);
5916 m_gridWin
->SetFocus();
5921 void wxGrid::SaveEditControlValue()
5923 if ( IsCellEditControlEnabled() )
5925 int row
= m_currentCellCoords
.GetRow();
5926 int col
= m_currentCellCoords
.GetCol();
5928 wxGridCellAttr
* attr
= GetCellAttr(row
, col
);
5929 wxGridCellEditor
* editor
= attr
->GetEditor(this, row
, col
);
5930 bool changed
= editor
->EndEdit(row
, col
, this);
5937 SendEvent( wxEVT_GRID_CELL_CHANGE
,
5938 m_currentCellCoords
.GetRow(),
5939 m_currentCellCoords
.GetCol() );
5946 // ------ Grid location functions
5947 // Note that all of these functions work with the logical coordinates of
5948 // grid cells and labels so you will need to convert from device
5949 // coordinates for mouse events etc.
5952 void wxGrid::XYToCell( int x
, int y
, wxGridCellCoords
& coords
)
5954 int row
= YToRow(y
);
5955 int col
= XToCol(x
);
5957 if ( row
== -1 || col
== -1 )
5959 coords
= wxGridNoCellCoords
;
5963 coords
.Set( row
, col
);
5968 int wxGrid::YToRow( int y
)
5972 for ( i
= 0; i
< m_numRows
; i
++ )
5974 if ( y
< GetRowBottom(i
) )
5982 int wxGrid::XToCol( int x
)
5986 for ( i
= 0; i
< m_numCols
; i
++ )
5988 if ( x
< GetColRight(i
) )
5996 // return the row number that that the y coord is near the edge of, or
5997 // -1 if not near an edge
5999 int wxGrid::YToEdgeOfRow( int y
)
6003 for ( i
= 0; i
< m_numRows
; i
++ )
6005 if ( GetRowHeight(i
) > WXGRID_LABEL_EDGE_ZONE
)
6007 d
= abs( y
- GetRowBottom(i
) );
6008 if ( d
< WXGRID_LABEL_EDGE_ZONE
)
6017 // return the col number that that the x coord is near the edge of, or
6018 // -1 if not near an edge
6020 int wxGrid::XToEdgeOfCol( int x
)
6024 for ( i
= 0; i
< m_numCols
; i
++ )
6026 if ( GetColWidth(i
) > WXGRID_LABEL_EDGE_ZONE
)
6028 d
= abs( x
- GetColRight(i
) );
6029 if ( d
< WXGRID_LABEL_EDGE_ZONE
)
6038 wxRect
wxGrid::CellToRect( int row
, int col
)
6040 wxRect
rect( -1, -1, -1, -1 );
6042 if ( row
>= 0 && row
< m_numRows
&&
6043 col
>= 0 && col
< m_numCols
)
6045 rect
.x
= GetColLeft(col
);
6046 rect
.y
= GetRowTop(row
);
6047 rect
.width
= GetColWidth(col
);
6048 rect
.height
= GetRowHeight(row
);
6055 bool wxGrid::IsVisible( int row
, int col
, bool wholeCellVisible
)
6057 // get the cell rectangle in logical coords
6059 wxRect
r( CellToRect( row
, col
) );
6061 // convert to device coords
6063 int left
, top
, right
, bottom
;
6064 CalcScrolledPosition( r
.GetLeft(), r
.GetTop(), &left
, &top
);
6065 CalcScrolledPosition( r
.GetRight(), r
.GetBottom(), &right
, &bottom
);
6067 // check against the client area of the grid window
6070 m_gridWin
->GetClientSize( &cw
, &ch
);
6072 if ( wholeCellVisible
)
6074 // is the cell wholly visible ?
6076 return ( left
>= 0 && right
<= cw
&&
6077 top
>= 0 && bottom
<= ch
);
6081 // is the cell partly visible ?
6083 return ( ((left
>=0 && left
< cw
) || (right
> 0 && right
<= cw
)) &&
6084 ((top
>=0 && top
< ch
) || (bottom
> 0 && bottom
<= ch
)) );
6089 // make the specified cell location visible by doing a minimal amount
6092 void wxGrid::MakeCellVisible( int row
, int col
)
6095 int xpos
= -1, ypos
= -1;
6097 if ( row
>= 0 && row
< m_numRows
&&
6098 col
>= 0 && col
< m_numCols
)
6100 // get the cell rectangle in logical coords
6102 wxRect
r( CellToRect( row
, col
) );
6104 // convert to device coords
6106 int left
, top
, right
, bottom
;
6107 CalcScrolledPosition( r
.GetLeft(), r
.GetTop(), &left
, &top
);
6108 CalcScrolledPosition( r
.GetRight(), r
.GetBottom(), &right
, &bottom
);
6111 m_gridWin
->GetClientSize( &cw
, &ch
);
6117 else if ( bottom
> ch
)
6119 int h
= r
.GetHeight();
6121 for ( i
= row
-1; i
>= 0; i
-- )
6123 int rowHeight
= GetRowHeight(i
);
6124 if ( h
+ rowHeight
> ch
)
6131 // we divide it later by GRID_SCROLL_LINE, make sure that we don't
6132 // have rounding errors (this is important, because if we do, we
6133 // might not scroll at all and some cells won't be redrawn)
6134 ypos
+= GRID_SCROLL_LINE
/ 2;
6141 else if ( right
> cw
)
6143 int w
= r
.GetWidth();
6145 for ( i
= col
-1; i
>= 0; i
-- )
6147 int colWidth
= GetColWidth(i
);
6148 if ( w
+ colWidth
> cw
)
6155 // see comment for ypos above
6156 xpos
+= GRID_SCROLL_LINE
/ 2;
6159 if ( xpos
!= -1 || ypos
!= -1 )
6161 if ( xpos
!= -1 ) xpos
/= GRID_SCROLL_LINE
;
6162 if ( ypos
!= -1 ) ypos
/= GRID_SCROLL_LINE
;
6163 Scroll( xpos
, ypos
);
6171 // ------ Grid cursor movement functions
6174 bool wxGrid::MoveCursorUp( bool expandSelection
)
6176 if ( m_currentCellCoords
!= wxGridNoCellCoords
&&
6177 m_currentCellCoords
.GetRow() > 0 )
6179 if ( expandSelection
)
6181 if ( m_selectingKeyboard
== wxGridNoCellCoords
)
6182 m_selectingKeyboard
= m_currentCellCoords
;
6183 m_selectingKeyboard
.SetRow( m_selectingKeyboard
.GetRow() - 1 );
6184 MakeCellVisible( m_selectingKeyboard
.GetRow(),
6185 m_selectingKeyboard
.GetCol() );
6186 SelectBlock( m_currentCellCoords
, m_selectingKeyboard
);
6191 MakeCellVisible( m_currentCellCoords
.GetRow() - 1,
6192 m_currentCellCoords
.GetCol() );
6193 SetCurrentCell( m_currentCellCoords
.GetRow() - 1,
6194 m_currentCellCoords
.GetCol() );
6203 bool wxGrid::MoveCursorDown( bool expandSelection
)
6205 if ( m_currentCellCoords
!= wxGridNoCellCoords
&&
6206 m_currentCellCoords
.GetRow() < m_numRows
-1 )
6208 if ( expandSelection
)
6210 if ( m_selectingKeyboard
== wxGridNoCellCoords
)
6211 m_selectingKeyboard
= m_currentCellCoords
;
6212 m_selectingKeyboard
.SetRow( m_selectingKeyboard
.GetRow() + 1 );
6213 MakeCellVisible( m_selectingKeyboard
.GetRow(),
6214 m_selectingKeyboard
.GetCol() );
6215 SelectBlock( m_currentCellCoords
, m_selectingKeyboard
);
6220 MakeCellVisible( m_currentCellCoords
.GetRow() + 1,
6221 m_currentCellCoords
.GetCol() );
6222 SetCurrentCell( m_currentCellCoords
.GetRow() + 1,
6223 m_currentCellCoords
.GetCol() );
6232 bool wxGrid::MoveCursorLeft( bool expandSelection
)
6234 if ( m_currentCellCoords
!= wxGridNoCellCoords
&&
6235 m_currentCellCoords
.GetCol() > 0 )
6237 if ( expandSelection
)
6239 if ( m_selectingKeyboard
== wxGridNoCellCoords
)
6240 m_selectingKeyboard
= m_currentCellCoords
;
6241 m_selectingKeyboard
.SetCol( m_selectingKeyboard
.GetCol() - 1 );
6242 MakeCellVisible( m_selectingKeyboard
.GetRow(),
6243 m_selectingKeyboard
.GetCol() );
6244 SelectBlock( m_currentCellCoords
, m_selectingKeyboard
);
6249 MakeCellVisible( m_currentCellCoords
.GetRow(),
6250 m_currentCellCoords
.GetCol() - 1 );
6251 SetCurrentCell( m_currentCellCoords
.GetRow(),
6252 m_currentCellCoords
.GetCol() - 1 );
6261 bool wxGrid::MoveCursorRight( bool expandSelection
)
6263 if ( m_currentCellCoords
!= wxGridNoCellCoords
&&
6264 m_currentCellCoords
.GetCol() < m_numCols
- 1 )
6266 if ( expandSelection
)
6268 if ( m_selectingKeyboard
== wxGridNoCellCoords
)
6269 m_selectingKeyboard
= m_currentCellCoords
;
6270 m_selectingKeyboard
.SetCol( m_selectingKeyboard
.GetCol() + 1 );
6271 MakeCellVisible( m_selectingKeyboard
.GetRow(),
6272 m_selectingKeyboard
.GetCol() );
6273 SelectBlock( m_currentCellCoords
, m_selectingKeyboard
);
6278 MakeCellVisible( m_currentCellCoords
.GetRow(),
6279 m_currentCellCoords
.GetCol() + 1 );
6280 SetCurrentCell( m_currentCellCoords
.GetRow(),
6281 m_currentCellCoords
.GetCol() + 1 );
6290 bool wxGrid::MovePageUp()
6292 if ( m_currentCellCoords
== wxGridNoCellCoords
) return FALSE
;
6294 int row
= m_currentCellCoords
.GetRow();
6298 m_gridWin
->GetClientSize( &cw
, &ch
);
6300 int y
= GetRowTop(row
);
6301 int newRow
= YToRow( y
- ch
+ 1 );
6306 else if ( newRow
== row
)
6311 MakeCellVisible( newRow
, m_currentCellCoords
.GetCol() );
6312 SetCurrentCell( newRow
, m_currentCellCoords
.GetCol() );
6320 bool wxGrid::MovePageDown()
6322 if ( m_currentCellCoords
== wxGridNoCellCoords
) return FALSE
;
6324 int row
= m_currentCellCoords
.GetRow();
6325 if ( row
< m_numRows
)
6328 m_gridWin
->GetClientSize( &cw
, &ch
);
6330 int y
= GetRowTop(row
);
6331 int newRow
= YToRow( y
+ ch
);
6334 newRow
= m_numRows
- 1;
6336 else if ( newRow
== row
)
6341 MakeCellVisible( newRow
, m_currentCellCoords
.GetCol() );
6342 SetCurrentCell( newRow
, m_currentCellCoords
.GetCol() );
6350 bool wxGrid::MoveCursorUpBlock( bool expandSelection
)
6353 m_currentCellCoords
!= wxGridNoCellCoords
&&
6354 m_currentCellCoords
.GetRow() > 0 )
6356 int row
= m_currentCellCoords
.GetRow();
6357 int col
= m_currentCellCoords
.GetCol();
6359 if ( m_table
->IsEmptyCell(row
, col
) )
6361 // starting in an empty cell: find the next block of
6367 if ( !(m_table
->IsEmptyCell(row
, col
)) ) break;
6370 else if ( m_table
->IsEmptyCell(row
-1, col
) )
6372 // starting at the top of a block: find the next block
6378 if ( !(m_table
->IsEmptyCell(row
, col
)) ) break;
6383 // starting within a block: find the top of the block
6388 if ( m_table
->IsEmptyCell(row
, col
) )
6396 MakeCellVisible( row
, col
);
6397 if ( expandSelection
)
6399 m_selectingKeyboard
= wxGridCellCoords( row
, col
);
6400 SelectBlock( m_currentCellCoords
, m_selectingKeyboard
);
6405 SetCurrentCell( row
, col
);
6413 bool wxGrid::MoveCursorDownBlock( bool expandSelection
)
6416 m_currentCellCoords
!= wxGridNoCellCoords
&&
6417 m_currentCellCoords
.GetRow() < m_numRows
-1 )
6419 int row
= m_currentCellCoords
.GetRow();
6420 int col
= m_currentCellCoords
.GetCol();
6422 if ( m_table
->IsEmptyCell(row
, col
) )
6424 // starting in an empty cell: find the next block of
6427 while ( row
< m_numRows
-1 )
6430 if ( !(m_table
->IsEmptyCell(row
, col
)) ) break;
6433 else if ( m_table
->IsEmptyCell(row
+1, col
) )
6435 // starting at the bottom of a block: find the next block
6438 while ( row
< m_numRows
-1 )
6441 if ( !(m_table
->IsEmptyCell(row
, col
)) ) break;
6446 // starting within a block: find the bottom of the block
6448 while ( row
< m_numRows
-1 )
6451 if ( m_table
->IsEmptyCell(row
, col
) )
6459 MakeCellVisible( row
, col
);
6460 if ( expandSelection
)
6462 m_selectingKeyboard
= wxGridCellCoords( row
, col
);
6463 SelectBlock( m_currentCellCoords
, m_selectingKeyboard
);
6468 SetCurrentCell( row
, col
);
6477 bool wxGrid::MoveCursorLeftBlock( bool expandSelection
)
6480 m_currentCellCoords
!= wxGridNoCellCoords
&&
6481 m_currentCellCoords
.GetCol() > 0 )
6483 int row
= m_currentCellCoords
.GetRow();
6484 int col
= m_currentCellCoords
.GetCol();
6486 if ( m_table
->IsEmptyCell(row
, col
) )
6488 // starting in an empty cell: find the next block of
6494 if ( !(m_table
->IsEmptyCell(row
, col
)) ) break;
6497 else if ( m_table
->IsEmptyCell(row
, col
-1) )
6499 // starting at the left of a block: find the next block
6505 if ( !(m_table
->IsEmptyCell(row
, col
)) ) break;
6510 // starting within a block: find the left of the block
6515 if ( m_table
->IsEmptyCell(row
, col
) )
6523 MakeCellVisible( row
, col
);
6524 if ( expandSelection
)
6526 m_selectingKeyboard
= wxGridCellCoords( row
, col
);
6527 SelectBlock( m_currentCellCoords
, m_selectingKeyboard
);
6532 SetCurrentCell( row
, col
);
6541 bool wxGrid::MoveCursorRightBlock( bool expandSelection
)
6544 m_currentCellCoords
!= wxGridNoCellCoords
&&
6545 m_currentCellCoords
.GetCol() < m_numCols
-1 )
6547 int row
= m_currentCellCoords
.GetRow();
6548 int col
= m_currentCellCoords
.GetCol();
6550 if ( m_table
->IsEmptyCell(row
, col
) )
6552 // starting in an empty cell: find the next block of
6555 while ( col
< m_numCols
-1 )
6558 if ( !(m_table
->IsEmptyCell(row
, col
)) ) break;
6561 else if ( m_table
->IsEmptyCell(row
, col
+1) )
6563 // starting at the right of a block: find the next block
6566 while ( col
< m_numCols
-1 )
6569 if ( !(m_table
->IsEmptyCell(row
, col
)) ) break;
6574 // starting within a block: find the right of the block
6576 while ( col
< m_numCols
-1 )
6579 if ( m_table
->IsEmptyCell(row
, col
) )
6587 MakeCellVisible( row
, col
);
6588 if ( expandSelection
)
6590 m_selectingKeyboard
= wxGridCellCoords( row
, col
);
6591 SelectBlock( m_currentCellCoords
, m_selectingKeyboard
);
6596 SetCurrentCell( row
, col
);
6608 // ------ Label values and formatting
6611 void wxGrid::GetRowLabelAlignment( int *horiz
, int *vert
)
6613 *horiz
= m_rowLabelHorizAlign
;
6614 *vert
= m_rowLabelVertAlign
;
6617 void wxGrid::GetColLabelAlignment( int *horiz
, int *vert
)
6619 *horiz
= m_colLabelHorizAlign
;
6620 *vert
= m_colLabelVertAlign
;
6623 wxString
wxGrid::GetRowLabelValue( int row
)
6627 return m_table
->GetRowLabelValue( row
);
6637 wxString
wxGrid::GetColLabelValue( int col
)
6641 return m_table
->GetColLabelValue( col
);
6652 void wxGrid::SetRowLabelSize( int width
)
6654 width
= wxMax( width
, 0 );
6655 if ( width
!= m_rowLabelWidth
)
6659 m_rowLabelWin
->Show( FALSE
);
6660 m_cornerLabelWin
->Show( FALSE
);
6662 else if ( m_rowLabelWidth
== 0 )
6664 m_rowLabelWin
->Show( TRUE
);
6665 if ( m_colLabelHeight
> 0 ) m_cornerLabelWin
->Show( TRUE
);
6668 m_rowLabelWidth
= width
;
6675 void wxGrid::SetColLabelSize( int height
)
6677 height
= wxMax( height
, 0 );
6678 if ( height
!= m_colLabelHeight
)
6682 m_colLabelWin
->Show( FALSE
);
6683 m_cornerLabelWin
->Show( FALSE
);
6685 else if ( m_colLabelHeight
== 0 )
6687 m_colLabelWin
->Show( TRUE
);
6688 if ( m_rowLabelWidth
> 0 ) m_cornerLabelWin
->Show( TRUE
);
6691 m_colLabelHeight
= height
;
6698 void wxGrid::SetLabelBackgroundColour( const wxColour
& colour
)
6700 if ( m_labelBackgroundColour
!= colour
)
6702 m_labelBackgroundColour
= colour
;
6703 m_rowLabelWin
->SetBackgroundColour( colour
);
6704 m_colLabelWin
->SetBackgroundColour( colour
);
6705 m_cornerLabelWin
->SetBackgroundColour( colour
);
6707 if ( !GetBatchCount() )
6709 m_rowLabelWin
->Refresh();
6710 m_colLabelWin
->Refresh();
6711 m_cornerLabelWin
->Refresh();
6716 void wxGrid::SetLabelTextColour( const wxColour
& colour
)
6718 if ( m_labelTextColour
!= colour
)
6720 m_labelTextColour
= colour
;
6721 if ( !GetBatchCount() )
6723 m_rowLabelWin
->Refresh();
6724 m_colLabelWin
->Refresh();
6729 void wxGrid::SetLabelFont( const wxFont
& font
)
6732 if ( !GetBatchCount() )
6734 m_rowLabelWin
->Refresh();
6735 m_colLabelWin
->Refresh();
6739 void wxGrid::SetRowLabelAlignment( int horiz
, int vert
)
6741 if ( horiz
== wxLEFT
|| horiz
== wxCENTRE
|| horiz
== wxRIGHT
)
6743 m_rowLabelHorizAlign
= horiz
;
6746 if ( vert
== wxTOP
|| vert
== wxCENTRE
|| vert
== wxBOTTOM
)
6748 m_rowLabelVertAlign
= vert
;
6751 if ( !GetBatchCount() )
6753 m_rowLabelWin
->Refresh();
6757 void wxGrid::SetColLabelAlignment( int horiz
, int vert
)
6759 if ( horiz
== wxLEFT
|| horiz
== wxCENTRE
|| horiz
== wxRIGHT
)
6761 m_colLabelHorizAlign
= horiz
;
6764 if ( vert
== wxTOP
|| vert
== wxCENTRE
|| vert
== wxBOTTOM
)
6766 m_colLabelVertAlign
= vert
;
6769 if ( !GetBatchCount() )
6771 m_colLabelWin
->Refresh();
6775 void wxGrid::SetRowLabelValue( int row
, const wxString
& s
)
6779 m_table
->SetRowLabelValue( row
, s
);
6780 if ( !GetBatchCount() )
6782 wxRect rect
= CellToRect( row
, 0);
6783 if ( rect
.height
> 0 )
6785 CalcScrolledPosition(0, rect
.y
, &rect
.x
, &rect
.y
);
6787 rect
.width
= m_rowLabelWidth
;
6788 m_rowLabelWin
->Refresh( TRUE
, &rect
);
6794 void wxGrid::SetColLabelValue( int col
, const wxString
& s
)
6798 m_table
->SetColLabelValue( col
, s
);
6799 if ( !GetBatchCount() )
6801 wxRect rect
= CellToRect( 0, col
);
6802 if ( rect
.width
> 0 )
6804 CalcScrolledPosition(rect
.x
, 0, &rect
.x
, &rect
.y
);
6806 rect
.height
= m_colLabelHeight
;
6807 m_colLabelWin
->Refresh( TRUE
, &rect
);
6813 void wxGrid::SetGridLineColour( const wxColour
& colour
)
6815 if ( m_gridLineColour
!= colour
)
6817 m_gridLineColour
= colour
;
6819 wxClientDC
dc( m_gridWin
);
6821 DrawAllGridLines( dc
, wxRegion() );
6825 void wxGrid::EnableGridLines( bool enable
)
6827 if ( enable
!= m_gridLinesEnabled
)
6829 m_gridLinesEnabled
= enable
;
6831 if ( !GetBatchCount() )
6835 wxClientDC
dc( m_gridWin
);
6837 DrawAllGridLines( dc
, wxRegion() );
6841 m_gridWin
->Refresh();
6848 int wxGrid::GetDefaultRowSize()
6850 return m_defaultRowHeight
;
6853 int wxGrid::GetRowSize( int row
)
6855 wxCHECK_MSG( row
>= 0 && row
< m_numRows
, 0, _T("invalid row index") );
6857 return GetRowHeight(row
);
6860 int wxGrid::GetDefaultColSize()
6862 return m_defaultColWidth
;
6865 int wxGrid::GetColSize( int col
)
6867 wxCHECK_MSG( col
>= 0 && col
< m_numCols
, 0, _T("invalid column index") );
6869 return GetColWidth(col
);
6872 // ============================================================================
6873 // access to the grid attributes: each of them has a default value in the grid
6874 // itself and may be overidden on a per-cell basis
6875 // ============================================================================
6877 // ----------------------------------------------------------------------------
6878 // setting default attributes
6879 // ----------------------------------------------------------------------------
6881 void wxGrid::SetDefaultCellBackgroundColour( const wxColour
& col
)
6883 m_defaultCellAttr
->SetBackgroundColour(col
);
6885 m_gridWin
->SetBackgroundColour(col
);
6889 void wxGrid::SetDefaultCellTextColour( const wxColour
& col
)
6891 m_defaultCellAttr
->SetTextColour(col
);
6894 void wxGrid::SetDefaultCellAlignment( int horiz
, int vert
)
6896 m_defaultCellAttr
->SetAlignment(horiz
, vert
);
6899 void wxGrid::SetDefaultCellFont( const wxFont
& font
)
6901 m_defaultCellAttr
->SetFont(font
);
6904 void wxGrid::SetDefaultRenderer(wxGridCellRenderer
*renderer
)
6906 m_defaultCellAttr
->SetRenderer(renderer
);
6909 void wxGrid::SetDefaultEditor(wxGridCellEditor
*editor
)
6911 m_defaultCellAttr
->SetEditor(editor
);
6914 // ----------------------------------------------------------------------------
6915 // access to the default attrbiutes
6916 // ----------------------------------------------------------------------------
6918 wxColour
wxGrid::GetDefaultCellBackgroundColour()
6920 return m_defaultCellAttr
->GetBackgroundColour();
6923 wxColour
wxGrid::GetDefaultCellTextColour()
6925 return m_defaultCellAttr
->GetTextColour();
6928 wxFont
wxGrid::GetDefaultCellFont()
6930 return m_defaultCellAttr
->GetFont();
6933 void wxGrid::GetDefaultCellAlignment( int *horiz
, int *vert
)
6935 m_defaultCellAttr
->GetAlignment(horiz
, vert
);
6938 wxGridCellRenderer
*wxGrid::GetDefaultRenderer() const
6940 return m_defaultCellAttr
->GetRenderer(NULL
, 0, 0);
6943 wxGridCellEditor
*wxGrid::GetDefaultEditor() const
6945 return m_defaultCellAttr
->GetEditor(NULL
,0,0);
6948 // ----------------------------------------------------------------------------
6949 // access to cell attributes
6950 // ----------------------------------------------------------------------------
6952 wxColour
wxGrid::GetCellBackgroundColour(int row
, int col
)
6954 wxGridCellAttr
*attr
= GetCellAttr(row
, col
);
6955 wxColour colour
= attr
->GetBackgroundColour();
6960 wxColour
wxGrid::GetCellTextColour( int row
, int col
)
6962 wxGridCellAttr
*attr
= GetCellAttr(row
, col
);
6963 wxColour colour
= attr
->GetTextColour();
6968 wxFont
wxGrid::GetCellFont( int row
, int col
)
6970 wxGridCellAttr
*attr
= GetCellAttr(row
, col
);
6971 wxFont font
= attr
->GetFont();
6976 void wxGrid::GetCellAlignment( int row
, int col
, int *horiz
, int *vert
)
6978 wxGridCellAttr
*attr
= GetCellAttr(row
, col
);
6979 attr
->GetAlignment(horiz
, vert
);
6983 wxGridCellRenderer
* wxGrid::GetCellRenderer(int row
, int col
)
6985 wxGridCellAttr
* attr
= GetCellAttr(row
, col
);
6986 wxGridCellRenderer
* renderer
= attr
->GetRenderer(this, row
, col
);
6992 wxGridCellEditor
* wxGrid::GetCellEditor(int row
, int col
)
6994 wxGridCellAttr
* attr
= GetCellAttr(row
, col
);
6995 wxGridCellEditor
* editor
= attr
->GetEditor(this, row
, col
);
7001 bool wxGrid::IsReadOnly(int row
, int col
) const
7003 wxGridCellAttr
* attr
= GetCellAttr(row
, col
);
7004 bool isReadOnly
= attr
->IsReadOnly();
7009 // ----------------------------------------------------------------------------
7010 // attribute support: cache, automatic provider creation, ...
7011 // ----------------------------------------------------------------------------
7013 bool wxGrid::CanHaveAttributes()
7020 return m_table
->CanHaveAttributes();
7023 void wxGrid::ClearAttrCache()
7025 if ( m_attrCache
.row
!= -1 )
7027 wxSafeDecRef(m_attrCache
.attr
);
7028 m_attrCache
.row
= -1;
7032 void wxGrid::CacheAttr(int row
, int col
, wxGridCellAttr
*attr
) const
7034 wxGrid
*self
= (wxGrid
*)this; // const_cast
7036 self
->ClearAttrCache();
7037 self
->m_attrCache
.row
= row
;
7038 self
->m_attrCache
.col
= col
;
7039 self
->m_attrCache
.attr
= attr
;
7043 bool wxGrid::LookupAttr(int row
, int col
, wxGridCellAttr
**attr
) const
7045 if ( row
== m_attrCache
.row
&& col
== m_attrCache
.col
)
7047 *attr
= m_attrCache
.attr
;
7048 wxSafeIncRef(m_attrCache
.attr
);
7050 #ifdef DEBUG_ATTR_CACHE
7051 gs_nAttrCacheHits
++;
7058 #ifdef DEBUG_ATTR_CACHE
7059 gs_nAttrCacheMisses
++;
7065 wxGridCellAttr
*wxGrid::GetCellAttr(int row
, int col
) const
7067 wxGridCellAttr
*attr
;
7068 if ( !LookupAttr(row
, col
, &attr
) )
7070 attr
= m_table
? m_table
->GetAttr(row
, col
) : (wxGridCellAttr
*)NULL
;
7071 CacheAttr(row
, col
, attr
);
7075 attr
->SetDefAttr(m_defaultCellAttr
);
7079 attr
= m_defaultCellAttr
;
7086 wxGridCellAttr
*wxGrid::GetOrCreateCellAttr(int row
, int col
) const
7088 wxGridCellAttr
*attr
;
7089 if ( !LookupAttr(row
, col
, &attr
) || !attr
)
7091 wxASSERT_MSG( m_table
,
7092 _T("we may only be called if CanHaveAttributes() "
7093 "returned TRUE and then m_table should be !NULL") );
7095 attr
= m_table
->GetAttr(row
, col
);
7098 attr
= new wxGridCellAttr
;
7100 // artificially inc the ref count to match DecRef() in caller
7103 m_table
->SetAttr(attr
, row
, col
);
7106 CacheAttr(row
, col
, attr
);
7108 attr
->SetDefAttr(m_defaultCellAttr
);
7112 // ----------------------------------------------------------------------------
7113 // setting column attributes (wrappers around SetColAttr)
7114 // ----------------------------------------------------------------------------
7116 void wxGrid::SetColFormatBool(int col
)
7118 SetColFormatCustom(col
, wxGRID_VALUE_BOOL
);
7121 void wxGrid::SetColFormatNumber(int col
)
7123 SetColFormatCustom(col
, wxGRID_VALUE_NUMBER
);
7126 void wxGrid::SetColFormatFloat(int col
, int width
, int precision
)
7128 wxString typeName
= wxGRID_VALUE_FLOAT
;
7129 if ( (width
!= -1) || (precision
!= -1) )
7131 typeName
<< _T(':') << width
<< _T(',') << precision
;
7134 SetColFormatCustom(col
, typeName
);
7137 void wxGrid::SetColFormatCustom(int col
, const wxString
& typeName
)
7139 wxGridCellAttr
*attr
= new wxGridCellAttr
;
7140 wxGridCellRenderer
*renderer
= GetDefaultRendererForType(typeName
);
7141 attr
->SetRenderer(renderer
);
7143 SetColAttr(col
, attr
);
7146 // ----------------------------------------------------------------------------
7147 // setting cell attributes: this is forwarded to the table
7148 // ----------------------------------------------------------------------------
7150 void wxGrid::SetRowAttr(int row
, wxGridCellAttr
*attr
)
7152 if ( CanHaveAttributes() )
7154 m_table
->SetRowAttr(attr
, row
);
7162 void wxGrid::SetColAttr(int col
, wxGridCellAttr
*attr
)
7164 if ( CanHaveAttributes() )
7166 m_table
->SetColAttr(attr
, col
);
7174 void wxGrid::SetCellBackgroundColour( int row
, int col
, const wxColour
& colour
)
7176 if ( CanHaveAttributes() )
7178 wxGridCellAttr
*attr
= GetOrCreateCellAttr(row
, col
);
7179 attr
->SetBackgroundColour(colour
);
7184 void wxGrid::SetCellTextColour( int row
, int col
, const wxColour
& colour
)
7186 if ( CanHaveAttributes() )
7188 wxGridCellAttr
*attr
= GetOrCreateCellAttr(row
, col
);
7189 attr
->SetTextColour(colour
);
7194 void wxGrid::SetCellFont( int row
, int col
, const wxFont
& font
)
7196 if ( CanHaveAttributes() )
7198 wxGridCellAttr
*attr
= GetOrCreateCellAttr(row
, col
);
7199 attr
->SetFont(font
);
7204 void wxGrid::SetCellAlignment( int row
, int col
, int horiz
, int vert
)
7206 if ( CanHaveAttributes() )
7208 wxGridCellAttr
*attr
= GetOrCreateCellAttr(row
, col
);
7209 attr
->SetAlignment(horiz
, vert
);
7214 void wxGrid::SetCellRenderer(int row
, int col
, wxGridCellRenderer
*renderer
)
7216 if ( CanHaveAttributes() )
7218 wxGridCellAttr
*attr
= GetOrCreateCellAttr(row
, col
);
7219 attr
->SetRenderer(renderer
);
7224 void wxGrid::SetCellEditor(int row
, int col
, wxGridCellEditor
* editor
)
7226 if ( CanHaveAttributes() )
7228 wxGridCellAttr
*attr
= GetOrCreateCellAttr(row
, col
);
7229 attr
->SetEditor(editor
);
7234 void wxGrid::SetReadOnly(int row
, int col
, bool isReadOnly
)
7236 if ( CanHaveAttributes() )
7238 wxGridCellAttr
*attr
= GetOrCreateCellAttr(row
, col
);
7239 attr
->SetReadOnly(isReadOnly
);
7244 // ----------------------------------------------------------------------------
7245 // Data type registration
7246 // ----------------------------------------------------------------------------
7248 void wxGrid::RegisterDataType(const wxString
& typeName
,
7249 wxGridCellRenderer
* renderer
,
7250 wxGridCellEditor
* editor
)
7252 m_typeRegistry
->RegisterDataType(typeName
, renderer
, editor
);
7256 wxGridCellEditor
* wxGrid::GetDefaultEditorForCell(int row
, int col
) const
7258 wxString typeName
= m_table
->GetTypeName(row
, col
);
7259 return GetDefaultEditorForType(typeName
);
7262 wxGridCellRenderer
* wxGrid::GetDefaultRendererForCell(int row
, int col
) const
7264 wxString typeName
= m_table
->GetTypeName(row
, col
);
7265 return GetDefaultRendererForType(typeName
);
7269 wxGrid::GetDefaultEditorForType(const wxString
& typeName
) const
7271 int index
= m_typeRegistry
->FindOrCloneDataType(typeName
);
7272 if ( index
== wxNOT_FOUND
)
7274 wxFAIL_MSG(wxT("Unknown data type name"));
7279 return m_typeRegistry
->GetEditor(index
);
7283 wxGrid::GetDefaultRendererForType(const wxString
& typeName
) const
7285 int index
= m_typeRegistry
->FindOrCloneDataType(typeName
);
7286 if ( index
== wxNOT_FOUND
)
7288 wxFAIL_MSG(wxT("Unknown data type name"));
7293 return m_typeRegistry
->GetRenderer(index
);
7297 // ----------------------------------------------------------------------------
7299 // ----------------------------------------------------------------------------
7301 void wxGrid::EnableDragRowSize( bool enable
)
7303 m_canDragRowSize
= enable
;
7307 void wxGrid::EnableDragColSize( bool enable
)
7309 m_canDragColSize
= enable
;
7312 void wxGrid::EnableDragGridSize( bool enable
)
7314 m_canDragGridSize
= enable
;
7318 void wxGrid::SetDefaultRowSize( int height
, bool resizeExistingRows
)
7320 m_defaultRowHeight
= wxMax( height
, WXGRID_MIN_ROW_HEIGHT
);
7322 if ( resizeExistingRows
)
7330 void wxGrid::SetRowSize( int row
, int height
)
7332 wxCHECK_RET( row
>= 0 && row
< m_numRows
, _T("invalid row index") );
7334 if ( m_rowHeights
.IsEmpty() )
7336 // need to really create the array
7340 int h
= wxMax( 0, height
);
7341 int diff
= h
- m_rowHeights
[row
];
7343 m_rowHeights
[row
] = h
;
7345 for ( i
= row
; i
< m_numRows
; i
++ )
7347 m_rowBottoms
[i
] += diff
;
7352 void wxGrid::SetDefaultColSize( int width
, bool resizeExistingCols
)
7354 m_defaultColWidth
= wxMax( width
, WXGRID_MIN_COL_WIDTH
);
7356 if ( resizeExistingCols
)
7364 void wxGrid::SetColSize( int col
, int width
)
7366 wxCHECK_RET( col
>= 0 && col
< m_numCols
, _T("invalid column index") );
7368 // should we check that it's bigger than GetColMinimalWidth(col) here?
7370 if ( m_colWidths
.IsEmpty() )
7372 // need to really create the array
7376 int w
= wxMax( 0, width
);
7377 int diff
= w
- m_colWidths
[col
];
7378 m_colWidths
[col
] = w
;
7381 for ( i
= col
; i
< m_numCols
; i
++ )
7383 m_colRights
[i
] += diff
;
7389 void wxGrid::SetColMinimalWidth( int col
, int width
)
7391 m_colMinWidths
.Put(col
, width
);
7394 void wxGrid::SetRowMinimalHeight( int row
, int width
)
7396 m_rowMinHeights
.Put(row
, width
);
7399 int wxGrid::GetColMinimalWidth(int col
) const
7401 long value
= m_colMinWidths
.Get(col
);
7402 return value
!= wxNOT_FOUND
? (int)value
: WXGRID_MIN_COL_WIDTH
;
7405 int wxGrid::GetRowMinimalHeight(int row
) const
7407 long value
= m_rowMinHeights
.Get(row
);
7408 return value
!= wxNOT_FOUND
? (int)value
: WXGRID_MIN_ROW_HEIGHT
;
7411 // ----------------------------------------------------------------------------
7413 // ----------------------------------------------------------------------------
7415 void wxGrid::AutoSizeColOrRow( int colOrRow
, bool setAsMin
, bool column
)
7417 wxClientDC
dc(m_gridWin
);
7419 // init both of them to avoid compiler warnings, even if weo nly need one
7427 wxCoord extent
, extentMax
= 0;
7428 int max
= column
? m_numRows
: m_numCols
;
7429 for ( int rowOrCol
= 0; rowOrCol
< max
; rowOrCol
++ )
7436 wxGridCellAttr
* attr
= GetCellAttr(row
, col
);
7437 wxGridCellRenderer
* renderer
= attr
->GetRenderer(this, row
, col
);
7440 wxSize size
= renderer
->GetBestSize(*this, *attr
, dc
, row
, col
);
7441 extent
= column
? size
.x
: size
.y
;
7442 if ( extent
> extentMax
)
7453 // now also compare with the column label extent
7455 dc
.SetFont( GetLabelFont() );
7458 dc
.GetTextExtent( GetColLabelValue(col
), &w
, &h
);
7460 dc
.GetTextExtent( GetRowLabelValue(col
), &w
, &h
);
7462 extent
= column
? w
: h
;
7463 if ( extent
> extentMax
)
7470 // empty column - give default extent (notice that if extentMax is less
7471 // than default extent but != 0, it's ok)
7472 extentMax
= column
? m_defaultColWidth
: m_defaultRowHeight
;
7478 // leave some space around text
7484 SetColSize(col
, extentMax
);
7486 SetRowSize(row
, extentMax
);
7491 SetColMinimalWidth(col
, extentMax
);
7493 SetRowMinimalHeight(row
, extentMax
);
7497 int wxGrid::SetOrCalcColumnSizes(bool calcOnly
, bool setAsMin
)
7499 int width
= m_rowLabelWidth
;
7501 for ( int col
= 0; col
< m_numCols
; col
++ )
7505 AutoSizeColumn(col
, setAsMin
);
7508 width
+= GetColWidth(col
);
7514 int wxGrid::SetOrCalcRowSizes(bool calcOnly
, bool setAsMin
)
7516 int height
= m_colLabelHeight
;
7518 for ( int row
= 0; row
< m_numRows
; row
++ )
7522 AutoSizeRow(row
, setAsMin
);
7525 height
+= GetRowHeight(row
);
7531 void wxGrid::AutoSize()
7534 SetSize(SetOrCalcColumnSizes(FALSE
), SetOrCalcRowSizes(FALSE
));
7537 wxSize
wxGrid::DoGetBestSize() const
7539 // don't set sizes, only calculate them
7540 wxGrid
*self
= (wxGrid
*)this; // const_cast
7542 return wxSize(self
->SetOrCalcColumnSizes(TRUE
),
7543 self
->SetOrCalcRowSizes(TRUE
));
7551 // ----------------------------------------------------------------------------
7552 // cell value accessor functions
7553 // ----------------------------------------------------------------------------
7555 void wxGrid::SetCellValue( int row
, int col
, const wxString
& s
)
7559 m_table
->SetValue( row
, col
, s
.c_str() );
7560 if ( !GetBatchCount() )
7562 wxClientDC
dc( m_gridWin
);
7564 DrawCell( dc
, wxGridCellCoords(row
, col
) );
7567 if ( m_currentCellCoords
.GetRow() == row
&&
7568 m_currentCellCoords
.GetCol() == col
&&
7569 IsCellEditControlEnabled())
7571 HideCellEditControl();
7572 ShowCellEditControl(); // will reread data from table
7579 // ------ Block, row and col selection
7582 void wxGrid::SelectRow( int row
, bool addToSelected
)
7584 if ( IsSelection() && !addToSelected
)
7585 m_selection
->ClearSelection();
7587 m_selection
->SelectRow( row
);
7591 void wxGrid::SelectCol( int col
, bool addToSelected
)
7593 if ( IsSelection() && !addToSelected
)
7594 m_selection
->ClearSelection();
7596 m_selection
->SelectCol( col
);
7600 void wxGrid::SelectBlock( int topRow
, int leftCol
, int bottomRow
, int rightCol
)
7603 wxGridCellCoords updateTopLeft
, updateBottomRight
;
7605 if ( topRow
> bottomRow
)
7612 if ( leftCol
> rightCol
)
7619 updateTopLeft
= wxGridCellCoords( topRow
, leftCol
);
7620 updateBottomRight
= wxGridCellCoords( bottomRow
, rightCol
);
7622 if ( m_selectingTopLeft
!= updateTopLeft
||
7623 m_selectingBottomRight
!= updateBottomRight
)
7625 // Compute two optimal update rectangles:
7626 // Either one rectangle is a real subset of the
7627 // other, or they are (almost) disjoint!
7629 bool need_refresh
[4];
7633 need_refresh
[3] = FALSE
;
7636 // Store intermediate values
7637 wxCoord oldLeft
= m_selectingTopLeft
.GetCol();
7638 wxCoord oldTop
= m_selectingTopLeft
.GetRow();
7639 wxCoord oldRight
= m_selectingBottomRight
.GetCol();
7640 wxCoord oldBottom
= m_selectingBottomRight
.GetRow();
7642 // Determine the outer/inner coordinates.
7643 if (oldLeft
> leftCol
)
7649 if (oldTop
> topRow
)
7655 if (oldRight
< rightCol
)
7658 oldRight
= rightCol
;
7661 if (oldBottom
< bottomRow
)
7664 oldBottom
= bottomRow
;
7668 // Now, either the stuff marked old is the outer
7669 // rectangle or we don't have a situation where one
7670 // is contained in the other.
7672 if ( oldLeft
< leftCol
)
7674 need_refresh
[0] = TRUE
;
7675 rect
[0] = BlockToDeviceRect( wxGridCellCoords ( oldTop
,
7677 wxGridCellCoords ( oldBottom
,
7681 if ( oldTop
< topRow
)
7683 need_refresh
[1] = TRUE
;
7684 rect
[1] = BlockToDeviceRect( wxGridCellCoords ( oldTop
,
7686 wxGridCellCoords ( topRow
- 1,
7690 if ( oldRight
> rightCol
)
7692 need_refresh
[2] = TRUE
;
7693 rect
[2] = BlockToDeviceRect( wxGridCellCoords ( oldTop
,
7695 wxGridCellCoords ( oldBottom
,
7699 if ( oldBottom
> bottomRow
)
7701 need_refresh
[3] = TRUE
;
7702 rect
[3] = BlockToDeviceRect( wxGridCellCoords ( bottomRow
+ 1,
7704 wxGridCellCoords ( oldBottom
,
7710 m_selectingTopLeft
= updateTopLeft
;
7711 m_selectingBottomRight
= updateBottomRight
;
7713 // various Refresh() calls
7714 for (i
= 0; i
< 4; i
++ )
7715 if ( need_refresh
[i
] && rect
[i
] != wxGridNoCellRect
)
7716 m_gridWin
->Refresh( FALSE
, &(rect
[i
]) );
7719 // never generate an event as it will be generated from
7720 // wxGridSelection::SelectBlock!
7723 void wxGrid::SelectAll()
7725 m_selection
->SelectBlock( 0, 0, m_numRows
-1, m_numCols
-1 );
7728 bool wxGrid::IsSelection()
7730 return ( m_selection
->IsSelection() ||
7731 ( m_selectingTopLeft
!= wxGridNoCellCoords
&&
7732 m_selectingBottomRight
!= wxGridNoCellCoords
) );
7735 bool wxGrid::IsInSelection( int row
, int col
)
7737 return ( m_selection
->IsInSelection( row
, col
) ||
7738 ( row
>= m_selectingTopLeft
.GetRow() &&
7739 col
>= m_selectingTopLeft
.GetCol() &&
7740 row
<= m_selectingBottomRight
.GetRow() &&
7741 col
<= m_selectingBottomRight
.GetCol() ) );
7744 void wxGrid::ClearSelection()
7746 m_selectingTopLeft
= wxGridNoCellCoords
;
7747 m_selectingBottomRight
= wxGridNoCellCoords
;
7748 m_selection
->ClearSelection();
7752 // This function returns the rectangle that encloses the given block
7753 // in device coords clipped to the client size of the grid window.
7755 wxRect
wxGrid::BlockToDeviceRect( const wxGridCellCoords
&topLeft
,
7756 const wxGridCellCoords
&bottomRight
)
7758 wxRect
rect( wxGridNoCellRect
);
7761 cellRect
= CellToRect( topLeft
);
7762 if ( cellRect
!= wxGridNoCellRect
)
7768 rect
= wxRect( 0, 0, 0, 0 );
7771 cellRect
= CellToRect( bottomRight
);
7772 if ( cellRect
!= wxGridNoCellRect
)
7778 return wxGridNoCellRect
;
7781 // convert to scrolled coords
7783 int left
, top
, right
, bottom
;
7784 CalcScrolledPosition( rect
.GetLeft(), rect
.GetTop(), &left
, &top
);
7785 CalcScrolledPosition( rect
.GetRight(), rect
.GetBottom(), &right
, &bottom
);
7788 m_gridWin
->GetClientSize( &cw
, &ch
);
7790 rect
.SetLeft( wxMax(0, left
) );
7791 rect
.SetTop( wxMax(0, top
) );
7792 rect
.SetRight( wxMin(cw
, right
) );
7793 rect
.SetBottom( wxMin(ch
, bottom
) );
7801 // ------ Grid event classes
7804 IMPLEMENT_DYNAMIC_CLASS( wxGridEvent
, wxEvent
)
7806 wxGridEvent::wxGridEvent( int id
, wxEventType type
, wxObject
* obj
,
7807 int row
, int col
, int x
, int y
, bool sel
,
7808 bool control
, bool shift
, bool alt
, bool meta
)
7809 : wxNotifyEvent( type
, id
)
7816 m_control
= control
;
7821 SetEventObject(obj
);
7825 IMPLEMENT_DYNAMIC_CLASS( wxGridSizeEvent
, wxEvent
)
7827 wxGridSizeEvent::wxGridSizeEvent( int id
, wxEventType type
, wxObject
* obj
,
7828 int rowOrCol
, int x
, int y
,
7829 bool control
, bool shift
, bool alt
, bool meta
)
7830 : wxNotifyEvent( type
, id
)
7832 m_rowOrCol
= rowOrCol
;
7835 m_control
= control
;
7840 SetEventObject(obj
);
7844 IMPLEMENT_DYNAMIC_CLASS( wxGridRangeSelectEvent
, wxEvent
)
7846 wxGridRangeSelectEvent::wxGridRangeSelectEvent(int id
, wxEventType type
, wxObject
* obj
,
7847 const wxGridCellCoords
& topLeft
,
7848 const wxGridCellCoords
& bottomRight
,
7849 bool sel
, bool control
,
7850 bool shift
, bool alt
, bool meta
)
7851 : wxNotifyEvent( type
, id
)
7853 m_topLeft
= topLeft
;
7854 m_bottomRight
= bottomRight
;
7856 m_control
= control
;
7861 SetEventObject(obj
);
7865 #endif // ifndef wxUSE_NEW_GRID