1 ///////////////////////////////////////////////////////////////////////////
2 // Name: generic/grid.cpp
3 // Purpose: wxGrid and related classes
4 // Author: Michael Bedward (based on code by Julian Smart, Robin Dunn)
5 // Modified by: Robin Dunn, Vadim Zeitlin
8 // Copyright: (c) Michael Bedward (mbedward@ozemail.com.au)
9 // Licence: wxWindows licence
10 /////////////////////////////////////////////////////////////////////////////
12 // ============================================================================
14 // ============================================================================
16 // ----------------------------------------------------------------------------
18 // ----------------------------------------------------------------------------
20 #if defined(__GNUG__) && !defined(NO_GCC_PRAGMA)
21 #pragma implementation "grid.h"
24 // For compilers that support precompilatixon, includes "wx/wx.h".
25 #include "wx/wxprec.h"
37 #include "wx/dcclient.h"
38 #include "wx/settings.h"
40 #include "wx/textctrl.h"
41 #include "wx/checkbox.h"
42 #include "wx/combobox.h"
43 #include "wx/valtext.h"
47 #include "wx/textfile.h"
48 #include "wx/spinctrl.h"
49 #include "wx/tokenzr.h"
50 #include "wx/renderer.h"
53 #include "wx/generic/gridsel.h"
55 #if defined(__WXMOTIF__)
56 #define WXUNUSED_MOTIF(identifier) WXUNUSED(identifier)
58 #define WXUNUSED_MOTIF(identifier) identifier
61 #if defined(__WXGTK__)
62 #define WXUNUSED_GTK(identifier) WXUNUSED(identifier)
64 #define WXUNUSED_GTK(identifier) identifier
67 // Required for wxIs... functions
70 // ----------------------------------------------------------------------------
72 // ----------------------------------------------------------------------------
74 WX_DEFINE_ARRAY_WITH_DECL_PTR(wxGridCellAttr
*, wxArrayAttrs
,
75 class WXDLLIMPEXP_ADV
);
77 struct wxGridCellWithAttr
79 wxGridCellWithAttr(int row
, int col
, wxGridCellAttr
*attr_
)
80 : coords(row
, col
), attr(attr_
)
89 wxGridCellCoords coords
;
93 // DECLARE_NO_COPY_CLASS(wxGridCellWithAttr)
94 // without rewriting the macros, which require a public copy constructor.
97 WX_DECLARE_OBJARRAY_WITH_DECL(wxGridCellWithAttr
, wxGridCellWithAttrArray
,
98 class WXDLLIMPEXP_ADV
);
100 #include "wx/arrimpl.cpp"
102 WX_DEFINE_OBJARRAY(wxGridCellCoordsArray
)
103 WX_DEFINE_OBJARRAY(wxGridCellWithAttrArray
)
105 // ----------------------------------------------------------------------------
107 // ----------------------------------------------------------------------------
109 DEFINE_EVENT_TYPE(wxEVT_GRID_CELL_LEFT_CLICK
)
110 DEFINE_EVENT_TYPE(wxEVT_GRID_CELL_RIGHT_CLICK
)
111 DEFINE_EVENT_TYPE(wxEVT_GRID_CELL_LEFT_DCLICK
)
112 DEFINE_EVENT_TYPE(wxEVT_GRID_CELL_RIGHT_DCLICK
)
113 DEFINE_EVENT_TYPE(wxEVT_GRID_CELL_BEGIN_DRAG
)
114 DEFINE_EVENT_TYPE(wxEVT_GRID_LABEL_LEFT_CLICK
)
115 DEFINE_EVENT_TYPE(wxEVT_GRID_LABEL_RIGHT_CLICK
)
116 DEFINE_EVENT_TYPE(wxEVT_GRID_LABEL_LEFT_DCLICK
)
117 DEFINE_EVENT_TYPE(wxEVT_GRID_LABEL_RIGHT_DCLICK
)
118 DEFINE_EVENT_TYPE(wxEVT_GRID_ROW_SIZE
)
119 DEFINE_EVENT_TYPE(wxEVT_GRID_COL_SIZE
)
120 DEFINE_EVENT_TYPE(wxEVT_GRID_RANGE_SELECT
)
121 DEFINE_EVENT_TYPE(wxEVT_GRID_CELL_CHANGE
)
122 DEFINE_EVENT_TYPE(wxEVT_GRID_SELECT_CELL
)
123 DEFINE_EVENT_TYPE(wxEVT_GRID_EDITOR_SHOWN
)
124 DEFINE_EVENT_TYPE(wxEVT_GRID_EDITOR_HIDDEN
)
125 DEFINE_EVENT_TYPE(wxEVT_GRID_EDITOR_CREATED
)
127 // ----------------------------------------------------------------------------
129 // ----------------------------------------------------------------------------
131 class WXDLLIMPEXP_ADV wxGridRowLabelWindow
: public wxWindow
134 wxGridRowLabelWindow() { m_owner
= (wxGrid
*)NULL
; }
135 wxGridRowLabelWindow( wxGrid
*parent
, wxWindowID id
,
136 const wxPoint
&pos
, const wxSize
&size
);
141 void OnPaint( wxPaintEvent
& event
);
142 void OnMouseEvent( wxMouseEvent
& event
);
143 void OnMouseWheel( wxMouseEvent
& event
);
144 void OnKeyDown( wxKeyEvent
& event
);
145 void OnKeyUp( wxKeyEvent
& );
146 void OnChar( wxKeyEvent
& );
148 DECLARE_DYNAMIC_CLASS(wxGridRowLabelWindow
)
149 DECLARE_EVENT_TABLE()
150 DECLARE_NO_COPY_CLASS(wxGridRowLabelWindow
)
154 class WXDLLIMPEXP_ADV wxGridColLabelWindow
: public wxWindow
157 wxGridColLabelWindow() { m_owner
= (wxGrid
*)NULL
; }
158 wxGridColLabelWindow( wxGrid
*parent
, wxWindowID id
,
159 const wxPoint
&pos
, const wxSize
&size
);
164 void OnPaint( wxPaintEvent
&event
);
165 void OnMouseEvent( wxMouseEvent
& event
);
166 void OnMouseWheel( wxMouseEvent
& event
);
167 void OnKeyDown( wxKeyEvent
& event
);
168 void OnKeyUp( wxKeyEvent
& );
169 void OnChar( wxKeyEvent
& );
171 DECLARE_DYNAMIC_CLASS(wxGridColLabelWindow
)
172 DECLARE_EVENT_TABLE()
173 DECLARE_NO_COPY_CLASS(wxGridColLabelWindow
)
177 class WXDLLIMPEXP_ADV wxGridCornerLabelWindow
: public wxWindow
180 wxGridCornerLabelWindow() { m_owner
= (wxGrid
*)NULL
; }
181 wxGridCornerLabelWindow( wxGrid
*parent
, wxWindowID id
,
182 const wxPoint
&pos
, const wxSize
&size
);
187 void OnMouseEvent( wxMouseEvent
& event
);
188 void OnMouseWheel( wxMouseEvent
& event
);
189 void OnKeyDown( wxKeyEvent
& event
);
190 void OnKeyUp( wxKeyEvent
& );
191 void OnChar( wxKeyEvent
& );
192 void OnPaint( wxPaintEvent
& event
);
194 DECLARE_DYNAMIC_CLASS(wxGridCornerLabelWindow
)
195 DECLARE_EVENT_TABLE()
196 DECLARE_NO_COPY_CLASS(wxGridCornerLabelWindow
)
199 class WXDLLIMPEXP_ADV wxGridWindow
: public wxWindow
204 m_owner
= (wxGrid
*)NULL
;
205 m_rowLabelWin
= (wxGridRowLabelWindow
*)NULL
;
206 m_colLabelWin
= (wxGridColLabelWindow
*)NULL
;
209 wxGridWindow( wxGrid
*parent
,
210 wxGridRowLabelWindow
*rowLblWin
,
211 wxGridColLabelWindow
*colLblWin
,
212 wxWindowID id
, const wxPoint
&pos
, const wxSize
&size
);
215 void ScrollWindow( int dx
, int dy
, const wxRect
*rect
);
217 wxGrid
* GetOwner() { return m_owner
; }
221 wxGridRowLabelWindow
*m_rowLabelWin
;
222 wxGridColLabelWindow
*m_colLabelWin
;
224 void OnPaint( wxPaintEvent
&event
);
225 void OnMouseWheel( wxMouseEvent
& event
);
226 void OnMouseEvent( wxMouseEvent
& event
);
227 void OnKeyDown( wxKeyEvent
& );
228 void OnKeyUp( wxKeyEvent
& );
229 void OnChar( wxKeyEvent
& );
230 void OnEraseBackground( wxEraseEvent
& );
231 void OnFocus( wxFocusEvent
& );
233 DECLARE_DYNAMIC_CLASS(wxGridWindow
)
234 DECLARE_EVENT_TABLE()
235 DECLARE_NO_COPY_CLASS(wxGridWindow
)
240 class wxGridCellEditorEvtHandler
: public wxEvtHandler
243 wxGridCellEditorEvtHandler()
244 : m_grid(0), m_editor(0)
246 wxGridCellEditorEvtHandler(wxGrid
* grid
, wxGridCellEditor
* editor
)
247 : m_grid(grid
), m_editor(editor
)
250 void OnKeyDown(wxKeyEvent
& event
);
251 void OnChar(wxKeyEvent
& event
);
255 wxGridCellEditor
* m_editor
;
256 DECLARE_DYNAMIC_CLASS(wxGridCellEditorEvtHandler
)
257 DECLARE_EVENT_TABLE()
258 DECLARE_NO_COPY_CLASS(wxGridCellEditorEvtHandler
)
262 IMPLEMENT_DYNAMIC_CLASS( wxGridCellEditorEvtHandler
, wxEvtHandler
)
263 BEGIN_EVENT_TABLE( wxGridCellEditorEvtHandler
, wxEvtHandler
)
264 EVT_KEY_DOWN( wxGridCellEditorEvtHandler::OnKeyDown
)
265 EVT_CHAR( wxGridCellEditorEvtHandler::OnChar
)
270 // ----------------------------------------------------------------------------
271 // the internal data representation used by wxGridCellAttrProvider
272 // ----------------------------------------------------------------------------
274 // this class stores attributes set for cells
275 class WXDLLIMPEXP_ADV wxGridCellAttrData
278 void SetAttr(wxGridCellAttr
*attr
, int row
, int col
);
279 wxGridCellAttr
*GetAttr(int row
, int col
) const;
280 void UpdateAttrRows( size_t pos
, int numRows
);
281 void UpdateAttrCols( size_t pos
, int numCols
);
284 // searches for the attr for given cell, returns wxNOT_FOUND if not found
285 int FindIndex(int row
, int col
) const;
287 wxGridCellWithAttrArray m_attrs
;
290 // this class stores attributes set for rows or columns
291 class WXDLLIMPEXP_ADV wxGridRowOrColAttrData
294 // empty ctor to suppress warnings
295 wxGridRowOrColAttrData() { }
296 ~wxGridRowOrColAttrData();
298 void SetAttr(wxGridCellAttr
*attr
, int rowOrCol
);
299 wxGridCellAttr
*GetAttr(int rowOrCol
) const;
300 void UpdateAttrRowsOrCols( size_t pos
, int numRowsOrCols
);
303 wxArrayInt m_rowsOrCols
;
304 wxArrayAttrs m_attrs
;
307 // NB: this is just a wrapper around 3 objects: one which stores cell
308 // attributes, and 2 others for row/col ones
309 class WXDLLIMPEXP_ADV wxGridCellAttrProviderData
312 wxGridCellAttrData m_cellAttrs
;
313 wxGridRowOrColAttrData m_rowAttrs
,
318 // ----------------------------------------------------------------------------
319 // data structures used for the data type registry
320 // ----------------------------------------------------------------------------
322 struct wxGridDataTypeInfo
324 wxGridDataTypeInfo(const wxString
& typeName
,
325 wxGridCellRenderer
* renderer
,
326 wxGridCellEditor
* editor
)
327 : m_typeName(typeName
), m_renderer(renderer
), m_editor(editor
)
330 ~wxGridDataTypeInfo()
332 wxSafeDecRef(m_renderer
);
333 wxSafeDecRef(m_editor
);
337 wxGridCellRenderer
* m_renderer
;
338 wxGridCellEditor
* m_editor
;
340 DECLARE_NO_COPY_CLASS(wxGridDataTypeInfo
)
344 WX_DEFINE_ARRAY_WITH_DECL_PTR(wxGridDataTypeInfo
*, wxGridDataTypeInfoArray
,
345 class WXDLLIMPEXP_ADV
);
348 class WXDLLIMPEXP_ADV wxGridTypeRegistry
351 wxGridTypeRegistry() {}
352 ~wxGridTypeRegistry();
354 void RegisterDataType(const wxString
& typeName
,
355 wxGridCellRenderer
* renderer
,
356 wxGridCellEditor
* editor
);
358 // find one of already registered data types
359 int FindRegisteredDataType(const wxString
& typeName
);
361 // try to FindRegisteredDataType(), if this fails and typeName is one of
362 // standard typenames, register it and return its index
363 int FindDataType(const wxString
& typeName
);
365 // try to FindDataType(), if it fails see if it is not one of already
366 // registered data types with some params in which case clone the
367 // registered data type and set params for it
368 int FindOrCloneDataType(const wxString
& typeName
);
370 wxGridCellRenderer
* GetRenderer(int index
);
371 wxGridCellEditor
* GetEditor(int index
);
374 wxGridDataTypeInfoArray m_typeinfo
;
377 // ----------------------------------------------------------------------------
378 // conditional compilation
379 // ----------------------------------------------------------------------------
381 #ifndef WXGRID_DRAW_LINES
382 #define WXGRID_DRAW_LINES 1
385 // ----------------------------------------------------------------------------
387 // ----------------------------------------------------------------------------
389 //#define DEBUG_ATTR_CACHE
390 #ifdef DEBUG_ATTR_CACHE
391 static size_t gs_nAttrCacheHits
= 0;
392 static size_t gs_nAttrCacheMisses
= 0;
393 #endif // DEBUG_ATTR_CACHE
395 // ----------------------------------------------------------------------------
397 // ----------------------------------------------------------------------------
399 wxGridCellCoords
wxGridNoCellCoords( -1, -1 );
400 wxRect
wxGridNoCellRect( -1, -1, -1, -1 );
403 // TODO: this doesn't work at all, grid cells have different sizes and approx
404 // calculations don't work as because of the size mismatch scrollbars
405 // sometimes fail to be shown when they should be or vice versa
407 // The scroll bars may be a little flakey once in a while, but that is
408 // surely much less horrible than having scroll lines of only 1!!!
411 // Well, it's still seriously broken so it might be better but needs
414 static const size_t GRID_SCROLL_LINE_X
= 15; // 1;
415 static const size_t GRID_SCROLL_LINE_Y
= GRID_SCROLL_LINE_X
;
417 // the size of hash tables used a bit everywhere (the max number of elements
418 // in these hash tables is the number of rows/columns)
419 static const int GRID_HASH_SIZE
= 100;
422 // ----------------------------------------------------------------------------
424 // ----------------------------------------------------------------------------
426 static inline int GetScrollX(int x
)
428 return (x
+ GRID_SCROLL_LINE_X
- 1) / GRID_SCROLL_LINE_X
;
431 static inline int GetScrollY(int y
)
433 return (y
+ GRID_SCROLL_LINE_Y
- 1) / GRID_SCROLL_LINE_Y
;
437 // ============================================================================
439 // ============================================================================
441 // ----------------------------------------------------------------------------
443 // ----------------------------------------------------------------------------
445 wxGridCellEditor::wxGridCellEditor()
452 wxGridCellEditor::~wxGridCellEditor()
457 void wxGridCellEditor::Create(wxWindow
* WXUNUSED(parent
),
458 wxWindowID
WXUNUSED(id
),
459 wxEvtHandler
* evtHandler
)
462 m_control
->PushEventHandler(evtHandler
);
465 void wxGridCellEditor::PaintBackground(const wxRect
& rectCell
,
466 wxGridCellAttr
*attr
)
468 // erase the background because we might not fill the cell
469 wxClientDC
dc(m_control
->GetParent());
470 wxGridWindow
* gridWindow
= wxDynamicCast(m_control
->GetParent(), wxGridWindow
);
472 gridWindow
->GetOwner()->PrepareDC(dc
);
474 dc
.SetPen(*wxTRANSPARENT_PEN
);
475 dc
.SetBrush(wxBrush(attr
->GetBackgroundColour(), wxSOLID
));
476 dc
.DrawRectangle(rectCell
);
478 // redraw the control we just painted over
479 m_control
->Refresh();
482 void wxGridCellEditor::Destroy()
486 m_control
->PopEventHandler(true /* delete it*/);
488 m_control
->Destroy();
493 void wxGridCellEditor::Show(bool show
, wxGridCellAttr
*attr
)
495 wxASSERT_MSG(m_control
,
496 wxT("The wxGridCellEditor must be Created first!"));
497 m_control
->Show(show
);
501 // set the colours/fonts if we have any
504 m_colFgOld
= m_control
->GetForegroundColour();
505 m_control
->SetForegroundColour(attr
->GetTextColour());
507 m_colBgOld
= m_control
->GetBackgroundColour();
508 m_control
->SetBackgroundColour(attr
->GetBackgroundColour());
510 // Workaround for GTK+1 font setting problem on some platforms
511 #if !defined(__WXGTK__) || defined(__WXGTK20__)
512 m_fontOld
= m_control
->GetFont();
513 m_control
->SetFont(attr
->GetFont());
515 // can't do anything more in the base class version, the other
516 // attributes may only be used by the derived classes
521 // restore the standard colours fonts
522 if ( m_colFgOld
.Ok() )
524 m_control
->SetForegroundColour(m_colFgOld
);
525 m_colFgOld
= wxNullColour
;
528 if ( m_colBgOld
.Ok() )
530 m_control
->SetBackgroundColour(m_colBgOld
);
531 m_colBgOld
= wxNullColour
;
533 // Workaround for GTK+1 font setting problem on some platforms
534 #if !defined(__WXGTK__) || defined(__WXGTK20__)
535 if ( m_fontOld
.Ok() )
537 m_control
->SetFont(m_fontOld
);
538 m_fontOld
= wxNullFont
;
544 void wxGridCellEditor::SetSize(const wxRect
& rect
)
546 wxASSERT_MSG(m_control
,
547 wxT("The wxGridCellEditor must be Created first!"));
548 m_control
->SetSize(rect
, wxSIZE_ALLOW_MINUS_ONE
);
551 void wxGridCellEditor::HandleReturn(wxKeyEvent
& event
)
556 bool wxGridCellEditor::IsAcceptedKey(wxKeyEvent
& event
)
558 bool ctrl
= event
.ControlDown();
559 bool alt
= event
.AltDown();
561 // On the Mac the Alt key is more like shift and is used for entry of
562 // valid characters, so check for Ctrl and Meta instead.
563 alt
= event
.MetaDown();
566 // Assume it's not a valid char if ctrl or alt is down, but if both are
567 // down then it may be because of an AltGr key combination, so let them
568 // through in that case.
569 if ((ctrl
|| alt
) && !(ctrl
&& alt
))
573 int key
= event
.GetUnicodeKey();
576 // if the unicode key code is not really a unicode character (it may
577 // be a function key or etc., the platforms appear to always give us a
578 // small value in this case) then fallback to the ascii key code but
579 // don't do anything for function keys or etc.
582 key
= event
.GetKeyCode();
583 keyOk
= (key
<= 127);
586 #else // !wxUSE_UNICODE
587 int key
= event
.GetKeyCode();
591 #endif // wxUSE_UNICODE/!wxUSE_UNICODE
594 void wxGridCellEditor::StartingKey(wxKeyEvent
& event
)
599 void wxGridCellEditor::StartingClick()
605 // ----------------------------------------------------------------------------
606 // wxGridCellTextEditor
607 // ----------------------------------------------------------------------------
609 wxGridCellTextEditor::wxGridCellTextEditor()
614 void wxGridCellTextEditor::Create(wxWindow
* parent
,
616 wxEvtHandler
* evtHandler
)
618 m_control
= new wxTextCtrl(parent
, id
, wxEmptyString
,
619 wxDefaultPosition
, wxDefaultSize
620 #if defined(__WXMSW__)
621 , wxTE_PROCESS_TAB
| wxTE_AUTO_SCROLL
625 // set max length allowed in the textctrl, if the parameter was set
628 ((wxTextCtrl
*)m_control
)->SetMaxLength(m_maxChars
);
631 wxGridCellEditor::Create(parent
, id
, evtHandler
);
634 void wxGridCellTextEditor::PaintBackground(const wxRect
& WXUNUSED(rectCell
),
635 wxGridCellAttr
* WXUNUSED(attr
))
637 // as we fill the entire client area, don't do anything here to minimize
641 void wxGridCellTextEditor::SetSize(const wxRect
& rectOrig
)
643 wxRect
rect(rectOrig
);
645 // Make the edit control large enough to allow for internal
648 // TODO: remove this if the text ctrl sizing is improved esp. for
651 #if defined(__WXGTK__)
660 int extra_x
= ( rect
.x
> 2 )? 2 : 1;
662 // MB: treat MSW separately here otherwise the caret doesn't show
663 // when the editor is in the first row.
664 #if defined(__WXMSW__)
667 int extra_y
= ( rect
.y
> 2 )? 2 : 1;
670 #if defined(__WXMOTIF__)
674 rect
.SetLeft( wxMax(0, rect
.x
- extra_x
) );
675 rect
.SetTop( wxMax(0, rect
.y
- extra_y
) );
676 rect
.SetRight( rect
.GetRight() + 2*extra_x
);
677 rect
.SetBottom( rect
.GetBottom() + 2*extra_y
);
680 wxGridCellEditor::SetSize(rect
);
683 void wxGridCellTextEditor::BeginEdit(int row
, int col
, wxGrid
* grid
)
685 wxASSERT_MSG(m_control
,
686 wxT("The wxGridCellEditor must be Created first!"));
688 m_startValue
= grid
->GetTable()->GetValue(row
, col
);
690 DoBeginEdit(m_startValue
);
693 void wxGridCellTextEditor::DoBeginEdit(const wxString
& startValue
)
695 Text()->SetValue(startValue
);
696 Text()->SetInsertionPointEnd();
697 Text()->SetSelection(-1,-1);
701 bool wxGridCellTextEditor::EndEdit(int row
, int col
,
704 wxASSERT_MSG(m_control
,
705 wxT("The wxGridCellEditor must be Created first!"));
707 bool changed
= false;
708 wxString value
= Text()->GetValue();
709 if (value
!= m_startValue
)
713 grid
->GetTable()->SetValue(row
, col
, value
);
715 m_startValue
= wxEmptyString
;
716 // No point in setting the text of the hidden control
717 //Text()->SetValue(m_startValue);
723 void wxGridCellTextEditor::Reset()
725 wxASSERT_MSG(m_control
,
726 wxT("The wxGridCellEditor must be Created first!"));
728 DoReset(m_startValue
);
731 void wxGridCellTextEditor::DoReset(const wxString
& startValue
)
733 Text()->SetValue(startValue
);
734 Text()->SetInsertionPointEnd();
737 bool wxGridCellTextEditor::IsAcceptedKey(wxKeyEvent
& event
)
739 return wxGridCellEditor::IsAcceptedKey(event
);
742 void wxGridCellTextEditor::StartingKey(wxKeyEvent
& event
)
744 // Since this is now happening in the EVT_CHAR event EmulateKeyPress is no
745 // longer an appropriate way to get the character into the text control.
746 // Do it ourselves instead. We know that if we get this far that we have
747 // a valid character, so not a whole lot of testing needs to be done.
749 wxTextCtrl
* tc
= Text();
754 ch
= event
.GetUnicodeKey();
756 ch
= (wxChar
)event
.GetKeyCode();
758 ch
= (wxChar
)event
.GetKeyCode();
763 // delete the character at the cursor
764 pos
= tc
->GetInsertionPoint();
765 if (pos
< tc
->GetLastPosition())
766 tc
->Remove(pos
, pos
+1);
770 // delete the character before the cursor
771 pos
= tc
->GetInsertionPoint();
773 tc
->Remove(pos
-1, pos
);
782 void wxGridCellTextEditor::HandleReturn( wxKeyEvent
&
783 WXUNUSED_GTK(WXUNUSED_MOTIF(event
)) )
785 #if defined(__WXMOTIF__) || defined(__WXGTK__)
786 // wxMotif needs a little extra help...
787 size_t pos
= (size_t)( Text()->GetInsertionPoint() );
788 wxString
s( Text()->GetValue() );
789 s
= s
.Left(pos
) + wxT("\n") + s
.Mid(pos
);
791 Text()->SetInsertionPoint( pos
);
793 // the other ports can handle a Return key press
799 void wxGridCellTextEditor::SetParameters(const wxString
& params
)
809 if ( !params
.ToLong(&tmp
) )
811 wxLogDebug(_T("Invalid wxGridCellTextEditor parameter string '%s' ignored"), params
.c_str());
815 m_maxChars
= (size_t)tmp
;
820 // return the value in the text control
821 wxString
wxGridCellTextEditor::GetValue() const
823 return Text()->GetValue();
826 // ----------------------------------------------------------------------------
827 // wxGridCellNumberEditor
828 // ----------------------------------------------------------------------------
830 wxGridCellNumberEditor::wxGridCellNumberEditor(int min
, int max
)
836 void wxGridCellNumberEditor::Create(wxWindow
* parent
,
838 wxEvtHandler
* evtHandler
)
843 // create a spin ctrl
844 m_control
= new wxSpinCtrl(parent
, wxID_ANY
, wxEmptyString
,
845 wxDefaultPosition
, wxDefaultSize
,
849 wxGridCellEditor::Create(parent
, id
, evtHandler
);
854 // just a text control
855 wxGridCellTextEditor::Create(parent
, id
, evtHandler
);
858 Text()->SetValidator(wxTextValidator(wxFILTER_NUMERIC
));
859 #endif // wxUSE_VALIDATORS
863 void wxGridCellNumberEditor::BeginEdit(int row
, int col
, wxGrid
* grid
)
865 // first get the value
866 wxGridTableBase
*table
= grid
->GetTable();
867 if ( table
->CanGetValueAs(row
, col
, wxGRID_VALUE_NUMBER
) )
869 m_valueOld
= table
->GetValueAsLong(row
, col
);
874 wxString sValue
= table
->GetValue(row
, col
);
875 if (! sValue
.ToLong(&m_valueOld
) && ! sValue
.empty())
877 wxFAIL_MSG( _T("this cell doesn't have numeric value") );
885 Spin()->SetValue((int)m_valueOld
);
891 DoBeginEdit(GetString());
895 bool wxGridCellNumberEditor::EndEdit(int row
, int col
,
905 value
= Spin()->GetValue();
906 changed
= value
!= m_valueOld
;
908 text
= wxString::Format(wxT("%ld"), value
);
913 text
= Text()->GetValue();
914 changed
= (text
.empty() || text
.ToLong(&value
)) && (value
!= m_valueOld
);
919 if (grid
->GetTable()->CanSetValueAs(row
, col
, wxGRID_VALUE_NUMBER
))
920 grid
->GetTable()->SetValueAsLong(row
, col
, value
);
922 grid
->GetTable()->SetValue(row
, col
, text
);
928 void wxGridCellNumberEditor::Reset()
933 Spin()->SetValue((int)m_valueOld
);
938 DoReset(GetString());
942 bool wxGridCellNumberEditor::IsAcceptedKey(wxKeyEvent
& event
)
944 if ( wxGridCellEditor::IsAcceptedKey(event
) )
946 int keycode
= event
.GetKeyCode();
947 if ( (keycode
< 128) &&
948 (wxIsdigit(keycode
) || keycode
== '+' || keycode
== '-'))
957 void wxGridCellNumberEditor::StartingKey(wxKeyEvent
& event
)
959 int keycode
= event
.GetKeyCode();
962 if ( wxIsdigit(keycode
) || keycode
== '+' || keycode
== '-')
964 wxGridCellTextEditor::StartingKey(event
);
973 if ( wxIsdigit(keycode
) )
975 wxSpinCtrl
* spin
= (wxSpinCtrl
*)m_control
;
976 spin
->SetValue(keycode
- '0');
977 spin
->SetSelection(1,1);
985 void wxGridCellNumberEditor::SetParameters(const wxString
& params
)
996 if ( params
.BeforeFirst(_T(',')).ToLong(&tmp
) )
1000 if ( params
.AfterFirst(_T(',')).ToLong(&tmp
) )
1004 // skip the error message below
1009 wxLogDebug(_T("Invalid wxGridCellNumberEditor parameter string '%s' ignored"), params
.c_str());
1013 // return the value in the spin control if it is there (the text control otherwise)
1014 wxString
wxGridCellNumberEditor::GetValue() const
1021 long value
= Spin()->GetValue();
1022 s
.Printf(wxT("%ld"), value
);
1027 s
= Text()->GetValue();
1033 // ----------------------------------------------------------------------------
1034 // wxGridCellFloatEditor
1035 // ----------------------------------------------------------------------------
1037 wxGridCellFloatEditor::wxGridCellFloatEditor(int width
, int precision
)
1040 m_precision
= precision
;
1043 void wxGridCellFloatEditor::Create(wxWindow
* parent
,
1045 wxEvtHandler
* evtHandler
)
1047 wxGridCellTextEditor::Create(parent
, id
, evtHandler
);
1049 #if wxUSE_VALIDATORS
1050 Text()->SetValidator(wxTextValidator(wxFILTER_NUMERIC
));
1051 #endif // wxUSE_VALIDATORS
1054 void wxGridCellFloatEditor::BeginEdit(int row
, int col
, wxGrid
* grid
)
1056 // first get the value
1057 wxGridTableBase
*table
= grid
->GetTable();
1058 if ( table
->CanGetValueAs(row
, col
, wxGRID_VALUE_FLOAT
) )
1060 m_valueOld
= table
->GetValueAsDouble(row
, col
);
1065 wxString sValue
= table
->GetValue(row
, col
);
1066 if (! sValue
.ToDouble(&m_valueOld
) && ! sValue
.empty())
1068 wxFAIL_MSG( _T("this cell doesn't have float value") );
1073 DoBeginEdit(GetString());
1076 bool wxGridCellFloatEditor::EndEdit(int row
, int col
,
1080 wxString
text(Text()->GetValue());
1082 if ( (text
.empty() || text
.ToDouble(&value
)) && (value
!= m_valueOld
) )
1084 if (grid
->GetTable()->CanSetValueAs(row
, col
, wxGRID_VALUE_FLOAT
))
1085 grid
->GetTable()->SetValueAsDouble(row
, col
, value
);
1087 grid
->GetTable()->SetValue(row
, col
, text
);
1094 void wxGridCellFloatEditor::Reset()
1096 DoReset(GetString());
1099 void wxGridCellFloatEditor::StartingKey(wxKeyEvent
& event
)
1101 int keycode
= event
.GetKeyCode();
1103 tmpbuf
[0] = (char) keycode
;
1105 wxString
strbuf(tmpbuf
, *wxConvCurrent
);
1107 bool is_decimal_point
= ( strbuf
==
1108 wxLocale::GetInfo(wxLOCALE_DECIMAL_POINT
, wxLOCALE_CAT_NUMBER
) );
1110 bool is_decimal_point
= ( strbuf
== _T(".") );
1112 if ( wxIsdigit(keycode
) || keycode
== '+' || keycode
== '-'
1113 || is_decimal_point
)
1115 wxGridCellTextEditor::StartingKey(event
);
1117 // skip Skip() below
1124 void wxGridCellFloatEditor::SetParameters(const wxString
& params
)
1135 if ( params
.BeforeFirst(_T(',')).ToLong(&tmp
) )
1139 if ( params
.AfterFirst(_T(',')).ToLong(&tmp
) )
1141 m_precision
= (int)tmp
;
1143 // skip the error message below
1148 wxLogDebug(_T("Invalid wxGridCellFloatEditor parameter string '%s' ignored"), params
.c_str());
1152 wxString
wxGridCellFloatEditor::GetString() const
1155 if ( m_width
== -1 )
1157 // default width/precision
1160 else if ( m_precision
== -1 )
1162 // default precision
1163 fmt
.Printf(_T("%%%d.f"), m_width
);
1167 fmt
.Printf(_T("%%%d.%df"), m_width
, m_precision
);
1170 return wxString::Format(fmt
, m_valueOld
);
1173 bool wxGridCellFloatEditor::IsAcceptedKey(wxKeyEvent
& event
)
1175 if ( wxGridCellEditor::IsAcceptedKey(event
) )
1177 int keycode
= event
.GetKeyCode();
1178 printf("%d\n", keycode
);
1179 // accept digits, 'e' as in '1e+6', also '-', '+', and '.'
1181 tmpbuf
[0] = (char) keycode
;
1183 wxString
strbuf(tmpbuf
, *wxConvCurrent
);
1185 bool is_decimal_point
=
1186 ( strbuf
== wxLocale::GetInfo(wxLOCALE_DECIMAL_POINT
,
1187 wxLOCALE_CAT_NUMBER
) );
1189 bool is_decimal_point
= ( strbuf
== _T(".") );
1191 if ( (keycode
< 128) &&
1192 (wxIsdigit(keycode
) || tolower(keycode
) == 'e' ||
1193 is_decimal_point
|| keycode
== '+' || keycode
== '-') )
1200 #endif // wxUSE_TEXTCTRL
1204 // ----------------------------------------------------------------------------
1205 // wxGridCellBoolEditor
1206 // ----------------------------------------------------------------------------
1208 void wxGridCellBoolEditor::Create(wxWindow
* parent
,
1210 wxEvtHandler
* evtHandler
)
1212 m_control
= new wxCheckBox(parent
, id
, wxEmptyString
,
1213 wxDefaultPosition
, wxDefaultSize
,
1216 wxGridCellEditor::Create(parent
, id
, evtHandler
);
1219 void wxGridCellBoolEditor::SetSize(const wxRect
& r
)
1221 bool resize
= false;
1222 wxSize size
= m_control
->GetSize();
1223 wxCoord minSize
= wxMin(r
.width
, r
.height
);
1225 // check if the checkbox is not too big/small for this cell
1226 wxSize sizeBest
= m_control
->GetBestSize();
1227 if ( !(size
== sizeBest
) )
1229 // reset to default size if it had been made smaller
1235 if ( size
.x
>= minSize
|| size
.y
>= minSize
)
1237 // leave 1 pixel margin
1238 size
.x
= size
.y
= minSize
- 2;
1245 m_control
->SetSize(size
);
1248 // position it in the centre of the rectangle (TODO: support alignment?)
1250 #if defined(__WXGTK__) || defined (__WXMOTIF__)
1251 // the checkbox without label still has some space to the right in wxGTK,
1252 // so shift it to the right
1254 #elif defined(__WXMSW__)
1255 // here too, but in other way
1260 int hAlign
= wxALIGN_CENTRE
;
1261 int vAlign
= wxALIGN_CENTRE
;
1263 GetCellAttr()->GetAlignment(& hAlign
, & vAlign
);
1266 if (hAlign
== wxALIGN_LEFT
)
1272 y
= r
.y
+ r
.height
/2 - size
.y
/2;
1274 else if (hAlign
== wxALIGN_RIGHT
)
1276 x
= r
.x
+ r
.width
- size
.x
- 2;
1277 y
= r
.y
+ r
.height
/2 - size
.y
/2;
1279 else if (hAlign
== wxALIGN_CENTRE
)
1281 x
= r
.x
+ r
.width
/2 - size
.x
/2;
1282 y
= r
.y
+ r
.height
/2 - size
.y
/2;
1285 m_control
->Move(x
, y
);
1288 void wxGridCellBoolEditor::Show(bool show
, wxGridCellAttr
*attr
)
1290 m_control
->Show(show
);
1294 wxColour colBg
= attr
? attr
->GetBackgroundColour() : *wxLIGHT_GREY
;
1295 CBox()->SetBackgroundColour(colBg
);
1299 void wxGridCellBoolEditor::BeginEdit(int row
, int col
, wxGrid
* grid
)
1301 wxASSERT_MSG(m_control
,
1302 wxT("The wxGridCellEditor must be Created first!"));
1304 if (grid
->GetTable()->CanGetValueAs(row
, col
, wxGRID_VALUE_BOOL
))
1305 m_startValue
= grid
->GetTable()->GetValueAsBool(row
, col
);
1308 wxString
cellval( grid
->GetTable()->GetValue(row
, col
) );
1309 m_startValue
= !( !cellval
|| (cellval
== wxT("0")) );
1311 CBox()->SetValue(m_startValue
);
1315 bool wxGridCellBoolEditor::EndEdit(int row
, int col
,
1318 wxASSERT_MSG(m_control
,
1319 wxT("The wxGridCellEditor must be Created first!"));
1321 bool changed
= false;
1322 bool value
= CBox()->GetValue();
1323 if ( value
!= m_startValue
)
1328 if (grid
->GetTable()->CanGetValueAs(row
, col
, wxGRID_VALUE_BOOL
))
1329 grid
->GetTable()->SetValueAsBool(row
, col
, value
);
1331 grid
->GetTable()->SetValue(row
, col
, value
? _T("1") : wxEmptyString
);
1337 void wxGridCellBoolEditor::Reset()
1339 wxASSERT_MSG(m_control
,
1340 wxT("The wxGridCellEditor must be Created first!"));
1342 CBox()->SetValue(m_startValue
);
1345 void wxGridCellBoolEditor::StartingClick()
1347 CBox()->SetValue(!CBox()->GetValue());
1350 bool wxGridCellBoolEditor::IsAcceptedKey(wxKeyEvent
& event
)
1352 if ( wxGridCellEditor::IsAcceptedKey(event
) )
1354 int keycode
= event
.GetKeyCode();
1367 void wxGridCellBoolEditor::StartingKey(wxKeyEvent
& event
)
1369 int keycode
= event
.GetKeyCode();
1373 CBox()->SetValue(!CBox()->GetValue());
1377 CBox()->SetValue(true);
1381 CBox()->SetValue(false);
1387 // return the value as "1" for true and the empty string for false
1388 wxString
wxGridCellBoolEditor::GetValue() const
1390 bool bSet
= CBox()->GetValue();
1391 return bSet
? _T("1") : wxEmptyString
;
1394 #endif // wxUSE_CHECKBOX
1398 // ----------------------------------------------------------------------------
1399 // wxGridCellChoiceEditor
1400 // ----------------------------------------------------------------------------
1402 wxGridCellChoiceEditor::wxGridCellChoiceEditor(const wxArrayString
& choices
,
1404 : m_choices(choices
),
1405 m_allowOthers(allowOthers
) { }
1407 wxGridCellChoiceEditor::wxGridCellChoiceEditor(size_t count
,
1408 const wxString choices
[],
1410 : m_allowOthers(allowOthers
)
1414 m_choices
.Alloc(count
);
1415 for ( size_t n
= 0; n
< count
; n
++ )
1417 m_choices
.Add(choices
[n
]);
1422 wxGridCellEditor
*wxGridCellChoiceEditor::Clone() const
1424 wxGridCellChoiceEditor
*editor
= new wxGridCellChoiceEditor
;
1425 editor
->m_allowOthers
= m_allowOthers
;
1426 editor
->m_choices
= m_choices
;
1431 void wxGridCellChoiceEditor::Create(wxWindow
* parent
,
1433 wxEvtHandler
* evtHandler
)
1435 m_control
= new wxComboBox(parent
, id
, wxEmptyString
,
1436 wxDefaultPosition
, wxDefaultSize
,
1438 m_allowOthers
? 0 : wxCB_READONLY
);
1440 wxGridCellEditor::Create(parent
, id
, evtHandler
);
1443 void wxGridCellChoiceEditor::PaintBackground(const wxRect
& rectCell
,
1444 wxGridCellAttr
* attr
)
1446 // as we fill the entire client area, don't do anything here to minimize
1449 // TODO: It doesn't actually fill the client area since the height of a
1450 // combo always defaults to the standard... Until someone has time to
1451 // figure out the right rectangle to paint, just do it the normal way...
1452 wxGridCellEditor::PaintBackground(rectCell
, attr
);
1455 void wxGridCellChoiceEditor::BeginEdit(int row
, int col
, wxGrid
* grid
)
1457 wxASSERT_MSG(m_control
,
1458 wxT("The wxGridCellEditor must be Created first!"));
1460 m_startValue
= grid
->GetTable()->GetValue(row
, col
);
1463 Combo()->SetValue(m_startValue
);
1466 // find the right position, or default to the first if not found
1467 int pos
= Combo()->FindString(m_startValue
);
1470 Combo()->SetSelection(pos
);
1472 Combo()->SetInsertionPointEnd();
1473 Combo()->SetFocus();
1476 bool wxGridCellChoiceEditor::EndEdit(int row
, int col
,
1479 wxString value
= Combo()->GetValue();
1480 if ( value
== m_startValue
)
1483 grid
->GetTable()->SetValue(row
, col
, value
);
1488 void wxGridCellChoiceEditor::Reset()
1490 Combo()->SetValue(m_startValue
);
1491 Combo()->SetInsertionPointEnd();
1494 void wxGridCellChoiceEditor::SetParameters(const wxString
& params
)
1504 wxStringTokenizer
tk(params
, _T(','));
1505 while ( tk
.HasMoreTokens() )
1507 m_choices
.Add(tk
.GetNextToken());
1511 // return the value in the text control
1512 wxString
wxGridCellChoiceEditor::GetValue() const
1514 return Combo()->GetValue();
1517 #endif // wxUSE_COMBOBOX
1519 // ----------------------------------------------------------------------------
1520 // wxGridCellEditorEvtHandler
1521 // ----------------------------------------------------------------------------
1523 void wxGridCellEditorEvtHandler::OnKeyDown(wxKeyEvent
& event
)
1525 switch ( event
.GetKeyCode() )
1529 m_grid
->DisableCellEditControl();
1533 m_grid
->GetEventHandler()->ProcessEvent( event
);
1537 case WXK_NUMPAD_ENTER
:
1538 if (!m_grid
->GetEventHandler()->ProcessEvent(event
))
1539 m_editor
->HandleReturn(event
);
1547 void wxGridCellEditorEvtHandler::OnChar(wxKeyEvent
& event
)
1549 switch ( event
.GetKeyCode() )
1554 case WXK_NUMPAD_ENTER
:
1562 // ----------------------------------------------------------------------------
1563 // wxGridCellWorker is an (almost) empty common base class for
1564 // wxGridCellRenderer and wxGridCellEditor managing ref counting
1565 // ----------------------------------------------------------------------------
1567 void wxGridCellWorker::SetParameters(const wxString
& WXUNUSED(params
))
1572 wxGridCellWorker::~wxGridCellWorker()
1576 // ============================================================================
1578 // ============================================================================
1580 // ----------------------------------------------------------------------------
1581 // wxGridCellRenderer
1582 // ----------------------------------------------------------------------------
1584 void wxGridCellRenderer::Draw(wxGrid
& grid
,
1585 wxGridCellAttr
& attr
,
1588 int WXUNUSED(row
), int WXUNUSED(col
),
1591 dc
.SetBackgroundMode( wxSOLID
);
1593 // grey out fields if the grid is disabled
1594 if( grid
.IsEnabled() )
1598 dc
.SetBrush( wxBrush(grid
.GetSelectionBackground(), wxSOLID
) );
1602 dc
.SetBrush( wxBrush(attr
.GetBackgroundColour(), wxSOLID
) );
1607 dc
.SetBrush(wxBrush(wxSystemSettings::GetColour(wxSYS_COLOUR_BTNFACE
), wxSOLID
));
1610 dc
.SetPen( *wxTRANSPARENT_PEN
);
1611 dc
.DrawRectangle(rect
);
1614 // ----------------------------------------------------------------------------
1615 // wxGridCellStringRenderer
1616 // ----------------------------------------------------------------------------
1618 void wxGridCellStringRenderer::SetTextColoursAndFont(wxGrid
& grid
,
1619 wxGridCellAttr
& attr
,
1623 dc
.SetBackgroundMode( wxTRANSPARENT
);
1625 // TODO some special colours for attr.IsReadOnly() case?
1627 // different coloured text when the grid is disabled
1628 if( grid
.IsEnabled() )
1632 dc
.SetTextBackground( grid
.GetSelectionBackground() );
1633 dc
.SetTextForeground( grid
.GetSelectionForeground() );
1637 dc
.SetTextBackground( attr
.GetBackgroundColour() );
1638 dc
.SetTextForeground( attr
.GetTextColour() );
1643 dc
.SetTextBackground(wxSystemSettings::GetColour(wxSYS_COLOUR_BTNFACE
));
1644 dc
.SetTextForeground(wxSystemSettings::GetColour(wxSYS_COLOUR_GRAYTEXT
));
1647 dc
.SetFont( attr
.GetFont() );
1650 wxSize
wxGridCellStringRenderer::DoGetBestSize(wxGridCellAttr
& attr
,
1652 const wxString
& text
)
1654 wxCoord x
= 0, y
= 0, max_x
= 0;
1655 dc
.SetFont(attr
.GetFont());
1656 wxStringTokenizer
tk(text
, _T('\n'));
1657 while ( tk
.HasMoreTokens() )
1659 dc
.GetTextExtent(tk
.GetNextToken(), &x
, &y
);
1660 max_x
= wxMax(max_x
, x
);
1663 y
*= 1 + text
.Freq(wxT('\n')); // multiply by the number of lines.
1665 return wxSize(max_x
, y
);
1668 wxSize
wxGridCellStringRenderer::GetBestSize(wxGrid
& grid
,
1669 wxGridCellAttr
& attr
,
1673 return DoGetBestSize(attr
, dc
, grid
.GetCellValue(row
, col
));
1676 void wxGridCellStringRenderer::Draw(wxGrid
& grid
,
1677 wxGridCellAttr
& attr
,
1679 const wxRect
& rectCell
,
1683 wxRect rect
= rectCell
;
1686 // erase only this cells background, overflow cells should have been erased
1687 wxGridCellRenderer::Draw(grid
, attr
, dc
, rectCell
, row
, col
, isSelected
);
1690 attr
.GetAlignment(&hAlign
, &vAlign
);
1692 int overflowCols
= 0;
1694 if (attr
.GetOverflow())
1696 int cols
= grid
.GetNumberCols();
1697 int best_width
= GetBestSize(grid
,attr
,dc
,row
,col
).GetWidth();
1698 int cell_rows
, cell_cols
;
1699 attr
.GetSize( &cell_rows
, &cell_cols
); // shouldn't get here if <=0
1700 if ((best_width
> rectCell
.width
) && (col
< cols
) && grid
.GetTable())
1702 int i
, c_cols
, c_rows
;
1703 for (i
= col
+cell_cols
; i
< cols
; i
++)
1705 bool is_empty
= true;
1706 for (int j
=row
; j
<row
+cell_rows
; j
++)
1708 // check w/ anchor cell for multicell block
1709 grid
.GetCellSize(j
, i
, &c_rows
, &c_cols
);
1710 if (c_rows
> 0) c_rows
= 0;
1711 if (!grid
.GetTable()->IsEmptyCell(j
+c_rows
, i
))
1718 rect
.width
+= grid
.GetColSize(i
);
1724 if (rect
.width
>= best_width
) break;
1726 overflowCols
= i
- col
- cell_cols
+ 1;
1727 if (overflowCols
>= cols
) overflowCols
= cols
- 1;
1730 if (overflowCols
> 0) // redraw overflow cells w/ proper hilight
1732 hAlign
= wxALIGN_LEFT
; // if oveflowed then it's left aligned
1734 clip
.x
+= rectCell
.width
;
1735 // draw each overflow cell individually
1736 int col_end
= col
+cell_cols
+overflowCols
;
1737 if (col_end
>= grid
.GetNumberCols())
1738 col_end
= grid
.GetNumberCols() - 1;
1739 for (int i
= col
+cell_cols
; i
<= col_end
; i
++)
1741 clip
.width
= grid
.GetColSize(i
) - 1;
1742 dc
.DestroyClippingRegion();
1743 dc
.SetClippingRegion(clip
);
1745 SetTextColoursAndFont(grid
, attr
, dc
,
1746 grid
.IsInSelection(row
,i
));
1748 grid
.DrawTextRectangle(dc
, grid
.GetCellValue(row
, col
),
1749 rect
, hAlign
, vAlign
);
1750 clip
.x
+= grid
.GetColSize(i
) - 1;
1756 dc
.DestroyClippingRegion();
1760 // now we only have to draw the text
1761 SetTextColoursAndFont(grid
, attr
, dc
, isSelected
);
1763 grid
.DrawTextRectangle(dc
, grid
.GetCellValue(row
, col
),
1764 rect
, hAlign
, vAlign
);
1767 // ----------------------------------------------------------------------------
1768 // wxGridCellNumberRenderer
1769 // ----------------------------------------------------------------------------
1771 wxString
wxGridCellNumberRenderer::GetString(wxGrid
& grid
, int row
, int col
)
1773 wxGridTableBase
*table
= grid
.GetTable();
1775 if ( table
->CanGetValueAs(row
, col
, wxGRID_VALUE_NUMBER
) )
1777 text
.Printf(_T("%ld"), table
->GetValueAsLong(row
, col
));
1781 text
= table
->GetValue(row
, col
);
1787 void wxGridCellNumberRenderer::Draw(wxGrid
& grid
,
1788 wxGridCellAttr
& attr
,
1790 const wxRect
& rectCell
,
1794 wxGridCellRenderer::Draw(grid
, attr
, dc
, rectCell
, row
, col
, isSelected
);
1796 SetTextColoursAndFont(grid
, attr
, dc
, isSelected
);
1798 // draw the text right aligned by default
1800 attr
.GetAlignment(&hAlign
, &vAlign
);
1801 hAlign
= wxALIGN_RIGHT
;
1803 wxRect rect
= rectCell
;
1806 grid
.DrawTextRectangle(dc
, GetString(grid
, row
, col
), rect
, hAlign
, vAlign
);
1809 wxSize
wxGridCellNumberRenderer::GetBestSize(wxGrid
& grid
,
1810 wxGridCellAttr
& attr
,
1814 return DoGetBestSize(attr
, dc
, GetString(grid
, row
, col
));
1817 // ----------------------------------------------------------------------------
1818 // wxGridCellFloatRenderer
1819 // ----------------------------------------------------------------------------
1821 wxGridCellFloatRenderer::wxGridCellFloatRenderer(int width
, int precision
)
1824 SetPrecision(precision
);
1827 wxGridCellRenderer
*wxGridCellFloatRenderer::Clone() const
1829 wxGridCellFloatRenderer
*renderer
= new wxGridCellFloatRenderer
;
1830 renderer
->m_width
= m_width
;
1831 renderer
->m_precision
= m_precision
;
1832 renderer
->m_format
= m_format
;
1837 wxString
wxGridCellFloatRenderer::GetString(wxGrid
& grid
, int row
, int col
)
1839 wxGridTableBase
*table
= grid
.GetTable();
1844 if ( table
->CanGetValueAs(row
, col
, wxGRID_VALUE_FLOAT
) )
1846 val
= table
->GetValueAsDouble(row
, col
);
1851 text
= table
->GetValue(row
, col
);
1852 hasDouble
= text
.ToDouble(&val
);
1859 if ( m_width
== -1 )
1861 if ( m_precision
== -1 )
1863 // default width/precision
1864 m_format
= _T("%f");
1868 m_format
.Printf(_T("%%.%df"), m_precision
);
1871 else if ( m_precision
== -1 )
1873 // default precision
1874 m_format
.Printf(_T("%%%d.f"), m_width
);
1878 m_format
.Printf(_T("%%%d.%df"), m_width
, m_precision
);
1882 text
.Printf(m_format
, val
);
1885 //else: text already contains the string
1890 void wxGridCellFloatRenderer::Draw(wxGrid
& grid
,
1891 wxGridCellAttr
& attr
,
1893 const wxRect
& rectCell
,
1897 wxGridCellRenderer::Draw(grid
, attr
, dc
, rectCell
, row
, col
, isSelected
);
1899 SetTextColoursAndFont(grid
, attr
, dc
, isSelected
);
1901 // draw the text right aligned by default
1903 attr
.GetAlignment(&hAlign
, &vAlign
);
1904 hAlign
= wxALIGN_RIGHT
;
1906 wxRect rect
= rectCell
;
1909 grid
.DrawTextRectangle(dc
, GetString(grid
, row
, col
), rect
, hAlign
, vAlign
);
1912 wxSize
wxGridCellFloatRenderer::GetBestSize(wxGrid
& grid
,
1913 wxGridCellAttr
& attr
,
1917 return DoGetBestSize(attr
, dc
, GetString(grid
, row
, col
));
1920 void wxGridCellFloatRenderer::SetParameters(const wxString
& params
)
1924 // reset to defaults
1930 wxString tmp
= params
.BeforeFirst(_T(','));
1934 if ( tmp
.ToLong(&width
) )
1936 SetWidth((int)width
);
1940 wxLogDebug(_T("Invalid wxGridCellFloatRenderer width parameter string '%s ignored"), params
.c_str());
1944 tmp
= params
.AfterFirst(_T(','));
1948 if ( tmp
.ToLong(&precision
) )
1950 SetPrecision((int)precision
);
1954 wxLogDebug(_T("Invalid wxGridCellFloatRenderer precision parameter string '%s ignored"), params
.c_str());
1962 // ----------------------------------------------------------------------------
1963 // wxGridCellBoolRenderer
1964 // ----------------------------------------------------------------------------
1966 wxSize
wxGridCellBoolRenderer::ms_sizeCheckMark
;
1968 // FIXME these checkbox size calculations are really ugly...
1970 // between checkmark and box
1971 static const wxCoord wxGRID_CHECKMARK_MARGIN
= 2;
1973 wxSize
wxGridCellBoolRenderer::GetBestSize(wxGrid
& grid
,
1974 wxGridCellAttr
& WXUNUSED(attr
),
1979 // compute it only once (no locks for MT safeness in GUI thread...)
1980 if ( !ms_sizeCheckMark
.x
)
1982 // get checkbox size
1983 wxCheckBox
*checkbox
= new wxCheckBox(&grid
, wxID_ANY
, wxEmptyString
);
1984 wxSize size
= checkbox
->GetBestSize();
1985 wxCoord checkSize
= size
.y
+ 2*wxGRID_CHECKMARK_MARGIN
;
1987 // FIXME wxGTK::wxCheckBox::GetBestSize() gives "wrong" result
1988 #if defined(__WXGTK__) || defined(__WXMOTIF__)
1989 checkSize
-= size
.y
/ 2;
1994 ms_sizeCheckMark
.x
= ms_sizeCheckMark
.y
= checkSize
;
1997 return ms_sizeCheckMark
;
2000 void wxGridCellBoolRenderer::Draw(wxGrid
& grid
,
2001 wxGridCellAttr
& attr
,
2007 wxGridCellRenderer::Draw(grid
, attr
, dc
, rect
, row
, col
, isSelected
);
2009 // draw a check mark in the centre (ignoring alignment - TODO)
2010 wxSize size
= GetBestSize(grid
, attr
, dc
, row
, col
);
2012 // don't draw outside the cell
2013 wxCoord minSize
= wxMin(rect
.width
, rect
.height
);
2014 if ( size
.x
>= minSize
|| size
.y
>= minSize
)
2016 // and even leave (at least) 1 pixel margin
2017 size
.x
= size
.y
= minSize
- 2;
2020 // draw a border around checkmark
2022 attr
.GetAlignment(& hAlign
, &vAlign
);
2025 if (hAlign
== wxALIGN_CENTRE
)
2027 rectBorder
.x
= rect
.x
+ rect
.width
/2 - size
.x
/2;
2028 rectBorder
.y
= rect
.y
+ rect
.height
/2 - size
.y
/2;
2029 rectBorder
.width
= size
.x
;
2030 rectBorder
.height
= size
.y
;
2032 else if (hAlign
== wxALIGN_LEFT
)
2034 rectBorder
.x
= rect
.x
+ 2;
2035 rectBorder
.y
= rect
.y
+ rect
.height
/2 - size
.y
/2;
2036 rectBorder
.width
= size
.x
;
2037 rectBorder
.height
= size
.y
;
2039 else if (hAlign
== wxALIGN_RIGHT
)
2041 rectBorder
.x
= rect
.x
+ rect
.width
- size
.x
- 2;
2042 rectBorder
.y
= rect
.y
+ rect
.height
/2 - size
.y
/2;
2043 rectBorder
.width
= size
.x
;
2044 rectBorder
.height
= size
.y
;
2048 if ( grid
.GetTable()->CanGetValueAs(row
, col
, wxGRID_VALUE_BOOL
) )
2049 value
= grid
.GetTable()->GetValueAsBool(row
, col
);
2052 wxString
cellval( grid
.GetTable()->GetValue(row
, col
) );
2053 value
= !( !cellval
|| (cellval
== wxT("0")) );
2058 wxRect rectMark
= rectBorder
;
2060 // MSW DrawCheckMark() is weird (and should probably be changed...)
2061 rectMark
.Inflate(-wxGRID_CHECKMARK_MARGIN
/2);
2065 rectMark
.Inflate(-wxGRID_CHECKMARK_MARGIN
);
2068 dc
.SetTextForeground(attr
.GetTextColour());
2069 dc
.DrawCheckMark(rectMark
);
2072 dc
.SetBrush(*wxTRANSPARENT_BRUSH
);
2073 dc
.SetPen(wxPen(attr
.GetTextColour(), 1, wxSOLID
));
2074 dc
.DrawRectangle(rectBorder
);
2077 // ----------------------------------------------------------------------------
2079 // ----------------------------------------------------------------------------
2081 void wxGridCellAttr::Init(wxGridCellAttr
*attrDefault
)
2085 m_isReadOnly
= Unset
;
2090 m_attrkind
= wxGridCellAttr::Cell
;
2092 m_sizeRows
= m_sizeCols
= 1;
2093 m_overflow
= UnsetOverflow
;
2095 SetDefAttr(attrDefault
);
2098 wxGridCellAttr
*wxGridCellAttr::Clone() const
2100 wxGridCellAttr
*attr
= new wxGridCellAttr(m_defGridAttr
);
2102 if ( HasTextColour() )
2103 attr
->SetTextColour(GetTextColour());
2104 if ( HasBackgroundColour() )
2105 attr
->SetBackgroundColour(GetBackgroundColour());
2107 attr
->SetFont(GetFont());
2108 if ( HasAlignment() )
2109 attr
->SetAlignment(m_hAlign
, m_vAlign
);
2111 attr
->SetSize( m_sizeRows
, m_sizeCols
);
2115 attr
->SetRenderer(m_renderer
);
2116 m_renderer
->IncRef();
2120 attr
->SetEditor(m_editor
);
2125 attr
->SetReadOnly();
2127 attr
->SetKind( m_attrkind
);
2132 void wxGridCellAttr::MergeWith(wxGridCellAttr
*mergefrom
)
2134 if ( !HasTextColour() && mergefrom
->HasTextColour() )
2135 SetTextColour(mergefrom
->GetTextColour());
2136 if ( !HasBackgroundColour() && mergefrom
->HasBackgroundColour() )
2137 SetBackgroundColour(mergefrom
->GetBackgroundColour());
2138 if ( !HasFont() && mergefrom
->HasFont() )
2139 SetFont(mergefrom
->GetFont());
2140 if ( !HasAlignment() && mergefrom
->HasAlignment() ){
2142 mergefrom
->GetAlignment( &hAlign
, &vAlign
);
2143 SetAlignment(hAlign
, vAlign
);
2146 mergefrom
->GetSize( &m_sizeRows
, &m_sizeCols
);
2148 // Directly access member functions as GetRender/Editor don't just return
2149 // m_renderer/m_editor
2151 // Maybe add support for merge of Render and Editor?
2152 if (!HasRenderer() && mergefrom
->HasRenderer() )
2154 m_renderer
= mergefrom
->m_renderer
;
2155 m_renderer
->IncRef();
2157 if ( !HasEditor() && mergefrom
->HasEditor() )
2159 m_editor
= mergefrom
->m_editor
;
2162 if ( !HasReadWriteMode() && mergefrom
->HasReadWriteMode() )
2163 SetReadOnly(mergefrom
->IsReadOnly());
2165 if (!HasOverflowMode() && mergefrom
->HasOverflowMode() )
2166 SetOverflow(mergefrom
->GetOverflow());
2168 SetDefAttr(mergefrom
->m_defGridAttr
);
2171 void wxGridCellAttr::SetSize(int num_rows
, int num_cols
)
2173 // The size of a cell is normally 1,1
2175 // If this cell is larger (2,2) then this is the top left cell
2176 // the other cells that will be covered (lower right cells) must be
2177 // set to negative or zero values such that
2178 // row + num_rows of the covered cell points to the larger cell (this cell)
2179 // same goes for the col + num_cols.
2181 // Size of 0,0 is NOT valid, neither is <=0 and any positive value
2183 wxASSERT_MSG( (!((num_rows
>0)&&(num_cols
<=0)) ||
2184 !((num_rows
<=0)&&(num_cols
>0)) ||
2185 !((num_rows
==0)&&(num_cols
==0))),
2186 wxT("wxGridCellAttr::SetSize only takes two postive values or negative/zero values"));
2188 m_sizeRows
= num_rows
;
2189 m_sizeCols
= num_cols
;
2192 const wxColour
& wxGridCellAttr::GetTextColour() const
2194 if (HasTextColour())
2198 else if (m_defGridAttr
&& m_defGridAttr
!= this)
2200 return m_defGridAttr
->GetTextColour();
2204 wxFAIL_MSG(wxT("Missing default cell attribute"));
2205 return wxNullColour
;
2210 const wxColour
& wxGridCellAttr::GetBackgroundColour() const
2212 if (HasBackgroundColour())
2214 else if (m_defGridAttr
&& m_defGridAttr
!= this)
2215 return m_defGridAttr
->GetBackgroundColour();
2218 wxFAIL_MSG(wxT("Missing default cell attribute"));
2219 return wxNullColour
;
2224 const wxFont
& wxGridCellAttr::GetFont() const
2228 else if (m_defGridAttr
&& m_defGridAttr
!= this)
2229 return m_defGridAttr
->GetFont();
2232 wxFAIL_MSG(wxT("Missing default cell attribute"));
2238 void wxGridCellAttr::GetAlignment(int *hAlign
, int *vAlign
) const
2242 if ( hAlign
) *hAlign
= m_hAlign
;
2243 if ( vAlign
) *vAlign
= m_vAlign
;
2245 else if (m_defGridAttr
&& m_defGridAttr
!= this)
2246 m_defGridAttr
->GetAlignment(hAlign
, vAlign
);
2249 wxFAIL_MSG(wxT("Missing default cell attribute"));
2253 void wxGridCellAttr::GetSize( int *num_rows
, int *num_cols
) const
2255 if ( num_rows
) *num_rows
= m_sizeRows
;
2256 if ( num_cols
) *num_cols
= m_sizeCols
;
2259 // GetRenderer and GetEditor use a slightly different decision path about
2260 // which attribute to use. If a non-default attr object has one then it is
2261 // used, otherwise the default editor or renderer is fetched from the grid and
2262 // used. It should be the default for the data type of the cell. If it is
2263 // NULL (because the table has a type that the grid does not have in its
2264 // registry,) then the grid's default editor or renderer is used.
2266 wxGridCellRenderer
* wxGridCellAttr::GetRenderer(wxGrid
* grid
, int row
, int col
) const
2268 wxGridCellRenderer
*renderer
;
2270 if ( m_renderer
&& this != m_defGridAttr
)
2272 // use the cells renderer if it has one
2273 renderer
= m_renderer
;
2276 else // no non default cell renderer
2278 // get default renderer for the data type
2281 // GetDefaultRendererForCell() will do IncRef() for us
2282 renderer
= grid
->GetDefaultRendererForCell(row
, col
);
2291 if (m_defGridAttr
&& this != m_defGridAttr
)
2293 // if we still don't have one then use the grid default
2294 // (no need for IncRef() here neither)
2295 renderer
= m_defGridAttr
->GetRenderer(NULL
, 0, 0);
2297 else // default grid attr
2299 // use m_renderer which we had decided not to use initially
2300 renderer
= m_renderer
;
2307 // we're supposed to always find something
2308 wxASSERT_MSG(renderer
, wxT("Missing default cell renderer"));
2313 // same as above, except for s/renderer/editor/g
2314 wxGridCellEditor
* wxGridCellAttr::GetEditor(wxGrid
* grid
, int row
, int col
) const
2316 wxGridCellEditor
*editor
;
2318 if ( m_editor
&& this != m_defGridAttr
)
2320 // use the cells editor if it has one
2324 else // no non default cell editor
2326 // get default editor for the data type
2329 // GetDefaultEditorForCell() will do IncRef() for us
2330 editor
= grid
->GetDefaultEditorForCell(row
, col
);
2339 if ( m_defGridAttr
&& this != m_defGridAttr
)
2341 // if we still don't have one then use the grid default
2342 // (no need for IncRef() here neither)
2343 editor
= m_defGridAttr
->GetEditor(NULL
, 0, 0);
2345 else // default grid attr
2347 // use m_editor which we had decided not to use initially
2355 // we're supposed to always find something
2356 wxASSERT_MSG(editor
, wxT("Missing default cell editor"));
2361 // ----------------------------------------------------------------------------
2362 // wxGridCellAttrData
2363 // ----------------------------------------------------------------------------
2365 void wxGridCellAttrData::SetAttr(wxGridCellAttr
*attr
, int row
, int col
)
2367 int n
= FindIndex(row
, col
);
2368 if ( n
== wxNOT_FOUND
)
2370 // add the attribute
2371 m_attrs
.Add(new wxGridCellWithAttr(row
, col
, attr
));
2375 // free the old attribute
2376 m_attrs
[(size_t)n
].attr
->DecRef();
2380 // change the attribute
2381 m_attrs
[(size_t)n
].attr
= attr
;
2385 // remove this attribute
2386 m_attrs
.RemoveAt((size_t)n
);
2391 wxGridCellAttr
*wxGridCellAttrData::GetAttr(int row
, int col
) const
2393 wxGridCellAttr
*attr
= (wxGridCellAttr
*)NULL
;
2395 int n
= FindIndex(row
, col
);
2396 if ( n
!= wxNOT_FOUND
)
2398 attr
= m_attrs
[(size_t)n
].attr
;
2405 void wxGridCellAttrData::UpdateAttrRows( size_t pos
, int numRows
)
2407 size_t count
= m_attrs
.GetCount();
2408 for ( size_t n
= 0; n
< count
; n
++ )
2410 wxGridCellCoords
& coords
= m_attrs
[n
].coords
;
2411 wxCoord row
= coords
.GetRow();
2412 if ((size_t)row
>= pos
)
2416 // If rows inserted, include row counter where necessary
2417 coords
.SetRow(row
+ numRows
);
2419 else if (numRows
< 0)
2421 // If rows deleted ...
2422 if ((size_t)row
>= pos
- numRows
)
2424 // ...either decrement row counter (if row still exists)...
2425 coords
.SetRow(row
+ numRows
);
2429 // ...or remove the attribute
2430 // No need to DecRef the attribute itself since this is
2431 // done be wxGridCellWithAttr's destructor!
2432 m_attrs
.RemoveAt(n
);
2440 void wxGridCellAttrData::UpdateAttrCols( size_t pos
, int numCols
)
2442 size_t count
= m_attrs
.GetCount();
2443 for ( size_t n
= 0; n
< count
; n
++ )
2445 wxGridCellCoords
& coords
= m_attrs
[n
].coords
;
2446 wxCoord col
= coords
.GetCol();
2447 if ( (size_t)col
>= pos
)
2451 // If rows inserted, include row counter where necessary
2452 coords
.SetCol(col
+ numCols
);
2454 else if (numCols
< 0)
2456 // If rows deleted ...
2457 if ((size_t)col
>= pos
- numCols
)
2459 // ...either decrement row counter (if row still exists)...
2460 coords
.SetCol(col
+ numCols
);
2464 // ...or remove the attribute
2465 // No need to DecRef the attribute itself since this is
2466 // done be wxGridCellWithAttr's destructor!
2467 m_attrs
.RemoveAt(n
);
2475 int wxGridCellAttrData::FindIndex(int row
, int col
) const
2477 size_t count
= m_attrs
.GetCount();
2478 for ( size_t n
= 0; n
< count
; n
++ )
2480 const wxGridCellCoords
& coords
= m_attrs
[n
].coords
;
2481 if ( (coords
.GetRow() == row
) && (coords
.GetCol() == col
) )
2490 // ----------------------------------------------------------------------------
2491 // wxGridRowOrColAttrData
2492 // ----------------------------------------------------------------------------
2494 wxGridRowOrColAttrData::~wxGridRowOrColAttrData()
2496 size_t count
= m_attrs
.Count();
2497 for ( size_t n
= 0; n
< count
; n
++ )
2499 m_attrs
[n
]->DecRef();
2503 wxGridCellAttr
*wxGridRowOrColAttrData::GetAttr(int rowOrCol
) const
2505 wxGridCellAttr
*attr
= (wxGridCellAttr
*)NULL
;
2507 int n
= m_rowsOrCols
.Index(rowOrCol
);
2508 if ( n
!= wxNOT_FOUND
)
2510 attr
= m_attrs
[(size_t)n
];
2517 void wxGridRowOrColAttrData::SetAttr(wxGridCellAttr
*attr
, int rowOrCol
)
2519 int i
= m_rowsOrCols
.Index(rowOrCol
);
2520 if ( i
== wxNOT_FOUND
)
2522 // add the attribute
2523 m_rowsOrCols
.Add(rowOrCol
);
2528 size_t n
= (size_t)i
;
2531 // change the attribute
2532 m_attrs
[n
]->DecRef();
2537 // remove this attribute
2538 m_attrs
[n
]->DecRef();
2539 m_rowsOrCols
.RemoveAt(n
);
2540 m_attrs
.RemoveAt(n
);
2545 void wxGridRowOrColAttrData::UpdateAttrRowsOrCols( size_t pos
, int numRowsOrCols
)
2547 size_t count
= m_attrs
.GetCount();
2548 for ( size_t n
= 0; n
< count
; n
++ )
2550 int & rowOrCol
= m_rowsOrCols
[n
];
2551 if ( (size_t)rowOrCol
>= pos
)
2553 if ( numRowsOrCols
> 0 )
2555 // If rows inserted, include row counter where necessary
2556 rowOrCol
+= numRowsOrCols
;
2558 else if ( numRowsOrCols
< 0)
2560 // If rows deleted, either decrement row counter (if row still exists)
2561 if ((size_t)rowOrCol
>= pos
- numRowsOrCols
)
2562 rowOrCol
+= numRowsOrCols
;
2565 m_rowsOrCols
.RemoveAt(n
);
2566 m_attrs
[n
]->DecRef();
2567 m_attrs
.RemoveAt(n
);
2575 // ----------------------------------------------------------------------------
2576 // wxGridCellAttrProvider
2577 // ----------------------------------------------------------------------------
2579 wxGridCellAttrProvider::wxGridCellAttrProvider()
2581 m_data
= (wxGridCellAttrProviderData
*)NULL
;
2584 wxGridCellAttrProvider::~wxGridCellAttrProvider()
2589 void wxGridCellAttrProvider::InitData()
2591 m_data
= new wxGridCellAttrProviderData
;
2594 wxGridCellAttr
*wxGridCellAttrProvider::GetAttr(int row
, int col
,
2595 wxGridCellAttr::wxAttrKind kind
) const
2597 wxGridCellAttr
*attr
= (wxGridCellAttr
*)NULL
;
2602 case (wxGridCellAttr::Any
):
2603 //Get cached merge attributes.
2604 // Currenlty not used as no cache implemented as not mutiable
2605 // attr = m_data->m_mergeAttr.GetAttr(row, col);
2608 //Basicaly implement old version.
2609 //Also check merge cache, so we don't have to re-merge every time..
2610 wxGridCellAttr
*attrcell
= m_data
->m_cellAttrs
.GetAttr(row
, col
);
2611 wxGridCellAttr
*attrrow
= m_data
->m_rowAttrs
.GetAttr(row
);
2612 wxGridCellAttr
*attrcol
= m_data
->m_colAttrs
.GetAttr(col
);
2614 if((attrcell
!= attrrow
) && (attrrow
!= attrcol
) && (attrcell
!= attrcol
)){
2615 // Two or more are non NULL
2616 attr
= new wxGridCellAttr
;
2617 attr
->SetKind(wxGridCellAttr::Merged
);
2621 attr
->MergeWith(attrcell
);
2625 attr
->MergeWith(attrcol
);
2629 attr
->MergeWith(attrrow
);
2632 //store merge attr if cache implemented
2634 //m_data->m_mergeAttr.SetAttr(attr, row, col);
2638 // one or none is non null return it or null.
2639 if(attrrow
) attr
= attrrow
;
2655 case (wxGridCellAttr::Cell
):
2656 attr
= m_data
->m_cellAttrs
.GetAttr(row
, col
);
2658 case (wxGridCellAttr::Col
):
2659 attr
= m_data
->m_colAttrs
.GetAttr(col
);
2661 case (wxGridCellAttr::Row
):
2662 attr
= m_data
->m_rowAttrs
.GetAttr(row
);
2666 // (wxGridCellAttr::Default):
2667 // (wxGridCellAttr::Merged):
2674 void wxGridCellAttrProvider::SetAttr(wxGridCellAttr
*attr
,
2680 m_data
->m_cellAttrs
.SetAttr(attr
, row
, col
);
2683 void wxGridCellAttrProvider::SetRowAttr(wxGridCellAttr
*attr
, int row
)
2688 m_data
->m_rowAttrs
.SetAttr(attr
, row
);
2691 void wxGridCellAttrProvider::SetColAttr(wxGridCellAttr
*attr
, int col
)
2696 m_data
->m_colAttrs
.SetAttr(attr
, col
);
2699 void wxGridCellAttrProvider::UpdateAttrRows( size_t pos
, int numRows
)
2703 m_data
->m_cellAttrs
.UpdateAttrRows( pos
, numRows
);
2705 m_data
->m_rowAttrs
.UpdateAttrRowsOrCols( pos
, numRows
);
2709 void wxGridCellAttrProvider::UpdateAttrCols( size_t pos
, int numCols
)
2713 m_data
->m_cellAttrs
.UpdateAttrCols( pos
, numCols
);
2715 m_data
->m_colAttrs
.UpdateAttrRowsOrCols( pos
, numCols
);
2719 // ----------------------------------------------------------------------------
2720 // wxGridTypeRegistry
2721 // ----------------------------------------------------------------------------
2723 wxGridTypeRegistry::~wxGridTypeRegistry()
2725 size_t count
= m_typeinfo
.Count();
2726 for ( size_t i
= 0; i
< count
; i
++ )
2727 delete m_typeinfo
[i
];
2731 void wxGridTypeRegistry::RegisterDataType(const wxString
& typeName
,
2732 wxGridCellRenderer
* renderer
,
2733 wxGridCellEditor
* editor
)
2735 wxGridDataTypeInfo
* info
= new wxGridDataTypeInfo(typeName
, renderer
, editor
);
2737 // is it already registered?
2738 int loc
= FindRegisteredDataType(typeName
);
2739 if ( loc
!= wxNOT_FOUND
)
2741 delete m_typeinfo
[loc
];
2742 m_typeinfo
[loc
] = info
;
2746 m_typeinfo
.Add(info
);
2750 int wxGridTypeRegistry::FindRegisteredDataType(const wxString
& typeName
)
2752 size_t count
= m_typeinfo
.GetCount();
2753 for ( size_t i
= 0; i
< count
; i
++ )
2755 if ( typeName
== m_typeinfo
[i
]->m_typeName
)
2764 int wxGridTypeRegistry::FindDataType(const wxString
& typeName
)
2766 int index
= FindRegisteredDataType(typeName
);
2767 if ( index
== wxNOT_FOUND
)
2769 // check whether this is one of the standard ones, in which case
2770 // register it "on the fly"
2772 if ( typeName
== wxGRID_VALUE_STRING
)
2774 RegisterDataType(wxGRID_VALUE_STRING
,
2775 new wxGridCellStringRenderer
,
2776 new wxGridCellTextEditor
);
2778 #endif // wxUSE_TEXTCTRL
2780 if ( typeName
== wxGRID_VALUE_BOOL
)
2782 RegisterDataType(wxGRID_VALUE_BOOL
,
2783 new wxGridCellBoolRenderer
,
2784 new wxGridCellBoolEditor
);
2786 #endif // wxUSE_CHECKBOX
2788 if ( typeName
== wxGRID_VALUE_NUMBER
)
2790 RegisterDataType(wxGRID_VALUE_NUMBER
,
2791 new wxGridCellNumberRenderer
,
2792 new wxGridCellNumberEditor
);
2794 else if ( typeName
== wxGRID_VALUE_FLOAT
)
2796 RegisterDataType(wxGRID_VALUE_FLOAT
,
2797 new wxGridCellFloatRenderer
,
2798 new wxGridCellFloatEditor
);
2800 #endif // wxUSE_TEXTCTRL
2802 if ( typeName
== wxGRID_VALUE_CHOICE
)
2804 RegisterDataType(wxGRID_VALUE_CHOICE
,
2805 new wxGridCellStringRenderer
,
2806 new wxGridCellChoiceEditor
);
2808 #endif // wxUSE_COMBOBOX
2813 // we get here only if just added the entry for this type, so return
2815 index
= m_typeinfo
.GetCount() - 1;
2821 int wxGridTypeRegistry::FindOrCloneDataType(const wxString
& typeName
)
2823 int index
= FindDataType(typeName
);
2824 if ( index
== wxNOT_FOUND
)
2826 // the first part of the typename is the "real" type, anything after ':'
2827 // are the parameters for the renderer
2828 index
= FindDataType(typeName
.BeforeFirst(_T(':')));
2829 if ( index
== wxNOT_FOUND
)
2834 wxGridCellRenderer
*renderer
= GetRenderer(index
);
2835 wxGridCellRenderer
*rendererOld
= renderer
;
2836 renderer
= renderer
->Clone();
2837 rendererOld
->DecRef();
2839 wxGridCellEditor
*editor
= GetEditor(index
);
2840 wxGridCellEditor
*editorOld
= editor
;
2841 editor
= editor
->Clone();
2842 editorOld
->DecRef();
2844 // do it even if there are no parameters to reset them to defaults
2845 wxString params
= typeName
.AfterFirst(_T(':'));
2846 renderer
->SetParameters(params
);
2847 editor
->SetParameters(params
);
2849 // register the new typename
2850 RegisterDataType(typeName
, renderer
, editor
);
2852 // we just registered it, it's the last one
2853 index
= m_typeinfo
.GetCount() - 1;
2859 wxGridCellRenderer
* wxGridTypeRegistry::GetRenderer(int index
)
2861 wxGridCellRenderer
* renderer
= m_typeinfo
[index
]->m_renderer
;
2867 wxGridCellEditor
* wxGridTypeRegistry::GetEditor(int index
)
2869 wxGridCellEditor
* editor
= m_typeinfo
[index
]->m_editor
;
2875 // ----------------------------------------------------------------------------
2877 // ----------------------------------------------------------------------------
2879 IMPLEMENT_ABSTRACT_CLASS( wxGridTableBase
, wxObject
)
2882 wxGridTableBase::wxGridTableBase()
2884 m_view
= (wxGrid
*) NULL
;
2885 m_attrProvider
= (wxGridCellAttrProvider
*) NULL
;
2888 wxGridTableBase::~wxGridTableBase()
2890 delete m_attrProvider
;
2893 void wxGridTableBase::SetAttrProvider(wxGridCellAttrProvider
*attrProvider
)
2895 delete m_attrProvider
;
2896 m_attrProvider
= attrProvider
;
2899 bool wxGridTableBase::CanHaveAttributes()
2901 if ( ! GetAttrProvider() )
2903 // use the default attr provider by default
2904 SetAttrProvider(new wxGridCellAttrProvider
);
2909 wxGridCellAttr
*wxGridTableBase::GetAttr(int row
, int col
, wxGridCellAttr::wxAttrKind kind
)
2911 if ( m_attrProvider
)
2912 return m_attrProvider
->GetAttr(row
, col
, kind
);
2914 return (wxGridCellAttr
*)NULL
;
2917 void wxGridTableBase::SetAttr(wxGridCellAttr
* attr
, int row
, int col
)
2919 if ( m_attrProvider
)
2921 attr
->SetKind(wxGridCellAttr::Cell
);
2922 m_attrProvider
->SetAttr(attr
, row
, col
);
2926 // as we take ownership of the pointer and don't store it, we must
2932 void wxGridTableBase::SetRowAttr(wxGridCellAttr
*attr
, int row
)
2934 if ( m_attrProvider
)
2936 attr
->SetKind(wxGridCellAttr::Row
);
2937 m_attrProvider
->SetRowAttr(attr
, row
);
2941 // as we take ownership of the pointer and don't store it, we must
2947 void wxGridTableBase::SetColAttr(wxGridCellAttr
*attr
, int col
)
2949 if ( m_attrProvider
)
2951 attr
->SetKind(wxGridCellAttr::Col
);
2952 m_attrProvider
->SetColAttr(attr
, col
);
2956 // as we take ownership of the pointer and don't store it, we must
2962 bool wxGridTableBase::InsertRows( size_t WXUNUSED(pos
),
2963 size_t WXUNUSED(numRows
) )
2965 wxFAIL_MSG( wxT("Called grid table class function InsertRows\nbut your derived table class does not override this function") );
2970 bool wxGridTableBase::AppendRows( size_t WXUNUSED(numRows
) )
2972 wxFAIL_MSG( wxT("Called grid table class function AppendRows\nbut your derived table class does not override this function"));
2977 bool wxGridTableBase::DeleteRows( size_t WXUNUSED(pos
),
2978 size_t WXUNUSED(numRows
) )
2980 wxFAIL_MSG( wxT("Called grid table class function DeleteRows\nbut your derived table class does not override this function"));
2985 bool wxGridTableBase::InsertCols( size_t WXUNUSED(pos
),
2986 size_t WXUNUSED(numCols
) )
2988 wxFAIL_MSG( wxT("Called grid table class function InsertCols\nbut your derived table class does not override this function"));
2993 bool wxGridTableBase::AppendCols( size_t WXUNUSED(numCols
) )
2995 wxFAIL_MSG(wxT("Called grid table class function AppendCols\nbut your derived table class does not override this function"));
3000 bool wxGridTableBase::DeleteCols( size_t WXUNUSED(pos
),
3001 size_t WXUNUSED(numCols
) )
3003 wxFAIL_MSG( wxT("Called grid table class function DeleteCols\nbut your derived table class does not override this function"));
3009 wxString
wxGridTableBase::GetRowLabelValue( int row
)
3012 s
<< row
+ 1; // RD: Starting the rows at zero confuses users, no matter
3013 // how much it makes sense to us geeks.
3017 wxString
wxGridTableBase::GetColLabelValue( int col
)
3019 // default col labels are:
3020 // cols 0 to 25 : A-Z
3021 // cols 26 to 675 : AA-ZZ
3026 for ( n
= 1; ; n
++ )
3028 s
+= (wxChar
) (_T('A') + (wxChar
)( col%26
));
3030 if ( col
< 0 ) break;
3033 // reverse the string...
3035 for ( i
= 0; i
< n
; i
++ )
3044 wxString
wxGridTableBase::GetTypeName( int WXUNUSED(row
), int WXUNUSED(col
) )
3046 return wxGRID_VALUE_STRING
;
3049 bool wxGridTableBase::CanGetValueAs( int WXUNUSED(row
), int WXUNUSED(col
),
3050 const wxString
& typeName
)
3052 return typeName
== wxGRID_VALUE_STRING
;
3055 bool wxGridTableBase::CanSetValueAs( int row
, int col
, const wxString
& typeName
)
3057 return CanGetValueAs(row
, col
, typeName
);
3060 long wxGridTableBase::GetValueAsLong( int WXUNUSED(row
), int WXUNUSED(col
) )
3065 double wxGridTableBase::GetValueAsDouble( int WXUNUSED(row
), int WXUNUSED(col
) )
3070 bool wxGridTableBase::GetValueAsBool( int WXUNUSED(row
), int WXUNUSED(col
) )
3075 void wxGridTableBase::SetValueAsLong( int WXUNUSED(row
), int WXUNUSED(col
),
3076 long WXUNUSED(value
) )
3080 void wxGridTableBase::SetValueAsDouble( int WXUNUSED(row
), int WXUNUSED(col
),
3081 double WXUNUSED(value
) )
3085 void wxGridTableBase::SetValueAsBool( int WXUNUSED(row
), int WXUNUSED(col
),
3086 bool WXUNUSED(value
) )
3091 void* wxGridTableBase::GetValueAsCustom( int WXUNUSED(row
), int WXUNUSED(col
),
3092 const wxString
& WXUNUSED(typeName
) )
3097 void wxGridTableBase::SetValueAsCustom( int WXUNUSED(row
), int WXUNUSED(col
),
3098 const wxString
& WXUNUSED(typeName
),
3099 void* WXUNUSED(value
) )
3103 //////////////////////////////////////////////////////////////////////
3105 // Message class for the grid table to send requests and notifications
3109 wxGridTableMessage::wxGridTableMessage()
3111 m_table
= (wxGridTableBase
*) NULL
;
3117 wxGridTableMessage::wxGridTableMessage( wxGridTableBase
*table
, int id
,
3118 int commandInt1
, int commandInt2
)
3122 m_comInt1
= commandInt1
;
3123 m_comInt2
= commandInt2
;
3128 //////////////////////////////////////////////////////////////////////
3130 // A basic grid table for string data. An object of this class will
3131 // created by wxGrid if you don't specify an alternative table class.
3134 WX_DEFINE_OBJARRAY(wxGridStringArray
)
3136 IMPLEMENT_DYNAMIC_CLASS( wxGridStringTable
, wxGridTableBase
)
3138 wxGridStringTable::wxGridStringTable()
3143 wxGridStringTable::wxGridStringTable( int numRows
, int numCols
)
3146 m_data
.Alloc( numRows
);
3149 sa
.Alloc( numCols
);
3150 sa
.Add( wxEmptyString
, numCols
);
3152 m_data
.Add( sa
, numRows
);
3155 wxGridStringTable::~wxGridStringTable()
3159 int wxGridStringTable::GetNumberRows()
3161 return m_data
.GetCount();
3164 int wxGridStringTable::GetNumberCols()
3166 if ( m_data
.GetCount() > 0 )
3167 return m_data
[0].GetCount();
3172 wxString
wxGridStringTable::GetValue( int row
, int col
)
3174 wxCHECK_MSG( (row
< GetNumberRows()) && (col
< GetNumberCols()),
3176 _T("invalid row or column index in wxGridStringTable") );
3178 return m_data
[row
][col
];
3181 void wxGridStringTable::SetValue( int row
, int col
, const wxString
& value
)
3183 wxCHECK_RET( (row
< GetNumberRows()) && (col
< GetNumberCols()),
3184 _T("invalid row or column index in wxGridStringTable") );
3186 m_data
[row
][col
] = value
;
3189 bool wxGridStringTable::IsEmptyCell( int row
, int col
)
3191 wxCHECK_MSG( (row
< GetNumberRows()) && (col
< GetNumberCols()),
3193 _T("invalid row or column index in wxGridStringTable") );
3195 return (m_data
[row
][col
] == wxEmptyString
);
3198 void wxGridStringTable::Clear()
3201 int numRows
, numCols
;
3203 numRows
= m_data
.GetCount();
3206 numCols
= m_data
[0].GetCount();
3208 for ( row
= 0; row
< numRows
; row
++ )
3210 for ( col
= 0; col
< numCols
; col
++ )
3212 m_data
[row
][col
] = wxEmptyString
;
3219 bool wxGridStringTable::InsertRows( size_t pos
, size_t numRows
)
3221 size_t curNumRows
= m_data
.GetCount();
3222 size_t curNumCols
= ( curNumRows
> 0 ? m_data
[0].GetCount() :
3223 ( GetView() ? GetView()->GetNumberCols() : 0 ) );
3225 if ( pos
>= curNumRows
)
3227 return AppendRows( numRows
);
3231 sa
.Alloc( curNumCols
);
3232 sa
.Add( wxEmptyString
, curNumCols
);
3233 m_data
.Insert( sa
, pos
, numRows
);
3236 wxGridTableMessage
msg( this,
3237 wxGRIDTABLE_NOTIFY_ROWS_INSERTED
,
3241 GetView()->ProcessTableMessage( msg
);
3247 bool wxGridStringTable::AppendRows( size_t numRows
)
3249 size_t curNumRows
= m_data
.GetCount();
3250 size_t curNumCols
= ( curNumRows
> 0 ? m_data
[0].GetCount() :
3251 ( GetView() ? GetView()->GetNumberCols() : 0 ) );
3254 if ( curNumCols
> 0 )
3256 sa
.Alloc( curNumCols
);
3257 sa
.Add( wxEmptyString
, curNumCols
);
3260 m_data
.Add( sa
, numRows
);
3264 wxGridTableMessage
msg( this,
3265 wxGRIDTABLE_NOTIFY_ROWS_APPENDED
,
3268 GetView()->ProcessTableMessage( msg
);
3274 bool wxGridStringTable::DeleteRows( size_t pos
, size_t numRows
)
3276 size_t curNumRows
= m_data
.GetCount();
3278 if ( pos
>= curNumRows
)
3280 wxFAIL_MSG( wxString::Format
3282 wxT("Called wxGridStringTable::DeleteRows(pos=%lu, N=%lu)\nPos value is invalid for present table with %lu rows"),
3284 (unsigned long)numRows
,
3285 (unsigned long)curNumRows
3291 if ( numRows
> curNumRows
- pos
)
3293 numRows
= curNumRows
- pos
;
3296 if ( numRows
>= curNumRows
)
3302 m_data
.RemoveAt( pos
, numRows
);
3306 wxGridTableMessage
msg( this,
3307 wxGRIDTABLE_NOTIFY_ROWS_DELETED
,
3311 GetView()->ProcessTableMessage( msg
);
3317 bool wxGridStringTable::InsertCols( size_t pos
, size_t numCols
)
3321 size_t curNumRows
= m_data
.GetCount();
3322 size_t curNumCols
= ( curNumRows
> 0 ? m_data
[0].GetCount() :
3323 ( GetView() ? GetView()->GetNumberCols() : 0 ) );
3325 if ( pos
>= curNumCols
)
3327 return AppendCols( numCols
);
3330 for ( row
= 0; row
< curNumRows
; row
++ )
3332 for ( col
= pos
; col
< pos
+ numCols
; col
++ )
3334 m_data
[row
].Insert( wxEmptyString
, col
);
3339 wxGridTableMessage
msg( this,
3340 wxGRIDTABLE_NOTIFY_COLS_INSERTED
,
3344 GetView()->ProcessTableMessage( msg
);
3350 bool wxGridStringTable::AppendCols( size_t numCols
)
3354 size_t curNumRows
= m_data
.GetCount();
3358 // TODO: something better than this ?
3360 wxFAIL_MSG( wxT("Unable to append cols to a grid table with no rows.\nCall AppendRows() first") );
3365 for ( row
= 0; row
< curNumRows
; row
++ )
3367 m_data
[row
].Add( wxEmptyString
, numCols
);
3372 wxGridTableMessage
msg( this,
3373 wxGRIDTABLE_NOTIFY_COLS_APPENDED
,
3376 GetView()->ProcessTableMessage( msg
);
3382 bool wxGridStringTable::DeleteCols( size_t pos
, size_t numCols
)
3386 size_t curNumRows
= m_data
.GetCount();
3387 size_t curNumCols
= ( curNumRows
> 0 ? m_data
[0].GetCount() :
3388 ( GetView() ? GetView()->GetNumberCols() : 0 ) );
3390 if ( pos
>= curNumCols
)
3392 wxFAIL_MSG( wxString::Format
3394 wxT("Called wxGridStringTable::DeleteCols(pos=%lu, N=%lu)\nPos value is invalid for present table with %lu cols"),
3396 (unsigned long)numCols
,
3397 (unsigned long)curNumCols
3402 if ( numCols
> curNumCols
- pos
)
3404 numCols
= curNumCols
- pos
;
3407 for ( row
= 0; row
< curNumRows
; row
++ )
3409 if ( numCols
>= curNumCols
)
3411 m_data
[row
].Clear();
3415 m_data
[row
].RemoveAt( pos
, numCols
);
3420 wxGridTableMessage
msg( this,
3421 wxGRIDTABLE_NOTIFY_COLS_DELETED
,
3425 GetView()->ProcessTableMessage( msg
);
3431 wxString
wxGridStringTable::GetRowLabelValue( int row
)
3433 if ( row
> (int)(m_rowLabels
.GetCount()) - 1 )
3435 // using default label
3437 return wxGridTableBase::GetRowLabelValue( row
);
3441 return m_rowLabels
[ row
];
3445 wxString
wxGridStringTable::GetColLabelValue( int col
)
3447 if ( col
> (int)(m_colLabels
.GetCount()) - 1 )
3449 // using default label
3451 return wxGridTableBase::GetColLabelValue( col
);
3455 return m_colLabels
[ col
];
3459 void wxGridStringTable::SetRowLabelValue( int row
, const wxString
& value
)
3461 if ( row
> (int)(m_rowLabels
.GetCount()) - 1 )
3463 int n
= m_rowLabels
.GetCount();
3465 for ( i
= n
; i
<= row
; i
++ )
3467 m_rowLabels
.Add( wxGridTableBase::GetRowLabelValue(i
) );
3471 m_rowLabels
[row
] = value
;
3474 void wxGridStringTable::SetColLabelValue( int col
, const wxString
& value
)
3476 if ( col
> (int)(m_colLabels
.GetCount()) - 1 )
3478 int n
= m_colLabels
.GetCount();
3480 for ( i
= n
; i
<= col
; i
++ )
3482 m_colLabels
.Add( wxGridTableBase::GetColLabelValue(i
) );
3486 m_colLabels
[col
] = value
;
3491 //////////////////////////////////////////////////////////////////////
3492 //////////////////////////////////////////////////////////////////////
3494 IMPLEMENT_DYNAMIC_CLASS( wxGridRowLabelWindow
, wxWindow
)
3496 BEGIN_EVENT_TABLE( wxGridRowLabelWindow
, wxWindow
)
3497 EVT_PAINT( wxGridRowLabelWindow::OnPaint
)
3498 EVT_MOUSEWHEEL( wxGridRowLabelWindow::OnMouseWheel
)
3499 EVT_MOUSE_EVENTS( wxGridRowLabelWindow::OnMouseEvent
)
3500 EVT_KEY_DOWN( wxGridRowLabelWindow::OnKeyDown
)
3501 EVT_KEY_UP( wxGridRowLabelWindow::OnKeyUp
)
3502 EVT_CHAR ( wxGridRowLabelWindow::OnChar
)
3505 wxGridRowLabelWindow::wxGridRowLabelWindow( wxGrid
*parent
,
3507 const wxPoint
&pos
, const wxSize
&size
)
3508 : wxWindow( parent
, id
, pos
, size
, wxWANTS_CHARS
|wxBORDER_NONE
|wxFULL_REPAINT_ON_RESIZE
)
3513 void wxGridRowLabelWindow::OnPaint( wxPaintEvent
& WXUNUSED(event
) )
3517 // NO - don't do this because it will set both the x and y origin
3518 // coords to match the parent scrolled window and we just want to
3519 // set the y coord - MB
3521 // m_owner->PrepareDC( dc );
3524 m_owner
->CalcUnscrolledPosition( 0, 0, &x
, &y
);
3525 dc
.SetDeviceOrigin( 0, -y
);
3527 wxArrayInt rows
= m_owner
->CalcRowLabelsExposed( GetUpdateRegion() );
3528 m_owner
->DrawRowLabels( dc
, rows
);
3532 void wxGridRowLabelWindow::OnMouseEvent( wxMouseEvent
& event
)
3534 m_owner
->ProcessRowLabelMouseEvent( event
);
3538 void wxGridRowLabelWindow::OnMouseWheel( wxMouseEvent
& event
)
3540 m_owner
->GetEventHandler()->ProcessEvent(event
);
3544 // This seems to be required for wxMotif otherwise the mouse
3545 // cursor must be in the cell edit control to get key events
3547 void wxGridRowLabelWindow::OnKeyDown( wxKeyEvent
& event
)
3549 if ( !m_owner
->GetEventHandler()->ProcessEvent( event
) ) event
.Skip();
3552 void wxGridRowLabelWindow::OnKeyUp( wxKeyEvent
& event
)
3554 if ( !m_owner
->GetEventHandler()->ProcessEvent( event
) ) event
.Skip();
3557 void wxGridRowLabelWindow::OnChar( wxKeyEvent
& event
)
3559 if ( !m_owner
->GetEventHandler()->ProcessEvent( event
) ) event
.Skip();
3564 //////////////////////////////////////////////////////////////////////
3566 IMPLEMENT_DYNAMIC_CLASS( wxGridColLabelWindow
, wxWindow
)
3568 BEGIN_EVENT_TABLE( wxGridColLabelWindow
, wxWindow
)
3569 EVT_PAINT( wxGridColLabelWindow::OnPaint
)
3570 EVT_MOUSEWHEEL( wxGridColLabelWindow::OnMouseWheel
)
3571 EVT_MOUSE_EVENTS( wxGridColLabelWindow::OnMouseEvent
)
3572 EVT_KEY_DOWN( wxGridColLabelWindow::OnKeyDown
)
3573 EVT_KEY_UP( wxGridColLabelWindow::OnKeyUp
)
3574 EVT_CHAR ( wxGridColLabelWindow::OnChar
)
3577 wxGridColLabelWindow::wxGridColLabelWindow( wxGrid
*parent
,
3579 const wxPoint
&pos
, const wxSize
&size
)
3580 : wxWindow( parent
, id
, pos
, size
, wxWANTS_CHARS
|wxBORDER_NONE
|wxFULL_REPAINT_ON_RESIZE
)
3585 void wxGridColLabelWindow::OnPaint( wxPaintEvent
& WXUNUSED(event
) )
3589 // NO - don't do this because it will set both the x and y origin
3590 // coords to match the parent scrolled window and we just want to
3591 // set the x coord - MB
3593 // m_owner->PrepareDC( dc );
3596 m_owner
->CalcUnscrolledPosition( 0, 0, &x
, &y
);
3597 dc
.SetDeviceOrigin( -x
, 0 );
3599 wxArrayInt cols
= m_owner
->CalcColLabelsExposed( GetUpdateRegion() );
3600 m_owner
->DrawColLabels( dc
, cols
);
3604 void wxGridColLabelWindow::OnMouseEvent( wxMouseEvent
& event
)
3606 m_owner
->ProcessColLabelMouseEvent( event
);
3609 void wxGridColLabelWindow::OnMouseWheel( wxMouseEvent
& event
)
3611 m_owner
->GetEventHandler()->ProcessEvent(event
);
3615 // This seems to be required for wxMotif otherwise the mouse
3616 // cursor must be in the cell edit control to get key events
3618 void wxGridColLabelWindow::OnKeyDown( wxKeyEvent
& event
)
3620 if ( !m_owner
->GetEventHandler()->ProcessEvent( event
) ) event
.Skip();
3623 void wxGridColLabelWindow::OnKeyUp( wxKeyEvent
& event
)
3625 if ( !m_owner
->GetEventHandler()->ProcessEvent( event
) ) event
.Skip();
3628 void wxGridColLabelWindow::OnChar( wxKeyEvent
& event
)
3630 if ( !m_owner
->GetEventHandler()->ProcessEvent( event
) ) event
.Skip();
3634 //////////////////////////////////////////////////////////////////////
3636 IMPLEMENT_DYNAMIC_CLASS( wxGridCornerLabelWindow
, wxWindow
)
3638 BEGIN_EVENT_TABLE( wxGridCornerLabelWindow
, wxWindow
)
3639 EVT_MOUSEWHEEL( wxGridCornerLabelWindow::OnMouseWheel
)
3640 EVT_MOUSE_EVENTS( wxGridCornerLabelWindow::OnMouseEvent
)
3641 EVT_PAINT( wxGridCornerLabelWindow::OnPaint
)
3642 EVT_KEY_DOWN( wxGridCornerLabelWindow::OnKeyDown
)
3643 EVT_KEY_UP( wxGridCornerLabelWindow::OnKeyUp
)
3644 EVT_CHAR ( wxGridCornerLabelWindow::OnChar
)
3647 wxGridCornerLabelWindow::wxGridCornerLabelWindow( wxGrid
*parent
,
3649 const wxPoint
&pos
, const wxSize
&size
)
3650 : wxWindow( parent
, id
, pos
, size
, wxWANTS_CHARS
|wxBORDER_NONE
|wxFULL_REPAINT_ON_RESIZE
)
3655 void wxGridCornerLabelWindow::OnPaint( wxPaintEvent
& WXUNUSED(event
) )
3659 int client_height
= 0;
3660 int client_width
= 0;
3661 GetClientSize( &client_width
, &client_height
);
3667 rect
.SetWidth( client_width
- 2 );
3668 rect
.SetHeight( client_height
- 2 );
3670 wxRendererNative::Get().DrawHeaderButton( this, dc
, rect
, 0 );
3672 dc
.SetPen( wxPen(wxSystemSettings::GetColour(wxSYS_COLOUR_3DDKSHADOW
),1, wxSOLID
) );
3673 dc
.DrawLine( client_width
-1, client_height
-1, client_width
-1, 0 );
3674 dc
.DrawLine( client_width
-1, client_height
-1, 0, client_height
-1 );
3675 dc
.DrawLine( 0, 0, client_width
, 0 );
3676 dc
.DrawLine( 0, 0, 0, client_height
);
3678 dc
.SetPen( *wxWHITE_PEN
);
3679 dc
.DrawLine( 1, 1, client_width
-1, 1 );
3680 dc
.DrawLine( 1, 1, 1, client_height
-1 );
3685 void wxGridCornerLabelWindow::OnMouseEvent( wxMouseEvent
& event
)
3687 m_owner
->ProcessCornerLabelMouseEvent( event
);
3691 void wxGridCornerLabelWindow::OnMouseWheel( wxMouseEvent
& event
)
3693 m_owner
->GetEventHandler()->ProcessEvent(event
);
3696 // This seems to be required for wxMotif otherwise the mouse
3697 // cursor must be in the cell edit control to get key events
3699 void wxGridCornerLabelWindow::OnKeyDown( wxKeyEvent
& event
)
3701 if ( !m_owner
->GetEventHandler()->ProcessEvent( event
) ) event
.Skip();
3704 void wxGridCornerLabelWindow::OnKeyUp( wxKeyEvent
& event
)
3706 if ( !m_owner
->GetEventHandler()->ProcessEvent( event
) ) event
.Skip();
3709 void wxGridCornerLabelWindow::OnChar( wxKeyEvent
& event
)
3711 if ( !m_owner
->GetEventHandler()->ProcessEvent( event
) ) event
.Skip();
3715 //////////////////////////////////////////////////////////////////////
3717 IMPLEMENT_DYNAMIC_CLASS( wxGridWindow
, wxWindow
)
3719 BEGIN_EVENT_TABLE( wxGridWindow
, wxWindow
)
3720 EVT_PAINT( wxGridWindow::OnPaint
)
3721 EVT_MOUSEWHEEL( wxGridWindow::OnMouseWheel
)
3722 EVT_MOUSE_EVENTS( wxGridWindow::OnMouseEvent
)
3723 EVT_KEY_DOWN( wxGridWindow::OnKeyDown
)
3724 EVT_KEY_UP( wxGridWindow::OnKeyUp
)
3725 EVT_CHAR ( wxGridWindow::OnChar
)
3726 EVT_SET_FOCUS( wxGridWindow::OnFocus
)
3727 EVT_KILL_FOCUS( wxGridWindow::OnFocus
)
3728 EVT_ERASE_BACKGROUND( wxGridWindow::OnEraseBackground
)
3731 wxGridWindow::wxGridWindow( wxGrid
*parent
,
3732 wxGridRowLabelWindow
*rowLblWin
,
3733 wxGridColLabelWindow
*colLblWin
,
3736 const wxSize
&size
)
3737 : wxWindow( parent
, id
, pos
, size
, wxWANTS_CHARS
| wxBORDER_NONE
| wxCLIP_CHILDREN
|wxFULL_REPAINT_ON_RESIZE
,
3738 wxT("grid window") )
3742 m_rowLabelWin
= rowLblWin
;
3743 m_colLabelWin
= colLblWin
;
3747 void wxGridWindow::OnPaint( wxPaintEvent
&WXUNUSED(event
) )
3749 wxPaintDC
dc( this );
3750 m_owner
->PrepareDC( dc
);
3751 wxRegion reg
= GetUpdateRegion();
3752 wxGridCellCoordsArray DirtyCells
= m_owner
->CalcCellsExposed( reg
);
3753 m_owner
->DrawGridCellArea( dc
, DirtyCells
);
3754 #if WXGRID_DRAW_LINES
3755 m_owner
->DrawAllGridLines( dc
, reg
);
3757 m_owner
->DrawGridSpace( dc
);
3758 m_owner
->DrawHighlight( dc
, DirtyCells
);
3762 void wxGridWindow::ScrollWindow( int dx
, int dy
, const wxRect
*rect
)
3764 wxWindow::ScrollWindow( dx
, dy
, rect
);
3765 m_rowLabelWin
->ScrollWindow( 0, dy
, rect
);
3766 m_colLabelWin
->ScrollWindow( dx
, 0, rect
);
3770 void wxGridWindow::OnMouseEvent( wxMouseEvent
& event
)
3772 if (event
.ButtonDown(wxMOUSE_BTN_LEFT
) && FindFocus() != this)
3775 m_owner
->ProcessGridCellMouseEvent( event
);
3778 void wxGridWindow::OnMouseWheel( wxMouseEvent
& event
)
3780 m_owner
->GetEventHandler()->ProcessEvent(event
);
3783 // This seems to be required for wxMotif/wxGTK otherwise the mouse
3784 // cursor must be in the cell edit control to get key events
3786 void wxGridWindow::OnKeyDown( wxKeyEvent
& event
)
3788 if ( !m_owner
->GetEventHandler()->ProcessEvent( event
) ) event
.Skip();
3791 void wxGridWindow::OnKeyUp( wxKeyEvent
& event
)
3793 if ( !m_owner
->GetEventHandler()->ProcessEvent( event
) ) event
.Skip();
3796 void wxGridWindow::OnChar( wxKeyEvent
& event
)
3798 if ( !m_owner
->GetEventHandler()->ProcessEvent( event
) ) event
.Skip();
3801 void wxGridWindow::OnEraseBackground( wxEraseEvent
& WXUNUSED(event
) )
3805 void wxGridWindow::OnFocus(wxFocusEvent
& event
)
3807 if ( !m_owner
->GetEventHandler()->ProcessEvent( event
) )
3811 //////////////////////////////////////////////////////////////////////
3813 // Internal Helper function for computing row or column from some
3814 // (unscrolled) coordinate value, using either
3815 // m_defaultRowHeight/m_defaultColWidth or binary search on array
3816 // of m_rowBottoms/m_ColRights to speed up the search!
3818 // Internal helper macros for simpler use of that function
3820 static int CoordToRowOrCol(int coord
, int defaultDist
, int minDist
,
3821 const wxArrayInt
& BorderArray
, int nMax
,
3824 #define internalXToCol(x) CoordToRowOrCol(x, m_defaultColWidth, \
3825 m_minAcceptableColWidth, \
3826 m_colRights, m_numCols, true)
3827 #define internalYToRow(y) CoordToRowOrCol(y, m_defaultRowHeight, \
3828 m_minAcceptableRowHeight, \
3829 m_rowBottoms, m_numRows, true)
3830 /////////////////////////////////////////////////////////////////////
3832 #if wxUSE_EXTENDED_RTTI
3833 WX_DEFINE_FLAGS( wxGridStyle
)
3835 wxBEGIN_FLAGS( wxGridStyle
)
3836 // new style border flags, we put them first to
3837 // use them for streaming out
3838 wxFLAGS_MEMBER(wxBORDER_SIMPLE
)
3839 wxFLAGS_MEMBER(wxBORDER_SUNKEN
)
3840 wxFLAGS_MEMBER(wxBORDER_DOUBLE
)
3841 wxFLAGS_MEMBER(wxBORDER_RAISED
)
3842 wxFLAGS_MEMBER(wxBORDER_STATIC
)
3843 wxFLAGS_MEMBER(wxBORDER_NONE
)
3845 // old style border flags
3846 wxFLAGS_MEMBER(wxSIMPLE_BORDER
)
3847 wxFLAGS_MEMBER(wxSUNKEN_BORDER
)
3848 wxFLAGS_MEMBER(wxDOUBLE_BORDER
)
3849 wxFLAGS_MEMBER(wxRAISED_BORDER
)
3850 wxFLAGS_MEMBER(wxSTATIC_BORDER
)
3851 wxFLAGS_MEMBER(wxBORDER
)
3853 // standard window styles
3854 wxFLAGS_MEMBER(wxTAB_TRAVERSAL
)
3855 wxFLAGS_MEMBER(wxCLIP_CHILDREN
)
3856 wxFLAGS_MEMBER(wxTRANSPARENT_WINDOW
)
3857 wxFLAGS_MEMBER(wxWANTS_CHARS
)
3858 wxFLAGS_MEMBER(wxFULL_REPAINT_ON_RESIZE
)
3859 wxFLAGS_MEMBER(wxALWAYS_SHOW_SB
)
3860 wxFLAGS_MEMBER(wxVSCROLL
)
3861 wxFLAGS_MEMBER(wxHSCROLL
)
3863 wxEND_FLAGS( wxGridStyle
)
3865 IMPLEMENT_DYNAMIC_CLASS_XTI(wxGrid
, wxScrolledWindow
,"wx/grid.h")
3867 wxBEGIN_PROPERTIES_TABLE(wxGrid
)
3868 wxHIDE_PROPERTY( Children
)
3869 wxPROPERTY_FLAGS( WindowStyle
, wxGridStyle
, long , SetWindowStyleFlag
, GetWindowStyleFlag
, EMPTY_MACROVALUE
, 0 /*flags*/ , wxT("Helpstring") , wxT("group")) // style
3870 wxEND_PROPERTIES_TABLE()
3872 wxBEGIN_HANDLERS_TABLE(wxGrid
)
3873 wxEND_HANDLERS_TABLE()
3875 wxCONSTRUCTOR_5( wxGrid
, wxWindow
* , Parent
, wxWindowID
, Id
, wxPoint
, Position
, wxSize
, Size
, long , WindowStyle
)
3878 TODO : Expose more information of a list's layout etc. via appropriate objects (\81Ã la NotebookPageInfo)
3881 IMPLEMENT_DYNAMIC_CLASS( wxGrid
, wxScrolledWindow
)
3884 BEGIN_EVENT_TABLE( wxGrid
, wxScrolledWindow
)
3885 EVT_PAINT( wxGrid::OnPaint
)
3886 EVT_SIZE( wxGrid::OnSize
)
3887 EVT_KEY_DOWN( wxGrid::OnKeyDown
)
3888 EVT_KEY_UP( wxGrid::OnKeyUp
)
3889 EVT_CHAR ( wxGrid::OnChar
)
3890 EVT_ERASE_BACKGROUND( wxGrid::OnEraseBackground
)
3895 // in order to make sure that a size event is not
3896 // trigerred in a unfinished state
3897 m_cornerLabelWin
= NULL
;
3898 m_rowLabelWin
= NULL
;
3899 m_colLabelWin
= NULL
;
3903 wxGrid::wxGrid( wxWindow
*parent
,
3908 const wxString
& name
)
3909 : wxScrolledWindow( parent
, id
, pos
, size
, (style
| wxWANTS_CHARS
), name
),
3910 m_colMinWidths(GRID_HASH_SIZE
),
3911 m_rowMinHeights(GRID_HASH_SIZE
)
3914 SetBestFittingSize(size
);
3917 bool wxGrid::Create(wxWindow
*parent
, wxWindowID id
,
3918 const wxPoint
& pos
, const wxSize
& size
,
3919 long style
, const wxString
& name
)
3921 if (!wxScrolledWindow::Create(parent
, id
, pos
, size
,
3922 style
| wxWANTS_CHARS
, name
))
3925 m_colMinWidths
= wxLongToLongHashMap(GRID_HASH_SIZE
) ;
3926 m_rowMinHeights
= wxLongToLongHashMap(GRID_HASH_SIZE
) ;
3929 SetBestFittingSize(size
);
3937 // Must do this or ~wxScrollHelper will pop the wrong event handler
3938 SetTargetWindow(this);
3940 wxSafeDecRef(m_defaultCellAttr
);
3942 #ifdef DEBUG_ATTR_CACHE
3943 size_t total
= gs_nAttrCacheHits
+ gs_nAttrCacheMisses
;
3944 wxPrintf(_T("wxGrid attribute cache statistics: "
3945 "total: %u, hits: %u (%u%%)\n"),
3946 total
, gs_nAttrCacheHits
,
3947 total
? (gs_nAttrCacheHits
*100) / total
: 0);
3953 delete m_typeRegistry
;
3959 // ----- internal init and update functions
3962 // NOTE: If using the default visual attributes works everywhere then this can
3963 // be removed as well as the #else cases below.
3964 #define _USE_VISATTR 0
3967 #include "wx/listbox.h"
3970 void wxGrid::Create()
3972 m_created
= false; // set to true by CreateGrid
3974 m_table
= (wxGridTableBase
*) NULL
;
3977 m_cellEditCtrlEnabled
= false;
3979 m_defaultCellAttr
= new wxGridCellAttr();
3981 // Set default cell attributes
3982 m_defaultCellAttr
->SetDefAttr(m_defaultCellAttr
);
3983 m_defaultCellAttr
->SetKind(wxGridCellAttr::Default
);
3984 m_defaultCellAttr
->SetFont(GetFont());
3985 m_defaultCellAttr
->SetAlignment(wxALIGN_LEFT
, wxALIGN_TOP
);
3986 m_defaultCellAttr
->SetRenderer(new wxGridCellStringRenderer
);
3987 m_defaultCellAttr
->SetEditor(new wxGridCellTextEditor
);
3990 wxVisualAttributes gva
= wxListBox::GetClassDefaultAttributes();
3991 wxVisualAttributes lva
= wxPanel::GetClassDefaultAttributes();
3993 m_defaultCellAttr
->SetTextColour(gva
.colFg
);
3994 m_defaultCellAttr
->SetBackgroundColour(gva
.colBg
);
3997 m_defaultCellAttr
->SetTextColour(
3998 wxSystemSettings::GetColour(wxSYS_COLOUR_WINDOWTEXT
));
3999 m_defaultCellAttr
->SetBackgroundColour(
4000 wxSystemSettings::GetColour(wxSYS_COLOUR_WINDOW
));
4005 m_currentCellCoords
= wxGridNoCellCoords
;
4007 m_rowLabelWidth
= WXGRID_DEFAULT_ROW_LABEL_WIDTH
;
4008 m_colLabelHeight
= WXGRID_DEFAULT_COL_LABEL_HEIGHT
;
4010 // create the type registry
4011 m_typeRegistry
= new wxGridTypeRegistry
;
4014 // subwindow components that make up the wxGrid
4015 m_cornerLabelWin
= new wxGridCornerLabelWindow( this,
4020 m_rowLabelWin
= new wxGridRowLabelWindow( this,
4025 m_colLabelWin
= new wxGridColLabelWindow( this,
4030 m_gridWin
= new wxGridWindow( this,
4037 SetTargetWindow( m_gridWin
);
4040 wxColour gfg
= gva
.colFg
;
4041 wxColour gbg
= gva
.colBg
;
4042 wxColour lfg
= lva
.colFg
;
4043 wxColour lbg
= lva
.colBg
;
4045 wxColour gfg
= wxSystemSettings::GetColour( wxSYS_COLOUR_WINDOWTEXT
);
4046 wxColour gbg
= wxSystemSettings::GetColour( wxSYS_COLOUR_WINDOW
);
4047 wxColour lfg
= wxSystemSettings::GetColour( wxSYS_COLOUR_WINDOWTEXT
);
4048 wxColour lbg
= wxSystemSettings::GetColour( wxSYS_COLOUR_BTNFACE
);
4050 m_cornerLabelWin
->SetOwnForegroundColour(lfg
);
4051 m_cornerLabelWin
->SetOwnBackgroundColour(lbg
);
4052 m_rowLabelWin
->SetOwnForegroundColour(lfg
);
4053 m_rowLabelWin
->SetOwnBackgroundColour(lbg
);
4054 m_colLabelWin
->SetOwnForegroundColour(lfg
);
4055 m_colLabelWin
->SetOwnBackgroundColour(lbg
);
4057 m_gridWin
->SetOwnForegroundColour(gfg
);
4058 m_gridWin
->SetOwnBackgroundColour(gbg
);
4064 bool wxGrid::CreateGrid( int numRows
, int numCols
,
4065 wxGrid::wxGridSelectionModes selmode
)
4067 wxCHECK_MSG( !m_created
,
4069 wxT("wxGrid::CreateGrid or wxGrid::SetTable called more than once") );
4071 m_numRows
= numRows
;
4072 m_numCols
= numCols
;
4074 m_table
= new wxGridStringTable( m_numRows
, m_numCols
);
4075 m_table
->SetView( this );
4077 m_selection
= new wxGridSelection( this, selmode
);
4086 void wxGrid::SetSelectionMode(wxGrid::wxGridSelectionModes selmode
)
4088 wxCHECK_RET( m_created
,
4089 wxT("Called wxGrid::SetSelectionMode() before calling CreateGrid()") );
4091 m_selection
->SetSelectionMode( selmode
);
4094 wxGrid::wxGridSelectionModes
wxGrid::GetSelectionMode() const
4096 wxCHECK_MSG( m_created
, wxGrid::wxGridSelectCells
,
4097 wxT("Called wxGrid::GetSelectionMode() before calling CreateGrid()") );
4099 return m_selection
->GetSelectionMode();
4102 bool wxGrid::SetTable( wxGridTableBase
*table
, bool takeOwnership
,
4103 wxGrid::wxGridSelectionModes selmode
)
4107 // stop all processing
4112 wxGridTableBase
*t
=m_table
;
4125 m_numRows
= table
->GetNumberRows();
4126 m_numCols
= table
->GetNumberCols();
4129 m_table
->SetView( this );
4132 m_selection
= new wxGridSelection( this, selmode
);
4145 m_rowLabelWidth
= WXGRID_DEFAULT_ROW_LABEL_WIDTH
;
4146 m_colLabelHeight
= WXGRID_DEFAULT_COL_LABEL_HEIGHT
;
4148 if ( m_rowLabelWin
)
4150 m_labelBackgroundColour
= m_rowLabelWin
->GetBackgroundColour();
4154 m_labelBackgroundColour
= wxColour( _T("WHITE") );
4157 m_labelTextColour
= wxColour( _T("BLACK") );
4160 m_attrCache
.row
= -1;
4161 m_attrCache
.col
= -1;
4162 m_attrCache
.attr
= NULL
;
4164 // TODO: something better than this ?
4166 m_labelFont
= this->GetFont();
4167 m_labelFont
.SetWeight( wxBOLD
);
4169 m_rowLabelHorizAlign
= wxALIGN_CENTRE
;
4170 m_rowLabelVertAlign
= wxALIGN_CENTRE
;
4172 m_colLabelHorizAlign
= wxALIGN_CENTRE
;
4173 m_colLabelVertAlign
= wxALIGN_CENTRE
;
4174 m_colLabelTextOrientation
= wxHORIZONTAL
;
4176 m_defaultColWidth
= WXGRID_DEFAULT_COL_WIDTH
;
4177 m_defaultRowHeight
= m_gridWin
->GetCharHeight();
4179 m_minAcceptableColWidth
= WXGRID_MIN_COL_WIDTH
;
4180 m_minAcceptableRowHeight
= WXGRID_MIN_ROW_HEIGHT
;
4182 #if defined(__WXMOTIF__) || defined(__WXGTK__) // see also text ctrl sizing in ShowCellEditControl()
4183 m_defaultRowHeight
+= 8;
4185 m_defaultRowHeight
+= 4;
4188 m_gridLineColour
= wxColour( 192,192,192 );
4189 m_gridLinesEnabled
= true;
4190 m_cellHighlightColour
= *wxBLACK
;
4191 m_cellHighlightPenWidth
= 2;
4192 m_cellHighlightROPenWidth
= 1;
4194 m_cursorMode
= WXGRID_CURSOR_SELECT_CELL
;
4195 m_winCapture
= (wxWindow
*)NULL
;
4196 m_canDragRowSize
= true;
4197 m_canDragColSize
= true;
4198 m_canDragGridSize
= true;
4199 m_canDragCell
= false;
4201 m_dragRowOrCol
= -1;
4202 m_isDragging
= false;
4203 m_startDragPos
= wxDefaultPosition
;
4205 m_waitForSlowClick
= false;
4207 m_rowResizeCursor
= wxCursor( wxCURSOR_SIZENS
);
4208 m_colResizeCursor
= wxCursor( wxCURSOR_SIZEWE
);
4210 m_currentCellCoords
= wxGridNoCellCoords
;
4212 m_selectingTopLeft
= wxGridNoCellCoords
;
4213 m_selectingBottomRight
= wxGridNoCellCoords
;
4214 m_selectionBackground
= wxSystemSettings::GetColour(wxSYS_COLOUR_HIGHLIGHT
);
4215 m_selectionForeground
= wxSystemSettings::GetColour(wxSYS_COLOUR_HIGHLIGHTTEXT
);
4217 m_editable
= true; // default for whole grid
4219 m_inOnKeyDown
= false;
4225 m_scrollLineX
= GRID_SCROLL_LINE_X
;
4226 m_scrollLineY
= GRID_SCROLL_LINE_Y
;
4229 // ----------------------------------------------------------------------------
4230 // the idea is to call these functions only when necessary because they create
4231 // quite big arrays which eat memory mostly unnecessary - in particular, if
4232 // default widths/heights are used for all rows/columns, we may not use these
4235 // with some extra code, it should be possible to only store the
4236 // widths/heights different from default ones but this will be done later...
4237 // ----------------------------------------------------------------------------
4239 void wxGrid::InitRowHeights()
4241 m_rowHeights
.Empty();
4242 m_rowBottoms
.Empty();
4244 m_rowHeights
.Alloc( m_numRows
);
4245 m_rowBottoms
.Alloc( m_numRows
);
4249 m_rowHeights
.Add( m_defaultRowHeight
, m_numRows
);
4251 for ( int i
= 0; i
< m_numRows
; i
++ )
4253 rowBottom
+= m_defaultRowHeight
;
4254 m_rowBottoms
.Add( rowBottom
);
4258 void wxGrid::InitColWidths()
4260 m_colWidths
.Empty();
4261 m_colRights
.Empty();
4263 m_colWidths
.Alloc( m_numCols
);
4264 m_colRights
.Alloc( m_numCols
);
4267 m_colWidths
.Add( m_defaultColWidth
, m_numCols
);
4269 for ( int i
= 0; i
< m_numCols
; i
++ )
4271 colRight
+= m_defaultColWidth
;
4272 m_colRights
.Add( colRight
);
4276 int wxGrid::GetColWidth(int col
) const
4278 return m_colWidths
.IsEmpty() ? m_defaultColWidth
: m_colWidths
[col
];
4281 int wxGrid::GetColLeft(int col
) const
4283 return m_colRights
.IsEmpty() ? col
* m_defaultColWidth
4284 : m_colRights
[col
] - m_colWidths
[col
];
4287 int wxGrid::GetColRight(int col
) const
4289 return m_colRights
.IsEmpty() ? (col
+ 1) * m_defaultColWidth
4293 int wxGrid::GetRowHeight(int row
) const
4295 return m_rowHeights
.IsEmpty() ? m_defaultRowHeight
: m_rowHeights
[row
];
4298 int wxGrid::GetRowTop(int row
) const
4300 return m_rowBottoms
.IsEmpty() ? row
* m_defaultRowHeight
4301 : m_rowBottoms
[row
] - m_rowHeights
[row
];
4304 int wxGrid::GetRowBottom(int row
) const
4306 return m_rowBottoms
.IsEmpty() ? (row
+ 1) * m_defaultRowHeight
4307 : m_rowBottoms
[row
];
4310 void wxGrid::CalcDimensions()
4313 GetClientSize( &cw
, &ch
);
4315 if ( m_rowLabelWin
->IsShown() )
4316 cw
-= m_rowLabelWidth
;
4317 if ( m_colLabelWin
->IsShown() )
4318 ch
-= m_colLabelHeight
;
4321 int w
= m_numCols
> 0 ? GetColRight(m_numCols
- 1) + m_extraWidth
+ 1 : 0;
4322 int h
= m_numRows
> 0 ? GetRowBottom(m_numRows
- 1) + m_extraHeight
+ 1 : 0;
4324 // take into account editor if shown
4325 if( IsCellEditControlShown() )
4328 int r
= m_currentCellCoords
.GetRow();
4329 int c
= m_currentCellCoords
.GetCol();
4330 int x
= GetColLeft(c
);
4331 int y
= GetRowTop(r
);
4333 // how big is the editor
4334 wxGridCellAttr
* attr
= GetCellAttr(r
, c
);
4335 wxGridCellEditor
* editor
= attr
->GetEditor(this, r
, c
);
4336 editor
->GetControl()->GetSize(&w2
, &h2
);
4339 if( w2
> w
) w
= w2
;
4340 if( h2
> h
) h
= h2
;
4345 // preserve (more or less) the previous position
4347 GetViewStart( &x
, &y
);
4349 // ensure the position is valid for the new scroll ranges
4351 x
= wxMax( w
- 1, 0 );
4353 y
= wxMax( h
- 1, 0 );
4355 // do set scrollbar parameters
4356 SetScrollbars( m_scrollLineX
, m_scrollLineY
,
4357 GetScrollX(w
), GetScrollY(h
), x
, y
,
4358 GetBatchCount() != 0);
4360 // if our OnSize() hadn't been called (it would if we have scrollbars), we
4361 // still must reposition the children
4366 void wxGrid::CalcWindowSizes()
4368 // escape if the window is has not been fully created yet
4370 if ( m_cornerLabelWin
== NULL
)
4374 GetClientSize( &cw
, &ch
);
4376 if ( m_cornerLabelWin
&& m_cornerLabelWin
->IsShown() )
4377 m_cornerLabelWin
->SetSize( 0, 0, m_rowLabelWidth
, m_colLabelHeight
);
4379 if ( m_colLabelWin
&& m_colLabelWin
->IsShown() )
4380 m_colLabelWin
->SetSize( m_rowLabelWidth
, 0, cw
-m_rowLabelWidth
, m_colLabelHeight
);
4382 if ( m_rowLabelWin
&& m_rowLabelWin
->IsShown() )
4383 m_rowLabelWin
->SetSize( 0, m_colLabelHeight
, m_rowLabelWidth
, ch
-m_colLabelHeight
);
4385 if ( m_gridWin
&& m_gridWin
->IsShown() )
4386 m_gridWin
->SetSize( m_rowLabelWidth
, m_colLabelHeight
, cw
-m_rowLabelWidth
, ch
-m_colLabelHeight
);
4390 // this is called when the grid table sends a message to say that it
4391 // has been redimensioned
4393 bool wxGrid::Redimension( wxGridTableMessage
& msg
)
4396 bool result
= false;
4398 // Clear the attribute cache as the attribute might refer to a different
4399 // cell than stored in the cache after adding/removing rows/columns.
4401 // By the same reasoning, the editor should be dismissed if columns are
4402 // added or removed. And for consistency, it should IMHO always be
4403 // removed, not only if the cell "underneath" it actually changes.
4404 // For now, I intentionally do not save the editor's content as the
4405 // cell it might want to save that stuff to might no longer exist.
4406 HideCellEditControl();
4408 // if we were using the default widths/heights so far, we must change them
4410 if ( m_colWidths
.IsEmpty() )
4415 if ( m_rowHeights
.IsEmpty() )
4421 switch ( msg
.GetId() )
4423 case wxGRIDTABLE_NOTIFY_ROWS_INSERTED
:
4425 size_t pos
= msg
.GetCommandInt();
4426 int numRows
= msg
.GetCommandInt2();
4428 m_numRows
+= numRows
;
4430 if ( !m_rowHeights
.IsEmpty() )
4432 m_rowHeights
.Insert( m_defaultRowHeight
, pos
, numRows
);
4433 m_rowBottoms
.Insert( 0, pos
, numRows
);
4436 if ( pos
> 0 ) bottom
= m_rowBottoms
[pos
-1];
4438 for ( i
= pos
; i
< m_numRows
; i
++ )
4440 bottom
+= m_rowHeights
[i
];
4441 m_rowBottoms
[i
] = bottom
;
4444 if ( m_currentCellCoords
== wxGridNoCellCoords
)
4446 // if we have just inserted cols into an empty grid the current
4447 // cell will be undefined...
4449 SetCurrentCell( 0, 0 );
4453 m_selection
->UpdateRows( pos
, numRows
);
4454 wxGridCellAttrProvider
* attrProvider
= m_table
->GetAttrProvider();
4456 attrProvider
->UpdateAttrRows( pos
, numRows
);
4458 if ( !GetBatchCount() )
4461 m_rowLabelWin
->Refresh();
4467 case wxGRIDTABLE_NOTIFY_ROWS_APPENDED
:
4469 int numRows
= msg
.GetCommandInt();
4470 int oldNumRows
= m_numRows
;
4471 m_numRows
+= numRows
;
4473 if ( !m_rowHeights
.IsEmpty() )
4475 m_rowHeights
.Add( m_defaultRowHeight
, numRows
);
4476 m_rowBottoms
.Add( 0, numRows
);
4479 if ( oldNumRows
> 0 ) bottom
= m_rowBottoms
[oldNumRows
-1];
4481 for ( i
= oldNumRows
; i
< m_numRows
; i
++ )
4483 bottom
+= m_rowHeights
[i
];
4484 m_rowBottoms
[i
] = bottom
;
4487 if ( m_currentCellCoords
== wxGridNoCellCoords
)
4489 // if we have just inserted cols into an empty grid the current
4490 // cell will be undefined...
4492 SetCurrentCell( 0, 0 );
4494 if ( !GetBatchCount() )
4497 m_rowLabelWin
->Refresh();
4503 case wxGRIDTABLE_NOTIFY_ROWS_DELETED
:
4505 size_t pos
= msg
.GetCommandInt();
4506 int numRows
= msg
.GetCommandInt2();
4507 m_numRows
-= numRows
;
4509 if ( !m_rowHeights
.IsEmpty() )
4511 m_rowHeights
.RemoveAt( pos
, numRows
);
4512 m_rowBottoms
.RemoveAt( pos
, numRows
);
4515 for ( i
= 0; i
< m_numRows
; i
++ )
4517 h
+= m_rowHeights
[i
];
4518 m_rowBottoms
[i
] = h
;
4523 m_currentCellCoords
= wxGridNoCellCoords
;
4527 if ( m_currentCellCoords
.GetRow() >= m_numRows
)
4528 m_currentCellCoords
.Set( 0, 0 );
4532 m_selection
->UpdateRows( pos
, -((int)numRows
) );
4533 wxGridCellAttrProvider
* attrProvider
= m_table
->GetAttrProvider();
4535 attrProvider
->UpdateAttrRows( pos
, -((int)numRows
) );
4536 // ifdef'd out following patch from Paul Gammans
4538 // No need to touch column attributes, unless we
4539 // removed _all_ rows, in this case, we remove
4540 // all column attributes.
4541 // I hate to do this here, but the
4542 // needed data is not available inside UpdateAttrRows.
4543 if ( !GetNumberRows() )
4544 attrProvider
->UpdateAttrCols( 0, -GetNumberCols() );
4547 if ( !GetBatchCount() )
4550 m_rowLabelWin
->Refresh();
4556 case wxGRIDTABLE_NOTIFY_COLS_INSERTED
:
4558 size_t pos
= msg
.GetCommandInt();
4559 int numCols
= msg
.GetCommandInt2();
4560 m_numCols
+= numCols
;
4562 if ( !m_colWidths
.IsEmpty() )
4564 m_colWidths
.Insert( m_defaultColWidth
, pos
, numCols
);
4565 m_colRights
.Insert( 0, pos
, numCols
);
4568 if ( pos
> 0 ) right
= m_colRights
[pos
-1];
4570 for ( i
= pos
; i
< m_numCols
; i
++ )
4572 right
+= m_colWidths
[i
];
4573 m_colRights
[i
] = right
;
4576 if ( m_currentCellCoords
== wxGridNoCellCoords
)
4578 // if we have just inserted cols into an empty grid the current
4579 // cell will be undefined...
4581 SetCurrentCell( 0, 0 );
4585 m_selection
->UpdateCols( pos
, numCols
);
4586 wxGridCellAttrProvider
* attrProvider
= m_table
->GetAttrProvider();
4588 attrProvider
->UpdateAttrCols( pos
, numCols
);
4589 if ( !GetBatchCount() )
4592 m_colLabelWin
->Refresh();
4599 case wxGRIDTABLE_NOTIFY_COLS_APPENDED
:
4601 int numCols
= msg
.GetCommandInt();
4602 int oldNumCols
= m_numCols
;
4603 m_numCols
+= numCols
;
4604 if ( !m_colWidths
.IsEmpty() )
4606 m_colWidths
.Add( m_defaultColWidth
, numCols
);
4607 m_colRights
.Add( 0, numCols
);
4610 if ( oldNumCols
> 0 ) right
= m_colRights
[oldNumCols
-1];
4612 for ( i
= oldNumCols
; i
< m_numCols
; i
++ )
4614 right
+= m_colWidths
[i
];
4615 m_colRights
[i
] = right
;
4618 if ( m_currentCellCoords
== wxGridNoCellCoords
)
4620 // if we have just inserted cols into an empty grid the current
4621 // cell will be undefined...
4623 SetCurrentCell( 0, 0 );
4625 if ( !GetBatchCount() )
4628 m_colLabelWin
->Refresh();
4634 case wxGRIDTABLE_NOTIFY_COLS_DELETED
:
4636 size_t pos
= msg
.GetCommandInt();
4637 int numCols
= msg
.GetCommandInt2();
4638 m_numCols
-= numCols
;
4640 if ( !m_colWidths
.IsEmpty() )
4642 m_colWidths
.RemoveAt( pos
, numCols
);
4643 m_colRights
.RemoveAt( pos
, numCols
);
4646 for ( i
= 0; i
< m_numCols
; i
++ )
4648 w
+= m_colWidths
[i
];
4654 m_currentCellCoords
= wxGridNoCellCoords
;
4658 if ( m_currentCellCoords
.GetCol() >= m_numCols
)
4659 m_currentCellCoords
.Set( 0, 0 );
4663 m_selection
->UpdateCols( pos
, -((int)numCols
) );
4664 wxGridCellAttrProvider
* attrProvider
= m_table
->GetAttrProvider();
4666 attrProvider
->UpdateAttrCols( pos
, -((int)numCols
) );
4667 // ifdef'd out following patch from Paul Gammans
4669 // No need to touch row attributes, unless we
4670 // removed _all_ columns, in this case, we remove
4671 // all row attributes.
4672 // I hate to do this here, but the
4673 // needed data is not available inside UpdateAttrCols.
4674 if ( !GetNumberCols() )
4675 attrProvider
->UpdateAttrRows( 0, -GetNumberRows() );
4678 if ( !GetBatchCount() )
4681 m_colLabelWin
->Refresh();
4688 if (result
&& !GetBatchCount() )
4689 m_gridWin
->Refresh();
4694 wxArrayInt
wxGrid::CalcRowLabelsExposed( const wxRegion
& reg
)
4696 wxRegionIterator
iter( reg
);
4699 wxArrayInt rowlabels
;
4706 // TODO: remove this when we can...
4707 // There is a bug in wxMotif that gives garbage update
4708 // rectangles if you jump-scroll a long way by clicking the
4709 // scrollbar with middle button. This is a work-around
4711 #if defined(__WXMOTIF__)
4713 m_gridWin
->GetClientSize( &cw
, &ch
);
4714 if ( r
.GetTop() > ch
) r
.SetTop( 0 );
4715 r
.SetBottom( wxMin( r
.GetBottom(), ch
) );
4718 // logical bounds of update region
4721 CalcUnscrolledPosition( 0, r
.GetTop(), &dummy
, &top
);
4722 CalcUnscrolledPosition( 0, r
.GetBottom(), &dummy
, &bottom
);
4724 // find the row labels within these bounds
4727 for ( row
= internalYToRow(top
); row
< m_numRows
; row
++ )
4729 if ( GetRowBottom(row
) < top
)
4732 if ( GetRowTop(row
) > bottom
)
4735 rowlabels
.Add( row
);
4745 wxArrayInt
wxGrid::CalcColLabelsExposed( const wxRegion
& reg
)
4747 wxRegionIterator
iter( reg
);
4750 wxArrayInt colLabels
;
4757 // TODO: remove this when we can...
4758 // There is a bug in wxMotif that gives garbage update
4759 // rectangles if you jump-scroll a long way by clicking the
4760 // scrollbar with middle button. This is a work-around
4762 #if defined(__WXMOTIF__)
4764 m_gridWin
->GetClientSize( &cw
, &ch
);
4765 if ( r
.GetLeft() > cw
) r
.SetLeft( 0 );
4766 r
.SetRight( wxMin( r
.GetRight(), cw
) );
4769 // logical bounds of update region
4772 CalcUnscrolledPosition( r
.GetLeft(), 0, &left
, &dummy
);
4773 CalcUnscrolledPosition( r
.GetRight(), 0, &right
, &dummy
);
4775 // find the cells within these bounds
4778 for ( col
= internalXToCol(left
); col
< m_numCols
; col
++ )
4780 if ( GetColRight(col
) < left
)
4783 if ( GetColLeft(col
) > right
)
4786 colLabels
.Add( col
);
4795 wxGridCellCoordsArray
wxGrid::CalcCellsExposed( const wxRegion
& reg
)
4797 wxRegionIterator
iter( reg
);
4800 wxGridCellCoordsArray cellsExposed
;
4802 int left
, top
, right
, bottom
;
4807 // TODO: remove this when we can...
4808 // There is a bug in wxMotif that gives garbage update
4809 // rectangles if you jump-scroll a long way by clicking the
4810 // scrollbar with middle button. This is a work-around
4812 #if defined(__WXMOTIF__)
4814 m_gridWin
->GetClientSize( &cw
, &ch
);
4815 if ( r
.GetTop() > ch
) r
.SetTop( 0 );
4816 if ( r
.GetLeft() > cw
) r
.SetLeft( 0 );
4817 r
.SetRight( wxMin( r
.GetRight(), cw
) );
4818 r
.SetBottom( wxMin( r
.GetBottom(), ch
) );
4821 // logical bounds of update region
4823 CalcUnscrolledPosition( r
.GetLeft(), r
.GetTop(), &left
, &top
);
4824 CalcUnscrolledPosition( r
.GetRight(), r
.GetBottom(), &right
, &bottom
);
4826 // find the cells within these bounds
4829 for ( row
= internalYToRow(top
); row
< m_numRows
; row
++ )
4831 if ( GetRowBottom(row
) <= top
)
4834 if ( GetRowTop(row
) > bottom
)
4837 for ( col
= internalXToCol(left
); col
< m_numCols
; col
++ )
4839 if ( GetColRight(col
) <= left
)
4842 if ( GetColLeft(col
) > right
)
4845 cellsExposed
.Add( wxGridCellCoords( row
, col
) );
4852 return cellsExposed
;
4856 void wxGrid::ProcessRowLabelMouseEvent( wxMouseEvent
& event
)
4859 wxPoint
pos( event
.GetPosition() );
4860 CalcUnscrolledPosition( pos
.x
, pos
.y
, &x
, &y
);
4862 if ( event
.Dragging() )
4866 m_isDragging
= true;
4867 m_rowLabelWin
->CaptureMouse();
4870 if ( event
.LeftIsDown() )
4872 switch( m_cursorMode
)
4874 case WXGRID_CURSOR_RESIZE_ROW
:
4876 int cw
, ch
, left
, dummy
;
4877 m_gridWin
->GetClientSize( &cw
, &ch
);
4878 CalcUnscrolledPosition( 0, 0, &left
, &dummy
);
4880 wxClientDC
dc( m_gridWin
);
4883 GetRowTop(m_dragRowOrCol
) +
4884 GetRowMinimalHeight(m_dragRowOrCol
) );
4885 dc
.SetLogicalFunction(wxINVERT
);
4886 if ( m_dragLastPos
>= 0 )
4888 dc
.DrawLine( left
, m_dragLastPos
, left
+cw
, m_dragLastPos
);
4890 dc
.DrawLine( left
, y
, left
+cw
, y
);
4895 case WXGRID_CURSOR_SELECT_ROW
:
4896 if ( (row
= YToRow( y
)) >= 0 )
4900 m_selection
->SelectRow( row
,
4901 event
.ControlDown(),
4908 // default label to suppress warnings about "enumeration value
4909 // 'xxx' not handled in switch
4917 if ( m_isDragging
&& (event
.Entering() || event
.Leaving()) )
4922 if (m_rowLabelWin
->HasCapture()) m_rowLabelWin
->ReleaseMouse();
4923 m_isDragging
= false;
4926 // ------------ Entering or leaving the window
4928 if ( event
.Entering() || event
.Leaving() )
4930 ChangeCursorMode(WXGRID_CURSOR_SELECT_CELL
, m_rowLabelWin
);
4934 // ------------ Left button pressed
4936 else if ( event
.LeftDown() )
4938 // don't send a label click event for a hit on the
4939 // edge of the row label - this is probably the user
4940 // wanting to resize the row
4942 if ( YToEdgeOfRow(y
) < 0 )
4946 !SendEvent( wxEVT_GRID_LABEL_LEFT_CLICK
, row
, -1, event
) )
4948 if ( !event
.ShiftDown() && !event
.ControlDown() )
4952 if ( event
.ShiftDown() )
4954 m_selection
->SelectBlock( m_currentCellCoords
.GetRow(),
4957 GetNumberCols() - 1,
4958 event
.ControlDown(),
4965 m_selection
->SelectRow( row
,
4966 event
.ControlDown(),
4973 ChangeCursorMode(WXGRID_CURSOR_SELECT_ROW
, m_rowLabelWin
);
4978 // starting to drag-resize a row
4980 if ( CanDragRowSize() )
4981 ChangeCursorMode(WXGRID_CURSOR_RESIZE_ROW
, m_rowLabelWin
);
4986 // ------------ Left double click
4988 else if (event
.LeftDClick() )
4990 int row
= YToEdgeOfRow(y
);
4995 !SendEvent( wxEVT_GRID_LABEL_LEFT_DCLICK
, row
, -1, event
) )
4997 // no default action at the moment
5002 // adjust row height depending on label text
5003 AutoSizeRowLabelSize( row
);
5005 ChangeCursorMode(WXGRID_CURSOR_SELECT_CELL
, m_colLabelWin
);
5011 // ------------ Left button released
5013 else if ( event
.LeftUp() )
5015 if ( m_cursorMode
== WXGRID_CURSOR_RESIZE_ROW
)
5017 DoEndDragResizeRow();
5019 // Note: we are ending the event *after* doing
5020 // default processing in this case
5022 SendEvent( wxEVT_GRID_ROW_SIZE
, m_dragRowOrCol
, -1, event
);
5025 ChangeCursorMode(WXGRID_CURSOR_SELECT_CELL
, m_rowLabelWin
);
5030 // ------------ Right button down
5032 else if ( event
.RightDown() )
5036 !SendEvent( wxEVT_GRID_LABEL_RIGHT_CLICK
, row
, -1, event
) )
5038 // no default action at the moment
5043 // ------------ Right double click
5045 else if ( event
.RightDClick() )
5049 !SendEvent( wxEVT_GRID_LABEL_RIGHT_DCLICK
, row
, -1, event
) )
5051 // no default action at the moment
5056 // ------------ No buttons down and mouse moving
5058 else if ( event
.Moving() )
5060 m_dragRowOrCol
= YToEdgeOfRow( y
);
5061 if ( m_dragRowOrCol
>= 0 )
5063 if ( m_cursorMode
== WXGRID_CURSOR_SELECT_CELL
)
5065 // don't capture the mouse yet
5066 if ( CanDragRowSize() )
5067 ChangeCursorMode(WXGRID_CURSOR_RESIZE_ROW
, m_rowLabelWin
, false);
5070 else if ( m_cursorMode
!= WXGRID_CURSOR_SELECT_CELL
)
5072 ChangeCursorMode(WXGRID_CURSOR_SELECT_CELL
, m_rowLabelWin
, false);
5078 void wxGrid::ProcessColLabelMouseEvent( wxMouseEvent
& event
)
5081 wxPoint
pos( event
.GetPosition() );
5082 CalcUnscrolledPosition( pos
.x
, pos
.y
, &x
, &y
);
5084 if ( event
.Dragging() )
5088 m_isDragging
= true;
5089 m_colLabelWin
->CaptureMouse();
5092 if ( event
.LeftIsDown() )
5094 switch( m_cursorMode
)
5096 case WXGRID_CURSOR_RESIZE_COL
:
5098 int cw
, ch
, dummy
, top
;
5099 m_gridWin
->GetClientSize( &cw
, &ch
);
5100 CalcUnscrolledPosition( 0, 0, &dummy
, &top
);
5102 wxClientDC
dc( m_gridWin
);
5105 x
= wxMax( x
, GetColLeft(m_dragRowOrCol
) +
5106 GetColMinimalWidth(m_dragRowOrCol
));
5107 dc
.SetLogicalFunction(wxINVERT
);
5108 if ( m_dragLastPos
>= 0 )
5110 dc
.DrawLine( m_dragLastPos
, top
, m_dragLastPos
, top
+ch
);
5112 dc
.DrawLine( x
, top
, x
, top
+ch
);
5117 case WXGRID_CURSOR_SELECT_COL
:
5118 if ( (col
= XToCol( x
)) >= 0 )
5122 m_selection
->SelectCol( col
,
5123 event
.ControlDown(),
5130 // default label to suppress warnings about "enumeration value
5131 // 'xxx' not handled in switch
5139 if ( m_isDragging
&& (event
.Entering() || event
.Leaving()) )
5144 if (m_colLabelWin
->HasCapture()) m_colLabelWin
->ReleaseMouse();
5145 m_isDragging
= false;
5148 // ------------ Entering or leaving the window
5150 if ( event
.Entering() || event
.Leaving() )
5152 ChangeCursorMode(WXGRID_CURSOR_SELECT_CELL
, m_colLabelWin
);
5156 // ------------ Left button pressed
5158 else if ( event
.LeftDown() )
5160 // don't send a label click event for a hit on the
5161 // edge of the col label - this is probably the user
5162 // wanting to resize the col
5164 if ( XToEdgeOfCol(x
) < 0 )
5168 !SendEvent( wxEVT_GRID_LABEL_LEFT_CLICK
, -1, col
, event
) )
5170 if ( !event
.ShiftDown() && !event
.ControlDown() )
5174 if ( event
.ShiftDown() )
5176 m_selection
->SelectBlock( 0,
5177 m_currentCellCoords
.GetCol(),
5178 GetNumberRows() - 1, col
,
5179 event
.ControlDown(),
5186 m_selection
->SelectCol( col
,
5187 event
.ControlDown(),
5194 ChangeCursorMode(WXGRID_CURSOR_SELECT_COL
, m_colLabelWin
);
5199 // starting to drag-resize a col
5201 if ( CanDragColSize() )
5202 ChangeCursorMode(WXGRID_CURSOR_RESIZE_COL
, m_colLabelWin
);
5207 // ------------ Left double click
5209 if ( event
.LeftDClick() )
5211 int col
= XToEdgeOfCol(x
);
5216 ! SendEvent( wxEVT_GRID_LABEL_LEFT_DCLICK
, -1, col
, event
) )
5218 // no default action at the moment
5223 // adjust column width depending on label text
5224 AutoSizeColLabelSize( col
);
5226 ChangeCursorMode(WXGRID_CURSOR_SELECT_CELL
, m_colLabelWin
);
5232 // ------------ Left button released
5234 else if ( event
.LeftUp() )
5236 if ( m_cursorMode
== WXGRID_CURSOR_RESIZE_COL
)
5238 DoEndDragResizeCol();
5240 // Note: we are ending the event *after* doing
5241 // default processing in this case
5243 SendEvent( wxEVT_GRID_COL_SIZE
, -1, m_dragRowOrCol
, event
);
5246 ChangeCursorMode(WXGRID_CURSOR_SELECT_CELL
, m_colLabelWin
);
5251 // ------------ Right button down
5253 else if ( event
.RightDown() )
5257 !SendEvent( wxEVT_GRID_LABEL_RIGHT_CLICK
, -1, col
, event
) )
5259 // no default action at the moment
5264 // ------------ Right double click
5266 else if ( event
.RightDClick() )
5270 !SendEvent( wxEVT_GRID_LABEL_RIGHT_DCLICK
, -1, col
, event
) )
5272 // no default action at the moment
5277 // ------------ No buttons down and mouse moving
5279 else if ( event
.Moving() )
5281 m_dragRowOrCol
= XToEdgeOfCol( x
);
5282 if ( m_dragRowOrCol
>= 0 )
5284 if ( m_cursorMode
== WXGRID_CURSOR_SELECT_CELL
)
5286 // don't capture the cursor yet
5287 if ( CanDragColSize() )
5288 ChangeCursorMode(WXGRID_CURSOR_RESIZE_COL
, m_colLabelWin
, false);
5291 else if ( m_cursorMode
!= WXGRID_CURSOR_SELECT_CELL
)
5293 ChangeCursorMode(WXGRID_CURSOR_SELECT_CELL
, m_colLabelWin
, false);
5299 void wxGrid::ProcessCornerLabelMouseEvent( wxMouseEvent
& event
)
5301 if ( event
.LeftDown() )
5303 // indicate corner label by having both row and
5306 if ( !SendEvent( wxEVT_GRID_LABEL_LEFT_CLICK
, -1, -1, event
) )
5312 else if ( event
.LeftDClick() )
5314 SendEvent( wxEVT_GRID_LABEL_LEFT_DCLICK
, -1, -1, event
);
5317 else if ( event
.RightDown() )
5319 if ( !SendEvent( wxEVT_GRID_LABEL_RIGHT_CLICK
, -1, -1, event
) )
5321 // no default action at the moment
5325 else if ( event
.RightDClick() )
5327 if ( !SendEvent( wxEVT_GRID_LABEL_RIGHT_DCLICK
, -1, -1, event
) )
5329 // no default action at the moment
5334 void wxGrid::ChangeCursorMode(CursorMode mode
,
5339 static const wxChar
*cursorModes
[] =
5348 wxLogTrace(_T("grid"),
5349 _T("wxGrid cursor mode (mouse capture for %s): %s -> %s"),
5350 win
== m_colLabelWin
? _T("colLabelWin")
5351 : win
? _T("rowLabelWin")
5353 cursorModes
[m_cursorMode
], cursorModes
[mode
]);
5354 #endif // __WXDEBUG__
5356 if ( mode
== m_cursorMode
&&
5357 win
== m_winCapture
&&
5358 captureMouse
== (m_winCapture
!= NULL
))
5363 // by default use the grid itself
5369 if (m_winCapture
->HasCapture()) m_winCapture
->ReleaseMouse();
5370 m_winCapture
= (wxWindow
*)NULL
;
5373 m_cursorMode
= mode
;
5375 switch ( m_cursorMode
)
5377 case WXGRID_CURSOR_RESIZE_ROW
:
5378 win
->SetCursor( m_rowResizeCursor
);
5381 case WXGRID_CURSOR_RESIZE_COL
:
5382 win
->SetCursor( m_colResizeCursor
);
5386 win
->SetCursor( *wxSTANDARD_CURSOR
);
5389 // we need to capture mouse when resizing
5390 bool resize
= m_cursorMode
== WXGRID_CURSOR_RESIZE_ROW
||
5391 m_cursorMode
== WXGRID_CURSOR_RESIZE_COL
;
5393 if ( captureMouse
&& resize
)
5395 win
->CaptureMouse();
5400 void wxGrid::ProcessGridCellMouseEvent( wxMouseEvent
& event
)
5403 wxPoint
pos( event
.GetPosition() );
5404 CalcUnscrolledPosition( pos
.x
, pos
.y
, &x
, &y
);
5406 wxGridCellCoords coords
;
5407 XYToCell( x
, y
, coords
);
5409 int cell_rows
, cell_cols
;
5410 bool isFirstDrag
= !m_isDragging
;
5411 GetCellSize( coords
.GetRow(), coords
.GetCol(), &cell_rows
, &cell_cols
);
5412 if ((cell_rows
< 0) || (cell_cols
< 0))
5414 coords
.SetRow(coords
.GetRow() + cell_rows
);
5415 coords
.SetCol(coords
.GetCol() + cell_cols
);
5418 if ( event
.Dragging() )
5420 //wxLogDebug("pos(%d, %d) coords(%d, %d)", pos.x, pos.y, coords.GetRow(), coords.GetCol());
5422 // Don't start doing anything until the mouse has been drug at
5423 // least 3 pixels in any direction...
5426 if (m_startDragPos
== wxDefaultPosition
)
5428 m_startDragPos
= pos
;
5431 if (abs(m_startDragPos
.x
- pos
.x
) < 4 && abs(m_startDragPos
.y
- pos
.y
) < 4)
5435 m_isDragging
= true;
5436 if ( m_cursorMode
== WXGRID_CURSOR_SELECT_CELL
)
5438 // Hide the edit control, so it
5439 // won't interfer with drag-shrinking.
5440 if ( IsCellEditControlShown() )
5442 HideCellEditControl();
5443 SaveEditControlValue();
5446 // Have we captured the mouse yet?
5449 m_winCapture
= m_gridWin
;
5450 m_winCapture
->CaptureMouse();
5453 if ( coords
!= wxGridNoCellCoords
)
5455 if ( event
.ControlDown() )
5457 if ( m_selectingKeyboard
== wxGridNoCellCoords
)
5458 m_selectingKeyboard
= coords
;
5459 HighlightBlock ( m_selectingKeyboard
, coords
);
5461 else if ( CanDragCell() )
5465 if ( m_selectingKeyboard
== wxGridNoCellCoords
)
5466 m_selectingKeyboard
= coords
;
5468 SendEvent( wxEVT_GRID_CELL_BEGIN_DRAG
,
5476 if ( !IsSelection() )
5478 HighlightBlock( coords
, coords
);
5482 HighlightBlock( m_currentCellCoords
, coords
);
5486 if (! IsVisible(coords
))
5488 MakeCellVisible(coords
);
5489 // TODO: need to introduce a delay or something here. The
5490 // scrolling is way to fast, at least on MSW - also on GTK.
5494 else if ( m_cursorMode
== WXGRID_CURSOR_RESIZE_ROW
)
5496 int cw
, ch
, left
, dummy
;
5497 m_gridWin
->GetClientSize( &cw
, &ch
);
5498 CalcUnscrolledPosition( 0, 0, &left
, &dummy
);
5500 wxClientDC
dc( m_gridWin
);
5502 y
= wxMax( y
, GetRowTop(m_dragRowOrCol
) +
5503 GetRowMinimalHeight(m_dragRowOrCol
) );
5504 dc
.SetLogicalFunction(wxINVERT
);
5505 if ( m_dragLastPos
>= 0 )
5507 dc
.DrawLine( left
, m_dragLastPos
, left
+cw
, m_dragLastPos
);
5509 dc
.DrawLine( left
, y
, left
+cw
, y
);
5512 else if ( m_cursorMode
== WXGRID_CURSOR_RESIZE_COL
)
5514 int cw
, ch
, dummy
, top
;
5515 m_gridWin
->GetClientSize( &cw
, &ch
);
5516 CalcUnscrolledPosition( 0, 0, &dummy
, &top
);
5518 wxClientDC
dc( m_gridWin
);
5520 x
= wxMax( x
, GetColLeft(m_dragRowOrCol
) +
5521 GetColMinimalWidth(m_dragRowOrCol
) );
5522 dc
.SetLogicalFunction(wxINVERT
);
5523 if ( m_dragLastPos
>= 0 )
5525 dc
.DrawLine( m_dragLastPos
, top
, m_dragLastPos
, top
+ch
);
5527 dc
.DrawLine( x
, top
, x
, top
+ch
);
5534 m_isDragging
= false;
5535 m_startDragPos
= wxDefaultPosition
;
5537 // VZ: if we do this, the mode is reset to WXGRID_CURSOR_SELECT_CELL
5538 // immediately after it becomes WXGRID_CURSOR_RESIZE_ROW/COL under
5541 if ( event
.Entering() || event
.Leaving() )
5543 ChangeCursorMode(WXGRID_CURSOR_SELECT_CELL
);
5544 m_gridWin
->SetCursor( *wxSTANDARD_CURSOR
);
5549 // ------------ Left button pressed
5551 if ( event
.LeftDown() && coords
!= wxGridNoCellCoords
)
5553 if ( !SendEvent( wxEVT_GRID_CELL_LEFT_CLICK
,
5558 if ( !event
.ControlDown() )
5560 if ( event
.ShiftDown() )
5564 m_selection
->SelectBlock( m_currentCellCoords
.GetRow(),
5565 m_currentCellCoords
.GetCol(),
5568 event
.ControlDown(),
5574 else if ( XToEdgeOfCol(x
) < 0 &&
5575 YToEdgeOfRow(y
) < 0 )
5577 DisableCellEditControl();
5578 MakeCellVisible( coords
);
5580 if ( event
.ControlDown() )
5584 m_selection
->ToggleCellSelection( coords
.GetRow(),
5586 event
.ControlDown(),
5591 m_selectingTopLeft
= wxGridNoCellCoords
;
5592 m_selectingBottomRight
= wxGridNoCellCoords
;
5593 m_selectingKeyboard
= coords
;
5597 m_waitForSlowClick
= m_currentCellCoords
== coords
&& coords
!= wxGridNoCellCoords
;
5598 SetCurrentCell( coords
);
5601 if ( m_selection
->GetSelectionMode() !=
5602 wxGrid::wxGridSelectCells
)
5604 HighlightBlock( coords
, coords
);
5613 // ------------ Left double click
5615 else if ( event
.LeftDClick() && coords
!= wxGridNoCellCoords
)
5617 DisableCellEditControl();
5619 if ( XToEdgeOfCol(x
) < 0 && YToEdgeOfRow(y
) < 0 )
5621 if ( !SendEvent( wxEVT_GRID_CELL_LEFT_DCLICK
,
5626 // we want double click to select a cell and start editing
5627 // (i.e. to behave in same way as sequence of two slow clicks):
5628 m_waitForSlowClick
= true;
5635 // ------------ Left button released
5637 else if ( event
.LeftUp() )
5639 if ( m_cursorMode
== WXGRID_CURSOR_SELECT_CELL
)
5643 if (m_winCapture
->HasCapture()) m_winCapture
->ReleaseMouse();
5644 m_winCapture
= NULL
;
5647 if ( coords
== m_currentCellCoords
&& m_waitForSlowClick
&& CanEnableCellControl())
5650 EnableCellEditControl();
5652 wxGridCellAttr
* attr
= GetCellAttr(coords
);
5653 wxGridCellEditor
*editor
= attr
->GetEditor(this, coords
.GetRow(), coords
.GetCol());
5654 editor
->StartingClick();
5658 m_waitForSlowClick
= false;
5660 else if ( m_selectingTopLeft
!= wxGridNoCellCoords
&&
5661 m_selectingBottomRight
!= wxGridNoCellCoords
)
5665 m_selection
->SelectBlock( m_selectingTopLeft
.GetRow(),
5666 m_selectingTopLeft
.GetCol(),
5667 m_selectingBottomRight
.GetRow(),
5668 m_selectingBottomRight
.GetCol(),
5669 event
.ControlDown(),
5675 m_selectingTopLeft
= wxGridNoCellCoords
;
5676 m_selectingBottomRight
= wxGridNoCellCoords
;
5678 // Show the edit control, if it has been hidden for
5680 ShowCellEditControl();
5683 else if ( m_cursorMode
== WXGRID_CURSOR_RESIZE_ROW
)
5685 ChangeCursorMode(WXGRID_CURSOR_SELECT_CELL
);
5686 DoEndDragResizeRow();
5688 // Note: we are ending the event *after* doing
5689 // default processing in this case
5691 SendEvent( wxEVT_GRID_ROW_SIZE
, m_dragRowOrCol
, -1, event
);
5693 else if ( m_cursorMode
== WXGRID_CURSOR_RESIZE_COL
)
5695 ChangeCursorMode(WXGRID_CURSOR_SELECT_CELL
);
5696 DoEndDragResizeCol();
5698 // Note: we are ending the event *after* doing
5699 // default processing in this case
5701 SendEvent( wxEVT_GRID_COL_SIZE
, -1, m_dragRowOrCol
, event
);
5708 // ------------ Right button down
5710 else if ( event
.RightDown() && coords
!= wxGridNoCellCoords
)
5712 DisableCellEditControl();
5713 if ( !SendEvent( wxEVT_GRID_CELL_RIGHT_CLICK
,
5718 // no default action at the moment
5723 // ------------ Right double click
5725 else if ( event
.RightDClick() && coords
!= wxGridNoCellCoords
)
5727 DisableCellEditControl();
5728 if ( !SendEvent( wxEVT_GRID_CELL_RIGHT_DCLICK
,
5733 // no default action at the moment
5737 // ------------ Moving and no button action
5739 else if ( event
.Moving() && !event
.IsButton() )
5741 if( coords
.GetRow() < 0 || coords
.GetCol() < 0 )
5743 // out of grid cell area
5744 ChangeCursorMode(WXGRID_CURSOR_SELECT_CELL
);
5748 int dragRow
= YToEdgeOfRow( y
);
5749 int dragCol
= XToEdgeOfCol( x
);
5751 // Dragging on the corner of a cell to resize in both
5752 // directions is not implemented yet...
5754 if ( dragRow
>= 0 && dragCol
>= 0 )
5756 ChangeCursorMode(WXGRID_CURSOR_SELECT_CELL
);
5762 m_dragRowOrCol
= dragRow
;
5764 if ( m_cursorMode
== WXGRID_CURSOR_SELECT_CELL
)
5766 if ( CanDragRowSize() && CanDragGridSize() )
5767 ChangeCursorMode(WXGRID_CURSOR_RESIZE_ROW
);
5772 m_dragRowOrCol
= dragCol
;
5780 m_dragRowOrCol
= dragCol
;
5782 if ( m_cursorMode
== WXGRID_CURSOR_SELECT_CELL
)
5784 if ( CanDragColSize() && CanDragGridSize() )
5785 ChangeCursorMode(WXGRID_CURSOR_RESIZE_COL
);
5791 // Neither on a row or col edge
5793 if ( m_cursorMode
!= WXGRID_CURSOR_SELECT_CELL
)
5795 ChangeCursorMode(WXGRID_CURSOR_SELECT_CELL
);
5801 void wxGrid::DoEndDragResizeRow()
5803 if ( m_dragLastPos
>= 0 )
5805 // erase the last line and resize the row
5807 int cw
, ch
, left
, dummy
;
5808 m_gridWin
->GetClientSize( &cw
, &ch
);
5809 CalcUnscrolledPosition( 0, 0, &left
, &dummy
);
5811 wxClientDC
dc( m_gridWin
);
5813 dc
.SetLogicalFunction( wxINVERT
);
5814 dc
.DrawLine( left
, m_dragLastPos
, left
+cw
, m_dragLastPos
);
5815 HideCellEditControl();
5816 SaveEditControlValue();
5818 int rowTop
= GetRowTop(m_dragRowOrCol
);
5819 SetRowSize( m_dragRowOrCol
,
5820 wxMax( m_dragLastPos
- rowTop
, m_minAcceptableRowHeight
) );
5822 if ( !GetBatchCount() )
5824 // Only needed to get the correct rect.y:
5825 wxRect
rect ( CellToRect( m_dragRowOrCol
, 0 ) );
5827 CalcScrolledPosition(0, rect
.y
, &dummy
, &rect
.y
);
5828 rect
.width
= m_rowLabelWidth
;
5829 rect
.height
= ch
- rect
.y
;
5830 m_rowLabelWin
->Refresh( true, &rect
);
5832 // if there is a multicell block, paint all of it
5835 int i
, cell_rows
, cell_cols
, subtract_rows
= 0;
5836 int leftCol
= XToCol(left
);
5837 int rightCol
= internalXToCol(left
+cw
);
5840 for (i
=leftCol
; i
<rightCol
; i
++)
5842 GetCellSize(m_dragRowOrCol
, i
, &cell_rows
, &cell_cols
);
5843 if (cell_rows
< subtract_rows
)
5844 subtract_rows
= cell_rows
;
5846 rect
.y
= GetRowTop(m_dragRowOrCol
+ subtract_rows
);
5847 CalcScrolledPosition(0, rect
.y
, &dummy
, &rect
.y
);
5848 rect
.height
= ch
- rect
.y
;
5851 m_gridWin
->Refresh( false, &rect
);
5854 ShowCellEditControl();
5859 void wxGrid::DoEndDragResizeCol()
5861 if ( m_dragLastPos
>= 0 )
5863 // erase the last line and resize the col
5865 int cw
, ch
, dummy
, top
;
5866 m_gridWin
->GetClientSize( &cw
, &ch
);
5867 CalcUnscrolledPosition( 0, 0, &dummy
, &top
);
5869 wxClientDC
dc( m_gridWin
);
5871 dc
.SetLogicalFunction( wxINVERT
);
5872 dc
.DrawLine( m_dragLastPos
, top
, m_dragLastPos
, top
+ch
);
5873 HideCellEditControl();
5874 SaveEditControlValue();
5876 int colLeft
= GetColLeft(m_dragRowOrCol
);
5877 SetColSize( m_dragRowOrCol
,
5878 wxMax( m_dragLastPos
- colLeft
,
5879 GetColMinimalWidth(m_dragRowOrCol
) ) );
5881 if ( !GetBatchCount() )
5883 // Only needed to get the correct rect.x:
5884 wxRect
rect ( CellToRect( 0, m_dragRowOrCol
) );
5886 CalcScrolledPosition(rect
.x
, 0, &rect
.x
, &dummy
);
5887 rect
.width
= cw
- rect
.x
;
5888 rect
.height
= m_colLabelHeight
;
5889 m_colLabelWin
->Refresh( true, &rect
);
5891 // if there is a multicell block, paint all of it
5894 int i
, cell_rows
, cell_cols
, subtract_cols
= 0;
5895 int topRow
= YToRow(top
);
5896 int bottomRow
= internalYToRow(top
+cw
);
5899 for (i
=topRow
; i
<bottomRow
; i
++)
5901 GetCellSize(i
, m_dragRowOrCol
, &cell_rows
, &cell_cols
);
5902 if (cell_cols
< subtract_cols
)
5903 subtract_cols
= cell_cols
;
5905 rect
.x
= GetColLeft(m_dragRowOrCol
+ subtract_cols
);
5906 CalcScrolledPosition(rect
.x
, 0, &rect
.x
, &dummy
);
5907 rect
.width
= cw
- rect
.x
;
5910 m_gridWin
->Refresh( false, &rect
);
5913 ShowCellEditControl();
5920 // ------ interaction with data model
5922 bool wxGrid::ProcessTableMessage( wxGridTableMessage
& msg
)
5924 switch ( msg
.GetId() )
5926 case wxGRIDTABLE_REQUEST_VIEW_GET_VALUES
:
5927 return GetModelValues();
5929 case wxGRIDTABLE_REQUEST_VIEW_SEND_VALUES
:
5930 return SetModelValues();
5932 case wxGRIDTABLE_NOTIFY_ROWS_INSERTED
:
5933 case wxGRIDTABLE_NOTIFY_ROWS_APPENDED
:
5934 case wxGRIDTABLE_NOTIFY_ROWS_DELETED
:
5935 case wxGRIDTABLE_NOTIFY_COLS_INSERTED
:
5936 case wxGRIDTABLE_NOTIFY_COLS_APPENDED
:
5937 case wxGRIDTABLE_NOTIFY_COLS_DELETED
:
5938 return Redimension( msg
);
5947 // The behaviour of this function depends on the grid table class
5948 // Clear() function. For the default wxGridStringTable class the
5949 // behavious is to replace all cell contents with wxEmptyString but
5950 // not to change the number of rows or cols.
5952 void wxGrid::ClearGrid()
5956 if (IsCellEditControlEnabled())
5957 DisableCellEditControl();
5960 if ( !GetBatchCount() ) m_gridWin
->Refresh();
5965 bool wxGrid::InsertRows( int pos
, int numRows
, bool WXUNUSED(updateLabels
) )
5967 // TODO: something with updateLabels flag
5971 wxFAIL_MSG( wxT("Called wxGrid::InsertRows() before calling CreateGrid()") );
5977 if (IsCellEditControlEnabled())
5978 DisableCellEditControl();
5980 bool done
= m_table
->InsertRows( pos
, numRows
);
5983 // the table will have sent the results of the insert row
5984 // operation to this view object as a grid table message
5990 bool wxGrid::AppendRows( int numRows
, bool WXUNUSED(updateLabels
) )
5992 // TODO: something with updateLabels flag
5996 wxFAIL_MSG( wxT("Called wxGrid::AppendRows() before calling CreateGrid()") );
6002 bool done
= m_table
&& m_table
->AppendRows( numRows
);
6004 // the table will have sent the results of the append row
6005 // operation to this view object as a grid table message
6011 bool wxGrid::DeleteRows( int pos
, int numRows
, bool WXUNUSED(updateLabels
) )
6013 // TODO: something with updateLabels flag
6017 wxFAIL_MSG( wxT("Called wxGrid::DeleteRows() before calling CreateGrid()") );
6023 if (IsCellEditControlEnabled())
6024 DisableCellEditControl();
6026 bool done
= m_table
->DeleteRows( pos
, numRows
);
6028 // the table will have sent the results of the delete row
6029 // operation to this view object as a grid table message
6035 bool wxGrid::InsertCols( int pos
, int numCols
, bool WXUNUSED(updateLabels
) )
6037 // TODO: something with updateLabels flag
6041 wxFAIL_MSG( wxT("Called wxGrid::InsertCols() before calling CreateGrid()") );
6047 if (IsCellEditControlEnabled())
6048 DisableCellEditControl();
6050 bool done
= m_table
->InsertCols( pos
, numCols
);
6052 // the table will have sent the results of the insert col
6053 // operation to this view object as a grid table message
6059 bool wxGrid::AppendCols( int numCols
, bool WXUNUSED(updateLabels
) )
6061 // TODO: something with updateLabels flag
6065 wxFAIL_MSG( wxT("Called wxGrid::AppendCols() before calling CreateGrid()") );
6071 bool done
= m_table
->AppendCols( numCols
);
6073 // the table will have sent the results of the append col
6074 // operation to this view object as a grid table message
6080 bool wxGrid::DeleteCols( int pos
, int numCols
, bool WXUNUSED(updateLabels
) )
6082 // TODO: something with updateLabels flag
6086 wxFAIL_MSG( wxT("Called wxGrid::DeleteCols() before calling CreateGrid()") );
6092 if (IsCellEditControlEnabled())
6093 DisableCellEditControl();
6095 bool done
= m_table
->DeleteCols( pos
, numCols
);
6097 // the table will have sent the results of the delete col
6098 // operation to this view object as a grid table message
6106 // ----- event handlers
6109 // Generate a grid event based on a mouse event and
6110 // return the result of ProcessEvent()
6112 int wxGrid::SendEvent( const wxEventType type
,
6114 wxMouseEvent
& mouseEv
)
6119 if ( type
== wxEVT_GRID_ROW_SIZE
|| type
== wxEVT_GRID_COL_SIZE
)
6121 int rowOrCol
= (row
== -1 ? col
: row
);
6123 wxGridSizeEvent
gridEvt( GetId(),
6127 mouseEv
.GetX() + GetRowLabelSize(),
6128 mouseEv
.GetY() + GetColLabelSize(),
6129 mouseEv
.ControlDown(),
6130 mouseEv
.ShiftDown(),
6132 mouseEv
.MetaDown() );
6134 claimed
= GetEventHandler()->ProcessEvent(gridEvt
);
6135 vetoed
= !gridEvt
.IsAllowed();
6137 else if ( type
== wxEVT_GRID_RANGE_SELECT
)
6139 // Right now, it should _never_ end up here!
6140 wxGridRangeSelectEvent
gridEvt( GetId(),
6144 m_selectingBottomRight
,
6146 mouseEv
.ControlDown(),
6147 mouseEv
.ShiftDown(),
6149 mouseEv
.MetaDown() );
6151 claimed
= GetEventHandler()->ProcessEvent(gridEvt
);
6152 vetoed
= !gridEvt
.IsAllowed();
6156 wxGridEvent
gridEvt( GetId(),
6160 mouseEv
.GetX() + GetRowLabelSize(),
6161 mouseEv
.GetY() + GetColLabelSize(),
6163 mouseEv
.ControlDown(),
6164 mouseEv
.ShiftDown(),
6166 mouseEv
.MetaDown() );
6167 claimed
= GetEventHandler()->ProcessEvent(gridEvt
);
6168 vetoed
= !gridEvt
.IsAllowed();
6171 // A Veto'd event may not be `claimed' so test this first
6172 if (vetoed
) return -1;
6173 return claimed
? 1 : 0;
6177 // Generate a grid event of specified type and return the result
6178 // of ProcessEvent().
6180 int wxGrid::SendEvent( const wxEventType type
,
6186 if ( type
== wxEVT_GRID_ROW_SIZE
|| type
== wxEVT_GRID_COL_SIZE
)
6188 int rowOrCol
= (row
== -1 ? col
: row
);
6190 wxGridSizeEvent
gridEvt( GetId(),
6195 claimed
= GetEventHandler()->ProcessEvent(gridEvt
);
6196 vetoed
= !gridEvt
.IsAllowed();
6200 wxGridEvent
gridEvt( GetId(),
6205 claimed
= GetEventHandler()->ProcessEvent(gridEvt
);
6206 vetoed
= !gridEvt
.IsAllowed();
6209 // A Veto'd event may not be `claimed' so test this first
6210 if (vetoed
) return -1;
6211 return claimed
? 1 : 0;
6215 void wxGrid::OnPaint( wxPaintEvent
& WXUNUSED(event
) )
6217 wxPaintDC
dc(this); // needed to prevent zillions of paint events on MSW
6220 void wxGrid::Refresh(bool eraseb
, const wxRect
* rect
)
6222 // Don't do anything if between Begin/EndBatch...
6223 // EndBatch() will do all this on the last nested one anyway.
6224 if (! GetBatchCount())
6226 // Refresh to get correct scrolled position:
6227 wxScrolledWindow::Refresh(eraseb
,rect
);
6231 int rect_x
, rect_y
, rectWidth
, rectHeight
;
6232 int width_label
, width_cell
, height_label
, height_cell
;
6235 //Copy rectangle can get scroll offsets..
6236 rect_x
= rect
->GetX();
6237 rect_y
= rect
->GetY();
6238 rectWidth
= rect
->GetWidth();
6239 rectHeight
= rect
->GetHeight();
6241 width_label
= m_rowLabelWidth
- rect_x
;
6242 if (width_label
> rectWidth
) width_label
= rectWidth
;
6244 height_label
= m_colLabelHeight
- rect_y
;
6245 if (height_label
> rectHeight
) height_label
= rectHeight
;
6247 if (rect_x
> m_rowLabelWidth
)
6249 x
= rect_x
- m_rowLabelWidth
;
6250 width_cell
= rectWidth
;
6255 width_cell
= rectWidth
- (m_rowLabelWidth
- rect_x
);
6258 if (rect_y
> m_colLabelHeight
)
6260 y
= rect_y
- m_colLabelHeight
;
6261 height_cell
= rectHeight
;
6266 height_cell
= rectHeight
- (m_colLabelHeight
- rect_y
);
6269 // Paint corner label part intersecting rect.
6270 if ( width_label
> 0 && height_label
> 0 )
6272 wxRect
anotherrect(rect_x
, rect_y
, width_label
, height_label
);
6273 m_cornerLabelWin
->Refresh(eraseb
, &anotherrect
);
6276 // Paint col labels part intersecting rect.
6277 if ( width_cell
> 0 && height_label
> 0 )
6279 wxRect
anotherrect(x
, rect_y
, width_cell
, height_label
);
6280 m_colLabelWin
->Refresh(eraseb
, &anotherrect
);
6283 // Paint row labels part intersecting rect.
6284 if ( width_label
> 0 && height_cell
> 0 )
6286 wxRect
anotherrect(rect_x
, y
, width_label
, height_cell
);
6287 m_rowLabelWin
->Refresh(eraseb
, &anotherrect
);
6290 // Paint cell area part intersecting rect.
6291 if ( width_cell
> 0 && height_cell
> 0 )
6293 wxRect
anotherrect(x
, y
, width_cell
, height_cell
);
6294 m_gridWin
->Refresh(eraseb
, &anotherrect
);
6299 m_cornerLabelWin
->Refresh(eraseb
, NULL
);
6300 m_colLabelWin
->Refresh(eraseb
, NULL
);
6301 m_rowLabelWin
->Refresh(eraseb
, NULL
);
6302 m_gridWin
->Refresh(eraseb
, NULL
);
6307 void wxGrid::OnSize( wxSizeEvent
& event
)
6309 // position the child windows
6312 // don't call CalcDimensions() from here, the base class handles the size
6318 void wxGrid::OnKeyDown( wxKeyEvent
& event
)
6320 if ( m_inOnKeyDown
)
6322 // shouldn't be here - we are going round in circles...
6324 wxFAIL_MSG( wxT("wxGrid::OnKeyDown called while already active") );
6327 m_inOnKeyDown
= true;
6329 // propagate the event up and see if it gets processed
6331 wxWindow
*parent
= GetParent();
6332 wxKeyEvent
keyEvt( event
);
6333 keyEvt
.SetEventObject( parent
);
6335 if ( !parent
->GetEventHandler()->ProcessEvent( keyEvt
) )
6338 // try local handlers
6340 switch ( event
.GetKeyCode() )
6343 if ( event
.ControlDown() )
6345 MoveCursorUpBlock( event
.ShiftDown() );
6349 MoveCursorUp( event
.ShiftDown() );
6354 if ( event
.ControlDown() )
6356 MoveCursorDownBlock( event
.ShiftDown() );
6360 MoveCursorDown( event
.ShiftDown() );
6365 if ( event
.ControlDown() )
6367 MoveCursorLeftBlock( event
.ShiftDown() );
6371 MoveCursorLeft( event
.ShiftDown() );
6376 if ( event
.ControlDown() )
6378 MoveCursorRightBlock( event
.ShiftDown() );
6382 MoveCursorRight( event
.ShiftDown() );
6387 case WXK_NUMPAD_ENTER
:
6388 if ( event
.ControlDown() )
6390 event
.Skip(); // to let the edit control have the return
6394 if ( GetGridCursorRow() < GetNumberRows()-1 )
6396 MoveCursorDown( event
.ShiftDown() );
6400 // at the bottom of a column
6401 DisableCellEditControl();
6411 if (event
.ShiftDown())
6413 if ( GetGridCursorCol() > 0 )
6415 MoveCursorLeft( false );
6420 DisableCellEditControl();
6425 if ( GetGridCursorCol() < GetNumberCols()-1 )
6427 MoveCursorRight( false );
6432 DisableCellEditControl();
6438 if ( event
.ControlDown() )
6440 MakeCellVisible( 0, 0 );
6441 SetCurrentCell( 0, 0 );
6450 if ( event
.ControlDown() )
6452 MakeCellVisible( m_numRows
-1, m_numCols
-1 );
6453 SetCurrentCell( m_numRows
-1, m_numCols
-1 );
6470 if ( event
.ControlDown() )
6474 m_selection
->ToggleCellSelection( m_currentCellCoords
.GetRow(),
6475 m_currentCellCoords
.GetCol(),
6476 event
.ControlDown(),
6483 if ( !IsEditable() )
6485 MoveCursorRight( false );
6488 // Otherwise fall through to default
6496 m_inOnKeyDown
= false;
6499 void wxGrid::OnKeyUp( wxKeyEvent
& event
)
6501 // try local handlers
6503 if ( event
.GetKeyCode() == WXK_SHIFT
)
6505 if ( m_selectingTopLeft
!= wxGridNoCellCoords
&&
6506 m_selectingBottomRight
!= wxGridNoCellCoords
)
6510 m_selection
->SelectBlock( m_selectingTopLeft
.GetRow(),
6511 m_selectingTopLeft
.GetCol(),
6512 m_selectingBottomRight
.GetRow(),
6513 m_selectingBottomRight
.GetCol(),
6514 event
.ControlDown(),
6521 m_selectingTopLeft
= wxGridNoCellCoords
;
6522 m_selectingBottomRight
= wxGridNoCellCoords
;
6523 m_selectingKeyboard
= wxGridNoCellCoords
;
6527 void wxGrid::OnChar( wxKeyEvent
& event
)
6529 // is it possible to edit the current cell at all?
6530 if ( !IsCellEditControlEnabled() && CanEnableCellControl() )
6532 // yes, now check whether the cells editor accepts the key
6533 int row
= m_currentCellCoords
.GetRow();
6534 int col
= m_currentCellCoords
.GetCol();
6535 wxGridCellAttr
* attr
= GetCellAttr(row
, col
);
6536 wxGridCellEditor
*editor
= attr
->GetEditor(this, row
, col
);
6538 // <F2> is special and will always start editing, for
6539 // other keys - ask the editor itself
6540 if ( (event
.GetKeyCode() == WXK_F2
&& !event
.HasModifiers())
6541 || editor
->IsAcceptedKey(event
) )
6543 // ensure cell is visble
6544 MakeCellVisible(row
, col
);
6545 EnableCellEditControl();
6547 // a problem can arise if the cell is not completely
6548 // visible (even after calling MakeCellVisible the
6549 // control is not created and calling StartingKey will
6551 if ( event
.GetKeyCode() != WXK_F2
&& editor
->IsCreated() && m_cellEditCtrlEnabled
)
6552 editor
->StartingKey(event
);
6569 void wxGrid::OnEraseBackground(wxEraseEvent
&)
6573 void wxGrid::SetCurrentCell( const wxGridCellCoords
& coords
)
6575 if ( SendEvent( wxEVT_GRID_SELECT_CELL
, coords
.GetRow(), coords
.GetCol() ) )
6577 // the event has been intercepted - do nothing
6581 wxClientDC
dc(m_gridWin
);
6584 if ( m_currentCellCoords
!= wxGridNoCellCoords
)
6586 DisableCellEditControl();
6588 if ( IsVisible( m_currentCellCoords
, false ) )
6591 r
= BlockToDeviceRect(m_currentCellCoords
, m_currentCellCoords
);
6592 if ( !m_gridLinesEnabled
)
6600 wxGridCellCoordsArray cells
= CalcCellsExposed( r
);
6602 // Otherwise refresh redraws the highlight!
6603 m_currentCellCoords
= coords
;
6605 DrawGridCellArea(dc
,cells
);
6606 DrawAllGridLines( dc
, r
);
6610 m_currentCellCoords
= coords
;
6612 wxGridCellAttr
* attr
= GetCellAttr(coords
);
6613 DrawCellHighlight(dc
, attr
);
6618 void wxGrid::HighlightBlock( int topRow
, int leftCol
, int bottomRow
, int rightCol
)
6621 wxGridCellCoords updateTopLeft
, updateBottomRight
;
6625 if ( m_selection
->GetSelectionMode() == wxGrid::wxGridSelectRows
)
6628 rightCol
= GetNumberCols() - 1;
6630 else if ( m_selection
->GetSelectionMode() == wxGrid::wxGridSelectColumns
)
6633 bottomRow
= GetNumberRows() - 1;
6637 if ( topRow
> bottomRow
)
6644 if ( leftCol
> rightCol
)
6651 updateTopLeft
= wxGridCellCoords( topRow
, leftCol
);
6652 updateBottomRight
= wxGridCellCoords( bottomRow
, rightCol
);
6654 // First the case that we selected a completely new area
6655 if ( m_selectingTopLeft
== wxGridNoCellCoords
||
6656 m_selectingBottomRight
== wxGridNoCellCoords
)
6659 rect
= BlockToDeviceRect( wxGridCellCoords ( topRow
, leftCol
),
6660 wxGridCellCoords ( bottomRow
, rightCol
) );
6661 m_gridWin
->Refresh( false, &rect
);
6663 // Now handle changing an existing selection area.
6664 else if ( m_selectingTopLeft
!= updateTopLeft
||
6665 m_selectingBottomRight
!= updateBottomRight
)
6667 // Compute two optimal update rectangles:
6668 // Either one rectangle is a real subset of the
6669 // other, or they are (almost) disjoint!
6671 bool need_refresh
[4];
6675 need_refresh
[3] = false;
6678 // Store intermediate values
6679 wxCoord oldLeft
= m_selectingTopLeft
.GetCol();
6680 wxCoord oldTop
= m_selectingTopLeft
.GetRow();
6681 wxCoord oldRight
= m_selectingBottomRight
.GetCol();
6682 wxCoord oldBottom
= m_selectingBottomRight
.GetRow();
6684 // Determine the outer/inner coordinates.
6685 if (oldLeft
> leftCol
)
6691 if (oldTop
> topRow
)
6697 if (oldRight
< rightCol
)
6700 oldRight
= rightCol
;
6703 if (oldBottom
< bottomRow
)
6706 oldBottom
= bottomRow
;
6710 // Now, either the stuff marked old is the outer
6711 // rectangle or we don't have a situation where one
6712 // is contained in the other.
6714 if ( oldLeft
< leftCol
)
6716 // Refresh the newly selected or deselected
6717 // area to the left of the old or new selection.
6718 need_refresh
[0] = true;
6719 rect
[0] = BlockToDeviceRect( wxGridCellCoords ( oldTop
,
6721 wxGridCellCoords ( oldBottom
,
6725 if ( oldTop
< topRow
)
6727 // Refresh the newly selected or deselected
6728 // area above the old or new selection.
6729 need_refresh
[1] = true;
6730 rect
[1] = BlockToDeviceRect( wxGridCellCoords ( oldTop
,
6732 wxGridCellCoords ( topRow
- 1,
6736 if ( oldRight
> rightCol
)
6738 // Refresh the newly selected or deselected
6739 // area to the right of the old or new selection.
6740 need_refresh
[2] = true;
6741 rect
[2] = BlockToDeviceRect( wxGridCellCoords ( oldTop
,
6743 wxGridCellCoords ( oldBottom
,
6747 if ( oldBottom
> bottomRow
)
6749 // Refresh the newly selected or deselected
6750 // area below the old or new selection.
6751 need_refresh
[3] = true;
6752 rect
[3] = BlockToDeviceRect( wxGridCellCoords ( bottomRow
+ 1,
6754 wxGridCellCoords ( oldBottom
,
6758 // various Refresh() calls
6759 for (i
= 0; i
< 4; i
++ )
6760 if ( need_refresh
[i
] && rect
[i
] != wxGridNoCellRect
)
6761 m_gridWin
->Refresh( false, &(rect
[i
]) );
6764 m_selectingTopLeft
= updateTopLeft
;
6765 m_selectingBottomRight
= updateBottomRight
;
6769 // ------ functions to get/send data (see also public functions)
6772 bool wxGrid::GetModelValues()
6774 // Hide the editor, so it won't hide a changed value.
6775 HideCellEditControl();
6779 // all we need to do is repaint the grid
6781 m_gridWin
->Refresh();
6789 bool wxGrid::SetModelValues()
6793 // Disable the editor, so it won't hide a changed value.
6794 // Do we also want to save the current value of the editor first?
6796 DisableCellEditControl();
6800 for ( row
= 0; row
< m_numRows
; row
++ )
6802 for ( col
= 0; col
< m_numCols
; col
++ )
6804 m_table
->SetValue( row
, col
, GetCellValue(row
, col
) );
6816 // Note - this function only draws cells that are in the list of
6817 // exposed cells (usually set from the update region by
6818 // CalcExposedCells)
6820 void wxGrid::DrawGridCellArea( wxDC
& dc
, const wxGridCellCoordsArray
& cells
)
6822 if ( !m_numRows
|| !m_numCols
) return;
6824 int i
, numCells
= cells
.GetCount();
6825 int row
, col
, cell_rows
, cell_cols
;
6826 wxGridCellCoordsArray redrawCells
;
6828 for ( i
= numCells
-1; i
>= 0; i
-- )
6830 row
= cells
[i
].GetRow();
6831 col
= cells
[i
].GetCol();
6832 GetCellSize( row
, col
, &cell_rows
, &cell_cols
);
6834 // If this cell is part of a multicell block, find owner for repaint
6835 if ( cell_rows
<= 0 || cell_cols
<= 0 )
6837 wxGridCellCoords
cell(row
+cell_rows
, col
+cell_cols
);
6838 bool marked
= false;
6839 for ( int j
= 0; j
< numCells
; j
++ )
6841 if ( cell
== cells
[j
] )
6849 int count
= redrawCells
.GetCount();
6850 for (int j
= 0; j
< count
; j
++)
6852 if ( cell
== redrawCells
[j
] )
6858 if (!marked
) redrawCells
.Add( cell
);
6860 continue; // don't bother drawing this cell
6863 // If this cell is empty, find cell to left that might want to overflow
6864 if (m_table
&& m_table
->IsEmptyCell(row
, col
))
6866 for ( int l
= 0; l
< cell_rows
; l
++ )
6868 // find a cell in this row to left alreay marked for repaint
6870 for (int k
= 0; k
< int(redrawCells
.GetCount()); k
++)
6871 if ((redrawCells
[k
].GetCol() < left
) &&
6872 (redrawCells
[k
].GetRow() == row
))
6873 left
=redrawCells
[k
].GetCol();
6875 if (left
== col
) left
= 0; // oh well
6877 for (int j
= col
-1; j
>= left
; j
--)
6879 if (!m_table
->IsEmptyCell(row
+l
, j
))
6881 if (GetCellOverflow(row
+l
, j
))
6883 wxGridCellCoords
cell(row
+l
, j
);
6884 bool marked
= false;
6886 for (int k
= 0; k
< numCells
; k
++)
6888 if ( cell
== cells
[k
] )
6896 int count
= redrawCells
.GetCount();
6897 for (int k
= 0; k
< count
; k
++)
6899 if ( cell
== redrawCells
[k
] )
6905 if (!marked
) redrawCells
.Add( cell
);
6913 DrawCell( dc
, cells
[i
] );
6916 numCells
= redrawCells
.GetCount();
6918 for ( i
= numCells
- 1; i
>= 0; i
-- )
6920 DrawCell( dc
, redrawCells
[i
] );
6925 void wxGrid::DrawGridSpace( wxDC
& dc
)
6928 m_gridWin
->GetClientSize( &cw
, &ch
);
6931 CalcUnscrolledPosition( cw
, ch
, &right
, &bottom
);
6933 int rightCol
= m_numCols
> 0 ? GetColRight(m_numCols
- 1) : 0;
6934 int bottomRow
= m_numRows
> 0 ? GetRowBottom(m_numRows
- 1) : 0 ;
6936 if ( right
> rightCol
|| bottom
> bottomRow
)
6939 CalcUnscrolledPosition( 0, 0, &left
, &top
);
6941 dc
.SetBrush( wxBrush(GetDefaultCellBackgroundColour(), wxSOLID
) );
6942 dc
.SetPen( *wxTRANSPARENT_PEN
);
6944 if ( right
> rightCol
)
6946 dc
.DrawRectangle( rightCol
, top
, right
- rightCol
, ch
);
6949 if ( bottom
> bottomRow
)
6951 dc
.DrawRectangle( left
, bottomRow
, cw
, bottom
- bottomRow
);
6957 void wxGrid::DrawCell( wxDC
& dc
, const wxGridCellCoords
& coords
)
6959 int row
= coords
.GetRow();
6960 int col
= coords
.GetCol();
6962 if ( GetColWidth(col
) <= 0 || GetRowHeight(row
) <= 0 )
6965 // we draw the cell border ourselves
6966 #if !WXGRID_DRAW_LINES
6967 if ( m_gridLinesEnabled
)
6968 DrawCellBorder( dc
, coords
);
6971 wxGridCellAttr
* attr
= GetCellAttr(row
, col
);
6973 bool isCurrent
= coords
== m_currentCellCoords
;
6975 wxRect rect
= CellToRect( row
, col
);
6977 // if the editor is shown, we should use it and not the renderer
6978 // Note: However, only if it is really _shown_, i.e. not hidden!
6979 if ( isCurrent
&& IsCellEditControlShown() )
6981 wxGridCellEditor
*editor
= attr
->GetEditor(this, row
, col
);
6982 editor
->PaintBackground(rect
, attr
);
6987 // but all the rest is drawn by the cell renderer and hence may be
6989 wxGridCellRenderer
*renderer
= attr
->GetRenderer(this, row
, col
);
6990 renderer
->Draw(*this, *attr
, dc
, rect
, row
, col
, IsInSelection(coords
));
6997 void wxGrid::DrawCellHighlight( wxDC
& dc
, const wxGridCellAttr
*attr
)
6999 int row
= m_currentCellCoords
.GetRow();
7000 int col
= m_currentCellCoords
.GetCol();
7002 if ( GetColWidth(col
) <= 0 || GetRowHeight(row
) <= 0 )
7005 wxRect rect
= CellToRect(row
, col
);
7007 // hmmm... what could we do here to show that the cell is disabled?
7008 // for now, I just draw a thinner border than for the other ones, but
7009 // it doesn't look really good
7011 int penWidth
= attr
->IsReadOnly() ? m_cellHighlightROPenWidth
: m_cellHighlightPenWidth
;
7015 // The center of th drawn line is where the position/width/height of
7016 // the rectangle is actually at, (on wxMSW atr least,) so we will
7017 // reduce the size of the rectangle to compensate for the thickness of
7018 // the line. If this is too strange on non wxMSW platforms then
7019 // please #ifdef this appropriately.
7020 rect
.x
+= penWidth
/2;
7021 rect
.y
+= penWidth
/2;
7022 rect
.width
-= penWidth
-1;
7023 rect
.height
-= penWidth
-1;
7026 // Now draw the rectangle
7027 // use the cellHighlightColour if the cell is inside a selection, this
7028 // will ensure the cell is always visible.
7029 dc
.SetPen(wxPen(IsInSelection(row
,col
)?m_selectionForeground
:m_cellHighlightColour
, penWidth
, wxSOLID
));
7030 dc
.SetBrush(*wxTRANSPARENT_BRUSH
);
7031 dc
.DrawRectangle(rect
);
7035 // VZ: my experiments with 3d borders...
7037 // how to properly set colours for arbitrary bg?
7038 wxCoord x1
= rect
.x
,
7040 x2
= rect
.x
+ rect
.width
-1,
7041 y2
= rect
.y
+ rect
.height
-1;
7043 dc
.SetPen(*wxWHITE_PEN
);
7044 dc
.DrawLine(x1
, y1
, x2
, y1
);
7045 dc
.DrawLine(x1
, y1
, x1
, y2
);
7047 dc
.DrawLine(x1
+ 1, y2
- 1, x2
- 1, y2
- 1);
7048 dc
.DrawLine(x2
- 1, y1
+ 1, x2
- 1, y2
);
7050 dc
.SetPen(*wxBLACK_PEN
);
7051 dc
.DrawLine(x1
, y2
, x2
, y2
);
7052 dc
.DrawLine(x2
, y1
, x2
, y2
+1);
7057 void wxGrid::DrawCellBorder( wxDC
& dc
, const wxGridCellCoords
& coords
)
7059 int row
= coords
.GetRow();
7060 int col
= coords
.GetCol();
7061 if ( GetColWidth(col
) <= 0 || GetRowHeight(row
) <= 0 )
7064 dc
.SetPen( wxPen(GetGridLineColour(), 1, wxSOLID
) );
7066 wxRect rect
= CellToRect( row
, col
);
7068 // right hand border
7070 dc
.DrawLine( rect
.x
+ rect
.width
, rect
.y
,
7071 rect
.x
+ rect
.width
, rect
.y
+ rect
.height
+ 1 );
7075 dc
.DrawLine( rect
.x
, rect
.y
+ rect
.height
,
7076 rect
.x
+ rect
.width
, rect
.y
+ rect
.height
);
7079 void wxGrid::DrawHighlight(wxDC
& dc
,const wxGridCellCoordsArray
& cells
)
7081 // This if block was previously in wxGrid::OnPaint but that doesn't
7082 // seem to get called under wxGTK - MB
7084 if ( m_currentCellCoords
== wxGridNoCellCoords
&&
7085 m_numRows
&& m_numCols
)
7087 m_currentCellCoords
.Set(0, 0);
7090 if ( IsCellEditControlShown() )
7092 // don't show highlight when the edit control is shown
7096 // if the active cell was repainted, repaint its highlight too because it
7097 // might have been damaged by the grid lines
7098 size_t count
= cells
.GetCount();
7099 for ( size_t n
= 0; n
< count
; n
++ )
7101 if ( cells
[n
] == m_currentCellCoords
)
7103 wxGridCellAttr
* attr
= GetCellAttr(m_currentCellCoords
);
7104 DrawCellHighlight(dc
, attr
);
7112 // TODO: remove this ???
7113 // This is used to redraw all grid lines e.g. when the grid line colour
7116 void wxGrid::DrawAllGridLines( wxDC
& dc
, const wxRegion
& WXUNUSED(reg
) )
7118 #if !WXGRID_DRAW_LINES
7122 if ( !m_gridLinesEnabled
||
7124 !m_numCols
) return;
7126 int top
, bottom
, left
, right
;
7128 #if 0 //#ifndef __WXGTK__
7132 m_gridWin
->GetClientSize(&cw
, &ch
);
7134 // virtual coords of visible area
7136 CalcUnscrolledPosition( 0, 0, &left
, &top
);
7137 CalcUnscrolledPosition( cw
, ch
, &right
, &bottom
);
7142 reg
.GetBox(x
, y
, w
, h
);
7143 CalcUnscrolledPosition( x
, y
, &left
, &top
);
7144 CalcUnscrolledPosition( x
+ w
, y
+ h
, &right
, &bottom
);
7148 m_gridWin
->GetClientSize(&cw
, &ch
);
7149 CalcUnscrolledPosition( 0, 0, &left
, &top
);
7150 CalcUnscrolledPosition( cw
, ch
, &right
, &bottom
);
7153 // avoid drawing grid lines past the last row and col
7155 right
= wxMin( right
, GetColRight(m_numCols
- 1) );
7156 bottom
= wxMin( bottom
, GetRowBottom(m_numRows
- 1) );
7158 // no gridlines inside multicells, clip them out
7159 int leftCol
= internalXToCol(left
);
7160 int topRow
= internalYToRow(top
);
7161 int rightCol
= internalXToCol(right
);
7162 int bottomRow
= internalYToRow(bottom
);
7165 // CS: I don't know why suddenly unscrolled coordinates are used for clipping
7166 wxRegion
clippedcells(0, 0, cw
, ch
);
7168 int i
, j
, cell_rows
, cell_cols
;
7171 for (j
=topRow
; j
<bottomRow
; j
++)
7173 for (i
=leftCol
; i
<rightCol
; i
++)
7175 GetCellSize( j
, i
, &cell_rows
, &cell_cols
);
7176 if ((cell_rows
> 1) || (cell_cols
> 1))
7178 rect
= CellToRect(j
,i
);
7179 CalcScrolledPosition( rect
.x
, rect
.y
, &rect
.x
, &rect
.y
);
7180 clippedcells
.Subtract(rect
);
7182 else if ((cell_rows
< 0) || (cell_cols
< 0))
7184 rect
= CellToRect(j
+cell_rows
, i
+cell_cols
);
7185 CalcScrolledPosition( rect
.x
, rect
.y
, &rect
.x
, &rect
.y
);
7186 clippedcells
.Subtract(rect
);
7191 wxRegion
clippedcells( left
, top
, right
- left
, bottom
- top
);
7193 int i
, j
, cell_rows
, cell_cols
;
7196 for (j
=topRow
; j
<bottomRow
; j
++)
7198 for (i
=leftCol
; i
<rightCol
; i
++)
7200 GetCellSize( j
, i
, &cell_rows
, &cell_cols
);
7201 if ((cell_rows
> 1) || (cell_cols
> 1))
7203 rect
= CellToRect(j
,i
);
7204 clippedcells
.Subtract(rect
);
7206 else if ((cell_rows
< 0) || (cell_cols
< 0))
7208 rect
= CellToRect(j
+cell_rows
, i
+cell_cols
);
7209 clippedcells
.Subtract(rect
);
7214 dc
.SetClippingRegion( clippedcells
);
7216 dc
.SetPen( wxPen(GetGridLineColour(), 1, wxSOLID
) );
7218 // horizontal grid lines
7220 // already declared above - int i;
7221 for ( i
= internalYToRow(top
); i
< m_numRows
; i
++ )
7223 int bot
= GetRowBottom(i
) - 1;
7232 dc
.DrawLine( left
, bot
, right
, bot
);
7237 // vertical grid lines
7239 for ( i
= internalXToCol(left
); i
< m_numCols
; i
++ )
7241 int colRight
= GetColRight(i
) - 1;
7242 if ( colRight
> right
)
7247 if ( colRight
>= left
)
7249 dc
.DrawLine( colRight
, top
, colRight
, bottom
);
7252 dc
.DestroyClippingRegion();
7256 void wxGrid::DrawRowLabels( wxDC
& dc
,const wxArrayInt
& rows
)
7258 if ( !m_numRows
) return;
7261 size_t numLabels
= rows
.GetCount();
7263 for ( i
= 0; i
< numLabels
; i
++ )
7265 DrawRowLabel( dc
, rows
[i
] );
7270 void wxGrid::DrawRowLabel( wxDC
& dc
, int row
)
7272 if ( GetRowHeight(row
) <= 0 || m_rowLabelWidth
<= 0 )
7278 rect
.SetY( GetRowTop(row
) + 1 );
7279 rect
.SetWidth( m_rowLabelWidth
- 2 );
7280 rect
.SetHeight( GetRowHeight(row
) - 2 );
7282 CalcScrolledPosition( 0, rect
.y
, NULL
, &rect
.y
);
7284 wxWindowDC
*win_dc
= (wxWindowDC
*) &dc
;
7286 wxRendererNative::Get().DrawHeaderButton( win_dc
->m_owner
, dc
, rect
, 0 );
7288 int rowTop
= GetRowTop(row
),
7289 rowBottom
= GetRowBottom(row
) - 1;
7291 dc
.SetPen( wxPen(wxSystemSettings::GetColour(wxSYS_COLOUR_3DDKSHADOW
),1, wxSOLID
) );
7292 dc
.DrawLine( m_rowLabelWidth
-1, rowTop
,
7293 m_rowLabelWidth
-1, rowBottom
);
7295 dc
.DrawLine( 0, rowTop
, 0, rowBottom
);
7297 dc
.DrawLine( 0, rowBottom
, m_rowLabelWidth
, rowBottom
);
7299 dc
.SetPen( *wxWHITE_PEN
);
7300 dc
.DrawLine( 1, rowTop
, 1, rowBottom
);
7301 dc
.DrawLine( 1, rowTop
, m_rowLabelWidth
-1, rowTop
);
7303 dc
.SetBackgroundMode( wxTRANSPARENT
);
7304 dc
.SetTextForeground( GetLabelTextColour() );
7305 dc
.SetFont( GetLabelFont() );
7308 GetRowLabelAlignment( &hAlign
, &vAlign
);
7311 rect
.SetY( GetRowTop(row
) + 2 );
7312 rect
.SetWidth( m_rowLabelWidth
- 4 );
7313 rect
.SetHeight( GetRowHeight(row
) - 4 );
7314 DrawTextRectangle( dc
, GetRowLabelValue( row
), rect
, hAlign
, vAlign
);
7318 void wxGrid::DrawColLabels( wxDC
& dc
,const wxArrayInt
& cols
)
7320 if ( !m_numCols
) return;
7323 size_t numLabels
= cols
.GetCount();
7325 for ( i
= 0; i
< numLabels
; i
++ )
7327 DrawColLabel( dc
, cols
[i
] );
7332 void wxGrid::DrawColLabel( wxDC
& dc
, int col
)
7334 if ( GetColWidth(col
) <= 0 || m_colLabelHeight
<= 0 )
7337 int colLeft
= GetColLeft(col
);
7341 rect
.SetX( colLeft
+ 1 );
7343 rect
.SetWidth( GetColWidth(col
) - 2 );
7344 rect
.SetHeight( m_colLabelHeight
- 2 );
7346 wxWindowDC
*win_dc
= (wxWindowDC
*) &dc
;
7348 wxRendererNative::Get().DrawHeaderButton( win_dc
->m_owner
, dc
, rect
, 0 );
7350 int colRight
= GetColRight(col
) - 1;
7352 dc
.SetPen( wxPen(wxSystemSettings::GetColour(wxSYS_COLOUR_3DDKSHADOW
),1, wxSOLID
) );
7353 dc
.DrawLine( colRight
, 0,
7354 colRight
, m_colLabelHeight
-1 );
7356 dc
.DrawLine( colLeft
, 0, colRight
, 0 );
7358 dc
.DrawLine( colLeft
, m_colLabelHeight
-1,
7359 colRight
+1, m_colLabelHeight
-1 );
7361 dc
.SetPen( *wxWHITE_PEN
);
7362 dc
.DrawLine( colLeft
, 1, colLeft
, m_colLabelHeight
-1 );
7363 dc
.DrawLine( colLeft
, 1, colRight
, 1 );
7365 dc
.SetBackgroundMode( wxTRANSPARENT
);
7366 dc
.SetTextForeground( GetLabelTextColour() );
7367 dc
.SetFont( GetLabelFont() );
7369 int hAlign
, vAlign
, orient
;
7370 GetColLabelAlignment( &hAlign
, &vAlign
);
7371 orient
= GetColLabelTextOrientation();
7373 rect
.SetX( colLeft
+ 2 );
7375 rect
.SetWidth( GetColWidth(col
) - 4 );
7376 rect
.SetHeight( m_colLabelHeight
- 4 );
7377 DrawTextRectangle( dc
, GetColLabelValue( col
), rect
, hAlign
, vAlign
, orient
);
7380 void wxGrid::DrawTextRectangle( wxDC
& dc
,
7381 const wxString
& value
,
7385 int textOrientation
)
7387 wxArrayString lines
;
7389 StringToLines( value
, lines
);
7392 //Forward to new API.
7393 DrawTextRectangle( dc
,
7402 void wxGrid::DrawTextRectangle( wxDC
& dc
,
7403 const wxArrayString
& lines
,
7407 int textOrientation
)
7409 long textWidth
, textHeight
;
7410 long lineWidth
, lineHeight
;
7413 dc
.SetClippingRegion( rect
);
7415 nLines
= lines
.GetCount();
7419 float x
= 0.0, y
= 0.0;
7421 if( textOrientation
== wxHORIZONTAL
)
7422 GetTextBoxSize(dc
, lines
, &textWidth
, &textHeight
);
7424 GetTextBoxSize( dc
, lines
, &textHeight
, &textWidth
);
7428 case wxALIGN_BOTTOM
:
7429 if( textOrientation
== wxHORIZONTAL
)
7430 y
= rect
.y
+ (rect
.height
- textHeight
- 1);
7432 x
= rect
.x
+ rect
.width
- textWidth
;
7435 case wxALIGN_CENTRE
:
7436 if( textOrientation
== wxHORIZONTAL
)
7437 y
= rect
.y
+ ((rect
.height
- textHeight
)/2);
7439 x
= rect
.x
+ ((rect
.width
- textWidth
)/2);
7444 if( textOrientation
== wxHORIZONTAL
)
7451 // Align each line of a multi-line label
7452 for( l
= 0; l
< nLines
; l
++ )
7454 dc
.GetTextExtent(lines
[l
], &lineWidth
, &lineHeight
);
7456 switch( horizAlign
)
7459 if( textOrientation
== wxHORIZONTAL
)
7460 x
= rect
.x
+ (rect
.width
- lineWidth
- 1);
7462 y
= rect
.y
+ lineWidth
+ 1;
7465 case wxALIGN_CENTRE
:
7466 if( textOrientation
== wxHORIZONTAL
)
7467 x
= rect
.x
+ ((rect
.width
- lineWidth
)/2);
7469 y
= rect
.y
+ rect
.height
- ((rect
.height
- lineWidth
)/2);
7474 if( textOrientation
== wxHORIZONTAL
)
7477 y
= rect
.y
+ rect
.height
- 1;
7481 if( textOrientation
== wxHORIZONTAL
)
7483 dc
.DrawText( lines
[l
], (int)x
, (int)y
);
7488 dc
.DrawRotatedText( lines
[l
], (int)x
, (int)y
, 90.0 );
7493 dc
.DestroyClippingRegion();
7497 // Split multi line text up into an array of strings. Any existing
7498 // contents of the string array are preserved.
7500 void wxGrid::StringToLines( const wxString
& value
, wxArrayString
& lines
)
7504 wxString eol
= wxTextFile::GetEOL( wxTextFileType_Unix
);
7505 wxString tVal
= wxTextFile::Translate( value
, wxTextFileType_Unix
);
7507 while ( startPos
< (int)tVal
.Length() )
7509 pos
= tVal
.Mid(startPos
).Find( eol
);
7514 else if ( pos
== 0 )
7516 lines
.Add( wxEmptyString
);
7520 lines
.Add( value
.Mid(startPos
, pos
) );
7524 if ( startPos
< (int)value
.Length() )
7526 lines
.Add( value
.Mid( startPos
) );
7531 void wxGrid::GetTextBoxSize( wxDC
& dc
,
7532 const wxArrayString
& lines
,
7533 long *width
, long *height
)
7540 for ( i
= 0; i
< lines
.GetCount(); i
++ )
7542 dc
.GetTextExtent( lines
[i
], &lineW
, &lineH
);
7543 w
= wxMax( w
, lineW
);
7552 // ------ Batch processing.
7554 void wxGrid::EndBatch()
7556 if ( m_batchCount
> 0 )
7559 if ( !m_batchCount
)
7562 m_rowLabelWin
->Refresh();
7563 m_colLabelWin
->Refresh();
7564 m_cornerLabelWin
->Refresh();
7565 m_gridWin
->Refresh();
7570 // Use this, rather than wxWindow::Refresh(), to force an immediate
7571 // repainting of the grid. Has no effect if you are already inside a
7572 // BeginBatch / EndBatch block.
7574 void wxGrid::ForceRefresh()
7580 bool wxGrid::Enable(bool enable
)
7582 if ( !wxScrolledWindow::Enable(enable
) )
7585 // redraw in the new state
7586 m_gridWin
->Refresh();
7592 // ------ Edit control functions
7596 void wxGrid::EnableEditing( bool edit
)
7598 // TODO: improve this ?
7600 if ( edit
!= m_editable
)
7602 if(!edit
) EnableCellEditControl(edit
);
7608 void wxGrid::EnableCellEditControl( bool enable
)
7613 if ( m_currentCellCoords
== wxGridNoCellCoords
)
7614 SetCurrentCell( 0, 0 );
7616 if ( enable
!= m_cellEditCtrlEnabled
)
7620 if (SendEvent( wxEVT_GRID_EDITOR_SHOWN
) <0)
7623 // this should be checked by the caller!
7624 wxASSERT_MSG( CanEnableCellControl(),
7625 _T("can't enable editing for this cell!") );
7627 // do it before ShowCellEditControl()
7628 m_cellEditCtrlEnabled
= enable
;
7630 ShowCellEditControl();
7634 //FIXME:add veto support
7635 SendEvent( wxEVT_GRID_EDITOR_HIDDEN
);
7637 HideCellEditControl();
7638 SaveEditControlValue();
7640 // do it after HideCellEditControl()
7641 m_cellEditCtrlEnabled
= enable
;
7646 bool wxGrid::IsCurrentCellReadOnly() const
7649 wxGridCellAttr
* attr
= ((wxGrid
*)this)->GetCellAttr(m_currentCellCoords
);
7650 bool readonly
= attr
->IsReadOnly();
7656 bool wxGrid::CanEnableCellControl() const
7658 return m_editable
&& (m_currentCellCoords
!= wxGridNoCellCoords
) &&
7659 !IsCurrentCellReadOnly();
7663 bool wxGrid::IsCellEditControlEnabled() const
7665 // the cell edit control might be disable for all cells or just for the
7666 // current one if it's read only
7667 return m_cellEditCtrlEnabled
? !IsCurrentCellReadOnly() : false;
7670 bool wxGrid::IsCellEditControlShown() const
7672 bool isShown
= false;
7674 if ( m_cellEditCtrlEnabled
)
7676 int row
= m_currentCellCoords
.GetRow();
7677 int col
= m_currentCellCoords
.GetCol();
7678 wxGridCellAttr
* attr
= GetCellAttr(row
, col
);
7679 wxGridCellEditor
* editor
= attr
->GetEditor((wxGrid
*) this, row
, col
);
7684 if ( editor
->IsCreated() )
7686 isShown
= editor
->GetControl()->IsShown();
7696 void wxGrid::ShowCellEditControl()
7698 if ( IsCellEditControlEnabled() )
7700 if ( !IsVisible( m_currentCellCoords
) )
7702 m_cellEditCtrlEnabled
= false;
7707 wxRect rect
= CellToRect( m_currentCellCoords
);
7708 int row
= m_currentCellCoords
.GetRow();
7709 int col
= m_currentCellCoords
.GetCol();
7711 // if this is part of a multicell, find owner (topleft)
7712 int cell_rows
, cell_cols
;
7713 GetCellSize( row
, col
, &cell_rows
, &cell_cols
);
7714 if ( cell_rows
<= 0 || cell_cols
<= 0 )
7718 m_currentCellCoords
.SetRow( row
);
7719 m_currentCellCoords
.SetCol( col
);
7722 // convert to scrolled coords
7724 CalcScrolledPosition( rect
.x
, rect
.y
, &rect
.x
, &rect
.y
);
7726 // done in PaintBackground()
7728 // erase the highlight and the cell contents because the editor
7729 // might not cover the entire cell
7730 wxClientDC
dc( m_gridWin
);
7732 dc
.SetBrush(*wxLIGHT_GREY_BRUSH
); //wxBrush(attr->GetBackgroundColour(), wxSOLID));
7733 dc
.SetPen(*wxTRANSPARENT_PEN
);
7734 dc
.DrawRectangle(rect
);
7737 // cell is shifted by one pixel
7738 // However, don't allow x or y to become negative
7739 // since the SetSize() method interprets that as
7746 wxGridCellAttr
* attr
= GetCellAttr(row
, col
);
7747 wxGridCellEditor
* editor
= attr
->GetEditor(this, row
, col
);
7748 if ( !editor
->IsCreated() )
7750 editor
->Create(m_gridWin
, wxID_ANY
,
7751 new wxGridCellEditorEvtHandler(this, editor
));
7753 wxGridEditorCreatedEvent
evt(GetId(),
7754 wxEVT_GRID_EDITOR_CREATED
,
7758 editor
->GetControl());
7759 GetEventHandler()->ProcessEvent(evt
);
7763 // resize editor to overflow into righthand cells if allowed
7764 int maxWidth
= rect
.width
;
7765 wxString value
= GetCellValue(row
, col
);
7766 if ( (value
!= wxEmptyString
) && (attr
->GetOverflow()) )
7769 GetTextExtent(value
, &maxWidth
, &y
,
7770 NULL
, NULL
, &attr
->GetFont());
7771 if (maxWidth
< rect
.width
) maxWidth
= rect
.width
;
7773 int client_right
= m_gridWin
->GetClientSize().GetWidth();
7774 if (rect
.x
+maxWidth
> client_right
)
7775 maxWidth
= client_right
- rect
.x
;
7777 if ((maxWidth
> rect
.width
) && (col
< m_numCols
) && m_table
)
7779 GetCellSize( row
, col
, &cell_rows
, &cell_cols
);
7780 // may have changed earlier
7781 for (int i
= col
+cell_cols
; i
< m_numCols
; i
++)
7784 GetCellSize( row
, i
, &c_rows
, &c_cols
);
7785 // looks weird going over a multicell
7786 if (m_table
->IsEmptyCell(row
,i
) &&
7787 (rect
.width
< maxWidth
) && (c_rows
== 1))
7788 rect
.width
+= GetColWidth(i
);
7792 if (rect
.GetRight() > client_right
)
7793 rect
.SetRight(client_right
-1);
7796 editor
->SetCellAttr(attr
);
7797 editor
->SetSize( rect
);
7798 editor
->Show( true, attr
);
7800 // recalc dimensions in case we need to
7801 // expand the scrolled window to account for editor
7804 editor
->BeginEdit(row
, col
, this);
7805 editor
->SetCellAttr(NULL
);
7814 void wxGrid::HideCellEditControl()
7816 if ( IsCellEditControlEnabled() )
7818 int row
= m_currentCellCoords
.GetRow();
7819 int col
= m_currentCellCoords
.GetCol();
7821 wxGridCellAttr
* attr
= GetCellAttr(row
, col
);
7822 wxGridCellEditor
*editor
= attr
->GetEditor(this, row
, col
);
7823 editor
->Show( false );
7826 m_gridWin
->SetFocus();
7827 // refresh whole row to the right
7828 wxRect
rect( CellToRect(row
, col
) );
7829 CalcScrolledPosition(rect
.x
, rect
.y
, &rect
.x
, &rect
.y
);
7830 rect
.width
= m_gridWin
->GetClientSize().GetWidth() - rect
.x
;
7832 // ensure that the pixels under the focus ring get refreshed as well
7833 rect
.Inflate(10,10);
7835 m_gridWin
->Refresh( false, &rect
);
7840 void wxGrid::SaveEditControlValue()
7842 if ( IsCellEditControlEnabled() )
7844 int row
= m_currentCellCoords
.GetRow();
7845 int col
= m_currentCellCoords
.GetCol();
7847 wxString oldval
= GetCellValue(row
,col
);
7849 wxGridCellAttr
* attr
= GetCellAttr(row
, col
);
7850 wxGridCellEditor
* editor
= attr
->GetEditor(this, row
, col
);
7851 bool changed
= editor
->EndEdit(row
, col
, this);
7858 if ( SendEvent( wxEVT_GRID_CELL_CHANGE
,
7859 m_currentCellCoords
.GetRow(),
7860 m_currentCellCoords
.GetCol() ) < 0 ) {
7862 // Event has been vetoed, set the data back.
7863 SetCellValue(row
,col
,oldval
);
7871 // ------ Grid location functions
7872 // Note that all of these functions work with the logical coordinates of
7873 // grid cells and labels so you will need to convert from device
7874 // coordinates for mouse events etc.
7877 void wxGrid::XYToCell( int x
, int y
, wxGridCellCoords
& coords
)
7879 int row
= YToRow(y
);
7880 int col
= XToCol(x
);
7882 if ( row
== -1 || col
== -1 )
7884 coords
= wxGridNoCellCoords
;
7888 coords
.Set( row
, col
);
7893 // Internal Helper function for computing row or column from some
7894 // (unscrolled) coordinate value, using either
7895 // m_defaultRowHeight/m_defaultColWidth or binary search on array
7896 // of m_rowBottoms/m_ColRights to speed up the search!
7898 static int CoordToRowOrCol(int coord
, int defaultDist
, int minDist
,
7899 const wxArrayInt
& BorderArray
, int nMax
,
7904 return clipToMinMax
&& (nMax
> 0) ? 0 : -1;
7910 size_t i_max
= coord
/ defaultDist
,
7913 if (BorderArray
.IsEmpty())
7915 if((int) i_max
< nMax
)
7917 return clipToMinMax
? nMax
- 1 : -1;
7920 if ( i_max
>= BorderArray
.GetCount())
7921 i_max
= BorderArray
.GetCount() - 1;
7924 if ( coord
>= BorderArray
[i_max
])
7928 i_max
= coord
/ minDist
;
7930 i_max
= BorderArray
.GetCount() - 1;
7932 if ( i_max
>= BorderArray
.GetCount())
7933 i_max
= BorderArray
.GetCount() - 1;
7935 if ( coord
>= BorderArray
[i_max
])
7936 return clipToMinMax
? (int)i_max
: -1;
7937 if ( coord
< BorderArray
[0] )
7940 while ( i_max
- i_min
> 0 )
7942 wxCHECK_MSG(BorderArray
[i_min
] <= coord
&& coord
< BorderArray
[i_max
],
7943 0, _T("wxGrid: internal error in CoordToRowOrCol"));
7944 if (coord
>= BorderArray
[ i_max
- 1])
7948 int median
= i_min
+ (i_max
- i_min
+ 1) / 2;
7949 if (coord
< BorderArray
[median
])
7957 int wxGrid::YToRow( int y
)
7959 return CoordToRowOrCol(y
, m_defaultRowHeight
,
7960 m_minAcceptableRowHeight
, m_rowBottoms
, m_numRows
, false);
7964 int wxGrid::XToCol( int x
)
7966 return CoordToRowOrCol(x
, m_defaultColWidth
,
7967 m_minAcceptableColWidth
, m_colRights
, m_numCols
, false);
7971 // return the row number that that the y coord is near the edge of, or
7972 // -1 if not near an edge
7974 int wxGrid::YToEdgeOfRow( int y
)
7977 i
= internalYToRow(y
);
7979 if ( GetRowHeight(i
) > WXGRID_LABEL_EDGE_ZONE
)
7981 // We know that we are in row i, test whether we are
7982 // close enough to lower or upper border, respectively.
7983 if ( abs(GetRowBottom(i
) - y
) < WXGRID_LABEL_EDGE_ZONE
)
7985 else if( i
> 0 && y
- GetRowTop(i
) < WXGRID_LABEL_EDGE_ZONE
)
7993 // return the col number that that the x coord is near the edge of, or
7994 // -1 if not near an edge
7996 int wxGrid::XToEdgeOfCol( int x
)
7999 i
= internalXToCol(x
);
8001 if ( GetColWidth(i
) > WXGRID_LABEL_EDGE_ZONE
)
8003 // We know that we are in column i, test whether we are
8004 // close enough to right or left border, respectively.
8005 if ( abs(GetColRight(i
) - x
) < WXGRID_LABEL_EDGE_ZONE
)
8007 else if( i
> 0 && x
- GetColLeft(i
) < WXGRID_LABEL_EDGE_ZONE
)
8015 wxRect
wxGrid::CellToRect( int row
, int col
)
8017 wxRect
rect( -1, -1, -1, -1 );
8019 if ( row
>= 0 && row
< m_numRows
&&
8020 col
>= 0 && col
< m_numCols
)
8022 int i
, cell_rows
, cell_cols
;
8023 rect
.width
= rect
.height
= 0;
8024 GetCellSize( row
, col
, &cell_rows
, &cell_cols
);
8025 // if negative then find multicell owner
8026 if (cell_rows
< 0) row
+= cell_rows
;
8027 if (cell_cols
< 0) col
+= cell_cols
;
8028 GetCellSize( row
, col
, &cell_rows
, &cell_cols
);
8030 rect
.x
= GetColLeft(col
);
8031 rect
.y
= GetRowTop(row
);
8032 for (i
=col
; i
<col
+cell_cols
; i
++)
8033 rect
.width
+= GetColWidth(i
);
8034 for (i
=row
; i
<row
+cell_rows
; i
++)
8035 rect
.height
+= GetRowHeight(i
);
8038 // if grid lines are enabled, then the area of the cell is a bit smaller
8039 if (m_gridLinesEnabled
) {
8047 bool wxGrid::IsVisible( int row
, int col
, bool wholeCellVisible
)
8049 // get the cell rectangle in logical coords
8051 wxRect
r( CellToRect( row
, col
) );
8053 // convert to device coords
8055 int left
, top
, right
, bottom
;
8056 CalcScrolledPosition( r
.GetLeft(), r
.GetTop(), &left
, &top
);
8057 CalcScrolledPosition( r
.GetRight(), r
.GetBottom(), &right
, &bottom
);
8059 // check against the client area of the grid window
8062 m_gridWin
->GetClientSize( &cw
, &ch
);
8064 if ( wholeCellVisible
)
8066 // is the cell wholly visible ?
8068 return ( left
>= 0 && right
<= cw
&&
8069 top
>= 0 && bottom
<= ch
);
8073 // is the cell partly visible ?
8075 return ( ((left
>=0 && left
< cw
) || (right
> 0 && right
<= cw
)) &&
8076 ((top
>=0 && top
< ch
) || (bottom
> 0 && bottom
<= ch
)) );
8081 // make the specified cell location visible by doing a minimal amount
8084 void wxGrid::MakeCellVisible( int row
, int col
)
8088 int xpos
= -1, ypos
= -1;
8090 if ( row
>= 0 && row
< m_numRows
&&
8091 col
>= 0 && col
< m_numCols
)
8093 // get the cell rectangle in logical coords
8095 wxRect
r( CellToRect( row
, col
) );
8097 // convert to device coords
8099 int left
, top
, right
, bottom
;
8100 CalcScrolledPosition( r
.GetLeft(), r
.GetTop(), &left
, &top
);
8101 CalcScrolledPosition( r
.GetRight(), r
.GetBottom(), &right
, &bottom
);
8104 m_gridWin
->GetClientSize( &cw
, &ch
);
8110 else if ( bottom
> ch
)
8112 int h
= r
.GetHeight();
8114 for ( i
= row
-1; i
>= 0; i
-- )
8116 int rowHeight
= GetRowHeight(i
);
8117 if ( h
+ rowHeight
> ch
)
8124 // we divide it later by GRID_SCROLL_LINE, make sure that we don't
8125 // have rounding errors (this is important, because if we do, we
8126 // might not scroll at all and some cells won't be redrawn)
8128 // Sometimes GRID_SCROLL_LINE/2 is not enough, so just add a full
8130 ypos
+= m_scrollLineY
;
8137 else if ( right
> cw
)
8139 // position the view so that the cell is on the right
8141 CalcUnscrolledPosition(0, 0, &x0
, &y0
);
8142 xpos
= x0
+ (right
- cw
);
8144 // see comment for ypos above
8145 xpos
+= m_scrollLineX
;
8148 if ( xpos
!= -1 || ypos
!= -1 )
8151 xpos
/= m_scrollLineX
;
8153 ypos
/= m_scrollLineY
;
8154 Scroll( xpos
, ypos
);
8162 // ------ Grid cursor movement functions
8165 bool wxGrid::MoveCursorUp( bool expandSelection
)
8167 if ( m_currentCellCoords
!= wxGridNoCellCoords
&&
8168 m_currentCellCoords
.GetRow() >= 0 )
8170 if ( expandSelection
)
8172 if ( m_selectingKeyboard
== wxGridNoCellCoords
)
8173 m_selectingKeyboard
= m_currentCellCoords
;
8174 if ( m_selectingKeyboard
.GetRow() > 0 )
8176 m_selectingKeyboard
.SetRow( m_selectingKeyboard
.GetRow() - 1 );
8177 MakeCellVisible( m_selectingKeyboard
.GetRow(),
8178 m_selectingKeyboard
.GetCol() );
8179 HighlightBlock( m_currentCellCoords
, m_selectingKeyboard
);
8182 else if ( m_currentCellCoords
.GetRow() > 0 )
8185 MakeCellVisible( m_currentCellCoords
.GetRow() - 1,
8186 m_currentCellCoords
.GetCol() );
8187 SetCurrentCell( m_currentCellCoords
.GetRow() - 1,
8188 m_currentCellCoords
.GetCol() );
8199 bool wxGrid::MoveCursorDown( bool expandSelection
)
8201 if ( m_currentCellCoords
!= wxGridNoCellCoords
&&
8202 m_currentCellCoords
.GetRow() < m_numRows
)
8204 if ( expandSelection
)
8206 if ( m_selectingKeyboard
== wxGridNoCellCoords
)
8207 m_selectingKeyboard
= m_currentCellCoords
;
8208 if ( m_selectingKeyboard
.GetRow() < m_numRows
-1 )
8210 m_selectingKeyboard
.SetRow( m_selectingKeyboard
.GetRow() + 1 );
8211 MakeCellVisible( m_selectingKeyboard
.GetRow(),
8212 m_selectingKeyboard
.GetCol() );
8213 HighlightBlock( m_currentCellCoords
, m_selectingKeyboard
);
8216 else if ( m_currentCellCoords
.GetRow() < m_numRows
- 1 )
8219 MakeCellVisible( m_currentCellCoords
.GetRow() + 1,
8220 m_currentCellCoords
.GetCol() );
8221 SetCurrentCell( m_currentCellCoords
.GetRow() + 1,
8222 m_currentCellCoords
.GetCol() );
8233 bool wxGrid::MoveCursorLeft( bool expandSelection
)
8235 if ( m_currentCellCoords
!= wxGridNoCellCoords
&&
8236 m_currentCellCoords
.GetCol() >= 0 )
8238 if ( expandSelection
)
8240 if ( m_selectingKeyboard
== wxGridNoCellCoords
)
8241 m_selectingKeyboard
= m_currentCellCoords
;
8242 if ( m_selectingKeyboard
.GetCol() > 0 )
8244 m_selectingKeyboard
.SetCol( m_selectingKeyboard
.GetCol() - 1 );
8245 MakeCellVisible( m_selectingKeyboard
.GetRow(),
8246 m_selectingKeyboard
.GetCol() );
8247 HighlightBlock( m_currentCellCoords
, m_selectingKeyboard
);
8250 else if ( m_currentCellCoords
.GetCol() > 0 )
8253 MakeCellVisible( m_currentCellCoords
.GetRow(),
8254 m_currentCellCoords
.GetCol() - 1 );
8255 SetCurrentCell( m_currentCellCoords
.GetRow(),
8256 m_currentCellCoords
.GetCol() - 1 );
8267 bool wxGrid::MoveCursorRight( bool expandSelection
)
8269 if ( m_currentCellCoords
!= wxGridNoCellCoords
&&
8270 m_currentCellCoords
.GetCol() < m_numCols
)
8272 if ( expandSelection
)
8274 if ( m_selectingKeyboard
== wxGridNoCellCoords
)
8275 m_selectingKeyboard
= m_currentCellCoords
;
8276 if ( m_selectingKeyboard
.GetCol() < m_numCols
- 1 )
8278 m_selectingKeyboard
.SetCol( m_selectingKeyboard
.GetCol() + 1 );
8279 MakeCellVisible( m_selectingKeyboard
.GetRow(),
8280 m_selectingKeyboard
.GetCol() );
8281 HighlightBlock( m_currentCellCoords
, m_selectingKeyboard
);
8284 else if ( m_currentCellCoords
.GetCol() < m_numCols
- 1 )
8287 MakeCellVisible( m_currentCellCoords
.GetRow(),
8288 m_currentCellCoords
.GetCol() + 1 );
8289 SetCurrentCell( m_currentCellCoords
.GetRow(),
8290 m_currentCellCoords
.GetCol() + 1 );
8301 bool wxGrid::MovePageUp()
8303 if ( m_currentCellCoords
== wxGridNoCellCoords
) return false;
8305 int row
= m_currentCellCoords
.GetRow();
8309 m_gridWin
->GetClientSize( &cw
, &ch
);
8311 int y
= GetRowTop(row
);
8312 int newRow
= internalYToRow( y
- ch
+ 1 );
8314 if ( newRow
== row
)
8316 //row > 0 , so newrow can never be less than 0 here.
8320 MakeCellVisible( newRow
, m_currentCellCoords
.GetCol() );
8321 SetCurrentCell( newRow
, m_currentCellCoords
.GetCol() );
8329 bool wxGrid::MovePageDown()
8331 if ( m_currentCellCoords
== wxGridNoCellCoords
) return false;
8333 int row
= m_currentCellCoords
.GetRow();
8334 if ( (row
+1) < m_numRows
)
8337 m_gridWin
->GetClientSize( &cw
, &ch
);
8339 int y
= GetRowTop(row
);
8340 int newRow
= internalYToRow( y
+ ch
);
8341 if ( newRow
== row
)
8343 // row < m_numRows , so newrow can't overflow here.
8347 MakeCellVisible( newRow
, m_currentCellCoords
.GetCol() );
8348 SetCurrentCell( newRow
, m_currentCellCoords
.GetCol() );
8356 bool wxGrid::MoveCursorUpBlock( bool expandSelection
)
8359 m_currentCellCoords
!= wxGridNoCellCoords
&&
8360 m_currentCellCoords
.GetRow() > 0 )
8362 int row
= m_currentCellCoords
.GetRow();
8363 int col
= m_currentCellCoords
.GetCol();
8365 if ( m_table
->IsEmptyCell(row
, col
) )
8367 // starting in an empty cell: find the next block of
8373 if ( !(m_table
->IsEmptyCell(row
, col
)) ) break;
8376 else if ( m_table
->IsEmptyCell(row
-1, col
) )
8378 // starting at the top of a block: find the next block
8384 if ( !(m_table
->IsEmptyCell(row
, col
)) ) break;
8389 // starting within a block: find the top of the block
8394 if ( m_table
->IsEmptyCell(row
, col
) )
8402 MakeCellVisible( row
, col
);
8403 if ( expandSelection
)
8405 m_selectingKeyboard
= wxGridCellCoords( row
, col
);
8406 HighlightBlock( m_currentCellCoords
, m_selectingKeyboard
);
8411 SetCurrentCell( row
, col
);
8419 bool wxGrid::MoveCursorDownBlock( bool expandSelection
)
8422 m_currentCellCoords
!= wxGridNoCellCoords
&&
8423 m_currentCellCoords
.GetRow() < m_numRows
-1 )
8425 int row
= m_currentCellCoords
.GetRow();
8426 int col
= m_currentCellCoords
.GetCol();
8428 if ( m_table
->IsEmptyCell(row
, col
) )
8430 // starting in an empty cell: find the next block of
8433 while ( row
< m_numRows
-1 )
8436 if ( !(m_table
->IsEmptyCell(row
, col
)) ) break;
8439 else if ( m_table
->IsEmptyCell(row
+1, col
) )
8441 // starting at the bottom of a block: find the next block
8444 while ( row
< m_numRows
-1 )
8447 if ( !(m_table
->IsEmptyCell(row
, col
)) ) break;
8452 // starting within a block: find the bottom of the block
8454 while ( row
< m_numRows
-1 )
8457 if ( m_table
->IsEmptyCell(row
, col
) )
8465 MakeCellVisible( row
, col
);
8466 if ( expandSelection
)
8468 m_selectingKeyboard
= wxGridCellCoords( row
, col
);
8469 HighlightBlock( m_currentCellCoords
, m_selectingKeyboard
);
8474 SetCurrentCell( row
, col
);
8483 bool wxGrid::MoveCursorLeftBlock( bool expandSelection
)
8486 m_currentCellCoords
!= wxGridNoCellCoords
&&
8487 m_currentCellCoords
.GetCol() > 0 )
8489 int row
= m_currentCellCoords
.GetRow();
8490 int col
= m_currentCellCoords
.GetCol();
8492 if ( m_table
->IsEmptyCell(row
, col
) )
8494 // starting in an empty cell: find the next block of
8500 if ( !(m_table
->IsEmptyCell(row
, col
)) ) break;
8503 else if ( m_table
->IsEmptyCell(row
, col
-1) )
8505 // starting at the left of a block: find the next block
8511 if ( !(m_table
->IsEmptyCell(row
, col
)) ) break;
8516 // starting within a block: find the left of the block
8521 if ( m_table
->IsEmptyCell(row
, col
) )
8529 MakeCellVisible( row
, col
);
8530 if ( expandSelection
)
8532 m_selectingKeyboard
= wxGridCellCoords( row
, col
);
8533 HighlightBlock( m_currentCellCoords
, m_selectingKeyboard
);
8538 SetCurrentCell( row
, col
);
8547 bool wxGrid::MoveCursorRightBlock( bool expandSelection
)
8550 m_currentCellCoords
!= wxGridNoCellCoords
&&
8551 m_currentCellCoords
.GetCol() < m_numCols
-1 )
8553 int row
= m_currentCellCoords
.GetRow();
8554 int col
= m_currentCellCoords
.GetCol();
8556 if ( m_table
->IsEmptyCell(row
, col
) )
8558 // starting in an empty cell: find the next block of
8561 while ( col
< m_numCols
-1 )
8564 if ( !(m_table
->IsEmptyCell(row
, col
)) ) break;
8567 else if ( m_table
->IsEmptyCell(row
, col
+1) )
8569 // starting at the right of a block: find the next block
8572 while ( col
< m_numCols
-1 )
8575 if ( !(m_table
->IsEmptyCell(row
, col
)) ) break;
8580 // starting within a block: find the right of the block
8582 while ( col
< m_numCols
-1 )
8585 if ( m_table
->IsEmptyCell(row
, col
) )
8593 MakeCellVisible( row
, col
);
8594 if ( expandSelection
)
8596 m_selectingKeyboard
= wxGridCellCoords( row
, col
);
8597 HighlightBlock( m_currentCellCoords
, m_selectingKeyboard
);
8602 SetCurrentCell( row
, col
);
8614 // ------ Label values and formatting
8617 void wxGrid::GetRowLabelAlignment( int *horiz
, int *vert
)
8619 *horiz
= m_rowLabelHorizAlign
;
8620 *vert
= m_rowLabelVertAlign
;
8623 void wxGrid::GetColLabelAlignment( int *horiz
, int *vert
)
8625 *horiz
= m_colLabelHorizAlign
;
8626 *vert
= m_colLabelVertAlign
;
8629 int wxGrid::GetColLabelTextOrientation()
8631 return m_colLabelTextOrientation
;
8634 wxString
wxGrid::GetRowLabelValue( int row
)
8638 return m_table
->GetRowLabelValue( row
);
8648 wxString
wxGrid::GetColLabelValue( int col
)
8652 return m_table
->GetColLabelValue( col
);
8663 void wxGrid::SetRowLabelSize( int width
)
8665 width
= wxMax( width
, 0 );
8666 if ( width
!= m_rowLabelWidth
)
8670 m_rowLabelWin
->Show( false );
8671 m_cornerLabelWin
->Show( false );
8673 else if ( m_rowLabelWidth
== 0 )
8675 m_rowLabelWin
->Show( true );
8676 if ( m_colLabelHeight
> 0 ) m_cornerLabelWin
->Show( true );
8679 m_rowLabelWidth
= width
;
8681 wxScrolledWindow::Refresh( true );
8686 void wxGrid::SetColLabelSize( int height
)
8688 height
= wxMax( height
, 0 );
8689 if ( height
!= m_colLabelHeight
)
8693 m_colLabelWin
->Show( false );
8694 m_cornerLabelWin
->Show( false );
8696 else if ( m_colLabelHeight
== 0 )
8698 m_colLabelWin
->Show( true );
8699 if ( m_rowLabelWidth
> 0 ) m_cornerLabelWin
->Show( true );
8702 m_colLabelHeight
= height
;
8704 wxScrolledWindow::Refresh( true );
8709 void wxGrid::SetLabelBackgroundColour( const wxColour
& colour
)
8711 if ( m_labelBackgroundColour
!= colour
)
8713 m_labelBackgroundColour
= colour
;
8714 m_rowLabelWin
->SetBackgroundColour( colour
);
8715 m_colLabelWin
->SetBackgroundColour( colour
);
8716 m_cornerLabelWin
->SetBackgroundColour( colour
);
8718 if ( !GetBatchCount() )
8720 m_rowLabelWin
->Refresh();
8721 m_colLabelWin
->Refresh();
8722 m_cornerLabelWin
->Refresh();
8727 void wxGrid::SetLabelTextColour( const wxColour
& colour
)
8729 if ( m_labelTextColour
!= colour
)
8731 m_labelTextColour
= colour
;
8732 if ( !GetBatchCount() )
8734 m_rowLabelWin
->Refresh();
8735 m_colLabelWin
->Refresh();
8740 void wxGrid::SetLabelFont( const wxFont
& font
)
8743 if ( !GetBatchCount() )
8745 m_rowLabelWin
->Refresh();
8746 m_colLabelWin
->Refresh();
8750 void wxGrid::SetRowLabelAlignment( int horiz
, int vert
)
8752 // allow old (incorrect) defs to be used
8755 case wxLEFT
: horiz
= wxALIGN_LEFT
; break;
8756 case wxRIGHT
: horiz
= wxALIGN_RIGHT
; break;
8757 case wxCENTRE
: horiz
= wxALIGN_CENTRE
; break;
8762 case wxTOP
: vert
= wxALIGN_TOP
; break;
8763 case wxBOTTOM
: vert
= wxALIGN_BOTTOM
; break;
8764 case wxCENTRE
: vert
= wxALIGN_CENTRE
; break;
8767 if ( horiz
== wxALIGN_LEFT
|| horiz
== wxALIGN_CENTRE
|| horiz
== wxALIGN_RIGHT
)
8769 m_rowLabelHorizAlign
= horiz
;
8772 if ( vert
== wxALIGN_TOP
|| vert
== wxALIGN_CENTRE
|| vert
== wxALIGN_BOTTOM
)
8774 m_rowLabelVertAlign
= vert
;
8777 if ( !GetBatchCount() )
8779 m_rowLabelWin
->Refresh();
8783 void wxGrid::SetColLabelAlignment( int horiz
, int vert
)
8785 // allow old (incorrect) defs to be used
8788 case wxLEFT
: horiz
= wxALIGN_LEFT
; break;
8789 case wxRIGHT
: horiz
= wxALIGN_RIGHT
; break;
8790 case wxCENTRE
: horiz
= wxALIGN_CENTRE
; break;
8795 case wxTOP
: vert
= wxALIGN_TOP
; break;
8796 case wxBOTTOM
: vert
= wxALIGN_BOTTOM
; break;
8797 case wxCENTRE
: vert
= wxALIGN_CENTRE
; break;
8800 if ( horiz
== wxALIGN_LEFT
|| horiz
== wxALIGN_CENTRE
|| horiz
== wxALIGN_RIGHT
)
8802 m_colLabelHorizAlign
= horiz
;
8805 if ( vert
== wxALIGN_TOP
|| vert
== wxALIGN_CENTRE
|| vert
== wxALIGN_BOTTOM
)
8807 m_colLabelVertAlign
= vert
;
8810 if ( !GetBatchCount() )
8812 m_colLabelWin
->Refresh();
8816 // Note: under MSW, the default column label font must be changed because it
8817 // does not support vertical printing
8819 // Example: wxFont font(9, wxSWISS, wxNORMAL, wxBOLD);
8820 // pGrid->SetLabelFont(font);
8821 // pGrid->SetColLabelTextOrientation(wxVERTICAL);
8823 void wxGrid::SetColLabelTextOrientation( int textOrientation
)
8825 if( textOrientation
== wxHORIZONTAL
|| textOrientation
== wxVERTICAL
)
8827 m_colLabelTextOrientation
= textOrientation
;
8830 if ( !GetBatchCount() )
8832 m_colLabelWin
->Refresh();
8836 void wxGrid::SetRowLabelValue( int row
, const wxString
& s
)
8840 m_table
->SetRowLabelValue( row
, s
);
8841 if ( !GetBatchCount() )
8843 wxRect rect
= CellToRect( row
, 0);
8844 if ( rect
.height
> 0 )
8846 CalcScrolledPosition(0, rect
.y
, &rect
.x
, &rect
.y
);
8848 rect
.width
= m_rowLabelWidth
;
8849 m_rowLabelWin
->Refresh( true, &rect
);
8855 void wxGrid::SetColLabelValue( int col
, const wxString
& s
)
8859 m_table
->SetColLabelValue( col
, s
);
8860 if ( !GetBatchCount() )
8862 wxRect rect
= CellToRect( 0, col
);
8863 if ( rect
.width
> 0 )
8865 CalcScrolledPosition(rect
.x
, 0, &rect
.x
, &rect
.y
);
8867 rect
.height
= m_colLabelHeight
;
8868 m_colLabelWin
->Refresh( true, &rect
);
8874 void wxGrid::SetGridLineColour( const wxColour
& colour
)
8876 if ( m_gridLineColour
!= colour
)
8878 m_gridLineColour
= colour
;
8880 wxClientDC
dc( m_gridWin
);
8882 DrawAllGridLines( dc
, wxRegion() );
8887 void wxGrid::SetCellHighlightColour( const wxColour
& colour
)
8889 if ( m_cellHighlightColour
!= colour
)
8891 m_cellHighlightColour
= colour
;
8893 wxClientDC
dc( m_gridWin
);
8895 wxGridCellAttr
* attr
= GetCellAttr(m_currentCellCoords
);
8896 DrawCellHighlight(dc
, attr
);
8901 void wxGrid::SetCellHighlightPenWidth(int width
)
8903 if (m_cellHighlightPenWidth
!= width
) {
8904 m_cellHighlightPenWidth
= width
;
8906 // Just redrawing the cell highlight is not enough since that won't
8907 // make any visible change if the the thickness is getting smaller.
8908 int row
= m_currentCellCoords
.GetRow();
8909 int col
= m_currentCellCoords
.GetCol();
8910 if ( GetColWidth(col
) <= 0 || GetRowHeight(row
) <= 0 )
8912 wxRect rect
= CellToRect(row
, col
);
8913 m_gridWin
->Refresh(true, &rect
);
8917 void wxGrid::SetCellHighlightROPenWidth(int width
)
8919 if (m_cellHighlightROPenWidth
!= width
) {
8920 m_cellHighlightROPenWidth
= width
;
8922 // Just redrawing the cell highlight is not enough since that won't
8923 // make any visible change if the the thickness is getting smaller.
8924 int row
= m_currentCellCoords
.GetRow();
8925 int col
= m_currentCellCoords
.GetCol();
8926 if ( GetColWidth(col
) <= 0 || GetRowHeight(row
) <= 0 )
8928 wxRect rect
= CellToRect(row
, col
);
8929 m_gridWin
->Refresh(true, &rect
);
8933 void wxGrid::EnableGridLines( bool enable
)
8935 if ( enable
!= m_gridLinesEnabled
)
8937 m_gridLinesEnabled
= enable
;
8939 if ( !GetBatchCount() )
8943 wxClientDC
dc( m_gridWin
);
8945 DrawAllGridLines( dc
, wxRegion() );
8949 m_gridWin
->Refresh();
8956 int wxGrid::GetDefaultRowSize()
8958 return m_defaultRowHeight
;
8961 int wxGrid::GetRowSize( int row
)
8963 wxCHECK_MSG( row
>= 0 && row
< m_numRows
, 0, _T("invalid row index") );
8965 return GetRowHeight(row
);
8968 int wxGrid::GetDefaultColSize()
8970 return m_defaultColWidth
;
8973 int wxGrid::GetColSize( int col
)
8975 wxCHECK_MSG( col
>= 0 && col
< m_numCols
, 0, _T("invalid column index") );
8977 return GetColWidth(col
);
8980 // ============================================================================
8981 // access to the grid attributes: each of them has a default value in the grid
8982 // itself and may be overidden on a per-cell basis
8983 // ============================================================================
8985 // ----------------------------------------------------------------------------
8986 // setting default attributes
8987 // ----------------------------------------------------------------------------
8989 void wxGrid::SetDefaultCellBackgroundColour( const wxColour
& col
)
8991 m_defaultCellAttr
->SetBackgroundColour(col
);
8993 m_gridWin
->SetBackgroundColour(col
);
8997 void wxGrid::SetDefaultCellTextColour( const wxColour
& col
)
8999 m_defaultCellAttr
->SetTextColour(col
);
9002 void wxGrid::SetDefaultCellAlignment( int horiz
, int vert
)
9004 m_defaultCellAttr
->SetAlignment(horiz
, vert
);
9007 void wxGrid::SetDefaultCellOverflow( bool allow
)
9009 m_defaultCellAttr
->SetOverflow(allow
);
9012 void wxGrid::SetDefaultCellFont( const wxFont
& font
)
9014 m_defaultCellAttr
->SetFont(font
);
9018 // For editors and renderers the type registry takes precedence over the
9019 // default attr, so we need to register the new editor/renderer for the string
9020 // data type in order to make setting a default editor/renderer appear to
9023 void wxGrid::SetDefaultRenderer(wxGridCellRenderer
*renderer
)
9025 RegisterDataType(wxGRID_VALUE_STRING
,
9027 GetDefaultEditorForType(wxGRID_VALUE_STRING
));
9030 void wxGrid::SetDefaultEditor(wxGridCellEditor
*editor
)
9032 RegisterDataType(wxGRID_VALUE_STRING
,
9033 GetDefaultRendererForType(wxGRID_VALUE_STRING
),
9037 // ----------------------------------------------------------------------------
9038 // access to the default attrbiutes
9039 // ----------------------------------------------------------------------------
9041 wxColour
wxGrid::GetDefaultCellBackgroundColour()
9043 return m_defaultCellAttr
->GetBackgroundColour();
9046 wxColour
wxGrid::GetDefaultCellTextColour()
9048 return m_defaultCellAttr
->GetTextColour();
9051 wxFont
wxGrid::GetDefaultCellFont()
9053 return m_defaultCellAttr
->GetFont();
9056 void wxGrid::GetDefaultCellAlignment( int *horiz
, int *vert
)
9058 m_defaultCellAttr
->GetAlignment(horiz
, vert
);
9061 bool wxGrid::GetDefaultCellOverflow()
9063 return m_defaultCellAttr
->GetOverflow();
9066 wxGridCellRenderer
*wxGrid::GetDefaultRenderer() const
9068 return m_defaultCellAttr
->GetRenderer(NULL
, 0, 0);
9071 wxGridCellEditor
*wxGrid::GetDefaultEditor() const
9073 return m_defaultCellAttr
->GetEditor(NULL
,0,0);
9076 // ----------------------------------------------------------------------------
9077 // access to cell attributes
9078 // ----------------------------------------------------------------------------
9080 wxColour
wxGrid::GetCellBackgroundColour(int row
, int col
)
9082 wxGridCellAttr
*attr
= GetCellAttr(row
, col
);
9083 wxColour colour
= attr
->GetBackgroundColour();
9088 wxColour
wxGrid::GetCellTextColour( int row
, int col
)
9090 wxGridCellAttr
*attr
= GetCellAttr(row
, col
);
9091 wxColour colour
= attr
->GetTextColour();
9096 wxFont
wxGrid::GetCellFont( int row
, int col
)
9098 wxGridCellAttr
*attr
= GetCellAttr(row
, col
);
9099 wxFont font
= attr
->GetFont();
9104 void wxGrid::GetCellAlignment( int row
, int col
, int *horiz
, int *vert
)
9106 wxGridCellAttr
*attr
= GetCellAttr(row
, col
);
9107 attr
->GetAlignment(horiz
, vert
);
9111 bool wxGrid::GetCellOverflow( int row
, int col
)
9113 wxGridCellAttr
*attr
= GetCellAttr(row
, col
);
9114 bool allow
= attr
->GetOverflow();
9119 void wxGrid::GetCellSize( int row
, int col
, int *num_rows
, int *num_cols
)
9121 wxGridCellAttr
*attr
= GetCellAttr(row
, col
);
9122 attr
->GetSize( num_rows
, num_cols
);
9126 wxGridCellRenderer
* wxGrid::GetCellRenderer(int row
, int col
)
9128 wxGridCellAttr
* attr
= GetCellAttr(row
, col
);
9129 wxGridCellRenderer
* renderer
= attr
->GetRenderer(this, row
, col
);
9135 wxGridCellEditor
* wxGrid::GetCellEditor(int row
, int col
)
9137 wxGridCellAttr
* attr
= GetCellAttr(row
, col
);
9138 wxGridCellEditor
* editor
= attr
->GetEditor(this, row
, col
);
9144 bool wxGrid::IsReadOnly(int row
, int col
) const
9146 wxGridCellAttr
* attr
= GetCellAttr(row
, col
);
9147 bool isReadOnly
= attr
->IsReadOnly();
9152 // ----------------------------------------------------------------------------
9153 // attribute support: cache, automatic provider creation, ...
9154 // ----------------------------------------------------------------------------
9156 bool wxGrid::CanHaveAttributes()
9163 return m_table
->CanHaveAttributes();
9166 void wxGrid::ClearAttrCache()
9168 if ( m_attrCache
.row
!= -1 )
9170 wxSafeDecRef(m_attrCache
.attr
);
9171 m_attrCache
.attr
= NULL
;
9172 m_attrCache
.row
= -1;
9176 void wxGrid::CacheAttr(int row
, int col
, wxGridCellAttr
*attr
) const
9180 wxGrid
*self
= (wxGrid
*)this; // const_cast
9182 self
->ClearAttrCache();
9183 self
->m_attrCache
.row
= row
;
9184 self
->m_attrCache
.col
= col
;
9185 self
->m_attrCache
.attr
= attr
;
9190 bool wxGrid::LookupAttr(int row
, int col
, wxGridCellAttr
**attr
) const
9192 if ( row
== m_attrCache
.row
&& col
== m_attrCache
.col
)
9194 *attr
= m_attrCache
.attr
;
9195 wxSafeIncRef(m_attrCache
.attr
);
9197 #ifdef DEBUG_ATTR_CACHE
9198 gs_nAttrCacheHits
++;
9205 #ifdef DEBUG_ATTR_CACHE
9206 gs_nAttrCacheMisses
++;
9212 wxGridCellAttr
*wxGrid::GetCellAttr(int row
, int col
) const
9214 wxGridCellAttr
*attr
= NULL
;
9215 // Additional test to avoid looking at the cache e.g. for
9216 // wxNoCellCoords, as this will confuse memory management.
9219 if ( !LookupAttr(row
, col
, &attr
) )
9221 attr
= m_table
? m_table
->GetAttr(row
, col
, wxGridCellAttr::Any
)
9222 : (wxGridCellAttr
*)NULL
;
9223 CacheAttr(row
, col
, attr
);
9228 attr
->SetDefAttr(m_defaultCellAttr
);
9232 attr
= m_defaultCellAttr
;
9239 wxGridCellAttr
*wxGrid::GetOrCreateCellAttr(int row
, int col
) const
9241 wxGridCellAttr
*attr
= (wxGridCellAttr
*)NULL
;
9242 bool canHave
= ((wxGrid
*)this)->CanHaveAttributes();
9244 wxCHECK_MSG( canHave
, attr
, _T("Cell attributes not allowed"));
9245 wxCHECK_MSG( m_table
, attr
, _T("must have a table") );
9247 attr
= m_table
->GetAttr(row
, col
, wxGridCellAttr::Cell
);
9250 attr
= new wxGridCellAttr(m_defaultCellAttr
);
9252 // artificially inc the ref count to match DecRef() in caller
9254 m_table
->SetAttr(attr
, row
, col
);
9260 // ----------------------------------------------------------------------------
9261 // setting column attributes (wrappers around SetColAttr)
9262 // ----------------------------------------------------------------------------
9264 void wxGrid::SetColFormatBool(int col
)
9266 SetColFormatCustom(col
, wxGRID_VALUE_BOOL
);
9269 void wxGrid::SetColFormatNumber(int col
)
9271 SetColFormatCustom(col
, wxGRID_VALUE_NUMBER
);
9274 void wxGrid::SetColFormatFloat(int col
, int width
, int precision
)
9276 wxString typeName
= wxGRID_VALUE_FLOAT
;
9277 if ( (width
!= -1) || (precision
!= -1) )
9279 typeName
<< _T(':') << width
<< _T(',') << precision
;
9282 SetColFormatCustom(col
, typeName
);
9285 void wxGrid::SetColFormatCustom(int col
, const wxString
& typeName
)
9287 wxGridCellAttr
*attr
= m_table
->GetAttr(-1, col
, wxGridCellAttr::Col
);
9289 attr
= new wxGridCellAttr
;
9290 wxGridCellRenderer
*renderer
= GetDefaultRendererForType(typeName
);
9291 attr
->SetRenderer(renderer
);
9293 SetColAttr(col
, attr
);
9297 // ----------------------------------------------------------------------------
9298 // setting cell attributes: this is forwarded to the table
9299 // ----------------------------------------------------------------------------
9301 void wxGrid::SetAttr(int row
, int col
, wxGridCellAttr
*attr
)
9303 if ( CanHaveAttributes() )
9305 m_table
->SetAttr(attr
, row
, col
);
9314 void wxGrid::SetRowAttr(int row
, wxGridCellAttr
*attr
)
9316 if ( CanHaveAttributes() )
9318 m_table
->SetRowAttr(attr
, row
);
9327 void wxGrid::SetColAttr(int col
, wxGridCellAttr
*attr
)
9329 if ( CanHaveAttributes() )
9331 m_table
->SetColAttr(attr
, col
);
9340 void wxGrid::SetCellBackgroundColour( int row
, int col
, const wxColour
& colour
)
9342 if ( CanHaveAttributes() )
9344 wxGridCellAttr
*attr
= GetOrCreateCellAttr(row
, col
);
9345 attr
->SetBackgroundColour(colour
);
9350 void wxGrid::SetCellTextColour( int row
, int col
, const wxColour
& colour
)
9352 if ( CanHaveAttributes() )
9354 wxGridCellAttr
*attr
= GetOrCreateCellAttr(row
, col
);
9355 attr
->SetTextColour(colour
);
9360 void wxGrid::SetCellFont( int row
, int col
, const wxFont
& font
)
9362 if ( CanHaveAttributes() )
9364 wxGridCellAttr
*attr
= GetOrCreateCellAttr(row
, col
);
9365 attr
->SetFont(font
);
9370 void wxGrid::SetCellAlignment( int row
, int col
, int horiz
, int vert
)
9372 if ( CanHaveAttributes() )
9374 wxGridCellAttr
*attr
= GetOrCreateCellAttr(row
, col
);
9375 attr
->SetAlignment(horiz
, vert
);
9380 void wxGrid::SetCellOverflow( int row
, int col
, bool allow
)
9382 if ( CanHaveAttributes() )
9384 wxGridCellAttr
*attr
= GetOrCreateCellAttr(row
, col
);
9385 attr
->SetOverflow(allow
);
9390 void wxGrid::SetCellSize( int row
, int col
, int num_rows
, int num_cols
)
9392 if ( CanHaveAttributes() )
9394 int cell_rows
, cell_cols
;
9396 wxGridCellAttr
*attr
= GetOrCreateCellAttr(row
, col
);
9397 attr
->GetSize(&cell_rows
, &cell_cols
);
9398 attr
->SetSize(num_rows
, num_cols
);
9401 // Cannot set the size of a cell to 0 or negative values
9402 // While it is perfectly legal to do that, this function cannot
9403 // handle all the possibilies, do it by hand by getting the CellAttr.
9404 // You can only set the size of a cell to 1,1 or greater with this fn
9405 wxASSERT_MSG( !((cell_rows
< 1) || (cell_cols
< 1)),
9406 wxT("wxGrid::SetCellSize setting cell size that is already part of another cell"));
9407 wxASSERT_MSG( !((num_rows
< 1) || (num_cols
< 1)),
9408 wxT("wxGrid::SetCellSize setting cell size to < 1"));
9410 // if this was already a multicell then "turn off" the other cells first
9411 if ((cell_rows
> 1) || (cell_rows
> 1))
9414 for (j
=row
; j
<row
+cell_rows
; j
++)
9416 for (i
=col
; i
<col
+cell_cols
; i
++)
9418 if ((i
!= col
) || (j
!= row
))
9420 wxGridCellAttr
*attr_stub
= GetOrCreateCellAttr(j
, i
);
9421 attr_stub
->SetSize( 1, 1 );
9422 attr_stub
->DecRef();
9428 // mark the cells that will be covered by this cell to
9429 // negative or zero values to point back at this cell
9430 if (((num_rows
> 1) || (num_cols
> 1)) && (num_rows
>= 1) && (num_cols
>= 1))
9433 for (j
=row
; j
<row
+num_rows
; j
++)
9435 for (i
=col
; i
<col
+num_cols
; i
++)
9437 if ((i
!= col
) || (j
!= row
))
9439 wxGridCellAttr
*attr_stub
= GetOrCreateCellAttr(j
, i
);
9440 attr_stub
->SetSize( row
-j
, col
-i
);
9441 attr_stub
->DecRef();
9449 void wxGrid::SetCellRenderer(int row
, int col
, wxGridCellRenderer
*renderer
)
9451 if ( CanHaveAttributes() )
9453 wxGridCellAttr
*attr
= GetOrCreateCellAttr(row
, col
);
9454 attr
->SetRenderer(renderer
);
9459 void wxGrid::SetCellEditor(int row
, int col
, wxGridCellEditor
* editor
)
9461 if ( CanHaveAttributes() )
9463 wxGridCellAttr
*attr
= GetOrCreateCellAttr(row
, col
);
9464 attr
->SetEditor(editor
);
9469 void wxGrid::SetReadOnly(int row
, int col
, bool isReadOnly
)
9471 if ( CanHaveAttributes() )
9473 wxGridCellAttr
*attr
= GetOrCreateCellAttr(row
, col
);
9474 attr
->SetReadOnly(isReadOnly
);
9479 // ----------------------------------------------------------------------------
9480 // Data type registration
9481 // ----------------------------------------------------------------------------
9483 void wxGrid::RegisterDataType(const wxString
& typeName
,
9484 wxGridCellRenderer
* renderer
,
9485 wxGridCellEditor
* editor
)
9487 m_typeRegistry
->RegisterDataType(typeName
, renderer
, editor
);
9491 wxGridCellEditor
* wxGrid::GetDefaultEditorForCell(int row
, int col
) const
9493 wxString typeName
= m_table
->GetTypeName(row
, col
);
9494 return GetDefaultEditorForType(typeName
);
9497 wxGridCellRenderer
* wxGrid::GetDefaultRendererForCell(int row
, int col
) const
9499 wxString typeName
= m_table
->GetTypeName(row
, col
);
9500 return GetDefaultRendererForType(typeName
);
9504 wxGrid::GetDefaultEditorForType(const wxString
& typeName
) const
9506 int index
= m_typeRegistry
->FindOrCloneDataType(typeName
);
9507 if ( index
== wxNOT_FOUND
)
9509 wxFAIL_MSG(wxT("Unknown data type name"));
9514 return m_typeRegistry
->GetEditor(index
);
9518 wxGrid::GetDefaultRendererForType(const wxString
& typeName
) const
9520 int index
= m_typeRegistry
->FindOrCloneDataType(typeName
);
9521 if ( index
== wxNOT_FOUND
)
9523 wxFAIL_MSG(wxT("Unknown data type name"));
9528 return m_typeRegistry
->GetRenderer(index
);
9532 // ----------------------------------------------------------------------------
9534 // ----------------------------------------------------------------------------
9536 void wxGrid::EnableDragRowSize( bool enable
)
9538 m_canDragRowSize
= enable
;
9542 void wxGrid::EnableDragColSize( bool enable
)
9544 m_canDragColSize
= enable
;
9547 void wxGrid::EnableDragGridSize( bool enable
)
9549 m_canDragGridSize
= enable
;
9552 void wxGrid::EnableDragCell( bool enable
)
9554 m_canDragCell
= enable
;
9557 void wxGrid::SetDefaultRowSize( int height
, bool resizeExistingRows
)
9559 m_defaultRowHeight
= wxMax( height
, m_minAcceptableRowHeight
);
9561 if ( resizeExistingRows
)
9563 // since we are resizing all rows to the default row size,
9564 // we can simply clear the row heights and row bottoms
9565 // arrays (which also allows us to take advantage of
9566 // some speed optimisations)
9567 m_rowHeights
.Empty();
9568 m_rowBottoms
.Empty();
9569 if ( !GetBatchCount() )
9574 void wxGrid::SetRowSize( int row
, int height
)
9576 wxCHECK_RET( row
>= 0 && row
< m_numRows
, _T("invalid row index") );
9578 // See comment in SetColSize
9579 if ( height
< GetRowMinimalAcceptableHeight()) { return; }
9581 if ( m_rowHeights
.IsEmpty() )
9583 // need to really create the array
9587 int h
= wxMax( 0, height
);
9588 int diff
= h
- m_rowHeights
[row
];
9590 m_rowHeights
[row
] = h
;
9592 for ( i
= row
; i
< m_numRows
; i
++ )
9594 m_rowBottoms
[i
] += diff
;
9596 if ( !GetBatchCount() )
9600 void wxGrid::SetDefaultColSize( int width
, bool resizeExistingCols
)
9602 m_defaultColWidth
= wxMax( width
, m_minAcceptableColWidth
);
9604 if ( resizeExistingCols
)
9606 // since we are resizing all columns to the default column size,
9607 // we can simply clear the col widths and col rights
9608 // arrays (which also allows us to take advantage of
9609 // some speed optimisations)
9610 m_colWidths
.Empty();
9611 m_colRights
.Empty();
9612 if ( !GetBatchCount() )
9617 void wxGrid::SetColSize( int col
, int width
)
9619 wxCHECK_RET( col
>= 0 && col
< m_numCols
, _T("invalid column index") );
9621 // should we check that it's bigger than GetColMinimalWidth(col) here?
9623 // No, because it is reasonable to assume the library user know's
9624 // what he is doing. However whe should test against the weaker
9625 // constariant of minimalAcceptableWidth, as this breaks rendering
9627 // This test then fixes sf.net bug #645734
9629 if ( width
< GetColMinimalAcceptableWidth()) { return; }
9631 if ( m_colWidths
.IsEmpty() )
9633 // need to really create the array
9637 // if < 0 calc new width from label
9641 wxArrayString lines
;
9642 wxClientDC
dc(m_colLabelWin
);
9643 dc
.SetFont(GetLabelFont());
9644 StringToLines(GetColLabelValue(col
), lines
);
9645 GetTextBoxSize(dc
, lines
, &w
, &h
);
9648 int w
= wxMax( 0, width
);
9649 int diff
= w
- m_colWidths
[col
];
9650 m_colWidths
[col
] = w
;
9653 for ( i
= col
; i
< m_numCols
; i
++ )
9655 m_colRights
[i
] += diff
;
9657 if ( !GetBatchCount() )
9662 void wxGrid::SetColMinimalWidth( int col
, int width
)
9664 if (width
> GetColMinimalAcceptableWidth()) {
9665 wxLongToLongHashMap::key_type key
= (wxLongToLongHashMap::key_type
)col
;
9666 m_colMinWidths
[key
] = width
;
9670 void wxGrid::SetRowMinimalHeight( int row
, int width
)
9672 if (width
> GetRowMinimalAcceptableHeight()) {
9673 wxLongToLongHashMap::key_type key
= (wxLongToLongHashMap::key_type
)row
;
9674 m_rowMinHeights
[key
] = width
;
9678 int wxGrid::GetColMinimalWidth(int col
) const
9680 wxLongToLongHashMap::key_type key
= (wxLongToLongHashMap::key_type
)col
;
9681 wxLongToLongHashMap::const_iterator it
= m_colMinWidths
.find(key
);
9682 return it
!= m_colMinWidths
.end() ? (int)it
->second
: m_minAcceptableColWidth
;
9685 int wxGrid::GetRowMinimalHeight(int row
) const
9687 wxLongToLongHashMap::key_type key
= (wxLongToLongHashMap::key_type
)row
;
9688 wxLongToLongHashMap::const_iterator it
= m_rowMinHeights
.find(key
);
9689 return it
!= m_rowMinHeights
.end() ? (int)it
->second
: m_minAcceptableRowHeight
;
9692 void wxGrid::SetColMinimalAcceptableWidth( int width
)
9694 // We do allow a width of 0 since this gives us
9695 // an easy way to temporarily hidding columns.
9698 m_minAcceptableColWidth
= width
;
9701 void wxGrid::SetRowMinimalAcceptableHeight( int height
)
9703 // We do allow a height of 0 since this gives us
9704 // an easy way to temporarily hidding rows.
9707 m_minAcceptableRowHeight
= height
;
9710 int wxGrid::GetColMinimalAcceptableWidth() const
9712 return m_minAcceptableColWidth
;
9715 int wxGrid::GetRowMinimalAcceptableHeight() const
9717 return m_minAcceptableRowHeight
;
9720 // ----------------------------------------------------------------------------
9722 // ----------------------------------------------------------------------------
9724 void wxGrid::AutoSizeColOrRow( int colOrRow
, bool setAsMin
, bool column
)
9726 wxClientDC
dc(m_gridWin
);
9728 //Cancel editting of cell
9729 HideCellEditControl();
9730 SaveEditControlValue();
9732 // init both of them to avoid compiler warnings, even if weo nly need one
9740 wxCoord extent
, extentMax
= 0;
9741 int max
= column
? m_numRows
: m_numCols
;
9742 for ( int rowOrCol
= 0; rowOrCol
< max
; rowOrCol
++ )
9749 wxGridCellAttr
* attr
= GetCellAttr(row
, col
);
9750 wxGridCellRenderer
* renderer
= attr
->GetRenderer(this, row
, col
);
9753 wxSize size
= renderer
->GetBestSize(*this, *attr
, dc
, row
, col
);
9754 extent
= column
? size
.x
: size
.y
;
9755 if ( extent
> extentMax
)
9766 // now also compare with the column label extent
9768 dc
.SetFont( GetLabelFont() );
9772 dc
.GetTextExtent( GetColLabelValue(col
), &w
, &h
);
9773 if( GetColLabelTextOrientation() == wxVERTICAL
)
9777 dc
.GetTextExtent( GetRowLabelValue(row
), &w
, &h
);
9779 extent
= column
? w
: h
;
9780 if ( extent
> extentMax
)
9787 // empty column - give default extent (notice that if extentMax is less
9788 // than default extent but != 0, it's ok)
9789 extentMax
= column
? m_defaultColWidth
: m_defaultRowHeight
;
9795 // leave some space around text
9806 SetColSize(col
, extentMax
);
9807 if ( !GetBatchCount() )
9810 m_gridWin
->GetClientSize( &cw
, &ch
);
9811 wxRect
rect ( CellToRect( 0, col
) );
9813 CalcScrolledPosition(rect
.x
, 0, &rect
.x
, &dummy
);
9814 rect
.width
= cw
- rect
.x
;
9815 rect
.height
= m_colLabelHeight
;
9816 m_colLabelWin
->Refresh( true, &rect
);
9821 SetRowSize(row
, extentMax
);
9822 if ( !GetBatchCount() )
9825 m_gridWin
->GetClientSize( &cw
, &ch
);
9826 wxRect
rect ( CellToRect( row
, 0 ) );
9828 CalcScrolledPosition(0, rect
.y
, &dummy
, &rect
.y
);
9829 rect
.width
= m_rowLabelWidth
;
9830 rect
.height
= ch
- rect
.y
;
9831 m_rowLabelWin
->Refresh( true, &rect
);
9837 SetColMinimalWidth(col
, extentMax
);
9839 SetRowMinimalHeight(row
, extentMax
);
9843 int wxGrid::SetOrCalcColumnSizes(bool calcOnly
, bool setAsMin
)
9845 int width
= m_rowLabelWidth
;
9850 for ( int col
= 0; col
< m_numCols
; col
++ )
9854 AutoSizeColumn(col
, setAsMin
);
9857 width
+= GetColWidth(col
);
9866 int wxGrid::SetOrCalcRowSizes(bool calcOnly
, bool setAsMin
)
9868 int height
= m_colLabelHeight
;
9873 for ( int row
= 0; row
< m_numRows
; row
++ )
9877 AutoSizeRow(row
, setAsMin
);
9880 height
+= GetRowHeight(row
);
9889 void wxGrid::AutoSize()
9893 wxSize
size(SetOrCalcColumnSizes(false), SetOrCalcRowSizes(false));
9895 // round up the size to a multiple of scroll step - this ensures that we
9896 // won't get the scrollbars if we're sized exactly to this width
9897 // CalcDimension adds m_extraWidth + 1 etc. to calculate the necessary
9899 wxSize
sizeFit(GetScrollX(size
.x
+ m_extraWidth
+ 1) * m_scrollLineX
,
9900 GetScrollY(size
.y
+ m_extraHeight
+ 1) * m_scrollLineY
);
9902 // distribute the extra space between the columns/rows to avoid having
9903 // extra white space
9905 // Remove the extra m_extraWidth + 1 added above
9906 wxCoord diff
= sizeFit
.x
- size
.x
+ (m_extraWidth
+ 1);
9907 if ( diff
&& m_numCols
)
9909 // try to resize the columns uniformly
9910 wxCoord diffPerCol
= diff
/ m_numCols
;
9913 for ( int col
= 0; col
< m_numCols
; col
++ )
9915 SetColSize(col
, GetColWidth(col
) + diffPerCol
);
9919 // add remaining amount to the last columns
9920 diff
-= diffPerCol
* m_numCols
;
9923 for ( int col
= m_numCols
- 1; col
>= m_numCols
- diff
; col
-- )
9925 SetColSize(col
, GetColWidth(col
) + 1);
9931 diff
= sizeFit
.y
- size
.y
- (m_extraHeight
+ 1);
9932 if ( diff
&& m_numRows
)
9934 // try to resize the columns uniformly
9935 wxCoord diffPerRow
= diff
/ m_numRows
;
9938 for ( int row
= 0; row
< m_numRows
; row
++ )
9940 SetRowSize(row
, GetRowHeight(row
) + diffPerRow
);
9944 // add remaining amount to the last rows
9945 diff
-= diffPerRow
* m_numRows
;
9948 for ( int row
= m_numRows
- 1; row
>= m_numRows
- diff
; row
-- )
9950 SetRowSize(row
, GetRowHeight(row
) + 1);
9957 SetClientSize(sizeFit
);
9960 void wxGrid::AutoSizeRowLabelSize( int row
)
9962 wxArrayString lines
;
9965 // Hide the edit control, so it
9966 // won't interfer with drag-shrinking.
9967 if( IsCellEditControlShown() )
9969 HideCellEditControl();
9970 SaveEditControlValue();
9973 // autosize row height depending on label text
9974 StringToLines( GetRowLabelValue( row
), lines
);
9975 wxClientDC
dc( m_rowLabelWin
);
9976 GetTextBoxSize( dc
, lines
, &w
, &h
);
9977 if( h
< m_defaultRowHeight
)
9978 h
= m_defaultRowHeight
;
9983 void wxGrid::AutoSizeColLabelSize( int col
)
9985 wxArrayString lines
;
9988 // Hide the edit control, so it
9989 // won't interfer with drag-shrinking.
9990 if( IsCellEditControlShown() )
9992 HideCellEditControl();
9993 SaveEditControlValue();
9996 // autosize column width depending on label text
9997 StringToLines( GetColLabelValue( col
), lines
);
9998 wxClientDC
dc( m_colLabelWin
);
9999 if( GetColLabelTextOrientation() == wxHORIZONTAL
)
10000 GetTextBoxSize( dc
, lines
, &w
, &h
);
10002 GetTextBoxSize( dc
, lines
, &h
, &w
);
10003 if( w
< m_defaultColWidth
)
10004 w
= m_defaultColWidth
;
10005 SetColSize(col
, w
);
10009 wxSize
wxGrid::DoGetBestSize() const
10011 // don't set sizes, only calculate them
10012 wxGrid
*self
= (wxGrid
*)this; // const_cast
10015 width
= self
->SetOrCalcColumnSizes(true);
10016 height
= self
->SetOrCalcRowSizes(true);
10018 if (!width
) width
=100;
10019 if (!height
) height
=80;
10021 // Round up to a multiple the scroll rate NOTE: this still doesn't get rid
10022 // of the scrollbars, is there any magic incantaion for that?
10024 GetScrollPixelsPerUnit(&xpu
, &ypu
);
10026 width
+= 1 + xpu
- (width
% xpu
);
10028 height
+= 1 + ypu
- (height
% ypu
);
10030 // limit to 1/4 of the screen size
10031 int maxwidth
, maxheight
;
10032 wxDisplaySize( & maxwidth
, & maxheight
);
10035 if ( width
> maxwidth
) width
= maxwidth
;
10036 if ( height
> maxheight
) height
= maxheight
;
10039 wxSize
best(width
, height
);
10040 // NOTE: This size should be cached, but first we need to add calls to
10041 // InvalidateBestSize everywhere that could change the results of this
10043 // CacheBestSize(size);
10053 wxPen
& wxGrid::GetDividerPen() const
10058 // ----------------------------------------------------------------------------
10059 // cell value accessor functions
10060 // ----------------------------------------------------------------------------
10062 void wxGrid::SetCellValue( int row
, int col
, const wxString
& s
)
10066 m_table
->SetValue( row
, col
, s
);
10067 if ( !GetBatchCount() )
10070 wxRect
rect( CellToRect( row
, col
) );
10072 rect
.width
= m_gridWin
->GetClientSize().GetWidth();
10073 CalcScrolledPosition(0, rect
.y
, &dummy
, &rect
.y
);
10074 m_gridWin
->Refresh( false, &rect
);
10077 if ( m_currentCellCoords
.GetRow() == row
&&
10078 m_currentCellCoords
.GetCol() == col
&&
10079 IsCellEditControlShown())
10080 // Note: If we are using IsCellEditControlEnabled,
10081 // this interacts badly with calling SetCellValue from
10082 // an EVT_GRID_CELL_CHANGE handler.
10084 HideCellEditControl();
10085 ShowCellEditControl(); // will reread data from table
10092 // ------ Block, row and col selection
10095 void wxGrid::SelectRow( int row
, bool addToSelected
)
10097 if ( IsSelection() && !addToSelected
)
10101 m_selection
->SelectRow( row
, false, addToSelected
);
10105 void wxGrid::SelectCol( int col
, bool addToSelected
)
10107 if ( IsSelection() && !addToSelected
)
10111 m_selection
->SelectCol( col
, false, addToSelected
);
10115 void wxGrid::SelectBlock( int topRow
, int leftCol
, int bottomRow
, int rightCol
,
10116 bool addToSelected
)
10118 if ( IsSelection() && !addToSelected
)
10122 m_selection
->SelectBlock( topRow
, leftCol
, bottomRow
, rightCol
,
10123 false, addToSelected
);
10127 void wxGrid::SelectAll()
10129 if ( m_numRows
> 0 && m_numCols
> 0 )
10132 m_selection
->SelectBlock( 0, 0, m_numRows
-1, m_numCols
-1 );
10137 // ------ Cell, row and col deselection
10140 void wxGrid::DeselectRow( int row
)
10142 if ( !m_selection
)
10145 if ( m_selection
->GetSelectionMode() == wxGrid::wxGridSelectRows
)
10147 if ( m_selection
->IsInSelection(row
, 0 ) )
10148 m_selection
->ToggleCellSelection( row
, 0);
10152 int nCols
= GetNumberCols();
10153 for ( int i
= 0; i
< nCols
; i
++ )
10155 if ( m_selection
->IsInSelection(row
, i
) )
10156 m_selection
->ToggleCellSelection( row
, i
);
10161 void wxGrid::DeselectCol( int col
)
10163 if ( !m_selection
)
10166 if ( m_selection
->GetSelectionMode() == wxGrid::wxGridSelectColumns
)
10168 if ( m_selection
->IsInSelection(0, col
) )
10169 m_selection
->ToggleCellSelection( 0, col
);
10173 int nRows
= GetNumberRows();
10174 for ( int i
= 0; i
< nRows
; i
++ )
10176 if ( m_selection
->IsInSelection(i
, col
) )
10177 m_selection
->ToggleCellSelection(i
, col
);
10182 void wxGrid::DeselectCell( int row
, int col
)
10184 if ( m_selection
&& m_selection
->IsInSelection(row
, col
) )
10185 m_selection
->ToggleCellSelection(row
, col
);
10188 bool wxGrid::IsSelection()
10190 return ( m_selection
&& (m_selection
->IsSelection() ||
10191 ( m_selectingTopLeft
!= wxGridNoCellCoords
&&
10192 m_selectingBottomRight
!= wxGridNoCellCoords
) ) );
10195 bool wxGrid::IsInSelection( int row
, int col
) const
10197 return ( m_selection
&& (m_selection
->IsInSelection( row
, col
) ||
10198 ( row
>= m_selectingTopLeft
.GetRow() &&
10199 col
>= m_selectingTopLeft
.GetCol() &&
10200 row
<= m_selectingBottomRight
.GetRow() &&
10201 col
<= m_selectingBottomRight
.GetCol() )) );
10204 wxGridCellCoordsArray
wxGrid::GetSelectedCells() const
10206 if (!m_selection
) { wxGridCellCoordsArray a
; return a
; }
10207 return m_selection
->m_cellSelection
;
10209 wxGridCellCoordsArray
wxGrid::GetSelectionBlockTopLeft() const
10211 if (!m_selection
) { wxGridCellCoordsArray a
; return a
; }
10212 return m_selection
->m_blockSelectionTopLeft
;
10214 wxGridCellCoordsArray
wxGrid::GetSelectionBlockBottomRight() const
10216 if (!m_selection
) { wxGridCellCoordsArray a
; return a
; }
10217 return m_selection
->m_blockSelectionBottomRight
;
10219 wxArrayInt
wxGrid::GetSelectedRows() const
10221 if (!m_selection
) { wxArrayInt a
; return a
; }
10222 return m_selection
->m_rowSelection
;
10224 wxArrayInt
wxGrid::GetSelectedCols() const
10226 if (!m_selection
) { wxArrayInt a
; return a
; }
10227 return m_selection
->m_colSelection
;
10231 void wxGrid::ClearSelection()
10233 m_selectingTopLeft
= wxGridNoCellCoords
;
10234 m_selectingBottomRight
= wxGridNoCellCoords
;
10236 m_selection
->ClearSelection();
10240 // This function returns the rectangle that encloses the given block
10241 // in device coords clipped to the client size of the grid window.
10243 wxRect
wxGrid::BlockToDeviceRect( const wxGridCellCoords
&topLeft
,
10244 const wxGridCellCoords
&bottomRight
)
10246 wxRect
rect( wxGridNoCellRect
);
10249 cellRect
= CellToRect( topLeft
);
10250 if ( cellRect
!= wxGridNoCellRect
)
10256 rect
= wxRect(0,0,0,0);
10259 cellRect
= CellToRect( bottomRight
);
10260 if ( cellRect
!= wxGridNoCellRect
)
10266 return wxGridNoCellRect
;
10270 int left
= rect
.GetLeft();
10271 int top
= rect
.GetTop();
10272 int right
= rect
.GetRight();
10273 int bottom
= rect
.GetBottom();
10275 int leftCol
= topLeft
.GetCol();
10276 int topRow
= topLeft
.GetRow();
10277 int rightCol
= bottomRight
.GetCol();
10278 int bottomRow
= bottomRight
.GetRow();
10296 topRow
= bottomRow
;
10301 for ( j
= topRow
; j
<= bottomRow
; j
++ )
10303 for ( i
= leftCol
; i
<= rightCol
; i
++ )
10305 if ((j
==topRow
) || (j
==bottomRow
) || (i
==leftCol
) || (i
==rightCol
))
10307 cellRect
= CellToRect( j
, i
);
10309 if (cellRect
.x
< left
)
10311 if (cellRect
.y
< top
)
10313 if (cellRect
.x
+ cellRect
.width
> right
)
10314 right
= cellRect
.x
+ cellRect
.width
;
10315 if (cellRect
.y
+ cellRect
.height
> bottom
)
10316 bottom
= cellRect
.y
+ cellRect
.height
;
10318 else i
= rightCol
; // jump over inner cells.
10322 // convert to scrolled coords
10324 CalcScrolledPosition( left
, top
, &left
, &top
);
10325 CalcScrolledPosition( right
, bottom
, &right
, &bottom
);
10328 m_gridWin
->GetClientSize( &cw
, &ch
);
10330 if (right
< 0 || bottom
< 0 || left
> cw
|| top
> ch
)
10331 return wxRect(0,0,0,0);
10333 rect
.SetLeft( wxMax(0, left
) );
10334 rect
.SetTop( wxMax(0, top
) );
10335 rect
.SetRight( wxMin(cw
, right
) );
10336 rect
.SetBottom( wxMin(ch
, bottom
) );
10342 // ------ Grid event classes
10345 IMPLEMENT_DYNAMIC_CLASS( wxGridEvent
, wxNotifyEvent
)
10347 wxGridEvent::wxGridEvent( int id
, wxEventType type
, wxObject
* obj
,
10348 int row
, int col
, int x
, int y
, bool sel
,
10349 bool control
, bool shift
, bool alt
, bool meta
)
10350 : wxNotifyEvent( type
, id
)
10357 m_control
= control
;
10362 SetEventObject(obj
);
10366 IMPLEMENT_DYNAMIC_CLASS( wxGridSizeEvent
, wxNotifyEvent
)
10368 wxGridSizeEvent::wxGridSizeEvent( int id
, wxEventType type
, wxObject
* obj
,
10369 int rowOrCol
, int x
, int y
,
10370 bool control
, bool shift
, bool alt
, bool meta
)
10371 : wxNotifyEvent( type
, id
)
10373 m_rowOrCol
= rowOrCol
;
10376 m_control
= control
;
10381 SetEventObject(obj
);
10385 IMPLEMENT_DYNAMIC_CLASS( wxGridRangeSelectEvent
, wxNotifyEvent
)
10387 wxGridRangeSelectEvent::wxGridRangeSelectEvent(int id
, wxEventType type
, wxObject
* obj
,
10388 const wxGridCellCoords
& topLeft
,
10389 const wxGridCellCoords
& bottomRight
,
10390 bool sel
, bool control
,
10391 bool shift
, bool alt
, bool meta
)
10392 : wxNotifyEvent( type
, id
)
10394 m_topLeft
= topLeft
;
10395 m_bottomRight
= bottomRight
;
10397 m_control
= control
;
10402 SetEventObject(obj
);
10406 IMPLEMENT_DYNAMIC_CLASS(wxGridEditorCreatedEvent
, wxCommandEvent
)
10408 wxGridEditorCreatedEvent::wxGridEditorCreatedEvent(int id
, wxEventType type
,
10409 wxObject
* obj
, int row
,
10410 int col
, wxControl
* ctrl
)
10411 : wxCommandEvent(type
, id
)
10413 SetEventObject(obj
);
10419 #endif // wxUSE_GRID