1 ///////////////////////////////////////////////////////////////////////////
2 // Name: src/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, Santiago Palacios
8 // Copyright: (c) Michael Bedward (mbedward@ozemail.com.au)
9 // Licence: wxWindows licence
10 /////////////////////////////////////////////////////////////////////////////
12 // For compilers that support precompilation, includes "wx/wx.h".
13 #include "wx/wxprec.h"
25 #include "wx/dcclient.h"
26 #include "wx/settings.h"
28 #include "wx/textctrl.h"
29 #include "wx/checkbox.h"
30 #include "wx/combobox.h"
31 #include "wx/valtext.h"
34 #include "wx/listbox.h"
37 #include "wx/textfile.h"
38 #include "wx/spinctrl.h"
39 #include "wx/tokenzr.h"
40 #include "wx/renderer.h"
42 #include "wx/generic/gridsel.h"
44 const wxChar wxGridNameStr
[] = wxT("grid");
46 #if defined(__WXMOTIF__)
47 #define WXUNUSED_MOTIF(identifier) WXUNUSED(identifier)
49 #define WXUNUSED_MOTIF(identifier) identifier
52 #if defined(__WXGTK__)
53 #define WXUNUSED_GTK(identifier) WXUNUSED(identifier)
55 #define WXUNUSED_GTK(identifier) identifier
58 // Required for wxIs... functions
61 // ----------------------------------------------------------------------------
63 // ----------------------------------------------------------------------------
65 WX_DEFINE_ARRAY_WITH_DECL_PTR(wxGridCellAttr
*, wxArrayAttrs
,
66 class WXDLLIMPEXP_ADV
);
68 struct wxGridCellWithAttr
70 wxGridCellWithAttr(int row
, int col
, wxGridCellAttr
*attr_
)
71 : coords(row
, col
), attr(attr_
)
80 wxGridCellCoords coords
;
84 // DECLARE_NO_COPY_CLASS(wxGridCellWithAttr)
85 // without rewriting the macros, which require a public copy constructor.
88 WX_DECLARE_OBJARRAY_WITH_DECL(wxGridCellWithAttr
, wxGridCellWithAttrArray
,
89 class WXDLLIMPEXP_ADV
);
91 #include "wx/arrimpl.cpp"
93 WX_DEFINE_OBJARRAY(wxGridCellCoordsArray
)
94 WX_DEFINE_OBJARRAY(wxGridCellWithAttrArray
)
96 // ----------------------------------------------------------------------------
98 // ----------------------------------------------------------------------------
100 DEFINE_EVENT_TYPE(wxEVT_GRID_CELL_LEFT_CLICK
)
101 DEFINE_EVENT_TYPE(wxEVT_GRID_CELL_RIGHT_CLICK
)
102 DEFINE_EVENT_TYPE(wxEVT_GRID_CELL_LEFT_DCLICK
)
103 DEFINE_EVENT_TYPE(wxEVT_GRID_CELL_RIGHT_DCLICK
)
104 DEFINE_EVENT_TYPE(wxEVT_GRID_CELL_BEGIN_DRAG
)
105 DEFINE_EVENT_TYPE(wxEVT_GRID_LABEL_LEFT_CLICK
)
106 DEFINE_EVENT_TYPE(wxEVT_GRID_LABEL_RIGHT_CLICK
)
107 DEFINE_EVENT_TYPE(wxEVT_GRID_LABEL_LEFT_DCLICK
)
108 DEFINE_EVENT_TYPE(wxEVT_GRID_LABEL_RIGHT_DCLICK
)
109 DEFINE_EVENT_TYPE(wxEVT_GRID_ROW_SIZE
)
110 DEFINE_EVENT_TYPE(wxEVT_GRID_COL_SIZE
)
111 DEFINE_EVENT_TYPE(wxEVT_GRID_COL_MOVE
)
112 DEFINE_EVENT_TYPE(wxEVT_GRID_RANGE_SELECT
)
113 DEFINE_EVENT_TYPE(wxEVT_GRID_CELL_CHANGE
)
114 DEFINE_EVENT_TYPE(wxEVT_GRID_SELECT_CELL
)
115 DEFINE_EVENT_TYPE(wxEVT_GRID_EDITOR_SHOWN
)
116 DEFINE_EVENT_TYPE(wxEVT_GRID_EDITOR_HIDDEN
)
117 DEFINE_EVENT_TYPE(wxEVT_GRID_EDITOR_CREATED
)
119 // ----------------------------------------------------------------------------
121 // ----------------------------------------------------------------------------
123 class WXDLLIMPEXP_ADV wxGridRowLabelWindow
: public wxWindow
126 wxGridRowLabelWindow() { m_owner
= (wxGrid
*)NULL
; }
127 wxGridRowLabelWindow( wxGrid
*parent
, wxWindowID id
,
128 const wxPoint
&pos
, const wxSize
&size
);
133 void OnPaint( wxPaintEvent
& event
);
134 void OnMouseEvent( wxMouseEvent
& event
);
135 void OnMouseWheel( wxMouseEvent
& event
);
136 void OnKeyDown( wxKeyEvent
& event
);
137 void OnKeyUp( wxKeyEvent
& );
138 void OnChar( wxKeyEvent
& );
140 DECLARE_DYNAMIC_CLASS(wxGridRowLabelWindow
)
141 DECLARE_EVENT_TABLE()
142 DECLARE_NO_COPY_CLASS(wxGridRowLabelWindow
)
146 class WXDLLIMPEXP_ADV wxGridColLabelWindow
: public wxWindow
149 wxGridColLabelWindow() { m_owner
= (wxGrid
*)NULL
; }
150 wxGridColLabelWindow( wxGrid
*parent
, wxWindowID id
,
151 const wxPoint
&pos
, const wxSize
&size
);
156 void OnPaint( wxPaintEvent
& event
);
157 void OnMouseEvent( wxMouseEvent
& event
);
158 void OnMouseWheel( wxMouseEvent
& event
);
159 void OnKeyDown( wxKeyEvent
& event
);
160 void OnKeyUp( wxKeyEvent
& );
161 void OnChar( wxKeyEvent
& );
163 DECLARE_DYNAMIC_CLASS(wxGridColLabelWindow
)
164 DECLARE_EVENT_TABLE()
165 DECLARE_NO_COPY_CLASS(wxGridColLabelWindow
)
169 class WXDLLIMPEXP_ADV wxGridCornerLabelWindow
: public wxWindow
172 wxGridCornerLabelWindow() { m_owner
= (wxGrid
*)NULL
; }
173 wxGridCornerLabelWindow( wxGrid
*parent
, wxWindowID id
,
174 const wxPoint
&pos
, const wxSize
&size
);
179 void OnMouseEvent( wxMouseEvent
& event
);
180 void OnMouseWheel( wxMouseEvent
& event
);
181 void OnKeyDown( wxKeyEvent
& event
);
182 void OnKeyUp( wxKeyEvent
& );
183 void OnChar( wxKeyEvent
& );
184 void OnPaint( wxPaintEvent
& event
);
186 DECLARE_DYNAMIC_CLASS(wxGridCornerLabelWindow
)
187 DECLARE_EVENT_TABLE()
188 DECLARE_NO_COPY_CLASS(wxGridCornerLabelWindow
)
191 class WXDLLIMPEXP_ADV wxGridWindow
: public wxWindow
197 m_rowLabelWin
= NULL
;
198 m_colLabelWin
= NULL
;
201 wxGridWindow( wxGrid
*parent
,
202 wxGridRowLabelWindow
*rowLblWin
,
203 wxGridColLabelWindow
*colLblWin
,
204 wxWindowID id
, const wxPoint
&pos
, const wxSize
&size
);
205 virtual ~wxGridWindow() {}
207 void ScrollWindow( int dx
, int dy
, const wxRect
*rect
);
209 wxGrid
* GetOwner() { return m_owner
; }
213 wxGridRowLabelWindow
*m_rowLabelWin
;
214 wxGridColLabelWindow
*m_colLabelWin
;
216 void OnPaint( wxPaintEvent
&event
);
217 void OnMouseWheel( wxMouseEvent
& event
);
218 void OnMouseEvent( wxMouseEvent
& event
);
219 void OnKeyDown( wxKeyEvent
& );
220 void OnKeyUp( wxKeyEvent
& );
221 void OnChar( wxKeyEvent
& );
222 void OnEraseBackground( wxEraseEvent
& );
223 void OnFocus( wxFocusEvent
& );
225 DECLARE_DYNAMIC_CLASS(wxGridWindow
)
226 DECLARE_EVENT_TABLE()
227 DECLARE_NO_COPY_CLASS(wxGridWindow
)
231 class wxGridCellEditorEvtHandler
: public wxEvtHandler
234 wxGridCellEditorEvtHandler(wxGrid
* grid
, wxGridCellEditor
* editor
)
241 void OnKillFocus(wxFocusEvent
& event
);
242 void OnKeyDown(wxKeyEvent
& event
);
243 void OnChar(wxKeyEvent
& event
);
245 void SetInSetFocus(bool inSetFocus
) { m_inSetFocus
= inSetFocus
; }
249 wxGridCellEditor
*m_editor
;
251 // Work around the fact that a focus kill event can be sent to
252 // a combobox within a set focus event.
255 DECLARE_EVENT_TABLE()
256 DECLARE_DYNAMIC_CLASS(wxGridCellEditorEvtHandler
)
257 DECLARE_NO_COPY_CLASS(wxGridCellEditorEvtHandler
)
261 IMPLEMENT_ABSTRACT_CLASS(wxGridCellEditorEvtHandler
, wxEvtHandler
)
263 BEGIN_EVENT_TABLE( wxGridCellEditorEvtHandler
, wxEvtHandler
)
264 EVT_KILL_FOCUS( wxGridCellEditorEvtHandler::OnKillFocus
)
265 EVT_KEY_DOWN( wxGridCellEditorEvtHandler::OnKeyDown
)
266 EVT_CHAR( wxGridCellEditorEvtHandler::OnChar
)
270 // ----------------------------------------------------------------------------
271 // the internal data representation used by wxGridCellAttrProvider
272 // ----------------------------------------------------------------------------
274 // this class stores attributes set for cells
275 class WXDLLIMPEXP_ADV wxGridCellAttrData
278 void SetAttr(wxGridCellAttr
*attr
, int row
, int col
);
279 wxGridCellAttr
*GetAttr(int row
, int col
) const;
280 void UpdateAttrRows( size_t pos
, int numRows
);
281 void UpdateAttrCols( size_t pos
, int numCols
);
284 // searches for the attr for given cell, returns wxNOT_FOUND if not found
285 int FindIndex(int row
, int col
) const;
287 wxGridCellWithAttrArray m_attrs
;
290 // this class stores attributes set for rows or columns
291 class WXDLLIMPEXP_ADV wxGridRowOrColAttrData
294 // empty ctor to suppress warnings
295 wxGridRowOrColAttrData() {}
296 ~wxGridRowOrColAttrData();
298 void SetAttr(wxGridCellAttr
*attr
, int rowOrCol
);
299 wxGridCellAttr
*GetAttr(int rowOrCol
) const;
300 void UpdateAttrRowsOrCols( size_t pos
, int numRowsOrCols
);
303 wxArrayInt m_rowsOrCols
;
304 wxArrayAttrs m_attrs
;
307 // NB: this is just a wrapper around 3 objects: one which stores cell
308 // attributes, and 2 others for row/col ones
309 class WXDLLIMPEXP_ADV wxGridCellAttrProviderData
312 wxGridCellAttrData m_cellAttrs
;
313 wxGridRowOrColAttrData m_rowAttrs
,
318 // ----------------------------------------------------------------------------
319 // data structures used for the data type registry
320 // ----------------------------------------------------------------------------
322 struct wxGridDataTypeInfo
324 wxGridDataTypeInfo(const wxString
& typeName
,
325 wxGridCellRenderer
* renderer
,
326 wxGridCellEditor
* editor
)
327 : m_typeName(typeName
), m_renderer(renderer
), m_editor(editor
)
330 ~wxGridDataTypeInfo()
332 wxSafeDecRef(m_renderer
);
333 wxSafeDecRef(m_editor
);
337 wxGridCellRenderer
* m_renderer
;
338 wxGridCellEditor
* m_editor
;
340 DECLARE_NO_COPY_CLASS(wxGridDataTypeInfo
)
344 WX_DEFINE_ARRAY_WITH_DECL_PTR(wxGridDataTypeInfo
*, wxGridDataTypeInfoArray
,
345 class WXDLLIMPEXP_ADV
);
348 class WXDLLIMPEXP_ADV wxGridTypeRegistry
351 wxGridTypeRegistry() {}
352 ~wxGridTypeRegistry();
354 void RegisterDataType(const wxString
& typeName
,
355 wxGridCellRenderer
* renderer
,
356 wxGridCellEditor
* editor
);
358 // find one of already registered data types
359 int FindRegisteredDataType(const wxString
& typeName
);
361 // try to FindRegisteredDataType(), if this fails and typeName is one of
362 // standard typenames, register it and return its index
363 int FindDataType(const wxString
& typeName
);
365 // try to FindDataType(), if it fails see if it is not one of already
366 // registered data types with some params in which case clone the
367 // registered data type and set params for it
368 int FindOrCloneDataType(const wxString
& typeName
);
370 wxGridCellRenderer
* GetRenderer(int index
);
371 wxGridCellEditor
* GetEditor(int index
);
374 wxGridDataTypeInfoArray m_typeinfo
;
378 // ----------------------------------------------------------------------------
379 // conditional compilation
380 // ----------------------------------------------------------------------------
382 #ifndef WXGRID_DRAW_LINES
383 #define WXGRID_DRAW_LINES 1
386 // ----------------------------------------------------------------------------
388 // ----------------------------------------------------------------------------
390 //#define DEBUG_ATTR_CACHE
391 #ifdef DEBUG_ATTR_CACHE
392 static size_t gs_nAttrCacheHits
= 0;
393 static size_t gs_nAttrCacheMisses
= 0;
396 // ----------------------------------------------------------------------------
398 // ----------------------------------------------------------------------------
400 wxGridCellCoords
wxGridNoCellCoords( -1, -1 );
401 wxRect
wxGridNoCellRect( -1, -1, -1, -1 );
404 // TODO: this doesn't work at all, grid cells have different sizes and approx
405 // calculations don't work as because of the size mismatch scrollbars
406 // sometimes fail to be shown when they should be or vice versa
408 // The scroll bars may be a little flakey once in a while, but that is
409 // surely much less horrible than having scroll lines of only 1!!!
412 // Well, it's still seriously broken so it might be better but needs
415 static const size_t GRID_SCROLL_LINE_X
= 15; // 1;
416 static const size_t GRID_SCROLL_LINE_Y
= GRID_SCROLL_LINE_X
;
418 // the size of hash tables used a bit everywhere (the max number of elements
419 // in these hash tables is the number of rows/columns)
420 static const int GRID_HASH_SIZE
= 100;
423 // ----------------------------------------------------------------------------
425 // ----------------------------------------------------------------------------
427 static inline int GetScrollX(int x
)
429 return (x
+ GRID_SCROLL_LINE_X
- 1) / GRID_SCROLL_LINE_X
;
432 static inline int GetScrollY(int y
)
434 return (y
+ GRID_SCROLL_LINE_Y
- 1) / GRID_SCROLL_LINE_Y
;
438 // ============================================================================
440 // ============================================================================
442 // ----------------------------------------------------------------------------
444 // ----------------------------------------------------------------------------
446 wxGridCellEditor::wxGridCellEditor()
452 wxGridCellEditor::~wxGridCellEditor()
457 void wxGridCellEditor::Create(wxWindow
* WXUNUSED(parent
),
458 wxWindowID
WXUNUSED(id
),
459 wxEvtHandler
* evtHandler
)
462 m_control
->PushEventHandler(evtHandler
);
465 void wxGridCellEditor::PaintBackground(const wxRect
& rectCell
,
466 wxGridCellAttr
*attr
)
468 // erase the background because we might not fill the cell
469 wxClientDC
dc(m_control
->GetParent());
470 wxGridWindow
* gridWindow
= wxDynamicCast(m_control
->GetParent(), wxGridWindow
);
472 gridWindow
->GetOwner()->PrepareDC(dc
);
474 dc
.SetPen(*wxTRANSPARENT_PEN
);
475 dc
.SetBrush(wxBrush(attr
->GetBackgroundColour(), wxSOLID
));
476 dc
.DrawRectangle(rectCell
);
478 // redraw the control we just painted over
479 m_control
->Refresh();
482 void wxGridCellEditor::Destroy()
486 m_control
->PopEventHandler( true /* delete it*/ );
488 m_control
->Destroy();
493 void wxGridCellEditor::Show(bool show
, wxGridCellAttr
*attr
)
495 wxASSERT_MSG(m_control
, wxT("The wxGridCellEditor must be created first!"));
497 m_control
->Show(show
);
501 // set the colours/fonts if we have any
504 m_colFgOld
= m_control
->GetForegroundColour();
505 m_control
->SetForegroundColour(attr
->GetTextColour());
507 m_colBgOld
= m_control
->GetBackgroundColour();
508 m_control
->SetBackgroundColour(attr
->GetBackgroundColour());
510 // Workaround for GTK+1 font setting problem on some platforms
511 #if !defined(__WXGTK__) || defined(__WXGTK20__)
512 m_fontOld
= m_control
->GetFont();
513 m_control
->SetFont(attr
->GetFont());
516 // can't do anything more in the base class version, the other
517 // attributes may only be used by the derived classes
522 // restore the standard colours fonts
523 if ( m_colFgOld
.Ok() )
525 m_control
->SetForegroundColour(m_colFgOld
);
526 m_colFgOld
= wxNullColour
;
529 if ( m_colBgOld
.Ok() )
531 m_control
->SetBackgroundColour(m_colBgOld
);
532 m_colBgOld
= wxNullColour
;
535 // Workaround for GTK+1 font setting problem on some platforms
536 #if !defined(__WXGTK__) || defined(__WXGTK20__)
537 if ( m_fontOld
.Ok() )
539 m_control
->SetFont(m_fontOld
);
540 m_fontOld
= wxNullFont
;
546 void wxGridCellEditor::SetSize(const wxRect
& rect
)
548 wxASSERT_MSG(m_control
, wxT("The wxGridCellEditor must be created first!"));
550 m_control
->SetSize(rect
, wxSIZE_ALLOW_MINUS_ONE
);
553 void wxGridCellEditor::HandleReturn(wxKeyEvent
& event
)
558 bool wxGridCellEditor::IsAcceptedKey(wxKeyEvent
& event
)
560 bool ctrl
= event
.ControlDown();
561 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
))
579 // If it's a F-Key or other special key then it shouldn't start the
581 if (event
.GetKeyCode() >= WXK_START
)
585 // if the unicode key code is not really a unicode character (it may
586 // be a function key or etc., the platforms appear to always give us a
587 // small value in this case) then fallback to the ASCII key code but
588 // don't do anything for function keys or etc.
589 key
= event
.GetUnicodeKey();
592 key
= event
.GetKeyCode();
593 keyOk
= (key
<= 127);
596 key
= event
.GetKeyCode();
597 keyOk
= (key
<= 255);
603 void wxGridCellEditor::StartingKey(wxKeyEvent
& event
)
608 void wxGridCellEditor::StartingClick()
614 // ----------------------------------------------------------------------------
615 // wxGridCellTextEditor
616 // ----------------------------------------------------------------------------
618 wxGridCellTextEditor::wxGridCellTextEditor()
623 void wxGridCellTextEditor::Create(wxWindow
* parent
,
625 wxEvtHandler
* evtHandler
)
627 m_control
= new wxTextCtrl(parent
, id
, wxEmptyString
,
628 wxDefaultPosition
, wxDefaultSize
629 #if defined(__WXMSW__)
638 // set max length allowed in the textctrl, if the parameter was set
641 ((wxTextCtrl
*)m_control
)->SetMaxLength(m_maxChars
);
644 wxGridCellEditor::Create(parent
, id
, evtHandler
);
647 void wxGridCellTextEditor::PaintBackground(const wxRect
& WXUNUSED(rectCell
),
648 wxGridCellAttr
* WXUNUSED(attr
))
650 // as we fill the entire client area,
651 // don't do anything here to minimize flicker
654 void wxGridCellTextEditor::SetSize(const wxRect
& rectOrig
)
656 wxRect
rect(rectOrig
);
658 // Make the edit control large enough to allow for internal margins
660 // TODO: remove this if the text ctrl sizing is improved esp. for unix
662 #if defined(__WXGTK__)
670 #elif defined(__WXMSW__)
684 int extra_x
= ( rect
.x
> 2 ) ? 2 : 1;
685 int extra_y
= ( rect
.y
> 2 ) ? 2 : 1;
687 #if defined(__WXMOTIF__)
692 rect
.SetLeft( wxMax(0, rect
.x
- extra_x
) );
693 rect
.SetTop( wxMax(0, rect
.y
- extra_y
) );
694 rect
.SetRight( rect
.GetRight() + 2 * extra_x
);
695 rect
.SetBottom( rect
.GetBottom() + 2 * extra_y
);
698 wxGridCellEditor::SetSize(rect
);
701 void wxGridCellTextEditor::BeginEdit(int row
, int col
, wxGrid
* grid
)
703 wxASSERT_MSG(m_control
, wxT("The wxGridCellEditor must be created first!"));
705 m_startValue
= grid
->GetTable()->GetValue(row
, col
);
707 DoBeginEdit(m_startValue
);
710 void wxGridCellTextEditor::DoBeginEdit(const wxString
& startValue
)
712 Text()->SetValue(startValue
);
713 Text()->SetInsertionPointEnd();
714 Text()->SetSelection(-1, -1);
718 bool wxGridCellTextEditor::EndEdit(int row
, int col
, wxGrid
* grid
)
720 wxASSERT_MSG(m_control
, wxT("The wxGridCellEditor must be created first!"));
722 bool changed
= false;
723 wxString value
= Text()->GetValue();
724 if (value
!= m_startValue
)
728 grid
->GetTable()->SetValue(row
, col
, value
);
730 m_startValue
= wxEmptyString
;
732 // No point in setting the text of the hidden control
733 //Text()->SetValue(m_startValue);
738 void wxGridCellTextEditor::Reset()
740 wxASSERT_MSG(m_control
, wxT("The wxGridCellEditor must be created first!"));
742 DoReset(m_startValue
);
745 void wxGridCellTextEditor::DoReset(const wxString
& startValue
)
747 Text()->SetValue(startValue
);
748 Text()->SetInsertionPointEnd();
751 bool wxGridCellTextEditor::IsAcceptedKey(wxKeyEvent
& event
)
753 return wxGridCellEditor::IsAcceptedKey(event
);
756 void wxGridCellTextEditor::StartingKey(wxKeyEvent
& event
)
758 // Since this is now happening in the EVT_CHAR event EmulateKeyPress is no
759 // longer an appropriate way to get the character into the text control.
760 // Do it ourselves instead. We know that if we get this far that we have
761 // a valid character, so not a whole lot of testing needs to be done.
763 wxTextCtrl
* tc
= Text();
768 ch
= event
.GetUnicodeKey();
770 ch
= (wxChar
)event
.GetKeyCode();
772 ch
= (wxChar
)event
.GetKeyCode();
778 // delete the character at the cursor
779 pos
= tc
->GetInsertionPoint();
780 if (pos
< tc
->GetLastPosition())
781 tc
->Remove(pos
, pos
+ 1);
785 // delete the character before the cursor
786 pos
= tc
->GetInsertionPoint();
788 tc
->Remove(pos
- 1, pos
);
797 void wxGridCellTextEditor::HandleReturn( wxKeyEvent
&
798 WXUNUSED_GTK(WXUNUSED_MOTIF(event
)) )
800 #if defined(__WXMOTIF__) || defined(__WXGTK__)
801 // wxMotif needs a little extra help...
802 size_t pos
= (size_t)( Text()->GetInsertionPoint() );
803 wxString
s( Text()->GetValue() );
804 s
= s
.Left(pos
) + wxT("\n") + s
.Mid(pos
);
806 Text()->SetInsertionPoint( pos
);
808 // the other ports can handle a Return key press
814 void wxGridCellTextEditor::SetParameters(const wxString
& params
)
824 if ( params
.ToLong(&tmp
) )
826 m_maxChars
= (size_t)tmp
;
830 wxLogDebug( _T("Invalid wxGridCellTextEditor parameter string '%s' ignored"), params
.c_str() );
835 // return the value in the text control
836 wxString
wxGridCellTextEditor::GetValue() const
838 return Text()->GetValue();
841 // ----------------------------------------------------------------------------
842 // wxGridCellNumberEditor
843 // ----------------------------------------------------------------------------
845 wxGridCellNumberEditor::wxGridCellNumberEditor(int min
, int max
)
851 void wxGridCellNumberEditor::Create(wxWindow
* parent
,
853 wxEvtHandler
* evtHandler
)
858 // create a spin ctrl
859 m_control
= new wxSpinCtrl(parent
, wxID_ANY
, wxEmptyString
,
860 wxDefaultPosition
, wxDefaultSize
,
864 wxGridCellEditor::Create(parent
, id
, evtHandler
);
869 // just a text control
870 wxGridCellTextEditor::Create(parent
, id
, evtHandler
);
873 Text()->SetValidator(wxTextValidator(wxFILTER_NUMERIC
));
878 void wxGridCellNumberEditor::BeginEdit(int row
, int col
, wxGrid
* grid
)
880 // first get the value
881 wxGridTableBase
*table
= grid
->GetTable();
882 if ( table
->CanGetValueAs(row
, col
, wxGRID_VALUE_NUMBER
) )
884 m_valueOld
= table
->GetValueAsLong(row
, col
);
889 wxString sValue
= table
->GetValue(row
, col
);
890 if (! sValue
.ToLong(&m_valueOld
) && ! sValue
.empty())
892 wxFAIL_MSG( _T("this cell doesn't have numeric value") );
900 Spin()->SetValue((int)m_valueOld
);
906 DoBeginEdit(GetString());
910 bool wxGridCellNumberEditor::EndEdit(int row
, int col
,
920 value
= Spin()->GetValue();
921 changed
= value
!= m_valueOld
;
923 text
= wxString::Format(wxT("%ld"), value
);
928 text
= Text()->GetValue();
929 changed
= (text
.empty() || text
.ToLong(&value
)) && (value
!= m_valueOld
);
934 if (grid
->GetTable()->CanSetValueAs(row
, col
, wxGRID_VALUE_NUMBER
))
935 grid
->GetTable()->SetValueAsLong(row
, col
, value
);
937 grid
->GetTable()->SetValue(row
, col
, text
);
943 void wxGridCellNumberEditor::Reset()
948 Spin()->SetValue((int)m_valueOld
);
953 DoReset(GetString());
957 bool wxGridCellNumberEditor::IsAcceptedKey(wxKeyEvent
& event
)
959 if ( wxGridCellEditor::IsAcceptedKey(event
) )
961 int keycode
= event
.GetKeyCode();
962 if ( (keycode
< 128) &&
963 (wxIsdigit(keycode
) || keycode
== '+' || keycode
== '-'))
972 void wxGridCellNumberEditor::StartingKey(wxKeyEvent
& event
)
974 int keycode
= event
.GetKeyCode();
977 if ( wxIsdigit(keycode
) || keycode
== '+' || keycode
== '-')
979 wxGridCellTextEditor::StartingKey(event
);
988 if ( wxIsdigit(keycode
) )
990 wxSpinCtrl
* spin
= (wxSpinCtrl
*)m_control
;
991 spin
->SetValue(keycode
- '0');
992 spin
->SetSelection(1,1);
1001 void wxGridCellNumberEditor::SetParameters(const wxString
& params
)
1012 if ( params
.BeforeFirst(_T(',')).ToLong(&tmp
) )
1016 if ( params
.AfterFirst(_T(',')).ToLong(&tmp
) )
1020 // skip the error message below
1025 wxLogDebug(_T("Invalid wxGridCellNumberEditor parameter string '%s' ignored"), params
.c_str());
1029 // return the value in the spin control if it is there (the text control otherwise)
1030 wxString
wxGridCellNumberEditor::GetValue() const
1037 long value
= Spin()->GetValue();
1038 s
.Printf(wxT("%ld"), value
);
1043 s
= Text()->GetValue();
1049 // ----------------------------------------------------------------------------
1050 // wxGridCellFloatEditor
1051 // ----------------------------------------------------------------------------
1053 wxGridCellFloatEditor::wxGridCellFloatEditor(int width
, int precision
)
1056 m_precision
= precision
;
1059 void wxGridCellFloatEditor::Create(wxWindow
* parent
,
1061 wxEvtHandler
* evtHandler
)
1063 wxGridCellTextEditor::Create(parent
, id
, evtHandler
);
1065 #if wxUSE_VALIDATORS
1066 Text()->SetValidator(wxTextValidator(wxFILTER_NUMERIC
));
1070 void wxGridCellFloatEditor::BeginEdit(int row
, int col
, wxGrid
* grid
)
1072 // first get the value
1073 wxGridTableBase
*table
= grid
->GetTable();
1074 if ( table
->CanGetValueAs(row
, col
, wxGRID_VALUE_FLOAT
) )
1076 m_valueOld
= table
->GetValueAsDouble(row
, col
);
1081 wxString sValue
= table
->GetValue(row
, col
);
1082 if (! sValue
.ToDouble(&m_valueOld
) && ! sValue
.empty())
1084 wxFAIL_MSG( _T("this cell doesn't have float value") );
1089 DoBeginEdit(GetString());
1092 bool wxGridCellFloatEditor::EndEdit(int row
, int col
,
1096 wxString
text(Text()->GetValue());
1098 if ( (text
.empty() || text
.ToDouble(&value
)) &&
1099 !wxIsSameDouble(value
, m_valueOld
) )
1101 if (grid
->GetTable()->CanSetValueAs(row
, col
, wxGRID_VALUE_FLOAT
))
1102 grid
->GetTable()->SetValueAsDouble(row
, col
, value
);
1104 grid
->GetTable()->SetValue(row
, col
, text
);
1112 void wxGridCellFloatEditor::Reset()
1114 DoReset(GetString());
1117 void wxGridCellFloatEditor::StartingKey(wxKeyEvent
& event
)
1119 int keycode
= event
.GetKeyCode();
1121 tmpbuf
[0] = (char) keycode
;
1123 wxString
strbuf(tmpbuf
, *wxConvCurrent
);
1126 bool is_decimal_point
= ( strbuf
==
1127 wxLocale::GetInfo(wxLOCALE_DECIMAL_POINT
, wxLOCALE_CAT_NUMBER
) );
1129 bool is_decimal_point
= ( strbuf
== _T(".") );
1132 if ( wxIsdigit(keycode
) || keycode
== '+' || keycode
== '-'
1133 || is_decimal_point
)
1135 wxGridCellTextEditor::StartingKey(event
);
1137 // skip Skip() below
1144 void wxGridCellFloatEditor::SetParameters(const wxString
& params
)
1155 if ( params
.BeforeFirst(_T(',')).ToLong(&tmp
) )
1159 if ( params
.AfterFirst(_T(',')).ToLong(&tmp
) )
1161 m_precision
= (int)tmp
;
1163 // skip the error message below
1168 wxLogDebug(_T("Invalid wxGridCellFloatEditor parameter string '%s' ignored"), params
.c_str());
1172 wxString
wxGridCellFloatEditor::GetString() const
1175 if ( m_precision
== -1 && m_width
!= -1)
1177 // default precision
1178 fmt
.Printf(_T("%%%d.f"), m_width
);
1180 else if ( m_precision
!= -1 && m_width
== -1)
1183 fmt
.Printf(_T("%%.%df"), m_precision
);
1185 else if ( m_precision
!= -1 && m_width
!= -1 )
1187 fmt
.Printf(_T("%%%d.%df"), m_width
, m_precision
);
1191 // default width/precision
1195 return wxString::Format(fmt
, m_valueOld
);
1198 bool wxGridCellFloatEditor::IsAcceptedKey(wxKeyEvent
& event
)
1200 if ( wxGridCellEditor::IsAcceptedKey(event
) )
1202 const int keycode
= event
.GetKeyCode();
1203 if ( isascii(keycode
) )
1206 tmpbuf
[0] = (char) keycode
;
1208 wxString
strbuf(tmpbuf
, *wxConvCurrent
);
1211 const wxString decimalPoint
=
1212 wxLocale::GetInfo(wxLOCALE_DECIMAL_POINT
, wxLOCALE_CAT_NUMBER
);
1214 const wxString
decimalPoint(_T('.'));
1217 // accept digits, 'e' as in '1e+6', also '-', '+', and '.'
1218 if ( wxIsdigit(keycode
) ||
1219 tolower(keycode
) == 'e' ||
1220 keycode
== decimalPoint
||
1232 #endif // wxUSE_TEXTCTRL
1236 // ----------------------------------------------------------------------------
1237 // wxGridCellBoolEditor
1238 // ----------------------------------------------------------------------------
1240 // the default values for GetValue()
1241 wxString
wxGridCellBoolEditor::ms_stringValues
[2] = { _T(""), _T("1") };
1243 void wxGridCellBoolEditor::Create(wxWindow
* parent
,
1245 wxEvtHandler
* evtHandler
)
1247 m_control
= new wxCheckBox(parent
, id
, wxEmptyString
,
1248 wxDefaultPosition
, wxDefaultSize
,
1251 wxGridCellEditor::Create(parent
, id
, evtHandler
);
1254 void wxGridCellBoolEditor::SetSize(const wxRect
& r
)
1256 bool resize
= false;
1257 wxSize size
= m_control
->GetSize();
1258 wxCoord minSize
= wxMin(r
.width
, r
.height
);
1260 // check if the checkbox is not too big/small for this cell
1261 wxSize sizeBest
= m_control
->GetBestSize();
1262 if ( !(size
== sizeBest
) )
1264 // reset to default size if it had been made smaller
1270 if ( size
.x
>= minSize
|| size
.y
>= minSize
)
1272 // leave 1 pixel margin
1273 size
.x
= size
.y
= minSize
- 2;
1280 m_control
->SetSize(size
);
1283 // position it in the centre of the rectangle (TODO: support alignment?)
1285 #if defined(__WXGTK__) || defined (__WXMOTIF__)
1286 // the checkbox without label still has some space to the right in wxGTK,
1287 // so shift it to the right
1289 #elif defined(__WXMSW__)
1290 // here too, but in other way
1295 int hAlign
= wxALIGN_CENTRE
;
1296 int vAlign
= wxALIGN_CENTRE
;
1298 GetCellAttr()->GetAlignment(& hAlign
, & vAlign
);
1301 if (hAlign
== wxALIGN_LEFT
)
1309 y
= r
.y
+ r
.height
/ 2 - size
.y
/ 2;
1311 else if (hAlign
== wxALIGN_RIGHT
)
1313 x
= r
.x
+ r
.width
- size
.x
- 2;
1314 y
= r
.y
+ r
.height
/ 2 - size
.y
/ 2;
1316 else if (hAlign
== wxALIGN_CENTRE
)
1318 x
= r
.x
+ r
.width
/ 2 - size
.x
/ 2;
1319 y
= r
.y
+ r
.height
/ 2 - size
.y
/ 2;
1322 m_control
->Move(x
, y
);
1325 void wxGridCellBoolEditor::Show(bool show
, wxGridCellAttr
*attr
)
1327 m_control
->Show(show
);
1331 wxColour colBg
= attr
? attr
->GetBackgroundColour() : *wxLIGHT_GREY
;
1332 CBox()->SetBackgroundColour(colBg
);
1336 void wxGridCellBoolEditor::BeginEdit(int row
, int col
, wxGrid
* grid
)
1338 wxASSERT_MSG(m_control
,
1339 wxT("The wxGridCellEditor must be created first!"));
1341 if (grid
->GetTable()->CanGetValueAs(row
, col
, wxGRID_VALUE_BOOL
))
1343 m_startValue
= grid
->GetTable()->GetValueAsBool(row
, col
);
1347 wxString
cellval( grid
->GetTable()->GetValue(row
, col
) );
1349 if ( cellval
== ms_stringValues
[false] )
1350 m_startValue
= false;
1351 else if ( cellval
== ms_stringValues
[true] )
1352 m_startValue
= true;
1355 // do not try to be smart here and convert it to true or false
1356 // because we'll still overwrite it with something different and
1357 // this risks to be very surprising for the user code, let them
1359 wxFAIL_MSG( _T("invalid value for a cell with bool editor!") );
1363 CBox()->SetValue(m_startValue
);
1367 bool wxGridCellBoolEditor::EndEdit(int row
, int col
,
1370 wxASSERT_MSG(m_control
,
1371 wxT("The wxGridCellEditor must be created first!"));
1373 bool changed
= false;
1374 bool value
= CBox()->GetValue();
1375 if ( value
!= m_startValue
)
1380 wxGridTableBase
* const table
= grid
->GetTable();
1381 if ( table
->CanGetValueAs(row
, col
, wxGRID_VALUE_BOOL
) )
1382 table
->SetValueAsBool(row
, col
, value
);
1384 table
->SetValue(row
, col
, GetValue());
1390 void wxGridCellBoolEditor::Reset()
1392 wxASSERT_MSG(m_control
,
1393 wxT("The wxGridCellEditor must be created first!"));
1395 CBox()->SetValue(m_startValue
);
1398 void wxGridCellBoolEditor::StartingClick()
1400 CBox()->SetValue(!CBox()->GetValue());
1403 bool wxGridCellBoolEditor::IsAcceptedKey(wxKeyEvent
& event
)
1405 if ( wxGridCellEditor::IsAcceptedKey(event
) )
1407 int keycode
= event
.GetKeyCode();
1420 void wxGridCellBoolEditor::StartingKey(wxKeyEvent
& event
)
1422 int keycode
= event
.GetKeyCode();
1426 CBox()->SetValue(!CBox()->GetValue());
1430 CBox()->SetValue(true);
1434 CBox()->SetValue(false);
1439 wxString
wxGridCellBoolEditor::GetValue() const
1441 return ms_stringValues
[CBox()->GetValue()];
1445 wxGridCellBoolEditor::UseStringValues(const wxString
& valueTrue
,
1446 const wxString
& valueFalse
)
1448 ms_stringValues
[false] = valueFalse
;
1449 ms_stringValues
[true] = valueTrue
;
1453 wxGridCellBoolEditor::IsTrueValue(const wxString
& value
)
1455 return value
== ms_stringValues
[true];
1458 #endif // wxUSE_CHECKBOX
1462 // ----------------------------------------------------------------------------
1463 // wxGridCellChoiceEditor
1464 // ----------------------------------------------------------------------------
1466 wxGridCellChoiceEditor::wxGridCellChoiceEditor(const wxArrayString
& choices
,
1468 : m_choices(choices
),
1469 m_allowOthers(allowOthers
) { }
1471 wxGridCellChoiceEditor::wxGridCellChoiceEditor(size_t count
,
1472 const wxString choices
[],
1474 : m_allowOthers(allowOthers
)
1478 m_choices
.Alloc(count
);
1479 for ( size_t n
= 0; n
< count
; n
++ )
1481 m_choices
.Add(choices
[n
]);
1486 wxGridCellEditor
*wxGridCellChoiceEditor::Clone() const
1488 wxGridCellChoiceEditor
*editor
= new wxGridCellChoiceEditor
;
1489 editor
->m_allowOthers
= m_allowOthers
;
1490 editor
->m_choices
= m_choices
;
1495 void wxGridCellChoiceEditor::Create(wxWindow
* parent
,
1497 wxEvtHandler
* evtHandler
)
1499 m_control
= new wxComboBox(parent
, id
, wxEmptyString
,
1500 wxDefaultPosition
, wxDefaultSize
,
1502 m_allowOthers
? 0 : wxCB_READONLY
);
1504 wxGridCellEditor::Create(parent
, id
, evtHandler
);
1507 void wxGridCellChoiceEditor::PaintBackground(const wxRect
& rectCell
,
1508 wxGridCellAttr
* attr
)
1510 // as we fill the entire client area, don't do anything here to minimize
1513 // TODO: It doesn't actually fill the client area since the height of a
1514 // combo always defaults to the standard. Until someone has time to
1515 // figure out the right rectangle to paint, just do it the normal way.
1516 wxGridCellEditor::PaintBackground(rectCell
, attr
);
1519 void wxGridCellChoiceEditor::BeginEdit(int row
, int col
, wxGrid
* grid
)
1521 wxASSERT_MSG(m_control
,
1522 wxT("The wxGridCellEditor must be created first!"));
1524 wxGridCellEditorEvtHandler
* evtHandler
= NULL
;
1526 evtHandler
= wxDynamicCast(m_control
->GetEventHandler(), wxGridCellEditorEvtHandler
);
1528 // Don't immediately end if we get a kill focus event within BeginEdit
1530 evtHandler
->SetInSetFocus(true);
1532 m_startValue
= grid
->GetTable()->GetValue(row
, col
);
1536 Combo()->SetValue(m_startValue
);
1540 // find the right position, or default to the first if not found
1541 int pos
= Combo()->FindString(m_startValue
);
1542 if (pos
== wxNOT_FOUND
)
1544 Combo()->SetSelection(pos
);
1547 Combo()->SetInsertionPointEnd();
1548 Combo()->SetFocus();
1552 // When dropping down the menu, a kill focus event
1553 // happens after this point, so we can't reset the flag yet.
1554 #if !defined(__WXGTK20__)
1555 evtHandler
->SetInSetFocus(false);
1560 bool wxGridCellChoiceEditor::EndEdit(int row
, int col
,
1563 wxString value
= Combo()->GetValue();
1564 if ( value
== m_startValue
)
1567 grid
->GetTable()->SetValue(row
, col
, value
);
1572 void wxGridCellChoiceEditor::Reset()
1574 Combo()->SetValue(m_startValue
);
1575 Combo()->SetInsertionPointEnd();
1578 void wxGridCellChoiceEditor::SetParameters(const wxString
& params
)
1588 wxStringTokenizer
tk(params
, _T(','));
1589 while ( tk
.HasMoreTokens() )
1591 m_choices
.Add(tk
.GetNextToken());
1595 // return the value in the text control
1596 wxString
wxGridCellChoiceEditor::GetValue() const
1598 return Combo()->GetValue();
1601 #endif // wxUSE_COMBOBOX
1603 // ----------------------------------------------------------------------------
1604 // wxGridCellEditorEvtHandler
1605 // ----------------------------------------------------------------------------
1607 void wxGridCellEditorEvtHandler::OnKillFocus(wxFocusEvent
& event
)
1609 // Don't disable the cell if we're just starting to edit it
1614 m_grid
->DisableCellEditControl();
1619 void wxGridCellEditorEvtHandler::OnKeyDown(wxKeyEvent
& event
)
1621 switch ( event
.GetKeyCode() )
1625 m_grid
->DisableCellEditControl();
1629 m_grid
->GetEventHandler()->ProcessEvent( event
);
1633 case WXK_NUMPAD_ENTER
:
1634 if (!m_grid
->GetEventHandler()->ProcessEvent(event
))
1635 m_editor
->HandleReturn(event
);
1644 void wxGridCellEditorEvtHandler::OnChar(wxKeyEvent
& event
)
1646 int row
= m_grid
->GetGridCursorRow();
1647 int col
= m_grid
->GetGridCursorCol();
1648 wxRect rect
= m_grid
->CellToRect( row
, col
);
1650 m_grid
->GetGridWindow()->GetClientSize( &cw
, &ch
);
1652 // if cell width is smaller than grid client area, cell is wholly visible
1653 bool wholeCellVisible
= (rect
.GetWidth() < cw
);
1655 switch ( event
.GetKeyCode() )
1660 case WXK_NUMPAD_ENTER
:
1665 if ( wholeCellVisible
)
1667 // no special processing needed...
1672 // do special processing for partly visible cell...
1674 // get the widths of all cells previous to this one
1676 for ( int i
= 0; i
< col
; i
++ )
1678 colXPos
+= m_grid
->GetColSize(i
);
1681 int xUnit
= 1, yUnit
= 1;
1682 m_grid
->GetScrollPixelsPerUnit(&xUnit
, &yUnit
);
1685 m_grid
->Scroll(colXPos
/ xUnit
- 1, m_grid
->GetScrollPos(wxVERTICAL
));
1689 m_grid
->Scroll(colXPos
/ xUnit
, m_grid
->GetScrollPos(wxVERTICAL
));
1697 if ( wholeCellVisible
)
1699 // no special processing needed...
1704 // do special processing for partly visible cell...
1707 wxString value
= m_grid
->GetCellValue(row
, col
);
1708 if ( wxEmptyString
!= value
)
1710 // get width of cell CONTENTS (text)
1712 wxFont font
= m_grid
->GetCellFont(row
, col
);
1713 m_grid
->GetTextExtent(value
, &textWidth
, &y
, NULL
, NULL
, &font
);
1715 // try to RIGHT align the text by scrolling
1716 int client_right
= m_grid
->GetGridWindow()->GetClientSize().GetWidth();
1718 // (m_grid->GetScrollLineX()*2) is a factor for not scrolling to far,
1719 // otherwise the last part of the cell content might be hidden below the scroll bar
1720 // FIXME: maybe there is a more suitable correction?
1721 textWidth
-= (client_right
- (m_grid
->GetScrollLineX() * 2));
1722 if ( textWidth
< 0 )
1728 // get the widths of all cells previous to this one
1730 for ( int i
= 0; i
< col
; i
++ )
1732 colXPos
+= m_grid
->GetColSize(i
);
1735 // and add the (modified) text width of the cell contents
1736 // as we'd like to see the last part of the cell contents
1737 colXPos
+= textWidth
;
1739 int xUnit
= 1, yUnit
= 1;
1740 m_grid
->GetScrollPixelsPerUnit(&xUnit
, &yUnit
);
1741 m_grid
->Scroll(colXPos
/ xUnit
- 1, m_grid
->GetScrollPos(wxVERTICAL
));
1752 // ----------------------------------------------------------------------------
1753 // wxGridCellWorker is an (almost) empty common base class for
1754 // wxGridCellRenderer and wxGridCellEditor managing ref counting
1755 // ----------------------------------------------------------------------------
1757 void wxGridCellWorker::SetParameters(const wxString
& WXUNUSED(params
))
1762 wxGridCellWorker::~wxGridCellWorker()
1766 // ============================================================================
1768 // ============================================================================
1770 // ----------------------------------------------------------------------------
1771 // wxGridCellRenderer
1772 // ----------------------------------------------------------------------------
1774 void wxGridCellRenderer::Draw(wxGrid
& grid
,
1775 wxGridCellAttr
& attr
,
1778 int WXUNUSED(row
), int WXUNUSED(col
),
1781 dc
.SetBackgroundMode( wxSOLID
);
1783 // grey out fields if the grid is disabled
1784 if ( grid
.IsEnabled() )
1788 dc
.SetBrush( wxBrush(grid
.GetSelectionBackground(), wxSOLID
) );
1792 dc
.SetBrush( wxBrush(attr
.GetBackgroundColour(), wxSOLID
) );
1797 dc
.SetBrush(wxBrush(wxSystemSettings::GetColour(wxSYS_COLOUR_BTNFACE
), wxSOLID
));
1800 dc
.SetPen( *wxTRANSPARENT_PEN
);
1801 dc
.DrawRectangle(rect
);
1804 // ----------------------------------------------------------------------------
1805 // wxGridCellStringRenderer
1806 // ----------------------------------------------------------------------------
1808 void wxGridCellStringRenderer::SetTextColoursAndFont(const wxGrid
& grid
,
1809 const wxGridCellAttr
& attr
,
1813 dc
.SetBackgroundMode( wxTRANSPARENT
);
1815 // TODO some special colours for attr.IsReadOnly() case?
1817 // different coloured text when the grid is disabled
1818 if ( grid
.IsEnabled() )
1822 dc
.SetTextBackground( grid
.GetSelectionBackground() );
1823 dc
.SetTextForeground( grid
.GetSelectionForeground() );
1827 dc
.SetTextBackground( attr
.GetBackgroundColour() );
1828 dc
.SetTextForeground( attr
.GetTextColour() );
1833 dc
.SetTextBackground(wxSystemSettings::GetColour(wxSYS_COLOUR_BTNFACE
));
1834 dc
.SetTextForeground(wxSystemSettings::GetColour(wxSYS_COLOUR_GRAYTEXT
));
1837 dc
.SetFont( attr
.GetFont() );
1840 wxSize
wxGridCellStringRenderer::DoGetBestSize(const wxGridCellAttr
& attr
,
1842 const wxString
& text
)
1844 wxCoord x
= 0, y
= 0, max_x
= 0;
1845 dc
.SetFont(attr
.GetFont());
1846 wxStringTokenizer
tk(text
, _T('\n'));
1847 while ( tk
.HasMoreTokens() )
1849 dc
.GetTextExtent(tk
.GetNextToken(), &x
, &y
);
1850 max_x
= wxMax(max_x
, x
);
1853 y
*= 1 + text
.Freq(wxT('\n')); // multiply by the number of lines.
1855 return wxSize(max_x
, y
);
1858 wxSize
wxGridCellStringRenderer::GetBestSize(wxGrid
& grid
,
1859 wxGridCellAttr
& attr
,
1863 return DoGetBestSize(attr
, dc
, grid
.GetCellValue(row
, col
));
1866 void wxGridCellStringRenderer::Draw(wxGrid
& grid
,
1867 wxGridCellAttr
& attr
,
1869 const wxRect
& rectCell
,
1873 wxRect rect
= rectCell
;
1876 // erase only this cells background, overflow cells should have been erased
1877 wxGridCellRenderer::Draw(grid
, attr
, dc
, rectCell
, row
, col
, isSelected
);
1880 attr
.GetAlignment(&hAlign
, &vAlign
);
1882 int overflowCols
= 0;
1884 if (attr
.GetOverflow())
1886 int cols
= grid
.GetNumberCols();
1887 int best_width
= GetBestSize(grid
,attr
,dc
,row
,col
).GetWidth();
1888 int cell_rows
, cell_cols
;
1889 attr
.GetSize( &cell_rows
, &cell_cols
); // shouldn't get here if <= 0
1890 if ((best_width
> rectCell
.width
) && (col
< cols
) && grid
.GetTable())
1892 int i
, c_cols
, c_rows
;
1893 for (i
= col
+cell_cols
; i
< cols
; i
++)
1895 bool is_empty
= true;
1896 for (int j
=row
; j
< row
+ cell_rows
; j
++)
1898 // check w/ anchor cell for multicell block
1899 grid
.GetCellSize(j
, i
, &c_rows
, &c_cols
);
1902 if (!grid
.GetTable()->IsEmptyCell(j
+ c_rows
, i
))
1911 rect
.width
+= grid
.GetColSize(i
);
1919 if (rect
.width
>= best_width
)
1923 overflowCols
= i
- col
- cell_cols
+ 1;
1924 if (overflowCols
>= cols
)
1925 overflowCols
= cols
- 1;
1928 if (overflowCols
> 0) // redraw overflow cells w/ proper hilight
1930 hAlign
= wxALIGN_LEFT
; // if oveflowed then it's left aligned
1932 clip
.x
+= rectCell
.width
;
1933 // draw each overflow cell individually
1934 int col_end
= col
+ cell_cols
+ overflowCols
;
1935 if (col_end
>= grid
.GetNumberCols())
1936 col_end
= grid
.GetNumberCols() - 1;
1937 for (int i
= col
+ cell_cols
; i
<= col_end
; i
++)
1939 clip
.width
= grid
.GetColSize(i
) - 1;
1940 dc
.DestroyClippingRegion();
1941 dc
.SetClippingRegion(clip
);
1943 SetTextColoursAndFont(grid
, attr
, dc
,
1944 grid
.IsInSelection(row
,i
));
1946 grid
.DrawTextRectangle(dc
, grid
.GetCellValue(row
, col
),
1947 rect
, hAlign
, vAlign
);
1948 clip
.x
+= grid
.GetColSize(i
) - 1;
1954 dc
.DestroyClippingRegion();
1958 // now we only have to draw the text
1959 SetTextColoursAndFont(grid
, attr
, dc
, isSelected
);
1961 grid
.DrawTextRectangle(dc
, grid
.GetCellValue(row
, col
),
1962 rect
, hAlign
, vAlign
);
1965 // ----------------------------------------------------------------------------
1966 // wxGridCellNumberRenderer
1967 // ----------------------------------------------------------------------------
1969 wxString
wxGridCellNumberRenderer::GetString(const wxGrid
& grid
, int row
, int col
)
1971 wxGridTableBase
*table
= grid
.GetTable();
1973 if ( table
->CanGetValueAs(row
, col
, wxGRID_VALUE_NUMBER
) )
1975 text
.Printf(_T("%ld"), table
->GetValueAsLong(row
, col
));
1979 text
= table
->GetValue(row
, col
);
1985 void wxGridCellNumberRenderer::Draw(wxGrid
& grid
,
1986 wxGridCellAttr
& attr
,
1988 const wxRect
& rectCell
,
1992 wxGridCellRenderer::Draw(grid
, attr
, dc
, rectCell
, row
, col
, isSelected
);
1994 SetTextColoursAndFont(grid
, attr
, dc
, isSelected
);
1996 // draw the text right aligned by default
1998 attr
.GetAlignment(&hAlign
, &vAlign
);
1999 hAlign
= wxALIGN_RIGHT
;
2001 wxRect rect
= rectCell
;
2004 grid
.DrawTextRectangle(dc
, GetString(grid
, row
, col
), rect
, hAlign
, vAlign
);
2007 wxSize
wxGridCellNumberRenderer::GetBestSize(wxGrid
& grid
,
2008 wxGridCellAttr
& attr
,
2012 return DoGetBestSize(attr
, dc
, GetString(grid
, row
, col
));
2015 // ----------------------------------------------------------------------------
2016 // wxGridCellFloatRenderer
2017 // ----------------------------------------------------------------------------
2019 wxGridCellFloatRenderer::wxGridCellFloatRenderer(int width
, int precision
)
2022 SetPrecision(precision
);
2025 wxGridCellRenderer
*wxGridCellFloatRenderer::Clone() const
2027 wxGridCellFloatRenderer
*renderer
= new wxGridCellFloatRenderer
;
2028 renderer
->m_width
= m_width
;
2029 renderer
->m_precision
= m_precision
;
2030 renderer
->m_format
= m_format
;
2035 wxString
wxGridCellFloatRenderer::GetString(const wxGrid
& grid
, int row
, int col
)
2037 wxGridTableBase
*table
= grid
.GetTable();
2042 if ( table
->CanGetValueAs(row
, col
, wxGRID_VALUE_FLOAT
) )
2044 val
= table
->GetValueAsDouble(row
, col
);
2049 text
= table
->GetValue(row
, col
);
2050 hasDouble
= text
.ToDouble(&val
);
2057 if ( m_width
== -1 )
2059 if ( m_precision
== -1 )
2061 // default width/precision
2062 m_format
= _T("%f");
2066 m_format
.Printf(_T("%%.%df"), m_precision
);
2069 else if ( m_precision
== -1 )
2071 // default precision
2072 m_format
.Printf(_T("%%%d.f"), m_width
);
2076 m_format
.Printf(_T("%%%d.%df"), m_width
, m_precision
);
2080 text
.Printf(m_format
, val
);
2083 //else: text already contains the string
2088 void wxGridCellFloatRenderer::Draw(wxGrid
& grid
,
2089 wxGridCellAttr
& attr
,
2091 const wxRect
& rectCell
,
2095 wxGridCellRenderer::Draw(grid
, attr
, dc
, rectCell
, row
, col
, isSelected
);
2097 SetTextColoursAndFont(grid
, attr
, dc
, isSelected
);
2099 // draw the text right aligned by default
2101 attr
.GetAlignment(&hAlign
, &vAlign
);
2102 hAlign
= wxALIGN_RIGHT
;
2104 wxRect rect
= rectCell
;
2107 grid
.DrawTextRectangle(dc
, GetString(grid
, row
, col
), rect
, hAlign
, vAlign
);
2110 wxSize
wxGridCellFloatRenderer::GetBestSize(wxGrid
& grid
,
2111 wxGridCellAttr
& attr
,
2115 return DoGetBestSize(attr
, dc
, GetString(grid
, row
, col
));
2118 void wxGridCellFloatRenderer::SetParameters(const wxString
& params
)
2122 // reset to defaults
2128 wxString tmp
= params
.BeforeFirst(_T(','));
2132 if ( tmp
.ToLong(&width
) )
2134 SetWidth((int)width
);
2138 wxLogDebug(_T("Invalid wxGridCellFloatRenderer width parameter string '%s ignored"), params
.c_str());
2142 tmp
= params
.AfterFirst(_T(','));
2146 if ( tmp
.ToLong(&precision
) )
2148 SetPrecision((int)precision
);
2152 wxLogDebug(_T("Invalid wxGridCellFloatRenderer precision parameter string '%s ignored"), params
.c_str());
2158 // ----------------------------------------------------------------------------
2159 // wxGridCellBoolRenderer
2160 // ----------------------------------------------------------------------------
2162 wxSize
wxGridCellBoolRenderer::ms_sizeCheckMark
;
2164 // FIXME these checkbox size calculations are really ugly...
2166 // between checkmark and box
2167 static const wxCoord wxGRID_CHECKMARK_MARGIN
= 2;
2169 wxSize
wxGridCellBoolRenderer::GetBestSize(wxGrid
& grid
,
2170 wxGridCellAttr
& WXUNUSED(attr
),
2175 // compute it only once (no locks for MT safeness in GUI thread...)
2176 if ( !ms_sizeCheckMark
.x
)
2178 // get checkbox size
2179 wxCheckBox
*checkbox
= new wxCheckBox(&grid
, wxID_ANY
, wxEmptyString
);
2180 wxSize size
= checkbox
->GetBestSize();
2181 wxCoord checkSize
= size
.y
+ 2 * wxGRID_CHECKMARK_MARGIN
;
2183 // FIXME wxGTK::wxCheckBox::GetBestSize() gives "wrong" result
2184 #if defined(__WXGTK__) || defined(__WXMOTIF__)
2185 checkSize
-= size
.y
/ 2;
2190 ms_sizeCheckMark
.x
= ms_sizeCheckMark
.y
= checkSize
;
2193 return ms_sizeCheckMark
;
2196 void wxGridCellBoolRenderer::Draw(wxGrid
& grid
,
2197 wxGridCellAttr
& attr
,
2203 wxGridCellRenderer::Draw(grid
, attr
, dc
, rect
, row
, col
, isSelected
);
2205 // draw a check mark in the centre (ignoring alignment - TODO)
2206 wxSize size
= GetBestSize(grid
, attr
, dc
, row
, col
);
2208 // don't draw outside the cell
2209 wxCoord minSize
= wxMin(rect
.width
, rect
.height
);
2210 if ( size
.x
>= minSize
|| size
.y
>= minSize
)
2212 // and even leave (at least) 1 pixel margin
2213 size
.x
= size
.y
= minSize
- 2;
2216 // draw a border around checkmark
2218 attr
.GetAlignment(&hAlign
, &vAlign
);
2221 if (hAlign
== wxALIGN_CENTRE
)
2223 rectBorder
.x
= rect
.x
+ rect
.width
/ 2 - size
.x
/ 2;
2224 rectBorder
.y
= rect
.y
+ rect
.height
/ 2 - size
.y
/ 2;
2225 rectBorder
.width
= size
.x
;
2226 rectBorder
.height
= size
.y
;
2228 else if (hAlign
== wxALIGN_LEFT
)
2230 rectBorder
.x
= rect
.x
+ 2;
2231 rectBorder
.y
= rect
.y
+ rect
.height
/ 2 - size
.y
/ 2;
2232 rectBorder
.width
= size
.x
;
2233 rectBorder
.height
= size
.y
;
2235 else if (hAlign
== wxALIGN_RIGHT
)
2237 rectBorder
.x
= rect
.x
+ rect
.width
- size
.x
- 2;
2238 rectBorder
.y
= rect
.y
+ rect
.height
/ 2 - size
.y
/ 2;
2239 rectBorder
.width
= size
.x
;
2240 rectBorder
.height
= size
.y
;
2244 if ( grid
.GetTable()->CanGetValueAs(row
, col
, wxGRID_VALUE_BOOL
) )
2246 value
= grid
.GetTable()->GetValueAsBool(row
, col
);
2250 wxString
cellval( grid
.GetTable()->GetValue(row
, col
) );
2251 value
= wxGridCellBoolEditor::IsTrueValue(cellval
);
2256 wxRect rectMark
= rectBorder
;
2259 // MSW DrawCheckMark() is weird (and should probably be changed...)
2260 rectMark
.Inflate(-wxGRID_CHECKMARK_MARGIN
/ 2);
2264 rectMark
.Inflate(-wxGRID_CHECKMARK_MARGIN
);
2267 dc
.SetTextForeground(attr
.GetTextColour());
2268 dc
.DrawCheckMark(rectMark
);
2271 dc
.SetBrush(*wxTRANSPARENT_BRUSH
);
2272 dc
.SetPen(wxPen(attr
.GetTextColour(), 1, wxSOLID
));
2273 dc
.DrawRectangle(rectBorder
);
2276 // ----------------------------------------------------------------------------
2278 // ----------------------------------------------------------------------------
2280 void wxGridCellAttr::Init(wxGridCellAttr
*attrDefault
)
2284 m_isReadOnly
= Unset
;
2289 m_attrkind
= wxGridCellAttr::Cell
;
2291 m_sizeRows
= m_sizeCols
= 1;
2292 m_overflow
= UnsetOverflow
;
2294 SetDefAttr(attrDefault
);
2297 wxGridCellAttr
*wxGridCellAttr::Clone() const
2299 wxGridCellAttr
*attr
= new wxGridCellAttr(m_defGridAttr
);
2301 if ( HasTextColour() )
2302 attr
->SetTextColour(GetTextColour());
2303 if ( HasBackgroundColour() )
2304 attr
->SetBackgroundColour(GetBackgroundColour());
2306 attr
->SetFont(GetFont());
2307 if ( HasAlignment() )
2308 attr
->SetAlignment(m_hAlign
, m_vAlign
);
2310 attr
->SetSize( m_sizeRows
, m_sizeCols
);
2314 attr
->SetRenderer(m_renderer
);
2315 m_renderer
->IncRef();
2319 attr
->SetEditor(m_editor
);
2324 attr
->SetReadOnly();
2326 attr
->SetOverflow( m_overflow
== Overflow
);
2327 attr
->SetKind( m_attrkind
);
2332 void wxGridCellAttr::MergeWith(wxGridCellAttr
*mergefrom
)
2334 if ( !HasTextColour() && mergefrom
->HasTextColour() )
2335 SetTextColour(mergefrom
->GetTextColour());
2336 if ( !HasBackgroundColour() && mergefrom
->HasBackgroundColour() )
2337 SetBackgroundColour(mergefrom
->GetBackgroundColour());
2338 if ( !HasFont() && mergefrom
->HasFont() )
2339 SetFont(mergefrom
->GetFont());
2340 if ( !HasAlignment() && mergefrom
->HasAlignment() )
2343 mergefrom
->GetAlignment( &hAlign
, &vAlign
);
2344 SetAlignment(hAlign
, vAlign
);
2346 if ( !HasSize() && mergefrom
->HasSize() )
2347 mergefrom
->GetSize( &m_sizeRows
, &m_sizeCols
);
2349 // Directly access member functions as GetRender/Editor don't just return
2350 // m_renderer/m_editor
2352 // Maybe add support for merge of Render and Editor?
2353 if (!HasRenderer() && mergefrom
->HasRenderer() )
2355 m_renderer
= mergefrom
->m_renderer
;
2356 m_renderer
->IncRef();
2358 if ( !HasEditor() && mergefrom
->HasEditor() )
2360 m_editor
= mergefrom
->m_editor
;
2363 if ( !HasReadWriteMode() && mergefrom
->HasReadWriteMode() )
2364 SetReadOnly(mergefrom
->IsReadOnly());
2366 if (!HasOverflowMode() && mergefrom
->HasOverflowMode() )
2367 SetOverflow(mergefrom
->GetOverflow());
2369 SetDefAttr(mergefrom
->m_defGridAttr
);
2372 void wxGridCellAttr::SetSize(int num_rows
, int num_cols
)
2374 // The size of a cell is normally 1,1
2376 // If this cell is larger (2,2) then this is the top left cell
2377 // the other cells that will be covered (lower right cells) must be
2378 // set to negative or zero values such that
2379 // row + num_rows of the covered cell points to the larger cell (this cell)
2380 // same goes for the col + num_cols.
2382 // Size of 0,0 is NOT valid, neither is <=0 and any positive value
2384 wxASSERT_MSG( (!((num_rows
> 0) && (num_cols
<= 0)) ||
2385 !((num_rows
<= 0) && (num_cols
> 0)) ||
2386 !((num_rows
== 0) && (num_cols
== 0))),
2387 wxT("wxGridCellAttr::SetSize only takes two postive values or negative/zero values"));
2389 m_sizeRows
= num_rows
;
2390 m_sizeCols
= num_cols
;
2393 const wxColour
& wxGridCellAttr::GetTextColour() const
2395 if (HasTextColour())
2399 else if (m_defGridAttr
&& m_defGridAttr
!= this)
2401 return m_defGridAttr
->GetTextColour();
2405 wxFAIL_MSG(wxT("Missing default cell attribute"));
2406 return wxNullColour
;
2410 const wxColour
& wxGridCellAttr::GetBackgroundColour() const
2412 if (HasBackgroundColour())
2416 else if (m_defGridAttr
&& m_defGridAttr
!= this)
2418 return m_defGridAttr
->GetBackgroundColour();
2422 wxFAIL_MSG(wxT("Missing default cell attribute"));
2423 return wxNullColour
;
2427 const wxFont
& wxGridCellAttr::GetFont() const
2433 else if (m_defGridAttr
&& m_defGridAttr
!= this)
2435 return m_defGridAttr
->GetFont();
2439 wxFAIL_MSG(wxT("Missing default cell attribute"));
2444 void wxGridCellAttr::GetAlignment(int *hAlign
, int *vAlign
) const
2453 else if (m_defGridAttr
&& m_defGridAttr
!= this)
2455 m_defGridAttr
->GetAlignment(hAlign
, vAlign
);
2459 wxFAIL_MSG(wxT("Missing default cell attribute"));
2463 void wxGridCellAttr::GetSize( int *num_rows
, int *num_cols
) const
2466 *num_rows
= m_sizeRows
;
2468 *num_cols
= m_sizeCols
;
2471 // GetRenderer and GetEditor use a slightly different decision path about
2472 // which attribute to use. If a non-default attr object has one then it is
2473 // used, otherwise the default editor or renderer is fetched from the grid and
2474 // used. It should be the default for the data type of the cell. If it is
2475 // NULL (because the table has a type that the grid does not have in its
2476 // registry), then the grid's default editor or renderer is used.
2478 wxGridCellRenderer
* wxGridCellAttr::GetRenderer(const wxGrid
* grid
, int row
, int col
) const
2480 wxGridCellRenderer
*renderer
= NULL
;
2482 if ( m_renderer
&& this != m_defGridAttr
)
2484 // use the cells renderer if it has one
2485 renderer
= m_renderer
;
2488 else // no non-default cell renderer
2490 // get default renderer for the data type
2493 // GetDefaultRendererForCell() will do IncRef() for us
2494 renderer
= grid
->GetDefaultRendererForCell(row
, col
);
2497 if ( renderer
== NULL
)
2499 if ( (m_defGridAttr
!= NULL
) && (m_defGridAttr
!= this) )
2501 // if we still don't have one then use the grid default
2502 // (no need for IncRef() here neither)
2503 renderer
= m_defGridAttr
->GetRenderer(NULL
, 0, 0);
2505 else // default grid attr
2507 // use m_renderer which we had decided not to use initially
2508 renderer
= m_renderer
;
2515 // we're supposed to always find something
2516 wxASSERT_MSG(renderer
, wxT("Missing default cell renderer"));
2521 // same as above, except for s/renderer/editor/g
2522 wxGridCellEditor
* wxGridCellAttr::GetEditor(const wxGrid
* grid
, int row
, int col
) const
2524 wxGridCellEditor
*editor
= NULL
;
2526 if ( m_editor
&& this != m_defGridAttr
)
2528 // use the cells editor if it has one
2532 else // no non default cell editor
2534 // get default editor for the data type
2537 // GetDefaultEditorForCell() will do IncRef() for us
2538 editor
= grid
->GetDefaultEditorForCell(row
, col
);
2541 if ( editor
== NULL
)
2543 if ( (m_defGridAttr
!= NULL
) && (m_defGridAttr
!= this) )
2545 // if we still don't have one then use the grid default
2546 // (no need for IncRef() here neither)
2547 editor
= m_defGridAttr
->GetEditor(NULL
, 0, 0);
2549 else // default grid attr
2551 // use m_editor which we had decided not to use initially
2559 // we're supposed to always find something
2560 wxASSERT_MSG(editor
, wxT("Missing default cell editor"));
2565 // ----------------------------------------------------------------------------
2566 // wxGridCellAttrData
2567 // ----------------------------------------------------------------------------
2569 void wxGridCellAttrData::SetAttr(wxGridCellAttr
*attr
, int row
, int col
)
2571 int n
= FindIndex(row
, col
);
2572 if ( n
== wxNOT_FOUND
)
2574 // add the attribute
2575 m_attrs
.Add(new wxGridCellWithAttr(row
, col
, attr
));
2579 // free the old attribute
2580 m_attrs
[(size_t)n
].attr
->DecRef();
2584 // change the attribute
2585 m_attrs
[(size_t)n
].attr
= attr
;
2589 // remove this attribute
2590 m_attrs
.RemoveAt((size_t)n
);
2595 wxGridCellAttr
*wxGridCellAttrData::GetAttr(int row
, int col
) const
2597 wxGridCellAttr
*attr
= (wxGridCellAttr
*)NULL
;
2599 int n
= FindIndex(row
, col
);
2600 if ( n
!= wxNOT_FOUND
)
2602 attr
= m_attrs
[(size_t)n
].attr
;
2609 void wxGridCellAttrData::UpdateAttrRows( size_t pos
, int numRows
)
2611 size_t count
= m_attrs
.GetCount();
2612 for ( size_t n
= 0; n
< count
; n
++ )
2614 wxGridCellCoords
& coords
= m_attrs
[n
].coords
;
2615 wxCoord row
= coords
.GetRow();
2616 if ((size_t)row
>= pos
)
2620 // If rows inserted, include row counter where necessary
2621 coords
.SetRow(row
+ numRows
);
2623 else if (numRows
< 0)
2625 // If rows deleted ...
2626 if ((size_t)row
>= pos
- numRows
)
2628 // ...either decrement row counter (if row still exists)...
2629 coords
.SetRow(row
+ numRows
);
2633 // ...or remove the attribute
2634 // No need to DecRef the attribute itself since this is
2635 // done be wxGridCellWithAttr's destructor!
2636 m_attrs
.RemoveAt(n
);
2645 void wxGridCellAttrData::UpdateAttrCols( size_t pos
, int numCols
)
2647 size_t count
= m_attrs
.GetCount();
2648 for ( size_t n
= 0; n
< count
; n
++ )
2650 wxGridCellCoords
& coords
= m_attrs
[n
].coords
;
2651 wxCoord col
= coords
.GetCol();
2652 if ( (size_t)col
>= pos
)
2656 // If rows inserted, include row counter where necessary
2657 coords
.SetCol(col
+ numCols
);
2659 else if (numCols
< 0)
2661 // If rows deleted ...
2662 if ((size_t)col
>= pos
- numCols
)
2664 // ...either decrement row counter (if row still exists)...
2665 coords
.SetCol(col
+ numCols
);
2669 // ...or remove the attribute
2670 // No need to DecRef the attribute itself since this is
2671 // done be wxGridCellWithAttr's destructor!
2672 m_attrs
.RemoveAt(n
);
2681 int wxGridCellAttrData::FindIndex(int row
, int col
) const
2683 size_t count
= m_attrs
.GetCount();
2684 for ( size_t n
= 0; n
< count
; n
++ )
2686 const wxGridCellCoords
& coords
= m_attrs
[n
].coords
;
2687 if ( (coords
.GetRow() == row
) && (coords
.GetCol() == col
) )
2696 // ----------------------------------------------------------------------------
2697 // wxGridRowOrColAttrData
2698 // ----------------------------------------------------------------------------
2700 wxGridRowOrColAttrData::~wxGridRowOrColAttrData()
2702 size_t count
= m_attrs
.Count();
2703 for ( size_t n
= 0; n
< count
; n
++ )
2705 m_attrs
[n
]->DecRef();
2709 wxGridCellAttr
*wxGridRowOrColAttrData::GetAttr(int rowOrCol
) const
2711 wxGridCellAttr
*attr
= (wxGridCellAttr
*)NULL
;
2713 int n
= m_rowsOrCols
.Index(rowOrCol
);
2714 if ( n
!= wxNOT_FOUND
)
2716 attr
= m_attrs
[(size_t)n
];
2723 void wxGridRowOrColAttrData::SetAttr(wxGridCellAttr
*attr
, int rowOrCol
)
2725 int i
= m_rowsOrCols
.Index(rowOrCol
);
2726 if ( i
== wxNOT_FOUND
)
2728 // add the attribute
2729 m_rowsOrCols
.Add(rowOrCol
);
2734 size_t n
= (size_t)i
;
2737 // change the attribute
2738 m_attrs
[n
]->DecRef();
2743 // remove this attribute
2744 m_attrs
[n
]->DecRef();
2745 m_rowsOrCols
.RemoveAt(n
);
2746 m_attrs
.RemoveAt(n
);
2751 void wxGridRowOrColAttrData::UpdateAttrRowsOrCols( size_t pos
, int numRowsOrCols
)
2753 size_t count
= m_attrs
.GetCount();
2754 for ( size_t n
= 0; n
< count
; n
++ )
2756 int & rowOrCol
= m_rowsOrCols
[n
];
2757 if ( (size_t)rowOrCol
>= pos
)
2759 if ( numRowsOrCols
> 0 )
2761 // If rows inserted, include row counter where necessary
2762 rowOrCol
+= numRowsOrCols
;
2764 else if ( numRowsOrCols
< 0)
2766 // If rows deleted, either decrement row counter (if row still exists)
2767 if ((size_t)rowOrCol
>= pos
- numRowsOrCols
)
2768 rowOrCol
+= numRowsOrCols
;
2771 m_rowsOrCols
.RemoveAt(n
);
2772 m_attrs
[n
]->DecRef();
2773 m_attrs
.RemoveAt(n
);
2782 // ----------------------------------------------------------------------------
2783 // wxGridCellAttrProvider
2784 // ----------------------------------------------------------------------------
2786 wxGridCellAttrProvider::wxGridCellAttrProvider()
2788 m_data
= (wxGridCellAttrProviderData
*)NULL
;
2791 wxGridCellAttrProvider::~wxGridCellAttrProvider()
2796 void wxGridCellAttrProvider::InitData()
2798 m_data
= new wxGridCellAttrProviderData
;
2801 wxGridCellAttr
*wxGridCellAttrProvider::GetAttr(int row
, int col
,
2802 wxGridCellAttr::wxAttrKind kind
) const
2804 wxGridCellAttr
*attr
= (wxGridCellAttr
*)NULL
;
2809 case (wxGridCellAttr::Any
):
2810 // Get cached merge attributes.
2811 // Currently not used as no cache implemented as not mutable
2812 // attr = m_data->m_mergeAttr.GetAttr(row, col);
2815 // Basically implement old version.
2816 // Also check merge cache, so we don't have to re-merge every time..
2817 wxGridCellAttr
*attrcell
= m_data
->m_cellAttrs
.GetAttr(row
, col
);
2818 wxGridCellAttr
*attrrow
= m_data
->m_rowAttrs
.GetAttr(row
);
2819 wxGridCellAttr
*attrcol
= m_data
->m_colAttrs
.GetAttr(col
);
2821 if ((attrcell
!= attrrow
) && (attrrow
!= attrcol
) && (attrcell
!= attrcol
))
2823 // Two or more are non NULL
2824 attr
= new wxGridCellAttr
;
2825 attr
->SetKind(wxGridCellAttr::Merged
);
2827 // Order is important..
2830 attr
->MergeWith(attrcell
);
2835 attr
->MergeWith(attrcol
);
2840 attr
->MergeWith(attrrow
);
2844 // store merge attr if cache implemented
2846 //m_data->m_mergeAttr.SetAttr(attr, row, col);
2850 // one or none is non null return it or null.
2869 case (wxGridCellAttr::Cell
):
2870 attr
= m_data
->m_cellAttrs
.GetAttr(row
, col
);
2873 case (wxGridCellAttr::Col
):
2874 attr
= m_data
->m_colAttrs
.GetAttr(col
);
2877 case (wxGridCellAttr::Row
):
2878 attr
= m_data
->m_rowAttrs
.GetAttr(row
);
2883 // (wxGridCellAttr::Default):
2884 // (wxGridCellAttr::Merged):
2892 void wxGridCellAttrProvider::SetAttr(wxGridCellAttr
*attr
,
2898 m_data
->m_cellAttrs
.SetAttr(attr
, row
, col
);
2901 void wxGridCellAttrProvider::SetRowAttr(wxGridCellAttr
*attr
, int row
)
2906 m_data
->m_rowAttrs
.SetAttr(attr
, row
);
2909 void wxGridCellAttrProvider::SetColAttr(wxGridCellAttr
*attr
, int col
)
2914 m_data
->m_colAttrs
.SetAttr(attr
, col
);
2917 void wxGridCellAttrProvider::UpdateAttrRows( size_t pos
, int numRows
)
2921 m_data
->m_cellAttrs
.UpdateAttrRows( pos
, numRows
);
2923 m_data
->m_rowAttrs
.UpdateAttrRowsOrCols( pos
, numRows
);
2927 void wxGridCellAttrProvider::UpdateAttrCols( size_t pos
, int numCols
)
2931 m_data
->m_cellAttrs
.UpdateAttrCols( pos
, numCols
);
2933 m_data
->m_colAttrs
.UpdateAttrRowsOrCols( pos
, numCols
);
2937 // ----------------------------------------------------------------------------
2938 // wxGridTypeRegistry
2939 // ----------------------------------------------------------------------------
2941 wxGridTypeRegistry::~wxGridTypeRegistry()
2943 size_t count
= m_typeinfo
.Count();
2944 for ( size_t i
= 0; i
< count
; i
++ )
2945 delete m_typeinfo
[i
];
2948 void wxGridTypeRegistry::RegisterDataType(const wxString
& typeName
,
2949 wxGridCellRenderer
* renderer
,
2950 wxGridCellEditor
* editor
)
2952 wxGridDataTypeInfo
* info
= new wxGridDataTypeInfo(typeName
, renderer
, editor
);
2954 // is it already registered?
2955 int loc
= FindRegisteredDataType(typeName
);
2956 if ( loc
!= wxNOT_FOUND
)
2958 delete m_typeinfo
[loc
];
2959 m_typeinfo
[loc
] = info
;
2963 m_typeinfo
.Add(info
);
2967 int wxGridTypeRegistry::FindRegisteredDataType(const wxString
& typeName
)
2969 size_t count
= m_typeinfo
.GetCount();
2970 for ( size_t i
= 0; i
< count
; i
++ )
2972 if ( typeName
== m_typeinfo
[i
]->m_typeName
)
2981 int wxGridTypeRegistry::FindDataType(const wxString
& typeName
)
2983 int index
= FindRegisteredDataType(typeName
);
2984 if ( index
== wxNOT_FOUND
)
2986 // check whether this is one of the standard ones, in which case
2987 // register it "on the fly"
2989 if ( typeName
== wxGRID_VALUE_STRING
)
2991 RegisterDataType(wxGRID_VALUE_STRING
,
2992 new wxGridCellStringRenderer
,
2993 new wxGridCellTextEditor
);
2996 #endif // wxUSE_TEXTCTRL
2998 if ( typeName
== wxGRID_VALUE_BOOL
)
3000 RegisterDataType(wxGRID_VALUE_BOOL
,
3001 new wxGridCellBoolRenderer
,
3002 new wxGridCellBoolEditor
);
3005 #endif // wxUSE_CHECKBOX
3007 if ( typeName
== wxGRID_VALUE_NUMBER
)
3009 RegisterDataType(wxGRID_VALUE_NUMBER
,
3010 new wxGridCellNumberRenderer
,
3011 new wxGridCellNumberEditor
);
3013 else if ( typeName
== wxGRID_VALUE_FLOAT
)
3015 RegisterDataType(wxGRID_VALUE_FLOAT
,
3016 new wxGridCellFloatRenderer
,
3017 new wxGridCellFloatEditor
);
3020 #endif // wxUSE_TEXTCTRL
3022 if ( typeName
== wxGRID_VALUE_CHOICE
)
3024 RegisterDataType(wxGRID_VALUE_CHOICE
,
3025 new wxGridCellStringRenderer
,
3026 new wxGridCellChoiceEditor
);
3029 #endif // wxUSE_COMBOBOX
3034 // we get here only if just added the entry for this type, so return
3036 index
= m_typeinfo
.GetCount() - 1;
3042 int wxGridTypeRegistry::FindOrCloneDataType(const wxString
& typeName
)
3044 int index
= FindDataType(typeName
);
3045 if ( index
== wxNOT_FOUND
)
3047 // the first part of the typename is the "real" type, anything after ':'
3048 // are the parameters for the renderer
3049 index
= FindDataType(typeName
.BeforeFirst(_T(':')));
3050 if ( index
== wxNOT_FOUND
)
3055 wxGridCellRenderer
*renderer
= GetRenderer(index
);
3056 wxGridCellRenderer
*rendererOld
= renderer
;
3057 renderer
= renderer
->Clone();
3058 rendererOld
->DecRef();
3060 wxGridCellEditor
*editor
= GetEditor(index
);
3061 wxGridCellEditor
*editorOld
= editor
;
3062 editor
= editor
->Clone();
3063 editorOld
->DecRef();
3065 // do it even if there are no parameters to reset them to defaults
3066 wxString params
= typeName
.AfterFirst(_T(':'));
3067 renderer
->SetParameters(params
);
3068 editor
->SetParameters(params
);
3070 // register the new typename
3071 RegisterDataType(typeName
, renderer
, editor
);
3073 // we just registered it, it's the last one
3074 index
= m_typeinfo
.GetCount() - 1;
3080 wxGridCellRenderer
* wxGridTypeRegistry::GetRenderer(int index
)
3082 wxGridCellRenderer
* renderer
= m_typeinfo
[index
]->m_renderer
;
3089 wxGridCellEditor
* wxGridTypeRegistry::GetEditor(int index
)
3091 wxGridCellEditor
* editor
= m_typeinfo
[index
]->m_editor
;
3098 // ----------------------------------------------------------------------------
3100 // ----------------------------------------------------------------------------
3102 IMPLEMENT_ABSTRACT_CLASS( wxGridTableBase
, wxObject
)
3104 wxGridTableBase::wxGridTableBase()
3106 m_view
= (wxGrid
*) NULL
;
3107 m_attrProvider
= (wxGridCellAttrProvider
*) NULL
;
3110 wxGridTableBase::~wxGridTableBase()
3112 delete m_attrProvider
;
3115 void wxGridTableBase::SetAttrProvider(wxGridCellAttrProvider
*attrProvider
)
3117 delete m_attrProvider
;
3118 m_attrProvider
= attrProvider
;
3121 bool wxGridTableBase::CanHaveAttributes()
3123 if ( ! GetAttrProvider() )
3125 // use the default attr provider by default
3126 SetAttrProvider(new wxGridCellAttrProvider
);
3132 wxGridCellAttr
*wxGridTableBase::GetAttr(int row
, int col
, wxGridCellAttr::wxAttrKind kind
)
3134 if ( m_attrProvider
)
3135 return m_attrProvider
->GetAttr(row
, col
, kind
);
3137 return (wxGridCellAttr
*)NULL
;
3140 void wxGridTableBase::SetAttr(wxGridCellAttr
* attr
, int row
, int col
)
3142 if ( m_attrProvider
)
3144 attr
->SetKind(wxGridCellAttr::Cell
);
3145 m_attrProvider
->SetAttr(attr
, row
, col
);
3149 // as we take ownership of the pointer and don't store it, we must
3155 void wxGridTableBase::SetRowAttr(wxGridCellAttr
*attr
, int row
)
3157 if ( m_attrProvider
)
3159 attr
->SetKind(wxGridCellAttr::Row
);
3160 m_attrProvider
->SetRowAttr(attr
, row
);
3164 // as we take ownership of the pointer and don't store it, we must
3170 void wxGridTableBase::SetColAttr(wxGridCellAttr
*attr
, int col
)
3172 if ( m_attrProvider
)
3174 attr
->SetKind(wxGridCellAttr::Col
);
3175 m_attrProvider
->SetColAttr(attr
, col
);
3179 // as we take ownership of the pointer and don't store it, we must
3185 bool wxGridTableBase::InsertRows( size_t WXUNUSED(pos
),
3186 size_t WXUNUSED(numRows
) )
3188 wxFAIL_MSG( wxT("Called grid table class function InsertRows\nbut your derived table class does not override this function") );
3193 bool wxGridTableBase::AppendRows( size_t WXUNUSED(numRows
) )
3195 wxFAIL_MSG( wxT("Called grid table class function AppendRows\nbut your derived table class does not override this function"));
3200 bool wxGridTableBase::DeleteRows( size_t WXUNUSED(pos
),
3201 size_t WXUNUSED(numRows
) )
3203 wxFAIL_MSG( wxT("Called grid table class function DeleteRows\nbut your derived table class does not override this function"));
3208 bool wxGridTableBase::InsertCols( size_t WXUNUSED(pos
),
3209 size_t WXUNUSED(numCols
) )
3211 wxFAIL_MSG( wxT("Called grid table class function InsertCols\nbut your derived table class does not override this function"));
3216 bool wxGridTableBase::AppendCols( size_t WXUNUSED(numCols
) )
3218 wxFAIL_MSG(wxT("Called grid table class function AppendCols\nbut your derived table class does not override this function"));
3223 bool wxGridTableBase::DeleteCols( size_t WXUNUSED(pos
),
3224 size_t WXUNUSED(numCols
) )
3226 wxFAIL_MSG( wxT("Called grid table class function DeleteCols\nbut your derived table class does not override this function"));
3231 wxString
wxGridTableBase::GetRowLabelValue( int row
)
3235 // RD: Starting the rows at zero confuses users,
3236 // no matter how much it makes sense to us geeks.
3242 wxString
wxGridTableBase::GetColLabelValue( int col
)
3244 // default col labels are:
3245 // cols 0 to 25 : A-Z
3246 // cols 26 to 675 : AA-ZZ
3251 for ( n
= 1; ; n
++ )
3253 s
+= (wxChar
) (_T('A') + (wxChar
)(col
% 26));
3259 // reverse the string...
3261 for ( i
= 0; i
< n
; i
++ )
3269 wxString
wxGridTableBase::GetTypeName( int WXUNUSED(row
), int WXUNUSED(col
) )
3271 return wxGRID_VALUE_STRING
;
3274 bool wxGridTableBase::CanGetValueAs( int WXUNUSED(row
), int WXUNUSED(col
),
3275 const wxString
& typeName
)
3277 return typeName
== wxGRID_VALUE_STRING
;
3280 bool wxGridTableBase::CanSetValueAs( int row
, int col
, const wxString
& typeName
)
3282 return CanGetValueAs(row
, col
, typeName
);
3285 long wxGridTableBase::GetValueAsLong( int WXUNUSED(row
), int WXUNUSED(col
) )
3290 double wxGridTableBase::GetValueAsDouble( int WXUNUSED(row
), int WXUNUSED(col
) )
3295 bool wxGridTableBase::GetValueAsBool( int WXUNUSED(row
), int WXUNUSED(col
) )
3300 void wxGridTableBase::SetValueAsLong( int WXUNUSED(row
), int WXUNUSED(col
),
3301 long WXUNUSED(value
) )
3305 void wxGridTableBase::SetValueAsDouble( int WXUNUSED(row
), int WXUNUSED(col
),
3306 double WXUNUSED(value
) )
3310 void wxGridTableBase::SetValueAsBool( int WXUNUSED(row
), int WXUNUSED(col
),
3311 bool WXUNUSED(value
) )
3315 void* wxGridTableBase::GetValueAsCustom( int WXUNUSED(row
), int WXUNUSED(col
),
3316 const wxString
& WXUNUSED(typeName
) )
3321 void wxGridTableBase::SetValueAsCustom( int WXUNUSED(row
), int WXUNUSED(col
),
3322 const wxString
& WXUNUSED(typeName
),
3323 void* WXUNUSED(value
) )
3327 //////////////////////////////////////////////////////////////////////
3329 // Message class for the grid table to send requests and notifications
3333 wxGridTableMessage::wxGridTableMessage()
3335 m_table
= (wxGridTableBase
*) NULL
;
3341 wxGridTableMessage::wxGridTableMessage( wxGridTableBase
*table
, int id
,
3342 int commandInt1
, int commandInt2
)
3346 m_comInt1
= commandInt1
;
3347 m_comInt2
= commandInt2
;
3350 //////////////////////////////////////////////////////////////////////
3352 // A basic grid table for string data. An object of this class will
3353 // created by wxGrid if you don't specify an alternative table class.
3356 WX_DEFINE_OBJARRAY(wxGridStringArray
)
3358 IMPLEMENT_DYNAMIC_CLASS( wxGridStringTable
, wxGridTableBase
)
3360 wxGridStringTable::wxGridStringTable()
3365 wxGridStringTable::wxGridStringTable( int numRows
, int numCols
)
3368 m_data
.Alloc( numRows
);
3371 sa
.Alloc( numCols
);
3372 sa
.Add( wxEmptyString
, numCols
);
3374 m_data
.Add( sa
, numRows
);
3377 wxGridStringTable::~wxGridStringTable()
3381 int wxGridStringTable::GetNumberRows()
3383 return m_data
.GetCount();
3386 int wxGridStringTable::GetNumberCols()
3388 if ( m_data
.GetCount() > 0 )
3389 return m_data
[0].GetCount();
3394 wxString
wxGridStringTable::GetValue( int row
, int col
)
3396 wxCHECK_MSG( (row
< GetNumberRows()) && (col
< GetNumberCols()),
3398 _T("invalid row or column index in wxGridStringTable") );
3400 return m_data
[row
][col
];
3403 void wxGridStringTable::SetValue( int row
, int col
, const wxString
& value
)
3405 wxCHECK_RET( (row
< GetNumberRows()) && (col
< GetNumberCols()),
3406 _T("invalid row or column index in wxGridStringTable") );
3408 m_data
[row
][col
] = value
;
3411 bool wxGridStringTable::IsEmptyCell( int row
, int col
)
3413 wxCHECK_MSG( (row
< GetNumberRows()) && (col
< GetNumberCols()),
3415 _T("invalid row or column index in wxGridStringTable") );
3417 return (m_data
[row
][col
] == wxEmptyString
);
3420 void wxGridStringTable::Clear()
3423 int numRows
, numCols
;
3425 numRows
= m_data
.GetCount();
3428 numCols
= m_data
[0].GetCount();
3430 for ( row
= 0; row
< numRows
; row
++ )
3432 for ( col
= 0; col
< numCols
; col
++ )
3434 m_data
[row
][col
] = wxEmptyString
;
3440 bool wxGridStringTable::InsertRows( size_t pos
, size_t numRows
)
3442 size_t curNumRows
= m_data
.GetCount();
3443 size_t curNumCols
= ( curNumRows
> 0 ? m_data
[0].GetCount() :
3444 ( GetView() ? GetView()->GetNumberCols() : 0 ) );
3446 if ( pos
>= curNumRows
)
3448 return AppendRows( numRows
);
3452 sa
.Alloc( curNumCols
);
3453 sa
.Add( wxEmptyString
, curNumCols
);
3454 m_data
.Insert( sa
, pos
, numRows
);
3458 wxGridTableMessage
msg( this,
3459 wxGRIDTABLE_NOTIFY_ROWS_INSERTED
,
3463 GetView()->ProcessTableMessage( msg
);
3469 bool wxGridStringTable::AppendRows( size_t numRows
)
3471 size_t curNumRows
= m_data
.GetCount();
3472 size_t curNumCols
= ( curNumRows
> 0
3473 ? m_data
[0].GetCount()
3474 : ( GetView() ? GetView()->GetNumberCols() : 0 ) );
3477 if ( curNumCols
> 0 )
3479 sa
.Alloc( curNumCols
);
3480 sa
.Add( wxEmptyString
, curNumCols
);
3483 m_data
.Add( sa
, numRows
);
3487 wxGridTableMessage
msg( this,
3488 wxGRIDTABLE_NOTIFY_ROWS_APPENDED
,
3491 GetView()->ProcessTableMessage( msg
);
3497 bool wxGridStringTable::DeleteRows( size_t pos
, size_t numRows
)
3499 size_t curNumRows
= m_data
.GetCount();
3501 if ( pos
>= curNumRows
)
3503 wxFAIL_MSG( wxString::Format
3505 wxT("Called wxGridStringTable::DeleteRows(pos=%lu, N=%lu)\nPos value is invalid for present table with %lu rows"),
3507 (unsigned long)numRows
,
3508 (unsigned long)curNumRows
3514 if ( numRows
> curNumRows
- pos
)
3516 numRows
= curNumRows
- pos
;
3519 if ( numRows
>= curNumRows
)
3525 m_data
.RemoveAt( pos
, numRows
);
3530 wxGridTableMessage
msg( this,
3531 wxGRIDTABLE_NOTIFY_ROWS_DELETED
,
3535 GetView()->ProcessTableMessage( msg
);
3541 bool wxGridStringTable::InsertCols( size_t pos
, size_t numCols
)
3545 size_t curNumRows
= m_data
.GetCount();
3546 size_t curNumCols
= ( curNumRows
> 0
3547 ? m_data
[0].GetCount()
3548 : ( GetView() ? GetView()->GetNumberCols() : 0 ) );
3550 if ( pos
>= curNumCols
)
3552 return AppendCols( numCols
);
3555 if ( !m_colLabels
.IsEmpty() )
3557 m_colLabels
.Insert( wxEmptyString
, pos
, numCols
);
3560 for ( i
= pos
; i
< pos
+ numCols
; i
++ )
3561 m_colLabels
[i
] = wxGridTableBase::GetColLabelValue( i
);
3564 for ( row
= 0; row
< curNumRows
; row
++ )
3566 for ( col
= pos
; col
< pos
+ numCols
; col
++ )
3568 m_data
[row
].Insert( wxEmptyString
, col
);
3574 wxGridTableMessage
msg( this,
3575 wxGRIDTABLE_NOTIFY_COLS_INSERTED
,
3579 GetView()->ProcessTableMessage( msg
);
3585 bool wxGridStringTable::AppendCols( size_t numCols
)
3589 size_t curNumRows
= m_data
.GetCount();
3594 // TODO: something better than this ?
3596 wxFAIL_MSG( wxT("Unable to append cols to a grid table with no rows.\nCall AppendRows() first") );
3601 for ( row
= 0; row
< curNumRows
; row
++ )
3603 m_data
[row
].Add( wxEmptyString
, numCols
);
3608 wxGridTableMessage
msg( this,
3609 wxGRIDTABLE_NOTIFY_COLS_APPENDED
,
3612 GetView()->ProcessTableMessage( msg
);
3618 bool wxGridStringTable::DeleteCols( size_t pos
, size_t numCols
)
3622 size_t curNumRows
= m_data
.GetCount();
3623 size_t curNumCols
= ( curNumRows
> 0 ? m_data
[0].GetCount() :
3624 ( GetView() ? GetView()->GetNumberCols() : 0 ) );
3626 if ( pos
>= curNumCols
)
3628 wxFAIL_MSG( wxString::Format
3630 wxT("Called wxGridStringTable::DeleteCols(pos=%lu, N=%lu)\nPos value is invalid for present table with %lu cols"),
3632 (unsigned long)numCols
,
3633 (unsigned long)curNumCols
3640 colID
= GetView()->GetColAt( pos
);
3644 if ( numCols
> curNumCols
- colID
)
3646 numCols
= curNumCols
- colID
;
3649 if ( !m_colLabels
.IsEmpty() )
3651 m_colLabels
.RemoveAt( colID
, numCols
);
3654 for ( row
= 0; row
< curNumRows
; row
++ )
3656 if ( numCols
>= curNumCols
)
3658 m_data
[row
].Clear();
3662 m_data
[row
].RemoveAt( colID
, numCols
);
3668 wxGridTableMessage
msg( this,
3669 wxGRIDTABLE_NOTIFY_COLS_DELETED
,
3673 GetView()->ProcessTableMessage( msg
);
3679 wxString
wxGridStringTable::GetRowLabelValue( int row
)
3681 if ( row
> (int)(m_rowLabels
.GetCount()) - 1 )
3683 // using default label
3685 return wxGridTableBase::GetRowLabelValue( row
);
3689 return m_rowLabels
[row
];
3693 wxString
wxGridStringTable::GetColLabelValue( int col
)
3695 if ( col
> (int)(m_colLabels
.GetCount()) - 1 )
3697 // using default label
3699 return wxGridTableBase::GetColLabelValue( col
);
3703 return m_colLabels
[col
];
3707 void wxGridStringTable::SetRowLabelValue( int row
, const wxString
& value
)
3709 if ( row
> (int)(m_rowLabels
.GetCount()) - 1 )
3711 int n
= m_rowLabels
.GetCount();
3714 for ( i
= n
; i
<= row
; i
++ )
3716 m_rowLabels
.Add( wxGridTableBase::GetRowLabelValue(i
) );
3720 m_rowLabels
[row
] = value
;
3723 void wxGridStringTable::SetColLabelValue( int col
, const wxString
& value
)
3725 if ( col
> (int)(m_colLabels
.GetCount()) - 1 )
3727 int n
= m_colLabels
.GetCount();
3730 for ( i
= n
; i
<= col
; i
++ )
3732 m_colLabels
.Add( wxGridTableBase::GetColLabelValue(i
) );
3736 m_colLabels
[col
] = value
;
3740 //////////////////////////////////////////////////////////////////////
3741 //////////////////////////////////////////////////////////////////////
3743 IMPLEMENT_DYNAMIC_CLASS( wxGridRowLabelWindow
, wxWindow
)
3745 BEGIN_EVENT_TABLE( wxGridRowLabelWindow
, wxWindow
)
3746 EVT_PAINT( wxGridRowLabelWindow::OnPaint
)
3747 EVT_MOUSEWHEEL( wxGridRowLabelWindow::OnMouseWheel
)
3748 EVT_MOUSE_EVENTS( wxGridRowLabelWindow::OnMouseEvent
)
3749 EVT_KEY_DOWN( wxGridRowLabelWindow::OnKeyDown
)
3750 EVT_KEY_UP( wxGridRowLabelWindow::OnKeyUp
)
3751 EVT_CHAR( wxGridRowLabelWindow::OnChar
)
3754 wxGridRowLabelWindow::wxGridRowLabelWindow( wxGrid
*parent
,
3756 const wxPoint
&pos
, const wxSize
&size
)
3757 : wxWindow( parent
, id
, pos
, size
, wxWANTS_CHARS
| wxBORDER_NONE
| wxFULL_REPAINT_ON_RESIZE
)
3762 void wxGridRowLabelWindow::OnPaint( wxPaintEvent
& WXUNUSED(event
) )
3766 // NO - don't do this because it will set both the x and y origin
3767 // coords to match the parent scrolled window and we just want to
3768 // set the y coord - MB
3770 // m_owner->PrepareDC( dc );
3773 m_owner
->CalcUnscrolledPosition( 0, 0, &x
, &y
);
3774 wxPoint pt
= dc
.GetDeviceOrigin();
3775 dc
.SetDeviceOrigin( pt
.x
, pt
.y
-y
);
3777 wxArrayInt rows
= m_owner
->CalcRowLabelsExposed( GetUpdateRegion() );
3778 m_owner
->DrawRowLabels( dc
, rows
);
3781 void wxGridRowLabelWindow::OnMouseEvent( wxMouseEvent
& event
)
3783 m_owner
->ProcessRowLabelMouseEvent( event
);
3786 void wxGridRowLabelWindow::OnMouseWheel( wxMouseEvent
& event
)
3788 m_owner
->GetEventHandler()->ProcessEvent( event
);
3791 // This seems to be required for wxMotif otherwise the mouse
3792 // cursor must be in the cell edit control to get key events
3794 void wxGridRowLabelWindow::OnKeyDown( wxKeyEvent
& event
)
3796 if ( !m_owner
->GetEventHandler()->ProcessEvent( event
) )
3800 void wxGridRowLabelWindow::OnKeyUp( wxKeyEvent
& event
)
3802 if ( !m_owner
->GetEventHandler()->ProcessEvent( event
) )
3806 void wxGridRowLabelWindow::OnChar( wxKeyEvent
& event
)
3808 if ( !m_owner
->GetEventHandler()->ProcessEvent( event
) )
3812 //////////////////////////////////////////////////////////////////////
3814 IMPLEMENT_DYNAMIC_CLASS( wxGridColLabelWindow
, wxWindow
)
3816 BEGIN_EVENT_TABLE( wxGridColLabelWindow
, wxWindow
)
3817 EVT_PAINT( wxGridColLabelWindow::OnPaint
)
3818 EVT_MOUSEWHEEL( wxGridColLabelWindow::OnMouseWheel
)
3819 EVT_MOUSE_EVENTS( wxGridColLabelWindow::OnMouseEvent
)
3820 EVT_KEY_DOWN( wxGridColLabelWindow::OnKeyDown
)
3821 EVT_KEY_UP( wxGridColLabelWindow::OnKeyUp
)
3822 EVT_CHAR( wxGridColLabelWindow::OnChar
)
3825 wxGridColLabelWindow::wxGridColLabelWindow( wxGrid
*parent
,
3827 const wxPoint
&pos
, const wxSize
&size
)
3828 : wxWindow( parent
, id
, pos
, size
, wxWANTS_CHARS
| wxBORDER_NONE
| wxFULL_REPAINT_ON_RESIZE
)
3833 void wxGridColLabelWindow::OnPaint( wxPaintEvent
& WXUNUSED(event
) )
3837 // NO - don't do this because it will set both the x and y origin
3838 // coords to match the parent scrolled window and we just want to
3839 // set the x coord - MB
3841 // m_owner->PrepareDC( dc );
3844 m_owner
->CalcUnscrolledPosition( 0, 0, &x
, &y
);
3845 wxPoint pt
= dc
.GetDeviceOrigin();
3846 if (GetLayoutDirection() == wxLayout_RightToLeft
)
3847 dc
.SetDeviceOrigin( pt
.x
+x
, pt
.y
);
3849 dc
.SetDeviceOrigin( pt
.x
-x
, pt
.y
);
3851 wxArrayInt cols
= m_owner
->CalcColLabelsExposed( GetUpdateRegion() );
3852 m_owner
->DrawColLabels( dc
, cols
);
3855 void wxGridColLabelWindow::OnMouseEvent( wxMouseEvent
& event
)
3857 m_owner
->ProcessColLabelMouseEvent( event
);
3860 void wxGridColLabelWindow::OnMouseWheel( wxMouseEvent
& event
)
3862 m_owner
->GetEventHandler()->ProcessEvent( event
);
3865 // This seems to be required for wxMotif otherwise the mouse
3866 // cursor must be in the cell edit control to get key events
3868 void wxGridColLabelWindow::OnKeyDown( wxKeyEvent
& event
)
3870 if ( !m_owner
->GetEventHandler()->ProcessEvent( event
) )
3874 void wxGridColLabelWindow::OnKeyUp( wxKeyEvent
& event
)
3876 if ( !m_owner
->GetEventHandler()->ProcessEvent( event
) )
3880 void wxGridColLabelWindow::OnChar( wxKeyEvent
& event
)
3882 if ( !m_owner
->GetEventHandler()->ProcessEvent( event
) )
3886 //////////////////////////////////////////////////////////////////////
3888 IMPLEMENT_DYNAMIC_CLASS( wxGridCornerLabelWindow
, wxWindow
)
3890 BEGIN_EVENT_TABLE( wxGridCornerLabelWindow
, wxWindow
)
3891 EVT_MOUSEWHEEL( wxGridCornerLabelWindow::OnMouseWheel
)
3892 EVT_MOUSE_EVENTS( wxGridCornerLabelWindow::OnMouseEvent
)
3893 EVT_PAINT( wxGridCornerLabelWindow::OnPaint
)
3894 EVT_KEY_DOWN( wxGridCornerLabelWindow::OnKeyDown
)
3895 EVT_KEY_UP( wxGridCornerLabelWindow::OnKeyUp
)
3896 EVT_CHAR( wxGridCornerLabelWindow::OnChar
)
3899 wxGridCornerLabelWindow::wxGridCornerLabelWindow( wxGrid
*parent
,
3901 const wxPoint
&pos
, const wxSize
&size
)
3902 : wxWindow( parent
, id
, pos
, size
, wxWANTS_CHARS
| wxBORDER_NONE
| wxFULL_REPAINT_ON_RESIZE
)
3907 void wxGridCornerLabelWindow::OnPaint( wxPaintEvent
& WXUNUSED(event
) )
3911 int client_height
= 0;
3912 int client_width
= 0;
3913 GetClientSize( &client_width
, &client_height
);
3915 // VZ: any reason for this ifdef? (FIXME)
3921 rect
.SetWidth( client_width
- 2 );
3922 rect
.SetHeight( client_height
- 2 );
3924 wxRendererNative::Get().DrawHeaderButton( this, dc
, rect
, 0 );
3926 dc
.SetPen( wxPen(wxSystemSettings::GetColour(wxSYS_COLOUR_3DSHADOW
), 1, wxSOLID
) );
3927 dc
.DrawLine( client_width
- 1, client_height
- 1, client_width
- 1, 0 );
3928 dc
.DrawLine( client_width
- 1, client_height
- 1, 0, client_height
- 1 );
3929 dc
.DrawLine( 0, 0, client_width
, 0 );
3930 dc
.DrawLine( 0, 0, 0, client_height
);
3932 dc
.SetPen( *wxWHITE_PEN
);
3933 dc
.DrawLine( 1, 1, client_width
- 1, 1 );
3934 dc
.DrawLine( 1, 1, 1, client_height
- 1 );
3938 void wxGridCornerLabelWindow::OnMouseEvent( wxMouseEvent
& event
)
3940 m_owner
->ProcessCornerLabelMouseEvent( event
);
3943 void wxGridCornerLabelWindow::OnMouseWheel( wxMouseEvent
& event
)
3945 m_owner
->GetEventHandler()->ProcessEvent(event
);
3948 // This seems to be required for wxMotif otherwise the mouse
3949 // cursor must be in the cell edit control to get key events
3951 void wxGridCornerLabelWindow::OnKeyDown( wxKeyEvent
& event
)
3953 if ( !m_owner
->GetEventHandler()->ProcessEvent( event
) )
3957 void wxGridCornerLabelWindow::OnKeyUp( wxKeyEvent
& event
)
3959 if ( !m_owner
->GetEventHandler()->ProcessEvent( event
) )
3963 void wxGridCornerLabelWindow::OnChar( wxKeyEvent
& event
)
3965 if ( !m_owner
->GetEventHandler()->ProcessEvent( event
) )
3969 //////////////////////////////////////////////////////////////////////
3971 IMPLEMENT_DYNAMIC_CLASS( wxGridWindow
, wxWindow
)
3973 BEGIN_EVENT_TABLE( wxGridWindow
, wxWindow
)
3974 EVT_PAINT( wxGridWindow::OnPaint
)
3975 EVT_MOUSEWHEEL( wxGridWindow::OnMouseWheel
)
3976 EVT_MOUSE_EVENTS( wxGridWindow::OnMouseEvent
)
3977 EVT_KEY_DOWN( wxGridWindow::OnKeyDown
)
3978 EVT_KEY_UP( wxGridWindow::OnKeyUp
)
3979 EVT_CHAR( wxGridWindow::OnChar
)
3980 EVT_SET_FOCUS( wxGridWindow::OnFocus
)
3981 EVT_KILL_FOCUS( wxGridWindow::OnFocus
)
3982 EVT_ERASE_BACKGROUND( wxGridWindow::OnEraseBackground
)
3985 wxGridWindow::wxGridWindow( wxGrid
*parent
,
3986 wxGridRowLabelWindow
*rowLblWin
,
3987 wxGridColLabelWindow
*colLblWin
,
3990 const wxSize
&size
)
3992 parent
, id
, pos
, size
,
3993 wxWANTS_CHARS
| wxBORDER_NONE
| wxCLIP_CHILDREN
| wxFULL_REPAINT_ON_RESIZE
,
3994 wxT("grid window") )
3997 m_rowLabelWin
= rowLblWin
;
3998 m_colLabelWin
= colLblWin
;
4001 void wxGridWindow::OnPaint( wxPaintEvent
&WXUNUSED(event
) )
4003 wxPaintDC
dc( this );
4004 m_owner
->PrepareDC( dc
);
4005 wxRegion reg
= GetUpdateRegion();
4006 wxGridCellCoordsArray dirtyCells
= m_owner
->CalcCellsExposed( reg
);
4007 m_owner
->DrawGridCellArea( dc
, dirtyCells
);
4009 #if WXGRID_DRAW_LINES
4010 m_owner
->DrawAllGridLines( dc
, reg
);
4013 m_owner
->DrawGridSpace( dc
);
4014 m_owner
->DrawHighlight( dc
, dirtyCells
);
4017 void wxGridWindow::ScrollWindow( int dx
, int dy
, const wxRect
*rect
)
4019 wxWindow::ScrollWindow( dx
, dy
, rect
);
4020 m_rowLabelWin
->ScrollWindow( 0, dy
, rect
);
4021 m_colLabelWin
->ScrollWindow( dx
, 0, rect
);
4024 void wxGridWindow::OnMouseEvent( wxMouseEvent
& event
)
4026 if (event
.ButtonDown(wxMOUSE_BTN_LEFT
) && FindFocus() != this)
4029 m_owner
->ProcessGridCellMouseEvent( event
);
4032 void wxGridWindow::OnMouseWheel( wxMouseEvent
& event
)
4034 m_owner
->GetEventHandler()->ProcessEvent( event
);
4037 // This seems to be required for wxMotif/wxGTK otherwise the mouse
4038 // cursor must be in the cell edit control to get key events
4040 void wxGridWindow::OnKeyDown( wxKeyEvent
& event
)
4042 if ( !m_owner
->GetEventHandler()->ProcessEvent( event
) )
4046 void wxGridWindow::OnKeyUp( wxKeyEvent
& event
)
4048 if ( !m_owner
->GetEventHandler()->ProcessEvent( event
) )
4052 void wxGridWindow::OnChar( wxKeyEvent
& event
)
4054 if ( !m_owner
->GetEventHandler()->ProcessEvent( event
) )
4058 void wxGridWindow::OnEraseBackground( wxEraseEvent
& WXUNUSED(event
) )
4062 void wxGridWindow::OnFocus(wxFocusEvent
& event
)
4064 if ( !m_owner
->GetEventHandler()->ProcessEvent( event
) )
4068 //////////////////////////////////////////////////////////////////////
4070 // Internal Helper function for computing row or column from some
4071 // (unscrolled) coordinate value, using either
4072 // m_defaultRowHeight/m_defaultColWidth or binary search on array
4073 // of m_rowBottoms/m_ColRights to speed up the search!
4075 // Internal helper macros for simpler use of that function
4077 static int CoordToRowOrCol(int coord
, int defaultDist
, int minDist
,
4078 const wxArrayInt
& BorderArray
, int nMax
,
4081 #define internalXToCol(x) XToCol(x, true)
4082 #define internalYToRow(y) CoordToRowOrCol(y, m_defaultRowHeight, \
4083 m_minAcceptableRowHeight, \
4084 m_rowBottoms, m_numRows, true)
4086 /////////////////////////////////////////////////////////////////////
4088 #if wxUSE_EXTENDED_RTTI
4089 WX_DEFINE_FLAGS( wxGridStyle
)
4091 wxBEGIN_FLAGS( wxGridStyle
)
4092 // new style border flags, we put them first to
4093 // use them for streaming out
4094 wxFLAGS_MEMBER(wxBORDER_SIMPLE
)
4095 wxFLAGS_MEMBER(wxBORDER_SUNKEN
)
4096 wxFLAGS_MEMBER(wxBORDER_DOUBLE
)
4097 wxFLAGS_MEMBER(wxBORDER_RAISED
)
4098 wxFLAGS_MEMBER(wxBORDER_STATIC
)
4099 wxFLAGS_MEMBER(wxBORDER_NONE
)
4101 // old style border flags
4102 wxFLAGS_MEMBER(wxSIMPLE_BORDER
)
4103 wxFLAGS_MEMBER(wxSUNKEN_BORDER
)
4104 wxFLAGS_MEMBER(wxDOUBLE_BORDER
)
4105 wxFLAGS_MEMBER(wxRAISED_BORDER
)
4106 wxFLAGS_MEMBER(wxSTATIC_BORDER
)
4107 wxFLAGS_MEMBER(wxBORDER
)
4109 // standard window styles
4110 wxFLAGS_MEMBER(wxTAB_TRAVERSAL
)
4111 wxFLAGS_MEMBER(wxCLIP_CHILDREN
)
4112 wxFLAGS_MEMBER(wxTRANSPARENT_WINDOW
)
4113 wxFLAGS_MEMBER(wxWANTS_CHARS
)
4114 wxFLAGS_MEMBER(wxFULL_REPAINT_ON_RESIZE
)
4115 wxFLAGS_MEMBER(wxALWAYS_SHOW_SB
)
4116 wxFLAGS_MEMBER(wxVSCROLL
)
4117 wxFLAGS_MEMBER(wxHSCROLL
)
4119 wxEND_FLAGS( wxGridStyle
)
4121 IMPLEMENT_DYNAMIC_CLASS_XTI(wxGrid
, wxScrolledWindow
,"wx/grid.h")
4123 wxBEGIN_PROPERTIES_TABLE(wxGrid
)
4124 wxHIDE_PROPERTY( Children
)
4125 wxPROPERTY_FLAGS( WindowStyle
, wxGridStyle
, long , SetWindowStyleFlag
, GetWindowStyleFlag
, EMPTY_MACROVALUE
, 0 /*flags*/ , wxT("Helpstring") , wxT("group")) // style
4126 wxEND_PROPERTIES_TABLE()
4128 wxBEGIN_HANDLERS_TABLE(wxGrid
)
4129 wxEND_HANDLERS_TABLE()
4131 wxCONSTRUCTOR_5( wxGrid
, wxWindow
* , Parent
, wxWindowID
, Id
, wxPoint
, Position
, wxSize
, Size
, long , WindowStyle
)
4134 TODO : Expose more information of a list's layout, etc. via appropriate objects (e.g., NotebookPageInfo)
4137 IMPLEMENT_DYNAMIC_CLASS( wxGrid
, wxScrolledWindow
)
4140 BEGIN_EVENT_TABLE( wxGrid
, wxScrolledWindow
)
4141 EVT_PAINT( wxGrid::OnPaint
)
4142 EVT_SIZE( wxGrid::OnSize
)
4143 EVT_KEY_DOWN( wxGrid::OnKeyDown
)
4144 EVT_KEY_UP( wxGrid::OnKeyUp
)
4145 EVT_CHAR ( wxGrid::OnChar
)
4146 EVT_ERASE_BACKGROUND( wxGrid::OnEraseBackground
)
4151 // in order to make sure that a size event is not
4152 // trigerred in a unfinished state
4153 m_cornerLabelWin
= NULL
;
4154 m_rowLabelWin
= NULL
;
4155 m_colLabelWin
= NULL
;
4159 wxGrid::wxGrid( wxWindow
*parent
,
4164 const wxString
& name
)
4165 : wxScrolledWindow( parent
, id
, pos
, size
, (style
| wxWANTS_CHARS
), name
),
4166 m_colMinWidths(GRID_HASH_SIZE
),
4167 m_rowMinHeights(GRID_HASH_SIZE
)
4170 SetInitialSize(size
);
4173 bool wxGrid::Create(wxWindow
*parent
, wxWindowID id
,
4174 const wxPoint
& pos
, const wxSize
& size
,
4175 long style
, const wxString
& name
)
4177 if (!wxScrolledWindow::Create(parent
, id
, pos
, size
,
4178 style
| wxWANTS_CHARS
, name
))
4181 m_colMinWidths
= wxLongToLongHashMap(GRID_HASH_SIZE
);
4182 m_rowMinHeights
= wxLongToLongHashMap(GRID_HASH_SIZE
);
4185 SetInitialSize(size
);
4192 // Must do this or ~wxScrollHelper will pop the wrong event handler
4193 SetTargetWindow(this);
4195 wxSafeDecRef(m_defaultCellAttr
);
4197 #ifdef DEBUG_ATTR_CACHE
4198 size_t total
= gs_nAttrCacheHits
+ gs_nAttrCacheMisses
;
4199 wxPrintf(_T("wxGrid attribute cache statistics: "
4200 "total: %u, hits: %u (%u%%)\n"),
4201 total
, gs_nAttrCacheHits
,
4202 total
? (gs_nAttrCacheHits
*100) / total
: 0);
4205 // if we own the table, just delete it, otherwise at least don't leave it
4206 // with dangling view pointer
4209 else if ( m_table
&& m_table
->GetView() == this )
4210 m_table
->SetView(NULL
);
4212 delete m_typeRegistry
;
4217 // ----- internal init and update functions
4220 // NOTE: If using the default visual attributes works everywhere then this can
4221 // be removed as well as the #else cases below.
4222 #define _USE_VISATTR 0
4224 void wxGrid::Create()
4226 // set to true by CreateGrid
4229 // create the type registry
4230 m_typeRegistry
= new wxGridTypeRegistry
;
4233 m_table
= (wxGridTableBase
*) NULL
;
4236 m_cellEditCtrlEnabled
= false;
4238 m_defaultCellAttr
= new wxGridCellAttr();
4240 // Set default cell attributes
4241 m_defaultCellAttr
->SetDefAttr(m_defaultCellAttr
);
4242 m_defaultCellAttr
->SetKind(wxGridCellAttr::Default
);
4243 m_defaultCellAttr
->SetFont(GetFont());
4244 m_defaultCellAttr
->SetAlignment(wxALIGN_LEFT
, wxALIGN_TOP
);
4245 m_defaultCellAttr
->SetRenderer(new wxGridCellStringRenderer
);
4246 m_defaultCellAttr
->SetEditor(new wxGridCellTextEditor
);
4249 wxVisualAttributes gva
= wxListBox::GetClassDefaultAttributes();
4250 wxVisualAttributes lva
= wxPanel::GetClassDefaultAttributes();
4252 m_defaultCellAttr
->SetTextColour(gva
.colFg
);
4253 m_defaultCellAttr
->SetBackgroundColour(gva
.colBg
);
4256 m_defaultCellAttr
->SetTextColour(
4257 wxSystemSettings::GetColour(wxSYS_COLOUR_WINDOWTEXT
));
4258 m_defaultCellAttr
->SetBackgroundColour(
4259 wxSystemSettings::GetColour(wxSYS_COLOUR_WINDOW
));
4264 m_currentCellCoords
= wxGridNoCellCoords
;
4266 m_rowLabelWidth
= WXGRID_DEFAULT_ROW_LABEL_WIDTH
;
4267 m_colLabelHeight
= WXGRID_DEFAULT_COL_LABEL_HEIGHT
;
4269 // subwindow components that make up the wxGrid
4270 m_rowLabelWin
= new wxGridRowLabelWindow( this,
4275 m_colLabelWin
= new wxGridColLabelWindow( this,
4280 m_cornerLabelWin
= new wxGridCornerLabelWindow( this,
4285 m_gridWin
= new wxGridWindow( this,
4292 SetTargetWindow( m_gridWin
);
4295 wxColour gfg
= gva
.colFg
;
4296 wxColour gbg
= gva
.colBg
;
4297 wxColour lfg
= lva
.colFg
;
4298 wxColour lbg
= lva
.colBg
;
4300 wxColour gfg
= wxSystemSettings::GetColour( wxSYS_COLOUR_WINDOWTEXT
);
4301 wxColour gbg
= wxSystemSettings::GetColour( wxSYS_COLOUR_WINDOW
);
4302 wxColour lfg
= wxSystemSettings::GetColour( wxSYS_COLOUR_WINDOWTEXT
);
4303 wxColour lbg
= wxSystemSettings::GetColour( wxSYS_COLOUR_BTNFACE
);
4306 m_cornerLabelWin
->SetOwnForegroundColour(lfg
);
4307 m_cornerLabelWin
->SetOwnBackgroundColour(lbg
);
4308 m_rowLabelWin
->SetOwnForegroundColour(lfg
);
4309 m_rowLabelWin
->SetOwnBackgroundColour(lbg
);
4310 m_colLabelWin
->SetOwnForegroundColour(lfg
);
4311 m_colLabelWin
->SetOwnBackgroundColour(lbg
);
4313 m_gridWin
->SetOwnForegroundColour(gfg
);
4314 m_gridWin
->SetOwnBackgroundColour(gbg
);
4319 bool wxGrid::CreateGrid( int numRows
, int numCols
,
4320 wxGrid::wxGridSelectionModes selmode
)
4322 wxCHECK_MSG( !m_created
,
4324 wxT("wxGrid::CreateGrid or wxGrid::SetTable called more than once") );
4326 m_numRows
= numRows
;
4327 m_numCols
= numCols
;
4329 m_table
= new wxGridStringTable( m_numRows
, m_numCols
);
4330 m_table
->SetView( this );
4332 m_selection
= new wxGridSelection( this, selmode
);
4341 void wxGrid::SetSelectionMode(wxGrid::wxGridSelectionModes selmode
)
4343 wxCHECK_RET( m_created
,
4344 wxT("Called wxGrid::SetSelectionMode() before calling CreateGrid()") );
4346 m_selection
->SetSelectionMode( selmode
);
4349 wxGrid::wxGridSelectionModes
wxGrid::GetSelectionMode() const
4351 wxCHECK_MSG( m_created
, wxGrid::wxGridSelectCells
,
4352 wxT("Called wxGrid::GetSelectionMode() before calling CreateGrid()") );
4354 return m_selection
->GetSelectionMode();
4357 bool wxGrid::SetTable( wxGridTableBase
*table
, bool takeOwnership
,
4358 wxGrid::wxGridSelectionModes selmode
)
4360 bool checkSelection
= false;
4363 // stop all processing
4368 m_table
->SetView(0);
4380 checkSelection
= true;
4382 // kill row and column size arrays
4383 m_colWidths
.Empty();
4384 m_colRights
.Empty();
4385 m_rowHeights
.Empty();
4386 m_rowBottoms
.Empty();
4391 m_numRows
= table
->GetNumberRows();
4392 m_numCols
= table
->GetNumberCols();
4395 m_table
->SetView( this );
4396 m_ownTable
= takeOwnership
;
4397 m_selection
= new wxGridSelection( this, selmode
);
4400 // If the newly set table is smaller than the
4401 // original one current cell and selection regions
4402 // might be invalid,
4403 m_selectingKeyboard
= wxGridNoCellCoords
;
4404 m_currentCellCoords
=
4405 wxGridCellCoords(wxMin(m_numRows
, m_currentCellCoords
.GetRow()),
4406 wxMin(m_numCols
, m_currentCellCoords
.GetCol()));
4407 if (m_selectingTopLeft
.GetRow() >= m_numRows
||
4408 m_selectingTopLeft
.GetCol() >= m_numCols
)
4410 m_selectingTopLeft
= wxGridNoCellCoords
;
4411 m_selectingBottomRight
= wxGridNoCellCoords
;
4414 m_selectingBottomRight
=
4415 wxGridCellCoords(wxMin(m_numRows
,
4416 m_selectingBottomRight
.GetRow()),
4418 m_selectingBottomRight
.GetCol()));
4430 m_rowLabelWidth
= WXGRID_DEFAULT_ROW_LABEL_WIDTH
;
4431 m_colLabelHeight
= WXGRID_DEFAULT_COL_LABEL_HEIGHT
;
4433 if ( m_rowLabelWin
)
4435 m_labelBackgroundColour
= m_rowLabelWin
->GetBackgroundColour();
4439 m_labelBackgroundColour
= *wxWHITE
;
4442 m_labelTextColour
= *wxBLACK
;
4445 m_attrCache
.row
= -1;
4446 m_attrCache
.col
= -1;
4447 m_attrCache
.attr
= NULL
;
4449 // TODO: something better than this ?
4451 m_labelFont
= this->GetFont();
4452 m_labelFont
.SetWeight( wxBOLD
);
4454 m_rowLabelHorizAlign
= wxALIGN_CENTRE
;
4455 m_rowLabelVertAlign
= wxALIGN_CENTRE
;
4457 m_colLabelHorizAlign
= wxALIGN_CENTRE
;
4458 m_colLabelVertAlign
= wxALIGN_CENTRE
;
4459 m_colLabelTextOrientation
= wxHORIZONTAL
;
4461 m_defaultColWidth
= WXGRID_DEFAULT_COL_WIDTH
;
4462 m_defaultRowHeight
= m_gridWin
->GetCharHeight();
4464 m_minAcceptableColWidth
= WXGRID_MIN_COL_WIDTH
;
4465 m_minAcceptableRowHeight
= WXGRID_MIN_ROW_HEIGHT
;
4467 #if defined(__WXMOTIF__) || defined(__WXGTK__) // see also text ctrl sizing in ShowCellEditControl()
4468 m_defaultRowHeight
+= 8;
4470 m_defaultRowHeight
+= 4;
4473 m_gridLineColour
= wxColour( 192,192,192 );
4474 m_gridLinesEnabled
= true;
4475 m_cellHighlightColour
= *wxBLACK
;
4476 m_cellHighlightPenWidth
= 2;
4477 m_cellHighlightROPenWidth
= 1;
4479 m_canDragColMove
= false;
4481 m_cursorMode
= WXGRID_CURSOR_SELECT_CELL
;
4482 m_winCapture
= (wxWindow
*)NULL
;
4483 m_canDragRowSize
= true;
4484 m_canDragColSize
= true;
4485 m_canDragGridSize
= true;
4486 m_canDragCell
= false;
4488 m_dragRowOrCol
= -1;
4489 m_isDragging
= false;
4490 m_startDragPos
= wxDefaultPosition
;
4492 m_waitForSlowClick
= false;
4494 m_rowResizeCursor
= wxCursor( wxCURSOR_SIZENS
);
4495 m_colResizeCursor
= wxCursor( wxCURSOR_SIZEWE
);
4497 m_currentCellCoords
= wxGridNoCellCoords
;
4501 m_selectionBackground
= wxSystemSettings::GetColour(wxSYS_COLOUR_HIGHLIGHT
);
4502 m_selectionForeground
= wxSystemSettings::GetColour(wxSYS_COLOUR_HIGHLIGHTTEXT
);
4504 m_editable
= true; // default for whole grid
4506 m_inOnKeyDown
= false;
4512 m_scrollLineX
= GRID_SCROLL_LINE_X
;
4513 m_scrollLineY
= GRID_SCROLL_LINE_Y
;
4516 // ----------------------------------------------------------------------------
4517 // the idea is to call these functions only when necessary because they create
4518 // quite big arrays which eat memory mostly unnecessary - in particular, if
4519 // default widths/heights are used for all rows/columns, we may not use these
4522 // with some extra code, it should be possible to only store the widths/heights
4523 // different from default ones (resulting in space savings for huge grids) but
4524 // this is not done currently
4525 // ----------------------------------------------------------------------------
4527 void wxGrid::InitRowHeights()
4529 m_rowHeights
.Empty();
4530 m_rowBottoms
.Empty();
4532 m_rowHeights
.Alloc( m_numRows
);
4533 m_rowBottoms
.Alloc( m_numRows
);
4535 m_rowHeights
.Add( m_defaultRowHeight
, m_numRows
);
4538 for ( int i
= 0; i
< m_numRows
; i
++ )
4540 rowBottom
+= m_defaultRowHeight
;
4541 m_rowBottoms
.Add( rowBottom
);
4545 void wxGrid::InitColWidths()
4547 m_colWidths
.Empty();
4548 m_colRights
.Empty();
4550 m_colWidths
.Alloc( m_numCols
);
4551 m_colRights
.Alloc( m_numCols
);
4553 m_colWidths
.Add( m_defaultColWidth
, m_numCols
);
4556 for ( int i
= 0; i
< m_numCols
; i
++ )
4558 colRight
= ( GetColPos( i
) + 1 ) * m_defaultColWidth
;
4559 m_colRights
.Add( colRight
);
4563 int wxGrid::GetColWidth(int col
) const
4565 return m_colWidths
.IsEmpty() ? m_defaultColWidth
: m_colWidths
[col
];
4568 int wxGrid::GetColLeft(int col
) const
4570 return m_colRights
.IsEmpty() ? GetColPos( col
) * m_defaultColWidth
4571 : m_colRights
[col
] - m_colWidths
[col
];
4574 int wxGrid::GetColRight(int col
) const
4576 return m_colRights
.IsEmpty() ? (GetColPos( col
) + 1) * m_defaultColWidth
4580 int wxGrid::GetRowHeight(int row
) const
4582 return m_rowHeights
.IsEmpty() ? m_defaultRowHeight
: m_rowHeights
[row
];
4585 int wxGrid::GetRowTop(int row
) const
4587 return m_rowBottoms
.IsEmpty() ? row
* m_defaultRowHeight
4588 : m_rowBottoms
[row
] - m_rowHeights
[row
];
4591 int wxGrid::GetRowBottom(int row
) const
4593 return m_rowBottoms
.IsEmpty() ? (row
+ 1) * m_defaultRowHeight
4594 : m_rowBottoms
[row
];
4597 void wxGrid::CalcDimensions()
4599 // compute the size of the scrollable area
4600 int w
= m_numCols
> 0 ? GetColRight(GetColAt(m_numCols
- 1)) : 0;
4601 int h
= m_numRows
> 0 ? GetRowBottom(m_numRows
- 1) : 0;
4606 // take into account editor if shown
4607 if ( IsCellEditControlShown() )
4610 int r
= m_currentCellCoords
.GetRow();
4611 int c
= m_currentCellCoords
.GetCol();
4612 int x
= GetColLeft(c
);
4613 int y
= GetRowTop(r
);
4615 // how big is the editor
4616 wxGridCellAttr
* attr
= GetCellAttr(r
, c
);
4617 wxGridCellEditor
* editor
= attr
->GetEditor(this, r
, c
);
4618 editor
->GetControl()->GetSize(&w2
, &h2
);
4629 // preserve (more or less) the previous position
4631 GetViewStart( &x
, &y
);
4633 // ensure the position is valid for the new scroll ranges
4635 x
= wxMax( w
- 1, 0 );
4637 y
= wxMax( h
- 1, 0 );
4639 // do set scrollbar parameters
4640 SetScrollbars( m_scrollLineX
, m_scrollLineY
,
4641 GetScrollX(w
), GetScrollY(h
),
4643 GetBatchCount() != 0);
4645 // if our OnSize() hadn't been called (it would if we have scrollbars), we
4646 // still must reposition the children
4650 void wxGrid::CalcWindowSizes()
4652 // escape if the window is has not been fully created yet
4654 if ( m_cornerLabelWin
== NULL
)
4658 GetClientSize( &cw
, &ch
);
4660 // this block of code tries to work around the following problem: the grid
4661 // could have been just resized to have enough space to show the full grid
4662 // window contents without the scrollbars, but its client size could be
4663 // not big enough because the grid has the scrollbars right now and so the
4664 // scrollbars would remain even though we don't need them any more
4666 // to prevent this from happening, check if we have enough space for
4667 // everything without the scrollbars and explicitly disable them then
4668 wxSize size
= GetSize() - GetWindowBorderSize();
4669 if ( size
!= wxSize(cw
, ch
) )
4671 // check if we have enough space for grid window after accounting for
4672 // the fixed size elements
4673 size
.x
-= m_rowLabelWidth
;
4674 size
.y
-= m_colLabelHeight
;
4676 const wxSize vsize
= m_gridWin
->GetVirtualSize();
4678 if ( size
.x
>= vsize
.x
&& size
.y
>= vsize
.y
)
4680 // yes, we do, so remove the scrollbars and use the new client size
4681 // (which should be the same as full window size - borders now)
4682 SetScrollbars(0, 0, 0, 0);
4683 GetClientSize(&cw
, &ch
);
4687 if ( m_cornerLabelWin
&& m_cornerLabelWin
->IsShown() )
4688 m_cornerLabelWin
->SetSize( 0, 0, m_rowLabelWidth
, m_colLabelHeight
);
4690 if ( m_colLabelWin
&& m_colLabelWin
->IsShown() )
4691 m_colLabelWin
->SetSize( m_rowLabelWidth
, 0, cw
- m_rowLabelWidth
, m_colLabelHeight
);
4693 if ( m_rowLabelWin
&& m_rowLabelWin
->IsShown() )
4694 m_rowLabelWin
->SetSize( 0, m_colLabelHeight
, m_rowLabelWidth
, ch
- m_colLabelHeight
);
4696 if ( m_gridWin
&& m_gridWin
->IsShown() )
4697 m_gridWin
->SetSize( m_rowLabelWidth
, m_colLabelHeight
, cw
- m_rowLabelWidth
, ch
- m_colLabelHeight
);
4700 // this is called when the grid table sends a message
4701 // to indicate that it has been redimensioned
4703 bool wxGrid::Redimension( wxGridTableMessage
& msg
)
4706 bool result
= false;
4708 // Clear the attribute cache as the attribute might refer to a different
4709 // cell than stored in the cache after adding/removing rows/columns.
4712 // By the same reasoning, the editor should be dismissed if columns are
4713 // added or removed. And for consistency, it should IMHO always be
4714 // removed, not only if the cell "underneath" it actually changes.
4715 // For now, I intentionally do not save the editor's content as the
4716 // cell it might want to save that stuff to might no longer exist.
4717 HideCellEditControl();
4720 // if we were using the default widths/heights so far, we must change them
4722 if ( m_colWidths
.IsEmpty() )
4727 if ( m_rowHeights
.IsEmpty() )
4733 switch ( msg
.GetId() )
4735 case wxGRIDTABLE_NOTIFY_ROWS_INSERTED
:
4737 size_t pos
= msg
.GetCommandInt();
4738 int numRows
= msg
.GetCommandInt2();
4740 m_numRows
+= numRows
;
4742 if ( !m_rowHeights
.IsEmpty() )
4744 m_rowHeights
.Insert( m_defaultRowHeight
, pos
, numRows
);
4745 m_rowBottoms
.Insert( 0, pos
, numRows
);
4749 bottom
= m_rowBottoms
[pos
- 1];
4751 for ( i
= pos
; i
< m_numRows
; i
++ )
4753 bottom
+= m_rowHeights
[i
];
4754 m_rowBottoms
[i
] = bottom
;
4758 if ( m_currentCellCoords
== wxGridNoCellCoords
)
4760 // if we have just inserted cols into an empty grid the current
4761 // cell will be undefined...
4763 SetCurrentCell( 0, 0 );
4767 m_selection
->UpdateRows( pos
, numRows
);
4768 wxGridCellAttrProvider
* attrProvider
= m_table
->GetAttrProvider();
4770 attrProvider
->UpdateAttrRows( pos
, numRows
);
4772 if ( !GetBatchCount() )
4775 m_rowLabelWin
->Refresh();
4781 case wxGRIDTABLE_NOTIFY_ROWS_APPENDED
:
4783 int numRows
= msg
.GetCommandInt();
4784 int oldNumRows
= m_numRows
;
4785 m_numRows
+= numRows
;
4787 if ( !m_rowHeights
.IsEmpty() )
4789 m_rowHeights
.Add( m_defaultRowHeight
, numRows
);
4790 m_rowBottoms
.Add( 0, numRows
);
4793 if ( oldNumRows
> 0 )
4794 bottom
= m_rowBottoms
[oldNumRows
- 1];
4796 for ( i
= oldNumRows
; i
< m_numRows
; i
++ )
4798 bottom
+= m_rowHeights
[i
];
4799 m_rowBottoms
[i
] = bottom
;
4803 if ( m_currentCellCoords
== wxGridNoCellCoords
)
4805 // if we have just inserted cols into an empty grid the current
4806 // cell will be undefined...
4808 SetCurrentCell( 0, 0 );
4811 if ( !GetBatchCount() )
4814 m_rowLabelWin
->Refresh();
4820 case wxGRIDTABLE_NOTIFY_ROWS_DELETED
:
4822 size_t pos
= msg
.GetCommandInt();
4823 int numRows
= msg
.GetCommandInt2();
4824 m_numRows
-= numRows
;
4826 if ( !m_rowHeights
.IsEmpty() )
4828 m_rowHeights
.RemoveAt( pos
, numRows
);
4829 m_rowBottoms
.RemoveAt( pos
, numRows
);
4832 for ( i
= 0; i
< m_numRows
; i
++ )
4834 h
+= m_rowHeights
[i
];
4835 m_rowBottoms
[i
] = h
;
4841 m_currentCellCoords
= wxGridNoCellCoords
;
4845 if ( m_currentCellCoords
.GetRow() >= m_numRows
)
4846 m_currentCellCoords
.Set( 0, 0 );
4850 m_selection
->UpdateRows( pos
, -((int)numRows
) );
4851 wxGridCellAttrProvider
* attrProvider
= m_table
->GetAttrProvider();
4854 attrProvider
->UpdateAttrRows( pos
, -((int)numRows
) );
4856 // ifdef'd out following patch from Paul Gammans
4858 // No need to touch column attributes, unless we
4859 // removed _all_ rows, in this case, we remove
4860 // all column attributes.
4861 // I hate to do this here, but the
4862 // needed data is not available inside UpdateAttrRows.
4863 if ( !GetNumberRows() )
4864 attrProvider
->UpdateAttrCols( 0, -GetNumberCols() );
4868 if ( !GetBatchCount() )
4871 m_rowLabelWin
->Refresh();
4877 case wxGRIDTABLE_NOTIFY_COLS_INSERTED
:
4879 size_t pos
= msg
.GetCommandInt();
4880 int numCols
= msg
.GetCommandInt2();
4881 m_numCols
+= numCols
;
4883 if ( !m_colAt
.IsEmpty() )
4885 //Shift the column IDs
4887 for ( i
= 0; i
< m_numCols
- numCols
; i
++ )
4889 if ( m_colAt
[i
] >= (int)pos
)
4890 m_colAt
[i
] += numCols
;
4893 m_colAt
.Insert( pos
, pos
, numCols
);
4895 //Set the new columns' positions
4896 for ( i
= pos
+ 1; i
< (int)pos
+ numCols
; i
++ )
4902 if ( !m_colWidths
.IsEmpty() )
4904 m_colWidths
.Insert( m_defaultColWidth
, pos
, numCols
);
4905 m_colRights
.Insert( 0, pos
, numCols
);
4909 right
= m_colRights
[GetColAt( pos
- 1 )];
4912 for ( colPos
= pos
; colPos
< m_numCols
; colPos
++ )
4914 i
= GetColAt( colPos
);
4916 right
+= m_colWidths
[i
];
4917 m_colRights
[i
] = right
;
4921 if ( m_currentCellCoords
== wxGridNoCellCoords
)
4923 // if we have just inserted cols into an empty grid the current
4924 // cell will be undefined...
4926 SetCurrentCell( 0, 0 );
4930 m_selection
->UpdateCols( pos
, numCols
);
4931 wxGridCellAttrProvider
* attrProvider
= m_table
->GetAttrProvider();
4933 attrProvider
->UpdateAttrCols( pos
, numCols
);
4934 if ( !GetBatchCount() )
4937 m_colLabelWin
->Refresh();
4943 case wxGRIDTABLE_NOTIFY_COLS_APPENDED
:
4945 int numCols
= msg
.GetCommandInt();
4946 int oldNumCols
= m_numCols
;
4947 m_numCols
+= numCols
;
4949 if ( !m_colAt
.IsEmpty() )
4951 m_colAt
.Add( 0, numCols
);
4953 //Set the new columns' positions
4955 for ( i
= oldNumCols
; i
< m_numCols
; i
++ )
4961 if ( !m_colWidths
.IsEmpty() )
4963 m_colWidths
.Add( m_defaultColWidth
, numCols
);
4964 m_colRights
.Add( 0, numCols
);
4967 if ( oldNumCols
> 0 )
4968 right
= m_colRights
[GetColAt( oldNumCols
- 1 )];
4971 for ( colPos
= oldNumCols
; colPos
< m_numCols
; colPos
++ )
4973 i
= GetColAt( colPos
);
4975 right
+= m_colWidths
[i
];
4976 m_colRights
[i
] = right
;
4980 if ( m_currentCellCoords
== wxGridNoCellCoords
)
4982 // if we have just inserted cols into an empty grid the current
4983 // cell will be undefined...
4985 SetCurrentCell( 0, 0 );
4987 if ( !GetBatchCount() )
4990 m_colLabelWin
->Refresh();
4996 case wxGRIDTABLE_NOTIFY_COLS_DELETED
:
4998 size_t pos
= msg
.GetCommandInt();
4999 int numCols
= msg
.GetCommandInt2();
5000 m_numCols
-= numCols
;
5002 if ( !m_colAt
.IsEmpty() )
5004 int colID
= GetColAt( pos
);
5006 m_colAt
.RemoveAt( pos
, numCols
);
5008 //Shift the column IDs
5010 for ( colPos
= 0; colPos
< m_numCols
; colPos
++ )
5012 if ( m_colAt
[colPos
] > colID
)
5013 m_colAt
[colPos
] -= numCols
;
5017 if ( !m_colWidths
.IsEmpty() )
5019 m_colWidths
.RemoveAt( pos
, numCols
);
5020 m_colRights
.RemoveAt( pos
, numCols
);
5024 for ( colPos
= 0; colPos
< m_numCols
; colPos
++ )
5026 i
= GetColAt( colPos
);
5028 w
+= m_colWidths
[i
];
5035 m_currentCellCoords
= wxGridNoCellCoords
;
5039 if ( m_currentCellCoords
.GetCol() >= m_numCols
)
5040 m_currentCellCoords
.Set( 0, 0 );
5044 m_selection
->UpdateCols( pos
, -((int)numCols
) );
5045 wxGridCellAttrProvider
* attrProvider
= m_table
->GetAttrProvider();
5048 attrProvider
->UpdateAttrCols( pos
, -((int)numCols
) );
5050 // ifdef'd out following patch from Paul Gammans
5052 // No need to touch row attributes, unless we
5053 // removed _all_ columns, in this case, we remove
5054 // all row attributes.
5055 // I hate to do this here, but the
5056 // needed data is not available inside UpdateAttrCols.
5057 if ( !GetNumberCols() )
5058 attrProvider
->UpdateAttrRows( 0, -GetNumberRows() );
5062 if ( !GetBatchCount() )
5065 m_colLabelWin
->Refresh();
5072 if (result
&& !GetBatchCount() )
5073 m_gridWin
->Refresh();
5078 wxArrayInt
wxGrid::CalcRowLabelsExposed( const wxRegion
& reg
) const
5080 wxRegionIterator
iter( reg
);
5083 wxArrayInt rowlabels
;
5090 // TODO: remove this when we can...
5091 // There is a bug in wxMotif that gives garbage update
5092 // rectangles if you jump-scroll a long way by clicking the
5093 // scrollbar with middle button. This is a work-around
5095 #if defined(__WXMOTIF__)
5097 m_gridWin
->GetClientSize( &cw
, &ch
);
5098 if ( r
.GetTop() > ch
)
5100 r
.SetBottom( wxMin( r
.GetBottom(), ch
) );
5103 // logical bounds of update region
5106 CalcUnscrolledPosition( 0, r
.GetTop(), &dummy
, &top
);
5107 CalcUnscrolledPosition( 0, r
.GetBottom(), &dummy
, &bottom
);
5109 // find the row labels within these bounds
5112 for ( row
= internalYToRow(top
); row
< m_numRows
; row
++ )
5114 if ( GetRowBottom(row
) < top
)
5117 if ( GetRowTop(row
) > bottom
)
5120 rowlabels
.Add( row
);
5129 wxArrayInt
wxGrid::CalcColLabelsExposed( const wxRegion
& reg
) const
5131 wxRegionIterator
iter( reg
);
5134 wxArrayInt colLabels
;
5141 // TODO: remove this when we can...
5142 // There is a bug in wxMotif that gives garbage update
5143 // rectangles if you jump-scroll a long way by clicking the
5144 // scrollbar with middle button. This is a work-around
5146 #if defined(__WXMOTIF__)
5148 m_gridWin
->GetClientSize( &cw
, &ch
);
5149 if ( r
.GetLeft() > cw
)
5151 r
.SetRight( wxMin( r
.GetRight(), cw
) );
5154 // logical bounds of update region
5157 CalcUnscrolledPosition( r
.GetLeft(), 0, &left
, &dummy
);
5158 CalcUnscrolledPosition( r
.GetRight(), 0, &right
, &dummy
);
5160 // find the cells within these bounds
5164 for ( colPos
= GetColPos( internalXToCol(left
) ); colPos
< m_numCols
; colPos
++ )
5166 col
= GetColAt( colPos
);
5168 if ( GetColRight(col
) < left
)
5171 if ( GetColLeft(col
) > right
)
5174 colLabels
.Add( col
);
5183 wxGridCellCoordsArray
wxGrid::CalcCellsExposed( const wxRegion
& reg
) const
5185 wxRegionIterator
iter( reg
);
5188 wxGridCellCoordsArray cellsExposed
;
5190 int left
, top
, right
, bottom
;
5195 // TODO: remove this when we can...
5196 // There is a bug in wxMotif that gives garbage update
5197 // rectangles if you jump-scroll a long way by clicking the
5198 // scrollbar with middle button. This is a work-around
5200 #if defined(__WXMOTIF__)
5202 m_gridWin
->GetClientSize( &cw
, &ch
);
5203 if ( r
.GetTop() > ch
) r
.SetTop( 0 );
5204 if ( r
.GetLeft() > cw
) r
.SetLeft( 0 );
5205 r
.SetRight( wxMin( r
.GetRight(), cw
) );
5206 r
.SetBottom( wxMin( r
.GetBottom(), ch
) );
5209 // logical bounds of update region
5211 CalcUnscrolledPosition( r
.GetLeft(), r
.GetTop(), &left
, &top
);
5212 CalcUnscrolledPosition( r
.GetRight(), r
.GetBottom(), &right
, &bottom
);
5214 // find the cells within these bounds
5217 for ( row
= internalYToRow(top
); row
< m_numRows
; row
++ )
5219 if ( GetRowBottom(row
) <= top
)
5222 if ( GetRowTop(row
) > bottom
)
5226 for ( colPos
= GetColPos( internalXToCol(left
) ); colPos
< m_numCols
; colPos
++ )
5228 col
= GetColAt( colPos
);
5230 if ( GetColRight(col
) <= left
)
5233 if ( GetColLeft(col
) > right
)
5236 cellsExposed
.Add( wxGridCellCoords( row
, col
) );
5243 return cellsExposed
;
5247 void wxGrid::ProcessRowLabelMouseEvent( wxMouseEvent
& event
)
5250 wxPoint
pos( event
.GetPosition() );
5251 CalcUnscrolledPosition( pos
.x
, pos
.y
, &x
, &y
);
5253 if ( event
.Dragging() )
5257 m_isDragging
= true;
5258 m_rowLabelWin
->CaptureMouse();
5261 if ( event
.LeftIsDown() )
5263 switch ( m_cursorMode
)
5265 case WXGRID_CURSOR_RESIZE_ROW
:
5267 int cw
, ch
, left
, dummy
;
5268 m_gridWin
->GetClientSize( &cw
, &ch
);
5269 CalcUnscrolledPosition( 0, 0, &left
, &dummy
);
5271 wxClientDC
dc( m_gridWin
);
5274 GetRowTop(m_dragRowOrCol
) +
5275 GetRowMinimalHeight(m_dragRowOrCol
) );
5276 dc
.SetLogicalFunction(wxINVERT
);
5277 if ( m_dragLastPos
>= 0 )
5279 dc
.DrawLine( left
, m_dragLastPos
, left
+cw
, m_dragLastPos
);
5281 dc
.DrawLine( left
, y
, left
+cw
, y
);
5286 case WXGRID_CURSOR_SELECT_ROW
:
5288 if ( (row
= YToRow( y
)) >= 0 )
5292 m_selection
->SelectRow( row
,
5293 event
.ControlDown(),
5302 // default label to suppress warnings about "enumeration value
5303 // 'xxx' not handled in switch
5311 if ( m_isDragging
&& (event
.Entering() || event
.Leaving()) )
5316 if (m_rowLabelWin
->HasCapture())
5317 m_rowLabelWin
->ReleaseMouse();
5318 m_isDragging
= false;
5321 // ------------ Entering or leaving the window
5323 if ( event
.Entering() || event
.Leaving() )
5325 ChangeCursorMode(WXGRID_CURSOR_SELECT_CELL
, m_rowLabelWin
);
5328 // ------------ Left button pressed
5330 else if ( event
.LeftDown() )
5332 // don't send a label click event for a hit on the
5333 // edge of the row label - this is probably the user
5334 // wanting to resize the row
5336 if ( YToEdgeOfRow(y
) < 0 )
5340 !SendEvent( wxEVT_GRID_LABEL_LEFT_CLICK
, row
, -1, event
) )
5342 if ( !event
.ShiftDown() && !event
.CmdDown() )
5346 if ( event
.ShiftDown() )
5348 m_selection
->SelectBlock( m_currentCellCoords
.GetRow(),
5351 GetNumberCols() - 1,
5352 event
.ControlDown(),
5359 m_selection
->SelectRow( row
,
5360 event
.ControlDown(),
5367 ChangeCursorMode(WXGRID_CURSOR_SELECT_ROW
, m_rowLabelWin
);
5372 // starting to drag-resize a row
5373 if ( CanDragRowSize() )
5374 ChangeCursorMode(WXGRID_CURSOR_RESIZE_ROW
, m_rowLabelWin
);
5378 // ------------ Left double click
5380 else if (event
.LeftDClick() )
5382 row
= YToEdgeOfRow(y
);
5387 !SendEvent( wxEVT_GRID_LABEL_LEFT_DCLICK
, row
, -1, event
) )
5389 // no default action at the moment
5394 // adjust row height depending on label text
5395 AutoSizeRowLabelSize( row
);
5397 ChangeCursorMode(WXGRID_CURSOR_SELECT_CELL
, m_colLabelWin
);
5402 // ------------ Left button released
5404 else if ( event
.LeftUp() )
5406 if ( m_cursorMode
== WXGRID_CURSOR_RESIZE_ROW
)
5408 DoEndDragResizeRow();
5410 // Note: we are ending the event *after* doing
5411 // default processing in this case
5413 SendEvent( wxEVT_GRID_ROW_SIZE
, m_dragRowOrCol
, -1, event
);
5416 ChangeCursorMode(WXGRID_CURSOR_SELECT_CELL
, m_rowLabelWin
);
5420 // ------------ Right button down
5422 else if ( event
.RightDown() )
5426 !SendEvent( wxEVT_GRID_LABEL_RIGHT_CLICK
, row
, -1, event
) )
5428 // no default action at the moment
5432 // ------------ Right double click
5434 else if ( event
.RightDClick() )
5438 !SendEvent( wxEVT_GRID_LABEL_RIGHT_DCLICK
, row
, -1, event
) )
5440 // no default action at the moment
5444 // ------------ No buttons down and mouse moving
5446 else if ( event
.Moving() )
5448 m_dragRowOrCol
= YToEdgeOfRow( y
);
5449 if ( m_dragRowOrCol
>= 0 )
5451 if ( m_cursorMode
== WXGRID_CURSOR_SELECT_CELL
)
5453 // don't capture the mouse yet
5454 if ( CanDragRowSize() )
5455 ChangeCursorMode(WXGRID_CURSOR_RESIZE_ROW
, m_rowLabelWin
, false);
5458 else if ( m_cursorMode
!= WXGRID_CURSOR_SELECT_CELL
)
5460 ChangeCursorMode(WXGRID_CURSOR_SELECT_CELL
, m_rowLabelWin
, false);
5465 void wxGrid::ProcessColLabelMouseEvent( wxMouseEvent
& event
)
5468 wxPoint
pos( event
.GetPosition() );
5469 CalcUnscrolledPosition( pos
.x
, pos
.y
, &x
, &y
);
5471 if ( event
.Dragging() )
5475 m_isDragging
= true;
5476 m_colLabelWin
->CaptureMouse();
5478 if ( m_cursorMode
== WXGRID_CURSOR_MOVE_COL
)
5479 m_dragRowOrCol
= XToCol( x
);
5482 if ( event
.LeftIsDown() )
5484 switch ( m_cursorMode
)
5486 case WXGRID_CURSOR_RESIZE_COL
:
5488 int cw
, ch
, dummy
, top
;
5489 m_gridWin
->GetClientSize( &cw
, &ch
);
5490 CalcUnscrolledPosition( 0, 0, &dummy
, &top
);
5492 wxClientDC
dc( m_gridWin
);
5495 x
= wxMax( x
, GetColLeft(m_dragRowOrCol
) +
5496 GetColMinimalWidth(m_dragRowOrCol
));
5497 dc
.SetLogicalFunction(wxINVERT
);
5498 if ( m_dragLastPos
>= 0 )
5500 dc
.DrawLine( m_dragLastPos
, top
, m_dragLastPos
, top
+ ch
);
5502 dc
.DrawLine( x
, top
, x
, top
+ ch
);
5507 case WXGRID_CURSOR_SELECT_COL
:
5509 if ( (col
= XToCol( x
)) >= 0 )
5513 m_selection
->SelectCol( col
,
5514 event
.ControlDown(),
5523 case WXGRID_CURSOR_MOVE_COL
:
5526 m_moveToCol
= GetColAt( 0 );
5528 m_moveToCol
= XToCol( x
);
5532 if ( m_moveToCol
< 0 )
5533 markerX
= GetColRight( GetColAt( m_numCols
- 1 ) );
5535 markerX
= GetColLeft( m_moveToCol
);
5537 if ( markerX
!= m_dragLastPos
)
5539 wxClientDC
dc( m_colLabelWin
);
5542 m_colLabelWin
->GetClientSize( &cw
, &ch
);
5546 //Clean up the last indicator
5547 if ( m_dragLastPos
>= 0 )
5549 wxPen
pen( m_colLabelWin
->GetBackgroundColour(), 2 );
5551 dc
.DrawLine( m_dragLastPos
+ 1, 0, m_dragLastPos
+ 1, ch
);
5552 dc
.SetPen(wxNullPen
);
5554 if ( XToCol( m_dragLastPos
) != -1 )
5555 DrawColLabel( dc
, XToCol( m_dragLastPos
) );
5558 //Moving to the same place? Don't draw a marker
5559 if ( (m_moveToCol
== m_dragRowOrCol
)
5560 || (GetColPos( m_moveToCol
) == GetColPos( m_dragRowOrCol
) + 1)
5561 || (m_moveToCol
< 0 && m_dragRowOrCol
== GetColAt( m_numCols
- 1 )))
5568 wxPen
pen( *wxBLUE
, 2 );
5571 dc
.DrawLine( markerX
, 0, markerX
, ch
);
5573 dc
.SetPen(wxNullPen
);
5575 m_dragLastPos
= markerX
- 1;
5580 // default label to suppress warnings about "enumeration value
5581 // 'xxx' not handled in switch
5589 if ( m_isDragging
&& (event
.Entering() || event
.Leaving()) )
5594 if (m_colLabelWin
->HasCapture())
5595 m_colLabelWin
->ReleaseMouse();
5596 m_isDragging
= false;
5599 // ------------ Entering or leaving the window
5601 if ( event
.Entering() || event
.Leaving() )
5603 ChangeCursorMode(WXGRID_CURSOR_SELECT_CELL
, m_colLabelWin
);
5606 // ------------ Left button pressed
5608 else if ( event
.LeftDown() )
5610 // don't send a label click event for a hit on the
5611 // edge of the col label - this is probably the user
5612 // wanting to resize the col
5614 if ( XToEdgeOfCol(x
) < 0 )
5618 !SendEvent( wxEVT_GRID_LABEL_LEFT_CLICK
, -1, col
, event
) )
5620 if ( m_canDragColMove
)
5622 //Show button as pressed
5623 wxClientDC
dc( m_colLabelWin
);
5624 int colLeft
= GetColLeft( col
);
5625 int colRight
= GetColRight( col
) - 1;
5626 dc
.SetPen( wxPen( m_colLabelWin
->GetBackgroundColour(), 1 ) );
5627 dc
.DrawLine( colLeft
, 1, colLeft
, m_colLabelHeight
-1 );
5628 dc
.DrawLine( colLeft
, 1, colRight
, 1 );
5630 ChangeCursorMode(WXGRID_CURSOR_MOVE_COL
, m_colLabelWin
);
5634 if ( !event
.ShiftDown() && !event
.CmdDown() )
5638 if ( event
.ShiftDown() )
5640 m_selection
->SelectBlock( 0,
5641 m_currentCellCoords
.GetCol(),
5642 GetNumberRows() - 1, col
,
5643 event
.ControlDown(),
5650 m_selection
->SelectCol( col
,
5651 event
.ControlDown(),
5658 ChangeCursorMode(WXGRID_CURSOR_SELECT_COL
, m_colLabelWin
);
5664 // starting to drag-resize a col
5666 if ( CanDragColSize() )
5667 ChangeCursorMode(WXGRID_CURSOR_RESIZE_COL
, m_colLabelWin
);
5671 // ------------ Left double click
5673 if ( event
.LeftDClick() )
5675 col
= XToEdgeOfCol(x
);
5680 ! SendEvent( wxEVT_GRID_LABEL_LEFT_DCLICK
, -1, col
, event
) )
5682 // no default action at the moment
5687 // adjust column width depending on label text
5688 AutoSizeColLabelSize( col
);
5690 ChangeCursorMode(WXGRID_CURSOR_SELECT_CELL
, m_colLabelWin
);
5695 // ------------ Left button released
5697 else if ( event
.LeftUp() )
5699 switch ( m_cursorMode
)
5701 case WXGRID_CURSOR_RESIZE_COL
:
5702 DoEndDragResizeCol();
5704 // Note: we are ending the event *after* doing
5705 // default processing in this case
5707 SendEvent( wxEVT_GRID_COL_SIZE
, -1, m_dragRowOrCol
, event
);
5710 case WXGRID_CURSOR_MOVE_COL
:
5713 SendEvent( wxEVT_GRID_COL_MOVE
, -1, m_dragRowOrCol
, event
);
5716 case WXGRID_CURSOR_SELECT_COL
:
5717 case WXGRID_CURSOR_SELECT_CELL
:
5718 case WXGRID_CURSOR_RESIZE_ROW
:
5719 case WXGRID_CURSOR_SELECT_ROW
:
5720 // nothing to do (?)
5724 ChangeCursorMode(WXGRID_CURSOR_SELECT_CELL
, m_colLabelWin
);
5728 // ------------ Right button down
5730 else if ( event
.RightDown() )
5734 !SendEvent( wxEVT_GRID_LABEL_RIGHT_CLICK
, -1, col
, event
) )
5736 // no default action at the moment
5740 // ------------ Right double click
5742 else if ( event
.RightDClick() )
5746 !SendEvent( wxEVT_GRID_LABEL_RIGHT_DCLICK
, -1, col
, event
) )
5748 // no default action at the moment
5752 // ------------ No buttons down and mouse moving
5754 else if ( event
.Moving() )
5756 m_dragRowOrCol
= XToEdgeOfCol( x
);
5757 if ( m_dragRowOrCol
>= 0 )
5759 if ( m_cursorMode
== WXGRID_CURSOR_SELECT_CELL
)
5761 // don't capture the cursor yet
5762 if ( CanDragColSize() )
5763 ChangeCursorMode(WXGRID_CURSOR_RESIZE_COL
, m_colLabelWin
, false);
5766 else if ( m_cursorMode
!= WXGRID_CURSOR_SELECT_CELL
)
5768 ChangeCursorMode(WXGRID_CURSOR_SELECT_CELL
, m_colLabelWin
, false);
5773 void wxGrid::ProcessCornerLabelMouseEvent( wxMouseEvent
& event
)
5775 if ( event
.LeftDown() )
5777 // indicate corner label by having both row and
5780 if ( !SendEvent( wxEVT_GRID_LABEL_LEFT_CLICK
, -1, -1, event
) )
5785 else if ( event
.LeftDClick() )
5787 SendEvent( wxEVT_GRID_LABEL_LEFT_DCLICK
, -1, -1, event
);
5789 else if ( event
.RightDown() )
5791 if ( !SendEvent( wxEVT_GRID_LABEL_RIGHT_CLICK
, -1, -1, event
) )
5793 // no default action at the moment
5796 else if ( event
.RightDClick() )
5798 if ( !SendEvent( wxEVT_GRID_LABEL_RIGHT_DCLICK
, -1, -1, event
) )
5800 // no default action at the moment
5805 void wxGrid::ChangeCursorMode(CursorMode mode
,
5810 static const wxChar
*cursorModes
[] =
5820 wxLogTrace(_T("grid"),
5821 _T("wxGrid cursor mode (mouse capture for %s): %s -> %s"),
5822 win
== m_colLabelWin
? _T("colLabelWin")
5823 : win
? _T("rowLabelWin")
5825 cursorModes
[m_cursorMode
], cursorModes
[mode
]);
5828 if ( mode
== m_cursorMode
&&
5829 win
== m_winCapture
&&
5830 captureMouse
== (m_winCapture
!= NULL
))
5835 // by default use the grid itself
5841 if (m_winCapture
->HasCapture())
5842 m_winCapture
->ReleaseMouse();
5843 m_winCapture
= (wxWindow
*)NULL
;
5846 m_cursorMode
= mode
;
5848 switch ( m_cursorMode
)
5850 case WXGRID_CURSOR_RESIZE_ROW
:
5851 win
->SetCursor( m_rowResizeCursor
);
5854 case WXGRID_CURSOR_RESIZE_COL
:
5855 win
->SetCursor( m_colResizeCursor
);
5858 case WXGRID_CURSOR_MOVE_COL
:
5859 win
->SetCursor( wxCursor(wxCURSOR_HAND
) );
5863 win
->SetCursor( *wxSTANDARD_CURSOR
);
5867 // we need to capture mouse when resizing
5868 bool resize
= m_cursorMode
== WXGRID_CURSOR_RESIZE_ROW
||
5869 m_cursorMode
== WXGRID_CURSOR_RESIZE_COL
;
5871 if ( captureMouse
&& resize
)
5873 win
->CaptureMouse();
5878 void wxGrid::ProcessGridCellMouseEvent( wxMouseEvent
& event
)
5881 wxPoint
pos( event
.GetPosition() );
5882 CalcUnscrolledPosition( pos
.x
, pos
.y
, &x
, &y
);
5884 wxGridCellCoords coords
;
5885 XYToCell( x
, y
, coords
);
5887 int cell_rows
, cell_cols
;
5888 bool isFirstDrag
= !m_isDragging
;
5889 GetCellSize( coords
.GetRow(), coords
.GetCol(), &cell_rows
, &cell_cols
);
5890 if ((cell_rows
< 0) || (cell_cols
< 0))
5892 coords
.SetRow(coords
.GetRow() + cell_rows
);
5893 coords
.SetCol(coords
.GetCol() + cell_cols
);
5896 if ( event
.Dragging() )
5898 //wxLogDebug("pos(%d, %d) coords(%d, %d)", pos.x, pos.y, coords.GetRow(), coords.GetCol());
5900 // Don't start doing anything until the mouse has been dragged at
5901 // least 3 pixels in any direction...
5904 if (m_startDragPos
== wxDefaultPosition
)
5906 m_startDragPos
= pos
;
5909 if (abs(m_startDragPos
.x
- pos
.x
) < 4 && abs(m_startDragPos
.y
- pos
.y
) < 4)
5913 m_isDragging
= true;
5914 if ( m_cursorMode
== WXGRID_CURSOR_SELECT_CELL
)
5916 // Hide the edit control, so it
5917 // won't interfere with drag-shrinking.
5918 if ( IsCellEditControlShown() )
5920 HideCellEditControl();
5921 SaveEditControlValue();
5924 if ( coords
!= wxGridNoCellCoords
)
5926 if ( event
.CmdDown() )
5928 if ( m_selectingKeyboard
== wxGridNoCellCoords
)
5929 m_selectingKeyboard
= coords
;
5930 HighlightBlock( m_selectingKeyboard
, coords
);
5932 else if ( CanDragCell() )
5936 if ( m_selectingKeyboard
== wxGridNoCellCoords
)
5937 m_selectingKeyboard
= coords
;
5939 SendEvent( wxEVT_GRID_CELL_BEGIN_DRAG
,
5948 if ( !IsSelection() )
5950 HighlightBlock( coords
, coords
);
5954 HighlightBlock( m_currentCellCoords
, coords
);
5958 if (! IsVisible(coords
))
5960 MakeCellVisible(coords
);
5961 // TODO: need to introduce a delay or something here. The
5962 // scrolling is way to fast, at least on MSW - also on GTK.
5965 // Have we captured the mouse yet?
5968 m_winCapture
= m_gridWin
;
5969 m_winCapture
->CaptureMouse();
5974 else if ( m_cursorMode
== WXGRID_CURSOR_RESIZE_ROW
)
5976 int cw
, ch
, left
, dummy
;
5977 m_gridWin
->GetClientSize( &cw
, &ch
);
5978 CalcUnscrolledPosition( 0, 0, &left
, &dummy
);
5980 wxClientDC
dc( m_gridWin
);
5982 y
= wxMax( y
, GetRowTop(m_dragRowOrCol
) +
5983 GetRowMinimalHeight(m_dragRowOrCol
) );
5984 dc
.SetLogicalFunction(wxINVERT
);
5985 if ( m_dragLastPos
>= 0 )
5987 dc
.DrawLine( left
, m_dragLastPos
, left
+cw
, m_dragLastPos
);
5989 dc
.DrawLine( left
, y
, left
+cw
, y
);
5992 else if ( m_cursorMode
== WXGRID_CURSOR_RESIZE_COL
)
5994 int cw
, ch
, dummy
, top
;
5995 m_gridWin
->GetClientSize( &cw
, &ch
);
5996 CalcUnscrolledPosition( 0, 0, &dummy
, &top
);
5998 wxClientDC
dc( m_gridWin
);
6000 x
= wxMax( x
, GetColLeft(m_dragRowOrCol
) +
6001 GetColMinimalWidth(m_dragRowOrCol
) );
6002 dc
.SetLogicalFunction(wxINVERT
);
6003 if ( m_dragLastPos
>= 0 )
6005 dc
.DrawLine( m_dragLastPos
, top
, m_dragLastPos
, top
+ ch
);
6007 dc
.DrawLine( x
, top
, x
, top
+ ch
);
6014 m_isDragging
= false;
6015 m_startDragPos
= wxDefaultPosition
;
6017 // VZ: if we do this, the mode is reset to WXGRID_CURSOR_SELECT_CELL
6018 // immediately after it becomes WXGRID_CURSOR_RESIZE_ROW/COL under
6021 if ( event
.Entering() || event
.Leaving() )
6023 ChangeCursorMode(WXGRID_CURSOR_SELECT_CELL
);
6024 m_gridWin
->SetCursor( *wxSTANDARD_CURSOR
);
6029 // ------------ Left button pressed
6031 if ( event
.LeftDown() && coords
!= wxGridNoCellCoords
)
6033 if ( !SendEvent( wxEVT_GRID_CELL_LEFT_CLICK
,
6038 if ( !event
.CmdDown() )
6040 if ( event
.ShiftDown() )
6044 m_selection
->SelectBlock( m_currentCellCoords
.GetRow(),
6045 m_currentCellCoords
.GetCol(),
6048 event
.ControlDown(),
6054 else if ( XToEdgeOfCol(x
) < 0 &&
6055 YToEdgeOfRow(y
) < 0 )
6057 DisableCellEditControl();
6058 MakeCellVisible( coords
);
6060 if ( event
.CmdDown() )
6064 m_selection
->ToggleCellSelection( coords
.GetRow(),
6066 event
.ControlDown(),
6071 m_selectingTopLeft
= wxGridNoCellCoords
;
6072 m_selectingBottomRight
= wxGridNoCellCoords
;
6073 m_selectingKeyboard
= coords
;
6077 m_waitForSlowClick
= m_currentCellCoords
== coords
&& coords
!= wxGridNoCellCoords
;
6078 SetCurrentCell( coords
);
6081 if ( m_selection
->GetSelectionMode() !=
6082 wxGrid::wxGridSelectCells
)
6084 HighlightBlock( coords
, coords
);
6092 // ------------ Left double click
6094 else if ( event
.LeftDClick() && coords
!= wxGridNoCellCoords
)
6096 DisableCellEditControl();
6098 if ( XToEdgeOfCol(x
) < 0 && YToEdgeOfRow(y
) < 0 )
6100 if ( !SendEvent( wxEVT_GRID_CELL_LEFT_DCLICK
,
6105 // we want double click to select a cell and start editing
6106 // (i.e. to behave in same way as sequence of two slow clicks):
6107 m_waitForSlowClick
= true;
6112 // ------------ Left button released
6114 else if ( event
.LeftUp() )
6116 if ( m_cursorMode
== WXGRID_CURSOR_SELECT_CELL
)
6120 if (m_winCapture
->HasCapture())
6121 m_winCapture
->ReleaseMouse();
6122 m_winCapture
= NULL
;
6125 if ( coords
== m_currentCellCoords
&& m_waitForSlowClick
&& CanEnableCellControl() )
6128 EnableCellEditControl();
6130 wxGridCellAttr
*attr
= GetCellAttr(coords
);
6131 wxGridCellEditor
*editor
= attr
->GetEditor(this, coords
.GetRow(), coords
.GetCol());
6132 editor
->StartingClick();
6136 m_waitForSlowClick
= false;
6138 else if ( m_selectingTopLeft
!= wxGridNoCellCoords
&&
6139 m_selectingBottomRight
!= wxGridNoCellCoords
)
6143 m_selection
->SelectBlock( m_selectingTopLeft
.GetRow(),
6144 m_selectingTopLeft
.GetCol(),
6145 m_selectingBottomRight
.GetRow(),
6146 m_selectingBottomRight
.GetCol(),
6147 event
.ControlDown(),
6153 m_selectingTopLeft
= wxGridNoCellCoords
;
6154 m_selectingBottomRight
= wxGridNoCellCoords
;
6156 // Show the edit control, if it has been hidden for
6158 ShowCellEditControl();
6161 else if ( m_cursorMode
== WXGRID_CURSOR_RESIZE_ROW
)
6163 ChangeCursorMode(WXGRID_CURSOR_SELECT_CELL
);
6164 DoEndDragResizeRow();
6166 // Note: we are ending the event *after* doing
6167 // default processing in this case
6169 SendEvent( wxEVT_GRID_ROW_SIZE
, m_dragRowOrCol
, -1, event
);
6171 else if ( m_cursorMode
== WXGRID_CURSOR_RESIZE_COL
)
6173 ChangeCursorMode(WXGRID_CURSOR_SELECT_CELL
);
6174 DoEndDragResizeCol();
6176 // Note: we are ending the event *after* doing
6177 // default processing in this case
6179 SendEvent( wxEVT_GRID_COL_SIZE
, -1, m_dragRowOrCol
, event
);
6185 // ------------ Right button down
6187 else if ( event
.RightDown() && coords
!= wxGridNoCellCoords
)
6189 DisableCellEditControl();
6190 if ( !SendEvent( wxEVT_GRID_CELL_RIGHT_CLICK
,
6195 // no default action at the moment
6199 // ------------ Right double click
6201 else if ( event
.RightDClick() && coords
!= wxGridNoCellCoords
)
6203 DisableCellEditControl();
6204 if ( !SendEvent( wxEVT_GRID_CELL_RIGHT_DCLICK
,
6209 // no default action at the moment
6213 // ------------ Moving and no button action
6215 else if ( event
.Moving() && !event
.IsButton() )
6217 if ( coords
.GetRow() < 0 || coords
.GetCol() < 0 )
6219 // out of grid cell area
6220 ChangeCursorMode(WXGRID_CURSOR_SELECT_CELL
);
6224 int dragRow
= YToEdgeOfRow( y
);
6225 int dragCol
= XToEdgeOfCol( x
);
6227 // Dragging on the corner of a cell to resize in both
6228 // directions is not implemented yet...
6230 if ( dragRow
>= 0 && dragCol
>= 0 )
6232 ChangeCursorMode(WXGRID_CURSOR_SELECT_CELL
);
6238 m_dragRowOrCol
= dragRow
;
6240 if ( m_cursorMode
== WXGRID_CURSOR_SELECT_CELL
)
6242 if ( CanDragRowSize() && CanDragGridSize() )
6243 ChangeCursorMode(WXGRID_CURSOR_RESIZE_ROW
);
6246 else if ( dragCol
>= 0 )
6248 m_dragRowOrCol
= dragCol
;
6250 if ( m_cursorMode
== WXGRID_CURSOR_SELECT_CELL
)
6252 if ( CanDragColSize() && CanDragGridSize() )
6253 ChangeCursorMode(WXGRID_CURSOR_RESIZE_COL
);
6256 else // Neither on a row or col edge
6258 if ( m_cursorMode
!= WXGRID_CURSOR_SELECT_CELL
)
6260 ChangeCursorMode(WXGRID_CURSOR_SELECT_CELL
);
6266 void wxGrid::DoEndDragResizeRow()
6268 if ( m_dragLastPos
>= 0 )
6270 // erase the last line and resize the row
6272 int cw
, ch
, left
, dummy
;
6273 m_gridWin
->GetClientSize( &cw
, &ch
);
6274 CalcUnscrolledPosition( 0, 0, &left
, &dummy
);
6276 wxClientDC
dc( m_gridWin
);
6278 dc
.SetLogicalFunction( wxINVERT
);
6279 dc
.DrawLine( left
, m_dragLastPos
, left
+ cw
, m_dragLastPos
);
6280 HideCellEditControl();
6281 SaveEditControlValue();
6283 int rowTop
= GetRowTop(m_dragRowOrCol
);
6284 SetRowSize( m_dragRowOrCol
,
6285 wxMax( m_dragLastPos
- rowTop
, m_minAcceptableRowHeight
) );
6287 if ( !GetBatchCount() )
6289 // Only needed to get the correct rect.y:
6290 wxRect
rect ( CellToRect( m_dragRowOrCol
, 0 ) );
6292 CalcScrolledPosition(0, rect
.y
, &dummy
, &rect
.y
);
6293 rect
.width
= m_rowLabelWidth
;
6294 rect
.height
= ch
- rect
.y
;
6295 m_rowLabelWin
->Refresh( true, &rect
);
6298 // if there is a multicell block, paint all of it
6301 int i
, cell_rows
, cell_cols
, subtract_rows
= 0;
6302 int leftCol
= XToCol(left
);
6303 int rightCol
= internalXToCol(left
+ cw
);
6306 for (i
=leftCol
; i
<rightCol
; i
++)
6308 GetCellSize(m_dragRowOrCol
, i
, &cell_rows
, &cell_cols
);
6309 if (cell_rows
< subtract_rows
)
6310 subtract_rows
= cell_rows
;
6312 rect
.y
= GetRowTop(m_dragRowOrCol
+ subtract_rows
);
6313 CalcScrolledPosition(0, rect
.y
, &dummy
, &rect
.y
);
6314 rect
.height
= ch
- rect
.y
;
6317 m_gridWin
->Refresh( false, &rect
);
6320 ShowCellEditControl();
6325 void wxGrid::DoEndDragResizeCol()
6327 if ( m_dragLastPos
>= 0 )
6329 // erase the last line and resize the col
6331 int cw
, ch
, dummy
, top
;
6332 m_gridWin
->GetClientSize( &cw
, &ch
);
6333 CalcUnscrolledPosition( 0, 0, &dummy
, &top
);
6335 wxClientDC
dc( m_gridWin
);
6337 dc
.SetLogicalFunction( wxINVERT
);
6338 dc
.DrawLine( m_dragLastPos
, top
, m_dragLastPos
, top
+ ch
);
6339 HideCellEditControl();
6340 SaveEditControlValue();
6342 int colLeft
= GetColLeft(m_dragRowOrCol
);
6343 SetColSize( m_dragRowOrCol
,
6344 wxMax( m_dragLastPos
- colLeft
,
6345 GetColMinimalWidth(m_dragRowOrCol
) ) );
6347 if ( !GetBatchCount() )
6349 // Only needed to get the correct rect.x:
6350 wxRect
rect ( CellToRect( 0, m_dragRowOrCol
) );
6352 CalcScrolledPosition(rect
.x
, 0, &rect
.x
, &dummy
);
6353 rect
.width
= cw
- rect
.x
;
6354 rect
.height
= m_colLabelHeight
;
6355 m_colLabelWin
->Refresh( true, &rect
);
6358 // if there is a multicell block, paint all of it
6361 int i
, cell_rows
, cell_cols
, subtract_cols
= 0;
6362 int topRow
= YToRow(top
);
6363 int bottomRow
= internalYToRow(top
+ cw
);
6366 for (i
=topRow
; i
<bottomRow
; i
++)
6368 GetCellSize(i
, m_dragRowOrCol
, &cell_rows
, &cell_cols
);
6369 if (cell_cols
< subtract_cols
)
6370 subtract_cols
= cell_cols
;
6373 rect
.x
= GetColLeft(m_dragRowOrCol
+ subtract_cols
);
6374 CalcScrolledPosition(rect
.x
, 0, &rect
.x
, &dummy
);
6375 rect
.width
= cw
- rect
.x
;
6379 m_gridWin
->Refresh( false, &rect
);
6382 ShowCellEditControl();
6386 void wxGrid::DoEndDragMoveCol()
6388 //The user clicked on the column but didn't actually drag
6389 if ( m_dragLastPos
< 0 )
6391 m_colLabelWin
->Refresh(); //Do this to "unpress" the column
6396 if ( m_moveToCol
== -1 )
6397 newPos
= m_numCols
- 1;
6400 newPos
= GetColPos( m_moveToCol
);
6401 if ( newPos
> GetColPos( m_dragRowOrCol
) )
6405 SetColPos( m_dragRowOrCol
, newPos
);
6408 void wxGrid::SetColPos( int colID
, int newPos
)
6410 if ( m_colAt
.IsEmpty() )
6412 m_colAt
.Alloc( m_numCols
);
6415 for ( i
= 0; i
< m_numCols
; i
++ )
6421 int oldPos
= GetColPos( colID
);
6423 //Reshuffle the m_colAt array
6424 if ( newPos
> oldPos
)
6427 for ( i
= oldPos
; i
< newPos
; i
++ )
6429 m_colAt
[i
] = m_colAt
[i
+1];
6435 for ( i
= oldPos
; i
> newPos
; i
-- )
6437 m_colAt
[i
] = m_colAt
[i
-1];
6441 m_colAt
[newPos
] = colID
;
6443 //Recalculate the column rights
6444 if ( !m_colWidths
.IsEmpty() )
6448 for ( colPos
= 0; colPos
< m_numCols
; colPos
++ )
6450 int colID
= GetColAt( colPos
);
6452 colRight
+= m_colWidths
[colID
];
6453 m_colRights
[colID
] = colRight
;
6457 m_colLabelWin
->Refresh();
6458 m_gridWin
->Refresh();
6463 void wxGrid::EnableDragColMove( bool enable
)
6465 if ( m_canDragColMove
== enable
)
6468 m_canDragColMove
= enable
;
6470 if ( !m_canDragColMove
)
6474 //Recalculate the column rights
6475 if ( !m_colWidths
.IsEmpty() )
6479 for ( colPos
= 0; colPos
< m_numCols
; colPos
++ )
6481 colRight
+= m_colWidths
[colPos
];
6482 m_colRights
[colPos
] = colRight
;
6486 m_colLabelWin
->Refresh();
6487 m_gridWin
->Refresh();
6493 // ------ interaction with data model
6495 bool wxGrid::ProcessTableMessage( wxGridTableMessage
& msg
)
6497 switch ( msg
.GetId() )
6499 case wxGRIDTABLE_REQUEST_VIEW_GET_VALUES
:
6500 return GetModelValues();
6502 case wxGRIDTABLE_REQUEST_VIEW_SEND_VALUES
:
6503 return SetModelValues();
6505 case wxGRIDTABLE_NOTIFY_ROWS_INSERTED
:
6506 case wxGRIDTABLE_NOTIFY_ROWS_APPENDED
:
6507 case wxGRIDTABLE_NOTIFY_ROWS_DELETED
:
6508 case wxGRIDTABLE_NOTIFY_COLS_INSERTED
:
6509 case wxGRIDTABLE_NOTIFY_COLS_APPENDED
:
6510 case wxGRIDTABLE_NOTIFY_COLS_DELETED
:
6511 return Redimension( msg
);
6518 // The behaviour of this function depends on the grid table class
6519 // Clear() function. For the default wxGridStringTable class the
6520 // behavious is to replace all cell contents with wxEmptyString but
6521 // not to change the number of rows or cols.
6523 void wxGrid::ClearGrid()
6527 if (IsCellEditControlEnabled())
6528 DisableCellEditControl();
6531 if (!GetBatchCount())
6532 m_gridWin
->Refresh();
6536 bool wxGrid::InsertRows( int pos
, int numRows
, bool WXUNUSED(updateLabels
) )
6538 // TODO: something with updateLabels flag
6542 wxFAIL_MSG( wxT("Called wxGrid::InsertRows() before calling CreateGrid()") );
6548 if (IsCellEditControlEnabled())
6549 DisableCellEditControl();
6551 bool done
= m_table
->InsertRows( pos
, numRows
);
6554 // the table will have sent the results of the insert row
6555 // operation to this view object as a grid table message
6561 bool wxGrid::AppendRows( int numRows
, bool WXUNUSED(updateLabels
) )
6563 // TODO: something with updateLabels flag
6567 wxFAIL_MSG( wxT("Called wxGrid::AppendRows() before calling CreateGrid()") );
6573 bool done
= m_table
&& m_table
->AppendRows( numRows
);
6576 // the table will have sent the results of the append row
6577 // operation to this view object as a grid table message
6583 bool wxGrid::DeleteRows( int pos
, int numRows
, bool WXUNUSED(updateLabels
) )
6585 // TODO: something with updateLabels flag
6589 wxFAIL_MSG( wxT("Called wxGrid::DeleteRows() before calling CreateGrid()") );
6595 if (IsCellEditControlEnabled())
6596 DisableCellEditControl();
6598 bool done
= m_table
->DeleteRows( pos
, numRows
);
6600 // the table will have sent the results of the delete row
6601 // operation to this view object as a grid table message
6607 bool wxGrid::InsertCols( int pos
, int numCols
, bool WXUNUSED(updateLabels
) )
6609 // TODO: something with updateLabels flag
6613 wxFAIL_MSG( wxT("Called wxGrid::InsertCols() before calling CreateGrid()") );
6619 if (IsCellEditControlEnabled())
6620 DisableCellEditControl();
6622 bool done
= m_table
->InsertCols( pos
, numCols
);
6624 // the table will have sent the results of the insert col
6625 // operation to this view object as a grid table message
6631 bool wxGrid::AppendCols( int numCols
, bool WXUNUSED(updateLabels
) )
6633 // TODO: something with updateLabels flag
6637 wxFAIL_MSG( wxT("Called wxGrid::AppendCols() before calling CreateGrid()") );
6643 bool done
= m_table
->AppendCols( numCols
);
6645 // the table will have sent the results of the append col
6646 // operation to this view object as a grid table message
6652 bool wxGrid::DeleteCols( int pos
, int numCols
, bool WXUNUSED(updateLabels
) )
6654 // TODO: something with updateLabels flag
6658 wxFAIL_MSG( wxT("Called wxGrid::DeleteCols() before calling CreateGrid()") );
6664 if (IsCellEditControlEnabled())
6665 DisableCellEditControl();
6667 bool done
= m_table
->DeleteCols( pos
, numCols
);
6669 // the table will have sent the results of the delete col
6670 // operation to this view object as a grid table message
6677 // ----- event handlers
6680 // Generate a grid event based on a mouse event and
6681 // return the result of ProcessEvent()
6683 int wxGrid::SendEvent( const wxEventType type
,
6685 wxMouseEvent
& mouseEv
)
6687 bool claimed
, vetoed
;
6689 if ( type
== wxEVT_GRID_ROW_SIZE
|| type
== wxEVT_GRID_COL_SIZE
)
6691 int rowOrCol
= (row
== -1 ? col
: row
);
6693 wxGridSizeEvent
gridEvt( GetId(),
6697 mouseEv
.GetX() + GetRowLabelSize(),
6698 mouseEv
.GetY() + GetColLabelSize(),
6699 mouseEv
.ControlDown(),
6700 mouseEv
.ShiftDown(),
6702 mouseEv
.MetaDown() );
6704 claimed
= GetEventHandler()->ProcessEvent(gridEvt
);
6705 vetoed
= !gridEvt
.IsAllowed();
6707 else if ( type
== wxEVT_GRID_RANGE_SELECT
)
6709 // Right now, it should _never_ end up here!
6710 wxGridRangeSelectEvent
gridEvt( GetId(),
6714 m_selectingBottomRight
,
6716 mouseEv
.ControlDown(),
6717 mouseEv
.ShiftDown(),
6719 mouseEv
.MetaDown() );
6721 claimed
= GetEventHandler()->ProcessEvent(gridEvt
);
6722 vetoed
= !gridEvt
.IsAllowed();
6724 else if ( type
== wxEVT_GRID_LABEL_LEFT_CLICK
||
6725 type
== wxEVT_GRID_LABEL_LEFT_DCLICK
||
6726 type
== wxEVT_GRID_LABEL_RIGHT_CLICK
||
6727 type
== wxEVT_GRID_LABEL_RIGHT_DCLICK
)
6729 wxPoint pos
= mouseEv
.GetPosition();
6731 if ( mouseEv
.GetEventObject() == GetGridRowLabelWindow() )
6732 pos
.y
+= GetColLabelSize();
6733 if ( mouseEv
.GetEventObject() == GetGridColLabelWindow() )
6734 pos
.x
+= GetRowLabelSize();
6736 wxGridEvent
gridEvt( GetId(),
6743 mouseEv
.ControlDown(),
6744 mouseEv
.ShiftDown(),
6746 mouseEv
.MetaDown() );
6747 claimed
= GetEventHandler()->ProcessEvent(gridEvt
);
6748 vetoed
= !gridEvt
.IsAllowed();
6752 wxGridEvent
gridEvt( GetId(),
6756 mouseEv
.GetX() + GetRowLabelSize(),
6757 mouseEv
.GetY() + GetColLabelSize(),
6759 mouseEv
.ControlDown(),
6760 mouseEv
.ShiftDown(),
6762 mouseEv
.MetaDown() );
6763 claimed
= GetEventHandler()->ProcessEvent(gridEvt
);
6764 vetoed
= !gridEvt
.IsAllowed();
6767 // A Veto'd event may not be `claimed' so test this first
6771 return claimed
? 1 : 0;
6774 // Generate a grid event of specified type and return the result
6775 // of ProcessEvent().
6777 int wxGrid::SendEvent( const wxEventType type
,
6780 bool claimed
, vetoed
;
6782 if ( type
== wxEVT_GRID_ROW_SIZE
|| type
== wxEVT_GRID_COL_SIZE
)
6784 int rowOrCol
= (row
== -1 ? col
: row
);
6786 wxGridSizeEvent
gridEvt( GetId(), type
, this, rowOrCol
);
6788 claimed
= GetEventHandler()->ProcessEvent(gridEvt
);
6789 vetoed
= !gridEvt
.IsAllowed();
6793 wxGridEvent
gridEvt( GetId(), type
, this, row
, col
);
6795 claimed
= GetEventHandler()->ProcessEvent(gridEvt
);
6796 vetoed
= !gridEvt
.IsAllowed();
6799 // A Veto'd event may not be `claimed' so test this first
6803 return claimed
? 1 : 0;
6806 void wxGrid::OnPaint( wxPaintEvent
& WXUNUSED(event
) )
6808 // needed to prevent zillions of paint events on MSW
6812 void wxGrid::Refresh(bool eraseb
, const wxRect
* rect
)
6814 // Don't do anything if between Begin/EndBatch...
6815 // EndBatch() will do all this on the last nested one anyway.
6816 if (! GetBatchCount())
6818 // Refresh to get correct scrolled position:
6819 wxScrolledWindow::Refresh(eraseb
, rect
);
6823 int rect_x
, rect_y
, rectWidth
, rectHeight
;
6824 int width_label
, width_cell
, height_label
, height_cell
;
6827 // Copy rectangle can get scroll offsets..
6828 rect_x
= rect
->GetX();
6829 rect_y
= rect
->GetY();
6830 rectWidth
= rect
->GetWidth();
6831 rectHeight
= rect
->GetHeight();
6833 width_label
= m_rowLabelWidth
- rect_x
;
6834 if (width_label
> rectWidth
)
6835 width_label
= rectWidth
;
6837 height_label
= m_colLabelHeight
- rect_y
;
6838 if (height_label
> rectHeight
)
6839 height_label
= rectHeight
;
6841 if (rect_x
> m_rowLabelWidth
)
6843 x
= rect_x
- m_rowLabelWidth
;
6844 width_cell
= rectWidth
;
6849 width_cell
= rectWidth
- (m_rowLabelWidth
- rect_x
);
6852 if (rect_y
> m_colLabelHeight
)
6854 y
= rect_y
- m_colLabelHeight
;
6855 height_cell
= rectHeight
;
6860 height_cell
= rectHeight
- (m_colLabelHeight
- rect_y
);
6863 // Paint corner label part intersecting rect.
6864 if ( width_label
> 0 && height_label
> 0 )
6866 wxRect
anotherrect(rect_x
, rect_y
, width_label
, height_label
);
6867 m_cornerLabelWin
->Refresh(eraseb
, &anotherrect
);
6870 // Paint col labels part intersecting rect.
6871 if ( width_cell
> 0 && height_label
> 0 )
6873 wxRect
anotherrect(x
, rect_y
, width_cell
, height_label
);
6874 m_colLabelWin
->Refresh(eraseb
, &anotherrect
);
6877 // Paint row labels part intersecting rect.
6878 if ( width_label
> 0 && height_cell
> 0 )
6880 wxRect
anotherrect(rect_x
, y
, width_label
, height_cell
);
6881 m_rowLabelWin
->Refresh(eraseb
, &anotherrect
);
6884 // Paint cell area part intersecting rect.
6885 if ( width_cell
> 0 && height_cell
> 0 )
6887 wxRect
anotherrect(x
, y
, width_cell
, height_cell
);
6888 m_gridWin
->Refresh(eraseb
, &anotherrect
);
6893 m_cornerLabelWin
->Refresh(eraseb
, NULL
);
6894 m_colLabelWin
->Refresh(eraseb
, NULL
);
6895 m_rowLabelWin
->Refresh(eraseb
, NULL
);
6896 m_gridWin
->Refresh(eraseb
, NULL
);
6901 void wxGrid::OnSize( wxSizeEvent
& event
)
6903 // position the child windows
6906 // don't call CalcDimensions() from here, the base class handles the size
6911 void wxGrid::OnKeyDown( wxKeyEvent
& event
)
6913 if ( m_inOnKeyDown
)
6915 // shouldn't be here - we are going round in circles...
6917 wxFAIL_MSG( wxT("wxGrid::OnKeyDown called while already active") );
6920 m_inOnKeyDown
= true;
6922 // propagate the event up and see if it gets processed
6923 wxWindow
*parent
= GetParent();
6924 wxKeyEvent
keyEvt( event
);
6925 keyEvt
.SetEventObject( parent
);
6927 if ( !parent
->GetEventHandler()->ProcessEvent( keyEvt
) )
6929 if (GetLayoutDirection() == wxLayout_RightToLeft
)
6931 if (event
.GetKeyCode() == WXK_RIGHT
)
6932 event
.m_keyCode
= WXK_LEFT
;
6933 else if (event
.GetKeyCode() == WXK_LEFT
)
6934 event
.m_keyCode
= WXK_RIGHT
;
6937 // try local handlers
6938 switch ( event
.GetKeyCode() )
6941 if ( event
.ControlDown() )
6942 MoveCursorUpBlock( event
.ShiftDown() );
6944 MoveCursorUp( event
.ShiftDown() );
6948 if ( event
.ControlDown() )
6949 MoveCursorDownBlock( event
.ShiftDown() );
6951 MoveCursorDown( event
.ShiftDown() );
6955 if ( event
.ControlDown() )
6956 MoveCursorLeftBlock( event
.ShiftDown() );
6958 MoveCursorLeft( event
.ShiftDown() );
6962 if ( event
.ControlDown() )
6963 MoveCursorRightBlock( event
.ShiftDown() );
6965 MoveCursorRight( event
.ShiftDown() );
6969 case WXK_NUMPAD_ENTER
:
6970 if ( event
.ControlDown() )
6972 event
.Skip(); // to let the edit control have the return
6976 if ( GetGridCursorRow() < GetNumberRows()-1 )
6978 MoveCursorDown( event
.ShiftDown() );
6982 // at the bottom of a column
6983 DisableCellEditControl();
6993 if (event
.ShiftDown())
6995 if ( GetGridCursorCol() > 0 )
6997 MoveCursorLeft( false );
7002 DisableCellEditControl();
7007 if ( GetGridCursorCol() < GetNumberCols() - 1 )
7009 MoveCursorRight( false );
7014 DisableCellEditControl();
7020 if ( event
.ControlDown() )
7022 MakeCellVisible( 0, 0 );
7023 SetCurrentCell( 0, 0 );
7032 if ( event
.ControlDown() )
7034 MakeCellVisible( m_numRows
- 1, m_numCols
- 1 );
7035 SetCurrentCell( m_numRows
- 1, m_numCols
- 1 );
7052 if ( event
.ControlDown() )
7056 m_selection
->ToggleCellSelection(
7057 m_currentCellCoords
.GetRow(),
7058 m_currentCellCoords
.GetCol(),
7059 event
.ControlDown(),
7067 if ( !IsEditable() )
7068 MoveCursorRight( false );
7079 m_inOnKeyDown
= false;
7082 void wxGrid::OnKeyUp( wxKeyEvent
& event
)
7084 // try local handlers
7086 if ( event
.GetKeyCode() == WXK_SHIFT
)
7088 if ( m_selectingTopLeft
!= wxGridNoCellCoords
&&
7089 m_selectingBottomRight
!= wxGridNoCellCoords
)
7093 m_selection
->SelectBlock(
7094 m_selectingTopLeft
.GetRow(),
7095 m_selectingTopLeft
.GetCol(),
7096 m_selectingBottomRight
.GetRow(),
7097 m_selectingBottomRight
.GetCol(),
7098 event
.ControlDown(),
7105 m_selectingTopLeft
= wxGridNoCellCoords
;
7106 m_selectingBottomRight
= wxGridNoCellCoords
;
7107 m_selectingKeyboard
= wxGridNoCellCoords
;
7111 void wxGrid::OnChar( wxKeyEvent
& event
)
7113 // is it possible to edit the current cell at all?
7114 if ( !IsCellEditControlEnabled() && CanEnableCellControl() )
7116 // yes, now check whether the cells editor accepts the key
7117 int row
= m_currentCellCoords
.GetRow();
7118 int col
= m_currentCellCoords
.GetCol();
7119 wxGridCellAttr
*attr
= GetCellAttr(row
, col
);
7120 wxGridCellEditor
*editor
= attr
->GetEditor(this, row
, col
);
7122 // <F2> is special and will always start editing, for
7123 // other keys - ask the editor itself
7124 if ( (event
.GetKeyCode() == WXK_F2
&& !event
.HasModifiers())
7125 || editor
->IsAcceptedKey(event
) )
7127 // ensure cell is visble
7128 MakeCellVisible(row
, col
);
7129 EnableCellEditControl();
7131 // a problem can arise if the cell is not completely
7132 // visible (even after calling MakeCellVisible the
7133 // control is not created and calling StartingKey will
7135 if ( event
.GetKeyCode() != WXK_F2
&& editor
->IsCreated() && m_cellEditCtrlEnabled
)
7136 editor
->StartingKey(event
);
7152 void wxGrid::OnEraseBackground(wxEraseEvent
&)
7156 void wxGrid::SetCurrentCell( const wxGridCellCoords
& coords
)
7158 if ( SendEvent( wxEVT_GRID_SELECT_CELL
, coords
.GetRow(), coords
.GetCol() ) )
7160 // the event has been intercepted - do nothing
7164 #if !(defined(__WXMAC__) && wxMAC_USE_CORE_GRAPHICS)
7165 wxClientDC
dc( m_gridWin
);
7169 if ( m_currentCellCoords
!= wxGridNoCellCoords
)
7171 DisableCellEditControl();
7173 if ( IsVisible( m_currentCellCoords
, false ) )
7176 r
= BlockToDeviceRect( m_currentCellCoords
, m_currentCellCoords
);
7177 if ( !m_gridLinesEnabled
)
7185 wxGridCellCoordsArray cells
= CalcCellsExposed( r
);
7187 // Otherwise refresh redraws the highlight!
7188 m_currentCellCoords
= coords
;
7190 #if defined(__WXMAC__) && wxMAC_USE_CORE_GRAPHICS
7191 m_gridWin
->Refresh(true /*, & r */);
7193 DrawGridCellArea( dc
, cells
);
7194 DrawAllGridLines( dc
, r
);
7199 m_currentCellCoords
= coords
;
7201 wxGridCellAttr
*attr
= GetCellAttr( coords
);
7202 #if !(defined(__WXMAC__) && wxMAC_USE_CORE_GRAPHICS)
7203 DrawCellHighlight( dc
, attr
);
7208 void wxGrid::HighlightBlock( int topRow
, int leftCol
, int bottomRow
, int rightCol
)
7211 wxGridCellCoords updateTopLeft
, updateBottomRight
;
7215 if ( m_selection
->GetSelectionMode() == wxGrid::wxGridSelectRows
)
7218 rightCol
= GetNumberCols() - 1;
7220 else if ( m_selection
->GetSelectionMode() == wxGrid::wxGridSelectColumns
)
7223 bottomRow
= GetNumberRows() - 1;
7227 if ( topRow
> bottomRow
)
7234 if ( leftCol
> rightCol
)
7241 updateTopLeft
= wxGridCellCoords( topRow
, leftCol
);
7242 updateBottomRight
= wxGridCellCoords( bottomRow
, rightCol
);
7244 // First the case that we selected a completely new area
7245 if ( m_selectingTopLeft
== wxGridNoCellCoords
||
7246 m_selectingBottomRight
== wxGridNoCellCoords
)
7249 rect
= BlockToDeviceRect( wxGridCellCoords ( topRow
, leftCol
),
7250 wxGridCellCoords ( bottomRow
, rightCol
) );
7251 m_gridWin
->Refresh( false, &rect
);
7254 // Now handle changing an existing selection area.
7255 else if ( m_selectingTopLeft
!= updateTopLeft
||
7256 m_selectingBottomRight
!= updateBottomRight
)
7258 // Compute two optimal update rectangles:
7259 // Either one rectangle is a real subset of the
7260 // other, or they are (almost) disjoint!
7262 bool need_refresh
[4];
7266 need_refresh
[3] = false;
7269 // Store intermediate values
7270 wxCoord oldLeft
= m_selectingTopLeft
.GetCol();
7271 wxCoord oldTop
= m_selectingTopLeft
.GetRow();
7272 wxCoord oldRight
= m_selectingBottomRight
.GetCol();
7273 wxCoord oldBottom
= m_selectingBottomRight
.GetRow();
7275 // Determine the outer/inner coordinates.
7276 if (oldLeft
> leftCol
)
7282 if (oldTop
> topRow
)
7288 if (oldRight
< rightCol
)
7291 oldRight
= rightCol
;
7294 if (oldBottom
< bottomRow
)
7297 oldBottom
= bottomRow
;
7301 // Now, either the stuff marked old is the outer
7302 // rectangle or we don't have a situation where one
7303 // is contained in the other.
7305 if ( oldLeft
< leftCol
)
7307 // Refresh the newly selected or deselected
7308 // area to the left of the old or new selection.
7309 need_refresh
[0] = true;
7310 rect
[0] = BlockToDeviceRect(
7311 wxGridCellCoords( oldTop
, oldLeft
),
7312 wxGridCellCoords( oldBottom
, leftCol
- 1 ) );
7315 if ( oldTop
< topRow
)
7317 // Refresh the newly selected or deselected
7318 // area above the old or new selection.
7319 need_refresh
[1] = true;
7320 rect
[1] = BlockToDeviceRect(
7321 wxGridCellCoords( oldTop
, leftCol
),
7322 wxGridCellCoords( topRow
- 1, rightCol
) );
7325 if ( oldRight
> rightCol
)
7327 // Refresh the newly selected or deselected
7328 // area to the right of the old or new selection.
7329 need_refresh
[2] = true;
7330 rect
[2] = BlockToDeviceRect(
7331 wxGridCellCoords( oldTop
, rightCol
+ 1 ),
7332 wxGridCellCoords( oldBottom
, oldRight
) );
7335 if ( oldBottom
> bottomRow
)
7337 // Refresh the newly selected or deselected
7338 // area below the old or new selection.
7339 need_refresh
[3] = true;
7340 rect
[3] = BlockToDeviceRect(
7341 wxGridCellCoords( bottomRow
+ 1, leftCol
),
7342 wxGridCellCoords( oldBottom
, rightCol
) );
7345 // various Refresh() calls
7346 for (i
= 0; i
< 4; i
++ )
7347 if ( need_refresh
[i
] && rect
[i
] != wxGridNoCellRect
)
7348 m_gridWin
->Refresh( false, &(rect
[i
]) );
7352 m_selectingTopLeft
= updateTopLeft
;
7353 m_selectingBottomRight
= updateBottomRight
;
7357 // ------ functions to get/send data (see also public functions)
7360 bool wxGrid::GetModelValues()
7362 // Hide the editor, so it won't hide a changed value.
7363 HideCellEditControl();
7367 // all we need to do is repaint the grid
7369 m_gridWin
->Refresh();
7376 bool wxGrid::SetModelValues()
7380 // Disable the editor, so it won't hide a changed value.
7381 // Do we also want to save the current value of the editor first?
7383 DisableCellEditControl();
7387 for ( row
= 0; row
< m_numRows
; row
++ )
7389 for ( col
= 0; col
< m_numCols
; col
++ )
7391 m_table
->SetValue( row
, col
, GetCellValue(row
, col
) );
7401 // Note - this function only draws cells that are in the list of
7402 // exposed cells (usually set from the update region by
7403 // CalcExposedCells)
7405 void wxGrid::DrawGridCellArea( wxDC
& dc
, const wxGridCellCoordsArray
& cells
)
7407 if ( !m_numRows
|| !m_numCols
)
7410 int i
, numCells
= cells
.GetCount();
7411 int row
, col
, cell_rows
, cell_cols
;
7412 wxGridCellCoordsArray redrawCells
;
7414 for ( i
= numCells
- 1; i
>= 0; i
-- )
7416 row
= cells
[i
].GetRow();
7417 col
= cells
[i
].GetCol();
7418 GetCellSize( row
, col
, &cell_rows
, &cell_cols
);
7420 // If this cell is part of a multicell block, find owner for repaint
7421 if ( cell_rows
<= 0 || cell_cols
<= 0 )
7423 wxGridCellCoords
cell( row
+ cell_rows
, col
+ cell_cols
);
7424 bool marked
= false;
7425 for ( int j
= 0; j
< numCells
; j
++ )
7427 if ( cell
== cells
[j
] )
7436 int count
= redrawCells
.GetCount();
7437 for (int j
= 0; j
< count
; j
++)
7439 if ( cell
== redrawCells
[j
] )
7447 redrawCells
.Add( cell
);
7450 // don't bother drawing this cell
7454 // If this cell is empty, find cell to left that might want to overflow
7455 if (m_table
&& m_table
->IsEmptyCell(row
, col
))
7457 for ( int l
= 0; l
< cell_rows
; l
++ )
7459 // find a cell in this row to leave already marked for repaint
7461 for (int k
= 0; k
< int(redrawCells
.GetCount()); k
++)
7462 if ((redrawCells
[k
].GetCol() < left
) &&
7463 (redrawCells
[k
].GetRow() == row
))
7465 left
= redrawCells
[k
].GetCol();
7469 left
= 0; // oh well
7471 for (int j
= col
- 1; j
>= left
; j
--)
7473 if (!m_table
->IsEmptyCell(row
+ l
, j
))
7475 if (GetCellOverflow(row
+ l
, j
))
7477 wxGridCellCoords
cell(row
+ l
, j
);
7478 bool marked
= false;
7480 for (int k
= 0; k
< numCells
; k
++)
7482 if ( cell
== cells
[k
] )
7491 int count
= redrawCells
.GetCount();
7492 for (int k
= 0; k
< count
; k
++)
7494 if ( cell
== redrawCells
[k
] )
7501 redrawCells
.Add( cell
);
7510 DrawCell( dc
, cells
[i
] );
7513 numCells
= redrawCells
.GetCount();
7515 for ( i
= numCells
- 1; i
>= 0; i
-- )
7517 DrawCell( dc
, redrawCells
[i
] );
7521 void wxGrid::DrawGridSpace( wxDC
& dc
)
7524 m_gridWin
->GetClientSize( &cw
, &ch
);
7527 CalcUnscrolledPosition( cw
, ch
, &right
, &bottom
);
7529 int rightCol
= m_numCols
> 0 ? GetColRight(GetColAt( m_numCols
- 1 )) : 0;
7530 int bottomRow
= m_numRows
> 0 ? GetRowBottom(m_numRows
- 1) : 0;
7532 if ( right
> rightCol
|| bottom
> bottomRow
)
7535 CalcUnscrolledPosition( 0, 0, &left
, &top
);
7537 dc
.SetBrush( wxBrush(GetDefaultCellBackgroundColour(), wxSOLID
) );
7538 dc
.SetPen( *wxTRANSPARENT_PEN
);
7540 if ( right
> rightCol
)
7542 dc
.DrawRectangle( rightCol
, top
, right
- rightCol
, ch
);
7545 if ( bottom
> bottomRow
)
7547 dc
.DrawRectangle( left
, bottomRow
, cw
, bottom
- bottomRow
);
7552 void wxGrid::DrawCell( wxDC
& dc
, const wxGridCellCoords
& coords
)
7554 int row
= coords
.GetRow();
7555 int col
= coords
.GetCol();
7557 if ( GetColWidth(col
) <= 0 || GetRowHeight(row
) <= 0 )
7560 // we draw the cell border ourselves
7561 #if !WXGRID_DRAW_LINES
7562 if ( m_gridLinesEnabled
)
7563 DrawCellBorder( dc
, coords
);
7566 wxGridCellAttr
* attr
= GetCellAttr(row
, col
);
7568 bool isCurrent
= coords
== m_currentCellCoords
;
7570 wxRect rect
= CellToRect( row
, col
);
7572 // if the editor is shown, we should use it and not the renderer
7573 // Note: However, only if it is really _shown_, i.e. not hidden!
7574 if ( isCurrent
&& IsCellEditControlShown() )
7576 // NB: this "#if..." is temporary and fixes a problem where the
7577 // edit control is erased by this code after being rendered.
7578 // On wxMac (QD build only), the cell editor is a wxTextCntl and is rendered
7579 // implicitly, causing this out-of order render.
7580 #if !defined(__WXMAC__)
7581 wxGridCellEditor
*editor
= attr
->GetEditor(this, row
, col
);
7582 editor
->PaintBackground(rect
, attr
);
7588 // but all the rest is drawn by the cell renderer and hence may be customized
7589 wxGridCellRenderer
*renderer
= attr
->GetRenderer(this, row
, col
);
7590 renderer
->Draw(*this, *attr
, dc
, rect
, row
, col
, IsInSelection(coords
));
7597 void wxGrid::DrawCellHighlight( wxDC
& dc
, const wxGridCellAttr
*attr
)
7599 int row
= m_currentCellCoords
.GetRow();
7600 int col
= m_currentCellCoords
.GetCol();
7602 if ( GetColWidth(col
) <= 0 || GetRowHeight(row
) <= 0 )
7605 wxRect rect
= CellToRect(row
, col
);
7607 // hmmm... what could we do here to show that the cell is disabled?
7608 // for now, I just draw a thinner border than for the other ones, but
7609 // it doesn't look really good
7611 int penWidth
= attr
->IsReadOnly() ? m_cellHighlightROPenWidth
: m_cellHighlightPenWidth
;
7615 // The center of the drawn line is where the position/width/height of
7616 // the rectangle is actually at (on wxMSW at least), so the
7617 // size of the rectangle is reduced to compensate for the thickness of
7618 // the line. If this is too strange on non-wxMSW platforms then
7619 // please #ifdef this appropriately.
7620 rect
.x
+= penWidth
/ 2;
7621 rect
.y
+= penWidth
/ 2;
7622 rect
.width
-= penWidth
- 1;
7623 rect
.height
-= penWidth
- 1;
7625 // Now draw the rectangle
7626 // use the cellHighlightColour if the cell is inside a selection, this
7627 // will ensure the cell is always visible.
7628 dc
.SetPen(wxPen(IsInSelection(row
,col
) ? m_selectionForeground
: m_cellHighlightColour
, penWidth
, wxSOLID
));
7629 dc
.SetBrush(*wxTRANSPARENT_BRUSH
);
7630 dc
.DrawRectangle(rect
);
7634 // VZ: my experiments with 3D borders...
7636 // how to properly set colours for arbitrary bg?
7637 wxCoord x1
= rect
.x
,
7639 x2
= rect
.x
+ rect
.width
- 1,
7640 y2
= rect
.y
+ rect
.height
- 1;
7642 dc
.SetPen(*wxWHITE_PEN
);
7643 dc
.DrawLine(x1
, y1
, x2
, y1
);
7644 dc
.DrawLine(x1
, y1
, x1
, y2
);
7646 dc
.DrawLine(x1
+ 1, y2
- 1, x2
- 1, y2
- 1);
7647 dc
.DrawLine(x2
- 1, y1
+ 1, x2
- 1, y2
);
7649 dc
.SetPen(*wxBLACK_PEN
);
7650 dc
.DrawLine(x1
, y2
, x2
, y2
);
7651 dc
.DrawLine(x2
, y1
, x2
, y2
+ 1);
7655 wxPen
wxGrid::GetDefaultGridLinePen()
7657 return wxPen(GetGridLineColour(), 1, wxSOLID
);
7660 wxPen
wxGrid::GetRowGridLinePen(int WXUNUSED(row
))
7662 return GetDefaultGridLinePen();
7665 wxPen
wxGrid::GetColGridLinePen(int WXUNUSED(col
))
7667 return GetDefaultGridLinePen();
7670 void wxGrid::DrawCellBorder( wxDC
& dc
, const wxGridCellCoords
& coords
)
7672 int row
= coords
.GetRow();
7673 int col
= coords
.GetCol();
7674 if ( GetColWidth(col
) <= 0 || GetRowHeight(row
) <= 0 )
7678 wxRect rect
= CellToRect( row
, col
);
7680 // right hand border
7681 dc
.SetPen( GetColGridLinePen(col
) );
7682 dc
.DrawLine( rect
.x
+ rect
.width
, rect
.y
,
7683 rect
.x
+ rect
.width
, rect
.y
+ rect
.height
+ 1 );
7686 dc
.SetPen( GetRowGridLinePen(row
) );
7687 dc
.DrawLine( rect
.x
, rect
.y
+ rect
.height
,
7688 rect
.x
+ rect
.width
, rect
.y
+ rect
.height
);
7691 void wxGrid::DrawHighlight(wxDC
& dc
, const wxGridCellCoordsArray
& cells
)
7693 // This if block was previously in wxGrid::OnPaint but that doesn't
7694 // seem to get called under wxGTK - MB
7696 if ( m_currentCellCoords
== wxGridNoCellCoords
&&
7697 m_numRows
&& m_numCols
)
7699 m_currentCellCoords
.Set(0, 0);
7702 if ( IsCellEditControlShown() )
7704 // don't show highlight when the edit control is shown
7708 // if the active cell was repainted, repaint its highlight too because it
7709 // might have been damaged by the grid lines
7710 size_t count
= cells
.GetCount();
7711 for ( size_t n
= 0; n
< count
; n
++ )
7713 if ( cells
[n
] == m_currentCellCoords
)
7715 wxGridCellAttr
* attr
= GetCellAttr(m_currentCellCoords
);
7716 DrawCellHighlight(dc
, attr
);
7724 // TODO: remove this ???
7725 // This is used to redraw all grid lines e.g. when the grid line colour
7728 void wxGrid::DrawAllGridLines( wxDC
& dc
, const wxRegion
& WXUNUSED(reg
) )
7730 #if !WXGRID_DRAW_LINES
7734 if ( !m_gridLinesEnabled
|| !m_numRows
|| !m_numCols
)
7737 int top
, bottom
, left
, right
;
7739 #if 0 //#ifndef __WXGTK__
7743 m_gridWin
->GetClientSize(&cw
, &ch
);
7745 // virtual coords of visible area
7747 CalcUnscrolledPosition( 0, 0, &left
, &top
);
7748 CalcUnscrolledPosition( cw
, ch
, &right
, &bottom
);
7753 reg
.GetBox(x
, y
, w
, h
);
7754 CalcUnscrolledPosition( x
, y
, &left
, &top
);
7755 CalcUnscrolledPosition( x
+ w
, y
+ h
, &right
, &bottom
);
7759 m_gridWin
->GetClientSize(&cw
, &ch
);
7760 CalcUnscrolledPosition( 0, 0, &left
, &top
);
7761 CalcUnscrolledPosition( cw
, ch
, &right
, &bottom
);
7764 // avoid drawing grid lines past the last row and col
7766 right
= wxMin( right
, GetColRight(GetColAt( m_numCols
- 1 )) );
7767 bottom
= wxMin( bottom
, GetRowBottom(m_numRows
- 1) );
7769 // no gridlines inside multicells, clip them out
7770 int leftCol
= GetColPos( internalXToCol(left
) );
7771 int topRow
= internalYToRow(top
);
7772 int rightCol
= GetColPos( internalXToCol(right
) );
7773 int bottomRow
= internalYToRow(bottom
);
7775 #if !defined(__WXMAC__) || wxMAC_USE_CORE_GRAPHICS
7776 wxRegion
clippedcells(0, 0, cw
, ch
);
7778 int i
, j
, cell_rows
, cell_cols
;
7781 for (j
=topRow
; j
<=bottomRow
; j
++)
7784 for (colPos
=leftCol
; colPos
<=rightCol
; colPos
++)
7786 i
= GetColAt( colPos
);
7788 GetCellSize( j
, i
, &cell_rows
, &cell_cols
);
7789 if ((cell_rows
> 1) || (cell_cols
> 1))
7791 rect
= CellToRect(j
,i
);
7792 CalcScrolledPosition( rect
.x
, rect
.y
, &rect
.x
, &rect
.y
);
7793 clippedcells
.Subtract(rect
);
7795 else if ((cell_rows
< 0) || (cell_cols
< 0))
7797 rect
= CellToRect(j
+ cell_rows
, i
+ cell_cols
);
7798 CalcScrolledPosition( rect
.x
, rect
.y
, &rect
.x
, &rect
.y
);
7799 clippedcells
.Subtract(rect
);
7804 wxRegion
clippedcells( left
, top
, right
- left
, bottom
- top
);
7806 int i
, j
, cell_rows
, cell_cols
;
7809 for (j
=topRow
; j
<=bottomRow
; j
++)
7811 for (i
=leftCol
; i
<=rightCol
; i
++)
7813 GetCellSize( j
, i
, &cell_rows
, &cell_cols
);
7814 if ((cell_rows
> 1) || (cell_cols
> 1))
7816 rect
= CellToRect(j
, i
);
7817 clippedcells
.Subtract(rect
);
7819 else if ((cell_rows
< 0) || (cell_cols
< 0))
7821 rect
= CellToRect(j
+ cell_rows
, i
+ cell_cols
);
7822 clippedcells
.Subtract(rect
);
7828 dc
.SetClippingRegion( clippedcells
);
7831 // horizontal grid lines
7833 // already declared above - int i;
7834 for ( i
= internalYToRow(top
); i
< m_numRows
; i
++ )
7836 int bot
= GetRowBottom(i
) - 1;
7845 dc
.SetPen( GetRowGridLinePen(i
) );
7846 dc
.DrawLine( left
, bot
, right
, bot
);
7850 // vertical grid lines
7853 for ( colPos
= leftCol
; colPos
< m_numCols
; colPos
++ )
7855 i
= GetColAt( colPos
);
7857 int colRight
= GetColRight(i
);
7859 if (GetLayoutDirection() != wxLayout_RightToLeft
)
7863 if ( colRight
> right
)
7868 if ( colRight
>= left
)
7870 dc
.SetPen( GetColGridLinePen(i
) );
7871 dc
.DrawLine( colRight
, top
, colRight
, bottom
);
7875 dc
.DestroyClippingRegion();
7878 void wxGrid::DrawRowLabels( wxDC
& dc
, const wxArrayInt
& rows
)
7884 size_t numLabels
= rows
.GetCount();
7886 for ( i
= 0; i
< numLabels
; i
++ )
7888 DrawRowLabel( dc
, rows
[i
] );
7892 void wxGrid::DrawRowLabel( wxDC
& dc
, int row
)
7894 if ( GetRowHeight(row
) <= 0 || m_rowLabelWidth
<= 0 )
7902 rect
.SetY( GetRowTop(row
) + 1 );
7903 rect
.SetWidth( m_rowLabelWidth
- 2 );
7904 rect
.SetHeight( GetRowHeight(row
) - 2 );
7906 CalcScrolledPosition( 0, rect
.y
, NULL
, &rect
.y
);
7908 wxWindowDC
*win_dc
= (wxWindowDC
*) &dc
;
7910 wxRendererNative::Get().DrawHeaderButton( win_dc
->m_owner
, dc
, rect
, 0 );
7912 int rowTop
= GetRowTop(row
),
7913 rowBottom
= GetRowBottom(row
) - 1;
7915 dc
.SetPen( wxPen(wxSystemSettings::GetColour(wxSYS_COLOUR_3DSHADOW
), 1, wxSOLID
) );
7916 dc
.DrawLine( m_rowLabelWidth
- 1, rowTop
, m_rowLabelWidth
- 1, rowBottom
);
7917 dc
.DrawLine( 0, rowTop
, 0, rowBottom
);
7918 dc
.DrawLine( 0, rowBottom
, m_rowLabelWidth
, rowBottom
);
7920 dc
.SetPen( *wxWHITE_PEN
);
7921 dc
.DrawLine( 1, rowTop
, 1, rowBottom
);
7922 dc
.DrawLine( 1, rowTop
, m_rowLabelWidth
- 1, rowTop
);
7925 dc
.SetBackgroundMode( wxTRANSPARENT
);
7926 dc
.SetTextForeground( GetLabelTextColour() );
7927 dc
.SetFont( GetLabelFont() );
7930 GetRowLabelAlignment( &hAlign
, &vAlign
);
7933 rect
.SetY( GetRowTop(row
) + 2 );
7934 rect
.SetWidth( m_rowLabelWidth
- 4 );
7935 rect
.SetHeight( GetRowHeight(row
) - 4 );
7936 DrawTextRectangle( dc
, GetRowLabelValue( row
), rect
, hAlign
, vAlign
);
7939 void wxGrid::DrawColLabels( wxDC
& dc
,const wxArrayInt
& cols
)
7945 size_t numLabels
= cols
.GetCount();
7947 for ( i
= 0; i
< numLabels
; i
++ )
7949 DrawColLabel( dc
, cols
[i
] );
7953 void wxGrid::DrawColLabel( wxDC
& dc
, int col
)
7955 if ( GetColWidth(col
) <= 0 || m_colLabelHeight
<= 0 )
7958 int colLeft
= GetColLeft(col
);
7964 rect
.SetX( colLeft
+ 1 );
7966 rect
.SetWidth( GetColWidth(col
) - 2 );
7967 rect
.SetHeight( m_colLabelHeight
- 2 );
7969 wxWindowDC
*win_dc
= (wxWindowDC
*) &dc
;
7971 wxRendererNative::Get().DrawHeaderButton( win_dc
->m_owner
, dc
, rect
, 0 );
7973 int colRight
= GetColRight(col
) - 1;
7975 dc
.SetPen( wxPen(wxSystemSettings::GetColour(wxSYS_COLOUR_3DSHADOW
), 1, wxSOLID
) );
7976 dc
.DrawLine( colRight
, 0, colRight
, m_colLabelHeight
- 1 );
7977 dc
.DrawLine( colLeft
, 0, colRight
, 0 );
7978 dc
.DrawLine( colLeft
, m_colLabelHeight
- 1,
7979 colRight
+ 1, m_colLabelHeight
- 1 );
7981 dc
.SetPen( *wxWHITE_PEN
);
7982 dc
.DrawLine( colLeft
, 1, colLeft
, m_colLabelHeight
- 1 );
7983 dc
.DrawLine( colLeft
, 1, colRight
, 1 );
7986 dc
.SetBackgroundMode( wxTRANSPARENT
);
7987 dc
.SetTextForeground( GetLabelTextColour() );
7988 dc
.SetFont( GetLabelFont() );
7990 int hAlign
, vAlign
, orient
;
7991 GetColLabelAlignment( &hAlign
, &vAlign
);
7992 orient
= GetColLabelTextOrientation();
7994 rect
.SetX( colLeft
+ 2 );
7996 rect
.SetWidth( GetColWidth(col
) - 4 );
7997 rect
.SetHeight( m_colLabelHeight
- 4 );
7998 DrawTextRectangle( dc
, GetColLabelValue( col
), rect
, hAlign
, vAlign
, orient
);
8001 void wxGrid::DrawTextRectangle( wxDC
& dc
,
8002 const wxString
& value
,
8006 int textOrientation
)
8008 wxArrayString lines
;
8010 StringToLines( value
, lines
);
8012 // Forward to new API.
8013 DrawTextRectangle( dc
,
8021 // VZ: this should be replaced with wxDC::DrawLabel() to which we just have to
8022 // add textOrientation support
8023 void wxGrid::DrawTextRectangle(wxDC
& dc
,
8024 const wxArrayString
& lines
,
8028 int textOrientation
)
8030 if ( lines
.empty() )
8033 wxDCClipper
clip(dc
, rect
);
8038 if ( textOrientation
== wxHORIZONTAL
)
8039 GetTextBoxSize( dc
, lines
, &textWidth
, &textHeight
);
8041 GetTextBoxSize( dc
, lines
, &textHeight
, &textWidth
);
8045 switch ( vertAlign
)
8047 case wxALIGN_BOTTOM
:
8048 if ( textOrientation
== wxHORIZONTAL
)
8049 y
= rect
.y
+ (rect
.height
- textHeight
- 1);
8051 x
= rect
.x
+ rect
.width
- textWidth
;
8054 case wxALIGN_CENTRE
:
8055 if ( textOrientation
== wxHORIZONTAL
)
8056 y
= rect
.y
+ ((rect
.height
- textHeight
) / 2);
8058 x
= rect
.x
+ ((rect
.width
- textWidth
) / 2);
8063 if ( textOrientation
== wxHORIZONTAL
)
8070 // Align each line of a multi-line label
8071 size_t nLines
= lines
.GetCount();
8072 for ( size_t l
= 0; l
< nLines
; l
++ )
8074 const wxString
& line
= lines
[l
];
8078 *(textOrientation
== wxHORIZONTAL
? &y
: &x
) += dc
.GetCharHeight();
8084 dc
.GetTextExtent(line
, &lineWidth
, &lineHeight
);
8086 switch ( horizAlign
)
8089 if ( textOrientation
== wxHORIZONTAL
)
8090 x
= rect
.x
+ (rect
.width
- lineWidth
- 1);
8092 y
= rect
.y
+ lineWidth
+ 1;
8095 case wxALIGN_CENTRE
:
8096 if ( textOrientation
== wxHORIZONTAL
)
8097 x
= rect
.x
+ ((rect
.width
- lineWidth
) / 2);
8099 y
= rect
.y
+ rect
.height
- ((rect
.height
- lineWidth
) / 2);
8104 if ( textOrientation
== wxHORIZONTAL
)
8107 y
= rect
.y
+ rect
.height
- 1;
8111 if ( textOrientation
== wxHORIZONTAL
)
8113 dc
.DrawText( line
, x
, y
);
8118 dc
.DrawRotatedText( line
, x
, y
, 90.0 );
8124 // Split multi-line text up into an array of strings.
8125 // Any existing contents of the string array are preserved.
8127 void wxGrid::StringToLines( const wxString
& value
, wxArrayString
& lines
) const
8131 wxString eol
= wxTextFile::GetEOL( wxTextFileType_Unix
);
8132 wxString tVal
= wxTextFile::Translate( value
, wxTextFileType_Unix
);
8134 while ( startPos
< (int)tVal
.length() )
8136 pos
= tVal
.Mid(startPos
).Find( eol
);
8141 else if ( pos
== 0 )
8143 lines
.Add( wxEmptyString
);
8147 lines
.Add( value
.Mid(startPos
, pos
) );
8150 startPos
+= pos
+ 1;
8153 if ( startPos
< (int)value
.length() )
8155 lines
.Add( value
.Mid( startPos
) );
8159 void wxGrid::GetTextBoxSize( const wxDC
& dc
,
8160 const wxArrayString
& lines
,
8161 long *width
, long *height
) const
8165 long lineW
= 0, lineH
= 0;
8168 for ( i
= 0; i
< lines
.GetCount(); i
++ )
8170 dc
.GetTextExtent( lines
[i
], &lineW
, &lineH
);
8171 w
= wxMax( w
, lineW
);
8180 // ------ Batch processing.
8182 void wxGrid::EndBatch()
8184 if ( m_batchCount
> 0 )
8187 if ( !m_batchCount
)
8190 m_rowLabelWin
->Refresh();
8191 m_colLabelWin
->Refresh();
8192 m_cornerLabelWin
->Refresh();
8193 m_gridWin
->Refresh();
8198 // Use this, rather than wxWindow::Refresh(), to force an immediate
8199 // repainting of the grid. Has no effect if you are already inside a
8200 // BeginBatch / EndBatch block.
8202 void wxGrid::ForceRefresh()
8208 bool wxGrid::Enable(bool enable
)
8210 if ( !wxScrolledWindow::Enable(enable
) )
8213 // redraw in the new state
8214 m_gridWin
->Refresh();
8220 // ------ Edit control functions
8223 void wxGrid::EnableEditing( bool edit
)
8225 // TODO: improve this ?
8227 if ( edit
!= m_editable
)
8230 EnableCellEditControl(edit
);
8235 void wxGrid::EnableCellEditControl( bool enable
)
8240 if ( enable
!= m_cellEditCtrlEnabled
)
8244 if (SendEvent( wxEVT_GRID_EDITOR_SHOWN
) <0)
8247 // this should be checked by the caller!
8248 wxASSERT_MSG( CanEnableCellControl(), _T("can't enable editing for this cell!") );
8250 // do it before ShowCellEditControl()
8251 m_cellEditCtrlEnabled
= enable
;
8253 ShowCellEditControl();
8257 //FIXME:add veto support
8258 SendEvent( wxEVT_GRID_EDITOR_HIDDEN
);
8260 HideCellEditControl();
8261 SaveEditControlValue();
8263 // do it after HideCellEditControl()
8264 m_cellEditCtrlEnabled
= enable
;
8269 bool wxGrid::IsCurrentCellReadOnly() const
8272 wxGridCellAttr
* attr
= ((wxGrid
*)this)->GetCellAttr(m_currentCellCoords
);
8273 bool readonly
= attr
->IsReadOnly();
8279 bool wxGrid::CanEnableCellControl() const
8281 return m_editable
&& (m_currentCellCoords
!= wxGridNoCellCoords
) &&
8282 !IsCurrentCellReadOnly();
8285 bool wxGrid::IsCellEditControlEnabled() const
8287 // the cell edit control might be disable for all cells or just for the
8288 // current one if it's read only
8289 return m_cellEditCtrlEnabled
? !IsCurrentCellReadOnly() : false;
8292 bool wxGrid::IsCellEditControlShown() const
8294 bool isShown
= false;
8296 if ( m_cellEditCtrlEnabled
)
8298 int row
= m_currentCellCoords
.GetRow();
8299 int col
= m_currentCellCoords
.GetCol();
8300 wxGridCellAttr
* attr
= GetCellAttr(row
, col
);
8301 wxGridCellEditor
* editor
= attr
->GetEditor((wxGrid
*) this, row
, col
);
8306 if ( editor
->IsCreated() )
8308 isShown
= editor
->GetControl()->IsShown();
8318 void wxGrid::ShowCellEditControl()
8320 if ( IsCellEditControlEnabled() )
8322 if ( !IsVisible( m_currentCellCoords
, false ) )
8324 m_cellEditCtrlEnabled
= false;
8329 wxRect rect
= CellToRect( m_currentCellCoords
);
8330 int row
= m_currentCellCoords
.GetRow();
8331 int col
= m_currentCellCoords
.GetCol();
8333 // if this is part of a multicell, find owner (topleft)
8334 int cell_rows
, cell_cols
;
8335 GetCellSize( row
, col
, &cell_rows
, &cell_cols
);
8336 if ( cell_rows
<= 0 || cell_cols
<= 0 )
8340 m_currentCellCoords
.SetRow( row
);
8341 m_currentCellCoords
.SetCol( col
);
8344 // erase the highlight and the cell contents because the editor
8345 // might not cover the entire cell
8346 wxClientDC
dc( m_gridWin
);
8348 wxGridCellAttr
* attr
= GetCellAttr(row
, col
);
8349 dc
.SetBrush(wxBrush(attr
->GetBackgroundColour(), wxSOLID
));
8350 dc
.SetPen(*wxTRANSPARENT_PEN
);
8351 dc
.DrawRectangle(rect
);
8353 // convert to scrolled coords
8354 CalcScrolledPosition( rect
.x
, rect
.y
, &rect
.x
, &rect
.y
);
8360 // cell is shifted by one pixel
8361 // However, don't allow x or y to become negative
8362 // since the SetSize() method interprets that as
8369 wxGridCellEditor
* editor
= attr
->GetEditor(this, row
, col
);
8370 if ( !editor
->IsCreated() )
8372 editor
->Create(m_gridWin
, wxID_ANY
,
8373 new wxGridCellEditorEvtHandler(this, editor
));
8375 wxGridEditorCreatedEvent
evt(GetId(),
8376 wxEVT_GRID_EDITOR_CREATED
,
8380 editor
->GetControl());
8381 GetEventHandler()->ProcessEvent(evt
);
8384 // resize editor to overflow into righthand cells if allowed
8385 int maxWidth
= rect
.width
;
8386 wxString value
= GetCellValue(row
, col
);
8387 if ( (value
!= wxEmptyString
) && (attr
->GetOverflow()) )
8390 GetTextExtent(value
, &maxWidth
, &y
, NULL
, NULL
, &attr
->GetFont());
8391 if (maxWidth
< rect
.width
)
8392 maxWidth
= rect
.width
;
8395 int client_right
= m_gridWin
->GetClientSize().GetWidth();
8396 if (rect
.x
+ maxWidth
> client_right
)
8397 maxWidth
= client_right
- rect
.x
;
8399 if ((maxWidth
> rect
.width
) && (col
< m_numCols
) && m_table
)
8401 GetCellSize( row
, col
, &cell_rows
, &cell_cols
);
8402 // may have changed earlier
8403 for (int i
= col
+ cell_cols
; i
< m_numCols
; i
++)
8406 GetCellSize( row
, i
, &c_rows
, &c_cols
);
8408 // looks weird going over a multicell
8409 if (m_table
->IsEmptyCell( row
, i
) &&
8410 (rect
.width
< maxWidth
) && (c_rows
== 1))
8412 rect
.width
+= GetColWidth( i
);
8418 if (rect
.GetRight() > client_right
)
8419 rect
.SetRight( client_right
- 1 );
8422 editor
->SetCellAttr( attr
);
8423 editor
->SetSize( rect
);
8425 editor
->GetControl()->Move(
8426 editor
->GetControl()->GetPosition().x
+ nXMove
,
8427 editor
->GetControl()->GetPosition().y
);
8428 editor
->Show( true, attr
);
8430 // recalc dimensions in case we need to
8431 // expand the scrolled window to account for editor
8434 editor
->BeginEdit(row
, col
, this);
8435 editor
->SetCellAttr(NULL
);
8443 void wxGrid::HideCellEditControl()
8445 if ( IsCellEditControlEnabled() )
8447 int row
= m_currentCellCoords
.GetRow();
8448 int col
= m_currentCellCoords
.GetCol();
8450 wxGridCellAttr
*attr
= GetCellAttr(row
, col
);
8451 wxGridCellEditor
*editor
= attr
->GetEditor(this, row
, col
);
8452 editor
->Show( false );
8456 m_gridWin
->SetFocus();
8458 // refresh whole row to the right
8459 wxRect
rect( CellToRect(row
, col
) );
8460 CalcScrolledPosition(rect
.x
, rect
.y
, &rect
.x
, &rect
.y
);
8461 rect
.width
= m_gridWin
->GetClientSize().GetWidth() - rect
.x
;
8464 // ensure that the pixels under the focus ring get refreshed as well
8465 rect
.Inflate(10, 10);
8468 m_gridWin
->Refresh( false, &rect
);
8472 void wxGrid::SaveEditControlValue()
8474 if ( IsCellEditControlEnabled() )
8476 int row
= m_currentCellCoords
.GetRow();
8477 int col
= m_currentCellCoords
.GetCol();
8479 wxString oldval
= GetCellValue(row
, col
);
8481 wxGridCellAttr
* attr
= GetCellAttr(row
, col
);
8482 wxGridCellEditor
* editor
= attr
->GetEditor(this, row
, col
);
8483 bool changed
= editor
->EndEdit(row
, col
, this);
8490 if ( SendEvent( wxEVT_GRID_CELL_CHANGE
,
8491 m_currentCellCoords
.GetRow(),
8492 m_currentCellCoords
.GetCol() ) < 0 )
8494 // Event has been vetoed, set the data back.
8495 SetCellValue(row
, col
, oldval
);
8502 // ------ Grid location functions
8503 // Note that all of these functions work with the logical coordinates of
8504 // grid cells and labels so you will need to convert from device
8505 // coordinates for mouse events etc.
8508 void wxGrid::XYToCell( int x
, int y
, wxGridCellCoords
& coords
) const
8510 int row
= YToRow(y
);
8511 int col
= XToCol(x
);
8513 if ( row
== -1 || col
== -1 )
8515 coords
= wxGridNoCellCoords
;
8519 coords
.Set( row
, col
);
8523 // Internal Helper function for computing row or column from some
8524 // (unscrolled) coordinate value, using either
8525 // m_defaultRowHeight/m_defaultColWidth or binary search on array
8526 // of m_rowBottoms/m_ColRights to speed up the search!
8528 static int CoordToRowOrCol(int coord
, int defaultDist
, int minDist
,
8529 const wxArrayInt
& BorderArray
, int nMax
,
8533 return clipToMinMax
&& (nMax
> 0) ? 0 : -1;
8538 size_t i_max
= coord
/ defaultDist
,
8541 if (BorderArray
.IsEmpty())
8543 if ((int) i_max
< nMax
)
8545 return clipToMinMax
? nMax
- 1 : -1;
8548 if ( i_max
>= BorderArray
.GetCount())
8550 i_max
= BorderArray
.GetCount() - 1;
8554 if ( coord
>= BorderArray
[i_max
])
8558 i_max
= coord
/ minDist
;
8560 i_max
= BorderArray
.GetCount() - 1;
8563 if ( i_max
>= BorderArray
.GetCount())
8564 i_max
= BorderArray
.GetCount() - 1;
8567 if ( coord
>= BorderArray
[i_max
])
8568 return clipToMinMax
? (int)i_max
: -1;
8569 if ( coord
< BorderArray
[0] )
8572 while ( i_max
- i_min
> 0 )
8574 wxCHECK_MSG(BorderArray
[i_min
] <= coord
&& coord
< BorderArray
[i_max
],
8575 0, _T("wxGrid: internal error in CoordToRowOrCol"));
8576 if (coord
>= BorderArray
[ i_max
- 1])
8580 int median
= i_min
+ (i_max
- i_min
+ 1) / 2;
8581 if (coord
< BorderArray
[median
])
8590 int wxGrid::YToRow( int y
) const
8592 return CoordToRowOrCol(y
, m_defaultRowHeight
,
8593 m_minAcceptableRowHeight
, m_rowBottoms
, m_numRows
, false);
8596 int wxGrid::XToCol( int x
, bool clipToMinMax
) const
8599 return clipToMinMax
&& (m_numCols
> 0) ? GetColAt( 0 ) : -1;
8601 wxASSERT_MSG(m_defaultColWidth
> 0, wxT("Default column width can not be zero"));
8603 int maxPos
= x
/ m_defaultColWidth
;
8606 if (m_colRights
.IsEmpty())
8608 if(maxPos
< m_numCols
)
8609 return GetColAt( maxPos
);
8610 return clipToMinMax
? GetColAt( m_numCols
- 1 ) : -1;
8613 if ( maxPos
>= m_numCols
)
8614 maxPos
= m_numCols
- 1;
8617 if ( x
>= m_colRights
[GetColAt( maxPos
)])
8620 if (m_minAcceptableColWidth
)
8621 maxPos
= x
/ m_minAcceptableColWidth
;
8623 maxPos
= m_numCols
- 1;
8625 if ( maxPos
>= m_numCols
)
8626 maxPos
= m_numCols
- 1;
8629 //X is beyond the last column
8630 if ( x
>= m_colRights
[GetColAt( maxPos
)])
8631 return clipToMinMax
? GetColAt( maxPos
) : -1;
8633 //X is before the first column
8634 if ( x
< m_colRights
[GetColAt( 0 )] )
8635 return GetColAt( 0 );
8637 //Perform a binary search
8638 while ( maxPos
- minPos
> 0 )
8640 wxCHECK_MSG(m_colRights
[GetColAt( minPos
)] <= x
&& x
< m_colRights
[GetColAt( maxPos
)],
8641 0, _T("wxGrid: internal error in XToCol"));
8643 if (x
>= m_colRights
[GetColAt( maxPos
- 1 )])
8644 return GetColAt( maxPos
);
8647 int median
= minPos
+ (maxPos
- minPos
+ 1) / 2;
8648 if (x
< m_colRights
[GetColAt( median
)])
8653 return GetColAt( maxPos
);
8656 // return the row number that that the y coord is near
8657 // the edge of, or -1 if not near an edge.
8658 // coords can only possibly be near an edge if
8659 // (a) the row/column is large enough to still allow for an "inner" area
8660 // that is _not_ nead the edge (i.e., if the height/width is smaller
8661 // than WXGRID_LABEL_EDGE_ZONE, coords are _never_ considered to be
8664 // (b) resizing rows/columns (the thing for which edge detection is
8665 // relevant at all) is enabled.
8667 int wxGrid::YToEdgeOfRow( int y
) const
8670 i
= internalYToRow(y
);
8672 if ( GetRowHeight(i
) > WXGRID_LABEL_EDGE_ZONE
&& CanDragRowSize() )
8674 // We know that we are in row i, test whether we are
8675 // close enough to lower or upper border, respectively.
8676 if ( abs(GetRowBottom(i
) - y
) < WXGRID_LABEL_EDGE_ZONE
)
8678 else if ( i
> 0 && y
- GetRowTop(i
) < WXGRID_LABEL_EDGE_ZONE
)
8685 // return the col number that that the x coord is near the edge of, or
8686 // -1 if not near an edge
8687 // See comment at YToEdgeOfRow for conditions on edge detection.
8689 int wxGrid::XToEdgeOfCol( int x
) const
8692 i
= internalXToCol(x
);
8694 if ( GetColWidth(i
) > WXGRID_LABEL_EDGE_ZONE
&& CanDragColSize() )
8696 // We know that we are in column i; test whether we are
8697 // close enough to right or left border, respectively.
8698 if ( abs(GetColRight(i
) - x
) < WXGRID_LABEL_EDGE_ZONE
)
8700 else if ( i
> 0 && x
- GetColLeft(i
) < WXGRID_LABEL_EDGE_ZONE
)
8707 wxRect
wxGrid::CellToRect( int row
, int col
) const
8709 wxRect
rect( -1, -1, -1, -1 );
8711 if ( row
>= 0 && row
< m_numRows
&&
8712 col
>= 0 && col
< m_numCols
)
8714 int i
, cell_rows
, cell_cols
;
8715 rect
.width
= rect
.height
= 0;
8716 GetCellSize( row
, col
, &cell_rows
, &cell_cols
);
8717 // if negative then find multicell owner
8722 GetCellSize( row
, col
, &cell_rows
, &cell_cols
);
8724 rect
.x
= GetColLeft(col
);
8725 rect
.y
= GetRowTop(row
);
8726 for (i
=col
; i
< col
+ cell_cols
; i
++)
8727 rect
.width
+= GetColWidth(i
);
8728 for (i
=row
; i
< row
+ cell_rows
; i
++)
8729 rect
.height
+= GetRowHeight(i
);
8732 // if grid lines are enabled, then the area of the cell is a bit smaller
8733 if (m_gridLinesEnabled
)
8742 bool wxGrid::IsVisible( int row
, int col
, bool wholeCellVisible
) const
8744 // get the cell rectangle in logical coords
8746 wxRect
r( CellToRect( row
, col
) );
8748 // convert to device coords
8750 int left
, top
, right
, bottom
;
8751 CalcScrolledPosition( r
.GetLeft(), r
.GetTop(), &left
, &top
);
8752 CalcScrolledPosition( r
.GetRight(), r
.GetBottom(), &right
, &bottom
);
8754 // check against the client area of the grid window
8756 m_gridWin
->GetClientSize( &cw
, &ch
);
8758 if ( wholeCellVisible
)
8760 // is the cell wholly visible ?
8761 return ( left
>= 0 && right
<= cw
&&
8762 top
>= 0 && bottom
<= ch
);
8766 // is the cell partly visible ?
8768 return ( ((left
>= 0 && left
< cw
) || (right
> 0 && right
<= cw
)) &&
8769 ((top
>= 0 && top
< ch
) || (bottom
> 0 && bottom
<= ch
)) );
8773 // make the specified cell location visible by doing a minimal amount
8776 void wxGrid::MakeCellVisible( int row
, int col
)
8779 int xpos
= -1, ypos
= -1;
8781 if ( row
>= 0 && row
< m_numRows
&&
8782 col
>= 0 && col
< m_numCols
)
8784 // get the cell rectangle in logical coords
8785 wxRect
r( CellToRect( row
, col
) );
8787 // convert to device coords
8788 int left
, top
, right
, bottom
;
8789 CalcScrolledPosition( r
.GetLeft(), r
.GetTop(), &left
, &top
);
8790 CalcScrolledPosition( r
.GetRight(), r
.GetBottom(), &right
, &bottom
);
8793 m_gridWin
->GetClientSize( &cw
, &ch
);
8799 else if ( bottom
> ch
)
8801 int h
= r
.GetHeight();
8803 for ( i
= row
- 1; i
>= 0; i
-- )
8805 int rowHeight
= GetRowHeight(i
);
8806 if ( h
+ rowHeight
> ch
)
8813 // we divide it later by GRID_SCROLL_LINE, make sure that we don't
8814 // have rounding errors (this is important, because if we do,
8815 // we might not scroll at all and some cells won't be redrawn)
8817 // Sometimes GRID_SCROLL_LINE / 2 is not enough,
8818 // so just add a full scroll unit...
8819 ypos
+= m_scrollLineY
;
8822 // special handling for wide cells - show always left part of the cell!
8823 // Otherwise, e.g. when stepping from row to row, it would jump between
8824 // left and right part of the cell on every step!
8826 if ( left
< 0 || (right
- left
) >= cw
)
8830 else if ( right
> cw
)
8832 // position the view so that the cell is on the right
8834 CalcUnscrolledPosition(0, 0, &x0
, &y0
);
8835 xpos
= x0
+ (right
- cw
);
8837 // see comment for ypos above
8838 xpos
+= m_scrollLineX
;
8841 if ( xpos
!= -1 || ypos
!= -1 )
8844 xpos
/= m_scrollLineX
;
8846 ypos
/= m_scrollLineY
;
8847 Scroll( xpos
, ypos
);
8854 // ------ Grid cursor movement functions
8857 bool wxGrid::MoveCursorUp( bool expandSelection
)
8859 if ( m_currentCellCoords
!= wxGridNoCellCoords
&&
8860 m_currentCellCoords
.GetRow() >= 0 )
8862 if ( expandSelection
)
8864 if ( m_selectingKeyboard
== wxGridNoCellCoords
)
8865 m_selectingKeyboard
= m_currentCellCoords
;
8866 if ( m_selectingKeyboard
.GetRow() > 0 )
8868 m_selectingKeyboard
.SetRow( m_selectingKeyboard
.GetRow() - 1 );
8869 MakeCellVisible( m_selectingKeyboard
.GetRow(),
8870 m_selectingKeyboard
.GetCol() );
8871 HighlightBlock( m_currentCellCoords
, m_selectingKeyboard
);
8874 else if ( m_currentCellCoords
.GetRow() > 0 )
8876 int row
= m_currentCellCoords
.GetRow() - 1;
8877 int col
= m_currentCellCoords
.GetCol();
8879 MakeCellVisible( row
, col
);
8880 SetCurrentCell( row
, col
);
8891 bool wxGrid::MoveCursorDown( bool expandSelection
)
8893 if ( m_currentCellCoords
!= wxGridNoCellCoords
&&
8894 m_currentCellCoords
.GetRow() < m_numRows
)
8896 if ( expandSelection
)
8898 if ( m_selectingKeyboard
== wxGridNoCellCoords
)
8899 m_selectingKeyboard
= m_currentCellCoords
;
8900 if ( m_selectingKeyboard
.GetRow() < m_numRows
- 1 )
8902 m_selectingKeyboard
.SetRow( m_selectingKeyboard
.GetRow() + 1 );
8903 MakeCellVisible( m_selectingKeyboard
.GetRow(),
8904 m_selectingKeyboard
.GetCol() );
8905 HighlightBlock( m_currentCellCoords
, m_selectingKeyboard
);
8908 else if ( m_currentCellCoords
.GetRow() < m_numRows
- 1 )
8910 int row
= m_currentCellCoords
.GetRow() + 1;
8911 int col
= m_currentCellCoords
.GetCol();
8913 MakeCellVisible( row
, col
);
8914 SetCurrentCell( row
, col
);
8925 bool wxGrid::MoveCursorLeft( bool expandSelection
)
8927 if ( m_currentCellCoords
!= wxGridNoCellCoords
&&
8928 m_currentCellCoords
.GetCol() >= 0 )
8930 if ( expandSelection
)
8932 if ( m_selectingKeyboard
== wxGridNoCellCoords
)
8933 m_selectingKeyboard
= m_currentCellCoords
;
8934 if ( m_selectingKeyboard
.GetCol() > 0 )
8936 m_selectingKeyboard
.SetCol( m_selectingKeyboard
.GetCol() - 1 );
8937 MakeCellVisible( m_selectingKeyboard
.GetRow(),
8938 m_selectingKeyboard
.GetCol() );
8939 HighlightBlock( m_currentCellCoords
, m_selectingKeyboard
);
8942 else if ( GetColPos( m_currentCellCoords
.GetCol() ) > 0 )
8944 int row
= m_currentCellCoords
.GetRow();
8945 int col
= GetColAt( GetColPos( m_currentCellCoords
.GetCol() ) - 1 );
8948 MakeCellVisible( row
, col
);
8949 SetCurrentCell( row
, col
);
8960 bool wxGrid::MoveCursorRight( bool expandSelection
)
8962 if ( m_currentCellCoords
!= wxGridNoCellCoords
&&
8963 m_currentCellCoords
.GetCol() < m_numCols
)
8965 if ( expandSelection
)
8967 if ( m_selectingKeyboard
== wxGridNoCellCoords
)
8968 m_selectingKeyboard
= m_currentCellCoords
;
8969 if ( m_selectingKeyboard
.GetCol() < m_numCols
- 1 )
8971 m_selectingKeyboard
.SetCol( m_selectingKeyboard
.GetCol() + 1 );
8972 MakeCellVisible( m_selectingKeyboard
.GetRow(),
8973 m_selectingKeyboard
.GetCol() );
8974 HighlightBlock( m_currentCellCoords
, m_selectingKeyboard
);
8977 else if ( GetColPos( m_currentCellCoords
.GetCol() ) < m_numCols
- 1 )
8979 int row
= m_currentCellCoords
.GetRow();
8980 int col
= GetColAt( GetColPos( m_currentCellCoords
.GetCol() ) + 1 );
8983 MakeCellVisible( row
, col
);
8984 SetCurrentCell( row
, col
);
8995 bool wxGrid::MovePageUp()
8997 if ( m_currentCellCoords
== wxGridNoCellCoords
)
9000 int row
= m_currentCellCoords
.GetRow();
9004 m_gridWin
->GetClientSize( &cw
, &ch
);
9006 int y
= GetRowTop(row
);
9007 int newRow
= internalYToRow( y
- ch
+ 1 );
9009 if ( newRow
== row
)
9011 // row > 0, so newRow can never be less than 0 here.
9015 MakeCellVisible( newRow
, m_currentCellCoords
.GetCol() );
9016 SetCurrentCell( newRow
, m_currentCellCoords
.GetCol() );
9024 bool wxGrid::MovePageDown()
9026 if ( m_currentCellCoords
== wxGridNoCellCoords
)
9029 int row
= m_currentCellCoords
.GetRow();
9030 if ( (row
+ 1) < m_numRows
)
9033 m_gridWin
->GetClientSize( &cw
, &ch
);
9035 int y
= GetRowTop(row
);
9036 int newRow
= internalYToRow( y
+ ch
);
9037 if ( newRow
== row
)
9039 // row < m_numRows, so newRow can't overflow here.
9043 MakeCellVisible( newRow
, m_currentCellCoords
.GetCol() );
9044 SetCurrentCell( newRow
, m_currentCellCoords
.GetCol() );
9052 bool wxGrid::MoveCursorUpBlock( bool expandSelection
)
9055 m_currentCellCoords
!= wxGridNoCellCoords
&&
9056 m_currentCellCoords
.GetRow() > 0 )
9058 int row
= m_currentCellCoords
.GetRow();
9059 int col
= m_currentCellCoords
.GetCol();
9061 if ( m_table
->IsEmptyCell(row
, col
) )
9063 // starting in an empty cell: find the next block of
9069 if ( !(m_table
->IsEmptyCell(row
, col
)) )
9073 else if ( m_table
->IsEmptyCell(row
- 1, col
) )
9075 // starting at the top of a block: find the next block
9081 if ( !(m_table
->IsEmptyCell(row
, col
)) )
9087 // starting within a block: find the top of the block
9092 if ( m_table
->IsEmptyCell(row
, col
) )
9100 MakeCellVisible( row
, col
);
9101 if ( expandSelection
)
9103 m_selectingKeyboard
= wxGridCellCoords( row
, col
);
9104 HighlightBlock( m_currentCellCoords
, m_selectingKeyboard
);
9109 SetCurrentCell( row
, col
);
9118 bool wxGrid::MoveCursorDownBlock( bool expandSelection
)
9121 m_currentCellCoords
!= wxGridNoCellCoords
&&
9122 m_currentCellCoords
.GetRow() < m_numRows
- 1 )
9124 int row
= m_currentCellCoords
.GetRow();
9125 int col
= m_currentCellCoords
.GetCol();
9127 if ( m_table
->IsEmptyCell(row
, col
) )
9129 // starting in an empty cell: find the next block of
9132 while ( row
< m_numRows
- 1 )
9135 if ( !(m_table
->IsEmptyCell(row
, col
)) )
9139 else if ( m_table
->IsEmptyCell(row
+ 1, col
) )
9141 // starting at the bottom of a block: find the next block
9144 while ( row
< m_numRows
- 1 )
9147 if ( !(m_table
->IsEmptyCell(row
, col
)) )
9153 // starting within a block: find the bottom of the block
9155 while ( row
< m_numRows
- 1 )
9158 if ( m_table
->IsEmptyCell(row
, col
) )
9166 MakeCellVisible( row
, col
);
9167 if ( expandSelection
)
9169 m_selectingKeyboard
= wxGridCellCoords( row
, col
);
9170 HighlightBlock( m_currentCellCoords
, m_selectingKeyboard
);
9175 SetCurrentCell( row
, col
);
9184 bool wxGrid::MoveCursorLeftBlock( bool expandSelection
)
9187 m_currentCellCoords
!= wxGridNoCellCoords
&&
9188 m_currentCellCoords
.GetCol() > 0 )
9190 int row
= m_currentCellCoords
.GetRow();
9191 int col
= m_currentCellCoords
.GetCol();
9193 if ( m_table
->IsEmptyCell(row
, col
) )
9195 // starting in an empty cell: find the next block of
9201 if ( !(m_table
->IsEmptyCell(row
, col
)) )
9205 else if ( m_table
->IsEmptyCell(row
, col
- 1) )
9207 // starting at the left of a block: find the next block
9213 if ( !(m_table
->IsEmptyCell(row
, col
)) )
9219 // starting within a block: find the left of the block
9224 if ( m_table
->IsEmptyCell(row
, col
) )
9232 MakeCellVisible( row
, col
);
9233 if ( expandSelection
)
9235 m_selectingKeyboard
= wxGridCellCoords( row
, col
);
9236 HighlightBlock( m_currentCellCoords
, m_selectingKeyboard
);
9241 SetCurrentCell( row
, col
);
9250 bool wxGrid::MoveCursorRightBlock( bool expandSelection
)
9253 m_currentCellCoords
!= wxGridNoCellCoords
&&
9254 m_currentCellCoords
.GetCol() < m_numCols
- 1 )
9256 int row
= m_currentCellCoords
.GetRow();
9257 int col
= m_currentCellCoords
.GetCol();
9259 if ( m_table
->IsEmptyCell(row
, col
) )
9261 // starting in an empty cell: find the next block of
9264 while ( col
< m_numCols
- 1 )
9267 if ( !(m_table
->IsEmptyCell(row
, col
)) )
9271 else if ( m_table
->IsEmptyCell(row
, col
+ 1) )
9273 // starting at the right of a block: find the next block
9276 while ( col
< m_numCols
- 1 )
9279 if ( !(m_table
->IsEmptyCell(row
, col
)) )
9285 // starting within a block: find the right of the block
9287 while ( col
< m_numCols
- 1 )
9290 if ( m_table
->IsEmptyCell(row
, col
) )
9298 MakeCellVisible( row
, col
);
9299 if ( expandSelection
)
9301 m_selectingKeyboard
= wxGridCellCoords( row
, col
);
9302 HighlightBlock( m_currentCellCoords
, m_selectingKeyboard
);
9307 SetCurrentCell( row
, col
);
9317 // ------ Label values and formatting
9320 void wxGrid::GetRowLabelAlignment( int *horiz
, int *vert
) const
9323 *horiz
= m_rowLabelHorizAlign
;
9325 *vert
= m_rowLabelVertAlign
;
9328 void wxGrid::GetColLabelAlignment( int *horiz
, int *vert
) const
9331 *horiz
= m_colLabelHorizAlign
;
9333 *vert
= m_colLabelVertAlign
;
9336 int wxGrid::GetColLabelTextOrientation() const
9338 return m_colLabelTextOrientation
;
9341 wxString
wxGrid::GetRowLabelValue( int row
) const
9345 return m_table
->GetRowLabelValue( row
);
9355 wxString
wxGrid::GetColLabelValue( int col
) const
9359 return m_table
->GetColLabelValue( col
);
9369 void wxGrid::SetRowLabelSize( int width
)
9371 width
= wxMax( width
, 0 );
9372 if ( width
!= m_rowLabelWidth
)
9376 m_rowLabelWin
->Show( false );
9377 m_cornerLabelWin
->Show( false );
9379 else if ( m_rowLabelWidth
== 0 )
9381 m_rowLabelWin
->Show( true );
9382 if ( m_colLabelHeight
> 0 )
9383 m_cornerLabelWin
->Show( true );
9386 m_rowLabelWidth
= width
;
9388 wxScrolledWindow::Refresh( true );
9392 void wxGrid::SetColLabelSize( int height
)
9394 height
= wxMax( height
, 0 );
9395 if ( height
!= m_colLabelHeight
)
9399 m_colLabelWin
->Show( false );
9400 m_cornerLabelWin
->Show( false );
9402 else if ( m_colLabelHeight
== 0 )
9404 m_colLabelWin
->Show( true );
9405 if ( m_rowLabelWidth
> 0 )
9406 m_cornerLabelWin
->Show( true );
9409 m_colLabelHeight
= height
;
9411 wxScrolledWindow::Refresh( true );
9415 void wxGrid::SetLabelBackgroundColour( const wxColour
& colour
)
9417 if ( m_labelBackgroundColour
!= colour
)
9419 m_labelBackgroundColour
= colour
;
9420 m_rowLabelWin
->SetBackgroundColour( colour
);
9421 m_colLabelWin
->SetBackgroundColour( colour
);
9422 m_cornerLabelWin
->SetBackgroundColour( colour
);
9424 if ( !GetBatchCount() )
9426 m_rowLabelWin
->Refresh();
9427 m_colLabelWin
->Refresh();
9428 m_cornerLabelWin
->Refresh();
9433 void wxGrid::SetLabelTextColour( const wxColour
& colour
)
9435 if ( m_labelTextColour
!= colour
)
9437 m_labelTextColour
= colour
;
9438 if ( !GetBatchCount() )
9440 m_rowLabelWin
->Refresh();
9441 m_colLabelWin
->Refresh();
9446 void wxGrid::SetLabelFont( const wxFont
& font
)
9449 if ( !GetBatchCount() )
9451 m_rowLabelWin
->Refresh();
9452 m_colLabelWin
->Refresh();
9456 void wxGrid::SetRowLabelAlignment( int horiz
, int vert
)
9458 // allow old (incorrect) defs to be used
9461 case wxLEFT
: horiz
= wxALIGN_LEFT
; break;
9462 case wxRIGHT
: horiz
= wxALIGN_RIGHT
; break;
9463 case wxCENTRE
: horiz
= wxALIGN_CENTRE
; break;
9468 case wxTOP
: vert
= wxALIGN_TOP
; break;
9469 case wxBOTTOM
: vert
= wxALIGN_BOTTOM
; break;
9470 case wxCENTRE
: vert
= wxALIGN_CENTRE
; break;
9473 if ( horiz
== wxALIGN_LEFT
|| horiz
== wxALIGN_CENTRE
|| horiz
== wxALIGN_RIGHT
)
9475 m_rowLabelHorizAlign
= horiz
;
9478 if ( vert
== wxALIGN_TOP
|| vert
== wxALIGN_CENTRE
|| vert
== wxALIGN_BOTTOM
)
9480 m_rowLabelVertAlign
= vert
;
9483 if ( !GetBatchCount() )
9485 m_rowLabelWin
->Refresh();
9489 void wxGrid::SetColLabelAlignment( int horiz
, int vert
)
9491 // allow old (incorrect) defs to be used
9494 case wxLEFT
: horiz
= wxALIGN_LEFT
; break;
9495 case wxRIGHT
: horiz
= wxALIGN_RIGHT
; break;
9496 case wxCENTRE
: horiz
= wxALIGN_CENTRE
; break;
9501 case wxTOP
: vert
= wxALIGN_TOP
; break;
9502 case wxBOTTOM
: vert
= wxALIGN_BOTTOM
; break;
9503 case wxCENTRE
: vert
= wxALIGN_CENTRE
; break;
9506 if ( horiz
== wxALIGN_LEFT
|| horiz
== wxALIGN_CENTRE
|| horiz
== wxALIGN_RIGHT
)
9508 m_colLabelHorizAlign
= horiz
;
9511 if ( vert
== wxALIGN_TOP
|| vert
== wxALIGN_CENTRE
|| vert
== wxALIGN_BOTTOM
)
9513 m_colLabelVertAlign
= vert
;
9516 if ( !GetBatchCount() )
9518 m_colLabelWin
->Refresh();
9522 // Note: under MSW, the default column label font must be changed because it
9523 // does not support vertical printing
9525 // Example: wxFont font(9, wxSWISS, wxNORMAL, wxBOLD);
9526 // pGrid->SetLabelFont(font);
9527 // pGrid->SetColLabelTextOrientation(wxVERTICAL);
9529 void wxGrid::SetColLabelTextOrientation( int textOrientation
)
9531 if ( textOrientation
== wxHORIZONTAL
|| textOrientation
== wxVERTICAL
)
9532 m_colLabelTextOrientation
= textOrientation
;
9534 if ( !GetBatchCount() )
9535 m_colLabelWin
->Refresh();
9538 void wxGrid::SetRowLabelValue( int row
, const wxString
& s
)
9542 m_table
->SetRowLabelValue( row
, s
);
9543 if ( !GetBatchCount() )
9545 wxRect rect
= CellToRect( row
, 0 );
9546 if ( rect
.height
> 0 )
9548 CalcScrolledPosition(0, rect
.y
, &rect
.x
, &rect
.y
);
9550 rect
.width
= m_rowLabelWidth
;
9551 m_rowLabelWin
->Refresh( true, &rect
);
9557 void wxGrid::SetColLabelValue( int col
, const wxString
& s
)
9561 m_table
->SetColLabelValue( col
, s
);
9562 if ( !GetBatchCount() )
9564 wxRect rect
= CellToRect( 0, col
);
9565 if ( rect
.width
> 0 )
9567 CalcScrolledPosition(rect
.x
, 0, &rect
.x
, &rect
.y
);
9569 rect
.height
= m_colLabelHeight
;
9570 m_colLabelWin
->Refresh( true, &rect
);
9576 void wxGrid::SetGridLineColour( const wxColour
& colour
)
9578 if ( m_gridLineColour
!= colour
)
9580 m_gridLineColour
= colour
;
9582 wxClientDC
dc( m_gridWin
);
9584 DrawAllGridLines( dc
, wxRegion() );
9588 void wxGrid::SetCellHighlightColour( const wxColour
& colour
)
9590 if ( m_cellHighlightColour
!= colour
)
9592 m_cellHighlightColour
= colour
;
9594 wxClientDC
dc( m_gridWin
);
9596 wxGridCellAttr
* attr
= GetCellAttr(m_currentCellCoords
);
9597 DrawCellHighlight(dc
, attr
);
9602 void wxGrid::SetCellHighlightPenWidth(int width
)
9604 if (m_cellHighlightPenWidth
!= width
)
9606 m_cellHighlightPenWidth
= width
;
9608 // Just redrawing the cell highlight is not enough since that won't
9609 // make any visible change if the the thickness is getting smaller.
9610 int row
= m_currentCellCoords
.GetRow();
9611 int col
= m_currentCellCoords
.GetCol();
9612 if ( GetColWidth(col
) <= 0 || GetRowHeight(row
) <= 0 )
9615 wxRect rect
= CellToRect(row
, col
);
9616 m_gridWin
->Refresh(true, &rect
);
9620 void wxGrid::SetCellHighlightROPenWidth(int width
)
9622 if (m_cellHighlightROPenWidth
!= width
)
9624 m_cellHighlightROPenWidth
= width
;
9626 // Just redrawing the cell highlight is not enough since that won't
9627 // make any visible change if the the thickness is getting smaller.
9628 int row
= m_currentCellCoords
.GetRow();
9629 int col
= m_currentCellCoords
.GetCol();
9630 if ( GetColWidth(col
) <= 0 || GetRowHeight(row
) <= 0 )
9633 wxRect rect
= CellToRect(row
, col
);
9634 m_gridWin
->Refresh(true, &rect
);
9638 void wxGrid::EnableGridLines( bool enable
)
9640 if ( enable
!= m_gridLinesEnabled
)
9642 m_gridLinesEnabled
= enable
;
9644 if ( !GetBatchCount() )
9648 wxClientDC
dc( m_gridWin
);
9650 DrawAllGridLines( dc
, wxRegion() );
9654 m_gridWin
->Refresh();
9660 int wxGrid::GetDefaultRowSize() const
9662 return m_defaultRowHeight
;
9665 int wxGrid::GetRowSize( int row
) const
9667 wxCHECK_MSG( row
>= 0 && row
< m_numRows
, 0, _T("invalid row index") );
9669 return GetRowHeight(row
);
9672 int wxGrid::GetDefaultColSize() const
9674 return m_defaultColWidth
;
9677 int wxGrid::GetColSize( int col
) const
9679 wxCHECK_MSG( col
>= 0 && col
< m_numCols
, 0, _T("invalid column index") );
9681 return GetColWidth(col
);
9684 // ============================================================================
9685 // access to the grid attributes: each of them has a default value in the grid
9686 // itself and may be overidden on a per-cell basis
9687 // ============================================================================
9689 // ----------------------------------------------------------------------------
9690 // setting default attributes
9691 // ----------------------------------------------------------------------------
9693 void wxGrid::SetDefaultCellBackgroundColour( const wxColour
& col
)
9695 m_defaultCellAttr
->SetBackgroundColour(col
);
9697 m_gridWin
->SetBackgroundColour(col
);
9701 void wxGrid::SetDefaultCellTextColour( const wxColour
& col
)
9703 m_defaultCellAttr
->SetTextColour(col
);
9706 void wxGrid::SetDefaultCellAlignment( int horiz
, int vert
)
9708 m_defaultCellAttr
->SetAlignment(horiz
, vert
);
9711 void wxGrid::SetDefaultCellOverflow( bool allow
)
9713 m_defaultCellAttr
->SetOverflow(allow
);
9716 void wxGrid::SetDefaultCellFont( const wxFont
& font
)
9718 m_defaultCellAttr
->SetFont(font
);
9721 // For editors and renderers the type registry takes precedence over the
9722 // default attr, so we need to register the new editor/renderer for the string
9723 // data type in order to make setting a default editor/renderer appear to
9726 void wxGrid::SetDefaultRenderer(wxGridCellRenderer
*renderer
)
9728 RegisterDataType(wxGRID_VALUE_STRING
,
9730 GetDefaultEditorForType(wxGRID_VALUE_STRING
));
9733 void wxGrid::SetDefaultEditor(wxGridCellEditor
*editor
)
9735 RegisterDataType(wxGRID_VALUE_STRING
,
9736 GetDefaultRendererForType(wxGRID_VALUE_STRING
),
9740 // ----------------------------------------------------------------------------
9741 // access to the default attributes
9742 // ----------------------------------------------------------------------------
9744 wxColour
wxGrid::GetDefaultCellBackgroundColour() const
9746 return m_defaultCellAttr
->GetBackgroundColour();
9749 wxColour
wxGrid::GetDefaultCellTextColour() const
9751 return m_defaultCellAttr
->GetTextColour();
9754 wxFont
wxGrid::GetDefaultCellFont() const
9756 return m_defaultCellAttr
->GetFont();
9759 void wxGrid::GetDefaultCellAlignment( int *horiz
, int *vert
) const
9761 m_defaultCellAttr
->GetAlignment(horiz
, vert
);
9764 bool wxGrid::GetDefaultCellOverflow() const
9766 return m_defaultCellAttr
->GetOverflow();
9769 wxGridCellRenderer
*wxGrid::GetDefaultRenderer() const
9771 return m_defaultCellAttr
->GetRenderer(NULL
, 0, 0);
9774 wxGridCellEditor
*wxGrid::GetDefaultEditor() const
9776 return m_defaultCellAttr
->GetEditor(NULL
, 0, 0);
9779 // ----------------------------------------------------------------------------
9780 // access to cell attributes
9781 // ----------------------------------------------------------------------------
9783 wxColour
wxGrid::GetCellBackgroundColour(int row
, int col
) const
9785 wxGridCellAttr
*attr
= GetCellAttr(row
, col
);
9786 wxColour colour
= attr
->GetBackgroundColour();
9792 wxColour
wxGrid::GetCellTextColour( int row
, int col
) const
9794 wxGridCellAttr
*attr
= GetCellAttr(row
, col
);
9795 wxColour colour
= attr
->GetTextColour();
9801 wxFont
wxGrid::GetCellFont( int row
, int col
) const
9803 wxGridCellAttr
*attr
= GetCellAttr(row
, col
);
9804 wxFont font
= attr
->GetFont();
9810 void wxGrid::GetCellAlignment( int row
, int col
, int *horiz
, int *vert
) const
9812 wxGridCellAttr
*attr
= GetCellAttr(row
, col
);
9813 attr
->GetAlignment(horiz
, vert
);
9817 bool wxGrid::GetCellOverflow( int row
, int col
) const
9819 wxGridCellAttr
*attr
= GetCellAttr(row
, col
);
9820 bool allow
= attr
->GetOverflow();
9826 void wxGrid::GetCellSize( int row
, int col
, int *num_rows
, int *num_cols
) const
9828 wxGridCellAttr
*attr
= GetCellAttr(row
, col
);
9829 attr
->GetSize( num_rows
, num_cols
);
9833 wxGridCellRenderer
* wxGrid::GetCellRenderer(int row
, int col
) const
9835 wxGridCellAttr
* attr
= GetCellAttr(row
, col
);
9836 wxGridCellRenderer
* renderer
= attr
->GetRenderer(this, row
, col
);
9842 wxGridCellEditor
* wxGrid::GetCellEditor(int row
, int col
) const
9844 wxGridCellAttr
* attr
= GetCellAttr(row
, col
);
9845 wxGridCellEditor
* editor
= attr
->GetEditor(this, row
, col
);
9851 bool wxGrid::IsReadOnly(int row
, int col
) const
9853 wxGridCellAttr
* attr
= GetCellAttr(row
, col
);
9854 bool isReadOnly
= attr
->IsReadOnly();
9860 // ----------------------------------------------------------------------------
9861 // attribute support: cache, automatic provider creation, ...
9862 // ----------------------------------------------------------------------------
9864 bool wxGrid::CanHaveAttributes() const
9871 return m_table
->CanHaveAttributes();
9874 void wxGrid::ClearAttrCache()
9876 if ( m_attrCache
.row
!= -1 )
9878 wxSafeDecRef(m_attrCache
.attr
);
9879 m_attrCache
.attr
= NULL
;
9880 m_attrCache
.row
= -1;
9884 void wxGrid::CacheAttr(int row
, int col
, wxGridCellAttr
*attr
) const
9888 wxGrid
*self
= (wxGrid
*)this; // const_cast
9890 self
->ClearAttrCache();
9891 self
->m_attrCache
.row
= row
;
9892 self
->m_attrCache
.col
= col
;
9893 self
->m_attrCache
.attr
= attr
;
9898 bool wxGrid::LookupAttr(int row
, int col
, wxGridCellAttr
**attr
) const
9900 if ( row
== m_attrCache
.row
&& col
== m_attrCache
.col
)
9902 *attr
= m_attrCache
.attr
;
9903 wxSafeIncRef(m_attrCache
.attr
);
9905 #ifdef DEBUG_ATTR_CACHE
9906 gs_nAttrCacheHits
++;
9913 #ifdef DEBUG_ATTR_CACHE
9914 gs_nAttrCacheMisses
++;
9921 wxGridCellAttr
*wxGrid::GetCellAttr(int row
, int col
) const
9923 wxGridCellAttr
*attr
= NULL
;
9924 // Additional test to avoid looking at the cache e.g. for
9925 // wxNoCellCoords, as this will confuse memory management.
9928 if ( !LookupAttr(row
, col
, &attr
) )
9930 attr
= m_table
? m_table
->GetAttr(row
, col
, wxGridCellAttr::Any
)
9931 : (wxGridCellAttr
*)NULL
;
9932 CacheAttr(row
, col
, attr
);
9938 attr
->SetDefAttr(m_defaultCellAttr
);
9942 attr
= m_defaultCellAttr
;
9949 wxGridCellAttr
*wxGrid::GetOrCreateCellAttr(int row
, int col
) const
9951 wxGridCellAttr
*attr
= (wxGridCellAttr
*)NULL
;
9952 bool canHave
= ((wxGrid
*)this)->CanHaveAttributes();
9954 wxCHECK_MSG( canHave
, attr
, _T("Cell attributes not allowed"));
9955 wxCHECK_MSG( m_table
, attr
, _T("must have a table") );
9957 attr
= m_table
->GetAttr(row
, col
, wxGridCellAttr::Cell
);
9960 attr
= new wxGridCellAttr(m_defaultCellAttr
);
9962 // artificially inc the ref count to match DecRef() in caller
9964 m_table
->SetAttr(attr
, row
, col
);
9970 // ----------------------------------------------------------------------------
9971 // setting column attributes (wrappers around SetColAttr)
9972 // ----------------------------------------------------------------------------
9974 void wxGrid::SetColFormatBool(int col
)
9976 SetColFormatCustom(col
, wxGRID_VALUE_BOOL
);
9979 void wxGrid::SetColFormatNumber(int col
)
9981 SetColFormatCustom(col
, wxGRID_VALUE_NUMBER
);
9984 void wxGrid::SetColFormatFloat(int col
, int width
, int precision
)
9986 wxString typeName
= wxGRID_VALUE_FLOAT
;
9987 if ( (width
!= -1) || (precision
!= -1) )
9989 typeName
<< _T(':') << width
<< _T(',') << precision
;
9992 SetColFormatCustom(col
, typeName
);
9995 void wxGrid::SetColFormatCustom(int col
, const wxString
& typeName
)
9997 wxGridCellAttr
*attr
= m_table
->GetAttr(-1, col
, wxGridCellAttr::Col
);
9999 attr
= new wxGridCellAttr
;
10000 wxGridCellRenderer
*renderer
= GetDefaultRendererForType(typeName
);
10001 attr
->SetRenderer(renderer
);
10003 SetColAttr(col
, attr
);
10007 // ----------------------------------------------------------------------------
10008 // setting cell attributes: this is forwarded to the table
10009 // ----------------------------------------------------------------------------
10011 void wxGrid::SetAttr(int row
, int col
, wxGridCellAttr
*attr
)
10013 if ( CanHaveAttributes() )
10015 m_table
->SetAttr(attr
, row
, col
);
10020 wxSafeDecRef(attr
);
10024 void wxGrid::SetRowAttr(int row
, wxGridCellAttr
*attr
)
10026 if ( CanHaveAttributes() )
10028 m_table
->SetRowAttr(attr
, row
);
10033 wxSafeDecRef(attr
);
10037 void wxGrid::SetColAttr(int col
, wxGridCellAttr
*attr
)
10039 if ( CanHaveAttributes() )
10041 m_table
->SetColAttr(attr
, col
);
10046 wxSafeDecRef(attr
);
10050 void wxGrid::SetCellBackgroundColour( int row
, int col
, const wxColour
& colour
)
10052 if ( CanHaveAttributes() )
10054 wxGridCellAttr
*attr
= GetOrCreateCellAttr(row
, col
);
10055 attr
->SetBackgroundColour(colour
);
10060 void wxGrid::SetCellTextColour( int row
, int col
, const wxColour
& colour
)
10062 if ( CanHaveAttributes() )
10064 wxGridCellAttr
*attr
= GetOrCreateCellAttr(row
, col
);
10065 attr
->SetTextColour(colour
);
10070 void wxGrid::SetCellFont( int row
, int col
, const wxFont
& font
)
10072 if ( CanHaveAttributes() )
10074 wxGridCellAttr
*attr
= GetOrCreateCellAttr(row
, col
);
10075 attr
->SetFont(font
);
10080 void wxGrid::SetCellAlignment( int row
, int col
, int horiz
, int vert
)
10082 if ( CanHaveAttributes() )
10084 wxGridCellAttr
*attr
= GetOrCreateCellAttr(row
, col
);
10085 attr
->SetAlignment(horiz
, vert
);
10090 void wxGrid::SetCellOverflow( int row
, int col
, bool allow
)
10092 if ( CanHaveAttributes() )
10094 wxGridCellAttr
*attr
= GetOrCreateCellAttr(row
, col
);
10095 attr
->SetOverflow(allow
);
10100 void wxGrid::SetCellSize( int row
, int col
, int num_rows
, int num_cols
)
10102 if ( CanHaveAttributes() )
10104 int cell_rows
, cell_cols
;
10106 wxGridCellAttr
*attr
= GetOrCreateCellAttr(row
, col
);
10107 attr
->GetSize(&cell_rows
, &cell_cols
);
10108 attr
->SetSize(num_rows
, num_cols
);
10111 // Cannot set the size of a cell to 0 or negative values
10112 // While it is perfectly legal to do that, this function cannot
10113 // handle all the possibilies, do it by hand by getting the CellAttr.
10114 // You can only set the size of a cell to 1,1 or greater with this fn
10115 wxASSERT_MSG( !((cell_rows
< 1) || (cell_cols
< 1)),
10116 wxT("wxGrid::SetCellSize setting cell size that is already part of another cell"));
10117 wxASSERT_MSG( !((num_rows
< 1) || (num_cols
< 1)),
10118 wxT("wxGrid::SetCellSize setting cell size to < 1"));
10120 // if this was already a multicell then "turn off" the other cells first
10121 if ((cell_rows
> 1) || (cell_rows
> 1))
10124 for (j
=row
; j
< row
+ cell_rows
; j
++)
10126 for (i
=col
; i
< col
+ cell_cols
; i
++)
10128 if ((i
!= col
) || (j
!= row
))
10130 wxGridCellAttr
*attr_stub
= GetOrCreateCellAttr(j
, i
);
10131 attr_stub
->SetSize( 1, 1 );
10132 attr_stub
->DecRef();
10138 // mark the cells that will be covered by this cell to
10139 // negative or zero values to point back at this cell
10140 if (((num_rows
> 1) || (num_cols
> 1)) && (num_rows
>= 1) && (num_cols
>= 1))
10143 for (j
=row
; j
< row
+ num_rows
; j
++)
10145 for (i
=col
; i
< col
+ num_cols
; i
++)
10147 if ((i
!= col
) || (j
!= row
))
10149 wxGridCellAttr
*attr_stub
= GetOrCreateCellAttr(j
, i
);
10150 attr_stub
->SetSize( row
- j
, col
- i
);
10151 attr_stub
->DecRef();
10159 void wxGrid::SetCellRenderer(int row
, int col
, wxGridCellRenderer
*renderer
)
10161 if ( CanHaveAttributes() )
10163 wxGridCellAttr
*attr
= GetOrCreateCellAttr(row
, col
);
10164 attr
->SetRenderer(renderer
);
10169 void wxGrid::SetCellEditor(int row
, int col
, wxGridCellEditor
* editor
)
10171 if ( CanHaveAttributes() )
10173 wxGridCellAttr
*attr
= GetOrCreateCellAttr(row
, col
);
10174 attr
->SetEditor(editor
);
10179 void wxGrid::SetReadOnly(int row
, int col
, bool isReadOnly
)
10181 if ( CanHaveAttributes() )
10183 wxGridCellAttr
*attr
= GetOrCreateCellAttr(row
, col
);
10184 attr
->SetReadOnly(isReadOnly
);
10189 // ----------------------------------------------------------------------------
10190 // Data type registration
10191 // ----------------------------------------------------------------------------
10193 void wxGrid::RegisterDataType(const wxString
& typeName
,
10194 wxGridCellRenderer
* renderer
,
10195 wxGridCellEditor
* editor
)
10197 m_typeRegistry
->RegisterDataType(typeName
, renderer
, editor
);
10201 wxGridCellEditor
* wxGrid::GetDefaultEditorForCell(int row
, int col
) const
10203 wxString typeName
= m_table
->GetTypeName(row
, col
);
10204 return GetDefaultEditorForType(typeName
);
10207 wxGridCellRenderer
* wxGrid::GetDefaultRendererForCell(int row
, int col
) const
10209 wxString typeName
= m_table
->GetTypeName(row
, col
);
10210 return GetDefaultRendererForType(typeName
);
10213 wxGridCellEditor
* wxGrid::GetDefaultEditorForType(const wxString
& typeName
) const
10215 int index
= m_typeRegistry
->FindOrCloneDataType(typeName
);
10216 if ( index
== wxNOT_FOUND
)
10220 errStr
.Printf(wxT("Unknown data type name [%s]"), typeName
.c_str());
10221 wxFAIL_MSG(errStr
.c_str());
10226 return m_typeRegistry
->GetEditor(index
);
10229 wxGridCellRenderer
* wxGrid::GetDefaultRendererForType(const wxString
& typeName
) const
10231 int index
= m_typeRegistry
->FindOrCloneDataType(typeName
);
10232 if ( index
== wxNOT_FOUND
)
10236 errStr
.Printf(wxT("Unknown data type name [%s]"), typeName
.c_str());
10237 wxFAIL_MSG(errStr
.c_str());
10242 return m_typeRegistry
->GetRenderer(index
);
10245 // ----------------------------------------------------------------------------
10247 // ----------------------------------------------------------------------------
10249 void wxGrid::EnableDragRowSize( bool enable
)
10251 m_canDragRowSize
= enable
;
10254 void wxGrid::EnableDragColSize( bool enable
)
10256 m_canDragColSize
= enable
;
10259 void wxGrid::EnableDragGridSize( bool enable
)
10261 m_canDragGridSize
= enable
;
10264 void wxGrid::EnableDragCell( bool enable
)
10266 m_canDragCell
= enable
;
10269 void wxGrid::SetDefaultRowSize( int height
, bool resizeExistingRows
)
10271 m_defaultRowHeight
= wxMax( height
, m_minAcceptableRowHeight
);
10273 if ( resizeExistingRows
)
10275 // since we are resizing all rows to the default row size,
10276 // we can simply clear the row heights and row bottoms
10277 // arrays (which also allows us to take advantage of
10278 // some speed optimisations)
10279 m_rowHeights
.Empty();
10280 m_rowBottoms
.Empty();
10281 if ( !GetBatchCount() )
10286 void wxGrid::SetRowSize( int row
, int height
)
10288 wxCHECK_RET( row
>= 0 && row
< m_numRows
, _T("invalid row index") );
10290 // See comment in SetColSize
10291 if ( height
< GetRowMinimalAcceptableHeight())
10294 if ( m_rowHeights
.IsEmpty() )
10296 // need to really create the array
10300 int h
= wxMax( 0, height
);
10301 int diff
= h
- m_rowHeights
[row
];
10303 m_rowHeights
[row
] = h
;
10304 for ( int i
= row
; i
< m_numRows
; i
++ )
10306 m_rowBottoms
[i
] += diff
;
10309 if ( !GetBatchCount() )
10313 void wxGrid::SetDefaultColSize( int width
, bool resizeExistingCols
)
10315 // we dont allow zero default column width
10316 m_defaultColWidth
= wxMax( wxMax( width
, m_minAcceptableColWidth
), 1 );
10318 if ( resizeExistingCols
)
10320 // since we are resizing all columns to the default column size,
10321 // we can simply clear the col widths and col rights
10322 // arrays (which also allows us to take advantage of
10323 // some speed optimisations)
10324 m_colWidths
.Empty();
10325 m_colRights
.Empty();
10326 if ( !GetBatchCount() )
10331 void wxGrid::SetColSize( int col
, int width
)
10333 wxCHECK_RET( col
>= 0 && col
< m_numCols
, _T("invalid column index") );
10335 // should we check that it's bigger than GetColMinimalWidth(col) here?
10337 // No, because it is reasonable to assume the library user know's
10338 // what he is doing. However we should test against the weaker
10339 // constraint of minimalAcceptableWidth, as this breaks rendering
10341 // This test then fixes sf.net bug #645734
10343 if ( width
< GetColMinimalAcceptableWidth() )
10346 if ( m_colWidths
.IsEmpty() )
10348 // need to really create the array
10352 // if < 0 then calculate new width from label
10356 wxArrayString lines
;
10357 wxClientDC
dc(m_colLabelWin
);
10358 dc
.SetFont(GetLabelFont());
10359 StringToLines(GetColLabelValue(col
), lines
);
10360 GetTextBoxSize(dc
, lines
, &w
, &h
);
10364 int w
= wxMax( 0, width
);
10365 int diff
= w
- m_colWidths
[col
];
10366 m_colWidths
[col
] = w
;
10368 for ( int colPos
= GetColPos(col
); colPos
< m_numCols
; colPos
++ )
10370 m_colRights
[GetColAt(colPos
)] += diff
;
10373 if ( !GetBatchCount() )
10377 void wxGrid::SetColMinimalWidth( int col
, int width
)
10379 if (width
> GetColMinimalAcceptableWidth())
10381 wxLongToLongHashMap::key_type key
= (wxLongToLongHashMap::key_type
)col
;
10382 m_colMinWidths
[key
] = width
;
10386 void wxGrid::SetRowMinimalHeight( int row
, int width
)
10388 if (width
> GetRowMinimalAcceptableHeight())
10390 wxLongToLongHashMap::key_type key
= (wxLongToLongHashMap::key_type
)row
;
10391 m_rowMinHeights
[key
] = width
;
10395 int wxGrid::GetColMinimalWidth(int col
) const
10397 wxLongToLongHashMap::key_type key
= (wxLongToLongHashMap::key_type
)col
;
10398 wxLongToLongHashMap::const_iterator it
= m_colMinWidths
.find(key
);
10400 return it
!= m_colMinWidths
.end() ? (int)it
->second
: m_minAcceptableColWidth
;
10403 int wxGrid::GetRowMinimalHeight(int row
) const
10405 wxLongToLongHashMap::key_type key
= (wxLongToLongHashMap::key_type
)row
;
10406 wxLongToLongHashMap::const_iterator it
= m_rowMinHeights
.find(key
);
10408 return it
!= m_rowMinHeights
.end() ? (int)it
->second
: m_minAcceptableRowHeight
;
10411 void wxGrid::SetColMinimalAcceptableWidth( int width
)
10413 // We do allow a width of 0 since this gives us
10414 // an easy way to temporarily hiding columns.
10416 m_minAcceptableColWidth
= width
;
10419 void wxGrid::SetRowMinimalAcceptableHeight( int height
)
10421 // We do allow a height of 0 since this gives us
10422 // an easy way to temporarily hiding rows.
10424 m_minAcceptableRowHeight
= height
;
10427 int wxGrid::GetColMinimalAcceptableWidth() const
10429 return m_minAcceptableColWidth
;
10432 int wxGrid::GetRowMinimalAcceptableHeight() const
10434 return m_minAcceptableRowHeight
;
10437 // ----------------------------------------------------------------------------
10439 // ----------------------------------------------------------------------------
10441 void wxGrid::AutoSizeColOrRow( int colOrRow
, bool setAsMin
, bool column
)
10443 wxClientDC
dc(m_gridWin
);
10445 // cancel editing of cell
10446 HideCellEditControl();
10447 SaveEditControlValue();
10449 // init both of them to avoid compiler warnings, even if we only need one
10457 wxCoord extent
, extentMax
= 0;
10458 int max
= column
? m_numRows
: m_numCols
;
10459 for ( int rowOrCol
= 0; rowOrCol
< max
; rowOrCol
++ )
10466 wxGridCellAttr
*attr
= GetCellAttr(row
, col
);
10467 wxGridCellRenderer
*renderer
= attr
->GetRenderer(this, row
, col
);
10470 wxSize size
= renderer
->GetBestSize(*this, *attr
, dc
, row
, col
);
10471 extent
= column
? size
.x
: size
.y
;
10472 if ( extent
> extentMax
)
10473 extentMax
= extent
;
10475 renderer
->DecRef();
10481 // now also compare with the column label extent
10483 dc
.SetFont( GetLabelFont() );
10487 dc
.GetMultiLineTextExtent( GetColLabelValue(col
), &w
, &h
);
10488 if ( GetColLabelTextOrientation() == wxVERTICAL
)
10492 dc
.GetMultiLineTextExtent( GetRowLabelValue(row
), &w
, &h
);
10494 extent
= column
? w
: h
;
10495 if ( extent
> extentMax
)
10496 extentMax
= extent
;
10500 // empty column - give default extent (notice that if extentMax is less
10501 // than default extent but != 0, it's OK)
10502 extentMax
= column
? m_defaultColWidth
: m_defaultRowHeight
;
10507 // leave some space around text
10515 SetColSize( col
, extentMax
);
10516 if ( !GetBatchCount() )
10519 m_gridWin
->GetClientSize( &cw
, &ch
);
10520 wxRect
rect ( CellToRect( 0, col
) );
10522 CalcScrolledPosition(rect
.x
, 0, &rect
.x
, &dummy
);
10523 rect
.width
= cw
- rect
.x
;
10524 rect
.height
= m_colLabelHeight
;
10525 m_colLabelWin
->Refresh( true, &rect
);
10530 SetRowSize(row
, extentMax
);
10531 if ( !GetBatchCount() )
10534 m_gridWin
->GetClientSize( &cw
, &ch
);
10535 wxRect
rect( CellToRect( row
, 0 ) );
10537 CalcScrolledPosition(0, rect
.y
, &dummy
, &rect
.y
);
10538 rect
.width
= m_rowLabelWidth
;
10539 rect
.height
= ch
- rect
.y
;
10540 m_rowLabelWin
->Refresh( true, &rect
);
10547 SetColMinimalWidth(col
, extentMax
);
10549 SetRowMinimalHeight(row
, extentMax
);
10553 int wxGrid::SetOrCalcColumnSizes(bool calcOnly
, bool setAsMin
)
10555 int width
= m_rowLabelWidth
;
10560 for ( int col
= 0; col
< m_numCols
; col
++ )
10563 AutoSizeColumn(col
, setAsMin
);
10565 width
+= GetColWidth(col
);
10574 int wxGrid::SetOrCalcRowSizes(bool calcOnly
, bool setAsMin
)
10576 int height
= m_colLabelHeight
;
10581 for ( int row
= 0; row
< m_numRows
; row
++ )
10584 AutoSizeRow(row
, setAsMin
);
10586 height
+= GetRowHeight(row
);
10595 void wxGrid::AutoSize()
10599 // we need to round up the size of the scrollable area to a multiple of
10600 // scroll step to ensure that we don't get the scrollbars when we're sized
10601 // exactly to fit our contents
10602 wxSize
size(SetOrCalcColumnSizes(false) - m_rowLabelWidth
+ m_extraWidth
,
10603 SetOrCalcRowSizes(false) - m_colLabelHeight
+ m_extraHeight
);
10604 wxSize
sizeFit(GetScrollX(size
.x
) * GetScrollLineX(),
10605 GetScrollY(size
.y
) * GetScrollLineY());
10607 // distribute the extra space between the columns/rows to avoid having
10608 // extra white space
10609 wxCoord diff
= sizeFit
.x
- size
.x
;
10610 if ( diff
&& m_numCols
)
10612 // try to resize the columns uniformly
10613 wxCoord diffPerCol
= diff
/ m_numCols
;
10616 for ( int col
= 0; col
< m_numCols
; col
++ )
10618 SetColSize(col
, GetColWidth(col
) + diffPerCol
);
10622 // add remaining amount to the last columns
10623 diff
-= diffPerCol
* m_numCols
;
10626 for ( int col
= m_numCols
- 1; col
>= m_numCols
- diff
; col
-- )
10628 SetColSize(col
, GetColWidth(col
) + 1);
10634 diff
= sizeFit
.y
- size
.y
;
10635 if ( diff
&& m_numRows
)
10637 // try to resize the columns uniformly
10638 wxCoord diffPerRow
= diff
/ m_numRows
;
10641 for ( int row
= 0; row
< m_numRows
; row
++ )
10643 SetRowSize(row
, GetRowHeight(row
) + diffPerRow
);
10647 // add remaining amount to the last rows
10648 diff
-= diffPerRow
* m_numRows
;
10651 for ( int row
= m_numRows
- 1; row
>= m_numRows
- diff
; row
-- )
10653 SetRowSize(row
, GetRowHeight(row
) + 1);
10658 // we know that we're not going to have scrollbars so disable them now to
10659 // avoid trouble in SetClientSize() which can otherwise set the correct
10660 // client size but also leave space for (not needed any more) scrollbars
10661 SetScrollbars(0, 0, 0, 0, 0, 0, true);
10662 SetClientSize(sizeFit
.x
+ m_rowLabelWidth
, sizeFit
.y
+ m_colLabelHeight
);
10667 void wxGrid::AutoSizeRowLabelSize( int row
)
10669 wxArrayString lines
;
10672 // Hide the edit control, so it
10673 // won't interfere with drag-shrinking.
10674 if ( IsCellEditControlShown() )
10676 HideCellEditControl();
10677 SaveEditControlValue();
10680 // autosize row height depending on label text
10681 StringToLines( GetRowLabelValue( row
), lines
);
10682 wxClientDC
dc( m_rowLabelWin
);
10683 GetTextBoxSize( dc
, lines
, &w
, &h
);
10684 if ( h
< m_defaultRowHeight
)
10685 h
= m_defaultRowHeight
;
10686 SetRowSize(row
, h
);
10690 void wxGrid::AutoSizeColLabelSize( int col
)
10692 wxArrayString lines
;
10695 // Hide the edit control, so it
10696 // won't interfere with drag-shrinking.
10697 if ( IsCellEditControlShown() )
10699 HideCellEditControl();
10700 SaveEditControlValue();
10703 // autosize column width depending on label text
10704 StringToLines( GetColLabelValue( col
), lines
);
10705 wxClientDC
dc( m_colLabelWin
);
10706 if ( GetColLabelTextOrientation() == wxHORIZONTAL
)
10707 GetTextBoxSize( dc
, lines
, &w
, &h
);
10709 GetTextBoxSize( dc
, lines
, &h
, &w
);
10710 if ( w
< m_defaultColWidth
)
10711 w
= m_defaultColWidth
;
10712 SetColSize(col
, w
);
10716 wxSize
wxGrid::DoGetBestSize() const
10718 wxGrid
*self
= (wxGrid
*)this; // const_cast
10720 // we do the same as in AutoSize() here with the exception that we don't
10721 // change the column/row sizes, only calculate them
10722 wxSize
size(self
->SetOrCalcColumnSizes(true) - m_rowLabelWidth
+ m_extraWidth
,
10723 self
->SetOrCalcRowSizes(true) - m_colLabelHeight
+ m_extraHeight
);
10724 wxSize
sizeFit(GetScrollX(size
.x
) * GetScrollLineX(),
10725 GetScrollY(size
.y
) * GetScrollLineY());
10727 // NOTE: This size should be cached, but first we need to add calls to
10728 // InvalidateBestSize everywhere that could change the results of this
10730 // CacheBestSize(size);
10732 return wxSize(sizeFit
.x
+ m_rowLabelWidth
, sizeFit
.y
+ m_colLabelHeight
)
10733 + GetWindowBorderSize();
10741 wxPen
& wxGrid::GetDividerPen() const
10746 // ----------------------------------------------------------------------------
10747 // cell value accessor functions
10748 // ----------------------------------------------------------------------------
10750 void wxGrid::SetCellValue( int row
, int col
, const wxString
& s
)
10754 m_table
->SetValue( row
, col
, s
);
10755 if ( !GetBatchCount() )
10758 wxRect
rect( CellToRect( row
, col
) );
10760 rect
.width
= m_gridWin
->GetClientSize().GetWidth();
10761 CalcScrolledPosition(0, rect
.y
, &dummy
, &rect
.y
);
10762 m_gridWin
->Refresh( false, &rect
);
10765 if ( m_currentCellCoords
.GetRow() == row
&&
10766 m_currentCellCoords
.GetCol() == col
&&
10767 IsCellEditControlShown())
10768 // Note: If we are using IsCellEditControlEnabled,
10769 // this interacts badly with calling SetCellValue from
10770 // an EVT_GRID_CELL_CHANGE handler.
10772 HideCellEditControl();
10773 ShowCellEditControl(); // will reread data from table
10778 // ----------------------------------------------------------------------------
10779 // block, row and column selection
10780 // ----------------------------------------------------------------------------
10782 void wxGrid::SelectRow( int row
, bool addToSelected
)
10784 if ( IsSelection() && !addToSelected
)
10788 m_selection
->SelectRow( row
, false, addToSelected
);
10791 void wxGrid::SelectCol( int col
, bool addToSelected
)
10793 if ( IsSelection() && !addToSelected
)
10797 m_selection
->SelectCol( col
, false, addToSelected
);
10800 void wxGrid::SelectBlock( int topRow
, int leftCol
, int bottomRow
, int rightCol
,
10801 bool addToSelected
)
10803 if ( IsSelection() && !addToSelected
)
10807 m_selection
->SelectBlock( topRow
, leftCol
, bottomRow
, rightCol
,
10808 false, addToSelected
);
10811 void wxGrid::SelectAll()
10813 if ( m_numRows
> 0 && m_numCols
> 0 )
10816 m_selection
->SelectBlock( 0, 0, m_numRows
- 1, m_numCols
- 1 );
10820 // ----------------------------------------------------------------------------
10821 // cell, row and col deselection
10822 // ----------------------------------------------------------------------------
10824 void wxGrid::DeselectRow( int row
)
10826 if ( !m_selection
)
10829 if ( m_selection
->GetSelectionMode() == wxGrid::wxGridSelectRows
)
10831 if ( m_selection
->IsInSelection(row
, 0 ) )
10832 m_selection
->ToggleCellSelection(row
, 0);
10836 int nCols
= GetNumberCols();
10837 for ( int i
= 0; i
< nCols
; i
++ )
10839 if ( m_selection
->IsInSelection(row
, i
) )
10840 m_selection
->ToggleCellSelection(row
, i
);
10845 void wxGrid::DeselectCol( int col
)
10847 if ( !m_selection
)
10850 if ( m_selection
->GetSelectionMode() == wxGrid::wxGridSelectColumns
)
10852 if ( m_selection
->IsInSelection(0, col
) )
10853 m_selection
->ToggleCellSelection(0, col
);
10857 int nRows
= GetNumberRows();
10858 for ( int i
= 0; i
< nRows
; i
++ )
10860 if ( m_selection
->IsInSelection(i
, col
) )
10861 m_selection
->ToggleCellSelection(i
, col
);
10866 void wxGrid::DeselectCell( int row
, int col
)
10868 if ( m_selection
&& m_selection
->IsInSelection(row
, col
) )
10869 m_selection
->ToggleCellSelection(row
, col
);
10872 bool wxGrid::IsSelection() const
10874 return ( m_selection
&& (m_selection
->IsSelection() ||
10875 ( m_selectingTopLeft
!= wxGridNoCellCoords
&&
10876 m_selectingBottomRight
!= wxGridNoCellCoords
) ) );
10879 bool wxGrid::IsInSelection( int row
, int col
) const
10881 return ( m_selection
&& (m_selection
->IsInSelection( row
, col
) ||
10882 ( row
>= m_selectingTopLeft
.GetRow() &&
10883 col
>= m_selectingTopLeft
.GetCol() &&
10884 row
<= m_selectingBottomRight
.GetRow() &&
10885 col
<= m_selectingBottomRight
.GetCol() )) );
10888 wxGridCellCoordsArray
wxGrid::GetSelectedCells() const
10892 wxGridCellCoordsArray a
;
10896 return m_selection
->m_cellSelection
;
10899 wxGridCellCoordsArray
wxGrid::GetSelectionBlockTopLeft() const
10903 wxGridCellCoordsArray a
;
10907 return m_selection
->m_blockSelectionTopLeft
;
10910 wxGridCellCoordsArray
wxGrid::GetSelectionBlockBottomRight() const
10914 wxGridCellCoordsArray a
;
10918 return m_selection
->m_blockSelectionBottomRight
;
10921 wxArrayInt
wxGrid::GetSelectedRows() const
10929 return m_selection
->m_rowSelection
;
10932 wxArrayInt
wxGrid::GetSelectedCols() const
10940 return m_selection
->m_colSelection
;
10943 void wxGrid::ClearSelection()
10945 m_selectingTopLeft
=
10946 m_selectingBottomRight
=
10947 m_selectingKeyboard
= wxGridNoCellCoords
;
10949 m_selection
->ClearSelection();
10952 // This function returns the rectangle that encloses the given block
10953 // in device coords clipped to the client size of the grid window.
10955 wxRect
wxGrid::BlockToDeviceRect( const wxGridCellCoords
&topLeft
,
10956 const wxGridCellCoords
&bottomRight
) const
10958 wxRect
rect( wxGridNoCellRect
);
10961 cellRect
= CellToRect( topLeft
);
10962 if ( cellRect
!= wxGridNoCellRect
)
10968 rect
= wxRect(0, 0, 0, 0);
10971 cellRect
= CellToRect( bottomRight
);
10972 if ( cellRect
!= wxGridNoCellRect
)
10978 return wxGridNoCellRect
;
10982 int left
= rect
.GetLeft();
10983 int top
= rect
.GetTop();
10984 int right
= rect
.GetRight();
10985 int bottom
= rect
.GetBottom();
10987 int leftCol
= topLeft
.GetCol();
10988 int topRow
= topLeft
.GetRow();
10989 int rightCol
= bottomRight
.GetCol();
10990 int bottomRow
= bottomRight
.GetRow();
10998 leftCol
= rightCol
;
11008 topRow
= bottomRow
;
11012 for ( j
= topRow
; j
<= bottomRow
; j
++ )
11014 for ( i
= leftCol
; i
<= rightCol
; i
++ )
11016 if ((j
== topRow
) || (j
== bottomRow
) || (i
== leftCol
) || (i
== rightCol
))
11018 cellRect
= CellToRect( j
, i
);
11020 if (cellRect
.x
< left
)
11022 if (cellRect
.y
< top
)
11024 if (cellRect
.x
+ cellRect
.width
> right
)
11025 right
= cellRect
.x
+ cellRect
.width
;
11026 if (cellRect
.y
+ cellRect
.height
> bottom
)
11027 bottom
= cellRect
.y
+ cellRect
.height
;
11031 i
= rightCol
; // jump over inner cells.
11036 // convert to scrolled coords
11038 CalcScrolledPosition( left
, top
, &left
, &top
);
11039 CalcScrolledPosition( right
, bottom
, &right
, &bottom
);
11042 m_gridWin
->GetClientSize( &cw
, &ch
);
11044 if (right
< 0 || bottom
< 0 || left
> cw
|| top
> ch
)
11045 return wxRect(0,0,0,0);
11047 rect
.SetLeft( wxMax(0, left
) );
11048 rect
.SetTop( wxMax(0, top
) );
11049 rect
.SetRight( wxMin(cw
, right
) );
11050 rect
.SetBottom( wxMin(ch
, bottom
) );
11055 // ----------------------------------------------------------------------------
11056 // grid event classes
11057 // ----------------------------------------------------------------------------
11059 IMPLEMENT_DYNAMIC_CLASS( wxGridEvent
, wxNotifyEvent
)
11061 wxGridEvent::wxGridEvent( int id
, wxEventType type
, wxObject
* obj
,
11062 int row
, int col
, int x
, int y
, bool sel
,
11063 bool control
, bool shift
, bool alt
, bool meta
)
11064 : wxNotifyEvent( type
, id
)
11071 m_control
= control
;
11076 SetEventObject(obj
);
11080 IMPLEMENT_DYNAMIC_CLASS( wxGridSizeEvent
, wxNotifyEvent
)
11082 wxGridSizeEvent::wxGridSizeEvent( int id
, wxEventType type
, wxObject
* obj
,
11083 int rowOrCol
, int x
, int y
,
11084 bool control
, bool shift
, bool alt
, bool meta
)
11085 : wxNotifyEvent( type
, id
)
11087 m_rowOrCol
= rowOrCol
;
11090 m_control
= control
;
11095 SetEventObject(obj
);
11099 IMPLEMENT_DYNAMIC_CLASS( wxGridRangeSelectEvent
, wxNotifyEvent
)
11101 wxGridRangeSelectEvent::wxGridRangeSelectEvent(int id
, wxEventType type
, wxObject
* obj
,
11102 const wxGridCellCoords
& topLeft
,
11103 const wxGridCellCoords
& bottomRight
,
11104 bool sel
, bool control
,
11105 bool shift
, bool alt
, bool meta
)
11106 : wxNotifyEvent( type
, id
)
11108 m_topLeft
= topLeft
;
11109 m_bottomRight
= bottomRight
;
11111 m_control
= control
;
11116 SetEventObject(obj
);
11120 IMPLEMENT_DYNAMIC_CLASS(wxGridEditorCreatedEvent
, wxCommandEvent
)
11122 wxGridEditorCreatedEvent::wxGridEditorCreatedEvent(int id
, wxEventType type
,
11123 wxObject
* obj
, int row
,
11124 int col
, wxControl
* ctrl
)
11125 : wxCommandEvent(type
, id
)
11127 SetEventObject(obj
);
11133 #endif // wxUSE_GRID