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(wxGrid
* grid
, wxGridCellEditor
* editor
)
249 void OnKillFocus(wxFocusEvent
& event
);
250 void OnKeyDown(wxKeyEvent
& event
);
251 void OnChar(wxKeyEvent
& event
);
255 wxGridCellEditor
* m_editor
;
257 DECLARE_EVENT_TABLE()
258 DECLARE_DYNAMIC_CLASS(wxGridCellEditorEvtHandler
)
259 DECLARE_NO_COPY_CLASS(wxGridCellEditorEvtHandler
)
263 IMPLEMENT_ABSTRACT_CLASS(wxGridCellEditorEvtHandler
, wxEvtHandler
)
265 BEGIN_EVENT_TABLE( wxGridCellEditorEvtHandler
, wxEvtHandler
)
266 EVT_KILL_FOCUS( wxGridCellEditorEvtHandler::OnKillFocus
)
267 EVT_KEY_DOWN( wxGridCellEditorEvtHandler::OnKeyDown
)
268 EVT_CHAR( wxGridCellEditorEvtHandler::OnChar
)
273 // ----------------------------------------------------------------------------
274 // the internal data representation used by wxGridCellAttrProvider
275 // ----------------------------------------------------------------------------
277 // this class stores attributes set for cells
278 class WXDLLIMPEXP_ADV wxGridCellAttrData
281 void SetAttr(wxGridCellAttr
*attr
, int row
, int col
);
282 wxGridCellAttr
*GetAttr(int row
, int col
) const;
283 void UpdateAttrRows( size_t pos
, int numRows
);
284 void UpdateAttrCols( size_t pos
, int numCols
);
287 // searches for the attr for given cell, returns wxNOT_FOUND if not found
288 int FindIndex(int row
, int col
) const;
290 wxGridCellWithAttrArray m_attrs
;
293 // this class stores attributes set for rows or columns
294 class WXDLLIMPEXP_ADV wxGridRowOrColAttrData
297 // empty ctor to suppress warnings
298 wxGridRowOrColAttrData() { }
299 ~wxGridRowOrColAttrData();
301 void SetAttr(wxGridCellAttr
*attr
, int rowOrCol
);
302 wxGridCellAttr
*GetAttr(int rowOrCol
) const;
303 void UpdateAttrRowsOrCols( size_t pos
, int numRowsOrCols
);
306 wxArrayInt m_rowsOrCols
;
307 wxArrayAttrs m_attrs
;
310 // NB: this is just a wrapper around 3 objects: one which stores cell
311 // attributes, and 2 others for row/col ones
312 class WXDLLIMPEXP_ADV wxGridCellAttrProviderData
315 wxGridCellAttrData m_cellAttrs
;
316 wxGridRowOrColAttrData m_rowAttrs
,
321 // ----------------------------------------------------------------------------
322 // data structures used for the data type registry
323 // ----------------------------------------------------------------------------
325 struct wxGridDataTypeInfo
327 wxGridDataTypeInfo(const wxString
& typeName
,
328 wxGridCellRenderer
* renderer
,
329 wxGridCellEditor
* editor
)
330 : m_typeName(typeName
), m_renderer(renderer
), m_editor(editor
)
333 ~wxGridDataTypeInfo()
335 wxSafeDecRef(m_renderer
);
336 wxSafeDecRef(m_editor
);
340 wxGridCellRenderer
* m_renderer
;
341 wxGridCellEditor
* m_editor
;
343 DECLARE_NO_COPY_CLASS(wxGridDataTypeInfo
)
347 WX_DEFINE_ARRAY_WITH_DECL_PTR(wxGridDataTypeInfo
*, wxGridDataTypeInfoArray
,
348 class WXDLLIMPEXP_ADV
);
351 class WXDLLIMPEXP_ADV wxGridTypeRegistry
354 wxGridTypeRegistry() {}
355 ~wxGridTypeRegistry();
357 void RegisterDataType(const wxString
& typeName
,
358 wxGridCellRenderer
* renderer
,
359 wxGridCellEditor
* editor
);
361 // find one of already registered data types
362 int FindRegisteredDataType(const wxString
& typeName
);
364 // try to FindRegisteredDataType(), if this fails and typeName is one of
365 // standard typenames, register it and return its index
366 int FindDataType(const wxString
& typeName
);
368 // try to FindDataType(), if it fails see if it is not one of already
369 // registered data types with some params in which case clone the
370 // registered data type and set params for it
371 int FindOrCloneDataType(const wxString
& typeName
);
373 wxGridCellRenderer
* GetRenderer(int index
);
374 wxGridCellEditor
* GetEditor(int index
);
377 wxGridDataTypeInfoArray m_typeinfo
;
380 // ----------------------------------------------------------------------------
381 // conditional compilation
382 // ----------------------------------------------------------------------------
384 #ifndef WXGRID_DRAW_LINES
385 #define WXGRID_DRAW_LINES 1
388 // ----------------------------------------------------------------------------
390 // ----------------------------------------------------------------------------
392 //#define DEBUG_ATTR_CACHE
393 #ifdef DEBUG_ATTR_CACHE
394 static size_t gs_nAttrCacheHits
= 0;
395 static size_t gs_nAttrCacheMisses
= 0;
396 #endif // DEBUG_ATTR_CACHE
398 // ----------------------------------------------------------------------------
400 // ----------------------------------------------------------------------------
402 wxGridCellCoords
wxGridNoCellCoords( -1, -1 );
403 wxRect
wxGridNoCellRect( -1, -1, -1, -1 );
406 // TODO: this doesn't work at all, grid cells have different sizes and approx
407 // calculations don't work as because of the size mismatch scrollbars
408 // sometimes fail to be shown when they should be or vice versa
410 // The scroll bars may be a little flakey once in a while, but that is
411 // surely much less horrible than having scroll lines of only 1!!!
414 // Well, it's still seriously broken so it might be better but needs
417 static const size_t GRID_SCROLL_LINE_X
= 15; // 1;
418 static const size_t GRID_SCROLL_LINE_Y
= GRID_SCROLL_LINE_X
;
420 // the size of hash tables used a bit everywhere (the max number of elements
421 // in these hash tables is the number of rows/columns)
422 static const int GRID_HASH_SIZE
= 100;
425 // ----------------------------------------------------------------------------
427 // ----------------------------------------------------------------------------
429 static inline int GetScrollX(int x
)
431 return (x
+ GRID_SCROLL_LINE_X
- 1) / GRID_SCROLL_LINE_X
;
434 static inline int GetScrollY(int y
)
436 return (y
+ GRID_SCROLL_LINE_Y
- 1) / GRID_SCROLL_LINE_Y
;
440 // ============================================================================
442 // ============================================================================
444 // ----------------------------------------------------------------------------
446 // ----------------------------------------------------------------------------
448 wxGridCellEditor::wxGridCellEditor()
455 wxGridCellEditor::~wxGridCellEditor()
460 void wxGridCellEditor::Create(wxWindow
* WXUNUSED(parent
),
461 wxWindowID
WXUNUSED(id
),
462 wxEvtHandler
* evtHandler
)
465 m_control
->PushEventHandler(evtHandler
);
468 void wxGridCellEditor::PaintBackground(const wxRect
& rectCell
,
469 wxGridCellAttr
*attr
)
471 // erase the background because we might not fill the cell
472 wxClientDC
dc(m_control
->GetParent());
473 wxGridWindow
* gridWindow
= wxDynamicCast(m_control
->GetParent(), wxGridWindow
);
475 gridWindow
->GetOwner()->PrepareDC(dc
);
477 dc
.SetPen(*wxTRANSPARENT_PEN
);
478 dc
.SetBrush(wxBrush(attr
->GetBackgroundColour(), wxSOLID
));
479 dc
.DrawRectangle(rectCell
);
481 // redraw the control we just painted over
482 m_control
->Refresh();
485 void wxGridCellEditor::Destroy()
489 m_control
->PopEventHandler(true /* delete it*/);
491 m_control
->Destroy();
496 void wxGridCellEditor::Show(bool show
, wxGridCellAttr
*attr
)
498 wxASSERT_MSG(m_control
,
499 wxT("The wxGridCellEditor must be Created first!"));
500 m_control
->Show(show
);
504 // set the colours/fonts if we have any
507 m_colFgOld
= m_control
->GetForegroundColour();
508 m_control
->SetForegroundColour(attr
->GetTextColour());
510 m_colBgOld
= m_control
->GetBackgroundColour();
511 m_control
->SetBackgroundColour(attr
->GetBackgroundColour());
513 // Workaround for GTK+1 font setting problem on some platforms
514 #if !defined(__WXGTK__) || defined(__WXGTK20__)
515 m_fontOld
= m_control
->GetFont();
516 m_control
->SetFont(attr
->GetFont());
518 // can't do anything more in the base class version, the other
519 // attributes may only be used by the derived classes
524 // restore the standard colours fonts
525 if ( m_colFgOld
.Ok() )
527 m_control
->SetForegroundColour(m_colFgOld
);
528 m_colFgOld
= wxNullColour
;
531 if ( m_colBgOld
.Ok() )
533 m_control
->SetBackgroundColour(m_colBgOld
);
534 m_colBgOld
= wxNullColour
;
536 // Workaround for GTK+1 font setting problem on some platforms
537 #if !defined(__WXGTK__) || defined(__WXGTK20__)
538 if ( m_fontOld
.Ok() )
540 m_control
->SetFont(m_fontOld
);
541 m_fontOld
= wxNullFont
;
547 void wxGridCellEditor::SetSize(const wxRect
& rect
)
549 wxASSERT_MSG(m_control
,
550 wxT("The wxGridCellEditor must be Created first!"));
551 m_control
->SetSize(rect
, wxSIZE_ALLOW_MINUS_ONE
);
554 void wxGridCellEditor::HandleReturn(wxKeyEvent
& event
)
559 bool wxGridCellEditor::IsAcceptedKey(wxKeyEvent
& event
)
561 bool ctrl
= event
.ControlDown();
562 bool alt
= event
.AltDown();
564 // On the Mac the Alt key is more like shift and is used for entry of
565 // valid characters, so check for Ctrl and Meta instead.
566 alt
= event
.MetaDown();
569 // Assume it's not a valid char if ctrl or alt is down, but if both are
570 // down then it may be because of an AltGr key combination, so let them
571 // through in that case.
572 if ((ctrl
|| alt
) && !(ctrl
&& alt
))
576 int key
= event
.GetUnicodeKey();
579 // if the unicode key code is not really a unicode character (it may
580 // be a function key or etc., the platforms appear to always give us a
581 // small value in this case) then fallback to the ascii key code but
582 // don't do anything for function keys or etc.
585 key
= event
.GetKeyCode();
586 keyOk
= (key
<= 127);
589 #else // !wxUSE_UNICODE
590 int key
= event
.GetKeyCode();
594 #endif // wxUSE_UNICODE/!wxUSE_UNICODE
597 void wxGridCellEditor::StartingKey(wxKeyEvent
& event
)
602 void wxGridCellEditor::StartingClick()
608 // ----------------------------------------------------------------------------
609 // wxGridCellTextEditor
610 // ----------------------------------------------------------------------------
612 wxGridCellTextEditor::wxGridCellTextEditor()
617 void wxGridCellTextEditor::Create(wxWindow
* parent
,
619 wxEvtHandler
* evtHandler
)
621 m_control
= new wxTextCtrl(parent
, id
, wxEmptyString
,
622 wxDefaultPosition
, wxDefaultSize
623 #if defined(__WXMSW__)
624 , wxTE_PROCESS_TAB
| wxTE_AUTO_SCROLL
628 // set max length allowed in the textctrl, if the parameter was set
631 ((wxTextCtrl
*)m_control
)->SetMaxLength(m_maxChars
);
634 wxGridCellEditor::Create(parent
, id
, evtHandler
);
637 void wxGridCellTextEditor::PaintBackground(const wxRect
& WXUNUSED(rectCell
),
638 wxGridCellAttr
* WXUNUSED(attr
))
640 // as we fill the entire client area, don't do anything here to minimize
644 void wxGridCellTextEditor::SetSize(const wxRect
& rectOrig
)
646 wxRect
rect(rectOrig
);
648 // Make the edit control large enough to allow for internal
651 // TODO: remove this if the text ctrl sizing is improved esp. for
654 #if defined(__WXGTK__)
663 int extra_x
= ( rect
.x
> 2 )? 2 : 1;
665 // MB: treat MSW separately here otherwise the caret doesn't show
666 // when the editor is in the first row.
667 #if defined(__WXMSW__)
670 int extra_y
= ( rect
.y
> 2 )? 2 : 1;
673 #if defined(__WXMOTIF__)
677 rect
.SetLeft( wxMax(0, rect
.x
- extra_x
) );
678 rect
.SetTop( wxMax(0, rect
.y
- extra_y
) );
679 rect
.SetRight( rect
.GetRight() + 2*extra_x
);
680 rect
.SetBottom( rect
.GetBottom() + 2*extra_y
);
683 wxGridCellEditor::SetSize(rect
);
686 void wxGridCellTextEditor::BeginEdit(int row
, int col
, wxGrid
* grid
)
688 wxASSERT_MSG(m_control
,
689 wxT("The wxGridCellEditor must be Created first!"));
691 m_startValue
= grid
->GetTable()->GetValue(row
, col
);
693 DoBeginEdit(m_startValue
);
696 void wxGridCellTextEditor::DoBeginEdit(const wxString
& startValue
)
698 Text()->SetValue(startValue
);
699 Text()->SetInsertionPointEnd();
700 Text()->SetSelection(-1,-1);
704 bool wxGridCellTextEditor::EndEdit(int row
, int col
,
707 wxASSERT_MSG(m_control
,
708 wxT("The wxGridCellEditor must be Created first!"));
710 bool changed
= false;
711 wxString value
= Text()->GetValue();
712 if (value
!= m_startValue
)
716 grid
->GetTable()->SetValue(row
, col
, value
);
718 m_startValue
= wxEmptyString
;
719 // No point in setting the text of the hidden control
720 //Text()->SetValue(m_startValue);
726 void wxGridCellTextEditor::Reset()
728 wxASSERT_MSG(m_control
,
729 wxT("The wxGridCellEditor must be Created first!"));
731 DoReset(m_startValue
);
734 void wxGridCellTextEditor::DoReset(const wxString
& startValue
)
736 Text()->SetValue(startValue
);
737 Text()->SetInsertionPointEnd();
740 bool wxGridCellTextEditor::IsAcceptedKey(wxKeyEvent
& event
)
742 return wxGridCellEditor::IsAcceptedKey(event
);
745 void wxGridCellTextEditor::StartingKey(wxKeyEvent
& event
)
747 // Since this is now happening in the EVT_CHAR event EmulateKeyPress is no
748 // longer an appropriate way to get the character into the text control.
749 // Do it ourselves instead. We know that if we get this far that we have
750 // a valid character, so not a whole lot of testing needs to be done.
752 wxTextCtrl
* tc
= Text();
757 ch
= event
.GetUnicodeKey();
759 ch
= (wxChar
)event
.GetKeyCode();
761 ch
= (wxChar
)event
.GetKeyCode();
766 // delete the character at the cursor
767 pos
= tc
->GetInsertionPoint();
768 if (pos
< tc
->GetLastPosition())
769 tc
->Remove(pos
, pos
+1);
773 // delete the character before the cursor
774 pos
= tc
->GetInsertionPoint();
776 tc
->Remove(pos
-1, pos
);
785 void wxGridCellTextEditor::HandleReturn( wxKeyEvent
&
786 WXUNUSED_GTK(WXUNUSED_MOTIF(event
)) )
788 #if defined(__WXMOTIF__) || defined(__WXGTK__)
789 // wxMotif needs a little extra help...
790 size_t pos
= (size_t)( Text()->GetInsertionPoint() );
791 wxString
s( Text()->GetValue() );
792 s
= s
.Left(pos
) + wxT("\n") + s
.Mid(pos
);
794 Text()->SetInsertionPoint( pos
);
796 // the other ports can handle a Return key press
802 void wxGridCellTextEditor::SetParameters(const wxString
& params
)
812 if ( !params
.ToLong(&tmp
) )
814 wxLogDebug(_T("Invalid wxGridCellTextEditor parameter string '%s' ignored"), params
.c_str());
818 m_maxChars
= (size_t)tmp
;
823 // return the value in the text control
824 wxString
wxGridCellTextEditor::GetValue() const
826 return Text()->GetValue();
829 // ----------------------------------------------------------------------------
830 // wxGridCellNumberEditor
831 // ----------------------------------------------------------------------------
833 wxGridCellNumberEditor::wxGridCellNumberEditor(int min
, int max
)
839 void wxGridCellNumberEditor::Create(wxWindow
* parent
,
841 wxEvtHandler
* evtHandler
)
846 // create a spin ctrl
847 m_control
= new wxSpinCtrl(parent
, wxID_ANY
, wxEmptyString
,
848 wxDefaultPosition
, wxDefaultSize
,
852 wxGridCellEditor::Create(parent
, id
, evtHandler
);
857 // just a text control
858 wxGridCellTextEditor::Create(parent
, id
, evtHandler
);
861 Text()->SetValidator(wxTextValidator(wxFILTER_NUMERIC
));
862 #endif // wxUSE_VALIDATORS
866 void wxGridCellNumberEditor::BeginEdit(int row
, int col
, wxGrid
* grid
)
868 // first get the value
869 wxGridTableBase
*table
= grid
->GetTable();
870 if ( table
->CanGetValueAs(row
, col
, wxGRID_VALUE_NUMBER
) )
872 m_valueOld
= table
->GetValueAsLong(row
, col
);
877 wxString sValue
= table
->GetValue(row
, col
);
878 if (! sValue
.ToLong(&m_valueOld
) && ! sValue
.empty())
880 wxFAIL_MSG( _T("this cell doesn't have numeric value") );
888 Spin()->SetValue((int)m_valueOld
);
894 DoBeginEdit(GetString());
898 bool wxGridCellNumberEditor::EndEdit(int row
, int col
,
908 value
= Spin()->GetValue();
909 changed
= value
!= m_valueOld
;
911 text
= wxString::Format(wxT("%ld"), value
);
916 text
= Text()->GetValue();
917 changed
= (text
.empty() || text
.ToLong(&value
)) && (value
!= m_valueOld
);
922 if (grid
->GetTable()->CanSetValueAs(row
, col
, wxGRID_VALUE_NUMBER
))
923 grid
->GetTable()->SetValueAsLong(row
, col
, value
);
925 grid
->GetTable()->SetValue(row
, col
, text
);
931 void wxGridCellNumberEditor::Reset()
936 Spin()->SetValue((int)m_valueOld
);
941 DoReset(GetString());
945 bool wxGridCellNumberEditor::IsAcceptedKey(wxKeyEvent
& event
)
947 if ( wxGridCellEditor::IsAcceptedKey(event
) )
949 int keycode
= event
.GetKeyCode();
950 if ( (keycode
< 128) &&
951 (wxIsdigit(keycode
) || keycode
== '+' || keycode
== '-'))
960 void wxGridCellNumberEditor::StartingKey(wxKeyEvent
& event
)
962 int keycode
= event
.GetKeyCode();
965 if ( wxIsdigit(keycode
) || keycode
== '+' || keycode
== '-')
967 wxGridCellTextEditor::StartingKey(event
);
976 if ( wxIsdigit(keycode
) )
978 wxSpinCtrl
* spin
= (wxSpinCtrl
*)m_control
;
979 spin
->SetValue(keycode
- '0');
980 spin
->SetSelection(1,1);
988 void wxGridCellNumberEditor::SetParameters(const wxString
& params
)
999 if ( params
.BeforeFirst(_T(',')).ToLong(&tmp
) )
1003 if ( params
.AfterFirst(_T(',')).ToLong(&tmp
) )
1007 // skip the error message below
1012 wxLogDebug(_T("Invalid wxGridCellNumberEditor parameter string '%s' ignored"), params
.c_str());
1016 // return the value in the spin control if it is there (the text control otherwise)
1017 wxString
wxGridCellNumberEditor::GetValue() const
1024 long value
= Spin()->GetValue();
1025 s
.Printf(wxT("%ld"), value
);
1030 s
= Text()->GetValue();
1036 // ----------------------------------------------------------------------------
1037 // wxGridCellFloatEditor
1038 // ----------------------------------------------------------------------------
1040 wxGridCellFloatEditor::wxGridCellFloatEditor(int width
, int precision
)
1043 m_precision
= precision
;
1046 void wxGridCellFloatEditor::Create(wxWindow
* parent
,
1048 wxEvtHandler
* evtHandler
)
1050 wxGridCellTextEditor::Create(parent
, id
, evtHandler
);
1052 #if wxUSE_VALIDATORS
1053 Text()->SetValidator(wxTextValidator(wxFILTER_NUMERIC
));
1054 #endif // wxUSE_VALIDATORS
1057 void wxGridCellFloatEditor::BeginEdit(int row
, int col
, wxGrid
* grid
)
1059 // first get the value
1060 wxGridTableBase
*table
= grid
->GetTable();
1061 if ( table
->CanGetValueAs(row
, col
, wxGRID_VALUE_FLOAT
) )
1063 m_valueOld
= table
->GetValueAsDouble(row
, col
);
1068 wxString sValue
= table
->GetValue(row
, col
);
1069 if (! sValue
.ToDouble(&m_valueOld
) && ! sValue
.empty())
1071 wxFAIL_MSG( _T("this cell doesn't have float value") );
1076 DoBeginEdit(GetString());
1079 bool wxGridCellFloatEditor::EndEdit(int row
, int col
,
1083 wxString
text(Text()->GetValue());
1085 if ( (text
.empty() || text
.ToDouble(&value
)) && (value
!= m_valueOld
) )
1087 if (grid
->GetTable()->CanSetValueAs(row
, col
, wxGRID_VALUE_FLOAT
))
1088 grid
->GetTable()->SetValueAsDouble(row
, col
, value
);
1090 grid
->GetTable()->SetValue(row
, col
, text
);
1097 void wxGridCellFloatEditor::Reset()
1099 DoReset(GetString());
1102 void wxGridCellFloatEditor::StartingKey(wxKeyEvent
& event
)
1104 int keycode
= event
.GetKeyCode();
1106 tmpbuf
[0] = (char) keycode
;
1108 wxString
strbuf(tmpbuf
, *wxConvCurrent
);
1110 bool is_decimal_point
= ( strbuf
==
1111 wxLocale::GetInfo(wxLOCALE_DECIMAL_POINT
, wxLOCALE_CAT_NUMBER
) );
1113 bool is_decimal_point
= ( strbuf
== _T(".") );
1115 if ( wxIsdigit(keycode
) || keycode
== '+' || keycode
== '-'
1116 || is_decimal_point
)
1118 wxGridCellTextEditor::StartingKey(event
);
1120 // skip Skip() below
1127 void wxGridCellFloatEditor::SetParameters(const wxString
& params
)
1138 if ( params
.BeforeFirst(_T(',')).ToLong(&tmp
) )
1142 if ( params
.AfterFirst(_T(',')).ToLong(&tmp
) )
1144 m_precision
= (int)tmp
;
1146 // skip the error message below
1151 wxLogDebug(_T("Invalid wxGridCellFloatEditor parameter string '%s' ignored"), params
.c_str());
1155 wxString
wxGridCellFloatEditor::GetString() const
1158 if ( m_width
== -1 )
1160 // default width/precision
1163 else if ( m_precision
== -1 )
1165 // default precision
1166 fmt
.Printf(_T("%%%d.f"), m_width
);
1170 fmt
.Printf(_T("%%%d.%df"), m_width
, m_precision
);
1173 return wxString::Format(fmt
, m_valueOld
);
1176 bool wxGridCellFloatEditor::IsAcceptedKey(wxKeyEvent
& event
)
1178 if ( wxGridCellEditor::IsAcceptedKey(event
) )
1180 int keycode
= event
.GetKeyCode();
1181 printf("%d\n", keycode
);
1182 // accept digits, 'e' as in '1e+6', also '-', '+', and '.'
1184 tmpbuf
[0] = (char) keycode
;
1186 wxString
strbuf(tmpbuf
, *wxConvCurrent
);
1188 bool is_decimal_point
=
1189 ( strbuf
== wxLocale::GetInfo(wxLOCALE_DECIMAL_POINT
,
1190 wxLOCALE_CAT_NUMBER
) );
1192 bool is_decimal_point
= ( strbuf
== _T(".") );
1194 if ( (keycode
< 128) &&
1195 (wxIsdigit(keycode
) || tolower(keycode
) == 'e' ||
1196 is_decimal_point
|| keycode
== '+' || keycode
== '-') )
1203 #endif // wxUSE_TEXTCTRL
1207 // ----------------------------------------------------------------------------
1208 // wxGridCellBoolEditor
1209 // ----------------------------------------------------------------------------
1211 void wxGridCellBoolEditor::Create(wxWindow
* parent
,
1213 wxEvtHandler
* evtHandler
)
1215 m_control
= new wxCheckBox(parent
, id
, wxEmptyString
,
1216 wxDefaultPosition
, wxDefaultSize
,
1219 wxGridCellEditor::Create(parent
, id
, evtHandler
);
1222 void wxGridCellBoolEditor::SetSize(const wxRect
& r
)
1224 bool resize
= false;
1225 wxSize size
= m_control
->GetSize();
1226 wxCoord minSize
= wxMin(r
.width
, r
.height
);
1228 // check if the checkbox is not too big/small for this cell
1229 wxSize sizeBest
= m_control
->GetBestSize();
1230 if ( !(size
== sizeBest
) )
1232 // reset to default size if it had been made smaller
1238 if ( size
.x
>= minSize
|| size
.y
>= minSize
)
1240 // leave 1 pixel margin
1241 size
.x
= size
.y
= minSize
- 2;
1248 m_control
->SetSize(size
);
1251 // position it in the centre of the rectangle (TODO: support alignment?)
1253 #if defined(__WXGTK__) || defined (__WXMOTIF__)
1254 // the checkbox without label still has some space to the right in wxGTK,
1255 // so shift it to the right
1257 #elif defined(__WXMSW__)
1258 // here too, but in other way
1263 int hAlign
= wxALIGN_CENTRE
;
1264 int vAlign
= wxALIGN_CENTRE
;
1266 GetCellAttr()->GetAlignment(& hAlign
, & vAlign
);
1269 if (hAlign
== wxALIGN_LEFT
)
1275 y
= r
.y
+ r
.height
/2 - size
.y
/2;
1277 else if (hAlign
== wxALIGN_RIGHT
)
1279 x
= r
.x
+ r
.width
- size
.x
- 2;
1280 y
= r
.y
+ r
.height
/2 - size
.y
/2;
1282 else if (hAlign
== wxALIGN_CENTRE
)
1284 x
= r
.x
+ r
.width
/2 - size
.x
/2;
1285 y
= r
.y
+ r
.height
/2 - size
.y
/2;
1288 m_control
->Move(x
, y
);
1291 void wxGridCellBoolEditor::Show(bool show
, wxGridCellAttr
*attr
)
1293 m_control
->Show(show
);
1297 wxColour colBg
= attr
? attr
->GetBackgroundColour() : *wxLIGHT_GREY
;
1298 CBox()->SetBackgroundColour(colBg
);
1302 void wxGridCellBoolEditor::BeginEdit(int row
, int col
, wxGrid
* grid
)
1304 wxASSERT_MSG(m_control
,
1305 wxT("The wxGridCellEditor must be Created first!"));
1307 if (grid
->GetTable()->CanGetValueAs(row
, col
, wxGRID_VALUE_BOOL
))
1308 m_startValue
= grid
->GetTable()->GetValueAsBool(row
, col
);
1311 wxString
cellval( grid
->GetTable()->GetValue(row
, col
) );
1312 m_startValue
= !( !cellval
|| (cellval
== wxT("0")) );
1314 CBox()->SetValue(m_startValue
);
1318 bool wxGridCellBoolEditor::EndEdit(int row
, int col
,
1321 wxASSERT_MSG(m_control
,
1322 wxT("The wxGridCellEditor must be Created first!"));
1324 bool changed
= false;
1325 bool value
= CBox()->GetValue();
1326 if ( value
!= m_startValue
)
1331 if (grid
->GetTable()->CanGetValueAs(row
, col
, wxGRID_VALUE_BOOL
))
1332 grid
->GetTable()->SetValueAsBool(row
, col
, value
);
1334 grid
->GetTable()->SetValue(row
, col
, value
? _T("1") : wxEmptyString
);
1340 void wxGridCellBoolEditor::Reset()
1342 wxASSERT_MSG(m_control
,
1343 wxT("The wxGridCellEditor must be Created first!"));
1345 CBox()->SetValue(m_startValue
);
1348 void wxGridCellBoolEditor::StartingClick()
1350 CBox()->SetValue(!CBox()->GetValue());
1353 bool wxGridCellBoolEditor::IsAcceptedKey(wxKeyEvent
& event
)
1355 if ( wxGridCellEditor::IsAcceptedKey(event
) )
1357 int keycode
= event
.GetKeyCode();
1370 void wxGridCellBoolEditor::StartingKey(wxKeyEvent
& event
)
1372 int keycode
= event
.GetKeyCode();
1376 CBox()->SetValue(!CBox()->GetValue());
1380 CBox()->SetValue(true);
1384 CBox()->SetValue(false);
1390 // return the value as "1" for true and the empty string for false
1391 wxString
wxGridCellBoolEditor::GetValue() const
1393 bool bSet
= CBox()->GetValue();
1394 return bSet
? _T("1") : wxEmptyString
;
1397 #endif // wxUSE_CHECKBOX
1401 // ----------------------------------------------------------------------------
1402 // wxGridCellChoiceEditor
1403 // ----------------------------------------------------------------------------
1405 wxGridCellChoiceEditor::wxGridCellChoiceEditor(const wxArrayString
& choices
,
1407 : m_choices(choices
),
1408 m_allowOthers(allowOthers
) { }
1410 wxGridCellChoiceEditor::wxGridCellChoiceEditor(size_t count
,
1411 const wxString choices
[],
1413 : m_allowOthers(allowOthers
)
1417 m_choices
.Alloc(count
);
1418 for ( size_t n
= 0; n
< count
; n
++ )
1420 m_choices
.Add(choices
[n
]);
1425 wxGridCellEditor
*wxGridCellChoiceEditor::Clone() const
1427 wxGridCellChoiceEditor
*editor
= new wxGridCellChoiceEditor
;
1428 editor
->m_allowOthers
= m_allowOthers
;
1429 editor
->m_choices
= m_choices
;
1434 void wxGridCellChoiceEditor::Create(wxWindow
* parent
,
1436 wxEvtHandler
* evtHandler
)
1438 m_control
= new wxComboBox(parent
, id
, wxEmptyString
,
1439 wxDefaultPosition
, wxDefaultSize
,
1441 m_allowOthers
? 0 : wxCB_READONLY
);
1443 wxGridCellEditor::Create(parent
, id
, evtHandler
);
1446 void wxGridCellChoiceEditor::PaintBackground(const wxRect
& rectCell
,
1447 wxGridCellAttr
* attr
)
1449 // as we fill the entire client area, don't do anything here to minimize
1452 // TODO: It doesn't actually fill the client area since the height of a
1453 // combo always defaults to the standard... Until someone has time to
1454 // figure out the right rectangle to paint, just do it the normal way...
1455 wxGridCellEditor::PaintBackground(rectCell
, attr
);
1458 void wxGridCellChoiceEditor::BeginEdit(int row
, int col
, wxGrid
* grid
)
1460 wxASSERT_MSG(m_control
,
1461 wxT("The wxGridCellEditor must be Created first!"));
1463 m_startValue
= grid
->GetTable()->GetValue(row
, col
);
1466 Combo()->SetValue(m_startValue
);
1469 // find the right position, or default to the first if not found
1470 int pos
= Combo()->FindString(m_startValue
);
1473 Combo()->SetSelection(pos
);
1475 Combo()->SetInsertionPointEnd();
1476 Combo()->SetFocus();
1479 bool wxGridCellChoiceEditor::EndEdit(int row
, int col
,
1482 wxString value
= Combo()->GetValue();
1483 if ( value
== m_startValue
)
1486 grid
->GetTable()->SetValue(row
, col
, value
);
1491 void wxGridCellChoiceEditor::Reset()
1493 Combo()->SetValue(m_startValue
);
1494 Combo()->SetInsertionPointEnd();
1497 void wxGridCellChoiceEditor::SetParameters(const wxString
& params
)
1507 wxStringTokenizer
tk(params
, _T(','));
1508 while ( tk
.HasMoreTokens() )
1510 m_choices
.Add(tk
.GetNextToken());
1514 // return the value in the text control
1515 wxString
wxGridCellChoiceEditor::GetValue() const
1517 return Combo()->GetValue();
1520 #endif // wxUSE_COMBOBOX
1522 // ----------------------------------------------------------------------------
1523 // wxGridCellEditorEvtHandler
1524 // ----------------------------------------------------------------------------
1526 void wxGridCellEditorEvtHandler::OnKillFocus(wxFocusEvent
& event
)
1529 m_grid
->DisableCellEditControl();
1534 void wxGridCellEditorEvtHandler::OnKeyDown(wxKeyEvent
& event
)
1536 switch ( event
.GetKeyCode() )
1540 m_grid
->DisableCellEditControl();
1544 m_grid
->GetEventHandler()->ProcessEvent( event
);
1548 case WXK_NUMPAD_ENTER
:
1549 if (!m_grid
->GetEventHandler()->ProcessEvent(event
))
1550 m_editor
->HandleReturn(event
);
1558 void wxGridCellEditorEvtHandler::OnChar(wxKeyEvent
& event
)
1560 switch ( event
.GetKeyCode() )
1565 case WXK_NUMPAD_ENTER
:
1573 // ----------------------------------------------------------------------------
1574 // wxGridCellWorker is an (almost) empty common base class for
1575 // wxGridCellRenderer and wxGridCellEditor managing ref counting
1576 // ----------------------------------------------------------------------------
1578 void wxGridCellWorker::SetParameters(const wxString
& WXUNUSED(params
))
1583 wxGridCellWorker::~wxGridCellWorker()
1587 // ============================================================================
1589 // ============================================================================
1591 // ----------------------------------------------------------------------------
1592 // wxGridCellRenderer
1593 // ----------------------------------------------------------------------------
1595 void wxGridCellRenderer::Draw(wxGrid
& grid
,
1596 wxGridCellAttr
& attr
,
1599 int WXUNUSED(row
), int WXUNUSED(col
),
1602 dc
.SetBackgroundMode( wxSOLID
);
1604 // grey out fields if the grid is disabled
1605 if( grid
.IsEnabled() )
1609 dc
.SetBrush( wxBrush(grid
.GetSelectionBackground(), wxSOLID
) );
1613 dc
.SetBrush( wxBrush(attr
.GetBackgroundColour(), wxSOLID
) );
1618 dc
.SetBrush(wxBrush(wxSystemSettings::GetColour(wxSYS_COLOUR_BTNFACE
), wxSOLID
));
1621 dc
.SetPen( *wxTRANSPARENT_PEN
);
1622 dc
.DrawRectangle(rect
);
1625 // ----------------------------------------------------------------------------
1626 // wxGridCellStringRenderer
1627 // ----------------------------------------------------------------------------
1629 void wxGridCellStringRenderer::SetTextColoursAndFont(wxGrid
& grid
,
1630 wxGridCellAttr
& attr
,
1634 dc
.SetBackgroundMode( wxTRANSPARENT
);
1636 // TODO some special colours for attr.IsReadOnly() case?
1638 // different coloured text when the grid is disabled
1639 if( grid
.IsEnabled() )
1643 dc
.SetTextBackground( grid
.GetSelectionBackground() );
1644 dc
.SetTextForeground( grid
.GetSelectionForeground() );
1648 dc
.SetTextBackground( attr
.GetBackgroundColour() );
1649 dc
.SetTextForeground( attr
.GetTextColour() );
1654 dc
.SetTextBackground(wxSystemSettings::GetColour(wxSYS_COLOUR_BTNFACE
));
1655 dc
.SetTextForeground(wxSystemSettings::GetColour(wxSYS_COLOUR_GRAYTEXT
));
1658 dc
.SetFont( attr
.GetFont() );
1661 wxSize
wxGridCellStringRenderer::DoGetBestSize(wxGridCellAttr
& attr
,
1663 const wxString
& text
)
1665 wxCoord x
= 0, y
= 0, max_x
= 0;
1666 dc
.SetFont(attr
.GetFont());
1667 wxStringTokenizer
tk(text
, _T('\n'));
1668 while ( tk
.HasMoreTokens() )
1670 dc
.GetTextExtent(tk
.GetNextToken(), &x
, &y
);
1671 max_x
= wxMax(max_x
, x
);
1674 y
*= 1 + text
.Freq(wxT('\n')); // multiply by the number of lines.
1676 return wxSize(max_x
, y
);
1679 wxSize
wxGridCellStringRenderer::GetBestSize(wxGrid
& grid
,
1680 wxGridCellAttr
& attr
,
1684 return DoGetBestSize(attr
, dc
, grid
.GetCellValue(row
, col
));
1687 void wxGridCellStringRenderer::Draw(wxGrid
& grid
,
1688 wxGridCellAttr
& attr
,
1690 const wxRect
& rectCell
,
1694 wxRect rect
= rectCell
;
1697 // erase only this cells background, overflow cells should have been erased
1698 wxGridCellRenderer::Draw(grid
, attr
, dc
, rectCell
, row
, col
, isSelected
);
1701 attr
.GetAlignment(&hAlign
, &vAlign
);
1703 int overflowCols
= 0;
1705 if (attr
.GetOverflow())
1707 int cols
= grid
.GetNumberCols();
1708 int best_width
= GetBestSize(grid
,attr
,dc
,row
,col
).GetWidth();
1709 int cell_rows
, cell_cols
;
1710 attr
.GetSize( &cell_rows
, &cell_cols
); // shouldn't get here if <=0
1711 if ((best_width
> rectCell
.width
) && (col
< cols
) && grid
.GetTable())
1713 int i
, c_cols
, c_rows
;
1714 for (i
= col
+cell_cols
; i
< cols
; i
++)
1716 bool is_empty
= true;
1717 for (int j
=row
; j
<row
+cell_rows
; j
++)
1719 // check w/ anchor cell for multicell block
1720 grid
.GetCellSize(j
, i
, &c_rows
, &c_cols
);
1721 if (c_rows
> 0) c_rows
= 0;
1722 if (!grid
.GetTable()->IsEmptyCell(j
+c_rows
, i
))
1729 rect
.width
+= grid
.GetColSize(i
);
1735 if (rect
.width
>= best_width
) break;
1737 overflowCols
= i
- col
- cell_cols
+ 1;
1738 if (overflowCols
>= cols
) overflowCols
= cols
- 1;
1741 if (overflowCols
> 0) // redraw overflow cells w/ proper hilight
1743 hAlign
= wxALIGN_LEFT
; // if oveflowed then it's left aligned
1745 clip
.x
+= rectCell
.width
;
1746 // draw each overflow cell individually
1747 int col_end
= col
+cell_cols
+overflowCols
;
1748 if (col_end
>= grid
.GetNumberCols())
1749 col_end
= grid
.GetNumberCols() - 1;
1750 for (int i
= col
+cell_cols
; i
<= col_end
; i
++)
1752 clip
.width
= grid
.GetColSize(i
) - 1;
1753 dc
.DestroyClippingRegion();
1754 dc
.SetClippingRegion(clip
);
1756 SetTextColoursAndFont(grid
, attr
, dc
,
1757 grid
.IsInSelection(row
,i
));
1759 grid
.DrawTextRectangle(dc
, grid
.GetCellValue(row
, col
),
1760 rect
, hAlign
, vAlign
);
1761 clip
.x
+= grid
.GetColSize(i
) - 1;
1767 dc
.DestroyClippingRegion();
1771 // now we only have to draw the text
1772 SetTextColoursAndFont(grid
, attr
, dc
, isSelected
);
1774 grid
.DrawTextRectangle(dc
, grid
.GetCellValue(row
, col
),
1775 rect
, hAlign
, vAlign
);
1778 // ----------------------------------------------------------------------------
1779 // wxGridCellNumberRenderer
1780 // ----------------------------------------------------------------------------
1782 wxString
wxGridCellNumberRenderer::GetString(wxGrid
& grid
, int row
, int col
)
1784 wxGridTableBase
*table
= grid
.GetTable();
1786 if ( table
->CanGetValueAs(row
, col
, wxGRID_VALUE_NUMBER
) )
1788 text
.Printf(_T("%ld"), table
->GetValueAsLong(row
, col
));
1792 text
= table
->GetValue(row
, col
);
1798 void wxGridCellNumberRenderer::Draw(wxGrid
& grid
,
1799 wxGridCellAttr
& attr
,
1801 const wxRect
& rectCell
,
1805 wxGridCellRenderer::Draw(grid
, attr
, dc
, rectCell
, row
, col
, isSelected
);
1807 SetTextColoursAndFont(grid
, attr
, dc
, isSelected
);
1809 // draw the text right aligned by default
1811 attr
.GetAlignment(&hAlign
, &vAlign
);
1812 hAlign
= wxALIGN_RIGHT
;
1814 wxRect rect
= rectCell
;
1817 grid
.DrawTextRectangle(dc
, GetString(grid
, row
, col
), rect
, hAlign
, vAlign
);
1820 wxSize
wxGridCellNumberRenderer::GetBestSize(wxGrid
& grid
,
1821 wxGridCellAttr
& attr
,
1825 return DoGetBestSize(attr
, dc
, GetString(grid
, row
, col
));
1828 // ----------------------------------------------------------------------------
1829 // wxGridCellFloatRenderer
1830 // ----------------------------------------------------------------------------
1832 wxGridCellFloatRenderer::wxGridCellFloatRenderer(int width
, int precision
)
1835 SetPrecision(precision
);
1838 wxGridCellRenderer
*wxGridCellFloatRenderer::Clone() const
1840 wxGridCellFloatRenderer
*renderer
= new wxGridCellFloatRenderer
;
1841 renderer
->m_width
= m_width
;
1842 renderer
->m_precision
= m_precision
;
1843 renderer
->m_format
= m_format
;
1848 wxString
wxGridCellFloatRenderer::GetString(wxGrid
& grid
, int row
, int col
)
1850 wxGridTableBase
*table
= grid
.GetTable();
1855 if ( table
->CanGetValueAs(row
, col
, wxGRID_VALUE_FLOAT
) )
1857 val
= table
->GetValueAsDouble(row
, col
);
1862 text
= table
->GetValue(row
, col
);
1863 hasDouble
= text
.ToDouble(&val
);
1870 if ( m_width
== -1 )
1872 if ( m_precision
== -1 )
1874 // default width/precision
1875 m_format
= _T("%f");
1879 m_format
.Printf(_T("%%.%df"), m_precision
);
1882 else if ( m_precision
== -1 )
1884 // default precision
1885 m_format
.Printf(_T("%%%d.f"), m_width
);
1889 m_format
.Printf(_T("%%%d.%df"), m_width
, m_precision
);
1893 text
.Printf(m_format
, val
);
1896 //else: text already contains the string
1901 void wxGridCellFloatRenderer::Draw(wxGrid
& grid
,
1902 wxGridCellAttr
& attr
,
1904 const wxRect
& rectCell
,
1908 wxGridCellRenderer::Draw(grid
, attr
, dc
, rectCell
, row
, col
, isSelected
);
1910 SetTextColoursAndFont(grid
, attr
, dc
, isSelected
);
1912 // draw the text right aligned by default
1914 attr
.GetAlignment(&hAlign
, &vAlign
);
1915 hAlign
= wxALIGN_RIGHT
;
1917 wxRect rect
= rectCell
;
1920 grid
.DrawTextRectangle(dc
, GetString(grid
, row
, col
), rect
, hAlign
, vAlign
);
1923 wxSize
wxGridCellFloatRenderer::GetBestSize(wxGrid
& grid
,
1924 wxGridCellAttr
& attr
,
1928 return DoGetBestSize(attr
, dc
, GetString(grid
, row
, col
));
1931 void wxGridCellFloatRenderer::SetParameters(const wxString
& params
)
1935 // reset to defaults
1941 wxString tmp
= params
.BeforeFirst(_T(','));
1945 if ( tmp
.ToLong(&width
) )
1947 SetWidth((int)width
);
1951 wxLogDebug(_T("Invalid wxGridCellFloatRenderer width parameter string '%s ignored"), params
.c_str());
1955 tmp
= params
.AfterFirst(_T(','));
1959 if ( tmp
.ToLong(&precision
) )
1961 SetPrecision((int)precision
);
1965 wxLogDebug(_T("Invalid wxGridCellFloatRenderer precision parameter string '%s ignored"), params
.c_str());
1973 // ----------------------------------------------------------------------------
1974 // wxGridCellBoolRenderer
1975 // ----------------------------------------------------------------------------
1977 wxSize
wxGridCellBoolRenderer::ms_sizeCheckMark
;
1979 // FIXME these checkbox size calculations are really ugly...
1981 // between checkmark and box
1982 static const wxCoord wxGRID_CHECKMARK_MARGIN
= 2;
1984 wxSize
wxGridCellBoolRenderer::GetBestSize(wxGrid
& grid
,
1985 wxGridCellAttr
& WXUNUSED(attr
),
1990 // compute it only once (no locks for MT safeness in GUI thread...)
1991 if ( !ms_sizeCheckMark
.x
)
1993 // get checkbox size
1994 wxCheckBox
*checkbox
= new wxCheckBox(&grid
, wxID_ANY
, wxEmptyString
);
1995 wxSize size
= checkbox
->GetBestSize();
1996 wxCoord checkSize
= size
.y
+ 2*wxGRID_CHECKMARK_MARGIN
;
1998 // FIXME wxGTK::wxCheckBox::GetBestSize() gives "wrong" result
1999 #if defined(__WXGTK__) || defined(__WXMOTIF__)
2000 checkSize
-= size
.y
/ 2;
2005 ms_sizeCheckMark
.x
= ms_sizeCheckMark
.y
= checkSize
;
2008 return ms_sizeCheckMark
;
2011 void wxGridCellBoolRenderer::Draw(wxGrid
& grid
,
2012 wxGridCellAttr
& attr
,
2018 wxGridCellRenderer::Draw(grid
, attr
, dc
, rect
, row
, col
, isSelected
);
2020 // draw a check mark in the centre (ignoring alignment - TODO)
2021 wxSize size
= GetBestSize(grid
, attr
, dc
, row
, col
);
2023 // don't draw outside the cell
2024 wxCoord minSize
= wxMin(rect
.width
, rect
.height
);
2025 if ( size
.x
>= minSize
|| size
.y
>= minSize
)
2027 // and even leave (at least) 1 pixel margin
2028 size
.x
= size
.y
= minSize
- 2;
2031 // draw a border around checkmark
2033 attr
.GetAlignment(& hAlign
, &vAlign
);
2036 if (hAlign
== wxALIGN_CENTRE
)
2038 rectBorder
.x
= rect
.x
+ rect
.width
/2 - size
.x
/2;
2039 rectBorder
.y
= rect
.y
+ rect
.height
/2 - size
.y
/2;
2040 rectBorder
.width
= size
.x
;
2041 rectBorder
.height
= size
.y
;
2043 else if (hAlign
== wxALIGN_LEFT
)
2045 rectBorder
.x
= rect
.x
+ 2;
2046 rectBorder
.y
= rect
.y
+ rect
.height
/2 - size
.y
/2;
2047 rectBorder
.width
= size
.x
;
2048 rectBorder
.height
= size
.y
;
2050 else if (hAlign
== wxALIGN_RIGHT
)
2052 rectBorder
.x
= rect
.x
+ rect
.width
- size
.x
- 2;
2053 rectBorder
.y
= rect
.y
+ rect
.height
/2 - size
.y
/2;
2054 rectBorder
.width
= size
.x
;
2055 rectBorder
.height
= size
.y
;
2059 if ( grid
.GetTable()->CanGetValueAs(row
, col
, wxGRID_VALUE_BOOL
) )
2060 value
= grid
.GetTable()->GetValueAsBool(row
, col
);
2063 wxString
cellval( grid
.GetTable()->GetValue(row
, col
) );
2064 value
= !( !cellval
|| (cellval
== wxT("0")) );
2069 wxRect rectMark
= rectBorder
;
2071 // MSW DrawCheckMark() is weird (and should probably be changed...)
2072 rectMark
.Inflate(-wxGRID_CHECKMARK_MARGIN
/2);
2076 rectMark
.Inflate(-wxGRID_CHECKMARK_MARGIN
);
2079 dc
.SetTextForeground(attr
.GetTextColour());
2080 dc
.DrawCheckMark(rectMark
);
2083 dc
.SetBrush(*wxTRANSPARENT_BRUSH
);
2084 dc
.SetPen(wxPen(attr
.GetTextColour(), 1, wxSOLID
));
2085 dc
.DrawRectangle(rectBorder
);
2088 // ----------------------------------------------------------------------------
2090 // ----------------------------------------------------------------------------
2092 void wxGridCellAttr::Init(wxGridCellAttr
*attrDefault
)
2096 m_isReadOnly
= Unset
;
2101 m_attrkind
= wxGridCellAttr::Cell
;
2103 m_sizeRows
= m_sizeCols
= 1;
2104 m_overflow
= UnsetOverflow
;
2106 SetDefAttr(attrDefault
);
2109 wxGridCellAttr
*wxGridCellAttr::Clone() const
2111 wxGridCellAttr
*attr
= new wxGridCellAttr(m_defGridAttr
);
2113 if ( HasTextColour() )
2114 attr
->SetTextColour(GetTextColour());
2115 if ( HasBackgroundColour() )
2116 attr
->SetBackgroundColour(GetBackgroundColour());
2118 attr
->SetFont(GetFont());
2119 if ( HasAlignment() )
2120 attr
->SetAlignment(m_hAlign
, m_vAlign
);
2122 attr
->SetSize( m_sizeRows
, m_sizeCols
);
2126 attr
->SetRenderer(m_renderer
);
2127 m_renderer
->IncRef();
2131 attr
->SetEditor(m_editor
);
2136 attr
->SetReadOnly();
2138 attr
->SetKind( m_attrkind
);
2143 void wxGridCellAttr::MergeWith(wxGridCellAttr
*mergefrom
)
2145 if ( !HasTextColour() && mergefrom
->HasTextColour() )
2146 SetTextColour(mergefrom
->GetTextColour());
2147 if ( !HasBackgroundColour() && mergefrom
->HasBackgroundColour() )
2148 SetBackgroundColour(mergefrom
->GetBackgroundColour());
2149 if ( !HasFont() && mergefrom
->HasFont() )
2150 SetFont(mergefrom
->GetFont());
2151 if ( !HasAlignment() && mergefrom
->HasAlignment() ){
2153 mergefrom
->GetAlignment( &hAlign
, &vAlign
);
2154 SetAlignment(hAlign
, vAlign
);
2156 if ( !HasSize() && mergefrom
->HasSize() )
2157 mergefrom
->GetSize( &m_sizeRows
, &m_sizeCols
);
2159 // Directly access member functions as GetRender/Editor don't just return
2160 // m_renderer/m_editor
2162 // Maybe add support for merge of Render and Editor?
2163 if (!HasRenderer() && mergefrom
->HasRenderer() )
2165 m_renderer
= mergefrom
->m_renderer
;
2166 m_renderer
->IncRef();
2168 if ( !HasEditor() && mergefrom
->HasEditor() )
2170 m_editor
= mergefrom
->m_editor
;
2173 if ( !HasReadWriteMode() && mergefrom
->HasReadWriteMode() )
2174 SetReadOnly(mergefrom
->IsReadOnly());
2176 if (!HasOverflowMode() && mergefrom
->HasOverflowMode() )
2177 SetOverflow(mergefrom
->GetOverflow());
2179 SetDefAttr(mergefrom
->m_defGridAttr
);
2182 void wxGridCellAttr::SetSize(int num_rows
, int num_cols
)
2184 // The size of a cell is normally 1,1
2186 // If this cell is larger (2,2) then this is the top left cell
2187 // the other cells that will be covered (lower right cells) must be
2188 // set to negative or zero values such that
2189 // row + num_rows of the covered cell points to the larger cell (this cell)
2190 // same goes for the col + num_cols.
2192 // Size of 0,0 is NOT valid, neither is <=0 and any positive value
2194 wxASSERT_MSG( (!((num_rows
>0)&&(num_cols
<=0)) ||
2195 !((num_rows
<=0)&&(num_cols
>0)) ||
2196 !((num_rows
==0)&&(num_cols
==0))),
2197 wxT("wxGridCellAttr::SetSize only takes two postive values or negative/zero values"));
2199 m_sizeRows
= num_rows
;
2200 m_sizeCols
= num_cols
;
2203 const wxColour
& wxGridCellAttr::GetTextColour() const
2205 if (HasTextColour())
2209 else if (m_defGridAttr
&& m_defGridAttr
!= this)
2211 return m_defGridAttr
->GetTextColour();
2215 wxFAIL_MSG(wxT("Missing default cell attribute"));
2216 return wxNullColour
;
2221 const wxColour
& wxGridCellAttr::GetBackgroundColour() const
2223 if (HasBackgroundColour())
2225 else if (m_defGridAttr
&& m_defGridAttr
!= this)
2226 return m_defGridAttr
->GetBackgroundColour();
2229 wxFAIL_MSG(wxT("Missing default cell attribute"));
2230 return wxNullColour
;
2235 const wxFont
& wxGridCellAttr::GetFont() const
2239 else if (m_defGridAttr
&& m_defGridAttr
!= this)
2240 return m_defGridAttr
->GetFont();
2243 wxFAIL_MSG(wxT("Missing default cell attribute"));
2249 void wxGridCellAttr::GetAlignment(int *hAlign
, int *vAlign
) const
2253 if ( hAlign
) *hAlign
= m_hAlign
;
2254 if ( vAlign
) *vAlign
= m_vAlign
;
2256 else if (m_defGridAttr
&& m_defGridAttr
!= this)
2257 m_defGridAttr
->GetAlignment(hAlign
, vAlign
);
2260 wxFAIL_MSG(wxT("Missing default cell attribute"));
2264 void wxGridCellAttr::GetSize( int *num_rows
, int *num_cols
) const
2266 if ( num_rows
) *num_rows
= m_sizeRows
;
2267 if ( num_cols
) *num_cols
= m_sizeCols
;
2270 // GetRenderer and GetEditor use a slightly different decision path about
2271 // which attribute to use. If a non-default attr object has one then it is
2272 // used, otherwise the default editor or renderer is fetched from the grid and
2273 // used. It should be the default for the data type of the cell. If it is
2274 // NULL (because the table has a type that the grid does not have in its
2275 // registry,) then the grid's default editor or renderer is used.
2277 wxGridCellRenderer
* wxGridCellAttr::GetRenderer(wxGrid
* grid
, int row
, int col
) const
2279 wxGridCellRenderer
*renderer
;
2281 if ( m_renderer
&& this != m_defGridAttr
)
2283 // use the cells renderer if it has one
2284 renderer
= m_renderer
;
2287 else // no non default cell renderer
2289 // get default renderer for the data type
2292 // GetDefaultRendererForCell() will do IncRef() for us
2293 renderer
= grid
->GetDefaultRendererForCell(row
, col
);
2302 if (m_defGridAttr
&& this != m_defGridAttr
)
2304 // if we still don't have one then use the grid default
2305 // (no need for IncRef() here neither)
2306 renderer
= m_defGridAttr
->GetRenderer(NULL
, 0, 0);
2308 else // default grid attr
2310 // use m_renderer which we had decided not to use initially
2311 renderer
= m_renderer
;
2318 // we're supposed to always find something
2319 wxASSERT_MSG(renderer
, wxT("Missing default cell renderer"));
2324 // same as above, except for s/renderer/editor/g
2325 wxGridCellEditor
* wxGridCellAttr::GetEditor(wxGrid
* grid
, int row
, int col
) const
2327 wxGridCellEditor
*editor
;
2329 if ( m_editor
&& this != m_defGridAttr
)
2331 // use the cells editor if it has one
2335 else // no non default cell editor
2337 // get default editor for the data type
2340 // GetDefaultEditorForCell() will do IncRef() for us
2341 editor
= grid
->GetDefaultEditorForCell(row
, col
);
2350 if ( m_defGridAttr
&& this != m_defGridAttr
)
2352 // if we still don't have one then use the grid default
2353 // (no need for IncRef() here neither)
2354 editor
= m_defGridAttr
->GetEditor(NULL
, 0, 0);
2356 else // default grid attr
2358 // use m_editor which we had decided not to use initially
2366 // we're supposed to always find something
2367 wxASSERT_MSG(editor
, wxT("Missing default cell editor"));
2372 // ----------------------------------------------------------------------------
2373 // wxGridCellAttrData
2374 // ----------------------------------------------------------------------------
2376 void wxGridCellAttrData::SetAttr(wxGridCellAttr
*attr
, int row
, int col
)
2378 int n
= FindIndex(row
, col
);
2379 if ( n
== wxNOT_FOUND
)
2381 // add the attribute
2382 m_attrs
.Add(new wxGridCellWithAttr(row
, col
, attr
));
2386 // free the old attribute
2387 m_attrs
[(size_t)n
].attr
->DecRef();
2391 // change the attribute
2392 m_attrs
[(size_t)n
].attr
= attr
;
2396 // remove this attribute
2397 m_attrs
.RemoveAt((size_t)n
);
2402 wxGridCellAttr
*wxGridCellAttrData::GetAttr(int row
, int col
) const
2404 wxGridCellAttr
*attr
= (wxGridCellAttr
*)NULL
;
2406 int n
= FindIndex(row
, col
);
2407 if ( n
!= wxNOT_FOUND
)
2409 attr
= m_attrs
[(size_t)n
].attr
;
2416 void wxGridCellAttrData::UpdateAttrRows( size_t pos
, int numRows
)
2418 size_t count
= m_attrs
.GetCount();
2419 for ( size_t n
= 0; n
< count
; n
++ )
2421 wxGridCellCoords
& coords
= m_attrs
[n
].coords
;
2422 wxCoord row
= coords
.GetRow();
2423 if ((size_t)row
>= pos
)
2427 // If rows inserted, include row counter where necessary
2428 coords
.SetRow(row
+ numRows
);
2430 else if (numRows
< 0)
2432 // If rows deleted ...
2433 if ((size_t)row
>= pos
- numRows
)
2435 // ...either decrement row counter (if row still exists)...
2436 coords
.SetRow(row
+ numRows
);
2440 // ...or remove the attribute
2441 // No need to DecRef the attribute itself since this is
2442 // done be wxGridCellWithAttr's destructor!
2443 m_attrs
.RemoveAt(n
);
2451 void wxGridCellAttrData::UpdateAttrCols( size_t pos
, int numCols
)
2453 size_t count
= m_attrs
.GetCount();
2454 for ( size_t n
= 0; n
< count
; n
++ )
2456 wxGridCellCoords
& coords
= m_attrs
[n
].coords
;
2457 wxCoord col
= coords
.GetCol();
2458 if ( (size_t)col
>= pos
)
2462 // If rows inserted, include row counter where necessary
2463 coords
.SetCol(col
+ numCols
);
2465 else if (numCols
< 0)
2467 // If rows deleted ...
2468 if ((size_t)col
>= pos
- numCols
)
2470 // ...either decrement row counter (if row still exists)...
2471 coords
.SetCol(col
+ numCols
);
2475 // ...or remove the attribute
2476 // No need to DecRef the attribute itself since this is
2477 // done be wxGridCellWithAttr's destructor!
2478 m_attrs
.RemoveAt(n
);
2486 int wxGridCellAttrData::FindIndex(int row
, int col
) const
2488 size_t count
= m_attrs
.GetCount();
2489 for ( size_t n
= 0; n
< count
; n
++ )
2491 const wxGridCellCoords
& coords
= m_attrs
[n
].coords
;
2492 if ( (coords
.GetRow() == row
) && (coords
.GetCol() == col
) )
2501 // ----------------------------------------------------------------------------
2502 // wxGridRowOrColAttrData
2503 // ----------------------------------------------------------------------------
2505 wxGridRowOrColAttrData::~wxGridRowOrColAttrData()
2507 size_t count
= m_attrs
.Count();
2508 for ( size_t n
= 0; n
< count
; n
++ )
2510 m_attrs
[n
]->DecRef();
2514 wxGridCellAttr
*wxGridRowOrColAttrData::GetAttr(int rowOrCol
) const
2516 wxGridCellAttr
*attr
= (wxGridCellAttr
*)NULL
;
2518 int n
= m_rowsOrCols
.Index(rowOrCol
);
2519 if ( n
!= wxNOT_FOUND
)
2521 attr
= m_attrs
[(size_t)n
];
2528 void wxGridRowOrColAttrData::SetAttr(wxGridCellAttr
*attr
, int rowOrCol
)
2530 int i
= m_rowsOrCols
.Index(rowOrCol
);
2531 if ( i
== wxNOT_FOUND
)
2533 // add the attribute
2534 m_rowsOrCols
.Add(rowOrCol
);
2539 size_t n
= (size_t)i
;
2542 // change the attribute
2543 m_attrs
[n
]->DecRef();
2548 // remove this attribute
2549 m_attrs
[n
]->DecRef();
2550 m_rowsOrCols
.RemoveAt(n
);
2551 m_attrs
.RemoveAt(n
);
2556 void wxGridRowOrColAttrData::UpdateAttrRowsOrCols( size_t pos
, int numRowsOrCols
)
2558 size_t count
= m_attrs
.GetCount();
2559 for ( size_t n
= 0; n
< count
; n
++ )
2561 int & rowOrCol
= m_rowsOrCols
[n
];
2562 if ( (size_t)rowOrCol
>= pos
)
2564 if ( numRowsOrCols
> 0 )
2566 // If rows inserted, include row counter where necessary
2567 rowOrCol
+= numRowsOrCols
;
2569 else if ( numRowsOrCols
< 0)
2571 // If rows deleted, either decrement row counter (if row still exists)
2572 if ((size_t)rowOrCol
>= pos
- numRowsOrCols
)
2573 rowOrCol
+= numRowsOrCols
;
2576 m_rowsOrCols
.RemoveAt(n
);
2577 m_attrs
[n
]->DecRef();
2578 m_attrs
.RemoveAt(n
);
2586 // ----------------------------------------------------------------------------
2587 // wxGridCellAttrProvider
2588 // ----------------------------------------------------------------------------
2590 wxGridCellAttrProvider::wxGridCellAttrProvider()
2592 m_data
= (wxGridCellAttrProviderData
*)NULL
;
2595 wxGridCellAttrProvider::~wxGridCellAttrProvider()
2600 void wxGridCellAttrProvider::InitData()
2602 m_data
= new wxGridCellAttrProviderData
;
2605 wxGridCellAttr
*wxGridCellAttrProvider::GetAttr(int row
, int col
,
2606 wxGridCellAttr::wxAttrKind kind
) const
2608 wxGridCellAttr
*attr
= (wxGridCellAttr
*)NULL
;
2613 case (wxGridCellAttr::Any
):
2614 //Get cached merge attributes.
2615 // Currenlty not used as no cache implemented as not mutiable
2616 // attr = m_data->m_mergeAttr.GetAttr(row, col);
2619 //Basicaly implement old version.
2620 //Also check merge cache, so we don't have to re-merge every time..
2621 wxGridCellAttr
*attrcell
= m_data
->m_cellAttrs
.GetAttr(row
, col
);
2622 wxGridCellAttr
*attrrow
= m_data
->m_rowAttrs
.GetAttr(row
);
2623 wxGridCellAttr
*attrcol
= m_data
->m_colAttrs
.GetAttr(col
);
2625 if((attrcell
!= attrrow
) && (attrrow
!= attrcol
) && (attrcell
!= attrcol
)){
2626 // Two or more are non NULL
2627 attr
= new wxGridCellAttr
;
2628 attr
->SetKind(wxGridCellAttr::Merged
);
2632 attr
->MergeWith(attrcell
);
2636 attr
->MergeWith(attrcol
);
2640 attr
->MergeWith(attrrow
);
2643 //store merge attr if cache implemented
2645 //m_data->m_mergeAttr.SetAttr(attr, row, col);
2649 // one or none is non null return it or null.
2650 if(attrrow
) attr
= attrrow
;
2666 case (wxGridCellAttr::Cell
):
2667 attr
= m_data
->m_cellAttrs
.GetAttr(row
, col
);
2669 case (wxGridCellAttr::Col
):
2670 attr
= m_data
->m_colAttrs
.GetAttr(col
);
2672 case (wxGridCellAttr::Row
):
2673 attr
= m_data
->m_rowAttrs
.GetAttr(row
);
2677 // (wxGridCellAttr::Default):
2678 // (wxGridCellAttr::Merged):
2685 void wxGridCellAttrProvider::SetAttr(wxGridCellAttr
*attr
,
2691 m_data
->m_cellAttrs
.SetAttr(attr
, row
, col
);
2694 void wxGridCellAttrProvider::SetRowAttr(wxGridCellAttr
*attr
, int row
)
2699 m_data
->m_rowAttrs
.SetAttr(attr
, row
);
2702 void wxGridCellAttrProvider::SetColAttr(wxGridCellAttr
*attr
, int col
)
2707 m_data
->m_colAttrs
.SetAttr(attr
, col
);
2710 void wxGridCellAttrProvider::UpdateAttrRows( size_t pos
, int numRows
)
2714 m_data
->m_cellAttrs
.UpdateAttrRows( pos
, numRows
);
2716 m_data
->m_rowAttrs
.UpdateAttrRowsOrCols( pos
, numRows
);
2720 void wxGridCellAttrProvider::UpdateAttrCols( size_t pos
, int numCols
)
2724 m_data
->m_cellAttrs
.UpdateAttrCols( pos
, numCols
);
2726 m_data
->m_colAttrs
.UpdateAttrRowsOrCols( pos
, numCols
);
2730 // ----------------------------------------------------------------------------
2731 // wxGridTypeRegistry
2732 // ----------------------------------------------------------------------------
2734 wxGridTypeRegistry::~wxGridTypeRegistry()
2736 size_t count
= m_typeinfo
.Count();
2737 for ( size_t i
= 0; i
< count
; i
++ )
2738 delete m_typeinfo
[i
];
2742 void wxGridTypeRegistry::RegisterDataType(const wxString
& typeName
,
2743 wxGridCellRenderer
* renderer
,
2744 wxGridCellEditor
* editor
)
2746 wxGridDataTypeInfo
* info
= new wxGridDataTypeInfo(typeName
, renderer
, editor
);
2748 // is it already registered?
2749 int loc
= FindRegisteredDataType(typeName
);
2750 if ( loc
!= wxNOT_FOUND
)
2752 delete m_typeinfo
[loc
];
2753 m_typeinfo
[loc
] = info
;
2757 m_typeinfo
.Add(info
);
2761 int wxGridTypeRegistry::FindRegisteredDataType(const wxString
& typeName
)
2763 size_t count
= m_typeinfo
.GetCount();
2764 for ( size_t i
= 0; i
< count
; i
++ )
2766 if ( typeName
== m_typeinfo
[i
]->m_typeName
)
2775 int wxGridTypeRegistry::FindDataType(const wxString
& typeName
)
2777 int index
= FindRegisteredDataType(typeName
);
2778 if ( index
== wxNOT_FOUND
)
2780 // check whether this is one of the standard ones, in which case
2781 // register it "on the fly"
2783 if ( typeName
== wxGRID_VALUE_STRING
)
2785 RegisterDataType(wxGRID_VALUE_STRING
,
2786 new wxGridCellStringRenderer
,
2787 new wxGridCellTextEditor
);
2789 #endif // wxUSE_TEXTCTRL
2791 if ( typeName
== wxGRID_VALUE_BOOL
)
2793 RegisterDataType(wxGRID_VALUE_BOOL
,
2794 new wxGridCellBoolRenderer
,
2795 new wxGridCellBoolEditor
);
2797 #endif // wxUSE_CHECKBOX
2799 if ( typeName
== wxGRID_VALUE_NUMBER
)
2801 RegisterDataType(wxGRID_VALUE_NUMBER
,
2802 new wxGridCellNumberRenderer
,
2803 new wxGridCellNumberEditor
);
2805 else if ( typeName
== wxGRID_VALUE_FLOAT
)
2807 RegisterDataType(wxGRID_VALUE_FLOAT
,
2808 new wxGridCellFloatRenderer
,
2809 new wxGridCellFloatEditor
);
2811 #endif // wxUSE_TEXTCTRL
2813 if ( typeName
== wxGRID_VALUE_CHOICE
)
2815 RegisterDataType(wxGRID_VALUE_CHOICE
,
2816 new wxGridCellStringRenderer
,
2817 new wxGridCellChoiceEditor
);
2819 #endif // wxUSE_COMBOBOX
2824 // we get here only if just added the entry for this type, so return
2826 index
= m_typeinfo
.GetCount() - 1;
2832 int wxGridTypeRegistry::FindOrCloneDataType(const wxString
& typeName
)
2834 int index
= FindDataType(typeName
);
2835 if ( index
== wxNOT_FOUND
)
2837 // the first part of the typename is the "real" type, anything after ':'
2838 // are the parameters for the renderer
2839 index
= FindDataType(typeName
.BeforeFirst(_T(':')));
2840 if ( index
== wxNOT_FOUND
)
2845 wxGridCellRenderer
*renderer
= GetRenderer(index
);
2846 wxGridCellRenderer
*rendererOld
= renderer
;
2847 renderer
= renderer
->Clone();
2848 rendererOld
->DecRef();
2850 wxGridCellEditor
*editor
= GetEditor(index
);
2851 wxGridCellEditor
*editorOld
= editor
;
2852 editor
= editor
->Clone();
2853 editorOld
->DecRef();
2855 // do it even if there are no parameters to reset them to defaults
2856 wxString params
= typeName
.AfterFirst(_T(':'));
2857 renderer
->SetParameters(params
);
2858 editor
->SetParameters(params
);
2860 // register the new typename
2861 RegisterDataType(typeName
, renderer
, editor
);
2863 // we just registered it, it's the last one
2864 index
= m_typeinfo
.GetCount() - 1;
2870 wxGridCellRenderer
* wxGridTypeRegistry::GetRenderer(int index
)
2872 wxGridCellRenderer
* renderer
= m_typeinfo
[index
]->m_renderer
;
2878 wxGridCellEditor
* wxGridTypeRegistry::GetEditor(int index
)
2880 wxGridCellEditor
* editor
= m_typeinfo
[index
]->m_editor
;
2886 // ----------------------------------------------------------------------------
2888 // ----------------------------------------------------------------------------
2890 IMPLEMENT_ABSTRACT_CLASS( wxGridTableBase
, wxObject
)
2893 wxGridTableBase::wxGridTableBase()
2895 m_view
= (wxGrid
*) NULL
;
2896 m_attrProvider
= (wxGridCellAttrProvider
*) NULL
;
2899 wxGridTableBase::~wxGridTableBase()
2901 delete m_attrProvider
;
2904 void wxGridTableBase::SetAttrProvider(wxGridCellAttrProvider
*attrProvider
)
2906 delete m_attrProvider
;
2907 m_attrProvider
= attrProvider
;
2910 bool wxGridTableBase::CanHaveAttributes()
2912 if ( ! GetAttrProvider() )
2914 // use the default attr provider by default
2915 SetAttrProvider(new wxGridCellAttrProvider
);
2920 wxGridCellAttr
*wxGridTableBase::GetAttr(int row
, int col
, wxGridCellAttr::wxAttrKind kind
)
2922 if ( m_attrProvider
)
2923 return m_attrProvider
->GetAttr(row
, col
, kind
);
2925 return (wxGridCellAttr
*)NULL
;
2929 void wxGridTableBase::SetAttr(wxGridCellAttr
* attr
, int row
, int col
)
2931 if ( m_attrProvider
)
2933 attr
->SetKind(wxGridCellAttr::Cell
);
2934 m_attrProvider
->SetAttr(attr
, row
, col
);
2938 // as we take ownership of the pointer and don't store it, we must
2944 void wxGridTableBase::SetRowAttr(wxGridCellAttr
*attr
, int row
)
2946 if ( m_attrProvider
)
2948 attr
->SetKind(wxGridCellAttr::Row
);
2949 m_attrProvider
->SetRowAttr(attr
, row
);
2953 // as we take ownership of the pointer and don't store it, we must
2959 void wxGridTableBase::SetColAttr(wxGridCellAttr
*attr
, int col
)
2961 if ( m_attrProvider
)
2963 attr
->SetKind(wxGridCellAttr::Col
);
2964 m_attrProvider
->SetColAttr(attr
, col
);
2968 // as we take ownership of the pointer and don't store it, we must
2974 bool wxGridTableBase::InsertRows( size_t WXUNUSED(pos
),
2975 size_t WXUNUSED(numRows
) )
2977 wxFAIL_MSG( wxT("Called grid table class function InsertRows\nbut your derived table class does not override this function") );
2982 bool wxGridTableBase::AppendRows( size_t WXUNUSED(numRows
) )
2984 wxFAIL_MSG( wxT("Called grid table class function AppendRows\nbut your derived table class does not override this function"));
2989 bool wxGridTableBase::DeleteRows( size_t WXUNUSED(pos
),
2990 size_t WXUNUSED(numRows
) )
2992 wxFAIL_MSG( wxT("Called grid table class function DeleteRows\nbut your derived table class does not override this function"));
2997 bool wxGridTableBase::InsertCols( size_t WXUNUSED(pos
),
2998 size_t WXUNUSED(numCols
) )
3000 wxFAIL_MSG( wxT("Called grid table class function InsertCols\nbut your derived table class does not override this function"));
3005 bool wxGridTableBase::AppendCols( size_t WXUNUSED(numCols
) )
3007 wxFAIL_MSG(wxT("Called grid table class function AppendCols\nbut your derived table class does not override this function"));
3012 bool wxGridTableBase::DeleteCols( size_t WXUNUSED(pos
),
3013 size_t WXUNUSED(numCols
) )
3015 wxFAIL_MSG( wxT("Called grid table class function DeleteCols\nbut your derived table class does not override this function"));
3021 wxString
wxGridTableBase::GetRowLabelValue( int row
)
3024 s
<< row
+ 1; // RD: Starting the rows at zero confuses users, no matter
3025 // how much it makes sense to us geeks.
3029 wxString
wxGridTableBase::GetColLabelValue( int col
)
3031 // default col labels are:
3032 // cols 0 to 25 : A-Z
3033 // cols 26 to 675 : AA-ZZ
3038 for ( n
= 1; ; n
++ )
3040 s
+= (wxChar
) (_T('A') + (wxChar
)( col%26
));
3042 if ( col
< 0 ) break;
3045 // reverse the string...
3047 for ( i
= 0; i
< n
; i
++ )
3056 wxString
wxGridTableBase::GetTypeName( int WXUNUSED(row
), int WXUNUSED(col
) )
3058 return wxGRID_VALUE_STRING
;
3061 bool wxGridTableBase::CanGetValueAs( int WXUNUSED(row
), int WXUNUSED(col
),
3062 const wxString
& typeName
)
3064 return typeName
== wxGRID_VALUE_STRING
;
3067 bool wxGridTableBase::CanSetValueAs( int row
, int col
, const wxString
& typeName
)
3069 return CanGetValueAs(row
, col
, typeName
);
3072 long wxGridTableBase::GetValueAsLong( int WXUNUSED(row
), int WXUNUSED(col
) )
3077 double wxGridTableBase::GetValueAsDouble( int WXUNUSED(row
), int WXUNUSED(col
) )
3082 bool wxGridTableBase::GetValueAsBool( int WXUNUSED(row
), int WXUNUSED(col
) )
3087 void wxGridTableBase::SetValueAsLong( int WXUNUSED(row
), int WXUNUSED(col
),
3088 long WXUNUSED(value
) )
3092 void wxGridTableBase::SetValueAsDouble( int WXUNUSED(row
), int WXUNUSED(col
),
3093 double WXUNUSED(value
) )
3097 void wxGridTableBase::SetValueAsBool( int WXUNUSED(row
), int WXUNUSED(col
),
3098 bool WXUNUSED(value
) )
3103 void* wxGridTableBase::GetValueAsCustom( int WXUNUSED(row
), int WXUNUSED(col
),
3104 const wxString
& WXUNUSED(typeName
) )
3109 void wxGridTableBase::SetValueAsCustom( int WXUNUSED(row
), int WXUNUSED(col
),
3110 const wxString
& WXUNUSED(typeName
),
3111 void* WXUNUSED(value
) )
3115 //////////////////////////////////////////////////////////////////////
3117 // Message class for the grid table to send requests and notifications
3121 wxGridTableMessage::wxGridTableMessage()
3123 m_table
= (wxGridTableBase
*) NULL
;
3129 wxGridTableMessage::wxGridTableMessage( wxGridTableBase
*table
, int id
,
3130 int commandInt1
, int commandInt2
)
3134 m_comInt1
= commandInt1
;
3135 m_comInt2
= commandInt2
;
3140 //////////////////////////////////////////////////////////////////////
3142 // A basic grid table for string data. An object of this class will
3143 // created by wxGrid if you don't specify an alternative table class.
3146 WX_DEFINE_OBJARRAY(wxGridStringArray
)
3148 IMPLEMENT_DYNAMIC_CLASS( wxGridStringTable
, wxGridTableBase
)
3150 wxGridStringTable::wxGridStringTable()
3155 wxGridStringTable::wxGridStringTable( int numRows
, int numCols
)
3158 m_data
.Alloc( numRows
);
3161 sa
.Alloc( numCols
);
3162 sa
.Add( wxEmptyString
, numCols
);
3164 m_data
.Add( sa
, numRows
);
3167 wxGridStringTable::~wxGridStringTable()
3171 int wxGridStringTable::GetNumberRows()
3173 return m_data
.GetCount();
3176 int wxGridStringTable::GetNumberCols()
3178 if ( m_data
.GetCount() > 0 )
3179 return m_data
[0].GetCount();
3184 wxString
wxGridStringTable::GetValue( int row
, int col
)
3186 wxCHECK_MSG( (row
< GetNumberRows()) && (col
< GetNumberCols()),
3188 _T("invalid row or column index in wxGridStringTable") );
3190 return m_data
[row
][col
];
3193 void wxGridStringTable::SetValue( int row
, int col
, const wxString
& value
)
3195 wxCHECK_RET( (row
< GetNumberRows()) && (col
< GetNumberCols()),
3196 _T("invalid row or column index in wxGridStringTable") );
3198 m_data
[row
][col
] = value
;
3201 bool wxGridStringTable::IsEmptyCell( int row
, int col
)
3203 wxCHECK_MSG( (row
< GetNumberRows()) && (col
< GetNumberCols()),
3205 _T("invalid row or column index in wxGridStringTable") );
3207 return (m_data
[row
][col
] == wxEmptyString
);
3210 void wxGridStringTable::Clear()
3213 int numRows
, numCols
;
3215 numRows
= m_data
.GetCount();
3218 numCols
= m_data
[0].GetCount();
3220 for ( row
= 0; row
< numRows
; row
++ )
3222 for ( col
= 0; col
< numCols
; col
++ )
3224 m_data
[row
][col
] = wxEmptyString
;
3231 bool wxGridStringTable::InsertRows( size_t pos
, size_t numRows
)
3233 size_t curNumRows
= m_data
.GetCount();
3234 size_t curNumCols
= ( curNumRows
> 0 ? m_data
[0].GetCount() :
3235 ( GetView() ? GetView()->GetNumberCols() : 0 ) );
3237 if ( pos
>= curNumRows
)
3239 return AppendRows( numRows
);
3243 sa
.Alloc( curNumCols
);
3244 sa
.Add( wxEmptyString
, curNumCols
);
3245 m_data
.Insert( sa
, pos
, numRows
);
3248 wxGridTableMessage
msg( this,
3249 wxGRIDTABLE_NOTIFY_ROWS_INSERTED
,
3253 GetView()->ProcessTableMessage( msg
);
3259 bool wxGridStringTable::AppendRows( size_t numRows
)
3261 size_t curNumRows
= m_data
.GetCount();
3262 size_t curNumCols
= ( curNumRows
> 0 ? m_data
[0].GetCount() :
3263 ( GetView() ? GetView()->GetNumberCols() : 0 ) );
3266 if ( curNumCols
> 0 )
3268 sa
.Alloc( curNumCols
);
3269 sa
.Add( wxEmptyString
, curNumCols
);
3272 m_data
.Add( sa
, numRows
);
3276 wxGridTableMessage
msg( this,
3277 wxGRIDTABLE_NOTIFY_ROWS_APPENDED
,
3280 GetView()->ProcessTableMessage( msg
);
3286 bool wxGridStringTable::DeleteRows( size_t pos
, size_t numRows
)
3288 size_t curNumRows
= m_data
.GetCount();
3290 if ( pos
>= curNumRows
)
3292 wxFAIL_MSG( wxString::Format
3294 wxT("Called wxGridStringTable::DeleteRows(pos=%lu, N=%lu)\nPos value is invalid for present table with %lu rows"),
3296 (unsigned long)numRows
,
3297 (unsigned long)curNumRows
3303 if ( numRows
> curNumRows
- pos
)
3305 numRows
= curNumRows
- pos
;
3308 if ( numRows
>= curNumRows
)
3314 m_data
.RemoveAt( pos
, numRows
);
3318 wxGridTableMessage
msg( this,
3319 wxGRIDTABLE_NOTIFY_ROWS_DELETED
,
3323 GetView()->ProcessTableMessage( msg
);
3329 bool wxGridStringTable::InsertCols( size_t pos
, size_t numCols
)
3333 size_t curNumRows
= m_data
.GetCount();
3334 size_t curNumCols
= ( curNumRows
> 0 ? m_data
[0].GetCount() :
3335 ( GetView() ? GetView()->GetNumberCols() : 0 ) );
3337 if ( pos
>= curNumCols
)
3339 return AppendCols( numCols
);
3342 for ( row
= 0; row
< curNumRows
; row
++ )
3344 for ( col
= pos
; col
< pos
+ numCols
; col
++ )
3346 m_data
[row
].Insert( wxEmptyString
, col
);
3351 wxGridTableMessage
msg( this,
3352 wxGRIDTABLE_NOTIFY_COLS_INSERTED
,
3356 GetView()->ProcessTableMessage( msg
);
3362 bool wxGridStringTable::AppendCols( size_t numCols
)
3366 size_t curNumRows
= m_data
.GetCount();
3370 // TODO: something better than this ?
3372 wxFAIL_MSG( wxT("Unable to append cols to a grid table with no rows.\nCall AppendRows() first") );
3377 for ( row
= 0; row
< curNumRows
; row
++ )
3379 m_data
[row
].Add( wxEmptyString
, numCols
);
3384 wxGridTableMessage
msg( this,
3385 wxGRIDTABLE_NOTIFY_COLS_APPENDED
,
3388 GetView()->ProcessTableMessage( msg
);
3394 bool wxGridStringTable::DeleteCols( size_t pos
, size_t numCols
)
3398 size_t curNumRows
= m_data
.GetCount();
3399 size_t curNumCols
= ( curNumRows
> 0 ? m_data
[0].GetCount() :
3400 ( GetView() ? GetView()->GetNumberCols() : 0 ) );
3402 if ( pos
>= curNumCols
)
3404 wxFAIL_MSG( wxString::Format
3406 wxT("Called wxGridStringTable::DeleteCols(pos=%lu, N=%lu)\nPos value is invalid for present table with %lu cols"),
3408 (unsigned long)numCols
,
3409 (unsigned long)curNumCols
3414 if ( numCols
> curNumCols
- pos
)
3416 numCols
= curNumCols
- pos
;
3419 for ( row
= 0; row
< curNumRows
; row
++ )
3421 if ( numCols
>= curNumCols
)
3423 m_data
[row
].Clear();
3427 m_data
[row
].RemoveAt( pos
, numCols
);
3432 wxGridTableMessage
msg( this,
3433 wxGRIDTABLE_NOTIFY_COLS_DELETED
,
3437 GetView()->ProcessTableMessage( msg
);
3443 wxString
wxGridStringTable::GetRowLabelValue( int row
)
3445 if ( row
> (int)(m_rowLabels
.GetCount()) - 1 )
3447 // using default label
3449 return wxGridTableBase::GetRowLabelValue( row
);
3453 return m_rowLabels
[ row
];
3457 wxString
wxGridStringTable::GetColLabelValue( int col
)
3459 if ( col
> (int)(m_colLabels
.GetCount()) - 1 )
3461 // using default label
3463 return wxGridTableBase::GetColLabelValue( col
);
3467 return m_colLabels
[ col
];
3471 void wxGridStringTable::SetRowLabelValue( int row
, const wxString
& value
)
3473 if ( row
> (int)(m_rowLabels
.GetCount()) - 1 )
3475 int n
= m_rowLabels
.GetCount();
3477 for ( i
= n
; i
<= row
; i
++ )
3479 m_rowLabels
.Add( wxGridTableBase::GetRowLabelValue(i
) );
3483 m_rowLabels
[row
] = value
;
3486 void wxGridStringTable::SetColLabelValue( int col
, const wxString
& value
)
3488 if ( col
> (int)(m_colLabels
.GetCount()) - 1 )
3490 int n
= m_colLabels
.GetCount();
3492 for ( i
= n
; i
<= col
; i
++ )
3494 m_colLabels
.Add( wxGridTableBase::GetColLabelValue(i
) );
3498 m_colLabels
[col
] = value
;
3503 //////////////////////////////////////////////////////////////////////
3504 //////////////////////////////////////////////////////////////////////
3506 IMPLEMENT_DYNAMIC_CLASS( wxGridRowLabelWindow
, wxWindow
)
3508 BEGIN_EVENT_TABLE( wxGridRowLabelWindow
, wxWindow
)
3509 EVT_PAINT( wxGridRowLabelWindow::OnPaint
)
3510 EVT_MOUSEWHEEL( wxGridRowLabelWindow::OnMouseWheel
)
3511 EVT_MOUSE_EVENTS( wxGridRowLabelWindow::OnMouseEvent
)
3512 EVT_KEY_DOWN( wxGridRowLabelWindow::OnKeyDown
)
3513 EVT_KEY_UP( wxGridRowLabelWindow::OnKeyUp
)
3514 EVT_CHAR ( wxGridRowLabelWindow::OnChar
)
3517 wxGridRowLabelWindow::wxGridRowLabelWindow( wxGrid
*parent
,
3519 const wxPoint
&pos
, const wxSize
&size
)
3520 : wxWindow( parent
, id
, pos
, size
, wxWANTS_CHARS
|wxBORDER_NONE
|wxFULL_REPAINT_ON_RESIZE
)
3525 void wxGridRowLabelWindow::OnPaint( wxPaintEvent
& WXUNUSED(event
) )
3529 // NO - don't do this because it will set both the x and y origin
3530 // coords to match the parent scrolled window and we just want to
3531 // set the y coord - MB
3533 // m_owner->PrepareDC( dc );
3536 m_owner
->CalcUnscrolledPosition( 0, 0, &x
, &y
);
3537 dc
.SetDeviceOrigin( 0, -y
);
3539 wxArrayInt rows
= m_owner
->CalcRowLabelsExposed( GetUpdateRegion() );
3540 m_owner
->DrawRowLabels( dc
, rows
);
3544 void wxGridRowLabelWindow::OnMouseEvent( wxMouseEvent
& event
)
3546 m_owner
->ProcessRowLabelMouseEvent( event
);
3550 void wxGridRowLabelWindow::OnMouseWheel( wxMouseEvent
& event
)
3552 m_owner
->GetEventHandler()->ProcessEvent(event
);
3556 // This seems to be required for wxMotif otherwise the mouse
3557 // cursor must be in the cell edit control to get key events
3559 void wxGridRowLabelWindow::OnKeyDown( wxKeyEvent
& event
)
3561 if ( !m_owner
->GetEventHandler()->ProcessEvent( event
) ) event
.Skip();
3564 void wxGridRowLabelWindow::OnKeyUp( wxKeyEvent
& event
)
3566 if ( !m_owner
->GetEventHandler()->ProcessEvent( event
) ) event
.Skip();
3569 void wxGridRowLabelWindow::OnChar( wxKeyEvent
& event
)
3571 if ( !m_owner
->GetEventHandler()->ProcessEvent( event
) ) event
.Skip();
3576 //////////////////////////////////////////////////////////////////////
3578 IMPLEMENT_DYNAMIC_CLASS( wxGridColLabelWindow
, wxWindow
)
3580 BEGIN_EVENT_TABLE( wxGridColLabelWindow
, wxWindow
)
3581 EVT_PAINT( wxGridColLabelWindow::OnPaint
)
3582 EVT_MOUSEWHEEL( wxGridColLabelWindow::OnMouseWheel
)
3583 EVT_MOUSE_EVENTS( wxGridColLabelWindow::OnMouseEvent
)
3584 EVT_KEY_DOWN( wxGridColLabelWindow::OnKeyDown
)
3585 EVT_KEY_UP( wxGridColLabelWindow::OnKeyUp
)
3586 EVT_CHAR ( wxGridColLabelWindow::OnChar
)
3589 wxGridColLabelWindow::wxGridColLabelWindow( wxGrid
*parent
,
3591 const wxPoint
&pos
, const wxSize
&size
)
3592 : wxWindow( parent
, id
, pos
, size
, wxWANTS_CHARS
|wxBORDER_NONE
|wxFULL_REPAINT_ON_RESIZE
)
3597 void wxGridColLabelWindow::OnPaint( wxPaintEvent
& WXUNUSED(event
) )
3601 // NO - don't do this because it will set both the x and y origin
3602 // coords to match the parent scrolled window and we just want to
3603 // set the x coord - MB
3605 // m_owner->PrepareDC( dc );
3608 m_owner
->CalcUnscrolledPosition( 0, 0, &x
, &y
);
3609 dc
.SetDeviceOrigin( -x
, 0 );
3611 wxArrayInt cols
= m_owner
->CalcColLabelsExposed( GetUpdateRegion() );
3612 m_owner
->DrawColLabels( dc
, cols
);
3616 void wxGridColLabelWindow::OnMouseEvent( wxMouseEvent
& event
)
3618 m_owner
->ProcessColLabelMouseEvent( event
);
3621 void wxGridColLabelWindow::OnMouseWheel( wxMouseEvent
& event
)
3623 m_owner
->GetEventHandler()->ProcessEvent(event
);
3627 // This seems to be required for wxMotif otherwise the mouse
3628 // cursor must be in the cell edit control to get key events
3630 void wxGridColLabelWindow::OnKeyDown( wxKeyEvent
& event
)
3632 if ( !m_owner
->GetEventHandler()->ProcessEvent( event
) ) event
.Skip();
3635 void wxGridColLabelWindow::OnKeyUp( wxKeyEvent
& event
)
3637 if ( !m_owner
->GetEventHandler()->ProcessEvent( event
) ) event
.Skip();
3640 void wxGridColLabelWindow::OnChar( wxKeyEvent
& event
)
3642 if ( !m_owner
->GetEventHandler()->ProcessEvent( event
) ) event
.Skip();
3646 //////////////////////////////////////////////////////////////////////
3648 IMPLEMENT_DYNAMIC_CLASS( wxGridCornerLabelWindow
, wxWindow
)
3650 BEGIN_EVENT_TABLE( wxGridCornerLabelWindow
, wxWindow
)
3651 EVT_MOUSEWHEEL( wxGridCornerLabelWindow::OnMouseWheel
)
3652 EVT_MOUSE_EVENTS( wxGridCornerLabelWindow::OnMouseEvent
)
3653 EVT_PAINT( wxGridCornerLabelWindow::OnPaint
)
3654 EVT_KEY_DOWN( wxGridCornerLabelWindow::OnKeyDown
)
3655 EVT_KEY_UP( wxGridCornerLabelWindow::OnKeyUp
)
3656 EVT_CHAR ( wxGridCornerLabelWindow::OnChar
)
3659 wxGridCornerLabelWindow::wxGridCornerLabelWindow( wxGrid
*parent
,
3661 const wxPoint
&pos
, const wxSize
&size
)
3662 : wxWindow( parent
, id
, pos
, size
, wxWANTS_CHARS
|wxBORDER_NONE
|wxFULL_REPAINT_ON_RESIZE
)
3667 void wxGridCornerLabelWindow::OnPaint( wxPaintEvent
& WXUNUSED(event
) )
3671 int client_height
= 0;
3672 int client_width
= 0;
3673 GetClientSize( &client_width
, &client_height
);
3679 rect
.SetWidth( client_width
- 2 );
3680 rect
.SetHeight( client_height
- 2 );
3682 wxRendererNative::Get().DrawHeaderButton( this, dc
, rect
, 0 );
3684 dc
.SetPen( wxPen(wxSystemSettings::GetColour(wxSYS_COLOUR_3DDKSHADOW
),1, wxSOLID
) );
3685 dc
.DrawLine( client_width
-1, client_height
-1, client_width
-1, 0 );
3686 dc
.DrawLine( client_width
-1, client_height
-1, 0, client_height
-1 );
3687 dc
.DrawLine( 0, 0, client_width
, 0 );
3688 dc
.DrawLine( 0, 0, 0, client_height
);
3690 dc
.SetPen( *wxWHITE_PEN
);
3691 dc
.DrawLine( 1, 1, client_width
-1, 1 );
3692 dc
.DrawLine( 1, 1, 1, client_height
-1 );
3697 void wxGridCornerLabelWindow::OnMouseEvent( wxMouseEvent
& event
)
3699 m_owner
->ProcessCornerLabelMouseEvent( event
);
3703 void wxGridCornerLabelWindow::OnMouseWheel( wxMouseEvent
& event
)
3705 m_owner
->GetEventHandler()->ProcessEvent(event
);
3708 // This seems to be required for wxMotif otherwise the mouse
3709 // cursor must be in the cell edit control to get key events
3711 void wxGridCornerLabelWindow::OnKeyDown( wxKeyEvent
& event
)
3713 if ( !m_owner
->GetEventHandler()->ProcessEvent( event
) ) event
.Skip();
3716 void wxGridCornerLabelWindow::OnKeyUp( wxKeyEvent
& event
)
3718 if ( !m_owner
->GetEventHandler()->ProcessEvent( event
) ) event
.Skip();
3721 void wxGridCornerLabelWindow::OnChar( wxKeyEvent
& event
)
3723 if ( !m_owner
->GetEventHandler()->ProcessEvent( event
) ) event
.Skip();
3727 //////////////////////////////////////////////////////////////////////
3729 IMPLEMENT_DYNAMIC_CLASS( wxGridWindow
, wxWindow
)
3731 BEGIN_EVENT_TABLE( wxGridWindow
, wxWindow
)
3732 EVT_PAINT( wxGridWindow::OnPaint
)
3733 EVT_MOUSEWHEEL( wxGridWindow::OnMouseWheel
)
3734 EVT_MOUSE_EVENTS( wxGridWindow::OnMouseEvent
)
3735 EVT_KEY_DOWN( wxGridWindow::OnKeyDown
)
3736 EVT_KEY_UP( wxGridWindow::OnKeyUp
)
3737 EVT_CHAR ( wxGridWindow::OnChar
)
3738 EVT_SET_FOCUS( wxGridWindow::OnFocus
)
3739 EVT_KILL_FOCUS( wxGridWindow::OnFocus
)
3740 EVT_ERASE_BACKGROUND( wxGridWindow::OnEraseBackground
)
3743 wxGridWindow::wxGridWindow( wxGrid
*parent
,
3744 wxGridRowLabelWindow
*rowLblWin
,
3745 wxGridColLabelWindow
*colLblWin
,
3748 const wxSize
&size
)
3749 : wxWindow( parent
, id
, pos
, size
, wxWANTS_CHARS
| wxBORDER_NONE
| wxCLIP_CHILDREN
|wxFULL_REPAINT_ON_RESIZE
,
3750 wxT("grid window") )
3754 m_rowLabelWin
= rowLblWin
;
3755 m_colLabelWin
= colLblWin
;
3759 void wxGridWindow::OnPaint( wxPaintEvent
&WXUNUSED(event
) )
3761 wxPaintDC
dc( this );
3762 m_owner
->PrepareDC( dc
);
3763 wxRegion reg
= GetUpdateRegion();
3764 wxGridCellCoordsArray DirtyCells
= m_owner
->CalcCellsExposed( reg
);
3765 m_owner
->DrawGridCellArea( dc
, DirtyCells
);
3766 #if WXGRID_DRAW_LINES
3767 m_owner
->DrawAllGridLines( dc
, reg
);
3769 m_owner
->DrawGridSpace( dc
);
3770 m_owner
->DrawHighlight( dc
, DirtyCells
);
3774 void wxGridWindow::ScrollWindow( int dx
, int dy
, const wxRect
*rect
)
3776 wxWindow::ScrollWindow( dx
, dy
, rect
);
3777 m_rowLabelWin
->ScrollWindow( 0, dy
, rect
);
3778 m_colLabelWin
->ScrollWindow( dx
, 0, rect
);
3782 void wxGridWindow::OnMouseEvent( wxMouseEvent
& event
)
3784 if (event
.ButtonDown(wxMOUSE_BTN_LEFT
) && FindFocus() != this)
3787 m_owner
->ProcessGridCellMouseEvent( event
);
3790 void wxGridWindow::OnMouseWheel( wxMouseEvent
& event
)
3792 m_owner
->GetEventHandler()->ProcessEvent(event
);
3795 // This seems to be required for wxMotif/wxGTK otherwise the mouse
3796 // cursor must be in the cell edit control to get key events
3798 void wxGridWindow::OnKeyDown( wxKeyEvent
& event
)
3800 if ( !m_owner
->GetEventHandler()->ProcessEvent( event
) ) event
.Skip();
3803 void wxGridWindow::OnKeyUp( wxKeyEvent
& event
)
3805 if ( !m_owner
->GetEventHandler()->ProcessEvent( event
) ) event
.Skip();
3808 void wxGridWindow::OnChar( wxKeyEvent
& event
)
3810 if ( !m_owner
->GetEventHandler()->ProcessEvent( event
) ) event
.Skip();
3813 void wxGridWindow::OnEraseBackground( wxEraseEvent
& WXUNUSED(event
) )
3817 void wxGridWindow::OnFocus(wxFocusEvent
& event
)
3819 if ( !m_owner
->GetEventHandler()->ProcessEvent( event
) )
3823 //////////////////////////////////////////////////////////////////////
3825 // Internal Helper function for computing row or column from some
3826 // (unscrolled) coordinate value, using either
3827 // m_defaultRowHeight/m_defaultColWidth or binary search on array
3828 // of m_rowBottoms/m_ColRights to speed up the search!
3830 // Internal helper macros for simpler use of that function
3832 static int CoordToRowOrCol(int coord
, int defaultDist
, int minDist
,
3833 const wxArrayInt
& BorderArray
, int nMax
,
3836 #define internalXToCol(x) CoordToRowOrCol(x, m_defaultColWidth, \
3837 m_minAcceptableColWidth, \
3838 m_colRights, m_numCols, true)
3839 #define internalYToRow(y) CoordToRowOrCol(y, m_defaultRowHeight, \
3840 m_minAcceptableRowHeight, \
3841 m_rowBottoms, m_numRows, true)
3842 /////////////////////////////////////////////////////////////////////
3844 #if wxUSE_EXTENDED_RTTI
3845 WX_DEFINE_FLAGS( wxGridStyle
)
3847 wxBEGIN_FLAGS( wxGridStyle
)
3848 // new style border flags, we put them first to
3849 // use them for streaming out
3850 wxFLAGS_MEMBER(wxBORDER_SIMPLE
)
3851 wxFLAGS_MEMBER(wxBORDER_SUNKEN
)
3852 wxFLAGS_MEMBER(wxBORDER_DOUBLE
)
3853 wxFLAGS_MEMBER(wxBORDER_RAISED
)
3854 wxFLAGS_MEMBER(wxBORDER_STATIC
)
3855 wxFLAGS_MEMBER(wxBORDER_NONE
)
3857 // old style border flags
3858 wxFLAGS_MEMBER(wxSIMPLE_BORDER
)
3859 wxFLAGS_MEMBER(wxSUNKEN_BORDER
)
3860 wxFLAGS_MEMBER(wxDOUBLE_BORDER
)
3861 wxFLAGS_MEMBER(wxRAISED_BORDER
)
3862 wxFLAGS_MEMBER(wxSTATIC_BORDER
)
3863 wxFLAGS_MEMBER(wxBORDER
)
3865 // standard window styles
3866 wxFLAGS_MEMBER(wxTAB_TRAVERSAL
)
3867 wxFLAGS_MEMBER(wxCLIP_CHILDREN
)
3868 wxFLAGS_MEMBER(wxTRANSPARENT_WINDOW
)
3869 wxFLAGS_MEMBER(wxWANTS_CHARS
)
3870 wxFLAGS_MEMBER(wxFULL_REPAINT_ON_RESIZE
)
3871 wxFLAGS_MEMBER(wxALWAYS_SHOW_SB
)
3872 wxFLAGS_MEMBER(wxVSCROLL
)
3873 wxFLAGS_MEMBER(wxHSCROLL
)
3875 wxEND_FLAGS( wxGridStyle
)
3877 IMPLEMENT_DYNAMIC_CLASS_XTI(wxGrid
, wxScrolledWindow
,"wx/grid.h")
3879 wxBEGIN_PROPERTIES_TABLE(wxGrid
)
3880 wxHIDE_PROPERTY( Children
)
3881 wxPROPERTY_FLAGS( WindowStyle
, wxGridStyle
, long , SetWindowStyleFlag
, GetWindowStyleFlag
, EMPTY_MACROVALUE
, 0 /*flags*/ , wxT("Helpstring") , wxT("group")) // style
3882 wxEND_PROPERTIES_TABLE()
3884 wxBEGIN_HANDLERS_TABLE(wxGrid
)
3885 wxEND_HANDLERS_TABLE()
3887 wxCONSTRUCTOR_5( wxGrid
, wxWindow
* , Parent
, wxWindowID
, Id
, wxPoint
, Position
, wxSize
, Size
, long , WindowStyle
)
3890 TODO : Expose more information of a list's layout etc. via appropriate objects (\81Ã la NotebookPageInfo)
3893 IMPLEMENT_DYNAMIC_CLASS( wxGrid
, wxScrolledWindow
)
3896 BEGIN_EVENT_TABLE( wxGrid
, wxScrolledWindow
)
3897 EVT_PAINT( wxGrid::OnPaint
)
3898 EVT_SIZE( wxGrid::OnSize
)
3899 EVT_KEY_DOWN( wxGrid::OnKeyDown
)
3900 EVT_KEY_UP( wxGrid::OnKeyUp
)
3901 EVT_CHAR ( wxGrid::OnChar
)
3902 EVT_ERASE_BACKGROUND( wxGrid::OnEraseBackground
)
3907 // in order to make sure that a size event is not
3908 // trigerred in a unfinished state
3909 m_cornerLabelWin
= NULL
;
3910 m_rowLabelWin
= NULL
;
3911 m_colLabelWin
= NULL
;
3915 wxGrid::wxGrid( wxWindow
*parent
,
3920 const wxString
& name
)
3921 : wxScrolledWindow( parent
, id
, pos
, size
, (style
| wxWANTS_CHARS
), name
),
3922 m_colMinWidths(GRID_HASH_SIZE
),
3923 m_rowMinHeights(GRID_HASH_SIZE
)
3926 SetBestFittingSize(size
);
3929 bool wxGrid::Create(wxWindow
*parent
, wxWindowID id
,
3930 const wxPoint
& pos
, const wxSize
& size
,
3931 long style
, const wxString
& name
)
3933 if (!wxScrolledWindow::Create(parent
, id
, pos
, size
,
3934 style
| wxWANTS_CHARS
, name
))
3937 m_colMinWidths
= wxLongToLongHashMap(GRID_HASH_SIZE
) ;
3938 m_rowMinHeights
= wxLongToLongHashMap(GRID_HASH_SIZE
) ;
3941 SetBestFittingSize(size
);
3949 // Must do this or ~wxScrollHelper will pop the wrong event handler
3950 SetTargetWindow(this);
3952 wxSafeDecRef(m_defaultCellAttr
);
3954 #ifdef DEBUG_ATTR_CACHE
3955 size_t total
= gs_nAttrCacheHits
+ gs_nAttrCacheMisses
;
3956 wxPrintf(_T("wxGrid attribute cache statistics: "
3957 "total: %u, hits: %u (%u%%)\n"),
3958 total
, gs_nAttrCacheHits
,
3959 total
? (gs_nAttrCacheHits
*100) / total
: 0);
3965 delete m_typeRegistry
;
3971 // ----- internal init and update functions
3974 // NOTE: If using the default visual attributes works everywhere then this can
3975 // be removed as well as the #else cases below.
3976 #define _USE_VISATTR 0
3979 #include "wx/listbox.h"
3982 void wxGrid::Create()
3984 m_created
= false; // set to true by CreateGrid
3986 m_table
= (wxGridTableBase
*) NULL
;
3989 m_cellEditCtrlEnabled
= false;
3991 m_defaultCellAttr
= new wxGridCellAttr();
3993 // Set default cell attributes
3994 m_defaultCellAttr
->SetDefAttr(m_defaultCellAttr
);
3995 m_defaultCellAttr
->SetKind(wxGridCellAttr::Default
);
3996 m_defaultCellAttr
->SetFont(GetFont());
3997 m_defaultCellAttr
->SetAlignment(wxALIGN_LEFT
, wxALIGN_TOP
);
3998 m_defaultCellAttr
->SetRenderer(new wxGridCellStringRenderer
);
3999 m_defaultCellAttr
->SetEditor(new wxGridCellTextEditor
);
4002 wxVisualAttributes gva
= wxListBox::GetClassDefaultAttributes();
4003 wxVisualAttributes lva
= wxPanel::GetClassDefaultAttributes();
4005 m_defaultCellAttr
->SetTextColour(gva
.colFg
);
4006 m_defaultCellAttr
->SetBackgroundColour(gva
.colBg
);
4009 m_defaultCellAttr
->SetTextColour(
4010 wxSystemSettings::GetColour(wxSYS_COLOUR_WINDOWTEXT
));
4011 m_defaultCellAttr
->SetBackgroundColour(
4012 wxSystemSettings::GetColour(wxSYS_COLOUR_WINDOW
));
4017 m_currentCellCoords
= wxGridNoCellCoords
;
4019 m_rowLabelWidth
= WXGRID_DEFAULT_ROW_LABEL_WIDTH
;
4020 m_colLabelHeight
= WXGRID_DEFAULT_COL_LABEL_HEIGHT
;
4022 // create the type registry
4023 m_typeRegistry
= new wxGridTypeRegistry
;
4026 // subwindow components that make up the wxGrid
4027 m_cornerLabelWin
= new wxGridCornerLabelWindow( this,
4032 m_rowLabelWin
= new wxGridRowLabelWindow( this,
4037 m_colLabelWin
= new wxGridColLabelWindow( this,
4042 m_gridWin
= new wxGridWindow( this,
4049 SetTargetWindow( m_gridWin
);
4052 wxColour gfg
= gva
.colFg
;
4053 wxColour gbg
= gva
.colBg
;
4054 wxColour lfg
= lva
.colFg
;
4055 wxColour lbg
= lva
.colBg
;
4057 wxColour gfg
= wxSystemSettings::GetColour( wxSYS_COLOUR_WINDOWTEXT
);
4058 wxColour gbg
= wxSystemSettings::GetColour( wxSYS_COLOUR_WINDOW
);
4059 wxColour lfg
= wxSystemSettings::GetColour( wxSYS_COLOUR_WINDOWTEXT
);
4060 wxColour lbg
= wxSystemSettings::GetColour( wxSYS_COLOUR_BTNFACE
);
4062 m_cornerLabelWin
->SetOwnForegroundColour(lfg
);
4063 m_cornerLabelWin
->SetOwnBackgroundColour(lbg
);
4064 m_rowLabelWin
->SetOwnForegroundColour(lfg
);
4065 m_rowLabelWin
->SetOwnBackgroundColour(lbg
);
4066 m_colLabelWin
->SetOwnForegroundColour(lfg
);
4067 m_colLabelWin
->SetOwnBackgroundColour(lbg
);
4069 m_gridWin
->SetOwnForegroundColour(gfg
);
4070 m_gridWin
->SetOwnBackgroundColour(gbg
);
4076 bool wxGrid::CreateGrid( int numRows
, int numCols
,
4077 wxGrid::wxGridSelectionModes selmode
)
4079 wxCHECK_MSG( !m_created
,
4081 wxT("wxGrid::CreateGrid or wxGrid::SetTable called more than once") );
4083 m_numRows
= numRows
;
4084 m_numCols
= numCols
;
4086 m_table
= new wxGridStringTable( m_numRows
, m_numCols
);
4087 m_table
->SetView( this );
4089 m_selection
= new wxGridSelection( this, selmode
);
4098 void wxGrid::SetSelectionMode(wxGrid::wxGridSelectionModes selmode
)
4100 wxCHECK_RET( m_created
,
4101 wxT("Called wxGrid::SetSelectionMode() before calling CreateGrid()") );
4103 m_selection
->SetSelectionMode( selmode
);
4106 wxGrid::wxGridSelectionModes
wxGrid::GetSelectionMode() const
4108 wxCHECK_MSG( m_created
, wxGrid::wxGridSelectCells
,
4109 wxT("Called wxGrid::GetSelectionMode() before calling CreateGrid()") );
4111 return m_selection
->GetSelectionMode();
4114 bool wxGrid::SetTable( wxGridTableBase
*table
, bool takeOwnership
,
4115 wxGrid::wxGridSelectionModes selmode
)
4119 // stop all processing
4124 wxGridTableBase
*t
=m_table
;
4137 m_numRows
= table
->GetNumberRows();
4138 m_numCols
= table
->GetNumberCols();
4141 m_table
->SetView( this );
4144 m_selection
= new wxGridSelection( this, selmode
);
4157 m_rowLabelWidth
= WXGRID_DEFAULT_ROW_LABEL_WIDTH
;
4158 m_colLabelHeight
= WXGRID_DEFAULT_COL_LABEL_HEIGHT
;
4160 if ( m_rowLabelWin
)
4162 m_labelBackgroundColour
= m_rowLabelWin
->GetBackgroundColour();
4166 m_labelBackgroundColour
= wxColour( _T("WHITE") );
4169 m_labelTextColour
= wxColour( _T("BLACK") );
4172 m_attrCache
.row
= -1;
4173 m_attrCache
.col
= -1;
4174 m_attrCache
.attr
= NULL
;
4176 // TODO: something better than this ?
4178 m_labelFont
= this->GetFont();
4179 m_labelFont
.SetWeight( wxBOLD
);
4181 m_rowLabelHorizAlign
= wxALIGN_CENTRE
;
4182 m_rowLabelVertAlign
= wxALIGN_CENTRE
;
4184 m_colLabelHorizAlign
= wxALIGN_CENTRE
;
4185 m_colLabelVertAlign
= wxALIGN_CENTRE
;
4186 m_colLabelTextOrientation
= wxHORIZONTAL
;
4188 m_defaultColWidth
= WXGRID_DEFAULT_COL_WIDTH
;
4189 m_defaultRowHeight
= m_gridWin
->GetCharHeight();
4191 m_minAcceptableColWidth
= WXGRID_MIN_COL_WIDTH
;
4192 m_minAcceptableRowHeight
= WXGRID_MIN_ROW_HEIGHT
;
4194 #if defined(__WXMOTIF__) || defined(__WXGTK__) // see also text ctrl sizing in ShowCellEditControl()
4195 m_defaultRowHeight
+= 8;
4197 m_defaultRowHeight
+= 4;
4200 m_gridLineColour
= wxColour( 192,192,192 );
4201 m_gridLinesEnabled
= true;
4202 m_cellHighlightColour
= *wxBLACK
;
4203 m_cellHighlightPenWidth
= 2;
4204 m_cellHighlightROPenWidth
= 1;
4206 m_cursorMode
= WXGRID_CURSOR_SELECT_CELL
;
4207 m_winCapture
= (wxWindow
*)NULL
;
4208 m_canDragRowSize
= true;
4209 m_canDragColSize
= true;
4210 m_canDragGridSize
= true;
4211 m_canDragCell
= false;
4213 m_dragRowOrCol
= -1;
4214 m_isDragging
= false;
4215 m_startDragPos
= wxDefaultPosition
;
4217 m_waitForSlowClick
= false;
4219 m_rowResizeCursor
= wxCursor( wxCURSOR_SIZENS
);
4220 m_colResizeCursor
= wxCursor( wxCURSOR_SIZEWE
);
4222 m_currentCellCoords
= wxGridNoCellCoords
;
4224 m_selectingTopLeft
= wxGridNoCellCoords
;
4225 m_selectingBottomRight
= wxGridNoCellCoords
;
4226 m_selectionBackground
= wxSystemSettings::GetColour(wxSYS_COLOUR_HIGHLIGHT
);
4227 m_selectionForeground
= wxSystemSettings::GetColour(wxSYS_COLOUR_HIGHLIGHTTEXT
);
4229 m_editable
= true; // default for whole grid
4231 m_inOnKeyDown
= false;
4237 m_scrollLineX
= GRID_SCROLL_LINE_X
;
4238 m_scrollLineY
= GRID_SCROLL_LINE_Y
;
4241 // ----------------------------------------------------------------------------
4242 // the idea is to call these functions only when necessary because they create
4243 // quite big arrays which eat memory mostly unnecessary - in particular, if
4244 // default widths/heights are used for all rows/columns, we may not use these
4247 // with some extra code, it should be possible to only store the
4248 // widths/heights different from default ones but this will be done later...
4249 // ----------------------------------------------------------------------------
4251 void wxGrid::InitRowHeights()
4253 m_rowHeights
.Empty();
4254 m_rowBottoms
.Empty();
4256 m_rowHeights
.Alloc( m_numRows
);
4257 m_rowBottoms
.Alloc( m_numRows
);
4261 m_rowHeights
.Add( m_defaultRowHeight
, m_numRows
);
4263 for ( int i
= 0; i
< m_numRows
; i
++ )
4265 rowBottom
+= m_defaultRowHeight
;
4266 m_rowBottoms
.Add( rowBottom
);
4270 void wxGrid::InitColWidths()
4272 m_colWidths
.Empty();
4273 m_colRights
.Empty();
4275 m_colWidths
.Alloc( m_numCols
);
4276 m_colRights
.Alloc( m_numCols
);
4279 m_colWidths
.Add( m_defaultColWidth
, m_numCols
);
4281 for ( int i
= 0; i
< m_numCols
; i
++ )
4283 colRight
+= m_defaultColWidth
;
4284 m_colRights
.Add( colRight
);
4288 int wxGrid::GetColWidth(int col
) const
4290 return m_colWidths
.IsEmpty() ? m_defaultColWidth
: m_colWidths
[col
];
4293 int wxGrid::GetColLeft(int col
) const
4295 return m_colRights
.IsEmpty() ? col
* m_defaultColWidth
4296 : m_colRights
[col
] - m_colWidths
[col
];
4299 int wxGrid::GetColRight(int col
) const
4301 return m_colRights
.IsEmpty() ? (col
+ 1) * m_defaultColWidth
4305 int wxGrid::GetRowHeight(int row
) const
4307 return m_rowHeights
.IsEmpty() ? m_defaultRowHeight
: m_rowHeights
[row
];
4310 int wxGrid::GetRowTop(int row
) const
4312 return m_rowBottoms
.IsEmpty() ? row
* m_defaultRowHeight
4313 : m_rowBottoms
[row
] - m_rowHeights
[row
];
4316 int wxGrid::GetRowBottom(int row
) const
4318 return m_rowBottoms
.IsEmpty() ? (row
+ 1) * m_defaultRowHeight
4319 : m_rowBottoms
[row
];
4322 void wxGrid::CalcDimensions()
4325 GetClientSize( &cw
, &ch
);
4327 if ( m_rowLabelWin
->IsShown() )
4328 cw
-= m_rowLabelWidth
;
4329 if ( m_colLabelWin
->IsShown() )
4330 ch
-= m_colLabelHeight
;
4333 int w
= m_numCols
> 0 ? GetColRight(m_numCols
- 1) + m_extraWidth
+ 1 : 0;
4334 int h
= m_numRows
> 0 ? GetRowBottom(m_numRows
- 1) + m_extraHeight
+ 1 : 0;
4336 // take into account editor if shown
4337 if( IsCellEditControlShown() )
4340 int r
= m_currentCellCoords
.GetRow();
4341 int c
= m_currentCellCoords
.GetCol();
4342 int x
= GetColLeft(c
);
4343 int y
= GetRowTop(r
);
4345 // how big is the editor
4346 wxGridCellAttr
* attr
= GetCellAttr(r
, c
);
4347 wxGridCellEditor
* editor
= attr
->GetEditor(this, r
, c
);
4348 editor
->GetControl()->GetSize(&w2
, &h2
);
4351 if( w2
> w
) w
= w2
;
4352 if( h2
> h
) h
= h2
;
4357 // preserve (more or less) the previous position
4359 GetViewStart( &x
, &y
);
4361 // ensure the position is valid for the new scroll ranges
4363 x
= wxMax( w
- 1, 0 );
4365 y
= wxMax( h
- 1, 0 );
4367 // do set scrollbar parameters
4368 SetScrollbars( m_scrollLineX
, m_scrollLineY
,
4369 GetScrollX(w
), GetScrollY(h
), x
, y
,
4370 GetBatchCount() != 0);
4372 // if our OnSize() hadn't been called (it would if we have scrollbars), we
4373 // still must reposition the children
4378 void wxGrid::CalcWindowSizes()
4380 // escape if the window is has not been fully created yet
4382 if ( m_cornerLabelWin
== NULL
)
4386 GetClientSize( &cw
, &ch
);
4388 if ( m_cornerLabelWin
&& m_cornerLabelWin
->IsShown() )
4389 m_cornerLabelWin
->SetSize( 0, 0, m_rowLabelWidth
, m_colLabelHeight
);
4391 if ( m_colLabelWin
&& m_colLabelWin
->IsShown() )
4392 m_colLabelWin
->SetSize( m_rowLabelWidth
, 0, cw
-m_rowLabelWidth
, m_colLabelHeight
);
4394 if ( m_rowLabelWin
&& m_rowLabelWin
->IsShown() )
4395 m_rowLabelWin
->SetSize( 0, m_colLabelHeight
, m_rowLabelWidth
, ch
-m_colLabelHeight
);
4397 if ( m_gridWin
&& m_gridWin
->IsShown() )
4398 m_gridWin
->SetSize( m_rowLabelWidth
, m_colLabelHeight
, cw
-m_rowLabelWidth
, ch
-m_colLabelHeight
);
4402 // this is called when the grid table sends a message to say that it
4403 // has been redimensioned
4405 bool wxGrid::Redimension( wxGridTableMessage
& msg
)
4408 bool result
= false;
4410 // Clear the attribute cache as the attribute might refer to a different
4411 // cell than stored in the cache after adding/removing rows/columns.
4413 // By the same reasoning, the editor should be dismissed if columns are
4414 // added or removed. And for consistency, it should IMHO always be
4415 // removed, not only if the cell "underneath" it actually changes.
4416 // For now, I intentionally do not save the editor's content as the
4417 // cell it might want to save that stuff to might no longer exist.
4418 HideCellEditControl();
4420 // if we were using the default widths/heights so far, we must change them
4422 if ( m_colWidths
.IsEmpty() )
4427 if ( m_rowHeights
.IsEmpty() )
4433 switch ( msg
.GetId() )
4435 case wxGRIDTABLE_NOTIFY_ROWS_INSERTED
:
4437 size_t pos
= msg
.GetCommandInt();
4438 int numRows
= msg
.GetCommandInt2();
4440 m_numRows
+= numRows
;
4442 if ( !m_rowHeights
.IsEmpty() )
4444 m_rowHeights
.Insert( m_defaultRowHeight
, pos
, numRows
);
4445 m_rowBottoms
.Insert( 0, pos
, numRows
);
4448 if ( pos
> 0 ) bottom
= m_rowBottoms
[pos
-1];
4450 for ( i
= pos
; i
< m_numRows
; i
++ )
4452 bottom
+= m_rowHeights
[i
];
4453 m_rowBottoms
[i
] = bottom
;
4456 if ( m_currentCellCoords
== wxGridNoCellCoords
)
4458 // if we have just inserted cols into an empty grid the current
4459 // cell will be undefined...
4461 SetCurrentCell( 0, 0 );
4465 m_selection
->UpdateRows( pos
, numRows
);
4466 wxGridCellAttrProvider
* attrProvider
= m_table
->GetAttrProvider();
4468 attrProvider
->UpdateAttrRows( pos
, numRows
);
4470 if ( !GetBatchCount() )
4473 m_rowLabelWin
->Refresh();
4479 case wxGRIDTABLE_NOTIFY_ROWS_APPENDED
:
4481 int numRows
= msg
.GetCommandInt();
4482 int oldNumRows
= m_numRows
;
4483 m_numRows
+= numRows
;
4485 if ( !m_rowHeights
.IsEmpty() )
4487 m_rowHeights
.Add( m_defaultRowHeight
, numRows
);
4488 m_rowBottoms
.Add( 0, numRows
);
4491 if ( oldNumRows
> 0 ) bottom
= m_rowBottoms
[oldNumRows
-1];
4493 for ( i
= oldNumRows
; i
< m_numRows
; i
++ )
4495 bottom
+= m_rowHeights
[i
];
4496 m_rowBottoms
[i
] = bottom
;
4499 if ( m_currentCellCoords
== wxGridNoCellCoords
)
4501 // if we have just inserted cols into an empty grid the current
4502 // cell will be undefined...
4504 SetCurrentCell( 0, 0 );
4506 if ( !GetBatchCount() )
4509 m_rowLabelWin
->Refresh();
4515 case wxGRIDTABLE_NOTIFY_ROWS_DELETED
:
4517 size_t pos
= msg
.GetCommandInt();
4518 int numRows
= msg
.GetCommandInt2();
4519 m_numRows
-= numRows
;
4521 if ( !m_rowHeights
.IsEmpty() )
4523 m_rowHeights
.RemoveAt( pos
, numRows
);
4524 m_rowBottoms
.RemoveAt( pos
, numRows
);
4527 for ( i
= 0; i
< m_numRows
; i
++ )
4529 h
+= m_rowHeights
[i
];
4530 m_rowBottoms
[i
] = h
;
4535 m_currentCellCoords
= wxGridNoCellCoords
;
4539 if ( m_currentCellCoords
.GetRow() >= m_numRows
)
4540 m_currentCellCoords
.Set( 0, 0 );
4544 m_selection
->UpdateRows( pos
, -((int)numRows
) );
4545 wxGridCellAttrProvider
* attrProvider
= m_table
->GetAttrProvider();
4547 attrProvider
->UpdateAttrRows( pos
, -((int)numRows
) );
4548 // ifdef'd out following patch from Paul Gammans
4550 // No need to touch column attributes, unless we
4551 // removed _all_ rows, in this case, we remove
4552 // all column attributes.
4553 // I hate to do this here, but the
4554 // needed data is not available inside UpdateAttrRows.
4555 if ( !GetNumberRows() )
4556 attrProvider
->UpdateAttrCols( 0, -GetNumberCols() );
4559 if ( !GetBatchCount() )
4562 m_rowLabelWin
->Refresh();
4568 case wxGRIDTABLE_NOTIFY_COLS_INSERTED
:
4570 size_t pos
= msg
.GetCommandInt();
4571 int numCols
= msg
.GetCommandInt2();
4572 m_numCols
+= numCols
;
4574 if ( !m_colWidths
.IsEmpty() )
4576 m_colWidths
.Insert( m_defaultColWidth
, pos
, numCols
);
4577 m_colRights
.Insert( 0, pos
, numCols
);
4580 if ( pos
> 0 ) right
= m_colRights
[pos
-1];
4582 for ( i
= pos
; i
< m_numCols
; i
++ )
4584 right
+= m_colWidths
[i
];
4585 m_colRights
[i
] = right
;
4588 if ( m_currentCellCoords
== wxGridNoCellCoords
)
4590 // if we have just inserted cols into an empty grid the current
4591 // cell will be undefined...
4593 SetCurrentCell( 0, 0 );
4597 m_selection
->UpdateCols( pos
, numCols
);
4598 wxGridCellAttrProvider
* attrProvider
= m_table
->GetAttrProvider();
4600 attrProvider
->UpdateAttrCols( pos
, numCols
);
4601 if ( !GetBatchCount() )
4604 m_colLabelWin
->Refresh();
4611 case wxGRIDTABLE_NOTIFY_COLS_APPENDED
:
4613 int numCols
= msg
.GetCommandInt();
4614 int oldNumCols
= m_numCols
;
4615 m_numCols
+= numCols
;
4616 if ( !m_colWidths
.IsEmpty() )
4618 m_colWidths
.Add( m_defaultColWidth
, numCols
);
4619 m_colRights
.Add( 0, numCols
);
4622 if ( oldNumCols
> 0 ) right
= m_colRights
[oldNumCols
-1];
4624 for ( i
= oldNumCols
; i
< m_numCols
; i
++ )
4626 right
+= m_colWidths
[i
];
4627 m_colRights
[i
] = right
;
4630 if ( m_currentCellCoords
== wxGridNoCellCoords
)
4632 // if we have just inserted cols into an empty grid the current
4633 // cell will be undefined...
4635 SetCurrentCell( 0, 0 );
4637 if ( !GetBatchCount() )
4640 m_colLabelWin
->Refresh();
4646 case wxGRIDTABLE_NOTIFY_COLS_DELETED
:
4648 size_t pos
= msg
.GetCommandInt();
4649 int numCols
= msg
.GetCommandInt2();
4650 m_numCols
-= numCols
;
4652 if ( !m_colWidths
.IsEmpty() )
4654 m_colWidths
.RemoveAt( pos
, numCols
);
4655 m_colRights
.RemoveAt( pos
, numCols
);
4658 for ( i
= 0; i
< m_numCols
; i
++ )
4660 w
+= m_colWidths
[i
];
4666 m_currentCellCoords
= wxGridNoCellCoords
;
4670 if ( m_currentCellCoords
.GetCol() >= m_numCols
)
4671 m_currentCellCoords
.Set( 0, 0 );
4675 m_selection
->UpdateCols( pos
, -((int)numCols
) );
4676 wxGridCellAttrProvider
* attrProvider
= m_table
->GetAttrProvider();
4678 attrProvider
->UpdateAttrCols( pos
, -((int)numCols
) );
4679 // ifdef'd out following patch from Paul Gammans
4681 // No need to touch row attributes, unless we
4682 // removed _all_ columns, in this case, we remove
4683 // all row attributes.
4684 // I hate to do this here, but the
4685 // needed data is not available inside UpdateAttrCols.
4686 if ( !GetNumberCols() )
4687 attrProvider
->UpdateAttrRows( 0, -GetNumberRows() );
4690 if ( !GetBatchCount() )
4693 m_colLabelWin
->Refresh();
4700 if (result
&& !GetBatchCount() )
4701 m_gridWin
->Refresh();
4706 wxArrayInt
wxGrid::CalcRowLabelsExposed( const wxRegion
& reg
)
4708 wxRegionIterator
iter( reg
);
4711 wxArrayInt rowlabels
;
4718 // TODO: remove this when we can...
4719 // There is a bug in wxMotif that gives garbage update
4720 // rectangles if you jump-scroll a long way by clicking the
4721 // scrollbar with middle button. This is a work-around
4723 #if defined(__WXMOTIF__)
4725 m_gridWin
->GetClientSize( &cw
, &ch
);
4726 if ( r
.GetTop() > ch
) r
.SetTop( 0 );
4727 r
.SetBottom( wxMin( r
.GetBottom(), ch
) );
4730 // logical bounds of update region
4733 CalcUnscrolledPosition( 0, r
.GetTop(), &dummy
, &top
);
4734 CalcUnscrolledPosition( 0, r
.GetBottom(), &dummy
, &bottom
);
4736 // find the row labels within these bounds
4739 for ( row
= internalYToRow(top
); row
< m_numRows
; row
++ )
4741 if ( GetRowBottom(row
) < top
)
4744 if ( GetRowTop(row
) > bottom
)
4747 rowlabels
.Add( row
);
4757 wxArrayInt
wxGrid::CalcColLabelsExposed( const wxRegion
& reg
)
4759 wxRegionIterator
iter( reg
);
4762 wxArrayInt colLabels
;
4769 // TODO: remove this when we can...
4770 // There is a bug in wxMotif that gives garbage update
4771 // rectangles if you jump-scroll a long way by clicking the
4772 // scrollbar with middle button. This is a work-around
4774 #if defined(__WXMOTIF__)
4776 m_gridWin
->GetClientSize( &cw
, &ch
);
4777 if ( r
.GetLeft() > cw
) r
.SetLeft( 0 );
4778 r
.SetRight( wxMin( r
.GetRight(), cw
) );
4781 // logical bounds of update region
4784 CalcUnscrolledPosition( r
.GetLeft(), 0, &left
, &dummy
);
4785 CalcUnscrolledPosition( r
.GetRight(), 0, &right
, &dummy
);
4787 // find the cells within these bounds
4790 for ( col
= internalXToCol(left
); col
< m_numCols
; col
++ )
4792 if ( GetColRight(col
) < left
)
4795 if ( GetColLeft(col
) > right
)
4798 colLabels
.Add( col
);
4807 wxGridCellCoordsArray
wxGrid::CalcCellsExposed( const wxRegion
& reg
)
4809 wxRegionIterator
iter( reg
);
4812 wxGridCellCoordsArray cellsExposed
;
4814 int left
, top
, right
, bottom
;
4819 // TODO: remove this when we can...
4820 // There is a bug in wxMotif that gives garbage update
4821 // rectangles if you jump-scroll a long way by clicking the
4822 // scrollbar with middle button. This is a work-around
4824 #if defined(__WXMOTIF__)
4826 m_gridWin
->GetClientSize( &cw
, &ch
);
4827 if ( r
.GetTop() > ch
) r
.SetTop( 0 );
4828 if ( r
.GetLeft() > cw
) r
.SetLeft( 0 );
4829 r
.SetRight( wxMin( r
.GetRight(), cw
) );
4830 r
.SetBottom( wxMin( r
.GetBottom(), ch
) );
4833 // logical bounds of update region
4835 CalcUnscrolledPosition( r
.GetLeft(), r
.GetTop(), &left
, &top
);
4836 CalcUnscrolledPosition( r
.GetRight(), r
.GetBottom(), &right
, &bottom
);
4838 // find the cells within these bounds
4841 for ( row
= internalYToRow(top
); row
< m_numRows
; row
++ )
4843 if ( GetRowBottom(row
) <= top
)
4846 if ( GetRowTop(row
) > bottom
)
4849 for ( col
= internalXToCol(left
); col
< m_numCols
; col
++ )
4851 if ( GetColRight(col
) <= left
)
4854 if ( GetColLeft(col
) > right
)
4857 cellsExposed
.Add( wxGridCellCoords( row
, col
) );
4864 return cellsExposed
;
4868 void wxGrid::ProcessRowLabelMouseEvent( wxMouseEvent
& event
)
4871 wxPoint
pos( event
.GetPosition() );
4872 CalcUnscrolledPosition( pos
.x
, pos
.y
, &x
, &y
);
4874 if ( event
.Dragging() )
4878 m_isDragging
= true;
4879 m_rowLabelWin
->CaptureMouse();
4882 if ( event
.LeftIsDown() )
4884 switch( m_cursorMode
)
4886 case WXGRID_CURSOR_RESIZE_ROW
:
4888 int cw
, ch
, left
, dummy
;
4889 m_gridWin
->GetClientSize( &cw
, &ch
);
4890 CalcUnscrolledPosition( 0, 0, &left
, &dummy
);
4892 wxClientDC
dc( m_gridWin
);
4895 GetRowTop(m_dragRowOrCol
) +
4896 GetRowMinimalHeight(m_dragRowOrCol
) );
4897 dc
.SetLogicalFunction(wxINVERT
);
4898 if ( m_dragLastPos
>= 0 )
4900 dc
.DrawLine( left
, m_dragLastPos
, left
+cw
, m_dragLastPos
);
4902 dc
.DrawLine( left
, y
, left
+cw
, y
);
4907 case WXGRID_CURSOR_SELECT_ROW
:
4908 if ( (row
= YToRow( y
)) >= 0 )
4912 m_selection
->SelectRow( row
,
4913 event
.ControlDown(),
4920 // default label to suppress warnings about "enumeration value
4921 // 'xxx' not handled in switch
4929 if ( m_isDragging
&& (event
.Entering() || event
.Leaving()) )
4934 if (m_rowLabelWin
->HasCapture()) m_rowLabelWin
->ReleaseMouse();
4935 m_isDragging
= false;
4938 // ------------ Entering or leaving the window
4940 if ( event
.Entering() || event
.Leaving() )
4942 ChangeCursorMode(WXGRID_CURSOR_SELECT_CELL
, m_rowLabelWin
);
4946 // ------------ Left button pressed
4948 else if ( event
.LeftDown() )
4950 // don't send a label click event for a hit on the
4951 // edge of the row label - this is probably the user
4952 // wanting to resize the row
4954 if ( YToEdgeOfRow(y
) < 0 )
4958 !SendEvent( wxEVT_GRID_LABEL_LEFT_CLICK
, row
, -1, event
) )
4960 if ( !event
.ShiftDown() && !event
.ControlDown() )
4964 if ( event
.ShiftDown() )
4966 m_selection
->SelectBlock( m_currentCellCoords
.GetRow(),
4969 GetNumberCols() - 1,
4970 event
.ControlDown(),
4977 m_selection
->SelectRow( row
,
4978 event
.ControlDown(),
4985 ChangeCursorMode(WXGRID_CURSOR_SELECT_ROW
, m_rowLabelWin
);
4990 // starting to drag-resize a row
4992 if ( CanDragRowSize() )
4993 ChangeCursorMode(WXGRID_CURSOR_RESIZE_ROW
, m_rowLabelWin
);
4998 // ------------ Left double click
5000 else if (event
.LeftDClick() )
5002 int row
= YToEdgeOfRow(y
);
5007 !SendEvent( wxEVT_GRID_LABEL_LEFT_DCLICK
, row
, -1, event
) )
5009 // no default action at the moment
5014 // adjust row height depending on label text
5015 AutoSizeRowLabelSize( row
);
5017 ChangeCursorMode(WXGRID_CURSOR_SELECT_CELL
, m_colLabelWin
);
5023 // ------------ Left button released
5025 else if ( event
.LeftUp() )
5027 if ( m_cursorMode
== WXGRID_CURSOR_RESIZE_ROW
)
5029 DoEndDragResizeRow();
5031 // Note: we are ending the event *after* doing
5032 // default processing in this case
5034 SendEvent( wxEVT_GRID_ROW_SIZE
, m_dragRowOrCol
, -1, event
);
5037 ChangeCursorMode(WXGRID_CURSOR_SELECT_CELL
, m_rowLabelWin
);
5042 // ------------ Right button down
5044 else if ( event
.RightDown() )
5048 !SendEvent( wxEVT_GRID_LABEL_RIGHT_CLICK
, row
, -1, event
) )
5050 // no default action at the moment
5055 // ------------ Right double click
5057 else if ( event
.RightDClick() )
5061 !SendEvent( wxEVT_GRID_LABEL_RIGHT_DCLICK
, row
, -1, event
) )
5063 // no default action at the moment
5068 // ------------ No buttons down and mouse moving
5070 else if ( event
.Moving() )
5072 m_dragRowOrCol
= YToEdgeOfRow( y
);
5073 if ( m_dragRowOrCol
>= 0 )
5075 if ( m_cursorMode
== WXGRID_CURSOR_SELECT_CELL
)
5077 // don't capture the mouse yet
5078 if ( CanDragRowSize() )
5079 ChangeCursorMode(WXGRID_CURSOR_RESIZE_ROW
, m_rowLabelWin
, false);
5082 else if ( m_cursorMode
!= WXGRID_CURSOR_SELECT_CELL
)
5084 ChangeCursorMode(WXGRID_CURSOR_SELECT_CELL
, m_rowLabelWin
, false);
5090 void wxGrid::ProcessColLabelMouseEvent( wxMouseEvent
& event
)
5093 wxPoint
pos( event
.GetPosition() );
5094 CalcUnscrolledPosition( pos
.x
, pos
.y
, &x
, &y
);
5096 if ( event
.Dragging() )
5100 m_isDragging
= true;
5101 m_colLabelWin
->CaptureMouse();
5104 if ( event
.LeftIsDown() )
5106 switch( m_cursorMode
)
5108 case WXGRID_CURSOR_RESIZE_COL
:
5110 int cw
, ch
, dummy
, top
;
5111 m_gridWin
->GetClientSize( &cw
, &ch
);
5112 CalcUnscrolledPosition( 0, 0, &dummy
, &top
);
5114 wxClientDC
dc( m_gridWin
);
5117 x
= wxMax( x
, GetColLeft(m_dragRowOrCol
) +
5118 GetColMinimalWidth(m_dragRowOrCol
));
5119 dc
.SetLogicalFunction(wxINVERT
);
5120 if ( m_dragLastPos
>= 0 )
5122 dc
.DrawLine( m_dragLastPos
, top
, m_dragLastPos
, top
+ch
);
5124 dc
.DrawLine( x
, top
, x
, top
+ch
);
5129 case WXGRID_CURSOR_SELECT_COL
:
5130 if ( (col
= XToCol( x
)) >= 0 )
5134 m_selection
->SelectCol( col
,
5135 event
.ControlDown(),
5142 // default label to suppress warnings about "enumeration value
5143 // 'xxx' not handled in switch
5151 if ( m_isDragging
&& (event
.Entering() || event
.Leaving()) )
5156 if (m_colLabelWin
->HasCapture()) m_colLabelWin
->ReleaseMouse();
5157 m_isDragging
= false;
5160 // ------------ Entering or leaving the window
5162 if ( event
.Entering() || event
.Leaving() )
5164 ChangeCursorMode(WXGRID_CURSOR_SELECT_CELL
, m_colLabelWin
);
5168 // ------------ Left button pressed
5170 else if ( event
.LeftDown() )
5172 // don't send a label click event for a hit on the
5173 // edge of the col label - this is probably the user
5174 // wanting to resize the col
5176 if ( XToEdgeOfCol(x
) < 0 )
5180 !SendEvent( wxEVT_GRID_LABEL_LEFT_CLICK
, -1, col
, event
) )
5182 if ( !event
.ShiftDown() && !event
.ControlDown() )
5186 if ( event
.ShiftDown() )
5188 m_selection
->SelectBlock( 0,
5189 m_currentCellCoords
.GetCol(),
5190 GetNumberRows() - 1, col
,
5191 event
.ControlDown(),
5198 m_selection
->SelectCol( col
,
5199 event
.ControlDown(),
5206 ChangeCursorMode(WXGRID_CURSOR_SELECT_COL
, m_colLabelWin
);
5211 // starting to drag-resize a col
5213 if ( CanDragColSize() )
5214 ChangeCursorMode(WXGRID_CURSOR_RESIZE_COL
, m_colLabelWin
);
5219 // ------------ Left double click
5221 if ( event
.LeftDClick() )
5223 int col
= XToEdgeOfCol(x
);
5228 ! SendEvent( wxEVT_GRID_LABEL_LEFT_DCLICK
, -1, col
, event
) )
5230 // no default action at the moment
5235 // adjust column width depending on label text
5236 AutoSizeColLabelSize( col
);
5238 ChangeCursorMode(WXGRID_CURSOR_SELECT_CELL
, m_colLabelWin
);
5244 // ------------ Left button released
5246 else if ( event
.LeftUp() )
5248 if ( m_cursorMode
== WXGRID_CURSOR_RESIZE_COL
)
5250 DoEndDragResizeCol();
5252 // Note: we are ending the event *after* doing
5253 // default processing in this case
5255 SendEvent( wxEVT_GRID_COL_SIZE
, -1, m_dragRowOrCol
, event
);
5258 ChangeCursorMode(WXGRID_CURSOR_SELECT_CELL
, m_colLabelWin
);
5263 // ------------ Right button down
5265 else if ( event
.RightDown() )
5269 !SendEvent( wxEVT_GRID_LABEL_RIGHT_CLICK
, -1, col
, event
) )
5271 // no default action at the moment
5276 // ------------ Right double click
5278 else if ( event
.RightDClick() )
5282 !SendEvent( wxEVT_GRID_LABEL_RIGHT_DCLICK
, -1, col
, event
) )
5284 // no default action at the moment
5289 // ------------ No buttons down and mouse moving
5291 else if ( event
.Moving() )
5293 m_dragRowOrCol
= XToEdgeOfCol( x
);
5294 if ( m_dragRowOrCol
>= 0 )
5296 if ( m_cursorMode
== WXGRID_CURSOR_SELECT_CELL
)
5298 // don't capture the cursor yet
5299 if ( CanDragColSize() )
5300 ChangeCursorMode(WXGRID_CURSOR_RESIZE_COL
, m_colLabelWin
, false);
5303 else if ( m_cursorMode
!= WXGRID_CURSOR_SELECT_CELL
)
5305 ChangeCursorMode(WXGRID_CURSOR_SELECT_CELL
, m_colLabelWin
, false);
5311 void wxGrid::ProcessCornerLabelMouseEvent( wxMouseEvent
& event
)
5313 if ( event
.LeftDown() )
5315 // indicate corner label by having both row and
5318 if ( !SendEvent( wxEVT_GRID_LABEL_LEFT_CLICK
, -1, -1, event
) )
5324 else if ( event
.LeftDClick() )
5326 SendEvent( wxEVT_GRID_LABEL_LEFT_DCLICK
, -1, -1, event
);
5329 else if ( event
.RightDown() )
5331 if ( !SendEvent( wxEVT_GRID_LABEL_RIGHT_CLICK
, -1, -1, event
) )
5333 // no default action at the moment
5337 else if ( event
.RightDClick() )
5339 if ( !SendEvent( wxEVT_GRID_LABEL_RIGHT_DCLICK
, -1, -1, event
) )
5341 // no default action at the moment
5346 void wxGrid::ChangeCursorMode(CursorMode mode
,
5351 static const wxChar
*cursorModes
[] =
5360 wxLogTrace(_T("grid"),
5361 _T("wxGrid cursor mode (mouse capture for %s): %s -> %s"),
5362 win
== m_colLabelWin
? _T("colLabelWin")
5363 : win
? _T("rowLabelWin")
5365 cursorModes
[m_cursorMode
], cursorModes
[mode
]);
5366 #endif // __WXDEBUG__
5368 if ( mode
== m_cursorMode
&&
5369 win
== m_winCapture
&&
5370 captureMouse
== (m_winCapture
!= NULL
))
5375 // by default use the grid itself
5381 if (m_winCapture
->HasCapture()) m_winCapture
->ReleaseMouse();
5382 m_winCapture
= (wxWindow
*)NULL
;
5385 m_cursorMode
= mode
;
5387 switch ( m_cursorMode
)
5389 case WXGRID_CURSOR_RESIZE_ROW
:
5390 win
->SetCursor( m_rowResizeCursor
);
5393 case WXGRID_CURSOR_RESIZE_COL
:
5394 win
->SetCursor( m_colResizeCursor
);
5398 win
->SetCursor( *wxSTANDARD_CURSOR
);
5401 // we need to capture mouse when resizing
5402 bool resize
= m_cursorMode
== WXGRID_CURSOR_RESIZE_ROW
||
5403 m_cursorMode
== WXGRID_CURSOR_RESIZE_COL
;
5405 if ( captureMouse
&& resize
)
5407 win
->CaptureMouse();
5412 void wxGrid::ProcessGridCellMouseEvent( wxMouseEvent
& event
)
5415 wxPoint
pos( event
.GetPosition() );
5416 CalcUnscrolledPosition( pos
.x
, pos
.y
, &x
, &y
);
5418 wxGridCellCoords coords
;
5419 XYToCell( x
, y
, coords
);
5421 int cell_rows
, cell_cols
;
5422 bool isFirstDrag
= !m_isDragging
;
5423 GetCellSize( coords
.GetRow(), coords
.GetCol(), &cell_rows
, &cell_cols
);
5424 if ((cell_rows
< 0) || (cell_cols
< 0))
5426 coords
.SetRow(coords
.GetRow() + cell_rows
);
5427 coords
.SetCol(coords
.GetCol() + cell_cols
);
5430 if ( event
.Dragging() )
5432 //wxLogDebug("pos(%d, %d) coords(%d, %d)", pos.x, pos.y, coords.GetRow(), coords.GetCol());
5434 // Don't start doing anything until the mouse has been drug at
5435 // least 3 pixels in any direction...
5438 if (m_startDragPos
== wxDefaultPosition
)
5440 m_startDragPos
= pos
;
5443 if (abs(m_startDragPos
.x
- pos
.x
) < 4 && abs(m_startDragPos
.y
- pos
.y
) < 4)
5447 m_isDragging
= true;
5448 if ( m_cursorMode
== WXGRID_CURSOR_SELECT_CELL
)
5450 // Hide the edit control, so it
5451 // won't interfer with drag-shrinking.
5452 if ( IsCellEditControlShown() )
5454 HideCellEditControl();
5455 SaveEditControlValue();
5458 // Have we captured the mouse yet?
5461 m_winCapture
= m_gridWin
;
5462 m_winCapture
->CaptureMouse();
5465 if ( coords
!= wxGridNoCellCoords
)
5467 if ( event
.ControlDown() )
5469 if ( m_selectingKeyboard
== wxGridNoCellCoords
)
5470 m_selectingKeyboard
= coords
;
5471 HighlightBlock ( m_selectingKeyboard
, coords
);
5473 else if ( CanDragCell() )
5477 if ( m_selectingKeyboard
== wxGridNoCellCoords
)
5478 m_selectingKeyboard
= coords
;
5480 SendEvent( wxEVT_GRID_CELL_BEGIN_DRAG
,
5488 if ( !IsSelection() )
5490 HighlightBlock( coords
, coords
);
5494 HighlightBlock( m_currentCellCoords
, coords
);
5498 if (! IsVisible(coords
))
5500 MakeCellVisible(coords
);
5501 // TODO: need to introduce a delay or something here. The
5502 // scrolling is way to fast, at least on MSW - also on GTK.
5506 else if ( m_cursorMode
== WXGRID_CURSOR_RESIZE_ROW
)
5508 int cw
, ch
, left
, dummy
;
5509 m_gridWin
->GetClientSize( &cw
, &ch
);
5510 CalcUnscrolledPosition( 0, 0, &left
, &dummy
);
5512 wxClientDC
dc( m_gridWin
);
5514 y
= wxMax( y
, GetRowTop(m_dragRowOrCol
) +
5515 GetRowMinimalHeight(m_dragRowOrCol
) );
5516 dc
.SetLogicalFunction(wxINVERT
);
5517 if ( m_dragLastPos
>= 0 )
5519 dc
.DrawLine( left
, m_dragLastPos
, left
+cw
, m_dragLastPos
);
5521 dc
.DrawLine( left
, y
, left
+cw
, y
);
5524 else if ( m_cursorMode
== WXGRID_CURSOR_RESIZE_COL
)
5526 int cw
, ch
, dummy
, top
;
5527 m_gridWin
->GetClientSize( &cw
, &ch
);
5528 CalcUnscrolledPosition( 0, 0, &dummy
, &top
);
5530 wxClientDC
dc( m_gridWin
);
5532 x
= wxMax( x
, GetColLeft(m_dragRowOrCol
) +
5533 GetColMinimalWidth(m_dragRowOrCol
) );
5534 dc
.SetLogicalFunction(wxINVERT
);
5535 if ( m_dragLastPos
>= 0 )
5537 dc
.DrawLine( m_dragLastPos
, top
, m_dragLastPos
, top
+ch
);
5539 dc
.DrawLine( x
, top
, x
, top
+ch
);
5546 m_isDragging
= false;
5547 m_startDragPos
= wxDefaultPosition
;
5549 // VZ: if we do this, the mode is reset to WXGRID_CURSOR_SELECT_CELL
5550 // immediately after it becomes WXGRID_CURSOR_RESIZE_ROW/COL under
5553 if ( event
.Entering() || event
.Leaving() )
5555 ChangeCursorMode(WXGRID_CURSOR_SELECT_CELL
);
5556 m_gridWin
->SetCursor( *wxSTANDARD_CURSOR
);
5561 // ------------ Left button pressed
5563 if ( event
.LeftDown() && coords
!= wxGridNoCellCoords
)
5565 if ( !SendEvent( wxEVT_GRID_CELL_LEFT_CLICK
,
5570 if ( !event
.ControlDown() )
5572 if ( event
.ShiftDown() )
5576 m_selection
->SelectBlock( m_currentCellCoords
.GetRow(),
5577 m_currentCellCoords
.GetCol(),
5580 event
.ControlDown(),
5586 else if ( XToEdgeOfCol(x
) < 0 &&
5587 YToEdgeOfRow(y
) < 0 )
5589 DisableCellEditControl();
5590 MakeCellVisible( coords
);
5592 if ( event
.ControlDown() )
5596 m_selection
->ToggleCellSelection( coords
.GetRow(),
5598 event
.ControlDown(),
5603 m_selectingTopLeft
= wxGridNoCellCoords
;
5604 m_selectingBottomRight
= wxGridNoCellCoords
;
5605 m_selectingKeyboard
= coords
;
5609 m_waitForSlowClick
= m_currentCellCoords
== coords
&& coords
!= wxGridNoCellCoords
;
5610 SetCurrentCell( coords
);
5613 if ( m_selection
->GetSelectionMode() !=
5614 wxGrid::wxGridSelectCells
)
5616 HighlightBlock( coords
, coords
);
5625 // ------------ Left double click
5627 else if ( event
.LeftDClick() && coords
!= wxGridNoCellCoords
)
5629 DisableCellEditControl();
5631 if ( XToEdgeOfCol(x
) < 0 && YToEdgeOfRow(y
) < 0 )
5633 if ( !SendEvent( wxEVT_GRID_CELL_LEFT_DCLICK
,
5638 // we want double click to select a cell and start editing
5639 // (i.e. to behave in same way as sequence of two slow clicks):
5640 m_waitForSlowClick
= true;
5647 // ------------ Left button released
5649 else if ( event
.LeftUp() )
5651 if ( m_cursorMode
== WXGRID_CURSOR_SELECT_CELL
)
5655 if (m_winCapture
->HasCapture()) m_winCapture
->ReleaseMouse();
5656 m_winCapture
= NULL
;
5659 if ( coords
== m_currentCellCoords
&& m_waitForSlowClick
&& CanEnableCellControl())
5662 EnableCellEditControl();
5664 wxGridCellAttr
* attr
= GetCellAttr(coords
);
5665 wxGridCellEditor
*editor
= attr
->GetEditor(this, coords
.GetRow(), coords
.GetCol());
5666 editor
->StartingClick();
5670 m_waitForSlowClick
= false;
5672 else if ( m_selectingTopLeft
!= wxGridNoCellCoords
&&
5673 m_selectingBottomRight
!= wxGridNoCellCoords
)
5677 m_selection
->SelectBlock( m_selectingTopLeft
.GetRow(),
5678 m_selectingTopLeft
.GetCol(),
5679 m_selectingBottomRight
.GetRow(),
5680 m_selectingBottomRight
.GetCol(),
5681 event
.ControlDown(),
5687 m_selectingTopLeft
= wxGridNoCellCoords
;
5688 m_selectingBottomRight
= wxGridNoCellCoords
;
5690 // Show the edit control, if it has been hidden for
5692 ShowCellEditControl();
5695 else if ( m_cursorMode
== WXGRID_CURSOR_RESIZE_ROW
)
5697 ChangeCursorMode(WXGRID_CURSOR_SELECT_CELL
);
5698 DoEndDragResizeRow();
5700 // Note: we are ending the event *after* doing
5701 // default processing in this case
5703 SendEvent( wxEVT_GRID_ROW_SIZE
, m_dragRowOrCol
, -1, event
);
5705 else if ( m_cursorMode
== WXGRID_CURSOR_RESIZE_COL
)
5707 ChangeCursorMode(WXGRID_CURSOR_SELECT_CELL
);
5708 DoEndDragResizeCol();
5710 // Note: we are ending the event *after* doing
5711 // default processing in this case
5713 SendEvent( wxEVT_GRID_COL_SIZE
, -1, m_dragRowOrCol
, event
);
5720 // ------------ Right button down
5722 else if ( event
.RightDown() && coords
!= wxGridNoCellCoords
)
5724 DisableCellEditControl();
5725 if ( !SendEvent( wxEVT_GRID_CELL_RIGHT_CLICK
,
5730 // no default action at the moment
5735 // ------------ Right double click
5737 else if ( event
.RightDClick() && coords
!= wxGridNoCellCoords
)
5739 DisableCellEditControl();
5740 if ( !SendEvent( wxEVT_GRID_CELL_RIGHT_DCLICK
,
5745 // no default action at the moment
5749 // ------------ Moving and no button action
5751 else if ( event
.Moving() && !event
.IsButton() )
5753 if( coords
.GetRow() < 0 || coords
.GetCol() < 0 )
5755 // out of grid cell area
5756 ChangeCursorMode(WXGRID_CURSOR_SELECT_CELL
);
5760 int dragRow
= YToEdgeOfRow( y
);
5761 int dragCol
= XToEdgeOfCol( x
);
5763 // Dragging on the corner of a cell to resize in both
5764 // directions is not implemented yet...
5766 if ( dragRow
>= 0 && dragCol
>= 0 )
5768 ChangeCursorMode(WXGRID_CURSOR_SELECT_CELL
);
5774 m_dragRowOrCol
= dragRow
;
5776 if ( m_cursorMode
== WXGRID_CURSOR_SELECT_CELL
)
5778 if ( CanDragRowSize() && CanDragGridSize() )
5779 ChangeCursorMode(WXGRID_CURSOR_RESIZE_ROW
);
5784 m_dragRowOrCol
= dragCol
;
5792 m_dragRowOrCol
= dragCol
;
5794 if ( m_cursorMode
== WXGRID_CURSOR_SELECT_CELL
)
5796 if ( CanDragColSize() && CanDragGridSize() )
5797 ChangeCursorMode(WXGRID_CURSOR_RESIZE_COL
);
5803 // Neither on a row or col edge
5805 if ( m_cursorMode
!= WXGRID_CURSOR_SELECT_CELL
)
5807 ChangeCursorMode(WXGRID_CURSOR_SELECT_CELL
);
5813 void wxGrid::DoEndDragResizeRow()
5815 if ( m_dragLastPos
>= 0 )
5817 // erase the last line and resize the row
5819 int cw
, ch
, left
, dummy
;
5820 m_gridWin
->GetClientSize( &cw
, &ch
);
5821 CalcUnscrolledPosition( 0, 0, &left
, &dummy
);
5823 wxClientDC
dc( m_gridWin
);
5825 dc
.SetLogicalFunction( wxINVERT
);
5826 dc
.DrawLine( left
, m_dragLastPos
, left
+cw
, m_dragLastPos
);
5827 HideCellEditControl();
5828 SaveEditControlValue();
5830 int rowTop
= GetRowTop(m_dragRowOrCol
);
5831 SetRowSize( m_dragRowOrCol
,
5832 wxMax( m_dragLastPos
- rowTop
, m_minAcceptableRowHeight
) );
5834 if ( !GetBatchCount() )
5836 // Only needed to get the correct rect.y:
5837 wxRect
rect ( CellToRect( m_dragRowOrCol
, 0 ) );
5839 CalcScrolledPosition(0, rect
.y
, &dummy
, &rect
.y
);
5840 rect
.width
= m_rowLabelWidth
;
5841 rect
.height
= ch
- rect
.y
;
5842 m_rowLabelWin
->Refresh( true, &rect
);
5844 // if there is a multicell block, paint all of it
5847 int i
, cell_rows
, cell_cols
, subtract_rows
= 0;
5848 int leftCol
= XToCol(left
);
5849 int rightCol
= internalXToCol(left
+cw
);
5852 for (i
=leftCol
; i
<rightCol
; i
++)
5854 GetCellSize(m_dragRowOrCol
, i
, &cell_rows
, &cell_cols
);
5855 if (cell_rows
< subtract_rows
)
5856 subtract_rows
= cell_rows
;
5858 rect
.y
= GetRowTop(m_dragRowOrCol
+ subtract_rows
);
5859 CalcScrolledPosition(0, rect
.y
, &dummy
, &rect
.y
);
5860 rect
.height
= ch
- rect
.y
;
5863 m_gridWin
->Refresh( false, &rect
);
5866 ShowCellEditControl();
5871 void wxGrid::DoEndDragResizeCol()
5873 if ( m_dragLastPos
>= 0 )
5875 // erase the last line and resize the col
5877 int cw
, ch
, dummy
, top
;
5878 m_gridWin
->GetClientSize( &cw
, &ch
);
5879 CalcUnscrolledPosition( 0, 0, &dummy
, &top
);
5881 wxClientDC
dc( m_gridWin
);
5883 dc
.SetLogicalFunction( wxINVERT
);
5884 dc
.DrawLine( m_dragLastPos
, top
, m_dragLastPos
, top
+ch
);
5885 HideCellEditControl();
5886 SaveEditControlValue();
5888 int colLeft
= GetColLeft(m_dragRowOrCol
);
5889 SetColSize( m_dragRowOrCol
,
5890 wxMax( m_dragLastPos
- colLeft
,
5891 GetColMinimalWidth(m_dragRowOrCol
) ) );
5893 if ( !GetBatchCount() )
5895 // Only needed to get the correct rect.x:
5896 wxRect
rect ( CellToRect( 0, m_dragRowOrCol
) );
5898 CalcScrolledPosition(rect
.x
, 0, &rect
.x
, &dummy
);
5899 rect
.width
= cw
- rect
.x
;
5900 rect
.height
= m_colLabelHeight
;
5901 m_colLabelWin
->Refresh( true, &rect
);
5903 // if there is a multicell block, paint all of it
5906 int i
, cell_rows
, cell_cols
, subtract_cols
= 0;
5907 int topRow
= YToRow(top
);
5908 int bottomRow
= internalYToRow(top
+cw
);
5911 for (i
=topRow
; i
<bottomRow
; i
++)
5913 GetCellSize(i
, m_dragRowOrCol
, &cell_rows
, &cell_cols
);
5914 if (cell_cols
< subtract_cols
)
5915 subtract_cols
= cell_cols
;
5917 rect
.x
= GetColLeft(m_dragRowOrCol
+ subtract_cols
);
5918 CalcScrolledPosition(rect
.x
, 0, &rect
.x
, &dummy
);
5919 rect
.width
= cw
- rect
.x
;
5922 m_gridWin
->Refresh( false, &rect
);
5925 ShowCellEditControl();
5932 // ------ interaction with data model
5934 bool wxGrid::ProcessTableMessage( wxGridTableMessage
& msg
)
5936 switch ( msg
.GetId() )
5938 case wxGRIDTABLE_REQUEST_VIEW_GET_VALUES
:
5939 return GetModelValues();
5941 case wxGRIDTABLE_REQUEST_VIEW_SEND_VALUES
:
5942 return SetModelValues();
5944 case wxGRIDTABLE_NOTIFY_ROWS_INSERTED
:
5945 case wxGRIDTABLE_NOTIFY_ROWS_APPENDED
:
5946 case wxGRIDTABLE_NOTIFY_ROWS_DELETED
:
5947 case wxGRIDTABLE_NOTIFY_COLS_INSERTED
:
5948 case wxGRIDTABLE_NOTIFY_COLS_APPENDED
:
5949 case wxGRIDTABLE_NOTIFY_COLS_DELETED
:
5950 return Redimension( msg
);
5959 // The behaviour of this function depends on the grid table class
5960 // Clear() function. For the default wxGridStringTable class the
5961 // behavious is to replace all cell contents with wxEmptyString but
5962 // not to change the number of rows or cols.
5964 void wxGrid::ClearGrid()
5968 if (IsCellEditControlEnabled())
5969 DisableCellEditControl();
5972 if ( !GetBatchCount() ) m_gridWin
->Refresh();
5977 bool wxGrid::InsertRows( int pos
, int numRows
, bool WXUNUSED(updateLabels
) )
5979 // TODO: something with updateLabels flag
5983 wxFAIL_MSG( wxT("Called wxGrid::InsertRows() before calling CreateGrid()") );
5989 if (IsCellEditControlEnabled())
5990 DisableCellEditControl();
5992 bool done
= m_table
->InsertRows( pos
, numRows
);
5995 // the table will have sent the results of the insert row
5996 // operation to this view object as a grid table message
6002 bool wxGrid::AppendRows( int numRows
, bool WXUNUSED(updateLabels
) )
6004 // TODO: something with updateLabels flag
6008 wxFAIL_MSG( wxT("Called wxGrid::AppendRows() before calling CreateGrid()") );
6014 bool done
= m_table
&& m_table
->AppendRows( numRows
);
6016 // the table will have sent the results of the append row
6017 // operation to this view object as a grid table message
6023 bool wxGrid::DeleteRows( int pos
, int numRows
, bool WXUNUSED(updateLabels
) )
6025 // TODO: something with updateLabels flag
6029 wxFAIL_MSG( wxT("Called wxGrid::DeleteRows() before calling CreateGrid()") );
6035 if (IsCellEditControlEnabled())
6036 DisableCellEditControl();
6038 bool done
= m_table
->DeleteRows( pos
, numRows
);
6040 // the table will have sent the results of the delete row
6041 // operation to this view object as a grid table message
6047 bool wxGrid::InsertCols( int pos
, int numCols
, bool WXUNUSED(updateLabels
) )
6049 // TODO: something with updateLabels flag
6053 wxFAIL_MSG( wxT("Called wxGrid::InsertCols() before calling CreateGrid()") );
6059 if (IsCellEditControlEnabled())
6060 DisableCellEditControl();
6062 bool done
= m_table
->InsertCols( pos
, numCols
);
6064 // the table will have sent the results of the insert col
6065 // operation to this view object as a grid table message
6071 bool wxGrid::AppendCols( int numCols
, bool WXUNUSED(updateLabels
) )
6073 // TODO: something with updateLabels flag
6077 wxFAIL_MSG( wxT("Called wxGrid::AppendCols() before calling CreateGrid()") );
6083 bool done
= m_table
->AppendCols( numCols
);
6085 // the table will have sent the results of the append col
6086 // operation to this view object as a grid table message
6092 bool wxGrid::DeleteCols( int pos
, int numCols
, bool WXUNUSED(updateLabels
) )
6094 // TODO: something with updateLabels flag
6098 wxFAIL_MSG( wxT("Called wxGrid::DeleteCols() before calling CreateGrid()") );
6104 if (IsCellEditControlEnabled())
6105 DisableCellEditControl();
6107 bool done
= m_table
->DeleteCols( pos
, numCols
);
6109 // the table will have sent the results of the delete col
6110 // operation to this view object as a grid table message
6118 // ----- event handlers
6121 // Generate a grid event based on a mouse event and
6122 // return the result of ProcessEvent()
6124 int wxGrid::SendEvent( const wxEventType type
,
6126 wxMouseEvent
& mouseEv
)
6131 if ( type
== wxEVT_GRID_ROW_SIZE
|| type
== wxEVT_GRID_COL_SIZE
)
6133 int rowOrCol
= (row
== -1 ? col
: row
);
6135 wxGridSizeEvent
gridEvt( GetId(),
6139 mouseEv
.GetX() + GetRowLabelSize(),
6140 mouseEv
.GetY() + GetColLabelSize(),
6141 mouseEv
.ControlDown(),
6142 mouseEv
.ShiftDown(),
6144 mouseEv
.MetaDown() );
6146 claimed
= GetEventHandler()->ProcessEvent(gridEvt
);
6147 vetoed
= !gridEvt
.IsAllowed();
6149 else if ( type
== wxEVT_GRID_RANGE_SELECT
)
6151 // Right now, it should _never_ end up here!
6152 wxGridRangeSelectEvent
gridEvt( GetId(),
6156 m_selectingBottomRight
,
6158 mouseEv
.ControlDown(),
6159 mouseEv
.ShiftDown(),
6161 mouseEv
.MetaDown() );
6163 claimed
= GetEventHandler()->ProcessEvent(gridEvt
);
6164 vetoed
= !gridEvt
.IsAllowed();
6168 wxGridEvent
gridEvt( GetId(),
6172 mouseEv
.GetX() + GetRowLabelSize(),
6173 mouseEv
.GetY() + GetColLabelSize(),
6175 mouseEv
.ControlDown(),
6176 mouseEv
.ShiftDown(),
6178 mouseEv
.MetaDown() );
6179 claimed
= GetEventHandler()->ProcessEvent(gridEvt
);
6180 vetoed
= !gridEvt
.IsAllowed();
6183 // A Veto'd event may not be `claimed' so test this first
6184 if (vetoed
) return -1;
6185 return claimed
? 1 : 0;
6189 // Generate a grid event of specified type and return the result
6190 // of ProcessEvent().
6192 int wxGrid::SendEvent( const wxEventType type
,
6198 if ( type
== wxEVT_GRID_ROW_SIZE
|| type
== wxEVT_GRID_COL_SIZE
)
6200 int rowOrCol
= (row
== -1 ? col
: row
);
6202 wxGridSizeEvent
gridEvt( GetId(),
6207 claimed
= GetEventHandler()->ProcessEvent(gridEvt
);
6208 vetoed
= !gridEvt
.IsAllowed();
6212 wxGridEvent
gridEvt( GetId(),
6217 claimed
= GetEventHandler()->ProcessEvent(gridEvt
);
6218 vetoed
= !gridEvt
.IsAllowed();
6221 // A Veto'd event may not be `claimed' so test this first
6222 if (vetoed
) return -1;
6223 return claimed
? 1 : 0;
6227 void wxGrid::OnPaint( wxPaintEvent
& WXUNUSED(event
) )
6229 wxPaintDC
dc(this); // needed to prevent zillions of paint events on MSW
6232 void wxGrid::Refresh(bool eraseb
, const wxRect
* rect
)
6234 // Don't do anything if between Begin/EndBatch...
6235 // EndBatch() will do all this on the last nested one anyway.
6236 if (! GetBatchCount())
6238 // Refresh to get correct scrolled position:
6239 wxScrolledWindow::Refresh(eraseb
,rect
);
6243 int rect_x
, rect_y
, rectWidth
, rectHeight
;
6244 int width_label
, width_cell
, height_label
, height_cell
;
6247 //Copy rectangle can get scroll offsets..
6248 rect_x
= rect
->GetX();
6249 rect_y
= rect
->GetY();
6250 rectWidth
= rect
->GetWidth();
6251 rectHeight
= rect
->GetHeight();
6253 width_label
= m_rowLabelWidth
- rect_x
;
6254 if (width_label
> rectWidth
) width_label
= rectWidth
;
6256 height_label
= m_colLabelHeight
- rect_y
;
6257 if (height_label
> rectHeight
) height_label
= rectHeight
;
6259 if (rect_x
> m_rowLabelWidth
)
6261 x
= rect_x
- m_rowLabelWidth
;
6262 width_cell
= rectWidth
;
6267 width_cell
= rectWidth
- (m_rowLabelWidth
- rect_x
);
6270 if (rect_y
> m_colLabelHeight
)
6272 y
= rect_y
- m_colLabelHeight
;
6273 height_cell
= rectHeight
;
6278 height_cell
= rectHeight
- (m_colLabelHeight
- rect_y
);
6281 // Paint corner label part intersecting rect.
6282 if ( width_label
> 0 && height_label
> 0 )
6284 wxRect
anotherrect(rect_x
, rect_y
, width_label
, height_label
);
6285 m_cornerLabelWin
->Refresh(eraseb
, &anotherrect
);
6288 // Paint col labels part intersecting rect.
6289 if ( width_cell
> 0 && height_label
> 0 )
6291 wxRect
anotherrect(x
, rect_y
, width_cell
, height_label
);
6292 m_colLabelWin
->Refresh(eraseb
, &anotherrect
);
6295 // Paint row labels part intersecting rect.
6296 if ( width_label
> 0 && height_cell
> 0 )
6298 wxRect
anotherrect(rect_x
, y
, width_label
, height_cell
);
6299 m_rowLabelWin
->Refresh(eraseb
, &anotherrect
);
6302 // Paint cell area part intersecting rect.
6303 if ( width_cell
> 0 && height_cell
> 0 )
6305 wxRect
anotherrect(x
, y
, width_cell
, height_cell
);
6306 m_gridWin
->Refresh(eraseb
, &anotherrect
);
6311 m_cornerLabelWin
->Refresh(eraseb
, NULL
);
6312 m_colLabelWin
->Refresh(eraseb
, NULL
);
6313 m_rowLabelWin
->Refresh(eraseb
, NULL
);
6314 m_gridWin
->Refresh(eraseb
, NULL
);
6319 void wxGrid::OnSize( wxSizeEvent
& event
)
6321 // position the child windows
6324 // don't call CalcDimensions() from here, the base class handles the size
6330 void wxGrid::OnKeyDown( wxKeyEvent
& event
)
6332 if ( m_inOnKeyDown
)
6334 // shouldn't be here - we are going round in circles...
6336 wxFAIL_MSG( wxT("wxGrid::OnKeyDown called while already active") );
6339 m_inOnKeyDown
= true;
6341 // propagate the event up and see if it gets processed
6343 wxWindow
*parent
= GetParent();
6344 wxKeyEvent
keyEvt( event
);
6345 keyEvt
.SetEventObject( parent
);
6347 if ( !parent
->GetEventHandler()->ProcessEvent( keyEvt
) )
6350 // try local handlers
6352 switch ( event
.GetKeyCode() )
6355 if ( event
.ControlDown() )
6357 MoveCursorUpBlock( event
.ShiftDown() );
6361 MoveCursorUp( event
.ShiftDown() );
6366 if ( event
.ControlDown() )
6368 MoveCursorDownBlock( event
.ShiftDown() );
6372 MoveCursorDown( event
.ShiftDown() );
6377 if ( event
.ControlDown() )
6379 MoveCursorLeftBlock( event
.ShiftDown() );
6383 MoveCursorLeft( event
.ShiftDown() );
6388 if ( event
.ControlDown() )
6390 MoveCursorRightBlock( event
.ShiftDown() );
6394 MoveCursorRight( event
.ShiftDown() );
6399 case WXK_NUMPAD_ENTER
:
6400 if ( event
.ControlDown() )
6402 event
.Skip(); // to let the edit control have the return
6406 if ( GetGridCursorRow() < GetNumberRows()-1 )
6408 MoveCursorDown( event
.ShiftDown() );
6412 // at the bottom of a column
6413 DisableCellEditControl();
6423 if (event
.ShiftDown())
6425 if ( GetGridCursorCol() > 0 )
6427 MoveCursorLeft( false );
6432 DisableCellEditControl();
6437 if ( GetGridCursorCol() < GetNumberCols()-1 )
6439 MoveCursorRight( false );
6444 DisableCellEditControl();
6450 if ( event
.ControlDown() )
6452 MakeCellVisible( 0, 0 );
6453 SetCurrentCell( 0, 0 );
6462 if ( event
.ControlDown() )
6464 MakeCellVisible( m_numRows
-1, m_numCols
-1 );
6465 SetCurrentCell( m_numRows
-1, m_numCols
-1 );
6482 if ( event
.ControlDown() )
6486 m_selection
->ToggleCellSelection( m_currentCellCoords
.GetRow(),
6487 m_currentCellCoords
.GetCol(),
6488 event
.ControlDown(),
6495 if ( !IsEditable() )
6497 MoveCursorRight( false );
6500 // Otherwise fall through to default
6508 m_inOnKeyDown
= false;
6511 void wxGrid::OnKeyUp( wxKeyEvent
& event
)
6513 // try local handlers
6515 if ( event
.GetKeyCode() == WXK_SHIFT
)
6517 if ( m_selectingTopLeft
!= wxGridNoCellCoords
&&
6518 m_selectingBottomRight
!= wxGridNoCellCoords
)
6522 m_selection
->SelectBlock( m_selectingTopLeft
.GetRow(),
6523 m_selectingTopLeft
.GetCol(),
6524 m_selectingBottomRight
.GetRow(),
6525 m_selectingBottomRight
.GetCol(),
6526 event
.ControlDown(),
6533 m_selectingTopLeft
= wxGridNoCellCoords
;
6534 m_selectingBottomRight
= wxGridNoCellCoords
;
6535 m_selectingKeyboard
= wxGridNoCellCoords
;
6539 void wxGrid::OnChar( wxKeyEvent
& event
)
6541 // is it possible to edit the current cell at all?
6542 if ( !IsCellEditControlEnabled() && CanEnableCellControl() )
6544 // yes, now check whether the cells editor accepts the key
6545 int row
= m_currentCellCoords
.GetRow();
6546 int col
= m_currentCellCoords
.GetCol();
6547 wxGridCellAttr
* attr
= GetCellAttr(row
, col
);
6548 wxGridCellEditor
*editor
= attr
->GetEditor(this, row
, col
);
6550 // <F2> is special and will always start editing, for
6551 // other keys - ask the editor itself
6552 if ( (event
.GetKeyCode() == WXK_F2
&& !event
.HasModifiers())
6553 || editor
->IsAcceptedKey(event
) )
6555 // ensure cell is visble
6556 MakeCellVisible(row
, col
);
6557 EnableCellEditControl();
6559 // a problem can arise if the cell is not completely
6560 // visible (even after calling MakeCellVisible the
6561 // control is not created and calling StartingKey will
6563 if ( event
.GetKeyCode() != WXK_F2
&& editor
->IsCreated() && m_cellEditCtrlEnabled
)
6564 editor
->StartingKey(event
);
6581 void wxGrid::OnEraseBackground(wxEraseEvent
&)
6585 void wxGrid::SetCurrentCell( const wxGridCellCoords
& coords
)
6587 if ( SendEvent( wxEVT_GRID_SELECT_CELL
, coords
.GetRow(), coords
.GetCol() ) )
6589 // the event has been intercepted - do nothing
6593 wxClientDC
dc(m_gridWin
);
6596 if ( m_currentCellCoords
!= wxGridNoCellCoords
)
6598 DisableCellEditControl();
6600 if ( IsVisible( m_currentCellCoords
, false ) )
6603 r
= BlockToDeviceRect(m_currentCellCoords
, m_currentCellCoords
);
6604 if ( !m_gridLinesEnabled
)
6612 wxGridCellCoordsArray cells
= CalcCellsExposed( r
);
6614 // Otherwise refresh redraws the highlight!
6615 m_currentCellCoords
= coords
;
6617 DrawGridCellArea(dc
,cells
);
6618 DrawAllGridLines( dc
, r
);
6622 m_currentCellCoords
= coords
;
6624 wxGridCellAttr
* attr
= GetCellAttr(coords
);
6625 DrawCellHighlight(dc
, attr
);
6630 void wxGrid::HighlightBlock( int topRow
, int leftCol
, int bottomRow
, int rightCol
)
6633 wxGridCellCoords updateTopLeft
, updateBottomRight
;
6637 if ( m_selection
->GetSelectionMode() == wxGrid::wxGridSelectRows
)
6640 rightCol
= GetNumberCols() - 1;
6642 else if ( m_selection
->GetSelectionMode() == wxGrid::wxGridSelectColumns
)
6645 bottomRow
= GetNumberRows() - 1;
6649 if ( topRow
> bottomRow
)
6656 if ( leftCol
> rightCol
)
6663 updateTopLeft
= wxGridCellCoords( topRow
, leftCol
);
6664 updateBottomRight
= wxGridCellCoords( bottomRow
, rightCol
);
6666 // First the case that we selected a completely new area
6667 if ( m_selectingTopLeft
== wxGridNoCellCoords
||
6668 m_selectingBottomRight
== wxGridNoCellCoords
)
6671 rect
= BlockToDeviceRect( wxGridCellCoords ( topRow
, leftCol
),
6672 wxGridCellCoords ( bottomRow
, rightCol
) );
6673 m_gridWin
->Refresh( false, &rect
);
6675 // Now handle changing an existing selection area.
6676 else if ( m_selectingTopLeft
!= updateTopLeft
||
6677 m_selectingBottomRight
!= updateBottomRight
)
6679 // Compute two optimal update rectangles:
6680 // Either one rectangle is a real subset of the
6681 // other, or they are (almost) disjoint!
6683 bool need_refresh
[4];
6687 need_refresh
[3] = false;
6690 // Store intermediate values
6691 wxCoord oldLeft
= m_selectingTopLeft
.GetCol();
6692 wxCoord oldTop
= m_selectingTopLeft
.GetRow();
6693 wxCoord oldRight
= m_selectingBottomRight
.GetCol();
6694 wxCoord oldBottom
= m_selectingBottomRight
.GetRow();
6696 // Determine the outer/inner coordinates.
6697 if (oldLeft
> leftCol
)
6703 if (oldTop
> topRow
)
6709 if (oldRight
< rightCol
)
6712 oldRight
= rightCol
;
6715 if (oldBottom
< bottomRow
)
6718 oldBottom
= bottomRow
;
6722 // Now, either the stuff marked old is the outer
6723 // rectangle or we don't have a situation where one
6724 // is contained in the other.
6726 if ( oldLeft
< leftCol
)
6728 // Refresh the newly selected or deselected
6729 // area to the left of the old or new selection.
6730 need_refresh
[0] = true;
6731 rect
[0] = BlockToDeviceRect( wxGridCellCoords ( oldTop
,
6733 wxGridCellCoords ( oldBottom
,
6737 if ( oldTop
< topRow
)
6739 // Refresh the newly selected or deselected
6740 // area above the old or new selection.
6741 need_refresh
[1] = true;
6742 rect
[1] = BlockToDeviceRect( wxGridCellCoords ( oldTop
,
6744 wxGridCellCoords ( topRow
- 1,
6748 if ( oldRight
> rightCol
)
6750 // Refresh the newly selected or deselected
6751 // area to the right of the old or new selection.
6752 need_refresh
[2] = true;
6753 rect
[2] = BlockToDeviceRect( wxGridCellCoords ( oldTop
,
6755 wxGridCellCoords ( oldBottom
,
6759 if ( oldBottom
> bottomRow
)
6761 // Refresh the newly selected or deselected
6762 // area below the old or new selection.
6763 need_refresh
[3] = true;
6764 rect
[3] = BlockToDeviceRect( wxGridCellCoords ( bottomRow
+ 1,
6766 wxGridCellCoords ( oldBottom
,
6770 // various Refresh() calls
6771 for (i
= 0; i
< 4; i
++ )
6772 if ( need_refresh
[i
] && rect
[i
] != wxGridNoCellRect
)
6773 m_gridWin
->Refresh( false, &(rect
[i
]) );
6776 m_selectingTopLeft
= updateTopLeft
;
6777 m_selectingBottomRight
= updateBottomRight
;
6781 // ------ functions to get/send data (see also public functions)
6784 bool wxGrid::GetModelValues()
6786 // Hide the editor, so it won't hide a changed value.
6787 HideCellEditControl();
6791 // all we need to do is repaint the grid
6793 m_gridWin
->Refresh();
6801 bool wxGrid::SetModelValues()
6805 // Disable the editor, so it won't hide a changed value.
6806 // Do we also want to save the current value of the editor first?
6808 DisableCellEditControl();
6812 for ( row
= 0; row
< m_numRows
; row
++ )
6814 for ( col
= 0; col
< m_numCols
; col
++ )
6816 m_table
->SetValue( row
, col
, GetCellValue(row
, col
) );
6828 // Note - this function only draws cells that are in the list of
6829 // exposed cells (usually set from the update region by
6830 // CalcExposedCells)
6832 void wxGrid::DrawGridCellArea( wxDC
& dc
, const wxGridCellCoordsArray
& cells
)
6834 if ( !m_numRows
|| !m_numCols
) return;
6836 int i
, numCells
= cells
.GetCount();
6837 int row
, col
, cell_rows
, cell_cols
;
6838 wxGridCellCoordsArray redrawCells
;
6840 for ( i
= numCells
-1; i
>= 0; i
-- )
6842 row
= cells
[i
].GetRow();
6843 col
= cells
[i
].GetCol();
6844 GetCellSize( row
, col
, &cell_rows
, &cell_cols
);
6846 // If this cell is part of a multicell block, find owner for repaint
6847 if ( cell_rows
<= 0 || cell_cols
<= 0 )
6849 wxGridCellCoords
cell(row
+cell_rows
, col
+cell_cols
);
6850 bool marked
= false;
6851 for ( int j
= 0; j
< numCells
; j
++ )
6853 if ( cell
== cells
[j
] )
6861 int count
= redrawCells
.GetCount();
6862 for (int j
= 0; j
< count
; j
++)
6864 if ( cell
== redrawCells
[j
] )
6870 if (!marked
) redrawCells
.Add( cell
);
6872 continue; // don't bother drawing this cell
6875 // If this cell is empty, find cell to left that might want to overflow
6876 if (m_table
&& m_table
->IsEmptyCell(row
, col
))
6878 for ( int l
= 0; l
< cell_rows
; l
++ )
6880 // find a cell in this row to left alreay marked for repaint
6882 for (int k
= 0; k
< int(redrawCells
.GetCount()); k
++)
6883 if ((redrawCells
[k
].GetCol() < left
) &&
6884 (redrawCells
[k
].GetRow() == row
))
6885 left
=redrawCells
[k
].GetCol();
6887 if (left
== col
) left
= 0; // oh well
6889 for (int j
= col
-1; j
>= left
; j
--)
6891 if (!m_table
->IsEmptyCell(row
+l
, j
))
6893 if (GetCellOverflow(row
+l
, j
))
6895 wxGridCellCoords
cell(row
+l
, j
);
6896 bool marked
= false;
6898 for (int k
= 0; k
< numCells
; k
++)
6900 if ( cell
== cells
[k
] )
6908 int count
= redrawCells
.GetCount();
6909 for (int k
= 0; k
< count
; k
++)
6911 if ( cell
== redrawCells
[k
] )
6917 if (!marked
) redrawCells
.Add( cell
);
6925 DrawCell( dc
, cells
[i
] );
6928 numCells
= redrawCells
.GetCount();
6930 for ( i
= numCells
- 1; i
>= 0; i
-- )
6932 DrawCell( dc
, redrawCells
[i
] );
6937 void wxGrid::DrawGridSpace( wxDC
& dc
)
6940 m_gridWin
->GetClientSize( &cw
, &ch
);
6943 CalcUnscrolledPosition( cw
, ch
, &right
, &bottom
);
6945 int rightCol
= m_numCols
> 0 ? GetColRight(m_numCols
- 1) : 0;
6946 int bottomRow
= m_numRows
> 0 ? GetRowBottom(m_numRows
- 1) : 0 ;
6948 if ( right
> rightCol
|| bottom
> bottomRow
)
6951 CalcUnscrolledPosition( 0, 0, &left
, &top
);
6953 dc
.SetBrush( wxBrush(GetDefaultCellBackgroundColour(), wxSOLID
) );
6954 dc
.SetPen( *wxTRANSPARENT_PEN
);
6956 if ( right
> rightCol
)
6958 dc
.DrawRectangle( rightCol
, top
, right
- rightCol
, ch
);
6961 if ( bottom
> bottomRow
)
6963 dc
.DrawRectangle( left
, bottomRow
, cw
, bottom
- bottomRow
);
6969 void wxGrid::DrawCell( wxDC
& dc
, const wxGridCellCoords
& coords
)
6971 int row
= coords
.GetRow();
6972 int col
= coords
.GetCol();
6974 if ( GetColWidth(col
) <= 0 || GetRowHeight(row
) <= 0 )
6977 // we draw the cell border ourselves
6978 #if !WXGRID_DRAW_LINES
6979 if ( m_gridLinesEnabled
)
6980 DrawCellBorder( dc
, coords
);
6983 wxGridCellAttr
* attr
= GetCellAttr(row
, col
);
6985 bool isCurrent
= coords
== m_currentCellCoords
;
6987 wxRect rect
= CellToRect( row
, col
);
6989 // if the editor is shown, we should use it and not the renderer
6990 // Note: However, only if it is really _shown_, i.e. not hidden!
6991 if ( isCurrent
&& IsCellEditControlShown() )
6993 wxGridCellEditor
*editor
= attr
->GetEditor(this, row
, col
);
6994 editor
->PaintBackground(rect
, attr
);
6999 // but all the rest is drawn by the cell renderer and hence may be
7001 wxGridCellRenderer
*renderer
= attr
->GetRenderer(this, row
, col
);
7002 renderer
->Draw(*this, *attr
, dc
, rect
, row
, col
, IsInSelection(coords
));
7009 void wxGrid::DrawCellHighlight( wxDC
& dc
, const wxGridCellAttr
*attr
)
7011 int row
= m_currentCellCoords
.GetRow();
7012 int col
= m_currentCellCoords
.GetCol();
7014 if ( GetColWidth(col
) <= 0 || GetRowHeight(row
) <= 0 )
7017 wxRect rect
= CellToRect(row
, col
);
7019 // hmmm... what could we do here to show that the cell is disabled?
7020 // for now, I just draw a thinner border than for the other ones, but
7021 // it doesn't look really good
7023 int penWidth
= attr
->IsReadOnly() ? m_cellHighlightROPenWidth
: m_cellHighlightPenWidth
;
7027 // The center of th drawn line is where the position/width/height of
7028 // the rectangle is actually at, (on wxMSW atr least,) so we will
7029 // reduce the size of the rectangle to compensate for the thickness of
7030 // the line. If this is too strange on non wxMSW platforms then
7031 // please #ifdef this appropriately.
7032 rect
.x
+= penWidth
/2;
7033 rect
.y
+= penWidth
/2;
7034 rect
.width
-= penWidth
-1;
7035 rect
.height
-= penWidth
-1;
7038 // Now draw the rectangle
7039 // use the cellHighlightColour if the cell is inside a selection, this
7040 // will ensure the cell is always visible.
7041 dc
.SetPen(wxPen(IsInSelection(row
,col
)?m_selectionForeground
:m_cellHighlightColour
, penWidth
, wxSOLID
));
7042 dc
.SetBrush(*wxTRANSPARENT_BRUSH
);
7043 dc
.DrawRectangle(rect
);
7047 // VZ: my experiments with 3d borders...
7049 // how to properly set colours for arbitrary bg?
7050 wxCoord x1
= rect
.x
,
7052 x2
= rect
.x
+ rect
.width
-1,
7053 y2
= rect
.y
+ rect
.height
-1;
7055 dc
.SetPen(*wxWHITE_PEN
);
7056 dc
.DrawLine(x1
, y1
, x2
, y1
);
7057 dc
.DrawLine(x1
, y1
, x1
, y2
);
7059 dc
.DrawLine(x1
+ 1, y2
- 1, x2
- 1, y2
- 1);
7060 dc
.DrawLine(x2
- 1, y1
+ 1, x2
- 1, y2
);
7062 dc
.SetPen(*wxBLACK_PEN
);
7063 dc
.DrawLine(x1
, y2
, x2
, y2
);
7064 dc
.DrawLine(x2
, y1
, x2
, y2
+1);
7069 void wxGrid::DrawCellBorder( wxDC
& dc
, const wxGridCellCoords
& coords
)
7071 int row
= coords
.GetRow();
7072 int col
= coords
.GetCol();
7073 if ( GetColWidth(col
) <= 0 || GetRowHeight(row
) <= 0 )
7076 dc
.SetPen( wxPen(GetGridLineColour(), 1, wxSOLID
) );
7078 wxRect rect
= CellToRect( row
, col
);
7080 // right hand border
7082 dc
.DrawLine( rect
.x
+ rect
.width
, rect
.y
,
7083 rect
.x
+ rect
.width
, rect
.y
+ rect
.height
+ 1 );
7087 dc
.DrawLine( rect
.x
, rect
.y
+ rect
.height
,
7088 rect
.x
+ rect
.width
, rect
.y
+ rect
.height
);
7091 void wxGrid::DrawHighlight(wxDC
& dc
,const wxGridCellCoordsArray
& cells
)
7093 // This if block was previously in wxGrid::OnPaint but that doesn't
7094 // seem to get called under wxGTK - MB
7096 if ( m_currentCellCoords
== wxGridNoCellCoords
&&
7097 m_numRows
&& m_numCols
)
7099 m_currentCellCoords
.Set(0, 0);
7102 if ( IsCellEditControlShown() )
7104 // don't show highlight when the edit control is shown
7108 // if the active cell was repainted, repaint its highlight too because it
7109 // might have been damaged by the grid lines
7110 size_t count
= cells
.GetCount();
7111 for ( size_t n
= 0; n
< count
; n
++ )
7113 if ( cells
[n
] == m_currentCellCoords
)
7115 wxGridCellAttr
* attr
= GetCellAttr(m_currentCellCoords
);
7116 DrawCellHighlight(dc
, attr
);
7124 // TODO: remove this ???
7125 // This is used to redraw all grid lines e.g. when the grid line colour
7128 void wxGrid::DrawAllGridLines( wxDC
& dc
, const wxRegion
& WXUNUSED(reg
) )
7130 #if !WXGRID_DRAW_LINES
7134 if ( !m_gridLinesEnabled
||
7136 !m_numCols
) return;
7138 int top
, bottom
, left
, right
;
7140 #if 0 //#ifndef __WXGTK__
7144 m_gridWin
->GetClientSize(&cw
, &ch
);
7146 // virtual coords of visible area
7148 CalcUnscrolledPosition( 0, 0, &left
, &top
);
7149 CalcUnscrolledPosition( cw
, ch
, &right
, &bottom
);
7154 reg
.GetBox(x
, y
, w
, h
);
7155 CalcUnscrolledPosition( x
, y
, &left
, &top
);
7156 CalcUnscrolledPosition( x
+ w
, y
+ h
, &right
, &bottom
);
7160 m_gridWin
->GetClientSize(&cw
, &ch
);
7161 CalcUnscrolledPosition( 0, 0, &left
, &top
);
7162 CalcUnscrolledPosition( cw
, ch
, &right
, &bottom
);
7165 // avoid drawing grid lines past the last row and col
7167 right
= wxMin( right
, GetColRight(m_numCols
- 1) );
7168 bottom
= wxMin( bottom
, GetRowBottom(m_numRows
- 1) );
7170 // no gridlines inside multicells, clip them out
7171 int leftCol
= internalXToCol(left
);
7172 int topRow
= internalYToRow(top
);
7173 int rightCol
= internalXToCol(right
);
7174 int bottomRow
= internalYToRow(bottom
);
7177 // CS: I don't know why suddenly unscrolled coordinates are used for clipping
7178 wxRegion
clippedcells(0, 0, cw
, ch
);
7180 int i
, j
, cell_rows
, cell_cols
;
7183 for (j
=topRow
; j
<bottomRow
; j
++)
7185 for (i
=leftCol
; i
<rightCol
; i
++)
7187 GetCellSize( j
, i
, &cell_rows
, &cell_cols
);
7188 if ((cell_rows
> 1) || (cell_cols
> 1))
7190 rect
= CellToRect(j
,i
);
7191 CalcScrolledPosition( rect
.x
, rect
.y
, &rect
.x
, &rect
.y
);
7192 clippedcells
.Subtract(rect
);
7194 else if ((cell_rows
< 0) || (cell_cols
< 0))
7196 rect
= CellToRect(j
+cell_rows
, i
+cell_cols
);
7197 CalcScrolledPosition( rect
.x
, rect
.y
, &rect
.x
, &rect
.y
);
7198 clippedcells
.Subtract(rect
);
7203 wxRegion
clippedcells( left
, top
, right
- left
, bottom
- top
);
7205 int i
, j
, cell_rows
, cell_cols
;
7208 for (j
=topRow
; j
<bottomRow
; j
++)
7210 for (i
=leftCol
; i
<rightCol
; i
++)
7212 GetCellSize( j
, i
, &cell_rows
, &cell_cols
);
7213 if ((cell_rows
> 1) || (cell_cols
> 1))
7215 rect
= CellToRect(j
,i
);
7216 clippedcells
.Subtract(rect
);
7218 else if ((cell_rows
< 0) || (cell_cols
< 0))
7220 rect
= CellToRect(j
+cell_rows
, i
+cell_cols
);
7221 clippedcells
.Subtract(rect
);
7226 dc
.SetClippingRegion( clippedcells
);
7228 dc
.SetPen( wxPen(GetGridLineColour(), 1, wxSOLID
) );
7230 // horizontal grid lines
7232 // already declared above - int i;
7233 for ( i
= internalYToRow(top
); i
< m_numRows
; i
++ )
7235 int bot
= GetRowBottom(i
) - 1;
7244 dc
.DrawLine( left
, bot
, right
, bot
);
7249 // vertical grid lines
7251 for ( i
= internalXToCol(left
); i
< m_numCols
; i
++ )
7253 int colRight
= GetColRight(i
) - 1;
7254 if ( colRight
> right
)
7259 if ( colRight
>= left
)
7261 dc
.DrawLine( colRight
, top
, colRight
, bottom
);
7264 dc
.DestroyClippingRegion();
7268 void wxGrid::DrawRowLabels( wxDC
& dc
,const wxArrayInt
& rows
)
7270 if ( !m_numRows
) return;
7273 size_t numLabels
= rows
.GetCount();
7275 for ( i
= 0; i
< numLabels
; i
++ )
7277 DrawRowLabel( dc
, rows
[i
] );
7282 void wxGrid::DrawRowLabel( wxDC
& dc
, int row
)
7284 if ( GetRowHeight(row
) <= 0 || m_rowLabelWidth
<= 0 )
7290 rect
.SetY( GetRowTop(row
) + 1 );
7291 rect
.SetWidth( m_rowLabelWidth
- 2 );
7292 rect
.SetHeight( GetRowHeight(row
) - 2 );
7294 CalcScrolledPosition( 0, rect
.y
, NULL
, &rect
.y
);
7296 wxWindowDC
*win_dc
= (wxWindowDC
*) &dc
;
7298 wxRendererNative::Get().DrawHeaderButton( win_dc
->m_owner
, dc
, rect
, 0 );
7300 int rowTop
= GetRowTop(row
),
7301 rowBottom
= GetRowBottom(row
) - 1;
7303 dc
.SetPen( wxPen(wxSystemSettings::GetColour(wxSYS_COLOUR_3DDKSHADOW
),1, wxSOLID
) );
7304 dc
.DrawLine( m_rowLabelWidth
-1, rowTop
,
7305 m_rowLabelWidth
-1, rowBottom
);
7307 dc
.DrawLine( 0, rowTop
, 0, rowBottom
);
7309 dc
.DrawLine( 0, rowBottom
, m_rowLabelWidth
, rowBottom
);
7311 dc
.SetPen( *wxWHITE_PEN
);
7312 dc
.DrawLine( 1, rowTop
, 1, rowBottom
);
7313 dc
.DrawLine( 1, rowTop
, m_rowLabelWidth
-1, rowTop
);
7315 dc
.SetBackgroundMode( wxTRANSPARENT
);
7316 dc
.SetTextForeground( GetLabelTextColour() );
7317 dc
.SetFont( GetLabelFont() );
7320 GetRowLabelAlignment( &hAlign
, &vAlign
);
7323 rect
.SetY( GetRowTop(row
) + 2 );
7324 rect
.SetWidth( m_rowLabelWidth
- 4 );
7325 rect
.SetHeight( GetRowHeight(row
) - 4 );
7326 DrawTextRectangle( dc
, GetRowLabelValue( row
), rect
, hAlign
, vAlign
);
7330 void wxGrid::DrawColLabels( wxDC
& dc
,const wxArrayInt
& cols
)
7332 if ( !m_numCols
) return;
7335 size_t numLabels
= cols
.GetCount();
7337 for ( i
= 0; i
< numLabels
; i
++ )
7339 DrawColLabel( dc
, cols
[i
] );
7344 void wxGrid::DrawColLabel( wxDC
& dc
, int col
)
7346 if ( GetColWidth(col
) <= 0 || m_colLabelHeight
<= 0 )
7349 int colLeft
= GetColLeft(col
);
7353 rect
.SetX( colLeft
+ 1 );
7355 rect
.SetWidth( GetColWidth(col
) - 2 );
7356 rect
.SetHeight( m_colLabelHeight
- 2 );
7358 wxWindowDC
*win_dc
= (wxWindowDC
*) &dc
;
7360 wxRendererNative::Get().DrawHeaderButton( win_dc
->m_owner
, dc
, rect
, 0 );
7362 int colRight
= GetColRight(col
) - 1;
7364 dc
.SetPen( wxPen(wxSystemSettings::GetColour(wxSYS_COLOUR_3DDKSHADOW
),1, wxSOLID
) );
7365 dc
.DrawLine( colRight
, 0,
7366 colRight
, m_colLabelHeight
-1 );
7368 dc
.DrawLine( colLeft
, 0, colRight
, 0 );
7370 dc
.DrawLine( colLeft
, m_colLabelHeight
-1,
7371 colRight
+1, m_colLabelHeight
-1 );
7373 dc
.SetPen( *wxWHITE_PEN
);
7374 dc
.DrawLine( colLeft
, 1, colLeft
, m_colLabelHeight
-1 );
7375 dc
.DrawLine( colLeft
, 1, colRight
, 1 );
7377 dc
.SetBackgroundMode( wxTRANSPARENT
);
7378 dc
.SetTextForeground( GetLabelTextColour() );
7379 dc
.SetFont( GetLabelFont() );
7381 int hAlign
, vAlign
, orient
;
7382 GetColLabelAlignment( &hAlign
, &vAlign
);
7383 orient
= GetColLabelTextOrientation();
7385 rect
.SetX( colLeft
+ 2 );
7387 rect
.SetWidth( GetColWidth(col
) - 4 );
7388 rect
.SetHeight( m_colLabelHeight
- 4 );
7389 DrawTextRectangle( dc
, GetColLabelValue( col
), rect
, hAlign
, vAlign
, orient
);
7392 void wxGrid::DrawTextRectangle( wxDC
& dc
,
7393 const wxString
& value
,
7397 int textOrientation
)
7399 wxArrayString lines
;
7401 StringToLines( value
, lines
);
7404 //Forward to new API.
7405 DrawTextRectangle( dc
,
7414 void wxGrid::DrawTextRectangle( wxDC
& dc
,
7415 const wxArrayString
& lines
,
7419 int textOrientation
)
7421 long textWidth
, textHeight
;
7422 long lineWidth
, lineHeight
;
7425 dc
.SetClippingRegion( rect
);
7427 nLines
= lines
.GetCount();
7431 float x
= 0.0, y
= 0.0;
7433 if( textOrientation
== wxHORIZONTAL
)
7434 GetTextBoxSize(dc
, lines
, &textWidth
, &textHeight
);
7436 GetTextBoxSize( dc
, lines
, &textHeight
, &textWidth
);
7440 case wxALIGN_BOTTOM
:
7441 if( textOrientation
== wxHORIZONTAL
)
7442 y
= rect
.y
+ (rect
.height
- textHeight
- 1);
7444 x
= rect
.x
+ rect
.width
- textWidth
;
7447 case wxALIGN_CENTRE
:
7448 if( textOrientation
== wxHORIZONTAL
)
7449 y
= rect
.y
+ ((rect
.height
- textHeight
)/2);
7451 x
= rect
.x
+ ((rect
.width
- textWidth
)/2);
7456 if( textOrientation
== wxHORIZONTAL
)
7463 // Align each line of a multi-line label
7464 for( l
= 0; l
< nLines
; l
++ )
7466 dc
.GetTextExtent(lines
[l
], &lineWidth
, &lineHeight
);
7468 switch( horizAlign
)
7471 if( textOrientation
== wxHORIZONTAL
)
7472 x
= rect
.x
+ (rect
.width
- lineWidth
- 1);
7474 y
= rect
.y
+ lineWidth
+ 1;
7477 case wxALIGN_CENTRE
:
7478 if( textOrientation
== wxHORIZONTAL
)
7479 x
= rect
.x
+ ((rect
.width
- lineWidth
)/2);
7481 y
= rect
.y
+ rect
.height
- ((rect
.height
- lineWidth
)/2);
7486 if( textOrientation
== wxHORIZONTAL
)
7489 y
= rect
.y
+ rect
.height
- 1;
7493 if( textOrientation
== wxHORIZONTAL
)
7495 dc
.DrawText( lines
[l
], (int)x
, (int)y
);
7500 dc
.DrawRotatedText( lines
[l
], (int)x
, (int)y
, 90.0 );
7505 dc
.DestroyClippingRegion();
7509 // Split multi line text up into an array of strings. Any existing
7510 // contents of the string array are preserved.
7512 void wxGrid::StringToLines( const wxString
& value
, wxArrayString
& lines
)
7516 wxString eol
= wxTextFile::GetEOL( wxTextFileType_Unix
);
7517 wxString tVal
= wxTextFile::Translate( value
, wxTextFileType_Unix
);
7519 while ( startPos
< (int)tVal
.Length() )
7521 pos
= tVal
.Mid(startPos
).Find( eol
);
7526 else if ( pos
== 0 )
7528 lines
.Add( wxEmptyString
);
7532 lines
.Add( value
.Mid(startPos
, pos
) );
7536 if ( startPos
< (int)value
.Length() )
7538 lines
.Add( value
.Mid( startPos
) );
7543 void wxGrid::GetTextBoxSize( wxDC
& dc
,
7544 const wxArrayString
& lines
,
7545 long *width
, long *height
)
7552 for ( i
= 0; i
< lines
.GetCount(); i
++ )
7554 dc
.GetTextExtent( lines
[i
], &lineW
, &lineH
);
7555 w
= wxMax( w
, lineW
);
7564 // ------ Batch processing.
7566 void wxGrid::EndBatch()
7568 if ( m_batchCount
> 0 )
7571 if ( !m_batchCount
)
7574 m_rowLabelWin
->Refresh();
7575 m_colLabelWin
->Refresh();
7576 m_cornerLabelWin
->Refresh();
7577 m_gridWin
->Refresh();
7582 // Use this, rather than wxWindow::Refresh(), to force an immediate
7583 // repainting of the grid. Has no effect if you are already inside a
7584 // BeginBatch / EndBatch block.
7586 void wxGrid::ForceRefresh()
7592 bool wxGrid::Enable(bool enable
)
7594 if ( !wxScrolledWindow::Enable(enable
) )
7597 // redraw in the new state
7598 m_gridWin
->Refresh();
7604 // ------ Edit control functions
7608 void wxGrid::EnableEditing( bool edit
)
7610 // TODO: improve this ?
7612 if ( edit
!= m_editable
)
7614 if(!edit
) EnableCellEditControl(edit
);
7620 void wxGrid::EnableCellEditControl( bool enable
)
7625 if ( m_currentCellCoords
== wxGridNoCellCoords
)
7626 SetCurrentCell( 0, 0 );
7628 if ( enable
!= m_cellEditCtrlEnabled
)
7632 if (SendEvent( wxEVT_GRID_EDITOR_SHOWN
) <0)
7635 // this should be checked by the caller!
7636 wxASSERT_MSG( CanEnableCellControl(),
7637 _T("can't enable editing for this cell!") );
7639 // do it before ShowCellEditControl()
7640 m_cellEditCtrlEnabled
= enable
;
7642 ShowCellEditControl();
7646 //FIXME:add veto support
7647 SendEvent( wxEVT_GRID_EDITOR_HIDDEN
);
7649 HideCellEditControl();
7650 SaveEditControlValue();
7652 // do it after HideCellEditControl()
7653 m_cellEditCtrlEnabled
= enable
;
7658 bool wxGrid::IsCurrentCellReadOnly() const
7661 wxGridCellAttr
* attr
= ((wxGrid
*)this)->GetCellAttr(m_currentCellCoords
);
7662 bool readonly
= attr
->IsReadOnly();
7668 bool wxGrid::CanEnableCellControl() const
7670 return m_editable
&& (m_currentCellCoords
!= wxGridNoCellCoords
) &&
7671 !IsCurrentCellReadOnly();
7675 bool wxGrid::IsCellEditControlEnabled() const
7677 // the cell edit control might be disable for all cells or just for the
7678 // current one if it's read only
7679 return m_cellEditCtrlEnabled
? !IsCurrentCellReadOnly() : false;
7682 bool wxGrid::IsCellEditControlShown() const
7684 bool isShown
= false;
7686 if ( m_cellEditCtrlEnabled
)
7688 int row
= m_currentCellCoords
.GetRow();
7689 int col
= m_currentCellCoords
.GetCol();
7690 wxGridCellAttr
* attr
= GetCellAttr(row
, col
);
7691 wxGridCellEditor
* editor
= attr
->GetEditor((wxGrid
*) this, row
, col
);
7696 if ( editor
->IsCreated() )
7698 isShown
= editor
->GetControl()->IsShown();
7708 void wxGrid::ShowCellEditControl()
7710 if ( IsCellEditControlEnabled() )
7712 if ( !IsVisible( m_currentCellCoords
) )
7714 m_cellEditCtrlEnabled
= false;
7719 wxRect rect
= CellToRect( m_currentCellCoords
);
7720 int row
= m_currentCellCoords
.GetRow();
7721 int col
= m_currentCellCoords
.GetCol();
7723 // if this is part of a multicell, find owner (topleft)
7724 int cell_rows
, cell_cols
;
7725 GetCellSize( row
, col
, &cell_rows
, &cell_cols
);
7726 if ( cell_rows
<= 0 || cell_cols
<= 0 )
7730 m_currentCellCoords
.SetRow( row
);
7731 m_currentCellCoords
.SetCol( col
);
7734 // convert to scrolled coords
7736 CalcScrolledPosition( rect
.x
, rect
.y
, &rect
.x
, &rect
.y
);
7738 // done in PaintBackground()
7740 // erase the highlight and the cell contents because the editor
7741 // might not cover the entire cell
7742 wxClientDC
dc( m_gridWin
);
7744 dc
.SetBrush(*wxLIGHT_GREY_BRUSH
); //wxBrush(attr->GetBackgroundColour(), wxSOLID));
7745 dc
.SetPen(*wxTRANSPARENT_PEN
);
7746 dc
.DrawRectangle(rect
);
7749 // cell is shifted by one pixel
7750 // However, don't allow x or y to become negative
7751 // since the SetSize() method interprets that as
7758 wxGridCellAttr
* attr
= GetCellAttr(row
, col
);
7759 wxGridCellEditor
* editor
= attr
->GetEditor(this, row
, col
);
7760 if ( !editor
->IsCreated() )
7762 editor
->Create(m_gridWin
, wxID_ANY
,
7763 new wxGridCellEditorEvtHandler(this, editor
));
7765 wxGridEditorCreatedEvent
evt(GetId(),
7766 wxEVT_GRID_EDITOR_CREATED
,
7770 editor
->GetControl());
7771 GetEventHandler()->ProcessEvent(evt
);
7775 // resize editor to overflow into righthand cells if allowed
7776 int maxWidth
= rect
.width
;
7777 wxString value
= GetCellValue(row
, col
);
7778 if ( (value
!= wxEmptyString
) && (attr
->GetOverflow()) )
7781 GetTextExtent(value
, &maxWidth
, &y
,
7782 NULL
, NULL
, &attr
->GetFont());
7783 if (maxWidth
< rect
.width
) maxWidth
= rect
.width
;
7785 int client_right
= m_gridWin
->GetClientSize().GetWidth();
7786 if (rect
.x
+maxWidth
> client_right
)
7787 maxWidth
= client_right
- rect
.x
;
7789 if ((maxWidth
> rect
.width
) && (col
< m_numCols
) && m_table
)
7791 GetCellSize( row
, col
, &cell_rows
, &cell_cols
);
7792 // may have changed earlier
7793 for (int i
= col
+cell_cols
; i
< m_numCols
; i
++)
7796 GetCellSize( row
, i
, &c_rows
, &c_cols
);
7797 // looks weird going over a multicell
7798 if (m_table
->IsEmptyCell(row
,i
) &&
7799 (rect
.width
< maxWidth
) && (c_rows
== 1))
7800 rect
.width
+= GetColWidth(i
);
7804 if (rect
.GetRight() > client_right
)
7805 rect
.SetRight(client_right
-1);
7808 editor
->SetCellAttr(attr
);
7809 editor
->SetSize( rect
);
7810 editor
->Show( true, attr
);
7812 // recalc dimensions in case we need to
7813 // expand the scrolled window to account for editor
7816 editor
->BeginEdit(row
, col
, this);
7817 editor
->SetCellAttr(NULL
);
7826 void wxGrid::HideCellEditControl()
7828 if ( IsCellEditControlEnabled() )
7830 int row
= m_currentCellCoords
.GetRow();
7831 int col
= m_currentCellCoords
.GetCol();
7833 wxGridCellAttr
* attr
= GetCellAttr(row
, col
);
7834 wxGridCellEditor
*editor
= attr
->GetEditor(this, row
, col
);
7835 editor
->Show( false );
7838 m_gridWin
->SetFocus();
7839 // refresh whole row to the right
7840 wxRect
rect( CellToRect(row
, col
) );
7841 CalcScrolledPosition(rect
.x
, rect
.y
, &rect
.x
, &rect
.y
);
7842 rect
.width
= m_gridWin
->GetClientSize().GetWidth() - rect
.x
;
7844 // ensure that the pixels under the focus ring get refreshed as well
7845 rect
.Inflate(10,10);
7847 m_gridWin
->Refresh( false, &rect
);
7852 void wxGrid::SaveEditControlValue()
7854 if ( IsCellEditControlEnabled() )
7856 int row
= m_currentCellCoords
.GetRow();
7857 int col
= m_currentCellCoords
.GetCol();
7859 wxString oldval
= GetCellValue(row
,col
);
7861 wxGridCellAttr
* attr
= GetCellAttr(row
, col
);
7862 wxGridCellEditor
* editor
= attr
->GetEditor(this, row
, col
);
7863 bool changed
= editor
->EndEdit(row
, col
, this);
7870 if ( SendEvent( wxEVT_GRID_CELL_CHANGE
,
7871 m_currentCellCoords
.GetRow(),
7872 m_currentCellCoords
.GetCol() ) < 0 ) {
7874 // Event has been vetoed, set the data back.
7875 SetCellValue(row
,col
,oldval
);
7883 // ------ Grid location functions
7884 // Note that all of these functions work with the logical coordinates of
7885 // grid cells and labels so you will need to convert from device
7886 // coordinates for mouse events etc.
7889 void wxGrid::XYToCell( int x
, int y
, wxGridCellCoords
& coords
)
7891 int row
= YToRow(y
);
7892 int col
= XToCol(x
);
7894 if ( row
== -1 || col
== -1 )
7896 coords
= wxGridNoCellCoords
;
7900 coords
.Set( row
, col
);
7905 // Internal Helper function for computing row or column from some
7906 // (unscrolled) coordinate value, using either
7907 // m_defaultRowHeight/m_defaultColWidth or binary search on array
7908 // of m_rowBottoms/m_ColRights to speed up the search!
7910 static int CoordToRowOrCol(int coord
, int defaultDist
, int minDist
,
7911 const wxArrayInt
& BorderArray
, int nMax
,
7916 return clipToMinMax
&& (nMax
> 0) ? 0 : -1;
7922 size_t i_max
= coord
/ defaultDist
,
7925 if (BorderArray
.IsEmpty())
7927 if((int) i_max
< nMax
)
7929 return clipToMinMax
? nMax
- 1 : -1;
7932 if ( i_max
>= BorderArray
.GetCount())
7933 i_max
= BorderArray
.GetCount() - 1;
7936 if ( coord
>= BorderArray
[i_max
])
7940 i_max
= coord
/ minDist
;
7942 i_max
= BorderArray
.GetCount() - 1;
7944 if ( i_max
>= BorderArray
.GetCount())
7945 i_max
= BorderArray
.GetCount() - 1;
7947 if ( coord
>= BorderArray
[i_max
])
7948 return clipToMinMax
? (int)i_max
: -1;
7949 if ( coord
< BorderArray
[0] )
7952 while ( i_max
- i_min
> 0 )
7954 wxCHECK_MSG(BorderArray
[i_min
] <= coord
&& coord
< BorderArray
[i_max
],
7955 0, _T("wxGrid: internal error in CoordToRowOrCol"));
7956 if (coord
>= BorderArray
[ i_max
- 1])
7960 int median
= i_min
+ (i_max
- i_min
+ 1) / 2;
7961 if (coord
< BorderArray
[median
])
7969 int wxGrid::YToRow( int y
)
7971 return CoordToRowOrCol(y
, m_defaultRowHeight
,
7972 m_minAcceptableRowHeight
, m_rowBottoms
, m_numRows
, false);
7976 int wxGrid::XToCol( int x
)
7978 return CoordToRowOrCol(x
, m_defaultColWidth
,
7979 m_minAcceptableColWidth
, m_colRights
, m_numCols
, false);
7983 // return the row number that that the y coord is near the edge of, or
7984 // -1 if not near an edge
7986 int wxGrid::YToEdgeOfRow( int y
)
7989 i
= internalYToRow(y
);
7991 if ( GetRowHeight(i
) > WXGRID_LABEL_EDGE_ZONE
)
7993 // We know that we are in row i, test whether we are
7994 // close enough to lower or upper border, respectively.
7995 if ( abs(GetRowBottom(i
) - y
) < WXGRID_LABEL_EDGE_ZONE
)
7997 else if( i
> 0 && y
- GetRowTop(i
) < WXGRID_LABEL_EDGE_ZONE
)
8005 // return the col number that that the x coord is near the edge of, or
8006 // -1 if not near an edge
8008 int wxGrid::XToEdgeOfCol( int x
)
8011 i
= internalXToCol(x
);
8013 if ( GetColWidth(i
) > WXGRID_LABEL_EDGE_ZONE
)
8015 // We know that we are in column i, test whether we are
8016 // close enough to right or left border, respectively.
8017 if ( abs(GetColRight(i
) - x
) < WXGRID_LABEL_EDGE_ZONE
)
8019 else if( i
> 0 && x
- GetColLeft(i
) < WXGRID_LABEL_EDGE_ZONE
)
8027 wxRect
wxGrid::CellToRect( int row
, int col
)
8029 wxRect
rect( -1, -1, -1, -1 );
8031 if ( row
>= 0 && row
< m_numRows
&&
8032 col
>= 0 && col
< m_numCols
)
8034 int i
, cell_rows
, cell_cols
;
8035 rect
.width
= rect
.height
= 0;
8036 GetCellSize( row
, col
, &cell_rows
, &cell_cols
);
8037 // if negative then find multicell owner
8038 if (cell_rows
< 0) row
+= cell_rows
;
8039 if (cell_cols
< 0) col
+= cell_cols
;
8040 GetCellSize( row
, col
, &cell_rows
, &cell_cols
);
8042 rect
.x
= GetColLeft(col
);
8043 rect
.y
= GetRowTop(row
);
8044 for (i
=col
; i
<col
+cell_cols
; i
++)
8045 rect
.width
+= GetColWidth(i
);
8046 for (i
=row
; i
<row
+cell_rows
; i
++)
8047 rect
.height
+= GetRowHeight(i
);
8050 // if grid lines are enabled, then the area of the cell is a bit smaller
8051 if (m_gridLinesEnabled
) {
8059 bool wxGrid::IsVisible( int row
, int col
, bool wholeCellVisible
)
8061 // get the cell rectangle in logical coords
8063 wxRect
r( CellToRect( row
, col
) );
8065 // convert to device coords
8067 int left
, top
, right
, bottom
;
8068 CalcScrolledPosition( r
.GetLeft(), r
.GetTop(), &left
, &top
);
8069 CalcScrolledPosition( r
.GetRight(), r
.GetBottom(), &right
, &bottom
);
8071 // check against the client area of the grid window
8074 m_gridWin
->GetClientSize( &cw
, &ch
);
8076 if ( wholeCellVisible
)
8078 // is the cell wholly visible ?
8080 return ( left
>= 0 && right
<= cw
&&
8081 top
>= 0 && bottom
<= ch
);
8085 // is the cell partly visible ?
8087 return ( ((left
>=0 && left
< cw
) || (right
> 0 && right
<= cw
)) &&
8088 ((top
>=0 && top
< ch
) || (bottom
> 0 && bottom
<= ch
)) );
8093 // make the specified cell location visible by doing a minimal amount
8096 void wxGrid::MakeCellVisible( int row
, int col
)
8100 int xpos
= -1, ypos
= -1;
8102 if ( row
>= 0 && row
< m_numRows
&&
8103 col
>= 0 && col
< m_numCols
)
8105 // get the cell rectangle in logical coords
8107 wxRect
r( CellToRect( row
, col
) );
8109 // convert to device coords
8111 int left
, top
, right
, bottom
;
8112 CalcScrolledPosition( r
.GetLeft(), r
.GetTop(), &left
, &top
);
8113 CalcScrolledPosition( r
.GetRight(), r
.GetBottom(), &right
, &bottom
);
8116 m_gridWin
->GetClientSize( &cw
, &ch
);
8122 else if ( bottom
> ch
)
8124 int h
= r
.GetHeight();
8126 for ( i
= row
-1; i
>= 0; i
-- )
8128 int rowHeight
= GetRowHeight(i
);
8129 if ( h
+ rowHeight
> ch
)
8136 // we divide it later by GRID_SCROLL_LINE, make sure that we don't
8137 // have rounding errors (this is important, because if we do, we
8138 // might not scroll at all and some cells won't be redrawn)
8140 // Sometimes GRID_SCROLL_LINE/2 is not enough, so just add a full
8142 ypos
+= m_scrollLineY
;
8149 else if ( right
> cw
)
8151 // position the view so that the cell is on the right
8153 CalcUnscrolledPosition(0, 0, &x0
, &y0
);
8154 xpos
= x0
+ (right
- cw
);
8156 // see comment for ypos above
8157 xpos
+= m_scrollLineX
;
8160 if ( xpos
!= -1 || ypos
!= -1 )
8163 xpos
/= m_scrollLineX
;
8165 ypos
/= m_scrollLineY
;
8166 Scroll( xpos
, ypos
);
8174 // ------ Grid cursor movement functions
8177 bool wxGrid::MoveCursorUp( bool expandSelection
)
8179 if ( m_currentCellCoords
!= wxGridNoCellCoords
&&
8180 m_currentCellCoords
.GetRow() >= 0 )
8182 if ( expandSelection
)
8184 if ( m_selectingKeyboard
== wxGridNoCellCoords
)
8185 m_selectingKeyboard
= m_currentCellCoords
;
8186 if ( m_selectingKeyboard
.GetRow() > 0 )
8188 m_selectingKeyboard
.SetRow( m_selectingKeyboard
.GetRow() - 1 );
8189 MakeCellVisible( m_selectingKeyboard
.GetRow(),
8190 m_selectingKeyboard
.GetCol() );
8191 HighlightBlock( m_currentCellCoords
, m_selectingKeyboard
);
8194 else if ( m_currentCellCoords
.GetRow() > 0 )
8197 MakeCellVisible( m_currentCellCoords
.GetRow() - 1,
8198 m_currentCellCoords
.GetCol() );
8199 SetCurrentCell( m_currentCellCoords
.GetRow() - 1,
8200 m_currentCellCoords
.GetCol() );
8211 bool wxGrid::MoveCursorDown( bool expandSelection
)
8213 if ( m_currentCellCoords
!= wxGridNoCellCoords
&&
8214 m_currentCellCoords
.GetRow() < m_numRows
)
8216 if ( expandSelection
)
8218 if ( m_selectingKeyboard
== wxGridNoCellCoords
)
8219 m_selectingKeyboard
= m_currentCellCoords
;
8220 if ( m_selectingKeyboard
.GetRow() < m_numRows
-1 )
8222 m_selectingKeyboard
.SetRow( m_selectingKeyboard
.GetRow() + 1 );
8223 MakeCellVisible( m_selectingKeyboard
.GetRow(),
8224 m_selectingKeyboard
.GetCol() );
8225 HighlightBlock( m_currentCellCoords
, m_selectingKeyboard
);
8228 else if ( m_currentCellCoords
.GetRow() < m_numRows
- 1 )
8231 MakeCellVisible( m_currentCellCoords
.GetRow() + 1,
8232 m_currentCellCoords
.GetCol() );
8233 SetCurrentCell( m_currentCellCoords
.GetRow() + 1,
8234 m_currentCellCoords
.GetCol() );
8245 bool wxGrid::MoveCursorLeft( bool expandSelection
)
8247 if ( m_currentCellCoords
!= wxGridNoCellCoords
&&
8248 m_currentCellCoords
.GetCol() >= 0 )
8250 if ( expandSelection
)
8252 if ( m_selectingKeyboard
== wxGridNoCellCoords
)
8253 m_selectingKeyboard
= m_currentCellCoords
;
8254 if ( m_selectingKeyboard
.GetCol() > 0 )
8256 m_selectingKeyboard
.SetCol( m_selectingKeyboard
.GetCol() - 1 );
8257 MakeCellVisible( m_selectingKeyboard
.GetRow(),
8258 m_selectingKeyboard
.GetCol() );
8259 HighlightBlock( m_currentCellCoords
, m_selectingKeyboard
);
8262 else if ( m_currentCellCoords
.GetCol() > 0 )
8265 MakeCellVisible( m_currentCellCoords
.GetRow(),
8266 m_currentCellCoords
.GetCol() - 1 );
8267 SetCurrentCell( m_currentCellCoords
.GetRow(),
8268 m_currentCellCoords
.GetCol() - 1 );
8279 bool wxGrid::MoveCursorRight( bool expandSelection
)
8281 if ( m_currentCellCoords
!= wxGridNoCellCoords
&&
8282 m_currentCellCoords
.GetCol() < m_numCols
)
8284 if ( expandSelection
)
8286 if ( m_selectingKeyboard
== wxGridNoCellCoords
)
8287 m_selectingKeyboard
= m_currentCellCoords
;
8288 if ( m_selectingKeyboard
.GetCol() < m_numCols
- 1 )
8290 m_selectingKeyboard
.SetCol( m_selectingKeyboard
.GetCol() + 1 );
8291 MakeCellVisible( m_selectingKeyboard
.GetRow(),
8292 m_selectingKeyboard
.GetCol() );
8293 HighlightBlock( m_currentCellCoords
, m_selectingKeyboard
);
8296 else if ( m_currentCellCoords
.GetCol() < m_numCols
- 1 )
8299 MakeCellVisible( m_currentCellCoords
.GetRow(),
8300 m_currentCellCoords
.GetCol() + 1 );
8301 SetCurrentCell( m_currentCellCoords
.GetRow(),
8302 m_currentCellCoords
.GetCol() + 1 );
8313 bool wxGrid::MovePageUp()
8315 if ( m_currentCellCoords
== wxGridNoCellCoords
) return false;
8317 int row
= m_currentCellCoords
.GetRow();
8321 m_gridWin
->GetClientSize( &cw
, &ch
);
8323 int y
= GetRowTop(row
);
8324 int newRow
= internalYToRow( y
- ch
+ 1 );
8326 if ( newRow
== row
)
8328 //row > 0 , so newrow can never be less than 0 here.
8332 MakeCellVisible( newRow
, m_currentCellCoords
.GetCol() );
8333 SetCurrentCell( newRow
, m_currentCellCoords
.GetCol() );
8341 bool wxGrid::MovePageDown()
8343 if ( m_currentCellCoords
== wxGridNoCellCoords
) return false;
8345 int row
= m_currentCellCoords
.GetRow();
8346 if ( (row
+1) < m_numRows
)
8349 m_gridWin
->GetClientSize( &cw
, &ch
);
8351 int y
= GetRowTop(row
);
8352 int newRow
= internalYToRow( y
+ ch
);
8353 if ( newRow
== row
)
8355 // row < m_numRows , so newrow can't overflow here.
8359 MakeCellVisible( newRow
, m_currentCellCoords
.GetCol() );
8360 SetCurrentCell( newRow
, m_currentCellCoords
.GetCol() );
8368 bool wxGrid::MoveCursorUpBlock( bool expandSelection
)
8371 m_currentCellCoords
!= wxGridNoCellCoords
&&
8372 m_currentCellCoords
.GetRow() > 0 )
8374 int row
= m_currentCellCoords
.GetRow();
8375 int col
= m_currentCellCoords
.GetCol();
8377 if ( m_table
->IsEmptyCell(row
, col
) )
8379 // starting in an empty cell: find the next block of
8385 if ( !(m_table
->IsEmptyCell(row
, col
)) ) break;
8388 else if ( m_table
->IsEmptyCell(row
-1, col
) )
8390 // starting at the top of a block: find the next block
8396 if ( !(m_table
->IsEmptyCell(row
, col
)) ) break;
8401 // starting within a block: find the top of the block
8406 if ( m_table
->IsEmptyCell(row
, col
) )
8414 MakeCellVisible( row
, col
);
8415 if ( expandSelection
)
8417 m_selectingKeyboard
= wxGridCellCoords( row
, col
);
8418 HighlightBlock( m_currentCellCoords
, m_selectingKeyboard
);
8423 SetCurrentCell( row
, col
);
8431 bool wxGrid::MoveCursorDownBlock( bool expandSelection
)
8434 m_currentCellCoords
!= wxGridNoCellCoords
&&
8435 m_currentCellCoords
.GetRow() < m_numRows
-1 )
8437 int row
= m_currentCellCoords
.GetRow();
8438 int col
= m_currentCellCoords
.GetCol();
8440 if ( m_table
->IsEmptyCell(row
, col
) )
8442 // starting in an empty cell: find the next block of
8445 while ( row
< m_numRows
-1 )
8448 if ( !(m_table
->IsEmptyCell(row
, col
)) ) break;
8451 else if ( m_table
->IsEmptyCell(row
+1, col
) )
8453 // starting at the bottom of a block: find the next block
8456 while ( row
< m_numRows
-1 )
8459 if ( !(m_table
->IsEmptyCell(row
, col
)) ) break;
8464 // starting within a block: find the bottom of the block
8466 while ( row
< m_numRows
-1 )
8469 if ( m_table
->IsEmptyCell(row
, col
) )
8477 MakeCellVisible( row
, col
);
8478 if ( expandSelection
)
8480 m_selectingKeyboard
= wxGridCellCoords( row
, col
);
8481 HighlightBlock( m_currentCellCoords
, m_selectingKeyboard
);
8486 SetCurrentCell( row
, col
);
8495 bool wxGrid::MoveCursorLeftBlock( bool expandSelection
)
8498 m_currentCellCoords
!= wxGridNoCellCoords
&&
8499 m_currentCellCoords
.GetCol() > 0 )
8501 int row
= m_currentCellCoords
.GetRow();
8502 int col
= m_currentCellCoords
.GetCol();
8504 if ( m_table
->IsEmptyCell(row
, col
) )
8506 // starting in an empty cell: find the next block of
8512 if ( !(m_table
->IsEmptyCell(row
, col
)) ) break;
8515 else if ( m_table
->IsEmptyCell(row
, col
-1) )
8517 // starting at the left of a block: find the next block
8523 if ( !(m_table
->IsEmptyCell(row
, col
)) ) break;
8528 // starting within a block: find the left of the block
8533 if ( m_table
->IsEmptyCell(row
, col
) )
8541 MakeCellVisible( row
, col
);
8542 if ( expandSelection
)
8544 m_selectingKeyboard
= wxGridCellCoords( row
, col
);
8545 HighlightBlock( m_currentCellCoords
, m_selectingKeyboard
);
8550 SetCurrentCell( row
, col
);
8559 bool wxGrid::MoveCursorRightBlock( bool expandSelection
)
8562 m_currentCellCoords
!= wxGridNoCellCoords
&&
8563 m_currentCellCoords
.GetCol() < m_numCols
-1 )
8565 int row
= m_currentCellCoords
.GetRow();
8566 int col
= m_currentCellCoords
.GetCol();
8568 if ( m_table
->IsEmptyCell(row
, col
) )
8570 // starting in an empty cell: find the next block of
8573 while ( col
< m_numCols
-1 )
8576 if ( !(m_table
->IsEmptyCell(row
, col
)) ) break;
8579 else if ( m_table
->IsEmptyCell(row
, col
+1) )
8581 // starting at the right of a block: find the next block
8584 while ( col
< m_numCols
-1 )
8587 if ( !(m_table
->IsEmptyCell(row
, col
)) ) break;
8592 // starting within a block: find the right of the block
8594 while ( col
< m_numCols
-1 )
8597 if ( m_table
->IsEmptyCell(row
, col
) )
8605 MakeCellVisible( row
, col
);
8606 if ( expandSelection
)
8608 m_selectingKeyboard
= wxGridCellCoords( row
, col
);
8609 HighlightBlock( m_currentCellCoords
, m_selectingKeyboard
);
8614 SetCurrentCell( row
, col
);
8626 // ------ Label values and formatting
8629 void wxGrid::GetRowLabelAlignment( int *horiz
, int *vert
)
8631 *horiz
= m_rowLabelHorizAlign
;
8632 *vert
= m_rowLabelVertAlign
;
8635 void wxGrid::GetColLabelAlignment( int *horiz
, int *vert
)
8637 *horiz
= m_colLabelHorizAlign
;
8638 *vert
= m_colLabelVertAlign
;
8641 int wxGrid::GetColLabelTextOrientation()
8643 return m_colLabelTextOrientation
;
8646 wxString
wxGrid::GetRowLabelValue( int row
)
8650 return m_table
->GetRowLabelValue( row
);
8660 wxString
wxGrid::GetColLabelValue( int col
)
8664 return m_table
->GetColLabelValue( col
);
8675 void wxGrid::SetRowLabelSize( int width
)
8677 width
= wxMax( width
, 0 );
8678 if ( width
!= m_rowLabelWidth
)
8682 m_rowLabelWin
->Show( false );
8683 m_cornerLabelWin
->Show( false );
8685 else if ( m_rowLabelWidth
== 0 )
8687 m_rowLabelWin
->Show( true );
8688 if ( m_colLabelHeight
> 0 ) m_cornerLabelWin
->Show( true );
8691 m_rowLabelWidth
= width
;
8693 wxScrolledWindow::Refresh( true );
8698 void wxGrid::SetColLabelSize( int height
)
8700 height
= wxMax( height
, 0 );
8701 if ( height
!= m_colLabelHeight
)
8705 m_colLabelWin
->Show( false );
8706 m_cornerLabelWin
->Show( false );
8708 else if ( m_colLabelHeight
== 0 )
8710 m_colLabelWin
->Show( true );
8711 if ( m_rowLabelWidth
> 0 ) m_cornerLabelWin
->Show( true );
8714 m_colLabelHeight
= height
;
8716 wxScrolledWindow::Refresh( true );
8721 void wxGrid::SetLabelBackgroundColour( const wxColour
& colour
)
8723 if ( m_labelBackgroundColour
!= colour
)
8725 m_labelBackgroundColour
= colour
;
8726 m_rowLabelWin
->SetBackgroundColour( colour
);
8727 m_colLabelWin
->SetBackgroundColour( colour
);
8728 m_cornerLabelWin
->SetBackgroundColour( colour
);
8730 if ( !GetBatchCount() )
8732 m_rowLabelWin
->Refresh();
8733 m_colLabelWin
->Refresh();
8734 m_cornerLabelWin
->Refresh();
8739 void wxGrid::SetLabelTextColour( const wxColour
& colour
)
8741 if ( m_labelTextColour
!= colour
)
8743 m_labelTextColour
= colour
;
8744 if ( !GetBatchCount() )
8746 m_rowLabelWin
->Refresh();
8747 m_colLabelWin
->Refresh();
8752 void wxGrid::SetLabelFont( const wxFont
& font
)
8755 if ( !GetBatchCount() )
8757 m_rowLabelWin
->Refresh();
8758 m_colLabelWin
->Refresh();
8762 void wxGrid::SetRowLabelAlignment( int horiz
, int vert
)
8764 // allow old (incorrect) defs to be used
8767 case wxLEFT
: horiz
= wxALIGN_LEFT
; break;
8768 case wxRIGHT
: horiz
= wxALIGN_RIGHT
; break;
8769 case wxCENTRE
: horiz
= wxALIGN_CENTRE
; break;
8774 case wxTOP
: vert
= wxALIGN_TOP
; break;
8775 case wxBOTTOM
: vert
= wxALIGN_BOTTOM
; break;
8776 case wxCENTRE
: vert
= wxALIGN_CENTRE
; break;
8779 if ( horiz
== wxALIGN_LEFT
|| horiz
== wxALIGN_CENTRE
|| horiz
== wxALIGN_RIGHT
)
8781 m_rowLabelHorizAlign
= horiz
;
8784 if ( vert
== wxALIGN_TOP
|| vert
== wxALIGN_CENTRE
|| vert
== wxALIGN_BOTTOM
)
8786 m_rowLabelVertAlign
= vert
;
8789 if ( !GetBatchCount() )
8791 m_rowLabelWin
->Refresh();
8795 void wxGrid::SetColLabelAlignment( int horiz
, int vert
)
8797 // allow old (incorrect) defs to be used
8800 case wxLEFT
: horiz
= wxALIGN_LEFT
; break;
8801 case wxRIGHT
: horiz
= wxALIGN_RIGHT
; break;
8802 case wxCENTRE
: horiz
= wxALIGN_CENTRE
; break;
8807 case wxTOP
: vert
= wxALIGN_TOP
; break;
8808 case wxBOTTOM
: vert
= wxALIGN_BOTTOM
; break;
8809 case wxCENTRE
: vert
= wxALIGN_CENTRE
; break;
8812 if ( horiz
== wxALIGN_LEFT
|| horiz
== wxALIGN_CENTRE
|| horiz
== wxALIGN_RIGHT
)
8814 m_colLabelHorizAlign
= horiz
;
8817 if ( vert
== wxALIGN_TOP
|| vert
== wxALIGN_CENTRE
|| vert
== wxALIGN_BOTTOM
)
8819 m_colLabelVertAlign
= vert
;
8822 if ( !GetBatchCount() )
8824 m_colLabelWin
->Refresh();
8828 // Note: under MSW, the default column label font must be changed because it
8829 // does not support vertical printing
8831 // Example: wxFont font(9, wxSWISS, wxNORMAL, wxBOLD);
8832 // pGrid->SetLabelFont(font);
8833 // pGrid->SetColLabelTextOrientation(wxVERTICAL);
8835 void wxGrid::SetColLabelTextOrientation( int textOrientation
)
8837 if( textOrientation
== wxHORIZONTAL
|| textOrientation
== wxVERTICAL
)
8839 m_colLabelTextOrientation
= textOrientation
;
8842 if ( !GetBatchCount() )
8844 m_colLabelWin
->Refresh();
8848 void wxGrid::SetRowLabelValue( int row
, const wxString
& s
)
8852 m_table
->SetRowLabelValue( row
, s
);
8853 if ( !GetBatchCount() )
8855 wxRect rect
= CellToRect( row
, 0);
8856 if ( rect
.height
> 0 )
8858 CalcScrolledPosition(0, rect
.y
, &rect
.x
, &rect
.y
);
8860 rect
.width
= m_rowLabelWidth
;
8861 m_rowLabelWin
->Refresh( true, &rect
);
8867 void wxGrid::SetColLabelValue( int col
, const wxString
& s
)
8871 m_table
->SetColLabelValue( col
, s
);
8872 if ( !GetBatchCount() )
8874 wxRect rect
= CellToRect( 0, col
);
8875 if ( rect
.width
> 0 )
8877 CalcScrolledPosition(rect
.x
, 0, &rect
.x
, &rect
.y
);
8879 rect
.height
= m_colLabelHeight
;
8880 m_colLabelWin
->Refresh( true, &rect
);
8886 void wxGrid::SetGridLineColour( const wxColour
& colour
)
8888 if ( m_gridLineColour
!= colour
)
8890 m_gridLineColour
= colour
;
8892 wxClientDC
dc( m_gridWin
);
8894 DrawAllGridLines( dc
, wxRegion() );
8899 void wxGrid::SetCellHighlightColour( const wxColour
& colour
)
8901 if ( m_cellHighlightColour
!= colour
)
8903 m_cellHighlightColour
= colour
;
8905 wxClientDC
dc( m_gridWin
);
8907 wxGridCellAttr
* attr
= GetCellAttr(m_currentCellCoords
);
8908 DrawCellHighlight(dc
, attr
);
8913 void wxGrid::SetCellHighlightPenWidth(int width
)
8915 if (m_cellHighlightPenWidth
!= width
) {
8916 m_cellHighlightPenWidth
= width
;
8918 // Just redrawing the cell highlight is not enough since that won't
8919 // make any visible change if the the thickness is getting smaller.
8920 int row
= m_currentCellCoords
.GetRow();
8921 int col
= m_currentCellCoords
.GetCol();
8922 if ( GetColWidth(col
) <= 0 || GetRowHeight(row
) <= 0 )
8924 wxRect rect
= CellToRect(row
, col
);
8925 m_gridWin
->Refresh(true, &rect
);
8929 void wxGrid::SetCellHighlightROPenWidth(int width
)
8931 if (m_cellHighlightROPenWidth
!= width
) {
8932 m_cellHighlightROPenWidth
= width
;
8934 // Just redrawing the cell highlight is not enough since that won't
8935 // make any visible change if the the thickness is getting smaller.
8936 int row
= m_currentCellCoords
.GetRow();
8937 int col
= m_currentCellCoords
.GetCol();
8938 if ( GetColWidth(col
) <= 0 || GetRowHeight(row
) <= 0 )
8940 wxRect rect
= CellToRect(row
, col
);
8941 m_gridWin
->Refresh(true, &rect
);
8945 void wxGrid::EnableGridLines( bool enable
)
8947 if ( enable
!= m_gridLinesEnabled
)
8949 m_gridLinesEnabled
= enable
;
8951 if ( !GetBatchCount() )
8955 wxClientDC
dc( m_gridWin
);
8957 DrawAllGridLines( dc
, wxRegion() );
8961 m_gridWin
->Refresh();
8968 int wxGrid::GetDefaultRowSize()
8970 return m_defaultRowHeight
;
8973 int wxGrid::GetRowSize( int row
)
8975 wxCHECK_MSG( row
>= 0 && row
< m_numRows
, 0, _T("invalid row index") );
8977 return GetRowHeight(row
);
8980 int wxGrid::GetDefaultColSize()
8982 return m_defaultColWidth
;
8985 int wxGrid::GetColSize( int col
)
8987 wxCHECK_MSG( col
>= 0 && col
< m_numCols
, 0, _T("invalid column index") );
8989 return GetColWidth(col
);
8992 // ============================================================================
8993 // access to the grid attributes: each of them has a default value in the grid
8994 // itself and may be overidden on a per-cell basis
8995 // ============================================================================
8997 // ----------------------------------------------------------------------------
8998 // setting default attributes
8999 // ----------------------------------------------------------------------------
9001 void wxGrid::SetDefaultCellBackgroundColour( const wxColour
& col
)
9003 m_defaultCellAttr
->SetBackgroundColour(col
);
9005 m_gridWin
->SetBackgroundColour(col
);
9009 void wxGrid::SetDefaultCellTextColour( const wxColour
& col
)
9011 m_defaultCellAttr
->SetTextColour(col
);
9014 void wxGrid::SetDefaultCellAlignment( int horiz
, int vert
)
9016 m_defaultCellAttr
->SetAlignment(horiz
, vert
);
9019 void wxGrid::SetDefaultCellOverflow( bool allow
)
9021 m_defaultCellAttr
->SetOverflow(allow
);
9024 void wxGrid::SetDefaultCellFont( const wxFont
& font
)
9026 m_defaultCellAttr
->SetFont(font
);
9030 // For editors and renderers the type registry takes precedence over the
9031 // default attr, so we need to register the new editor/renderer for the string
9032 // data type in order to make setting a default editor/renderer appear to
9035 void wxGrid::SetDefaultRenderer(wxGridCellRenderer
*renderer
)
9037 RegisterDataType(wxGRID_VALUE_STRING
,
9039 GetDefaultEditorForType(wxGRID_VALUE_STRING
));
9042 void wxGrid::SetDefaultEditor(wxGridCellEditor
*editor
)
9044 RegisterDataType(wxGRID_VALUE_STRING
,
9045 GetDefaultRendererForType(wxGRID_VALUE_STRING
),
9049 // ----------------------------------------------------------------------------
9050 // access to the default attrbiutes
9051 // ----------------------------------------------------------------------------
9053 wxColour
wxGrid::GetDefaultCellBackgroundColour()
9055 return m_defaultCellAttr
->GetBackgroundColour();
9058 wxColour
wxGrid::GetDefaultCellTextColour()
9060 return m_defaultCellAttr
->GetTextColour();
9063 wxFont
wxGrid::GetDefaultCellFont()
9065 return m_defaultCellAttr
->GetFont();
9068 void wxGrid::GetDefaultCellAlignment( int *horiz
, int *vert
)
9070 m_defaultCellAttr
->GetAlignment(horiz
, vert
);
9073 bool wxGrid::GetDefaultCellOverflow()
9075 return m_defaultCellAttr
->GetOverflow();
9078 wxGridCellRenderer
*wxGrid::GetDefaultRenderer() const
9080 return m_defaultCellAttr
->GetRenderer(NULL
, 0, 0);
9083 wxGridCellEditor
*wxGrid::GetDefaultEditor() const
9085 return m_defaultCellAttr
->GetEditor(NULL
,0,0);
9088 // ----------------------------------------------------------------------------
9089 // access to cell attributes
9090 // ----------------------------------------------------------------------------
9092 wxColour
wxGrid::GetCellBackgroundColour(int row
, int col
)
9094 wxGridCellAttr
*attr
= GetCellAttr(row
, col
);
9095 wxColour colour
= attr
->GetBackgroundColour();
9100 wxColour
wxGrid::GetCellTextColour( int row
, int col
)
9102 wxGridCellAttr
*attr
= GetCellAttr(row
, col
);
9103 wxColour colour
= attr
->GetTextColour();
9108 wxFont
wxGrid::GetCellFont( int row
, int col
)
9110 wxGridCellAttr
*attr
= GetCellAttr(row
, col
);
9111 wxFont font
= attr
->GetFont();
9116 void wxGrid::GetCellAlignment( int row
, int col
, int *horiz
, int *vert
)
9118 wxGridCellAttr
*attr
= GetCellAttr(row
, col
);
9119 attr
->GetAlignment(horiz
, vert
);
9123 bool wxGrid::GetCellOverflow( int row
, int col
)
9125 wxGridCellAttr
*attr
= GetCellAttr(row
, col
);
9126 bool allow
= attr
->GetOverflow();
9131 void wxGrid::GetCellSize( int row
, int col
, int *num_rows
, int *num_cols
)
9133 wxGridCellAttr
*attr
= GetCellAttr(row
, col
);
9134 attr
->GetSize( num_rows
, num_cols
);
9138 wxGridCellRenderer
* wxGrid::GetCellRenderer(int row
, int col
)
9140 wxGridCellAttr
* attr
= GetCellAttr(row
, col
);
9141 wxGridCellRenderer
* renderer
= attr
->GetRenderer(this, row
, col
);
9147 wxGridCellEditor
* wxGrid::GetCellEditor(int row
, int col
)
9149 wxGridCellAttr
* attr
= GetCellAttr(row
, col
);
9150 wxGridCellEditor
* editor
= attr
->GetEditor(this, row
, col
);
9156 bool wxGrid::IsReadOnly(int row
, int col
) const
9158 wxGridCellAttr
* attr
= GetCellAttr(row
, col
);
9159 bool isReadOnly
= attr
->IsReadOnly();
9164 // ----------------------------------------------------------------------------
9165 // attribute support: cache, automatic provider creation, ...
9166 // ----------------------------------------------------------------------------
9168 bool wxGrid::CanHaveAttributes()
9175 return m_table
->CanHaveAttributes();
9178 void wxGrid::ClearAttrCache()
9180 if ( m_attrCache
.row
!= -1 )
9182 wxSafeDecRef(m_attrCache
.attr
);
9183 m_attrCache
.attr
= NULL
;
9184 m_attrCache
.row
= -1;
9188 void wxGrid::CacheAttr(int row
, int col
, wxGridCellAttr
*attr
) const
9192 wxGrid
*self
= (wxGrid
*)this; // const_cast
9194 self
->ClearAttrCache();
9195 self
->m_attrCache
.row
= row
;
9196 self
->m_attrCache
.col
= col
;
9197 self
->m_attrCache
.attr
= attr
;
9202 bool wxGrid::LookupAttr(int row
, int col
, wxGridCellAttr
**attr
) const
9204 if ( row
== m_attrCache
.row
&& col
== m_attrCache
.col
)
9206 *attr
= m_attrCache
.attr
;
9207 wxSafeIncRef(m_attrCache
.attr
);
9209 #ifdef DEBUG_ATTR_CACHE
9210 gs_nAttrCacheHits
++;
9217 #ifdef DEBUG_ATTR_CACHE
9218 gs_nAttrCacheMisses
++;
9224 wxGridCellAttr
*wxGrid::GetCellAttr(int row
, int col
) const
9226 wxGridCellAttr
*attr
= NULL
;
9227 // Additional test to avoid looking at the cache e.g. for
9228 // wxNoCellCoords, as this will confuse memory management.
9231 if ( !LookupAttr(row
, col
, &attr
) )
9233 attr
= m_table
? m_table
->GetAttr(row
, col
, wxGridCellAttr::Any
)
9234 : (wxGridCellAttr
*)NULL
;
9235 CacheAttr(row
, col
, attr
);
9240 attr
->SetDefAttr(m_defaultCellAttr
);
9244 attr
= m_defaultCellAttr
;
9251 wxGridCellAttr
*wxGrid::GetOrCreateCellAttr(int row
, int col
) const
9253 wxGridCellAttr
*attr
= (wxGridCellAttr
*)NULL
;
9254 bool canHave
= ((wxGrid
*)this)->CanHaveAttributes();
9256 wxCHECK_MSG( canHave
, attr
, _T("Cell attributes not allowed"));
9257 wxCHECK_MSG( m_table
, attr
, _T("must have a table") );
9259 attr
= m_table
->GetAttr(row
, col
, wxGridCellAttr::Cell
);
9262 attr
= new wxGridCellAttr(m_defaultCellAttr
);
9264 // artificially inc the ref count to match DecRef() in caller
9266 m_table
->SetAttr(attr
, row
, col
);
9272 // ----------------------------------------------------------------------------
9273 // setting column attributes (wrappers around SetColAttr)
9274 // ----------------------------------------------------------------------------
9276 void wxGrid::SetColFormatBool(int col
)
9278 SetColFormatCustom(col
, wxGRID_VALUE_BOOL
);
9281 void wxGrid::SetColFormatNumber(int col
)
9283 SetColFormatCustom(col
, wxGRID_VALUE_NUMBER
);
9286 void wxGrid::SetColFormatFloat(int col
, int width
, int precision
)
9288 wxString typeName
= wxGRID_VALUE_FLOAT
;
9289 if ( (width
!= -1) || (precision
!= -1) )
9291 typeName
<< _T(':') << width
<< _T(',') << precision
;
9294 SetColFormatCustom(col
, typeName
);
9297 void wxGrid::SetColFormatCustom(int col
, const wxString
& typeName
)
9299 wxGridCellAttr
*attr
= m_table
->GetAttr(-1, col
, wxGridCellAttr::Col
);
9301 attr
= new wxGridCellAttr
;
9302 wxGridCellRenderer
*renderer
= GetDefaultRendererForType(typeName
);
9303 attr
->SetRenderer(renderer
);
9305 SetColAttr(col
, attr
);
9309 // ----------------------------------------------------------------------------
9310 // setting cell attributes: this is forwarded to the table
9311 // ----------------------------------------------------------------------------
9313 void wxGrid::SetAttr(int row
, int col
, wxGridCellAttr
*attr
)
9315 if ( CanHaveAttributes() )
9317 m_table
->SetAttr(attr
, row
, col
);
9326 void wxGrid::SetRowAttr(int row
, wxGridCellAttr
*attr
)
9328 if ( CanHaveAttributes() )
9330 m_table
->SetRowAttr(attr
, row
);
9339 void wxGrid::SetColAttr(int col
, wxGridCellAttr
*attr
)
9341 if ( CanHaveAttributes() )
9343 m_table
->SetColAttr(attr
, col
);
9352 void wxGrid::SetCellBackgroundColour( int row
, int col
, const wxColour
& colour
)
9354 if ( CanHaveAttributes() )
9356 wxGridCellAttr
*attr
= GetOrCreateCellAttr(row
, col
);
9357 attr
->SetBackgroundColour(colour
);
9362 void wxGrid::SetCellTextColour( int row
, int col
, const wxColour
& colour
)
9364 if ( CanHaveAttributes() )
9366 wxGridCellAttr
*attr
= GetOrCreateCellAttr(row
, col
);
9367 attr
->SetTextColour(colour
);
9372 void wxGrid::SetCellFont( int row
, int col
, const wxFont
& font
)
9374 if ( CanHaveAttributes() )
9376 wxGridCellAttr
*attr
= GetOrCreateCellAttr(row
, col
);
9377 attr
->SetFont(font
);
9382 void wxGrid::SetCellAlignment( int row
, int col
, int horiz
, int vert
)
9384 if ( CanHaveAttributes() )
9386 wxGridCellAttr
*attr
= GetOrCreateCellAttr(row
, col
);
9387 attr
->SetAlignment(horiz
, vert
);
9392 void wxGrid::SetCellOverflow( int row
, int col
, bool allow
)
9394 if ( CanHaveAttributes() )
9396 wxGridCellAttr
*attr
= GetOrCreateCellAttr(row
, col
);
9397 attr
->SetOverflow(allow
);
9402 void wxGrid::SetCellSize( int row
, int col
, int num_rows
, int num_cols
)
9404 if ( CanHaveAttributes() )
9406 int cell_rows
, cell_cols
;
9408 wxGridCellAttr
*attr
= GetOrCreateCellAttr(row
, col
);
9409 attr
->GetSize(&cell_rows
, &cell_cols
);
9410 attr
->SetSize(num_rows
, num_cols
);
9413 // Cannot set the size of a cell to 0 or negative values
9414 // While it is perfectly legal to do that, this function cannot
9415 // handle all the possibilies, do it by hand by getting the CellAttr.
9416 // You can only set the size of a cell to 1,1 or greater with this fn
9417 wxASSERT_MSG( !((cell_rows
< 1) || (cell_cols
< 1)),
9418 wxT("wxGrid::SetCellSize setting cell size that is already part of another cell"));
9419 wxASSERT_MSG( !((num_rows
< 1) || (num_cols
< 1)),
9420 wxT("wxGrid::SetCellSize setting cell size to < 1"));
9422 // if this was already a multicell then "turn off" the other cells first
9423 if ((cell_rows
> 1) || (cell_rows
> 1))
9426 for (j
=row
; j
<row
+cell_rows
; j
++)
9428 for (i
=col
; i
<col
+cell_cols
; i
++)
9430 if ((i
!= col
) || (j
!= row
))
9432 wxGridCellAttr
*attr_stub
= GetOrCreateCellAttr(j
, i
);
9433 attr_stub
->SetSize( 1, 1 );
9434 attr_stub
->DecRef();
9440 // mark the cells that will be covered by this cell to
9441 // negative or zero values to point back at this cell
9442 if (((num_rows
> 1) || (num_cols
> 1)) && (num_rows
>= 1) && (num_cols
>= 1))
9445 for (j
=row
; j
<row
+num_rows
; j
++)
9447 for (i
=col
; i
<col
+num_cols
; i
++)
9449 if ((i
!= col
) || (j
!= row
))
9451 wxGridCellAttr
*attr_stub
= GetOrCreateCellAttr(j
, i
);
9452 attr_stub
->SetSize( row
-j
, col
-i
);
9453 attr_stub
->DecRef();
9461 void wxGrid::SetCellRenderer(int row
, int col
, wxGridCellRenderer
*renderer
)
9463 if ( CanHaveAttributes() )
9465 wxGridCellAttr
*attr
= GetOrCreateCellAttr(row
, col
);
9466 attr
->SetRenderer(renderer
);
9471 void wxGrid::SetCellEditor(int row
, int col
, wxGridCellEditor
* editor
)
9473 if ( CanHaveAttributes() )
9475 wxGridCellAttr
*attr
= GetOrCreateCellAttr(row
, col
);
9476 attr
->SetEditor(editor
);
9481 void wxGrid::SetReadOnly(int row
, int col
, bool isReadOnly
)
9483 if ( CanHaveAttributes() )
9485 wxGridCellAttr
*attr
= GetOrCreateCellAttr(row
, col
);
9486 attr
->SetReadOnly(isReadOnly
);
9491 // ----------------------------------------------------------------------------
9492 // Data type registration
9493 // ----------------------------------------------------------------------------
9495 void wxGrid::RegisterDataType(const wxString
& typeName
,
9496 wxGridCellRenderer
* renderer
,
9497 wxGridCellEditor
* editor
)
9499 m_typeRegistry
->RegisterDataType(typeName
, renderer
, editor
);
9503 wxGridCellEditor
* wxGrid::GetDefaultEditorForCell(int row
, int col
) const
9505 wxString typeName
= m_table
->GetTypeName(row
, col
);
9506 return GetDefaultEditorForType(typeName
);
9509 wxGridCellRenderer
* wxGrid::GetDefaultRendererForCell(int row
, int col
) const
9511 wxString typeName
= m_table
->GetTypeName(row
, col
);
9512 return GetDefaultRendererForType(typeName
);
9516 wxGrid::GetDefaultEditorForType(const wxString
& typeName
) const
9518 int index
= m_typeRegistry
->FindOrCloneDataType(typeName
);
9519 if ( index
== wxNOT_FOUND
)
9521 wxFAIL_MSG(wxT("Unknown data type name"));
9526 return m_typeRegistry
->GetEditor(index
);
9530 wxGrid::GetDefaultRendererForType(const wxString
& typeName
) const
9532 int index
= m_typeRegistry
->FindOrCloneDataType(typeName
);
9533 if ( index
== wxNOT_FOUND
)
9535 wxFAIL_MSG(wxT("Unknown data type name"));
9540 return m_typeRegistry
->GetRenderer(index
);
9544 // ----------------------------------------------------------------------------
9546 // ----------------------------------------------------------------------------
9548 void wxGrid::EnableDragRowSize( bool enable
)
9550 m_canDragRowSize
= enable
;
9554 void wxGrid::EnableDragColSize( bool enable
)
9556 m_canDragColSize
= enable
;
9559 void wxGrid::EnableDragGridSize( bool enable
)
9561 m_canDragGridSize
= enable
;
9564 void wxGrid::EnableDragCell( bool enable
)
9566 m_canDragCell
= enable
;
9569 void wxGrid::SetDefaultRowSize( int height
, bool resizeExistingRows
)
9571 m_defaultRowHeight
= wxMax( height
, m_minAcceptableRowHeight
);
9573 if ( resizeExistingRows
)
9575 // since we are resizing all rows to the default row size,
9576 // we can simply clear the row heights and row bottoms
9577 // arrays (which also allows us to take advantage of
9578 // some speed optimisations)
9579 m_rowHeights
.Empty();
9580 m_rowBottoms
.Empty();
9581 if ( !GetBatchCount() )
9586 void wxGrid::SetRowSize( int row
, int height
)
9588 wxCHECK_RET( row
>= 0 && row
< m_numRows
, _T("invalid row index") );
9590 // See comment in SetColSize
9591 if ( height
< GetRowMinimalAcceptableHeight()) { return; }
9593 if ( m_rowHeights
.IsEmpty() )
9595 // need to really create the array
9599 int h
= wxMax( 0, height
);
9600 int diff
= h
- m_rowHeights
[row
];
9602 m_rowHeights
[row
] = h
;
9604 for ( i
= row
; i
< m_numRows
; i
++ )
9606 m_rowBottoms
[i
] += diff
;
9608 if ( !GetBatchCount() )
9612 void wxGrid::SetDefaultColSize( int width
, bool resizeExistingCols
)
9614 m_defaultColWidth
= wxMax( width
, m_minAcceptableColWidth
);
9616 if ( resizeExistingCols
)
9618 // since we are resizing all columns to the default column size,
9619 // we can simply clear the col widths and col rights
9620 // arrays (which also allows us to take advantage of
9621 // some speed optimisations)
9622 m_colWidths
.Empty();
9623 m_colRights
.Empty();
9624 if ( !GetBatchCount() )
9629 void wxGrid::SetColSize( int col
, int width
)
9631 wxCHECK_RET( col
>= 0 && col
< m_numCols
, _T("invalid column index") );
9633 // should we check that it's bigger than GetColMinimalWidth(col) here?
9635 // No, because it is reasonable to assume the library user know's
9636 // what he is doing. However whe should test against the weaker
9637 // constariant of minimalAcceptableWidth, as this breaks rendering
9639 // This test then fixes sf.net bug #645734
9641 if ( width
< GetColMinimalAcceptableWidth()) { return; }
9643 if ( m_colWidths
.IsEmpty() )
9645 // need to really create the array
9649 // if < 0 calc new width from label
9653 wxArrayString lines
;
9654 wxClientDC
dc(m_colLabelWin
);
9655 dc
.SetFont(GetLabelFont());
9656 StringToLines(GetColLabelValue(col
), lines
);
9657 GetTextBoxSize(dc
, lines
, &w
, &h
);
9660 int w
= wxMax( 0, width
);
9661 int diff
= w
- m_colWidths
[col
];
9662 m_colWidths
[col
] = w
;
9665 for ( i
= col
; i
< m_numCols
; i
++ )
9667 m_colRights
[i
] += diff
;
9669 if ( !GetBatchCount() )
9674 void wxGrid::SetColMinimalWidth( int col
, int width
)
9676 if (width
> GetColMinimalAcceptableWidth()) {
9677 wxLongToLongHashMap::key_type key
= (wxLongToLongHashMap::key_type
)col
;
9678 m_colMinWidths
[key
] = width
;
9682 void wxGrid::SetRowMinimalHeight( int row
, int width
)
9684 if (width
> GetRowMinimalAcceptableHeight()) {
9685 wxLongToLongHashMap::key_type key
= (wxLongToLongHashMap::key_type
)row
;
9686 m_rowMinHeights
[key
] = width
;
9690 int wxGrid::GetColMinimalWidth(int col
) const
9692 wxLongToLongHashMap::key_type key
= (wxLongToLongHashMap::key_type
)col
;
9693 wxLongToLongHashMap::const_iterator it
= m_colMinWidths
.find(key
);
9694 return it
!= m_colMinWidths
.end() ? (int)it
->second
: m_minAcceptableColWidth
;
9697 int wxGrid::GetRowMinimalHeight(int row
) const
9699 wxLongToLongHashMap::key_type key
= (wxLongToLongHashMap::key_type
)row
;
9700 wxLongToLongHashMap::const_iterator it
= m_rowMinHeights
.find(key
);
9701 return it
!= m_rowMinHeights
.end() ? (int)it
->second
: m_minAcceptableRowHeight
;
9704 void wxGrid::SetColMinimalAcceptableWidth( int width
)
9706 // We do allow a width of 0 since this gives us
9707 // an easy way to temporarily hidding columns.
9710 m_minAcceptableColWidth
= width
;
9713 void wxGrid::SetRowMinimalAcceptableHeight( int height
)
9715 // We do allow a height of 0 since this gives us
9716 // an easy way to temporarily hidding rows.
9719 m_minAcceptableRowHeight
= height
;
9722 int wxGrid::GetColMinimalAcceptableWidth() const
9724 return m_minAcceptableColWidth
;
9727 int wxGrid::GetRowMinimalAcceptableHeight() const
9729 return m_minAcceptableRowHeight
;
9732 // ----------------------------------------------------------------------------
9734 // ----------------------------------------------------------------------------
9736 void wxGrid::AutoSizeColOrRow( int colOrRow
, bool setAsMin
, bool column
)
9738 wxClientDC
dc(m_gridWin
);
9740 //Cancel editting of cell
9741 HideCellEditControl();
9742 SaveEditControlValue();
9744 // init both of them to avoid compiler warnings, even if weo nly need one
9752 wxCoord extent
, extentMax
= 0;
9753 int max
= column
? m_numRows
: m_numCols
;
9754 for ( int rowOrCol
= 0; rowOrCol
< max
; rowOrCol
++ )
9761 wxGridCellAttr
* attr
= GetCellAttr(row
, col
);
9762 wxGridCellRenderer
* renderer
= attr
->GetRenderer(this, row
, col
);
9765 wxSize size
= renderer
->GetBestSize(*this, *attr
, dc
, row
, col
);
9766 extent
= column
? size
.x
: size
.y
;
9767 if ( extent
> extentMax
)
9778 // now also compare with the column label extent
9780 dc
.SetFont( GetLabelFont() );
9784 dc
.GetTextExtent( GetColLabelValue(col
), &w
, &h
);
9785 if( GetColLabelTextOrientation() == wxVERTICAL
)
9789 dc
.GetTextExtent( GetRowLabelValue(row
), &w
, &h
);
9791 extent
= column
? w
: h
;
9792 if ( extent
> extentMax
)
9799 // empty column - give default extent (notice that if extentMax is less
9800 // than default extent but != 0, it's ok)
9801 extentMax
= column
? m_defaultColWidth
: m_defaultRowHeight
;
9807 // leave some space around text
9818 SetColSize(col
, extentMax
);
9819 if ( !GetBatchCount() )
9822 m_gridWin
->GetClientSize( &cw
, &ch
);
9823 wxRect
rect ( CellToRect( 0, col
) );
9825 CalcScrolledPosition(rect
.x
, 0, &rect
.x
, &dummy
);
9826 rect
.width
= cw
- rect
.x
;
9827 rect
.height
= m_colLabelHeight
;
9828 m_colLabelWin
->Refresh( true, &rect
);
9833 SetRowSize(row
, extentMax
);
9834 if ( !GetBatchCount() )
9837 m_gridWin
->GetClientSize( &cw
, &ch
);
9838 wxRect
rect ( CellToRect( row
, 0 ) );
9840 CalcScrolledPosition(0, rect
.y
, &dummy
, &rect
.y
);
9841 rect
.width
= m_rowLabelWidth
;
9842 rect
.height
= ch
- rect
.y
;
9843 m_rowLabelWin
->Refresh( true, &rect
);
9849 SetColMinimalWidth(col
, extentMax
);
9851 SetRowMinimalHeight(row
, extentMax
);
9855 int wxGrid::SetOrCalcColumnSizes(bool calcOnly
, bool setAsMin
)
9857 int width
= m_rowLabelWidth
;
9862 for ( int col
= 0; col
< m_numCols
; col
++ )
9866 AutoSizeColumn(col
, setAsMin
);
9869 width
+= GetColWidth(col
);
9878 int wxGrid::SetOrCalcRowSizes(bool calcOnly
, bool setAsMin
)
9880 int height
= m_colLabelHeight
;
9885 for ( int row
= 0; row
< m_numRows
; row
++ )
9889 AutoSizeRow(row
, setAsMin
);
9892 height
+= GetRowHeight(row
);
9901 void wxGrid::AutoSize()
9905 wxSize
size(SetOrCalcColumnSizes(false), SetOrCalcRowSizes(false));
9907 // round up the size to a multiple of scroll step - this ensures that we
9908 // won't get the scrollbars if we're sized exactly to this width
9909 // CalcDimension adds m_extraWidth + 1 etc. to calculate the necessary
9911 wxSize
sizeFit(GetScrollX(size
.x
+ m_extraWidth
+ 1) * m_scrollLineX
,
9912 GetScrollY(size
.y
+ m_extraHeight
+ 1) * m_scrollLineY
);
9914 // distribute the extra space between the columns/rows to avoid having
9915 // extra white space
9917 // Remove the extra m_extraWidth + 1 added above
9918 wxCoord diff
= sizeFit
.x
- size
.x
+ (m_extraWidth
+ 1);
9919 if ( diff
&& m_numCols
)
9921 // try to resize the columns uniformly
9922 wxCoord diffPerCol
= diff
/ m_numCols
;
9925 for ( int col
= 0; col
< m_numCols
; col
++ )
9927 SetColSize(col
, GetColWidth(col
) + diffPerCol
);
9931 // add remaining amount to the last columns
9932 diff
-= diffPerCol
* m_numCols
;
9935 for ( int col
= m_numCols
- 1; col
>= m_numCols
- diff
; col
-- )
9937 SetColSize(col
, GetColWidth(col
) + 1);
9943 diff
= sizeFit
.y
- size
.y
- (m_extraHeight
+ 1);
9944 if ( diff
&& m_numRows
)
9946 // try to resize the columns uniformly
9947 wxCoord diffPerRow
= diff
/ m_numRows
;
9950 for ( int row
= 0; row
< m_numRows
; row
++ )
9952 SetRowSize(row
, GetRowHeight(row
) + diffPerRow
);
9956 // add remaining amount to the last rows
9957 diff
-= diffPerRow
* m_numRows
;
9960 for ( int row
= m_numRows
- 1; row
>= m_numRows
- diff
; row
-- )
9962 SetRowSize(row
, GetRowHeight(row
) + 1);
9969 SetClientSize(sizeFit
);
9972 void wxGrid::AutoSizeRowLabelSize( int row
)
9974 wxArrayString lines
;
9977 // Hide the edit control, so it
9978 // won't interfer with drag-shrinking.
9979 if( IsCellEditControlShown() )
9981 HideCellEditControl();
9982 SaveEditControlValue();
9985 // autosize row height depending on label text
9986 StringToLines( GetRowLabelValue( row
), lines
);
9987 wxClientDC
dc( m_rowLabelWin
);
9988 GetTextBoxSize( dc
, lines
, &w
, &h
);
9989 if( h
< m_defaultRowHeight
)
9990 h
= m_defaultRowHeight
;
9995 void wxGrid::AutoSizeColLabelSize( int col
)
9997 wxArrayString lines
;
10000 // Hide the edit control, so it
10001 // won't interfer with drag-shrinking.
10002 if( IsCellEditControlShown() )
10004 HideCellEditControl();
10005 SaveEditControlValue();
10008 // autosize column width depending on label text
10009 StringToLines( GetColLabelValue( col
), lines
);
10010 wxClientDC
dc( m_colLabelWin
);
10011 if( GetColLabelTextOrientation() == wxHORIZONTAL
)
10012 GetTextBoxSize( dc
, lines
, &w
, &h
);
10014 GetTextBoxSize( dc
, lines
, &h
, &w
);
10015 if( w
< m_defaultColWidth
)
10016 w
= m_defaultColWidth
;
10017 SetColSize(col
, w
);
10021 wxSize
wxGrid::DoGetBestSize() const
10023 // don't set sizes, only calculate them
10024 wxGrid
*self
= (wxGrid
*)this; // const_cast
10027 width
= self
->SetOrCalcColumnSizes(true);
10028 height
= self
->SetOrCalcRowSizes(true);
10030 if (!width
) width
=100;
10031 if (!height
) height
=80;
10033 // Round up to a multiple the scroll rate NOTE: this still doesn't get rid
10034 // of the scrollbars, is there any magic incantaion for that?
10036 GetScrollPixelsPerUnit(&xpu
, &ypu
);
10038 width
+= 1 + xpu
- (width
% xpu
);
10040 height
+= 1 + ypu
- (height
% ypu
);
10042 // limit to 1/4 of the screen size
10043 int maxwidth
, maxheight
;
10044 wxDisplaySize( & maxwidth
, & maxheight
);
10047 if ( width
> maxwidth
) width
= maxwidth
;
10048 if ( height
> maxheight
) height
= maxheight
;
10051 wxSize
best(width
, height
);
10052 // NOTE: This size should be cached, but first we need to add calls to
10053 // InvalidateBestSize everywhere that could change the results of this
10055 // CacheBestSize(size);
10065 wxPen
& wxGrid::GetDividerPen() const
10070 // ----------------------------------------------------------------------------
10071 // cell value accessor functions
10072 // ----------------------------------------------------------------------------
10074 void wxGrid::SetCellValue( int row
, int col
, const wxString
& s
)
10078 m_table
->SetValue( row
, col
, s
);
10079 if ( !GetBatchCount() )
10082 wxRect
rect( CellToRect( row
, col
) );
10084 rect
.width
= m_gridWin
->GetClientSize().GetWidth();
10085 CalcScrolledPosition(0, rect
.y
, &dummy
, &rect
.y
);
10086 m_gridWin
->Refresh( false, &rect
);
10089 if ( m_currentCellCoords
.GetRow() == row
&&
10090 m_currentCellCoords
.GetCol() == col
&&
10091 IsCellEditControlShown())
10092 // Note: If we are using IsCellEditControlEnabled,
10093 // this interacts badly with calling SetCellValue from
10094 // an EVT_GRID_CELL_CHANGE handler.
10096 HideCellEditControl();
10097 ShowCellEditControl(); // will reread data from table
10104 // ------ Block, row and col selection
10107 void wxGrid::SelectRow( int row
, bool addToSelected
)
10109 if ( IsSelection() && !addToSelected
)
10113 m_selection
->SelectRow( row
, false, addToSelected
);
10117 void wxGrid::SelectCol( int col
, bool addToSelected
)
10119 if ( IsSelection() && !addToSelected
)
10123 m_selection
->SelectCol( col
, false, addToSelected
);
10127 void wxGrid::SelectBlock( int topRow
, int leftCol
, int bottomRow
, int rightCol
,
10128 bool addToSelected
)
10130 if ( IsSelection() && !addToSelected
)
10134 m_selection
->SelectBlock( topRow
, leftCol
, bottomRow
, rightCol
,
10135 false, addToSelected
);
10139 void wxGrid::SelectAll()
10141 if ( m_numRows
> 0 && m_numCols
> 0 )
10144 m_selection
->SelectBlock( 0, 0, m_numRows
-1, m_numCols
-1 );
10149 // ------ Cell, row and col deselection
10152 void wxGrid::DeselectRow( int row
)
10154 if ( !m_selection
)
10157 if ( m_selection
->GetSelectionMode() == wxGrid::wxGridSelectRows
)
10159 if ( m_selection
->IsInSelection(row
, 0 ) )
10160 m_selection
->ToggleCellSelection( row
, 0);
10164 int nCols
= GetNumberCols();
10165 for ( int i
= 0; i
< nCols
; i
++ )
10167 if ( m_selection
->IsInSelection(row
, i
) )
10168 m_selection
->ToggleCellSelection( row
, i
);
10173 void wxGrid::DeselectCol( int col
)
10175 if ( !m_selection
)
10178 if ( m_selection
->GetSelectionMode() == wxGrid::wxGridSelectColumns
)
10180 if ( m_selection
->IsInSelection(0, col
) )
10181 m_selection
->ToggleCellSelection( 0, col
);
10185 int nRows
= GetNumberRows();
10186 for ( int i
= 0; i
< nRows
; i
++ )
10188 if ( m_selection
->IsInSelection(i
, col
) )
10189 m_selection
->ToggleCellSelection(i
, col
);
10194 void wxGrid::DeselectCell( int row
, int col
)
10196 if ( m_selection
&& m_selection
->IsInSelection(row
, col
) )
10197 m_selection
->ToggleCellSelection(row
, col
);
10200 bool wxGrid::IsSelection()
10202 return ( m_selection
&& (m_selection
->IsSelection() ||
10203 ( m_selectingTopLeft
!= wxGridNoCellCoords
&&
10204 m_selectingBottomRight
!= wxGridNoCellCoords
) ) );
10207 bool wxGrid::IsInSelection( int row
, int col
) const
10209 return ( m_selection
&& (m_selection
->IsInSelection( row
, col
) ||
10210 ( row
>= m_selectingTopLeft
.GetRow() &&
10211 col
>= m_selectingTopLeft
.GetCol() &&
10212 row
<= m_selectingBottomRight
.GetRow() &&
10213 col
<= m_selectingBottomRight
.GetCol() )) );
10216 wxGridCellCoordsArray
wxGrid::GetSelectedCells() const
10218 if (!m_selection
) { wxGridCellCoordsArray a
; return a
; }
10219 return m_selection
->m_cellSelection
;
10221 wxGridCellCoordsArray
wxGrid::GetSelectionBlockTopLeft() const
10223 if (!m_selection
) { wxGridCellCoordsArray a
; return a
; }
10224 return m_selection
->m_blockSelectionTopLeft
;
10226 wxGridCellCoordsArray
wxGrid::GetSelectionBlockBottomRight() const
10228 if (!m_selection
) { wxGridCellCoordsArray a
; return a
; }
10229 return m_selection
->m_blockSelectionBottomRight
;
10231 wxArrayInt
wxGrid::GetSelectedRows() const
10233 if (!m_selection
) { wxArrayInt a
; return a
; }
10234 return m_selection
->m_rowSelection
;
10236 wxArrayInt
wxGrid::GetSelectedCols() const
10238 if (!m_selection
) { wxArrayInt a
; return a
; }
10239 return m_selection
->m_colSelection
;
10243 void wxGrid::ClearSelection()
10245 m_selectingTopLeft
= wxGridNoCellCoords
;
10246 m_selectingBottomRight
= wxGridNoCellCoords
;
10248 m_selection
->ClearSelection();
10252 // This function returns the rectangle that encloses the given block
10253 // in device coords clipped to the client size of the grid window.
10255 wxRect
wxGrid::BlockToDeviceRect( const wxGridCellCoords
&topLeft
,
10256 const wxGridCellCoords
&bottomRight
)
10258 wxRect
rect( wxGridNoCellRect
);
10261 cellRect
= CellToRect( topLeft
);
10262 if ( cellRect
!= wxGridNoCellRect
)
10268 rect
= wxRect(0,0,0,0);
10271 cellRect
= CellToRect( bottomRight
);
10272 if ( cellRect
!= wxGridNoCellRect
)
10278 return wxGridNoCellRect
;
10282 int left
= rect
.GetLeft();
10283 int top
= rect
.GetTop();
10284 int right
= rect
.GetRight();
10285 int bottom
= rect
.GetBottom();
10287 int leftCol
= topLeft
.GetCol();
10288 int topRow
= topLeft
.GetRow();
10289 int rightCol
= bottomRight
.GetCol();
10290 int bottomRow
= bottomRight
.GetRow();
10308 topRow
= bottomRow
;
10313 for ( j
= topRow
; j
<= bottomRow
; j
++ )
10315 for ( i
= leftCol
; i
<= rightCol
; i
++ )
10317 if ((j
==topRow
) || (j
==bottomRow
) || (i
==leftCol
) || (i
==rightCol
))
10319 cellRect
= CellToRect( j
, i
);
10321 if (cellRect
.x
< left
)
10323 if (cellRect
.y
< top
)
10325 if (cellRect
.x
+ cellRect
.width
> right
)
10326 right
= cellRect
.x
+ cellRect
.width
;
10327 if (cellRect
.y
+ cellRect
.height
> bottom
)
10328 bottom
= cellRect
.y
+ cellRect
.height
;
10330 else i
= rightCol
; // jump over inner cells.
10334 // convert to scrolled coords
10336 CalcScrolledPosition( left
, top
, &left
, &top
);
10337 CalcScrolledPosition( right
, bottom
, &right
, &bottom
);
10340 m_gridWin
->GetClientSize( &cw
, &ch
);
10342 if (right
< 0 || bottom
< 0 || left
> cw
|| top
> ch
)
10343 return wxRect(0,0,0,0);
10345 rect
.SetLeft( wxMax(0, left
) );
10346 rect
.SetTop( wxMax(0, top
) );
10347 rect
.SetRight( wxMin(cw
, right
) );
10348 rect
.SetBottom( wxMin(ch
, bottom
) );
10354 // ------ Grid event classes
10357 IMPLEMENT_DYNAMIC_CLASS( wxGridEvent
, wxNotifyEvent
)
10359 wxGridEvent::wxGridEvent( int id
, wxEventType type
, wxObject
* obj
,
10360 int row
, int col
, int x
, int y
, bool sel
,
10361 bool control
, bool shift
, bool alt
, bool meta
)
10362 : wxNotifyEvent( type
, id
)
10369 m_control
= control
;
10374 SetEventObject(obj
);
10378 IMPLEMENT_DYNAMIC_CLASS( wxGridSizeEvent
, wxNotifyEvent
)
10380 wxGridSizeEvent::wxGridSizeEvent( int id
, wxEventType type
, wxObject
* obj
,
10381 int rowOrCol
, int x
, int y
,
10382 bool control
, bool shift
, bool alt
, bool meta
)
10383 : wxNotifyEvent( type
, id
)
10385 m_rowOrCol
= rowOrCol
;
10388 m_control
= control
;
10393 SetEventObject(obj
);
10397 IMPLEMENT_DYNAMIC_CLASS( wxGridRangeSelectEvent
, wxNotifyEvent
)
10399 wxGridRangeSelectEvent::wxGridRangeSelectEvent(int id
, wxEventType type
, wxObject
* obj
,
10400 const wxGridCellCoords
& topLeft
,
10401 const wxGridCellCoords
& bottomRight
,
10402 bool sel
, bool control
,
10403 bool shift
, bool alt
, bool meta
)
10404 : wxNotifyEvent( type
, id
)
10406 m_topLeft
= topLeft
;
10407 m_bottomRight
= bottomRight
;
10409 m_control
= control
;
10414 SetEventObject(obj
);
10418 IMPLEMENT_DYNAMIC_CLASS(wxGridEditorCreatedEvent
, wxCommandEvent
)
10420 wxGridEditorCreatedEvent::wxGridEditorCreatedEvent(int id
, wxEventType type
,
10421 wxObject
* obj
, int row
,
10422 int col
, wxControl
* ctrl
)
10423 : wxCommandEvent(type
, id
)
10425 SetEventObject(obj
);
10431 #endif // wxUSE_GRID