1 ///////////////////////////////////////////////////////////////////////////
2 // Name: generic/grid.cpp
3 // Purpose: wxGrid and related classes
4 // Author: Michael Bedward (based on code by Julian Smart, Robin Dunn)
5 // Modified by: Robin Dunn, Vadim Zeitlin
8 // Copyright: (c) Michael Bedward (mbedward@ozemail.com.au)
9 // Licence: wxWindows licence
10 /////////////////////////////////////////////////////////////////////////////
12 // ============================================================================
14 // ============================================================================
16 // ----------------------------------------------------------------------------
18 // ----------------------------------------------------------------------------
20 #if defined(__GNUG__) && !defined(NO_GCC_PRAGMA)
21 #pragma implementation "grid.h"
24 // For compilers that support precompilatixon, includes "wx/wx.h".
25 #include "wx/wxprec.h"
37 #include "wx/dcclient.h"
38 #include "wx/settings.h"
40 #include "wx/textctrl.h"
41 #include "wx/checkbox.h"
42 #include "wx/combobox.h"
43 #include "wx/valtext.h"
46 #include "wx/textfile.h"
47 #include "wx/spinctrl.h"
48 #include "wx/tokenzr.h"
51 #include "wx/generic/gridsel.h"
53 #if defined(__WXMOTIF__)
54 #define WXUNUSED_MOTIF(identifier) WXUNUSED(identifier)
56 #define WXUNUSED_MOTIF(identifier) identifier
59 #if defined(__WXGTK__)
60 #define WXUNUSED_GTK(identifier) WXUNUSED(identifier)
62 #define WXUNUSED_GTK(identifier) identifier
65 // Required for wxIs... functions
68 // ----------------------------------------------------------------------------
70 // ----------------------------------------------------------------------------
72 WX_DEFINE_ARRAY_WITH_DECL_PTR(wxGridCellAttr
*, wxArrayAttrs
,
73 class WXDLLIMPEXP_ADV
);
75 struct wxGridCellWithAttr
77 wxGridCellWithAttr(int row
, int col
, wxGridCellAttr
*attr_
)
78 : coords(row
, col
), attr(attr_
)
87 wxGridCellCoords coords
;
91 // DECLARE_NO_COPY_CLASS(wxGridCellWithAttr)
92 // without rewriting the macros, which require a public copy constructor.
95 WX_DECLARE_OBJARRAY_WITH_DECL(wxGridCellWithAttr
, wxGridCellWithAttrArray
,
96 class WXDLLIMPEXP_ADV
);
98 #include "wx/arrimpl.cpp"
100 WX_DEFINE_OBJARRAY(wxGridCellCoordsArray
)
101 WX_DEFINE_OBJARRAY(wxGridCellWithAttrArray
)
103 // ----------------------------------------------------------------------------
105 // ----------------------------------------------------------------------------
107 DEFINE_EVENT_TYPE(wxEVT_GRID_CELL_LEFT_CLICK
)
108 DEFINE_EVENT_TYPE(wxEVT_GRID_CELL_RIGHT_CLICK
)
109 DEFINE_EVENT_TYPE(wxEVT_GRID_CELL_LEFT_DCLICK
)
110 DEFINE_EVENT_TYPE(wxEVT_GRID_CELL_RIGHT_DCLICK
)
111 DEFINE_EVENT_TYPE(wxEVT_GRID_LABEL_LEFT_CLICK
)
112 DEFINE_EVENT_TYPE(wxEVT_GRID_LABEL_RIGHT_CLICK
)
113 DEFINE_EVENT_TYPE(wxEVT_GRID_LABEL_LEFT_DCLICK
)
114 DEFINE_EVENT_TYPE(wxEVT_GRID_LABEL_RIGHT_DCLICK
)
115 DEFINE_EVENT_TYPE(wxEVT_GRID_ROW_SIZE
)
116 DEFINE_EVENT_TYPE(wxEVT_GRID_COL_SIZE
)
117 DEFINE_EVENT_TYPE(wxEVT_GRID_RANGE_SELECT
)
118 DEFINE_EVENT_TYPE(wxEVT_GRID_CELL_CHANGE
)
119 DEFINE_EVENT_TYPE(wxEVT_GRID_SELECT_CELL
)
120 DEFINE_EVENT_TYPE(wxEVT_GRID_EDITOR_SHOWN
)
121 DEFINE_EVENT_TYPE(wxEVT_GRID_EDITOR_HIDDEN
)
122 DEFINE_EVENT_TYPE(wxEVT_GRID_EDITOR_CREATED
)
124 // ----------------------------------------------------------------------------
126 // ----------------------------------------------------------------------------
128 class WXDLLIMPEXP_ADV wxGridRowLabelWindow
: public wxWindow
131 wxGridRowLabelWindow() { m_owner
= (wxGrid
*)NULL
; }
132 wxGridRowLabelWindow( wxGrid
*parent
, wxWindowID id
,
133 const wxPoint
&pos
, const wxSize
&size
);
138 void OnPaint( wxPaintEvent
& event
);
139 void OnMouseEvent( wxMouseEvent
& event
);
140 void OnMouseWheel( wxMouseEvent
& event
);
141 void OnKeyDown( wxKeyEvent
& event
);
142 void OnKeyUp( wxKeyEvent
& );
144 DECLARE_DYNAMIC_CLASS(wxGridRowLabelWindow
)
145 DECLARE_EVENT_TABLE()
146 DECLARE_NO_COPY_CLASS(wxGridRowLabelWindow
)
150 class WXDLLIMPEXP_ADV wxGridColLabelWindow
: public wxWindow
153 wxGridColLabelWindow() { m_owner
= (wxGrid
*)NULL
; }
154 wxGridColLabelWindow( wxGrid
*parent
, wxWindowID id
,
155 const wxPoint
&pos
, const wxSize
&size
);
160 void OnPaint( wxPaintEvent
&event
);
161 void OnMouseEvent( wxMouseEvent
& event
);
162 void OnMouseWheel( wxMouseEvent
& event
);
163 void OnKeyDown( wxKeyEvent
& event
);
164 void OnKeyUp( wxKeyEvent
& );
166 DECLARE_DYNAMIC_CLASS(wxGridColLabelWindow
)
167 DECLARE_EVENT_TABLE()
168 DECLARE_NO_COPY_CLASS(wxGridColLabelWindow
)
172 class WXDLLIMPEXP_ADV wxGridCornerLabelWindow
: public wxWindow
175 wxGridCornerLabelWindow() { m_owner
= (wxGrid
*)NULL
; }
176 wxGridCornerLabelWindow( wxGrid
*parent
, wxWindowID id
,
177 const wxPoint
&pos
, const wxSize
&size
);
182 void OnMouseEvent( wxMouseEvent
& event
);
183 void OnMouseWheel( wxMouseEvent
& event
);
184 void OnKeyDown( wxKeyEvent
& event
);
185 void OnKeyUp( wxKeyEvent
& );
186 void OnPaint( wxPaintEvent
& event
);
188 DECLARE_DYNAMIC_CLASS(wxGridCornerLabelWindow
)
189 DECLARE_EVENT_TABLE()
190 DECLARE_NO_COPY_CLASS(wxGridCornerLabelWindow
)
193 class WXDLLIMPEXP_ADV wxGridWindow
: public wxWindow
198 m_owner
= (wxGrid
*)NULL
;
199 m_rowLabelWin
= (wxGridRowLabelWindow
*)NULL
;
200 m_colLabelWin
= (wxGridColLabelWindow
*)NULL
;
203 wxGridWindow( wxGrid
*parent
,
204 wxGridRowLabelWindow
*rowLblWin
,
205 wxGridColLabelWindow
*colLblWin
,
206 wxWindowID id
, const wxPoint
&pos
, const wxSize
&size
);
209 void ScrollWindow( int dx
, int dy
, const wxRect
*rect
);
211 wxGrid
* GetOwner() { return m_owner
; }
215 wxGridRowLabelWindow
*m_rowLabelWin
;
216 wxGridColLabelWindow
*m_colLabelWin
;
218 void OnPaint( wxPaintEvent
&event
);
219 void OnMouseWheel( wxMouseEvent
& event
);
220 void OnMouseEvent( wxMouseEvent
& event
);
221 void OnKeyDown( wxKeyEvent
& );
222 void OnKeyUp( wxKeyEvent
& );
223 void OnEraseBackground( wxEraseEvent
& );
224 void OnFocus( wxFocusEvent
& );
226 DECLARE_DYNAMIC_CLASS(wxGridWindow
)
227 DECLARE_EVENT_TABLE()
228 DECLARE_NO_COPY_CLASS(wxGridWindow
)
233 class wxGridCellEditorEvtHandler
: public wxEvtHandler
236 wxGridCellEditorEvtHandler()
237 : m_grid(0), m_editor(0)
239 wxGridCellEditorEvtHandler(wxGrid
* grid
, wxGridCellEditor
* editor
)
240 : m_grid(grid
), m_editor(editor
)
243 void OnKeyDown(wxKeyEvent
& event
);
244 void OnChar(wxKeyEvent
& event
);
248 wxGridCellEditor
* m_editor
;
249 DECLARE_DYNAMIC_CLASS(wxGridCellEditorEvtHandler
)
250 DECLARE_EVENT_TABLE()
251 DECLARE_NO_COPY_CLASS(wxGridCellEditorEvtHandler
)
255 IMPLEMENT_DYNAMIC_CLASS( wxGridCellEditorEvtHandler
, wxEvtHandler
)
256 BEGIN_EVENT_TABLE( wxGridCellEditorEvtHandler
, wxEvtHandler
)
257 EVT_KEY_DOWN( wxGridCellEditorEvtHandler::OnKeyDown
)
258 EVT_CHAR( wxGridCellEditorEvtHandler::OnChar
)
263 // ----------------------------------------------------------------------------
264 // the internal data representation used by wxGridCellAttrProvider
265 // ----------------------------------------------------------------------------
267 // this class stores attributes set for cells
268 class WXDLLIMPEXP_ADV wxGridCellAttrData
271 void SetAttr(wxGridCellAttr
*attr
, int row
, int col
);
272 wxGridCellAttr
*GetAttr(int row
, int col
) const;
273 void UpdateAttrRows( size_t pos
, int numRows
);
274 void UpdateAttrCols( size_t pos
, int numCols
);
277 // searches for the attr for given cell, returns wxNOT_FOUND if not found
278 int FindIndex(int row
, int col
) const;
280 wxGridCellWithAttrArray m_attrs
;
283 // this class stores attributes set for rows or columns
284 class WXDLLIMPEXP_ADV wxGridRowOrColAttrData
287 // empty ctor to suppress warnings
288 wxGridRowOrColAttrData() { }
289 ~wxGridRowOrColAttrData();
291 void SetAttr(wxGridCellAttr
*attr
, int rowOrCol
);
292 wxGridCellAttr
*GetAttr(int rowOrCol
) const;
293 void UpdateAttrRowsOrCols( size_t pos
, int numRowsOrCols
);
296 wxArrayInt m_rowsOrCols
;
297 wxArrayAttrs m_attrs
;
300 // NB: this is just a wrapper around 3 objects: one which stores cell
301 // attributes, and 2 others for row/col ones
302 class WXDLLIMPEXP_ADV wxGridCellAttrProviderData
305 wxGridCellAttrData m_cellAttrs
;
306 wxGridRowOrColAttrData m_rowAttrs
,
311 // ----------------------------------------------------------------------------
312 // data structures used for the data type registry
313 // ----------------------------------------------------------------------------
315 struct wxGridDataTypeInfo
317 wxGridDataTypeInfo(const wxString
& typeName
,
318 wxGridCellRenderer
* renderer
,
319 wxGridCellEditor
* editor
)
320 : m_typeName(typeName
), m_renderer(renderer
), m_editor(editor
)
323 ~wxGridDataTypeInfo()
325 wxSafeDecRef(m_renderer
);
326 wxSafeDecRef(m_editor
);
330 wxGridCellRenderer
* m_renderer
;
331 wxGridCellEditor
* m_editor
;
333 DECLARE_NO_COPY_CLASS(wxGridDataTypeInfo
)
337 WX_DEFINE_ARRAY_WITH_DECL_PTR(wxGridDataTypeInfo
*, wxGridDataTypeInfoArray
,
338 class WXDLLIMPEXP_ADV
);
341 class WXDLLIMPEXP_ADV wxGridTypeRegistry
344 wxGridTypeRegistry() {}
345 ~wxGridTypeRegistry();
347 void RegisterDataType(const wxString
& typeName
,
348 wxGridCellRenderer
* renderer
,
349 wxGridCellEditor
* editor
);
351 // find one of already registered data types
352 int FindRegisteredDataType(const wxString
& typeName
);
354 // try to FindRegisteredDataType(), if this fails and typeName is one of
355 // standard typenames, register it and return its index
356 int FindDataType(const wxString
& typeName
);
358 // try to FindDataType(), if it fails see if it is not one of already
359 // registered data types with some params in which case clone the
360 // registered data type and set params for it
361 int FindOrCloneDataType(const wxString
& typeName
);
363 wxGridCellRenderer
* GetRenderer(int index
);
364 wxGridCellEditor
* GetEditor(int index
);
367 wxGridDataTypeInfoArray m_typeinfo
;
370 // ----------------------------------------------------------------------------
371 // conditional compilation
372 // ----------------------------------------------------------------------------
374 #ifndef WXGRID_DRAW_LINES
375 #define WXGRID_DRAW_LINES 1
378 // ----------------------------------------------------------------------------
380 // ----------------------------------------------------------------------------
382 //#define DEBUG_ATTR_CACHE
383 #ifdef DEBUG_ATTR_CACHE
384 static size_t gs_nAttrCacheHits
= 0;
385 static size_t gs_nAttrCacheMisses
= 0;
386 #endif // DEBUG_ATTR_CACHE
388 // ----------------------------------------------------------------------------
390 // ----------------------------------------------------------------------------
392 wxGridCellCoords
wxGridNoCellCoords( -1, -1 );
393 wxRect
wxGridNoCellRect( -1, -1, -1, -1 );
396 // TODO: this doesn't work at all, grid cells have different sizes and approx
397 // calculations don't work as because of the size mismatch scrollbars
398 // sometimes fail to be shown when they should be or vice versa
400 // The scroll bars may be a little flakey once in a while, but that is
401 // surely much less horrible than having scroll lines of only 1!!!
404 // Well, it's still seriously broken so it might be better but needs
407 static const size_t GRID_SCROLL_LINE_X
= 15; // 1;
408 static const size_t GRID_SCROLL_LINE_Y
= GRID_SCROLL_LINE_X
;
410 // the size of hash tables used a bit everywhere (the max number of elements
411 // in these hash tables is the number of rows/columns)
412 static const int GRID_HASH_SIZE
= 100;
414 // ----------------------------------------------------------------------------
416 // ----------------------------------------------------------------------------
418 static inline int GetScrollX(int x
)
420 return (x
+ GRID_SCROLL_LINE_X
- 1) / GRID_SCROLL_LINE_X
;
423 static inline int GetScrollY(int y
)
425 return (y
+ GRID_SCROLL_LINE_Y
- 1) / GRID_SCROLL_LINE_Y
;
428 // ============================================================================
430 // ============================================================================
432 // ----------------------------------------------------------------------------
434 // ----------------------------------------------------------------------------
436 wxGridCellEditor::wxGridCellEditor()
443 wxGridCellEditor::~wxGridCellEditor()
448 void wxGridCellEditor::Create(wxWindow
* WXUNUSED(parent
),
449 wxWindowID
WXUNUSED(id
),
450 wxEvtHandler
* evtHandler
)
453 m_control
->PushEventHandler(evtHandler
);
456 void wxGridCellEditor::PaintBackground(const wxRect
& rectCell
,
457 wxGridCellAttr
*attr
)
459 // erase the background because we might not fill the cell
460 wxClientDC
dc(m_control
->GetParent());
461 wxGridWindow
* gridWindow
= wxDynamicCast(m_control
->GetParent(), wxGridWindow
);
463 gridWindow
->GetOwner()->PrepareDC(dc
);
465 dc
.SetPen(*wxTRANSPARENT_PEN
);
466 dc
.SetBrush(wxBrush(attr
->GetBackgroundColour(), wxSOLID
));
467 dc
.DrawRectangle(rectCell
);
469 // redraw the control we just painted over
470 m_control
->Refresh();
473 void wxGridCellEditor::Destroy()
477 m_control
->PopEventHandler(TRUE
/* delete it*/);
479 m_control
->Destroy();
484 void wxGridCellEditor::Show(bool show
, wxGridCellAttr
*attr
)
486 wxASSERT_MSG(m_control
,
487 wxT("The wxGridCellEditor must be Created first!"));
488 m_control
->Show(show
);
492 // set the colours/fonts if we have any
495 m_colFgOld
= m_control
->GetForegroundColour();
496 m_control
->SetForegroundColour(attr
->GetTextColour());
498 m_colBgOld
= m_control
->GetBackgroundColour();
499 m_control
->SetBackgroundColour(attr
->GetBackgroundColour());
501 m_fontOld
= m_control
->GetFont();
502 m_control
->SetFont(attr
->GetFont());
504 // can't do anything more in the base class version, the other
505 // attributes may only be used by the derived classes
510 // restore the standard colours fonts
511 if ( m_colFgOld
.Ok() )
513 m_control
->SetForegroundColour(m_colFgOld
);
514 m_colFgOld
= wxNullColour
;
517 if ( m_colBgOld
.Ok() )
519 m_control
->SetBackgroundColour(m_colBgOld
);
520 m_colBgOld
= wxNullColour
;
523 if ( m_fontOld
.Ok() )
525 m_control
->SetFont(m_fontOld
);
526 m_fontOld
= wxNullFont
;
531 void wxGridCellEditor::SetSize(const wxRect
& rect
)
533 wxASSERT_MSG(m_control
,
534 wxT("The wxGridCellEditor must be Created first!"));
535 m_control
->SetSize(rect
, wxSIZE_ALLOW_MINUS_ONE
);
538 void wxGridCellEditor::HandleReturn(wxKeyEvent
& event
)
543 bool wxGridCellEditor::IsAcceptedKey(wxKeyEvent
& event
)
545 // accept the simple key presses, not anything with Ctrl/Alt/Meta
546 return !(event
.ControlDown() || event
.AltDown());
549 void wxGridCellEditor::StartingKey(wxKeyEvent
& event
)
554 void wxGridCellEditor::StartingClick()
560 // ----------------------------------------------------------------------------
561 // wxGridCellTextEditor
562 // ----------------------------------------------------------------------------
564 wxGridCellTextEditor::wxGridCellTextEditor()
569 void wxGridCellTextEditor::Create(wxWindow
* parent
,
571 wxEvtHandler
* evtHandler
)
573 m_control
= new wxTextCtrl(parent
, id
, wxEmptyString
,
574 wxDefaultPosition
, wxDefaultSize
575 #if defined(__WXMSW__)
576 , wxTE_PROCESS_TAB
| wxTE_AUTO_SCROLL
580 // set max length allowed in the textctrl, if the parameter was set
583 ((wxTextCtrl
*)m_control
)->SetMaxLength(m_maxChars
);
586 wxGridCellEditor::Create(parent
, id
, evtHandler
);
589 void wxGridCellTextEditor::PaintBackground(const wxRect
& WXUNUSED(rectCell
),
590 wxGridCellAttr
* WXUNUSED(attr
))
592 // as we fill the entire client area, don't do anything here to minimize
596 void wxGridCellTextEditor::SetSize(const wxRect
& rectOrig
)
598 wxRect
rect(rectOrig
);
600 // Make the edit control large enough to allow for internal
603 // TODO: remove this if the text ctrl sizing is improved esp. for
606 #if defined(__WXGTK__)
615 int extra_x
= ( rect
.x
> 2 )? 2 : 1;
617 // MB: treat MSW separately here otherwise the caret doesn't show
618 // when the editor is in the first row.
619 #if defined(__WXMSW__)
622 int extra_y
= ( rect
.y
> 2 )? 2 : 1;
625 #if defined(__WXMOTIF__)
629 rect
.SetLeft( wxMax(0, rect
.x
- extra_x
) );
630 rect
.SetTop( wxMax(0, rect
.y
- extra_y
) );
631 rect
.SetRight( rect
.GetRight() + 2*extra_x
);
632 rect
.SetBottom( rect
.GetBottom() + 2*extra_y
);
635 wxGridCellEditor::SetSize(rect
);
638 void wxGridCellTextEditor::BeginEdit(int row
, int col
, wxGrid
* grid
)
640 wxASSERT_MSG(m_control
,
641 wxT("The wxGridCellEditor must be Created first!"));
643 m_startValue
= grid
->GetTable()->GetValue(row
, col
);
645 DoBeginEdit(m_startValue
);
648 void wxGridCellTextEditor::DoBeginEdit(const wxString
& startValue
)
650 Text()->SetValue(startValue
);
651 Text()->SetInsertionPointEnd();
652 Text()->SetSelection(-1,-1);
656 bool wxGridCellTextEditor::EndEdit(int row
, int col
,
659 wxASSERT_MSG(m_control
,
660 wxT("The wxGridCellEditor must be Created first!"));
662 bool changed
= FALSE
;
663 wxString value
= Text()->GetValue();
664 if (value
!= m_startValue
)
668 grid
->GetTable()->SetValue(row
, col
, value
);
670 m_startValue
= wxEmptyString
;
671 Text()->SetValue(m_startValue
);
677 void wxGridCellTextEditor::Reset()
679 wxASSERT_MSG(m_control
,
680 wxT("The wxGridCellEditor must be Created first!"));
682 DoReset(m_startValue
);
685 void wxGridCellTextEditor::DoReset(const wxString
& startValue
)
687 Text()->SetValue(startValue
);
688 Text()->SetInsertionPointEnd();
691 bool wxGridCellTextEditor::IsAcceptedKey(wxKeyEvent
& event
)
693 if ( wxGridCellEditor::IsAcceptedKey(event
) )
695 int keycode
= event
.GetKeyCode();
709 case WXK_NUMPAD_MULTIPLY
:
713 case WXK_NUMPAD_SUBTRACT
:
715 case WXK_NUMPAD_DECIMAL
:
717 case WXK_NUMPAD_DIVIDE
:
721 // accept 8 bit chars too if isprint() agrees
722 if ( (keycode
< 255) && (wxIsprint(keycode
)) )
730 void wxGridCellTextEditor::StartingKey(wxKeyEvent
& event
)
732 if ( !Text()->EmulateKeyPress(event
) )
738 void wxGridCellTextEditor::HandleReturn( wxKeyEvent
&
739 WXUNUSED_GTK(WXUNUSED_MOTIF(event
)) )
741 #if defined(__WXMOTIF__) || defined(__WXGTK__)
742 // wxMotif needs a little extra help...
743 size_t pos
= (size_t)( Text()->GetInsertionPoint() );
744 wxString
s( Text()->GetValue() );
745 s
= s
.Left(pos
) + wxT("\n") + s
.Mid(pos
);
747 Text()->SetInsertionPoint( pos
);
749 // the other ports can handle a Return key press
755 void wxGridCellTextEditor::SetParameters(const wxString
& params
)
765 if ( !params
.ToLong(&tmp
) )
767 wxLogDebug(_T("Invalid wxGridCellTextEditor parameter string '%s' ignored"), params
.c_str());
771 m_maxChars
= (size_t)tmp
;
776 // return the value in the text control
777 wxString
wxGridCellTextEditor::GetValue() const
779 return Text()->GetValue();
782 // ----------------------------------------------------------------------------
783 // wxGridCellNumberEditor
784 // ----------------------------------------------------------------------------
786 wxGridCellNumberEditor::wxGridCellNumberEditor(int min
, int max
)
792 void wxGridCellNumberEditor::Create(wxWindow
* parent
,
794 wxEvtHandler
* evtHandler
)
798 // create a spin ctrl
799 m_control
= new wxSpinCtrl(parent
, -1, wxEmptyString
,
800 wxDefaultPosition
, wxDefaultSize
,
804 wxGridCellEditor::Create(parent
, id
, evtHandler
);
808 // just a text control
809 wxGridCellTextEditor::Create(parent
, id
, evtHandler
);
812 Text()->SetValidator(wxTextValidator(wxFILTER_NUMERIC
));
813 #endif // wxUSE_VALIDATORS
817 void wxGridCellNumberEditor::BeginEdit(int row
, int col
, wxGrid
* grid
)
819 // first get the value
820 wxGridTableBase
*table
= grid
->GetTable();
821 if ( table
->CanGetValueAs(row
, col
, wxGRID_VALUE_NUMBER
) )
823 m_valueOld
= table
->GetValueAsLong(row
, col
);
828 wxString sValue
= table
->GetValue(row
, col
);
829 if (! sValue
.ToLong(&m_valueOld
) && ! sValue
.IsEmpty())
831 wxFAIL_MSG( _T("this cell doesn't have numeric value") );
838 Spin()->SetValue((int)m_valueOld
);
843 DoBeginEdit(GetString());
847 bool wxGridCellNumberEditor::EndEdit(int row
, int col
,
856 value
= Spin()->GetValue();
857 changed
= value
!= m_valueOld
;
859 text
= wxString::Format(wxT("%ld"), value
);
863 text
= Text()->GetValue();
864 changed
= (text
.IsEmpty() || text
.ToLong(&value
)) && (value
!= m_valueOld
);
869 if (grid
->GetTable()->CanSetValueAs(row
, col
, wxGRID_VALUE_NUMBER
))
870 grid
->GetTable()->SetValueAsLong(row
, col
, value
);
872 grid
->GetTable()->SetValue(row
, col
, text
);
878 void wxGridCellNumberEditor::Reset()
882 Spin()->SetValue((int)m_valueOld
);
886 DoReset(GetString());
890 bool wxGridCellNumberEditor::IsAcceptedKey(wxKeyEvent
& event
)
892 if ( wxGridCellEditor::IsAcceptedKey(event
) )
894 int keycode
= event
.GetKeyCode();
910 case WXK_NUMPAD_SUBTRACT
:
916 if ( (keycode
< 128) && wxIsdigit(keycode
) )
924 void wxGridCellNumberEditor::StartingKey(wxKeyEvent
& event
)
928 int keycode
= event
.GetKeyCode();
929 if ( wxIsdigit(keycode
) || keycode
== '+' || keycode
== '-'
930 || keycode
== WXK_NUMPAD0
931 || keycode
== WXK_NUMPAD1
932 || keycode
== WXK_NUMPAD2
933 || keycode
== WXK_NUMPAD3
934 || keycode
== WXK_NUMPAD4
935 || keycode
== WXK_NUMPAD5
936 || keycode
== WXK_NUMPAD6
937 || keycode
== WXK_NUMPAD7
938 || keycode
== WXK_NUMPAD8
939 || keycode
== WXK_NUMPAD9
940 || keycode
== WXK_ADD
941 || keycode
== WXK_NUMPAD_ADD
942 || keycode
== WXK_SUBTRACT
943 || keycode
== WXK_NUMPAD_SUBTRACT
)
945 wxGridCellTextEditor::StartingKey(event
);
955 void wxGridCellNumberEditor::SetParameters(const wxString
& params
)
966 if ( params
.BeforeFirst(_T(',')).ToLong(&tmp
) )
970 if ( params
.AfterFirst(_T(',')).ToLong(&tmp
) )
974 // skip the error message below
979 wxLogDebug(_T("Invalid wxGridCellNumberEditor parameter string '%s' ignored"), params
.c_str());
983 // return the value in the spin control if it is there (the text control otherwise)
984 wxString
wxGridCellNumberEditor::GetValue() const
990 long value
= Spin()->GetValue();
991 s
.Printf(wxT("%ld"), value
);
995 s
= Text()->GetValue();
1000 // ----------------------------------------------------------------------------
1001 // wxGridCellFloatEditor
1002 // ----------------------------------------------------------------------------
1004 wxGridCellFloatEditor::wxGridCellFloatEditor(int width
, int precision
)
1007 m_precision
= precision
;
1010 void wxGridCellFloatEditor::Create(wxWindow
* parent
,
1012 wxEvtHandler
* evtHandler
)
1014 wxGridCellTextEditor::Create(parent
, id
, evtHandler
);
1016 #if wxUSE_VALIDATORS
1017 Text()->SetValidator(wxTextValidator(wxFILTER_NUMERIC
));
1018 #endif // wxUSE_VALIDATORS
1021 void wxGridCellFloatEditor::BeginEdit(int row
, int col
, wxGrid
* grid
)
1023 // first get the value
1024 wxGridTableBase
*table
= grid
->GetTable();
1025 if ( table
->CanGetValueAs(row
, col
, wxGRID_VALUE_FLOAT
) )
1027 m_valueOld
= table
->GetValueAsDouble(row
, col
);
1032 wxString sValue
= table
->GetValue(row
, col
);
1033 if (! sValue
.ToDouble(&m_valueOld
) && ! sValue
.IsEmpty())
1035 wxFAIL_MSG( _T("this cell doesn't have float value") );
1040 DoBeginEdit(GetString());
1043 bool wxGridCellFloatEditor::EndEdit(int row
, int col
,
1047 wxString
text(Text()->GetValue());
1049 if ( (text
.IsEmpty() || text
.ToDouble(&value
)) && (value
!= m_valueOld
) )
1051 if (grid
->GetTable()->CanSetValueAs(row
, col
, wxGRID_VALUE_FLOAT
))
1052 grid
->GetTable()->SetValueAsDouble(row
, col
, value
);
1054 grid
->GetTable()->SetValue(row
, col
, text
);
1061 void wxGridCellFloatEditor::Reset()
1063 DoReset(GetString());
1066 void wxGridCellFloatEditor::StartingKey(wxKeyEvent
& event
)
1068 int keycode
= event
.GetKeyCode();
1069 if ( wxIsdigit(keycode
) || keycode
== '+' || keycode
== '-' || keycode
== '.'
1070 || keycode
== WXK_NUMPAD0
1071 || keycode
== WXK_NUMPAD1
1072 || keycode
== WXK_NUMPAD2
1073 || keycode
== WXK_NUMPAD3
1074 || keycode
== WXK_NUMPAD4
1075 || keycode
== WXK_NUMPAD5
1076 || keycode
== WXK_NUMPAD6
1077 || keycode
== WXK_NUMPAD7
1078 || keycode
== WXK_NUMPAD8
1079 || keycode
== WXK_NUMPAD9
1080 || keycode
== WXK_ADD
1081 || keycode
== WXK_NUMPAD_ADD
1082 || keycode
== WXK_SUBTRACT
1083 || keycode
== WXK_NUMPAD_SUBTRACT
)
1085 wxGridCellTextEditor::StartingKey(event
);
1087 // skip Skip() below
1094 void wxGridCellFloatEditor::SetParameters(const wxString
& params
)
1105 if ( params
.BeforeFirst(_T(',')).ToLong(&tmp
) )
1109 if ( params
.AfterFirst(_T(',')).ToLong(&tmp
) )
1111 m_precision
= (int)tmp
;
1113 // skip the error message below
1118 wxLogDebug(_T("Invalid wxGridCellFloatEditor parameter string '%s' ignored"), params
.c_str());
1122 wxString
wxGridCellFloatEditor::GetString() const
1125 if ( m_width
== -1 )
1127 // default width/precision
1130 else if ( m_precision
== -1 )
1132 // default precision
1133 fmt
.Printf(_T("%%%d.f"), m_width
);
1137 fmt
.Printf(_T("%%%d.%df"), m_width
, m_precision
);
1140 return wxString::Format(fmt
, m_valueOld
);
1143 bool wxGridCellFloatEditor::IsAcceptedKey(wxKeyEvent
& event
)
1145 if ( wxGridCellEditor::IsAcceptedKey(event
) )
1147 int keycode
= event
.GetKeyCode();
1161 case WXK_NUMPAD_ADD
:
1163 case WXK_NUMPAD_SUBTRACT
:
1165 case WXK_NUMPAD_DECIMAL
:
1169 // additionally accept 'e' as in '1e+6'
1170 if ( (keycode
< 128) &&
1171 (wxIsdigit(keycode
) || tolower(keycode
) == 'e') )
1179 #endif // wxUSE_TEXTCTRL
1183 // ----------------------------------------------------------------------------
1184 // wxGridCellBoolEditor
1185 // ----------------------------------------------------------------------------
1187 void wxGridCellBoolEditor::Create(wxWindow
* parent
,
1189 wxEvtHandler
* evtHandler
)
1191 m_control
= new wxCheckBox(parent
, id
, wxEmptyString
,
1192 wxDefaultPosition
, wxDefaultSize
,
1195 wxGridCellEditor::Create(parent
, id
, evtHandler
);
1198 void wxGridCellBoolEditor::SetSize(const wxRect
& r
)
1200 bool resize
= FALSE
;
1201 wxSize size
= m_control
->GetSize();
1202 wxCoord minSize
= wxMin(r
.width
, r
.height
);
1204 // check if the checkbox is not too big/small for this cell
1205 wxSize sizeBest
= m_control
->GetBestSize();
1206 if ( !(size
== sizeBest
) )
1208 // reset to default size if it had been made smaller
1214 if ( size
.x
>= minSize
|| size
.y
>= minSize
)
1216 // leave 1 pixel margin
1217 size
.x
= size
.y
= minSize
- 2;
1224 m_control
->SetSize(size
);
1227 // position it in the centre of the rectangle (TODO: support alignment?)
1229 #if defined(__WXGTK__) || defined (__WXMOTIF__)
1230 // the checkbox without label still has some space to the right in wxGTK,
1231 // so shift it to the right
1233 #elif defined(__WXMSW__)
1234 // here too, but in other way
1239 int hAlign
= wxALIGN_CENTRE
;
1240 int vAlign
= wxALIGN_CENTRE
;
1242 GetCellAttr()->GetAlignment(& hAlign
, & vAlign
);
1245 if (hAlign
== wxALIGN_LEFT
)
1251 y
= r
.y
+ r
.height
/2 - size
.y
/2;
1253 else if (hAlign
== wxALIGN_RIGHT
)
1255 x
= r
.x
+ r
.width
- size
.x
- 2;
1256 y
= r
.y
+ r
.height
/2 - size
.y
/2;
1258 else if (hAlign
== wxALIGN_CENTRE
)
1260 x
= r
.x
+ r
.width
/2 - size
.x
/2;
1261 y
= r
.y
+ r
.height
/2 - size
.y
/2;
1264 m_control
->Move(x
, y
);
1267 void wxGridCellBoolEditor::Show(bool show
, wxGridCellAttr
*attr
)
1269 m_control
->Show(show
);
1273 wxColour colBg
= attr
? attr
->GetBackgroundColour() : *wxLIGHT_GREY
;
1274 CBox()->SetBackgroundColour(colBg
);
1278 void wxGridCellBoolEditor::BeginEdit(int row
, int col
, wxGrid
* grid
)
1280 wxASSERT_MSG(m_control
,
1281 wxT("The wxGridCellEditor must be Created first!"));
1283 if (grid
->GetTable()->CanGetValueAs(row
, col
, wxGRID_VALUE_BOOL
))
1284 m_startValue
= grid
->GetTable()->GetValueAsBool(row
, col
);
1287 wxString
cellval( grid
->GetTable()->GetValue(row
, col
) );
1288 m_startValue
= !( !cellval
|| (cellval
== wxT("0")) );
1290 CBox()->SetValue(m_startValue
);
1294 bool wxGridCellBoolEditor::EndEdit(int row
, int col
,
1297 wxASSERT_MSG(m_control
,
1298 wxT("The wxGridCellEditor must be Created first!"));
1300 bool changed
= FALSE
;
1301 bool value
= CBox()->GetValue();
1302 if ( value
!= m_startValue
)
1307 if (grid
->GetTable()->CanGetValueAs(row
, col
, wxGRID_VALUE_BOOL
))
1308 grid
->GetTable()->SetValueAsBool(row
, col
, value
);
1310 grid
->GetTable()->SetValue(row
, col
, value
? _T("1") : wxEmptyString
);
1316 void wxGridCellBoolEditor::Reset()
1318 wxASSERT_MSG(m_control
,
1319 wxT("The wxGridCellEditor must be Created first!"));
1321 CBox()->SetValue(m_startValue
);
1324 void wxGridCellBoolEditor::StartingClick()
1326 CBox()->SetValue(!CBox()->GetValue());
1329 bool wxGridCellBoolEditor::IsAcceptedKey(wxKeyEvent
& event
)
1331 if ( wxGridCellEditor::IsAcceptedKey(event
) )
1333 int keycode
= event
.GetKeyCode();
1337 case WXK_NUMPAD_MULTIPLY
:
1339 case WXK_NUMPAD_ADD
:
1341 case WXK_NUMPAD_SUBTRACT
:
1352 // return the value as "1" for true and the empty string for false
1353 wxString
wxGridCellBoolEditor::GetValue() const
1355 bool bSet
= CBox()->GetValue();
1356 return bSet
? _T("1") : wxEmptyString
;
1359 #endif // wxUSE_CHECKBOX
1363 // ----------------------------------------------------------------------------
1364 // wxGridCellChoiceEditor
1365 // ----------------------------------------------------------------------------
1367 wxGridCellChoiceEditor::wxGridCellChoiceEditor(const wxArrayString
& choices
,
1369 : m_choices(choices
),
1370 m_allowOthers(allowOthers
) { }
1372 wxGridCellChoiceEditor::wxGridCellChoiceEditor(size_t count
,
1373 const wxString choices
[],
1375 : m_allowOthers(allowOthers
)
1379 m_choices
.Alloc(count
);
1380 for ( size_t n
= 0; n
< count
; n
++ )
1382 m_choices
.Add(choices
[n
]);
1387 wxGridCellEditor
*wxGridCellChoiceEditor::Clone() const
1389 wxGridCellChoiceEditor
*editor
= new wxGridCellChoiceEditor
;
1390 editor
->m_allowOthers
= m_allowOthers
;
1391 editor
->m_choices
= m_choices
;
1396 void wxGridCellChoiceEditor::Create(wxWindow
* parent
,
1398 wxEvtHandler
* evtHandler
)
1400 size_t count
= m_choices
.GetCount();
1401 wxString
*choices
= new wxString
[count
];
1402 for ( size_t n
= 0; n
< count
; n
++ )
1404 choices
[n
] = m_choices
[n
];
1407 m_control
= new wxComboBox(parent
, id
, wxEmptyString
,
1408 wxDefaultPosition
, wxDefaultSize
,
1410 m_allowOthers
? 0 : wxCB_READONLY
);
1414 wxGridCellEditor::Create(parent
, id
, evtHandler
);
1417 void wxGridCellChoiceEditor::PaintBackground(const wxRect
& rectCell
,
1418 wxGridCellAttr
* attr
)
1420 // as we fill the entire client area, don't do anything here to minimize
1423 // TODO: It doesn't actually fill the client area since the height of a
1424 // combo always defaults to the standard... Until someone has time to
1425 // figure out the right rectangle to paint, just do it the normal way...
1426 wxGridCellEditor::PaintBackground(rectCell
, attr
);
1429 void wxGridCellChoiceEditor::BeginEdit(int row
, int col
, wxGrid
* grid
)
1431 wxASSERT_MSG(m_control
,
1432 wxT("The wxGridCellEditor must be Created first!"));
1434 m_startValue
= grid
->GetTable()->GetValue(row
, col
);
1437 Combo()->SetValue(m_startValue
);
1440 // find the right position, or default to the first if not found
1441 int pos
= Combo()->FindString(m_startValue
);
1444 Combo()->SetSelection(pos
);
1446 Combo()->SetInsertionPointEnd();
1447 Combo()->SetFocus();
1450 bool wxGridCellChoiceEditor::EndEdit(int row
, int col
,
1453 wxString value
= Combo()->GetValue();
1454 bool changed
= value
!= m_startValue
;
1457 grid
->GetTable()->SetValue(row
, col
, value
);
1459 m_startValue
= wxEmptyString
;
1461 Combo()->SetValue(m_startValue
);
1463 Combo()->SetSelection(0);
1468 void wxGridCellChoiceEditor::Reset()
1470 Combo()->SetValue(m_startValue
);
1471 Combo()->SetInsertionPointEnd();
1474 void wxGridCellChoiceEditor::SetParameters(const wxString
& params
)
1484 wxStringTokenizer
tk(params
, _T(','));
1485 while ( tk
.HasMoreTokens() )
1487 m_choices
.Add(tk
.GetNextToken());
1491 // return the value in the text control
1492 wxString
wxGridCellChoiceEditor::GetValue() const
1494 return Combo()->GetValue();
1497 #endif // wxUSE_COMBOBOX
1499 // ----------------------------------------------------------------------------
1500 // wxGridCellEditorEvtHandler
1501 // ----------------------------------------------------------------------------
1503 void wxGridCellEditorEvtHandler::OnKeyDown(wxKeyEvent
& event
)
1505 switch ( event
.GetKeyCode() )
1509 m_grid
->DisableCellEditControl();
1513 m_grid
->GetEventHandler()->ProcessEvent( event
);
1517 case WXK_NUMPAD_ENTER
:
1518 if (!m_grid
->GetEventHandler()->ProcessEvent(event
))
1519 m_editor
->HandleReturn(event
);
1528 void wxGridCellEditorEvtHandler::OnChar(wxKeyEvent
& event
)
1530 switch ( event
.GetKeyCode() )
1535 case WXK_NUMPAD_ENTER
:
1543 // ----------------------------------------------------------------------------
1544 // wxGridCellWorker is an (almost) empty common base class for
1545 // wxGridCellRenderer and wxGridCellEditor managing ref counting
1546 // ----------------------------------------------------------------------------
1548 void wxGridCellWorker::SetParameters(const wxString
& WXUNUSED(params
))
1553 wxGridCellWorker::~wxGridCellWorker()
1557 // ============================================================================
1559 // ============================================================================
1561 // ----------------------------------------------------------------------------
1562 // wxGridCellRenderer
1563 // ----------------------------------------------------------------------------
1565 void wxGridCellRenderer::Draw(wxGrid
& grid
,
1566 wxGridCellAttr
& attr
,
1569 int WXUNUSED(row
), int WXUNUSED(col
),
1572 dc
.SetBackgroundMode( wxSOLID
);
1574 // grey out fields if the grid is disabled
1575 if( grid
.IsEnabled() )
1579 dc
.SetBrush( wxBrush(grid
.GetSelectionBackground(), wxSOLID
) );
1583 dc
.SetBrush( wxBrush(attr
.GetBackgroundColour(), wxSOLID
) );
1588 dc
.SetBrush(wxBrush(wxSystemSettings::GetSystemColour(wxSYS_COLOUR_BTNFACE
), wxSOLID
));
1591 dc
.SetPen( *wxTRANSPARENT_PEN
);
1592 dc
.DrawRectangle(rect
);
1595 // ----------------------------------------------------------------------------
1596 // wxGridCellStringRenderer
1597 // ----------------------------------------------------------------------------
1599 void wxGridCellStringRenderer::SetTextColoursAndFont(wxGrid
& grid
,
1600 wxGridCellAttr
& attr
,
1604 dc
.SetBackgroundMode( wxTRANSPARENT
);
1606 // TODO some special colours for attr.IsReadOnly() case?
1608 // different coloured text when the grid is disabled
1609 if( grid
.IsEnabled() )
1613 dc
.SetTextBackground( grid
.GetSelectionBackground() );
1614 dc
.SetTextForeground( grid
.GetSelectionForeground() );
1618 dc
.SetTextBackground( attr
.GetBackgroundColour() );
1619 dc
.SetTextForeground( attr
.GetTextColour() );
1624 dc
.SetTextBackground(wxSystemSettings::GetSystemColour(wxSYS_COLOUR_BTNFACE
));
1625 dc
.SetTextForeground(wxSystemSettings::GetSystemColour(wxSYS_COLOUR_GRAYTEXT
));
1628 dc
.SetFont( attr
.GetFont() );
1631 wxSize
wxGridCellStringRenderer::DoGetBestSize(wxGridCellAttr
& attr
,
1633 const wxString
& text
)
1635 wxCoord x
= 0, y
= 0, max_x
= 0;
1636 dc
.SetFont(attr
.GetFont());
1637 wxStringTokenizer
tk(text
, _T('\n'));
1638 while ( tk
.HasMoreTokens() )
1640 dc
.GetTextExtent(tk
.GetNextToken(), &x
, &y
);
1641 max_x
= wxMax(max_x
, x
);
1644 y
*= 1 + text
.Freq(wxT('\n')); // multiply by the number of lines.
1646 return wxSize(max_x
, y
);
1649 wxSize
wxGridCellStringRenderer::GetBestSize(wxGrid
& grid
,
1650 wxGridCellAttr
& attr
,
1654 return DoGetBestSize(attr
, dc
, grid
.GetCellValue(row
, col
));
1657 void wxGridCellStringRenderer::Draw(wxGrid
& grid
,
1658 wxGridCellAttr
& attr
,
1660 const wxRect
& rectCell
,
1664 wxRect rect
= rectCell
;
1667 // erase only this cells background, overflow cells should have been erased
1668 wxGridCellRenderer::Draw(grid
, attr
, dc
, rectCell
, row
, col
, isSelected
);
1671 attr
.GetAlignment(&hAlign
, &vAlign
);
1673 int overflowCols
= 0;
1675 if (attr
.GetOverflow())
1677 int cols
= grid
.GetNumberCols();
1678 int best_width
= GetBestSize(grid
,attr
,dc
,row
,col
).GetWidth();
1679 int cell_rows
, cell_cols
;
1680 attr
.GetSize( &cell_rows
, &cell_cols
); // shouldn't get here if <=0
1681 if ((best_width
> rectCell
.width
) && (col
< cols
) && grid
.GetTable())
1683 int i
, c_cols
, c_rows
;
1684 for (i
= col
+cell_cols
; i
< cols
; i
++)
1686 bool is_empty
= TRUE
;
1687 for (int j
=row
; j
<row
+cell_rows
; j
++)
1689 // check w/ anchor cell for multicell block
1690 grid
.GetCellSize(j
, i
, &c_rows
, &c_cols
);
1691 if (c_rows
> 0) c_rows
= 0;
1692 if (!grid
.GetTable()->IsEmptyCell(j
+c_rows
, i
))
1699 rect
.width
+= grid
.GetColSize(i
);
1705 if (rect
.width
>= best_width
) break;
1707 overflowCols
= i
- col
- cell_cols
+ 1;
1708 if (overflowCols
>= cols
) overflowCols
= cols
- 1;
1711 if (overflowCols
> 0) // redraw overflow cells w/ proper hilight
1713 hAlign
= wxALIGN_LEFT
; // if oveflowed then it's left aligned
1715 clip
.x
+= rectCell
.width
;
1716 // draw each overflow cell individually
1717 int col_end
= col
+cell_cols
+overflowCols
;
1718 if (col_end
>= grid
.GetNumberCols())
1719 col_end
= grid
.GetNumberCols() - 1;
1720 for (int i
= col
+cell_cols
; i
<= col_end
; i
++)
1722 clip
.width
= grid
.GetColSize(i
) - 1;
1723 dc
.DestroyClippingRegion();
1724 dc
.SetClippingRegion(clip
);
1726 SetTextColoursAndFont(grid
, attr
, dc
,
1727 grid
.IsInSelection(row
,i
));
1729 grid
.DrawTextRectangle(dc
, grid
.GetCellValue(row
, col
),
1730 rect
, hAlign
, vAlign
);
1731 clip
.x
+= grid
.GetColSize(i
) - 1;
1737 dc
.DestroyClippingRegion();
1741 // now we only have to draw the text
1742 SetTextColoursAndFont(grid
, attr
, dc
, isSelected
);
1744 grid
.DrawTextRectangle(dc
, grid
.GetCellValue(row
, col
),
1745 rect
, hAlign
, vAlign
);
1748 // ----------------------------------------------------------------------------
1749 // wxGridCellNumberRenderer
1750 // ----------------------------------------------------------------------------
1752 wxString
wxGridCellNumberRenderer::GetString(wxGrid
& grid
, int row
, int col
)
1754 wxGridTableBase
*table
= grid
.GetTable();
1756 if ( table
->CanGetValueAs(row
, col
, wxGRID_VALUE_NUMBER
) )
1758 text
.Printf(_T("%ld"), table
->GetValueAsLong(row
, col
));
1762 text
= table
->GetValue(row
, col
);
1768 void wxGridCellNumberRenderer::Draw(wxGrid
& grid
,
1769 wxGridCellAttr
& attr
,
1771 const wxRect
& rectCell
,
1775 wxGridCellRenderer::Draw(grid
, attr
, dc
, rectCell
, row
, col
, isSelected
);
1777 SetTextColoursAndFont(grid
, attr
, dc
, isSelected
);
1779 // draw the text right aligned by default
1781 attr
.GetAlignment(&hAlign
, &vAlign
);
1782 hAlign
= wxALIGN_RIGHT
;
1784 wxRect rect
= rectCell
;
1787 grid
.DrawTextRectangle(dc
, GetString(grid
, row
, col
), rect
, hAlign
, vAlign
);
1790 wxSize
wxGridCellNumberRenderer::GetBestSize(wxGrid
& grid
,
1791 wxGridCellAttr
& attr
,
1795 return DoGetBestSize(attr
, dc
, GetString(grid
, row
, col
));
1798 // ----------------------------------------------------------------------------
1799 // wxGridCellFloatRenderer
1800 // ----------------------------------------------------------------------------
1802 wxGridCellFloatRenderer::wxGridCellFloatRenderer(int width
, int precision
)
1805 SetPrecision(precision
);
1808 wxGridCellRenderer
*wxGridCellFloatRenderer::Clone() const
1810 wxGridCellFloatRenderer
*renderer
= new wxGridCellFloatRenderer
;
1811 renderer
->m_width
= m_width
;
1812 renderer
->m_precision
= m_precision
;
1813 renderer
->m_format
= m_format
;
1818 wxString
wxGridCellFloatRenderer::GetString(wxGrid
& grid
, int row
, int col
)
1820 wxGridTableBase
*table
= grid
.GetTable();
1825 if ( table
->CanGetValueAs(row
, col
, wxGRID_VALUE_FLOAT
) )
1827 val
= table
->GetValueAsDouble(row
, col
);
1832 text
= table
->GetValue(row
, col
);
1833 hasDouble
= text
.ToDouble(&val
);
1840 if ( m_width
== -1 )
1842 if ( m_precision
== -1 )
1844 // default width/precision
1845 m_format
= _T("%f");
1849 m_format
.Printf(_T("%%.%df"), m_precision
);
1852 else if ( m_precision
== -1 )
1854 // default precision
1855 m_format
.Printf(_T("%%%d.f"), m_width
);
1859 m_format
.Printf(_T("%%%d.%df"), m_width
, m_precision
);
1863 text
.Printf(m_format
, val
);
1866 //else: text already contains the string
1871 void wxGridCellFloatRenderer::Draw(wxGrid
& grid
,
1872 wxGridCellAttr
& attr
,
1874 const wxRect
& rectCell
,
1878 wxGridCellRenderer::Draw(grid
, attr
, dc
, rectCell
, row
, col
, isSelected
);
1880 SetTextColoursAndFont(grid
, attr
, dc
, isSelected
);
1882 // draw the text right aligned by default
1884 attr
.GetAlignment(&hAlign
, &vAlign
);
1885 hAlign
= wxALIGN_RIGHT
;
1887 wxRect rect
= rectCell
;
1890 grid
.DrawTextRectangle(dc
, GetString(grid
, row
, col
), rect
, hAlign
, vAlign
);
1893 wxSize
wxGridCellFloatRenderer::GetBestSize(wxGrid
& grid
,
1894 wxGridCellAttr
& attr
,
1898 return DoGetBestSize(attr
, dc
, GetString(grid
, row
, col
));
1901 void wxGridCellFloatRenderer::SetParameters(const wxString
& params
)
1905 // reset to defaults
1911 wxString tmp
= params
.BeforeFirst(_T(','));
1915 if ( tmp
.ToLong(&width
) )
1917 SetWidth((int)width
);
1921 wxLogDebug(_T("Invalid wxGridCellFloatRenderer width parameter string '%s ignored"), params
.c_str());
1925 tmp
= params
.AfterFirst(_T(','));
1929 if ( tmp
.ToLong(&precision
) )
1931 SetPrecision((int)precision
);
1935 wxLogDebug(_T("Invalid wxGridCellFloatRenderer precision parameter string '%s ignored"), params
.c_str());
1943 // ----------------------------------------------------------------------------
1944 // wxGridCellBoolRenderer
1945 // ----------------------------------------------------------------------------
1947 wxSize
wxGridCellBoolRenderer::ms_sizeCheckMark
;
1949 // FIXME these checkbox size calculations are really ugly...
1951 // between checkmark and box
1952 static const wxCoord wxGRID_CHECKMARK_MARGIN
= 2;
1954 wxSize
wxGridCellBoolRenderer::GetBestSize(wxGrid
& grid
,
1955 wxGridCellAttr
& WXUNUSED(attr
),
1960 // compute it only once (no locks for MT safeness in GUI thread...)
1961 if ( !ms_sizeCheckMark
.x
)
1963 // get checkbox size
1964 wxCheckBox
*checkbox
= new wxCheckBox(&grid
, -1, wxEmptyString
);
1965 wxSize size
= checkbox
->GetBestSize();
1966 wxCoord checkSize
= size
.y
+ 2*wxGRID_CHECKMARK_MARGIN
;
1968 // FIXME wxGTK::wxCheckBox::GetBestSize() gives "wrong" result
1969 #if defined(__WXGTK__) || defined(__WXMOTIF__)
1970 checkSize
-= size
.y
/ 2;
1975 ms_sizeCheckMark
.x
= ms_sizeCheckMark
.y
= checkSize
;
1978 return ms_sizeCheckMark
;
1981 void wxGridCellBoolRenderer::Draw(wxGrid
& grid
,
1982 wxGridCellAttr
& attr
,
1988 wxGridCellRenderer::Draw(grid
, attr
, dc
, rect
, row
, col
, isSelected
);
1990 // draw a check mark in the centre (ignoring alignment - TODO)
1991 wxSize size
= GetBestSize(grid
, attr
, dc
, row
, col
);
1993 // don't draw outside the cell
1994 wxCoord minSize
= wxMin(rect
.width
, rect
.height
);
1995 if ( size
.x
>= minSize
|| size
.y
>= minSize
)
1997 // and even leave (at least) 1 pixel margin
1998 size
.x
= size
.y
= minSize
- 2;
2001 // draw a border around checkmark
2003 attr
.GetAlignment(& hAlign
, &vAlign
);
2006 if (hAlign
== wxALIGN_CENTRE
)
2008 rectBorder
.x
= rect
.x
+ rect
.width
/2 - size
.x
/2;
2009 rectBorder
.y
= rect
.y
+ rect
.height
/2 - size
.y
/2;
2010 rectBorder
.width
= size
.x
;
2011 rectBorder
.height
= size
.y
;
2013 else if (hAlign
== wxALIGN_LEFT
)
2015 rectBorder
.x
= rect
.x
+ 2;
2016 rectBorder
.y
= rect
.y
+ rect
.height
/2 - size
.y
/2;
2017 rectBorder
.width
= size
.x
;
2018 rectBorder
.height
= size
.y
;
2020 else if (hAlign
== wxALIGN_RIGHT
)
2022 rectBorder
.x
= rect
.x
+ rect
.width
- size
.x
- 2;
2023 rectBorder
.y
= rect
.y
+ rect
.height
/2 - size
.y
/2;
2024 rectBorder
.width
= size
.x
;
2025 rectBorder
.height
= size
.y
;
2029 if ( grid
.GetTable()->CanGetValueAs(row
, col
, wxGRID_VALUE_BOOL
) )
2030 value
= grid
.GetTable()->GetValueAsBool(row
, col
);
2033 wxString
cellval( grid
.GetTable()->GetValue(row
, col
) );
2034 value
= !( !cellval
|| (cellval
== wxT("0")) );
2039 wxRect rectMark
= rectBorder
;
2041 // MSW DrawCheckMark() is weird (and should probably be changed...)
2042 rectMark
.Inflate(-wxGRID_CHECKMARK_MARGIN
/2);
2046 rectMark
.Inflate(-wxGRID_CHECKMARK_MARGIN
);
2049 dc
.SetTextForeground(attr
.GetTextColour());
2050 dc
.DrawCheckMark(rectMark
);
2053 dc
.SetBrush(*wxTRANSPARENT_BRUSH
);
2054 dc
.SetPen(wxPen(attr
.GetTextColour(), 1, wxSOLID
));
2055 dc
.DrawRectangle(rectBorder
);
2058 // ----------------------------------------------------------------------------
2060 // ----------------------------------------------------------------------------
2062 void wxGridCellAttr::Init(wxGridCellAttr
*attrDefault
)
2066 m_isReadOnly
= Unset
;
2071 m_attrkind
= wxGridCellAttr::Cell
;
2073 m_sizeRows
= m_sizeCols
= 1;
2074 m_overflow
= UnsetOverflow
;
2076 SetDefAttr(attrDefault
);
2079 wxGridCellAttr
*wxGridCellAttr::Clone() const
2081 wxGridCellAttr
*attr
= new wxGridCellAttr(m_defGridAttr
);
2083 if ( HasTextColour() )
2084 attr
->SetTextColour(GetTextColour());
2085 if ( HasBackgroundColour() )
2086 attr
->SetBackgroundColour(GetBackgroundColour());
2088 attr
->SetFont(GetFont());
2089 if ( HasAlignment() )
2090 attr
->SetAlignment(m_hAlign
, m_vAlign
);
2092 attr
->SetSize( m_sizeRows
, m_sizeCols
);
2096 attr
->SetRenderer(m_renderer
);
2097 m_renderer
->IncRef();
2101 attr
->SetEditor(m_editor
);
2106 attr
->SetReadOnly();
2108 attr
->SetKind( m_attrkind
);
2113 void wxGridCellAttr::MergeWith(wxGridCellAttr
*mergefrom
)
2115 if ( !HasTextColour() && mergefrom
->HasTextColour() )
2116 SetTextColour(mergefrom
->GetTextColour());
2117 if ( !HasBackgroundColour() && mergefrom
->HasBackgroundColour() )
2118 SetBackgroundColour(mergefrom
->GetBackgroundColour());
2119 if ( !HasFont() && mergefrom
->HasFont() )
2120 SetFont(mergefrom
->GetFont());
2121 if ( !HasAlignment() && mergefrom
->HasAlignment() ){
2123 mergefrom
->GetAlignment( &hAlign
, &vAlign
);
2124 SetAlignment(hAlign
, vAlign
);
2127 mergefrom
->GetSize( &m_sizeRows
, &m_sizeCols
);
2129 // Directly access member functions as GetRender/Editor don't just return
2130 // m_renderer/m_editor
2132 // Maybe add support for merge of Render and Editor?
2133 if (!HasRenderer() && mergefrom
->HasRenderer() )
2135 m_renderer
= mergefrom
->m_renderer
;
2136 m_renderer
->IncRef();
2138 if ( !HasEditor() && mergefrom
->HasEditor() )
2140 m_editor
= mergefrom
->m_editor
;
2143 if ( !HasReadWriteMode() && mergefrom
->HasReadWriteMode() )
2144 SetReadOnly(mergefrom
->IsReadOnly());
2146 if (!HasOverflowMode() && mergefrom
->HasOverflowMode() )
2147 SetOverflow(mergefrom
->GetOverflow());
2149 SetDefAttr(mergefrom
->m_defGridAttr
);
2152 void wxGridCellAttr::SetSize(int num_rows
, int num_cols
)
2154 // The size of a cell is normally 1,1
2156 // If this cell is larger (2,2) then this is the top left cell
2157 // the other cells that will be covered (lower right cells) must be
2158 // set to negative or zero values such that
2159 // row + num_rows of the covered cell points to the larger cell (this cell)
2160 // same goes for the col + num_cols.
2162 // Size of 0,0 is NOT valid, neither is <=0 and any positive value
2164 wxASSERT_MSG( (!((num_rows
>0)&&(num_cols
<=0)) ||
2165 !((num_rows
<=0)&&(num_cols
>0)) ||
2166 !((num_rows
==0)&&(num_cols
==0))),
2167 wxT("wxGridCellAttr::SetSize only takes two postive values or negative/zero values"));
2169 m_sizeRows
= num_rows
;
2170 m_sizeCols
= num_cols
;
2173 const wxColour
& wxGridCellAttr::GetTextColour() const
2175 if (HasTextColour())
2179 else if (m_defGridAttr
&& m_defGridAttr
!= this)
2181 return m_defGridAttr
->GetTextColour();
2185 wxFAIL_MSG(wxT("Missing default cell attribute"));
2186 return wxNullColour
;
2191 const wxColour
& wxGridCellAttr::GetBackgroundColour() const
2193 if (HasBackgroundColour())
2195 else if (m_defGridAttr
&& m_defGridAttr
!= this)
2196 return m_defGridAttr
->GetBackgroundColour();
2199 wxFAIL_MSG(wxT("Missing default cell attribute"));
2200 return wxNullColour
;
2205 const wxFont
& wxGridCellAttr::GetFont() const
2209 else if (m_defGridAttr
&& m_defGridAttr
!= this)
2210 return m_defGridAttr
->GetFont();
2213 wxFAIL_MSG(wxT("Missing default cell attribute"));
2219 void wxGridCellAttr::GetAlignment(int *hAlign
, int *vAlign
) const
2223 if ( hAlign
) *hAlign
= m_hAlign
;
2224 if ( vAlign
) *vAlign
= m_vAlign
;
2226 else if (m_defGridAttr
&& m_defGridAttr
!= this)
2227 m_defGridAttr
->GetAlignment(hAlign
, vAlign
);
2230 wxFAIL_MSG(wxT("Missing default cell attribute"));
2234 void wxGridCellAttr::GetSize( int *num_rows
, int *num_cols
) const
2236 if ( num_rows
) *num_rows
= m_sizeRows
;
2237 if ( num_cols
) *num_cols
= m_sizeCols
;
2240 // GetRenderer and GetEditor use a slightly different decision path about
2241 // which attribute to use. If a non-default attr object has one then it is
2242 // used, otherwise the default editor or renderer is fetched from the grid and
2243 // used. It should be the default for the data type of the cell. If it is
2244 // NULL (because the table has a type that the grid does not have in its
2245 // registry,) then the grid's default editor or renderer is used.
2247 wxGridCellRenderer
* wxGridCellAttr::GetRenderer(wxGrid
* grid
, int row
, int col
) const
2249 wxGridCellRenderer
*renderer
;
2251 if ( m_renderer
&& this != m_defGridAttr
)
2253 // use the cells renderer if it has one
2254 renderer
= m_renderer
;
2257 else // no non default cell renderer
2259 // get default renderer for the data type
2262 // GetDefaultRendererForCell() will do IncRef() for us
2263 renderer
= grid
->GetDefaultRendererForCell(row
, col
);
2272 if (m_defGridAttr
&& this != m_defGridAttr
)
2274 // if we still don't have one then use the grid default
2275 // (no need for IncRef() here neither)
2276 renderer
= m_defGridAttr
->GetRenderer(NULL
, 0, 0);
2278 else // default grid attr
2280 // use m_renderer which we had decided not to use initially
2281 renderer
= m_renderer
;
2288 // we're supposed to always find something
2289 wxASSERT_MSG(renderer
, wxT("Missing default cell renderer"));
2294 // same as above, except for s/renderer/editor/g
2295 wxGridCellEditor
* wxGridCellAttr::GetEditor(wxGrid
* grid
, int row
, int col
) const
2297 wxGridCellEditor
*editor
;
2299 if ( m_editor
&& this != m_defGridAttr
)
2301 // use the cells editor if it has one
2305 else // no non default cell editor
2307 // get default editor for the data type
2310 // GetDefaultEditorForCell() will do IncRef() for us
2311 editor
= grid
->GetDefaultEditorForCell(row
, col
);
2320 if ( m_defGridAttr
&& this != m_defGridAttr
)
2322 // if we still don't have one then use the grid default
2323 // (no need for IncRef() here neither)
2324 editor
= m_defGridAttr
->GetEditor(NULL
, 0, 0);
2326 else // default grid attr
2328 // use m_editor which we had decided not to use initially
2336 // we're supposed to always find something
2337 wxASSERT_MSG(editor
, wxT("Missing default cell editor"));
2342 // ----------------------------------------------------------------------------
2343 // wxGridCellAttrData
2344 // ----------------------------------------------------------------------------
2346 void wxGridCellAttrData::SetAttr(wxGridCellAttr
*attr
, int row
, int col
)
2348 int n
= FindIndex(row
, col
);
2349 if ( n
== wxNOT_FOUND
)
2351 // add the attribute
2352 m_attrs
.Add(new wxGridCellWithAttr(row
, col
, attr
));
2356 // free the old attribute
2357 m_attrs
[(size_t)n
].attr
->DecRef();
2361 // change the attribute
2362 m_attrs
[(size_t)n
].attr
= attr
;
2366 // remove this attribute
2367 m_attrs
.RemoveAt((size_t)n
);
2372 wxGridCellAttr
*wxGridCellAttrData::GetAttr(int row
, int col
) const
2374 wxGridCellAttr
*attr
= (wxGridCellAttr
*)NULL
;
2376 int n
= FindIndex(row
, col
);
2377 if ( n
!= wxNOT_FOUND
)
2379 attr
= m_attrs
[(size_t)n
].attr
;
2386 void wxGridCellAttrData::UpdateAttrRows( size_t pos
, int numRows
)
2388 size_t count
= m_attrs
.GetCount();
2389 for ( size_t n
= 0; n
< count
; n
++ )
2391 wxGridCellCoords
& coords
= m_attrs
[n
].coords
;
2392 wxCoord row
= coords
.GetRow();
2393 if ((size_t)row
>= pos
)
2397 // If rows inserted, include row counter where necessary
2398 coords
.SetRow(row
+ numRows
);
2400 else if (numRows
< 0)
2402 // If rows deleted ...
2403 if ((size_t)row
>= pos
- numRows
)
2405 // ...either decrement row counter (if row still exists)...
2406 coords
.SetRow(row
+ numRows
);
2410 // ...or remove the attribute
2411 m_attrs
.RemoveAt((size_t)n
);
2419 void wxGridCellAttrData::UpdateAttrCols( size_t pos
, int numCols
)
2421 size_t count
= m_attrs
.GetCount();
2422 for ( size_t n
= 0; n
< count
; n
++ )
2424 wxGridCellCoords
& coords
= m_attrs
[n
].coords
;
2425 wxCoord col
= coords
.GetCol();
2426 if ( (size_t)col
>= pos
)
2430 // If rows inserted, include row counter where necessary
2431 coords
.SetCol(col
+ numCols
);
2433 else if (numCols
< 0)
2435 // If rows deleted ...
2436 if ((size_t)col
>= pos
- numCols
)
2438 // ...either decrement row counter (if row still exists)...
2439 coords
.SetCol(col
+ numCols
);
2443 // ...or remove the attribute
2444 m_attrs
.RemoveAt((size_t)n
);
2452 int wxGridCellAttrData::FindIndex(int row
, int col
) const
2454 size_t count
= m_attrs
.GetCount();
2455 for ( size_t n
= 0; n
< count
; n
++ )
2457 const wxGridCellCoords
& coords
= m_attrs
[n
].coords
;
2458 if ( (coords
.GetRow() == row
) && (coords
.GetCol() == col
) )
2467 // ----------------------------------------------------------------------------
2468 // wxGridRowOrColAttrData
2469 // ----------------------------------------------------------------------------
2471 wxGridRowOrColAttrData::~wxGridRowOrColAttrData()
2473 size_t count
= m_attrs
.Count();
2474 for ( size_t n
= 0; n
< count
; n
++ )
2476 m_attrs
[n
]->DecRef();
2480 wxGridCellAttr
*wxGridRowOrColAttrData::GetAttr(int rowOrCol
) const
2482 wxGridCellAttr
*attr
= (wxGridCellAttr
*)NULL
;
2484 int n
= m_rowsOrCols
.Index(rowOrCol
);
2485 if ( n
!= wxNOT_FOUND
)
2487 attr
= m_attrs
[(size_t)n
];
2494 void wxGridRowOrColAttrData::SetAttr(wxGridCellAttr
*attr
, int rowOrCol
)
2496 int i
= m_rowsOrCols
.Index(rowOrCol
);
2497 if ( i
== wxNOT_FOUND
)
2499 // add the attribute
2500 m_rowsOrCols
.Add(rowOrCol
);
2505 size_t n
= (size_t)i
;
2508 // change the attribute
2509 m_attrs
[n
]->DecRef();
2514 // remove this attribute
2515 m_attrs
[n
]->DecRef();
2516 m_rowsOrCols
.RemoveAt(n
);
2517 m_attrs
.RemoveAt(n
);
2522 void wxGridRowOrColAttrData::UpdateAttrRowsOrCols( size_t pos
, int numRowsOrCols
)
2524 size_t count
= m_attrs
.GetCount();
2525 for ( size_t n
= 0; n
< count
; n
++ )
2527 int & rowOrCol
= m_rowsOrCols
[n
];
2528 if ( (size_t)rowOrCol
>= pos
)
2530 if ( numRowsOrCols
> 0 )
2532 // If rows inserted, include row counter where necessary
2533 rowOrCol
+= numRowsOrCols
;
2535 else if ( numRowsOrCols
< 0)
2537 // If rows deleted, either decrement row counter (if row still exists)
2538 if ((size_t)rowOrCol
>= pos
- numRowsOrCols
)
2539 rowOrCol
+= numRowsOrCols
;
2542 m_rowsOrCols
.RemoveAt((size_t)n
);
2543 m_attrs
.RemoveAt((size_t)n
);
2551 // ----------------------------------------------------------------------------
2552 // wxGridCellAttrProvider
2553 // ----------------------------------------------------------------------------
2555 wxGridCellAttrProvider::wxGridCellAttrProvider()
2557 m_data
= (wxGridCellAttrProviderData
*)NULL
;
2560 wxGridCellAttrProvider::~wxGridCellAttrProvider()
2565 void wxGridCellAttrProvider::InitData()
2567 m_data
= new wxGridCellAttrProviderData
;
2570 wxGridCellAttr
*wxGridCellAttrProvider::GetAttr(int row
, int col
,
2571 wxGridCellAttr::wxAttrKind kind
) const
2573 wxGridCellAttr
*attr
= (wxGridCellAttr
*)NULL
;
2578 case (wxGridCellAttr::Any
):
2579 //Get cached merge attributes.
2580 // Currenlty not used as no cache implemented as not mutiable
2581 // attr = m_data->m_mergeAttr.GetAttr(row, col);
2584 //Basicaly implement old version.
2585 //Also check merge cache, so we don't have to re-merge every time..
2586 wxGridCellAttr
*attrcell
= m_data
->m_cellAttrs
.GetAttr(row
, col
);
2587 wxGridCellAttr
*attrrow
= m_data
->m_rowAttrs
.GetAttr(row
);
2588 wxGridCellAttr
*attrcol
= m_data
->m_colAttrs
.GetAttr(col
);
2590 if((attrcell
!= attrrow
) && (attrrow
!=attrcol
) && (attrcell
!= attrcol
)){
2591 // Two or move are non NULL
2592 attr
= new wxGridCellAttr
;
2593 attr
->SetKind(wxGridCellAttr::Merged
);
2597 attr
->MergeWith(attrcell
);
2601 attr
->MergeWith(attrcol
);
2605 attr
->MergeWith(attrrow
);
2608 //store merge attr if cache implemented
2610 //m_data->m_mergeAttr.SetAttr(attr, row, col);
2614 // one or none is non null return it or null.
2615 if(attrrow
) attr
= attrrow
;
2616 if(attrcol
) attr
= attrcol
;
2617 if(attrcell
) attr
= attrcell
;
2621 case (wxGridCellAttr::Cell
):
2622 attr
= m_data
->m_cellAttrs
.GetAttr(row
, col
);
2624 case (wxGridCellAttr::Col
):
2625 attr
= m_data
->m_colAttrs
.GetAttr(col
);
2627 case (wxGridCellAttr::Row
):
2628 attr
= m_data
->m_rowAttrs
.GetAttr(row
);
2632 // (wxGridCellAttr::Default):
2633 // (wxGridCellAttr::Merged):
2640 void wxGridCellAttrProvider::SetAttr(wxGridCellAttr
*attr
,
2646 m_data
->m_cellAttrs
.SetAttr(attr
, row
, col
);
2649 void wxGridCellAttrProvider::SetRowAttr(wxGridCellAttr
*attr
, int row
)
2654 m_data
->m_rowAttrs
.SetAttr(attr
, row
);
2657 void wxGridCellAttrProvider::SetColAttr(wxGridCellAttr
*attr
, int col
)
2662 m_data
->m_colAttrs
.SetAttr(attr
, col
);
2665 void wxGridCellAttrProvider::UpdateAttrRows( size_t pos
, int numRows
)
2669 m_data
->m_cellAttrs
.UpdateAttrRows( pos
, numRows
);
2671 m_data
->m_rowAttrs
.UpdateAttrRowsOrCols( pos
, numRows
);
2675 void wxGridCellAttrProvider::UpdateAttrCols( size_t pos
, int numCols
)
2679 m_data
->m_cellAttrs
.UpdateAttrCols( pos
, numCols
);
2681 m_data
->m_colAttrs
.UpdateAttrRowsOrCols( pos
, numCols
);
2685 // ----------------------------------------------------------------------------
2686 // wxGridTypeRegistry
2687 // ----------------------------------------------------------------------------
2689 wxGridTypeRegistry::~wxGridTypeRegistry()
2691 size_t count
= m_typeinfo
.Count();
2692 for ( size_t i
= 0; i
< count
; i
++ )
2693 delete m_typeinfo
[i
];
2697 void wxGridTypeRegistry::RegisterDataType(const wxString
& typeName
,
2698 wxGridCellRenderer
* renderer
,
2699 wxGridCellEditor
* editor
)
2701 wxGridDataTypeInfo
* info
= new wxGridDataTypeInfo(typeName
, renderer
, editor
);
2703 // is it already registered?
2704 int loc
= FindRegisteredDataType(typeName
);
2705 if ( loc
!= wxNOT_FOUND
)
2707 delete m_typeinfo
[loc
];
2708 m_typeinfo
[loc
] = info
;
2712 m_typeinfo
.Add(info
);
2716 int wxGridTypeRegistry::FindRegisteredDataType(const wxString
& typeName
)
2718 size_t count
= m_typeinfo
.GetCount();
2719 for ( size_t i
= 0; i
< count
; i
++ )
2721 if ( typeName
== m_typeinfo
[i
]->m_typeName
)
2730 int wxGridTypeRegistry::FindDataType(const wxString
& typeName
)
2732 int index
= FindRegisteredDataType(typeName
);
2733 if ( index
== wxNOT_FOUND
)
2735 // check whether this is one of the standard ones, in which case
2736 // register it "on the fly"
2738 if ( typeName
== wxGRID_VALUE_STRING
)
2740 RegisterDataType(wxGRID_VALUE_STRING
,
2741 new wxGridCellStringRenderer
,
2742 new wxGridCellTextEditor
);
2744 #endif // wxUSE_TEXTCTRL
2746 if ( typeName
== wxGRID_VALUE_BOOL
)
2748 RegisterDataType(wxGRID_VALUE_BOOL
,
2749 new wxGridCellBoolRenderer
,
2750 new wxGridCellBoolEditor
);
2752 #endif // wxUSE_CHECKBOX
2754 if ( typeName
== wxGRID_VALUE_NUMBER
)
2756 RegisterDataType(wxGRID_VALUE_NUMBER
,
2757 new wxGridCellNumberRenderer
,
2758 new wxGridCellNumberEditor
);
2760 else if ( typeName
== wxGRID_VALUE_FLOAT
)
2762 RegisterDataType(wxGRID_VALUE_FLOAT
,
2763 new wxGridCellFloatRenderer
,
2764 new wxGridCellFloatEditor
);
2766 #endif // wxUSE_TEXTCTRL
2768 if ( typeName
== wxGRID_VALUE_CHOICE
)
2770 RegisterDataType(wxGRID_VALUE_CHOICE
,
2771 new wxGridCellStringRenderer
,
2772 new wxGridCellChoiceEditor
);
2774 #endif // wxUSE_COMBOBOX
2779 // we get here only if just added the entry for this type, so return
2781 index
= m_typeinfo
.GetCount() - 1;
2787 int wxGridTypeRegistry::FindOrCloneDataType(const wxString
& typeName
)
2789 int index
= FindDataType(typeName
);
2790 if ( index
== wxNOT_FOUND
)
2792 // the first part of the typename is the "real" type, anything after ':'
2793 // are the parameters for the renderer
2794 index
= FindDataType(typeName
.BeforeFirst(_T(':')));
2795 if ( index
== wxNOT_FOUND
)
2800 wxGridCellRenderer
*renderer
= GetRenderer(index
);
2801 wxGridCellRenderer
*rendererOld
= renderer
;
2802 renderer
= renderer
->Clone();
2803 rendererOld
->DecRef();
2805 wxGridCellEditor
*editor
= GetEditor(index
);
2806 wxGridCellEditor
*editorOld
= editor
;
2807 editor
= editor
->Clone();
2808 editorOld
->DecRef();
2810 // do it even if there are no parameters to reset them to defaults
2811 wxString params
= typeName
.AfterFirst(_T(':'));
2812 renderer
->SetParameters(params
);
2813 editor
->SetParameters(params
);
2815 // register the new typename
2816 RegisterDataType(typeName
, renderer
, editor
);
2818 // we just registered it, it's the last one
2819 index
= m_typeinfo
.GetCount() - 1;
2825 wxGridCellRenderer
* wxGridTypeRegistry::GetRenderer(int index
)
2827 wxGridCellRenderer
* renderer
= m_typeinfo
[index
]->m_renderer
;
2833 wxGridCellEditor
* wxGridTypeRegistry::GetEditor(int index
)
2835 wxGridCellEditor
* editor
= m_typeinfo
[index
]->m_editor
;
2841 // ----------------------------------------------------------------------------
2843 // ----------------------------------------------------------------------------
2845 IMPLEMENT_ABSTRACT_CLASS( wxGridTableBase
, wxObject
)
2848 wxGridTableBase::wxGridTableBase()
2850 m_view
= (wxGrid
*) NULL
;
2851 m_attrProvider
= (wxGridCellAttrProvider
*) NULL
;
2854 wxGridTableBase::~wxGridTableBase()
2856 delete m_attrProvider
;
2859 void wxGridTableBase::SetAttrProvider(wxGridCellAttrProvider
*attrProvider
)
2861 delete m_attrProvider
;
2862 m_attrProvider
= attrProvider
;
2865 bool wxGridTableBase::CanHaveAttributes()
2867 if ( ! GetAttrProvider() )
2869 // use the default attr provider by default
2870 SetAttrProvider(new wxGridCellAttrProvider
);
2875 wxGridCellAttr
*wxGridTableBase::GetAttr(int row
, int col
, wxGridCellAttr::wxAttrKind kind
)
2877 if ( m_attrProvider
)
2878 return m_attrProvider
->GetAttr(row
, col
, kind
);
2880 return (wxGridCellAttr
*)NULL
;
2883 void wxGridTableBase::SetAttr(wxGridCellAttr
* attr
, int row
, int col
)
2885 if ( m_attrProvider
)
2887 attr
->SetKind(wxGridCellAttr::Cell
);
2888 m_attrProvider
->SetAttr(attr
, row
, col
);
2892 // as we take ownership of the pointer and don't store it, we must
2898 void wxGridTableBase::SetRowAttr(wxGridCellAttr
*attr
, int row
)
2900 if ( m_attrProvider
)
2902 attr
->SetKind(wxGridCellAttr::Row
);
2903 m_attrProvider
->SetRowAttr(attr
, row
);
2907 // as we take ownership of the pointer and don't store it, we must
2913 void wxGridTableBase::SetColAttr(wxGridCellAttr
*attr
, int col
)
2915 if ( m_attrProvider
)
2917 attr
->SetKind(wxGridCellAttr::Col
);
2918 m_attrProvider
->SetColAttr(attr
, col
);
2922 // as we take ownership of the pointer and don't store it, we must
2928 bool wxGridTableBase::InsertRows( size_t WXUNUSED(pos
),
2929 size_t WXUNUSED(numRows
) )
2931 wxFAIL_MSG( wxT("Called grid table class function InsertRows\nbut your derived table class does not override this function") );
2936 bool wxGridTableBase::AppendRows( size_t WXUNUSED(numRows
) )
2938 wxFAIL_MSG( wxT("Called grid table class function AppendRows\nbut your derived table class does not override this function"));
2943 bool wxGridTableBase::DeleteRows( size_t WXUNUSED(pos
),
2944 size_t WXUNUSED(numRows
) )
2946 wxFAIL_MSG( wxT("Called grid table class function DeleteRows\nbut your derived table class does not override this function"));
2951 bool wxGridTableBase::InsertCols( size_t WXUNUSED(pos
),
2952 size_t WXUNUSED(numCols
) )
2954 wxFAIL_MSG( wxT("Called grid table class function InsertCols\nbut your derived table class does not override this function"));
2959 bool wxGridTableBase::AppendCols( size_t WXUNUSED(numCols
) )
2961 wxFAIL_MSG(wxT("Called grid table class function AppendCols\nbut your derived table class does not override this function"));
2966 bool wxGridTableBase::DeleteCols( size_t WXUNUSED(pos
),
2967 size_t WXUNUSED(numCols
) )
2969 wxFAIL_MSG( wxT("Called grid table class function DeleteCols\nbut your derived table class does not override this function"));
2975 wxString
wxGridTableBase::GetRowLabelValue( int row
)
2978 s
<< row
+ 1; // RD: Starting the rows at zero confuses users, no matter
2979 // how much it makes sense to us geeks.
2983 wxString
wxGridTableBase::GetColLabelValue( int col
)
2985 // default col labels are:
2986 // cols 0 to 25 : A-Z
2987 // cols 26 to 675 : AA-ZZ
2992 for ( n
= 1; ; n
++ )
2994 s
+= (_T('A') + (wxChar
)( col%26
));
2996 if ( col
< 0 ) break;
2999 // reverse the string...
3001 for ( i
= 0; i
< n
; i
++ )
3010 wxString
wxGridTableBase::GetTypeName( int WXUNUSED(row
), int WXUNUSED(col
) )
3012 return wxGRID_VALUE_STRING
;
3015 bool wxGridTableBase::CanGetValueAs( int WXUNUSED(row
), int WXUNUSED(col
),
3016 const wxString
& typeName
)
3018 return typeName
== wxGRID_VALUE_STRING
;
3021 bool wxGridTableBase::CanSetValueAs( int row
, int col
, const wxString
& typeName
)
3023 return CanGetValueAs(row
, col
, typeName
);
3026 long wxGridTableBase::GetValueAsLong( int WXUNUSED(row
), int WXUNUSED(col
) )
3031 double wxGridTableBase::GetValueAsDouble( int WXUNUSED(row
), int WXUNUSED(col
) )
3036 bool wxGridTableBase::GetValueAsBool( int WXUNUSED(row
), int WXUNUSED(col
) )
3041 void wxGridTableBase::SetValueAsLong( int WXUNUSED(row
), int WXUNUSED(col
),
3042 long WXUNUSED(value
) )
3046 void wxGridTableBase::SetValueAsDouble( int WXUNUSED(row
), int WXUNUSED(col
),
3047 double WXUNUSED(value
) )
3051 void wxGridTableBase::SetValueAsBool( int WXUNUSED(row
), int WXUNUSED(col
),
3052 bool WXUNUSED(value
) )
3057 void* wxGridTableBase::GetValueAsCustom( int WXUNUSED(row
), int WXUNUSED(col
),
3058 const wxString
& WXUNUSED(typeName
) )
3063 void wxGridTableBase::SetValueAsCustom( int WXUNUSED(row
), int WXUNUSED(col
),
3064 const wxString
& WXUNUSED(typeName
),
3065 void* WXUNUSED(value
) )
3069 //////////////////////////////////////////////////////////////////////
3071 // Message class for the grid table to send requests and notifications
3075 wxGridTableMessage::wxGridTableMessage()
3077 m_table
= (wxGridTableBase
*) NULL
;
3083 wxGridTableMessage::wxGridTableMessage( wxGridTableBase
*table
, int id
,
3084 int commandInt1
, int commandInt2
)
3088 m_comInt1
= commandInt1
;
3089 m_comInt2
= commandInt2
;
3094 //////////////////////////////////////////////////////////////////////
3096 // A basic grid table for string data. An object of this class will
3097 // created by wxGrid if you don't specify an alternative table class.
3100 WX_DEFINE_OBJARRAY(wxGridStringArray
)
3102 IMPLEMENT_DYNAMIC_CLASS( wxGridStringTable
, wxGridTableBase
)
3104 wxGridStringTable::wxGridStringTable()
3109 wxGridStringTable::wxGridStringTable( int numRows
, int numCols
)
3112 m_data
.Alloc( numRows
);
3115 sa
.Alloc( numCols
);
3116 sa
.Add( wxEmptyString
, numCols
);
3118 m_data
.Add( sa
, numRows
);
3121 wxGridStringTable::~wxGridStringTable()
3125 int wxGridStringTable::GetNumberRows()
3127 return m_data
.GetCount();
3130 int wxGridStringTable::GetNumberCols()
3132 if ( m_data
.GetCount() > 0 )
3133 return m_data
[0].GetCount();
3138 wxString
wxGridStringTable::GetValue( int row
, int col
)
3140 wxCHECK_MSG( (row
< GetNumberRows()) && (col
< GetNumberCols()),
3142 _T("invalid row or column index in wxGridStringTable") );
3144 return m_data
[row
][col
];
3147 void wxGridStringTable::SetValue( int row
, int col
, const wxString
& value
)
3149 wxCHECK_RET( (row
< GetNumberRows()) && (col
< GetNumberCols()),
3150 _T("invalid row or column index in wxGridStringTable") );
3152 m_data
[row
][col
] = value
;
3155 bool wxGridStringTable::IsEmptyCell( int row
, int col
)
3157 wxCHECK_MSG( (row
< GetNumberRows()) && (col
< GetNumberCols()),
3159 _T("invalid row or column index in wxGridStringTable") );
3161 return (m_data
[row
][col
] == wxEmptyString
);
3164 void wxGridStringTable::Clear()
3167 int numRows
, numCols
;
3169 numRows
= m_data
.GetCount();
3172 numCols
= m_data
[0].GetCount();
3174 for ( row
= 0; row
< numRows
; row
++ )
3176 for ( col
= 0; col
< numCols
; col
++ )
3178 m_data
[row
][col
] = wxEmptyString
;
3185 bool wxGridStringTable::InsertRows( size_t pos
, size_t numRows
)
3187 size_t curNumRows
= m_data
.GetCount();
3188 size_t curNumCols
= ( curNumRows
> 0 ? m_data
[0].GetCount() :
3189 ( GetView() ? GetView()->GetNumberCols() : 0 ) );
3191 if ( pos
>= curNumRows
)
3193 return AppendRows( numRows
);
3197 sa
.Alloc( curNumCols
);
3198 sa
.Add( wxEmptyString
, curNumCols
);
3199 m_data
.Insert( sa
, pos
, numRows
);
3202 wxGridTableMessage
msg( this,
3203 wxGRIDTABLE_NOTIFY_ROWS_INSERTED
,
3207 GetView()->ProcessTableMessage( msg
);
3213 bool wxGridStringTable::AppendRows( size_t numRows
)
3215 size_t curNumRows
= m_data
.GetCount();
3216 size_t curNumCols
= ( curNumRows
> 0 ? m_data
[0].GetCount() :
3217 ( GetView() ? GetView()->GetNumberCols() : 0 ) );
3220 if ( curNumCols
> 0 )
3222 sa
.Alloc( curNumCols
);
3223 sa
.Add( wxEmptyString
, curNumCols
);
3226 m_data
.Add( sa
, numRows
);
3230 wxGridTableMessage
msg( this,
3231 wxGRIDTABLE_NOTIFY_ROWS_APPENDED
,
3234 GetView()->ProcessTableMessage( msg
);
3240 bool wxGridStringTable::DeleteRows( size_t pos
, size_t numRows
)
3242 size_t curNumRows
= m_data
.GetCount();
3244 if ( pos
>= curNumRows
)
3246 wxFAIL_MSG( wxString::Format
3248 wxT("Called wxGridStringTable::DeleteRows(pos=%lu, N=%lu)\nPos value is invalid for present table with %lu rows"),
3250 (unsigned long)numRows
,
3251 (unsigned long)curNumRows
3257 if ( numRows
> curNumRows
- pos
)
3259 numRows
= curNumRows
- pos
;
3262 if ( numRows
>= curNumRows
)
3268 m_data
.RemoveAt( pos
, numRows
);
3272 wxGridTableMessage
msg( this,
3273 wxGRIDTABLE_NOTIFY_ROWS_DELETED
,
3277 GetView()->ProcessTableMessage( msg
);
3283 bool wxGridStringTable::InsertCols( size_t pos
, size_t numCols
)
3287 size_t curNumRows
= m_data
.GetCount();
3288 size_t curNumCols
= ( curNumRows
> 0 ? m_data
[0].GetCount() :
3289 ( GetView() ? GetView()->GetNumberCols() : 0 ) );
3291 if ( pos
>= curNumCols
)
3293 return AppendCols( numCols
);
3296 for ( row
= 0; row
< curNumRows
; row
++ )
3298 for ( col
= pos
; col
< pos
+ numCols
; col
++ )
3300 m_data
[row
].Insert( wxEmptyString
, col
);
3305 wxGridTableMessage
msg( this,
3306 wxGRIDTABLE_NOTIFY_COLS_INSERTED
,
3310 GetView()->ProcessTableMessage( msg
);
3316 bool wxGridStringTable::AppendCols( size_t numCols
)
3320 size_t curNumRows
= m_data
.GetCount();
3324 // TODO: something better than this ?
3326 wxFAIL_MSG( wxT("Unable to append cols to a grid table with no rows.\nCall AppendRows() first") );
3331 for ( row
= 0; row
< curNumRows
; row
++ )
3333 m_data
[row
].Add( wxEmptyString
, numCols
);
3338 wxGridTableMessage
msg( this,
3339 wxGRIDTABLE_NOTIFY_COLS_APPENDED
,
3342 GetView()->ProcessTableMessage( msg
);
3348 bool wxGridStringTable::DeleteCols( size_t pos
, size_t numCols
)
3352 size_t curNumRows
= m_data
.GetCount();
3353 size_t curNumCols
= ( curNumRows
> 0 ? m_data
[0].GetCount() :
3354 ( GetView() ? GetView()->GetNumberCols() : 0 ) );
3356 if ( pos
>= curNumCols
)
3358 wxFAIL_MSG( wxString::Format
3360 wxT("Called wxGridStringTable::DeleteCols(pos=%lu, N=%lu)\nPos value is invalid for present table with %lu cols"),
3362 (unsigned long)numCols
,
3363 (unsigned long)curNumCols
3368 if ( numCols
> curNumCols
- pos
)
3370 numCols
= curNumCols
- pos
;
3373 for ( row
= 0; row
< curNumRows
; row
++ )
3375 if ( numCols
>= curNumCols
)
3377 m_data
[row
].Clear();
3381 m_data
[row
].RemoveAt( pos
, numCols
);
3386 wxGridTableMessage
msg( this,
3387 wxGRIDTABLE_NOTIFY_COLS_DELETED
,
3391 GetView()->ProcessTableMessage( msg
);
3397 wxString
wxGridStringTable::GetRowLabelValue( int row
)
3399 if ( row
> (int)(m_rowLabels
.GetCount()) - 1 )
3401 // using default label
3403 return wxGridTableBase::GetRowLabelValue( row
);
3407 return m_rowLabels
[ row
];
3411 wxString
wxGridStringTable::GetColLabelValue( int col
)
3413 if ( col
> (int)(m_colLabels
.GetCount()) - 1 )
3415 // using default label
3417 return wxGridTableBase::GetColLabelValue( col
);
3421 return m_colLabels
[ col
];
3425 void wxGridStringTable::SetRowLabelValue( int row
, const wxString
& value
)
3427 if ( row
> (int)(m_rowLabels
.GetCount()) - 1 )
3429 int n
= m_rowLabels
.GetCount();
3431 for ( i
= n
; i
<= row
; i
++ )
3433 m_rowLabels
.Add( wxGridTableBase::GetRowLabelValue(i
) );
3437 m_rowLabels
[row
] = value
;
3440 void wxGridStringTable::SetColLabelValue( int col
, const wxString
& value
)
3442 if ( col
> (int)(m_colLabels
.GetCount()) - 1 )
3444 int n
= m_colLabels
.GetCount();
3446 for ( i
= n
; i
<= col
; i
++ )
3448 m_colLabels
.Add( wxGridTableBase::GetColLabelValue(i
) );
3452 m_colLabels
[col
] = value
;
3457 //////////////////////////////////////////////////////////////////////
3458 //////////////////////////////////////////////////////////////////////
3460 IMPLEMENT_DYNAMIC_CLASS( wxGridRowLabelWindow
, wxWindow
)
3462 BEGIN_EVENT_TABLE( wxGridRowLabelWindow
, wxWindow
)
3463 EVT_PAINT( wxGridRowLabelWindow::OnPaint
)
3464 EVT_MOUSEWHEEL( wxGridRowLabelWindow::OnMouseWheel
)
3465 EVT_MOUSE_EVENTS( wxGridRowLabelWindow::OnMouseEvent
)
3466 EVT_KEY_DOWN( wxGridRowLabelWindow::OnKeyDown
)
3467 EVT_KEY_UP( wxGridRowLabelWindow::OnKeyUp
)
3470 wxGridRowLabelWindow::wxGridRowLabelWindow( wxGrid
*parent
,
3472 const wxPoint
&pos
, const wxSize
&size
)
3473 : wxWindow( parent
, id
, pos
, size
, wxWANTS_CHARS
|wxBORDER_NONE
)
3478 void wxGridRowLabelWindow::OnPaint( wxPaintEvent
& WXUNUSED(event
) )
3482 // NO - don't do this because it will set both the x and y origin
3483 // coords to match the parent scrolled window and we just want to
3484 // set the y coord - MB
3486 // m_owner->PrepareDC( dc );
3489 m_owner
->CalcUnscrolledPosition( 0, 0, &x
, &y
);
3490 dc
.SetDeviceOrigin( 0, -y
);
3492 wxArrayInt rows
= m_owner
->CalcRowLabelsExposed( GetUpdateRegion() );
3493 m_owner
->DrawRowLabels( dc
, rows
);
3497 void wxGridRowLabelWindow::OnMouseEvent( wxMouseEvent
& event
)
3499 m_owner
->ProcessRowLabelMouseEvent( event
);
3503 void wxGridRowLabelWindow::OnMouseWheel( wxMouseEvent
& event
)
3505 m_owner
->GetEventHandler()->ProcessEvent(event
);
3509 // This seems to be required for wxMotif otherwise the mouse
3510 // cursor must be in the cell edit control to get key events
3512 void wxGridRowLabelWindow::OnKeyDown( wxKeyEvent
& event
)
3514 if ( !m_owner
->GetEventHandler()->ProcessEvent( event
) ) event
.Skip();
3517 void wxGridRowLabelWindow::OnKeyUp( wxKeyEvent
& event
)
3519 if ( !m_owner
->GetEventHandler()->ProcessEvent( event
) ) event
.Skip();
3524 //////////////////////////////////////////////////////////////////////
3526 IMPLEMENT_DYNAMIC_CLASS( wxGridColLabelWindow
, wxWindow
)
3528 BEGIN_EVENT_TABLE( wxGridColLabelWindow
, wxWindow
)
3529 EVT_PAINT( wxGridColLabelWindow::OnPaint
)
3530 EVT_MOUSEWHEEL( wxGridColLabelWindow::OnMouseWheel
)
3531 EVT_MOUSE_EVENTS( wxGridColLabelWindow::OnMouseEvent
)
3532 EVT_KEY_DOWN( wxGridColLabelWindow::OnKeyDown
)
3533 EVT_KEY_UP( wxGridColLabelWindow::OnKeyUp
)
3536 wxGridColLabelWindow::wxGridColLabelWindow( wxGrid
*parent
,
3538 const wxPoint
&pos
, const wxSize
&size
)
3539 : wxWindow( parent
, id
, pos
, size
, wxWANTS_CHARS
|wxBORDER_NONE
)
3544 void wxGridColLabelWindow::OnPaint( wxPaintEvent
& WXUNUSED(event
) )
3548 // NO - don't do this because it will set both the x and y origin
3549 // coords to match the parent scrolled window and we just want to
3550 // set the x coord - MB
3552 // m_owner->PrepareDC( dc );
3555 m_owner
->CalcUnscrolledPosition( 0, 0, &x
, &y
);
3556 dc
.SetDeviceOrigin( -x
, 0 );
3558 wxArrayInt cols
= m_owner
->CalcColLabelsExposed( GetUpdateRegion() );
3559 m_owner
->DrawColLabels( dc
, cols
);
3563 void wxGridColLabelWindow::OnMouseEvent( wxMouseEvent
& event
)
3565 m_owner
->ProcessColLabelMouseEvent( event
);
3568 void wxGridColLabelWindow::OnMouseWheel( wxMouseEvent
& event
)
3570 m_owner
->GetEventHandler()->ProcessEvent(event
);
3574 // This seems to be required for wxMotif otherwise the mouse
3575 // cursor must be in the cell edit control to get key events
3577 void wxGridColLabelWindow::OnKeyDown( wxKeyEvent
& event
)
3579 if ( !m_owner
->GetEventHandler()->ProcessEvent( event
) ) event
.Skip();
3582 void wxGridColLabelWindow::OnKeyUp( wxKeyEvent
& event
)
3584 if ( !m_owner
->GetEventHandler()->ProcessEvent( event
) ) event
.Skip();
3589 //////////////////////////////////////////////////////////////////////
3591 IMPLEMENT_DYNAMIC_CLASS( wxGridCornerLabelWindow
, wxWindow
)
3593 BEGIN_EVENT_TABLE( wxGridCornerLabelWindow
, wxWindow
)
3594 EVT_MOUSEWHEEL( wxGridCornerLabelWindow::OnMouseWheel
)
3595 EVT_MOUSE_EVENTS( wxGridCornerLabelWindow::OnMouseEvent
)
3596 EVT_PAINT( wxGridCornerLabelWindow::OnPaint
)
3597 EVT_KEY_DOWN( wxGridCornerLabelWindow::OnKeyDown
)
3598 EVT_KEY_UP( wxGridCornerLabelWindow::OnKeyUp
)
3601 wxGridCornerLabelWindow::wxGridCornerLabelWindow( wxGrid
*parent
,
3603 const wxPoint
&pos
, const wxSize
&size
)
3604 : wxWindow( parent
, id
, pos
, size
, wxWANTS_CHARS
|wxBORDER_NONE
)
3609 void wxGridCornerLabelWindow::OnPaint( wxPaintEvent
& WXUNUSED(event
) )
3613 int client_height
= 0;
3614 int client_width
= 0;
3615 GetClientSize( &client_width
, &client_height
);
3617 dc
.SetPen( wxPen(wxSystemSettings::GetColour(wxSYS_COLOUR_3DDKSHADOW
),1, wxSOLID
) );
3618 dc
.DrawLine( client_width
-1, client_height
-1, client_width
-1, 0 );
3619 dc
.DrawLine( client_width
-1, client_height
-1, 0, client_height
-1 );
3620 dc
.DrawLine( 0, 0, client_width
, 0 );
3621 dc
.DrawLine( 0, 0, 0, client_height
);
3623 dc
.SetPen( *wxWHITE_PEN
);
3624 dc
.DrawLine( 1, 1, client_width
-1, 1 );
3625 dc
.DrawLine( 1, 1, 1, client_height
-1 );
3629 void wxGridCornerLabelWindow::OnMouseEvent( wxMouseEvent
& event
)
3631 m_owner
->ProcessCornerLabelMouseEvent( event
);
3635 void wxGridCornerLabelWindow::OnMouseWheel( wxMouseEvent
& event
)
3637 m_owner
->GetEventHandler()->ProcessEvent(event
);
3640 // This seems to be required for wxMotif otherwise the mouse
3641 // cursor must be in the cell edit control to get key events
3643 void wxGridCornerLabelWindow::OnKeyDown( wxKeyEvent
& event
)
3645 if ( !m_owner
->GetEventHandler()->ProcessEvent( event
) ) event
.Skip();
3648 void wxGridCornerLabelWindow::OnKeyUp( wxKeyEvent
& event
)
3650 if ( !m_owner
->GetEventHandler()->ProcessEvent( event
) ) event
.Skip();
3655 //////////////////////////////////////////////////////////////////////
3657 IMPLEMENT_DYNAMIC_CLASS( wxGridWindow
, wxWindow
)
3659 BEGIN_EVENT_TABLE( wxGridWindow
, wxWindow
)
3660 EVT_PAINT( wxGridWindow::OnPaint
)
3661 EVT_MOUSEWHEEL( wxGridWindow::OnMouseWheel
)
3662 EVT_MOUSE_EVENTS( wxGridWindow::OnMouseEvent
)
3663 EVT_KEY_DOWN( wxGridWindow::OnKeyDown
)
3664 EVT_KEY_UP( wxGridWindow::OnKeyUp
)
3665 EVT_SET_FOCUS( wxGridWindow::OnFocus
)
3666 EVT_KILL_FOCUS( wxGridWindow::OnFocus
)
3667 EVT_ERASE_BACKGROUND( wxGridWindow::OnEraseBackground
)
3670 wxGridWindow::wxGridWindow( wxGrid
*parent
,
3671 wxGridRowLabelWindow
*rowLblWin
,
3672 wxGridColLabelWindow
*colLblWin
,
3675 const wxSize
&size
)
3676 : wxWindow( parent
, id
, pos
, size
, wxWANTS_CHARS
| wxBORDER_NONE
| wxCLIP_CHILDREN
,
3677 wxT("grid window") )
3681 m_rowLabelWin
= rowLblWin
;
3682 m_colLabelWin
= colLblWin
;
3683 SetBackgroundColour(_T("WHITE"));
3687 wxGridWindow::~wxGridWindow()
3692 void wxGridWindow::OnPaint( wxPaintEvent
&WXUNUSED(event
) )
3694 wxPaintDC
dc( this );
3695 m_owner
->PrepareDC( dc
);
3696 wxRegion reg
= GetUpdateRegion();
3697 wxGridCellCoordsArray DirtyCells
= m_owner
->CalcCellsExposed( reg
);
3698 m_owner
->DrawGridCellArea( dc
, DirtyCells
);
3699 #if WXGRID_DRAW_LINES
3700 m_owner
->DrawAllGridLines( dc
, reg
);
3702 m_owner
->DrawGridSpace( dc
);
3703 m_owner
->DrawHighlight( dc
, DirtyCells
);
3707 void wxGridWindow::ScrollWindow( int dx
, int dy
, const wxRect
*rect
)
3709 wxWindow::ScrollWindow( dx
, dy
, rect
);
3710 m_rowLabelWin
->ScrollWindow( 0, dy
, rect
);
3711 m_colLabelWin
->ScrollWindow( dx
, 0, rect
);
3715 void wxGridWindow::OnMouseEvent( wxMouseEvent
& event
)
3717 m_owner
->ProcessGridCellMouseEvent( event
);
3720 void wxGridWindow::OnMouseWheel( wxMouseEvent
& event
)
3722 m_owner
->GetEventHandler()->ProcessEvent(event
);
3725 // This seems to be required for wxMotif/wxGTK otherwise the mouse
3726 // cursor must be in the cell edit control to get key events
3728 void wxGridWindow::OnKeyDown( wxKeyEvent
& event
)
3730 if ( !m_owner
->GetEventHandler()->ProcessEvent( event
) ) event
.Skip();
3733 void wxGridWindow::OnKeyUp( wxKeyEvent
& event
)
3735 if ( !m_owner
->GetEventHandler()->ProcessEvent( event
) ) event
.Skip();
3738 void wxGridWindow::OnEraseBackground( wxEraseEvent
& WXUNUSED(event
) )
3742 void wxGridWindow::OnFocus(wxFocusEvent
& event
)
3744 if ( !m_owner
->GetEventHandler()->ProcessEvent( event
) )
3748 //////////////////////////////////////////////////////////////////////
3750 // Internal Helper function for computing row or column from some
3751 // (unscrolled) coordinate value, using either
3752 // m_defaultRowHeight/m_defaultColWidth or binary search on array
3753 // of m_rowBottoms/m_ColRights to speed up the search!
3755 // Internal helper macros for simpler use of that function
3757 static int CoordToRowOrCol(int coord
, int defaultDist
, int minDist
,
3758 const wxArrayInt
& BorderArray
, int nMax
,
3761 #define internalXToCol(x) CoordToRowOrCol(x, m_defaultColWidth, \
3762 m_minAcceptableColWidth, \
3763 m_colRights, m_numCols, TRUE)
3764 #define internalYToRow(y) CoordToRowOrCol(y, m_defaultRowHeight, \
3765 m_minAcceptableRowHeight, \
3766 m_rowBottoms, m_numRows, TRUE)
3767 /////////////////////////////////////////////////////////////////////
3769 #if wxUSE_EXTENDED_RTTI
3770 WX_DEFINE_FLAGS( wxGridStyle
)
3772 wxBEGIN_FLAGS( wxGridStyle
)
3773 // new style border flags, we put them first to
3774 // use them for streaming out
3775 wxFLAGS_MEMBER(wxBORDER_SIMPLE
)
3776 wxFLAGS_MEMBER(wxBORDER_SUNKEN
)
3777 wxFLAGS_MEMBER(wxBORDER_DOUBLE
)
3778 wxFLAGS_MEMBER(wxBORDER_RAISED
)
3779 wxFLAGS_MEMBER(wxBORDER_STATIC
)
3780 wxFLAGS_MEMBER(wxBORDER_NONE
)
3782 // old style border flags
3783 wxFLAGS_MEMBER(wxSIMPLE_BORDER
)
3784 wxFLAGS_MEMBER(wxSUNKEN_BORDER
)
3785 wxFLAGS_MEMBER(wxDOUBLE_BORDER
)
3786 wxFLAGS_MEMBER(wxRAISED_BORDER
)
3787 wxFLAGS_MEMBER(wxSTATIC_BORDER
)
3788 wxFLAGS_MEMBER(wxBORDER
)
3790 // standard window styles
3791 wxFLAGS_MEMBER(wxTAB_TRAVERSAL
)
3792 wxFLAGS_MEMBER(wxCLIP_CHILDREN
)
3793 wxFLAGS_MEMBER(wxTRANSPARENT_WINDOW
)
3794 wxFLAGS_MEMBER(wxWANTS_CHARS
)
3795 wxFLAGS_MEMBER(wxFULL_REPAINT_ON_RESIZE
)
3796 wxFLAGS_MEMBER(wxALWAYS_SHOW_SB
)
3797 wxFLAGS_MEMBER(wxVSCROLL
)
3798 wxFLAGS_MEMBER(wxHSCROLL
)
3800 wxEND_FLAGS( wxGridStyle
)
3802 IMPLEMENT_DYNAMIC_CLASS_XTI(wxGrid
, wxScrolledWindow
,"wx/grid.h")
3804 wxBEGIN_PROPERTIES_TABLE(wxGrid
)
3805 wxHIDE_PROPERTY( Children
)
3806 wxPROPERTY_FLAGS( WindowStyle
, wxGridStyle
, long , SetWindowStyleFlag
, GetWindowStyleFlag
, , 0 /*flags*/ , wxT("Helpstring") , wxT("group")) // style
3807 wxEND_PROPERTIES_TABLE()
3809 wxBEGIN_HANDLERS_TABLE(wxGrid
)
3810 wxEND_HANDLERS_TABLE()
3812 wxCONSTRUCTOR_5( wxGrid
, wxWindow
* , Parent
, wxWindowID
, Id
, wxPoint
, Position
, wxSize
, Size
, long , WindowStyle
)
3815 TODO : Expose more information of a list's layout etc. via appropriate objects (Ã la NotebookPageInfo)
3818 IMPLEMENT_DYNAMIC_CLASS( wxGrid
, wxScrolledWindow
)
3821 BEGIN_EVENT_TABLE( wxGrid
, wxScrolledWindow
)
3822 EVT_PAINT( wxGrid::OnPaint
)
3823 EVT_SIZE( wxGrid::OnSize
)
3824 EVT_KEY_DOWN( wxGrid::OnKeyDown
)
3825 EVT_KEY_UP( wxGrid::OnKeyUp
)
3826 EVT_ERASE_BACKGROUND( wxGrid::OnEraseBackground
)
3831 // in order to make sure that a size event is not
3832 // trigerred in a unfinished state
3833 m_cornerLabelWin
= NULL
;
3834 m_rowLabelWin
= NULL
;
3835 m_colLabelWin
= NULL
;
3839 wxGrid::wxGrid( wxWindow
*parent
,
3844 const wxString
& name
)
3845 : wxScrolledWindow( parent
, id
, pos
, size
, (style
| wxWANTS_CHARS
), name
),
3846 m_colMinWidths(GRID_HASH_SIZE
),
3847 m_rowMinHeights(GRID_HASH_SIZE
)
3852 bool wxGrid::Create(wxWindow
*parent
, wxWindowID id
,
3853 const wxPoint
& pos
, const wxSize
& size
,
3854 long style
, const wxString
& name
)
3856 if (!wxScrolledWindow::Create(parent
, id
, pos
, size
,
3857 style
| wxWANTS_CHARS
, name
))
3860 m_colMinWidths
= wxLongToLongHashMap(GRID_HASH_SIZE
) ;
3861 m_rowMinHeights
= wxLongToLongHashMap(GRID_HASH_SIZE
) ;
3872 // Must do this or ~wxScrollHelper will pop the wrong event handler
3873 SetTargetWindow(this);
3875 wxSafeDecRef(m_defaultCellAttr
);
3877 #ifdef DEBUG_ATTR_CACHE
3878 size_t total
= gs_nAttrCacheHits
+ gs_nAttrCacheMisses
;
3879 wxPrintf(_T("wxGrid attribute cache statistics: "
3880 "total: %u, hits: %u (%u%%)\n"),
3881 total
, gs_nAttrCacheHits
,
3882 total
? (gs_nAttrCacheHits
*100) / total
: 0);
3888 delete m_typeRegistry
;
3894 // ----- internal init and update functions
3897 void wxGrid::Create()
3899 m_created
= FALSE
; // set to TRUE by CreateGrid
3901 m_table
= (wxGridTableBase
*) NULL
;
3904 m_cellEditCtrlEnabled
= FALSE
;
3906 m_defaultCellAttr
= new wxGridCellAttr();
3908 // Set default cell attributes
3909 m_defaultCellAttr
->SetDefAttr(m_defaultCellAttr
);
3910 m_defaultCellAttr
->SetKind(wxGridCellAttr::Default
);
3911 m_defaultCellAttr
->SetFont(GetFont());
3912 m_defaultCellAttr
->SetAlignment(wxALIGN_LEFT
, wxALIGN_TOP
);
3913 m_defaultCellAttr
->SetTextColour(
3914 wxSystemSettings::GetColour(wxSYS_COLOUR_WINDOWTEXT
));
3915 m_defaultCellAttr
->SetBackgroundColour(
3916 wxSystemSettings::GetColour(wxSYS_COLOUR_WINDOW
));
3917 m_defaultCellAttr
->SetRenderer(new wxGridCellStringRenderer
);
3918 m_defaultCellAttr
->SetEditor(new wxGridCellTextEditor
);
3923 m_currentCellCoords
= wxGridNoCellCoords
;
3925 m_rowLabelWidth
= WXGRID_DEFAULT_ROW_LABEL_WIDTH
;
3926 m_colLabelHeight
= WXGRID_DEFAULT_COL_LABEL_HEIGHT
;
3928 // create the type registry
3929 m_typeRegistry
= new wxGridTypeRegistry
;
3932 // subwindow components that make up the wxGrid
3933 m_cornerLabelWin
= new wxGridCornerLabelWindow( this,
3938 m_rowLabelWin
= new wxGridRowLabelWindow( this,
3943 m_colLabelWin
= new wxGridColLabelWindow( this,
3948 m_gridWin
= new wxGridWindow( this,
3955 SetTargetWindow( m_gridWin
);
3961 bool wxGrid::CreateGrid( int numRows
, int numCols
,
3962 wxGrid::wxGridSelectionModes selmode
)
3964 wxCHECK_MSG( !m_created
,
3966 wxT("wxGrid::CreateGrid or wxGrid::SetTable called more than once") );
3968 m_numRows
= numRows
;
3969 m_numCols
= numCols
;
3971 m_table
= new wxGridStringTable( m_numRows
, m_numCols
);
3972 m_table
->SetView( this );
3974 m_selection
= new wxGridSelection( this, selmode
);
3983 void wxGrid::SetSelectionMode(wxGrid::wxGridSelectionModes selmode
)
3985 wxCHECK_RET( m_created
,
3986 wxT("Called wxGrid::SetSelectionMode() before calling CreateGrid()") );
3988 m_selection
->SetSelectionMode( selmode
);
3991 wxGrid::wxGridSelectionModes
wxGrid::GetSelectionMode() const
3993 wxCHECK_MSG( m_created
, wxGrid::wxGridSelectCells
,
3994 wxT("Called wxGrid::GetSelectionMode() before calling CreateGrid()") );
3996 return m_selection
->GetSelectionMode();
3999 bool wxGrid::SetTable( wxGridTableBase
*table
, bool takeOwnership
,
4000 wxGrid::wxGridSelectionModes selmode
)
4004 // stop all processing
4009 wxGridTableBase
*t
=m_table
;
4022 m_numRows
= table
->GetNumberRows();
4023 m_numCols
= table
->GetNumberCols();
4026 m_table
->SetView( this );
4029 m_selection
= new wxGridSelection( this, selmode
);
4042 m_rowLabelWidth
= WXGRID_DEFAULT_ROW_LABEL_WIDTH
;
4043 m_colLabelHeight
= WXGRID_DEFAULT_COL_LABEL_HEIGHT
;
4045 if ( m_rowLabelWin
)
4047 m_labelBackgroundColour
= m_rowLabelWin
->GetBackgroundColour();
4051 m_labelBackgroundColour
= wxColour( _T("WHITE") );
4054 m_labelTextColour
= wxColour( _T("BLACK") );
4057 m_attrCache
.row
= -1;
4058 m_attrCache
.col
= -1;
4059 m_attrCache
.attr
= NULL
;
4061 // TODO: something better than this ?
4063 m_labelFont
= this->GetFont();
4064 m_labelFont
.SetWeight( wxBOLD
);
4066 m_rowLabelHorizAlign
= wxALIGN_CENTRE
;
4067 m_rowLabelVertAlign
= wxALIGN_CENTRE
;
4069 m_colLabelHorizAlign
= wxALIGN_CENTRE
;
4070 m_colLabelVertAlign
= wxALIGN_CENTRE
;
4071 m_colLabelTextOrientation
= wxHORIZONTAL
;
4073 m_defaultColWidth
= WXGRID_DEFAULT_COL_WIDTH
;
4074 m_defaultRowHeight
= m_gridWin
->GetCharHeight();
4076 m_minAcceptableColWidth
= WXGRID_MIN_COL_WIDTH
;
4077 m_minAcceptableRowHeight
= WXGRID_MIN_ROW_HEIGHT
;
4079 #if defined(__WXMOTIF__) || defined(__WXGTK__) // see also text ctrl sizing in ShowCellEditControl()
4080 m_defaultRowHeight
+= 8;
4082 m_defaultRowHeight
+= 4;
4085 m_gridLineColour
= wxColour( 192,192,192 );
4086 m_gridLinesEnabled
= TRUE
;
4087 m_cellHighlightColour
= *wxBLACK
;
4088 m_cellHighlightPenWidth
= 2;
4089 m_cellHighlightROPenWidth
= 1;
4091 m_cursorMode
= WXGRID_CURSOR_SELECT_CELL
;
4092 m_winCapture
= (wxWindow
*)NULL
;
4093 m_canDragRowSize
= TRUE
;
4094 m_canDragColSize
= TRUE
;
4095 m_canDragGridSize
= TRUE
;
4097 m_dragRowOrCol
= -1;
4098 m_isDragging
= FALSE
;
4099 m_startDragPos
= wxDefaultPosition
;
4101 m_waitForSlowClick
= FALSE
;
4103 m_rowResizeCursor
= wxCursor( wxCURSOR_SIZENS
);
4104 m_colResizeCursor
= wxCursor( wxCURSOR_SIZEWE
);
4106 m_currentCellCoords
= wxGridNoCellCoords
;
4108 m_selectingTopLeft
= wxGridNoCellCoords
;
4109 m_selectingBottomRight
= wxGridNoCellCoords
;
4110 m_selectionBackground
= wxSystemSettings::GetColour(wxSYS_COLOUR_HIGHLIGHT
);
4111 m_selectionForeground
= wxSystemSettings::GetColour(wxSYS_COLOUR_HIGHLIGHTTEXT
);
4113 m_editable
= TRUE
; // default for whole grid
4115 m_inOnKeyDown
= FALSE
;
4122 // ----------------------------------------------------------------------------
4123 // the idea is to call these functions only when necessary because they create
4124 // quite big arrays which eat memory mostly unnecessary - in particular, if
4125 // default widths/heights are used for all rows/columns, we may not use these
4128 // with some extra code, it should be possible to only store the
4129 // widths/heights different from default ones but this will be done later...
4130 // ----------------------------------------------------------------------------
4132 void wxGrid::InitRowHeights()
4134 m_rowHeights
.Empty();
4135 m_rowBottoms
.Empty();
4137 m_rowHeights
.Alloc( m_numRows
);
4138 m_rowBottoms
.Alloc( m_numRows
);
4142 m_rowHeights
.Add( m_defaultRowHeight
, m_numRows
);
4144 for ( int i
= 0; i
< m_numRows
; i
++ )
4146 rowBottom
+= m_defaultRowHeight
;
4147 m_rowBottoms
.Add( rowBottom
);
4151 void wxGrid::InitColWidths()
4153 m_colWidths
.Empty();
4154 m_colRights
.Empty();
4156 m_colWidths
.Alloc( m_numCols
);
4157 m_colRights
.Alloc( m_numCols
);
4160 m_colWidths
.Add( m_defaultColWidth
, m_numCols
);
4162 for ( int i
= 0; i
< m_numCols
; i
++ )
4164 colRight
+= m_defaultColWidth
;
4165 m_colRights
.Add( colRight
);
4169 int wxGrid::GetColWidth(int col
) const
4171 return m_colWidths
.IsEmpty() ? m_defaultColWidth
: m_colWidths
[col
];
4174 int wxGrid::GetColLeft(int col
) const
4176 return m_colRights
.IsEmpty() ? col
* m_defaultColWidth
4177 : m_colRights
[col
] - m_colWidths
[col
];
4180 int wxGrid::GetColRight(int col
) const
4182 return m_colRights
.IsEmpty() ? (col
+ 1) * m_defaultColWidth
4186 int wxGrid::GetRowHeight(int row
) const
4188 return m_rowHeights
.IsEmpty() ? m_defaultRowHeight
: m_rowHeights
[row
];
4191 int wxGrid::GetRowTop(int row
) const
4193 return m_rowBottoms
.IsEmpty() ? row
* m_defaultRowHeight
4194 : m_rowBottoms
[row
] - m_rowHeights
[row
];
4197 int wxGrid::GetRowBottom(int row
) const
4199 return m_rowBottoms
.IsEmpty() ? (row
+ 1) * m_defaultRowHeight
4200 : m_rowBottoms
[row
];
4203 void wxGrid::CalcDimensions()
4206 GetClientSize( &cw
, &ch
);
4208 if ( m_rowLabelWin
->IsShown() )
4209 cw
-= m_rowLabelWidth
;
4210 if ( m_colLabelWin
->IsShown() )
4211 ch
-= m_colLabelHeight
;
4214 int w
= m_numCols
> 0 ? GetColRight(m_numCols
- 1) + m_extraWidth
+ 1 : 0;
4215 int h
= m_numRows
> 0 ? GetRowBottom(m_numRows
- 1) + m_extraHeight
+ 1 : 0;
4217 // take into account editor if shown
4218 if( IsCellEditControlShown() )
4221 int r
= m_currentCellCoords
.GetRow();
4222 int c
= m_currentCellCoords
.GetCol();
4223 int x
= GetColLeft(c
);
4224 int y
= GetRowTop(r
);
4226 // how big is the editor
4227 wxGridCellAttr
* attr
= GetCellAttr(r
, c
);
4228 wxGridCellEditor
* editor
= attr
->GetEditor(this, r
, c
);
4229 editor
->GetControl()->GetSize(&w2
, &h2
);
4232 if( w2
> w
) w
= w2
;
4233 if( h2
> h
) h
= h2
;
4238 // preserve (more or less) the previous position
4240 GetViewStart( &x
, &y
);
4242 // ensure the position is valid for the new scroll ranges
4244 x
= wxMax( w
- 1, 0 );
4246 y
= wxMax( h
- 1, 0 );
4248 // do set scrollbar parameters
4249 SetScrollbars( GRID_SCROLL_LINE_X
, GRID_SCROLL_LINE_Y
,
4250 GetScrollX(w
), GetScrollY(h
), x
, y
,
4251 GetBatchCount() != 0);
4253 // if our OnSize() hadn't been called (it would if we have scrollbars), we
4254 // still must reposition the children
4259 void wxGrid::CalcWindowSizes()
4261 // escape if the window is has not been fully created yet
4263 if ( m_cornerLabelWin
== NULL
)
4267 GetClientSize( &cw
, &ch
);
4269 if ( m_cornerLabelWin
->IsShown() )
4270 m_cornerLabelWin
->SetSize( 0, 0, m_rowLabelWidth
, m_colLabelHeight
);
4272 if ( m_colLabelWin
->IsShown() )
4273 m_colLabelWin
->SetSize( m_rowLabelWidth
, 0, cw
-m_rowLabelWidth
, m_colLabelHeight
);
4275 if ( m_rowLabelWin
->IsShown() )
4276 m_rowLabelWin
->SetSize( 0, m_colLabelHeight
, m_rowLabelWidth
, ch
-m_colLabelHeight
);
4278 if ( m_gridWin
->IsShown() )
4279 m_gridWin
->SetSize( m_rowLabelWidth
, m_colLabelHeight
, cw
-m_rowLabelWidth
, ch
-m_colLabelHeight
);
4283 // this is called when the grid table sends a message to say that it
4284 // has been redimensioned
4286 bool wxGrid::Redimension( wxGridTableMessage
& msg
)
4289 bool result
= FALSE
;
4291 // Clear the attribute cache as the attribute might refer to a different
4292 // cell than stored in the cache after adding/removing rows/columns.
4294 // By the same reasoning, the editor should be dismissed if columns are
4295 // added or removed. And for consistency, it should IMHO always be
4296 // removed, not only if the cell "underneath" it actually changes.
4297 // For now, I intentionally do not save the editor's content as the
4298 // cell it might want to save that stuff to might no longer exist.
4299 HideCellEditControl();
4301 // if we were using the default widths/heights so far, we must change them
4303 if ( m_colWidths
.IsEmpty() )
4308 if ( m_rowHeights
.IsEmpty() )
4314 switch ( msg
.GetId() )
4316 case wxGRIDTABLE_NOTIFY_ROWS_INSERTED
:
4318 size_t pos
= msg
.GetCommandInt();
4319 int numRows
= msg
.GetCommandInt2();
4321 m_numRows
+= numRows
;
4323 if ( !m_rowHeights
.IsEmpty() )
4325 m_rowHeights
.Insert( m_defaultRowHeight
, pos
, numRows
);
4326 m_rowBottoms
.Insert( 0, pos
, numRows
);
4329 if ( pos
> 0 ) bottom
= m_rowBottoms
[pos
-1];
4331 for ( i
= pos
; i
< m_numRows
; i
++ )
4333 bottom
+= m_rowHeights
[i
];
4334 m_rowBottoms
[i
] = bottom
;
4337 if ( m_currentCellCoords
== wxGridNoCellCoords
)
4339 // if we have just inserted cols into an empty grid the current
4340 // cell will be undefined...
4342 SetCurrentCell( 0, 0 );
4346 m_selection
->UpdateRows( pos
, numRows
);
4347 wxGridCellAttrProvider
* attrProvider
= m_table
->GetAttrProvider();
4349 attrProvider
->UpdateAttrRows( pos
, numRows
);
4351 if ( !GetBatchCount() )
4354 m_rowLabelWin
->Refresh();
4360 case wxGRIDTABLE_NOTIFY_ROWS_APPENDED
:
4362 int numRows
= msg
.GetCommandInt();
4363 int oldNumRows
= m_numRows
;
4364 m_numRows
+= numRows
;
4366 if ( !m_rowHeights
.IsEmpty() )
4368 m_rowHeights
.Add( m_defaultRowHeight
, numRows
);
4369 m_rowBottoms
.Add( 0, numRows
);
4372 if ( oldNumRows
> 0 ) bottom
= m_rowBottoms
[oldNumRows
-1];
4374 for ( i
= oldNumRows
; i
< m_numRows
; i
++ )
4376 bottom
+= m_rowHeights
[i
];
4377 m_rowBottoms
[i
] = bottom
;
4380 if ( m_currentCellCoords
== wxGridNoCellCoords
)
4382 // if we have just inserted cols into an empty grid the current
4383 // cell will be undefined...
4385 SetCurrentCell( 0, 0 );
4387 if ( !GetBatchCount() )
4390 m_rowLabelWin
->Refresh();
4396 case wxGRIDTABLE_NOTIFY_ROWS_DELETED
:
4398 size_t pos
= msg
.GetCommandInt();
4399 int numRows
= msg
.GetCommandInt2();
4400 m_numRows
-= numRows
;
4402 if ( !m_rowHeights
.IsEmpty() )
4404 m_rowHeights
.RemoveAt( pos
, numRows
);
4405 m_rowBottoms
.RemoveAt( pos
, numRows
);
4408 for ( i
= 0; i
< m_numRows
; i
++ )
4410 h
+= m_rowHeights
[i
];
4411 m_rowBottoms
[i
] = h
;
4416 m_currentCellCoords
= wxGridNoCellCoords
;
4420 if ( m_currentCellCoords
.GetRow() >= m_numRows
)
4421 m_currentCellCoords
.Set( 0, 0 );
4425 m_selection
->UpdateRows( pos
, -((int)numRows
) );
4426 wxGridCellAttrProvider
* attrProvider
= m_table
->GetAttrProvider();
4428 attrProvider
->UpdateAttrRows( pos
, -((int)numRows
) );
4429 // ifdef'd out following patch from Paul Gammans
4431 // No need to touch column attributes, unless we
4432 // removed _all_ rows, in this case, we remove
4433 // all column attributes.
4434 // I hate to do this here, but the
4435 // needed data is not available inside UpdateAttrRows.
4436 if ( !GetNumberRows() )
4437 attrProvider
->UpdateAttrCols( 0, -GetNumberCols() );
4440 if ( !GetBatchCount() )
4443 m_rowLabelWin
->Refresh();
4449 case wxGRIDTABLE_NOTIFY_COLS_INSERTED
:
4451 size_t pos
= msg
.GetCommandInt();
4452 int numCols
= msg
.GetCommandInt2();
4453 m_numCols
+= numCols
;
4455 if ( !m_colWidths
.IsEmpty() )
4457 m_colWidths
.Insert( m_defaultColWidth
, pos
, numCols
);
4458 m_colRights
.Insert( 0, pos
, numCols
);
4461 if ( pos
> 0 ) right
= m_colRights
[pos
-1];
4463 for ( i
= pos
; i
< m_numCols
; i
++ )
4465 right
+= m_colWidths
[i
];
4466 m_colRights
[i
] = right
;
4469 if ( m_currentCellCoords
== wxGridNoCellCoords
)
4471 // if we have just inserted cols into an empty grid the current
4472 // cell will be undefined...
4474 SetCurrentCell( 0, 0 );
4478 m_selection
->UpdateCols( pos
, numCols
);
4479 wxGridCellAttrProvider
* attrProvider
= m_table
->GetAttrProvider();
4481 attrProvider
->UpdateAttrCols( pos
, numCols
);
4482 if ( !GetBatchCount() )
4485 m_colLabelWin
->Refresh();
4492 case wxGRIDTABLE_NOTIFY_COLS_APPENDED
:
4494 int numCols
= msg
.GetCommandInt();
4495 int oldNumCols
= m_numCols
;
4496 m_numCols
+= numCols
;
4497 if ( !m_colWidths
.IsEmpty() )
4499 m_colWidths
.Add( m_defaultColWidth
, numCols
);
4500 m_colRights
.Add( 0, numCols
);
4503 if ( oldNumCols
> 0 ) right
= m_colRights
[oldNumCols
-1];
4505 for ( i
= oldNumCols
; i
< m_numCols
; i
++ )
4507 right
+= m_colWidths
[i
];
4508 m_colRights
[i
] = right
;
4511 if ( m_currentCellCoords
== wxGridNoCellCoords
)
4513 // if we have just inserted cols into an empty grid the current
4514 // cell will be undefined...
4516 SetCurrentCell( 0, 0 );
4518 if ( !GetBatchCount() )
4521 m_colLabelWin
->Refresh();
4527 case wxGRIDTABLE_NOTIFY_COLS_DELETED
:
4529 size_t pos
= msg
.GetCommandInt();
4530 int numCols
= msg
.GetCommandInt2();
4531 m_numCols
-= numCols
;
4533 if ( !m_colWidths
.IsEmpty() )
4535 m_colWidths
.RemoveAt( pos
, numCols
);
4536 m_colRights
.RemoveAt( pos
, numCols
);
4539 for ( i
= 0; i
< m_numCols
; i
++ )
4541 w
+= m_colWidths
[i
];
4547 m_currentCellCoords
= wxGridNoCellCoords
;
4551 if ( m_currentCellCoords
.GetCol() >= m_numCols
)
4552 m_currentCellCoords
.Set( 0, 0 );
4556 m_selection
->UpdateCols( pos
, -((int)numCols
) );
4557 wxGridCellAttrProvider
* attrProvider
= m_table
->GetAttrProvider();
4559 attrProvider
->UpdateAttrCols( pos
, -((int)numCols
) );
4560 // ifdef'd out following patch from Paul Gammans
4562 // No need to touch row attributes, unless we
4563 // removed _all_ columns, in this case, we remove
4564 // all row attributes.
4565 // I hate to do this here, but the
4566 // needed data is not available inside UpdateAttrCols.
4567 if ( !GetNumberCols() )
4568 attrProvider
->UpdateAttrRows( 0, -GetNumberRows() );
4571 if ( !GetBatchCount() )
4574 m_colLabelWin
->Refresh();
4581 if (result
&& !GetBatchCount() )
4582 m_gridWin
->Refresh();
4587 wxArrayInt
wxGrid::CalcRowLabelsExposed( const wxRegion
& reg
)
4589 wxRegionIterator
iter( reg
);
4592 wxArrayInt rowlabels
;
4599 // TODO: remove this when we can...
4600 // There is a bug in wxMotif that gives garbage update
4601 // rectangles if you jump-scroll a long way by clicking the
4602 // scrollbar with middle button. This is a work-around
4604 #if defined(__WXMOTIF__)
4606 m_gridWin
->GetClientSize( &cw
, &ch
);
4607 if ( r
.GetTop() > ch
) r
.SetTop( 0 );
4608 r
.SetBottom( wxMin( r
.GetBottom(), ch
) );
4611 // logical bounds of update region
4614 CalcUnscrolledPosition( 0, r
.GetTop(), &dummy
, &top
);
4615 CalcUnscrolledPosition( 0, r
.GetBottom(), &dummy
, &bottom
);
4617 // find the row labels within these bounds
4620 for ( row
= internalYToRow(top
); row
< m_numRows
; row
++ )
4622 if ( GetRowBottom(row
) < top
)
4625 if ( GetRowTop(row
) > bottom
)
4628 rowlabels
.Add( row
);
4638 wxArrayInt
wxGrid::CalcColLabelsExposed( const wxRegion
& reg
)
4640 wxRegionIterator
iter( reg
);
4643 wxArrayInt colLabels
;
4650 // TODO: remove this when we can...
4651 // There is a bug in wxMotif that gives garbage update
4652 // rectangles if you jump-scroll a long way by clicking the
4653 // scrollbar with middle button. This is a work-around
4655 #if defined(__WXMOTIF__)
4657 m_gridWin
->GetClientSize( &cw
, &ch
);
4658 if ( r
.GetLeft() > cw
) r
.SetLeft( 0 );
4659 r
.SetRight( wxMin( r
.GetRight(), cw
) );
4662 // logical bounds of update region
4665 CalcUnscrolledPosition( r
.GetLeft(), 0, &left
, &dummy
);
4666 CalcUnscrolledPosition( r
.GetRight(), 0, &right
, &dummy
);
4668 // find the cells within these bounds
4671 for ( col
= internalXToCol(left
); col
< m_numCols
; col
++ )
4673 if ( GetColRight(col
) < left
)
4676 if ( GetColLeft(col
) > right
)
4679 colLabels
.Add( col
);
4688 wxGridCellCoordsArray
wxGrid::CalcCellsExposed( const wxRegion
& reg
)
4690 wxRegionIterator
iter( reg
);
4693 wxGridCellCoordsArray cellsExposed
;
4695 int left
, top
, right
, bottom
;
4700 // TODO: remove this when we can...
4701 // There is a bug in wxMotif that gives garbage update
4702 // rectangles if you jump-scroll a long way by clicking the
4703 // scrollbar with middle button. This is a work-around
4705 #if defined(__WXMOTIF__)
4707 m_gridWin
->GetClientSize( &cw
, &ch
);
4708 if ( r
.GetTop() > ch
) r
.SetTop( 0 );
4709 if ( r
.GetLeft() > cw
) r
.SetLeft( 0 );
4710 r
.SetRight( wxMin( r
.GetRight(), cw
) );
4711 r
.SetBottom( wxMin( r
.GetBottom(), ch
) );
4714 // logical bounds of update region
4716 CalcUnscrolledPosition( r
.GetLeft(), r
.GetTop(), &left
, &top
);
4717 CalcUnscrolledPosition( r
.GetRight(), r
.GetBottom(), &right
, &bottom
);
4719 // find the cells within these bounds
4722 for ( row
= internalYToRow(top
); row
< m_numRows
; row
++ )
4724 if ( GetRowBottom(row
) <= top
)
4727 if ( GetRowTop(row
) > bottom
)
4730 for ( col
= internalXToCol(left
); col
< m_numCols
; col
++ )
4732 if ( GetColRight(col
) <= left
)
4735 if ( GetColLeft(col
) > right
)
4738 cellsExposed
.Add( wxGridCellCoords( row
, col
) );
4745 return cellsExposed
;
4749 void wxGrid::ProcessRowLabelMouseEvent( wxMouseEvent
& event
)
4752 wxPoint
pos( event
.GetPosition() );
4753 CalcUnscrolledPosition( pos
.x
, pos
.y
, &x
, &y
);
4755 if ( event
.Dragging() )
4759 m_isDragging
= TRUE
;
4760 m_rowLabelWin
->CaptureMouse();
4763 if ( event
.LeftIsDown() )
4765 switch( m_cursorMode
)
4767 case WXGRID_CURSOR_RESIZE_ROW
:
4769 int cw
, ch
, left
, dummy
;
4770 m_gridWin
->GetClientSize( &cw
, &ch
);
4771 CalcUnscrolledPosition( 0, 0, &left
, &dummy
);
4773 wxClientDC
dc( m_gridWin
);
4776 GetRowTop(m_dragRowOrCol
) +
4777 GetRowMinimalHeight(m_dragRowOrCol
) );
4778 dc
.SetLogicalFunction(wxINVERT
);
4779 if ( m_dragLastPos
>= 0 )
4781 dc
.DrawLine( left
, m_dragLastPos
, left
+cw
, m_dragLastPos
);
4783 dc
.DrawLine( left
, y
, left
+cw
, y
);
4788 case WXGRID_CURSOR_SELECT_ROW
:
4789 if ( (row
= YToRow( y
)) >= 0 )
4793 m_selection
->SelectRow( row
,
4794 event
.ControlDown(),
4801 // default label to suppress warnings about "enumeration value
4802 // 'xxx' not handled in switch
4810 if ( m_isDragging
&& (event
.Entering() || event
.Leaving()) )
4815 if (m_rowLabelWin
->HasCapture()) m_rowLabelWin
->ReleaseMouse();
4816 m_isDragging
= FALSE
;
4819 // ------------ Entering or leaving the window
4821 if ( event
.Entering() || event
.Leaving() )
4823 ChangeCursorMode(WXGRID_CURSOR_SELECT_CELL
, m_rowLabelWin
);
4827 // ------------ Left button pressed
4829 else if ( event
.LeftDown() )
4831 // don't send a label click event for a hit on the
4832 // edge of the row label - this is probably the user
4833 // wanting to resize the row
4835 if ( YToEdgeOfRow(y
) < 0 )
4839 !SendEvent( wxEVT_GRID_LABEL_LEFT_CLICK
, row
, -1, event
) )
4841 if ( !event
.ShiftDown() && !event
.ControlDown() )
4845 if ( event
.ShiftDown() )
4847 m_selection
->SelectBlock( m_currentCellCoords
.GetRow(),
4850 GetNumberCols() - 1,
4851 event
.ControlDown(),
4858 m_selection
->SelectRow( row
,
4859 event
.ControlDown(),
4866 ChangeCursorMode(WXGRID_CURSOR_SELECT_ROW
, m_rowLabelWin
);
4871 // starting to drag-resize a row
4873 if ( CanDragRowSize() )
4874 ChangeCursorMode(WXGRID_CURSOR_RESIZE_ROW
, m_rowLabelWin
);
4879 // ------------ Left double click
4881 else if (event
.LeftDClick() )
4883 int row
= YToEdgeOfRow(y
);
4888 !SendEvent( wxEVT_GRID_LABEL_LEFT_DCLICK
, row
, -1, event
) )
4890 // no default action at the moment
4895 // adjust row height depending on label text
4896 AutoSizeRowLabelSize( row
);
4898 ChangeCursorMode(WXGRID_CURSOR_SELECT_CELL
, m_colLabelWin
);
4904 // ------------ Left button released
4906 else if ( event
.LeftUp() )
4908 if ( m_cursorMode
== WXGRID_CURSOR_RESIZE_ROW
)
4910 DoEndDragResizeRow();
4912 // Note: we are ending the event *after* doing
4913 // default processing in this case
4915 SendEvent( wxEVT_GRID_ROW_SIZE
, m_dragRowOrCol
, -1, event
);
4918 ChangeCursorMode(WXGRID_CURSOR_SELECT_CELL
, m_rowLabelWin
);
4923 // ------------ Right button down
4925 else if ( event
.RightDown() )
4929 !SendEvent( wxEVT_GRID_LABEL_RIGHT_CLICK
, row
, -1, event
) )
4931 // no default action at the moment
4936 // ------------ Right double click
4938 else if ( event
.RightDClick() )
4942 !SendEvent( wxEVT_GRID_LABEL_RIGHT_DCLICK
, row
, -1, event
) )
4944 // no default action at the moment
4949 // ------------ No buttons down and mouse moving
4951 else if ( event
.Moving() )
4953 m_dragRowOrCol
= YToEdgeOfRow( y
);
4954 if ( m_dragRowOrCol
>= 0 )
4956 if ( m_cursorMode
== WXGRID_CURSOR_SELECT_CELL
)
4958 // don't capture the mouse yet
4959 if ( CanDragRowSize() )
4960 ChangeCursorMode(WXGRID_CURSOR_RESIZE_ROW
, m_rowLabelWin
, FALSE
);
4963 else if ( m_cursorMode
!= WXGRID_CURSOR_SELECT_CELL
)
4965 ChangeCursorMode(WXGRID_CURSOR_SELECT_CELL
, m_rowLabelWin
, FALSE
);
4971 void wxGrid::ProcessColLabelMouseEvent( wxMouseEvent
& event
)
4974 wxPoint
pos( event
.GetPosition() );
4975 CalcUnscrolledPosition( pos
.x
, pos
.y
, &x
, &y
);
4977 if ( event
.Dragging() )
4981 m_isDragging
= TRUE
;
4982 m_colLabelWin
->CaptureMouse();
4985 if ( event
.LeftIsDown() )
4987 switch( m_cursorMode
)
4989 case WXGRID_CURSOR_RESIZE_COL
:
4991 int cw
, ch
, dummy
, top
;
4992 m_gridWin
->GetClientSize( &cw
, &ch
);
4993 CalcUnscrolledPosition( 0, 0, &dummy
, &top
);
4995 wxClientDC
dc( m_gridWin
);
4998 x
= wxMax( x
, GetColLeft(m_dragRowOrCol
) +
4999 GetColMinimalWidth(m_dragRowOrCol
));
5000 dc
.SetLogicalFunction(wxINVERT
);
5001 if ( m_dragLastPos
>= 0 )
5003 dc
.DrawLine( m_dragLastPos
, top
, m_dragLastPos
, top
+ch
);
5005 dc
.DrawLine( x
, top
, x
, top
+ch
);
5010 case WXGRID_CURSOR_SELECT_COL
:
5011 if ( (col
= XToCol( x
)) >= 0 )
5015 m_selection
->SelectCol( col
,
5016 event
.ControlDown(),
5023 // default label to suppress warnings about "enumeration value
5024 // 'xxx' not handled in switch
5032 if ( m_isDragging
&& (event
.Entering() || event
.Leaving()) )
5037 if (m_colLabelWin
->HasCapture()) m_colLabelWin
->ReleaseMouse();
5038 m_isDragging
= FALSE
;
5041 // ------------ Entering or leaving the window
5043 if ( event
.Entering() || event
.Leaving() )
5045 ChangeCursorMode(WXGRID_CURSOR_SELECT_CELL
, m_colLabelWin
);
5049 // ------------ Left button pressed
5051 else if ( event
.LeftDown() )
5053 // don't send a label click event for a hit on the
5054 // edge of the col label - this is probably the user
5055 // wanting to resize the col
5057 if ( XToEdgeOfCol(x
) < 0 )
5061 !SendEvent( wxEVT_GRID_LABEL_LEFT_CLICK
, -1, col
, event
) )
5063 if ( !event
.ShiftDown() && !event
.ControlDown() )
5067 if ( event
.ShiftDown() )
5069 m_selection
->SelectBlock( 0,
5070 m_currentCellCoords
.GetCol(),
5071 GetNumberRows() - 1, col
,
5072 event
.ControlDown(),
5079 m_selection
->SelectCol( col
,
5080 event
.ControlDown(),
5087 ChangeCursorMode(WXGRID_CURSOR_SELECT_COL
, m_colLabelWin
);
5092 // starting to drag-resize a col
5094 if ( CanDragColSize() )
5095 ChangeCursorMode(WXGRID_CURSOR_RESIZE_COL
, m_colLabelWin
);
5100 // ------------ Left double click
5102 if ( event
.LeftDClick() )
5104 int col
= XToEdgeOfCol(x
);
5109 ! SendEvent( wxEVT_GRID_LABEL_LEFT_DCLICK
, -1, col
, event
) )
5111 // no default action at the moment
5116 // adjust column width depending on label text
5117 AutoSizeColLabelSize( col
);
5119 ChangeCursorMode(WXGRID_CURSOR_SELECT_CELL
, m_colLabelWin
);
5125 // ------------ Left button released
5127 else if ( event
.LeftUp() )
5129 if ( m_cursorMode
== WXGRID_CURSOR_RESIZE_COL
)
5131 DoEndDragResizeCol();
5133 // Note: we are ending the event *after* doing
5134 // default processing in this case
5136 SendEvent( wxEVT_GRID_COL_SIZE
, -1, m_dragRowOrCol
, event
);
5139 ChangeCursorMode(WXGRID_CURSOR_SELECT_CELL
, m_colLabelWin
);
5144 // ------------ Right button down
5146 else if ( event
.RightDown() )
5150 !SendEvent( wxEVT_GRID_LABEL_RIGHT_CLICK
, -1, col
, event
) )
5152 // no default action at the moment
5157 // ------------ Right double click
5159 else if ( event
.RightDClick() )
5163 !SendEvent( wxEVT_GRID_LABEL_RIGHT_DCLICK
, -1, col
, event
) )
5165 // no default action at the moment
5170 // ------------ No buttons down and mouse moving
5172 else if ( event
.Moving() )
5174 m_dragRowOrCol
= XToEdgeOfCol( x
);
5175 if ( m_dragRowOrCol
>= 0 )
5177 if ( m_cursorMode
== WXGRID_CURSOR_SELECT_CELL
)
5179 // don't capture the cursor yet
5180 if ( CanDragColSize() )
5181 ChangeCursorMode(WXGRID_CURSOR_RESIZE_COL
, m_colLabelWin
, FALSE
);
5184 else if ( m_cursorMode
!= WXGRID_CURSOR_SELECT_CELL
)
5186 ChangeCursorMode(WXGRID_CURSOR_SELECT_CELL
, m_colLabelWin
, FALSE
);
5192 void wxGrid::ProcessCornerLabelMouseEvent( wxMouseEvent
& event
)
5194 if ( event
.LeftDown() )
5196 // indicate corner label by having both row and
5199 if ( !SendEvent( wxEVT_GRID_LABEL_LEFT_CLICK
, -1, -1, event
) )
5205 else if ( event
.LeftDClick() )
5207 SendEvent( wxEVT_GRID_LABEL_LEFT_DCLICK
, -1, -1, event
);
5210 else if ( event
.RightDown() )
5212 if ( !SendEvent( wxEVT_GRID_LABEL_RIGHT_CLICK
, -1, -1, event
) )
5214 // no default action at the moment
5218 else if ( event
.RightDClick() )
5220 if ( !SendEvent( wxEVT_GRID_LABEL_RIGHT_DCLICK
, -1, -1, event
) )
5222 // no default action at the moment
5227 void wxGrid::ChangeCursorMode(CursorMode mode
,
5232 static const wxChar
*cursorModes
[] =
5241 wxLogTrace(_T("grid"),
5242 _T("wxGrid cursor mode (mouse capture for %s): %s -> %s"),
5243 win
== m_colLabelWin
? _T("colLabelWin")
5244 : win
? _T("rowLabelWin")
5246 cursorModes
[m_cursorMode
], cursorModes
[mode
]);
5247 #endif // __WXDEBUG__
5249 if ( mode
== m_cursorMode
&&
5250 win
== m_winCapture
&&
5251 captureMouse
== (m_winCapture
!= NULL
))
5256 // by default use the grid itself
5262 if (m_winCapture
->HasCapture()) m_winCapture
->ReleaseMouse();
5263 m_winCapture
= (wxWindow
*)NULL
;
5266 m_cursorMode
= mode
;
5268 switch ( m_cursorMode
)
5270 case WXGRID_CURSOR_RESIZE_ROW
:
5271 win
->SetCursor( m_rowResizeCursor
);
5274 case WXGRID_CURSOR_RESIZE_COL
:
5275 win
->SetCursor( m_colResizeCursor
);
5279 win
->SetCursor( *wxSTANDARD_CURSOR
);
5282 // we need to capture mouse when resizing
5283 bool resize
= m_cursorMode
== WXGRID_CURSOR_RESIZE_ROW
||
5284 m_cursorMode
== WXGRID_CURSOR_RESIZE_COL
;
5286 if ( captureMouse
&& resize
)
5288 win
->CaptureMouse();
5293 void wxGrid::ProcessGridCellMouseEvent( wxMouseEvent
& event
)
5296 wxPoint
pos( event
.GetPosition() );
5297 CalcUnscrolledPosition( pos
.x
, pos
.y
, &x
, &y
);
5299 wxGridCellCoords coords
;
5300 XYToCell( x
, y
, coords
);
5302 int cell_rows
, cell_cols
;
5303 GetCellSize( coords
.GetRow(), coords
.GetCol(), &cell_rows
, &cell_cols
);
5304 if ((cell_rows
< 0) || (cell_cols
< 0))
5306 coords
.SetRow(coords
.GetRow() + cell_rows
);
5307 coords
.SetCol(coords
.GetCol() + cell_cols
);
5310 if ( event
.Dragging() )
5312 //wxLogDebug("pos(%d, %d) coords(%d, %d)", pos.x, pos.y, coords.GetRow(), coords.GetCol());
5314 // Don't start doing anything until the mouse has been drug at
5315 // least 3 pixels in any direction...
5318 if (m_startDragPos
== wxDefaultPosition
)
5320 m_startDragPos
= pos
;
5323 if (abs(m_startDragPos
.x
- pos
.x
) < 4 && abs(m_startDragPos
.y
- pos
.y
) < 4)
5327 m_isDragging
= TRUE
;
5328 if ( m_cursorMode
== WXGRID_CURSOR_SELECT_CELL
)
5330 // Hide the edit control, so it
5331 // won't interfer with drag-shrinking.
5332 if ( IsCellEditControlShown() )
5334 HideCellEditControl();
5335 SaveEditControlValue();
5338 // Have we captured the mouse yet?
5341 m_winCapture
= m_gridWin
;
5342 m_winCapture
->CaptureMouse();
5345 if ( coords
!= wxGridNoCellCoords
)
5347 if ( event
.ControlDown() )
5349 if ( m_selectingKeyboard
== wxGridNoCellCoords
)
5350 m_selectingKeyboard
= coords
;
5351 HighlightBlock ( m_selectingKeyboard
, coords
);
5355 if ( !IsSelection() )
5357 HighlightBlock( coords
, coords
);
5361 HighlightBlock( m_currentCellCoords
, coords
);
5365 if (! IsVisible(coords
))
5367 MakeCellVisible(coords
);
5368 // TODO: need to introduce a delay or something here. The
5369 // scrolling is way to fast, at least on MSW - also on GTK.
5373 else if ( m_cursorMode
== WXGRID_CURSOR_RESIZE_ROW
)
5375 int cw
, ch
, left
, dummy
;
5376 m_gridWin
->GetClientSize( &cw
, &ch
);
5377 CalcUnscrolledPosition( 0, 0, &left
, &dummy
);
5379 wxClientDC
dc( m_gridWin
);
5381 y
= wxMax( y
, GetRowTop(m_dragRowOrCol
) +
5382 GetRowMinimalHeight(m_dragRowOrCol
) );
5383 dc
.SetLogicalFunction(wxINVERT
);
5384 if ( m_dragLastPos
>= 0 )
5386 dc
.DrawLine( left
, m_dragLastPos
, left
+cw
, m_dragLastPos
);
5388 dc
.DrawLine( left
, y
, left
+cw
, y
);
5391 else if ( m_cursorMode
== WXGRID_CURSOR_RESIZE_COL
)
5393 int cw
, ch
, dummy
, top
;
5394 m_gridWin
->GetClientSize( &cw
, &ch
);
5395 CalcUnscrolledPosition( 0, 0, &dummy
, &top
);
5397 wxClientDC
dc( m_gridWin
);
5399 x
= wxMax( x
, GetColLeft(m_dragRowOrCol
) +
5400 GetColMinimalWidth(m_dragRowOrCol
) );
5401 dc
.SetLogicalFunction(wxINVERT
);
5402 if ( m_dragLastPos
>= 0 )
5404 dc
.DrawLine( m_dragLastPos
, top
, m_dragLastPos
, top
+ch
);
5406 dc
.DrawLine( x
, top
, x
, top
+ch
);
5413 m_isDragging
= FALSE
;
5414 m_startDragPos
= wxDefaultPosition
;
5416 // VZ: if we do this, the mode is reset to WXGRID_CURSOR_SELECT_CELL
5417 // immediately after it becomes WXGRID_CURSOR_RESIZE_ROW/COL under
5420 if ( event
.Entering() || event
.Leaving() )
5422 ChangeCursorMode(WXGRID_CURSOR_SELECT_CELL
);
5423 m_gridWin
->SetCursor( *wxSTANDARD_CURSOR
);
5428 // ------------ Left button pressed
5430 if ( event
.LeftDown() && coords
!= wxGridNoCellCoords
)
5432 if ( !SendEvent( wxEVT_GRID_CELL_LEFT_CLICK
,
5437 if ( !event
.ControlDown() )
5439 if ( event
.ShiftDown() )
5443 m_selection
->SelectBlock( m_currentCellCoords
.GetRow(),
5444 m_currentCellCoords
.GetCol(),
5447 event
.ControlDown(),
5453 else if ( XToEdgeOfCol(x
) < 0 &&
5454 YToEdgeOfRow(y
) < 0 )
5456 DisableCellEditControl();
5457 MakeCellVisible( coords
);
5459 if ( event
.ControlDown() )
5463 m_selection
->ToggleCellSelection( coords
.GetRow(),
5465 event
.ControlDown(),
5470 m_selectingTopLeft
= wxGridNoCellCoords
;
5471 m_selectingBottomRight
= wxGridNoCellCoords
;
5472 m_selectingKeyboard
= coords
;
5476 m_waitForSlowClick
= m_currentCellCoords
== coords
&& coords
!= wxGridNoCellCoords
;
5477 SetCurrentCell( coords
);
5480 if ( m_selection
->GetSelectionMode() !=
5481 wxGrid::wxGridSelectCells
)
5483 HighlightBlock( coords
, coords
);
5492 // ------------ Left double click
5494 else if ( event
.LeftDClick() && coords
!= wxGridNoCellCoords
)
5496 DisableCellEditControl();
5498 if ( XToEdgeOfCol(x
) < 0 && YToEdgeOfRow(y
) < 0 )
5500 SendEvent( wxEVT_GRID_CELL_LEFT_DCLICK
,
5508 // ------------ Left button released
5510 else if ( event
.LeftUp() )
5512 if ( m_cursorMode
== WXGRID_CURSOR_SELECT_CELL
)
5516 if (m_winCapture
->HasCapture()) m_winCapture
->ReleaseMouse();
5517 m_winCapture
= NULL
;
5520 if ( coords
== m_currentCellCoords
&& m_waitForSlowClick
&& CanEnableCellControl())
5523 EnableCellEditControl();
5525 wxGridCellAttr
* attr
= GetCellAttr(coords
);
5526 wxGridCellEditor
*editor
= attr
->GetEditor(this, coords
.GetRow(), coords
.GetCol());
5527 editor
->StartingClick();
5531 m_waitForSlowClick
= FALSE
;
5533 else if ( m_selectingTopLeft
!= wxGridNoCellCoords
&&
5534 m_selectingBottomRight
!= wxGridNoCellCoords
)
5538 m_selection
->SelectBlock( m_selectingTopLeft
.GetRow(),
5539 m_selectingTopLeft
.GetCol(),
5540 m_selectingBottomRight
.GetRow(),
5541 m_selectingBottomRight
.GetCol(),
5542 event
.ControlDown(),
5548 m_selectingTopLeft
= wxGridNoCellCoords
;
5549 m_selectingBottomRight
= wxGridNoCellCoords
;
5551 // Show the edit control, if it has been hidden for
5553 ShowCellEditControl();
5556 else if ( m_cursorMode
== WXGRID_CURSOR_RESIZE_ROW
)
5558 ChangeCursorMode(WXGRID_CURSOR_SELECT_CELL
);
5559 DoEndDragResizeRow();
5561 // Note: we are ending the event *after* doing
5562 // default processing in this case
5564 SendEvent( wxEVT_GRID_ROW_SIZE
, m_dragRowOrCol
, -1, event
);
5566 else if ( m_cursorMode
== WXGRID_CURSOR_RESIZE_COL
)
5568 ChangeCursorMode(WXGRID_CURSOR_SELECT_CELL
);
5569 DoEndDragResizeCol();
5571 // Note: we are ending the event *after* doing
5572 // default processing in this case
5574 SendEvent( wxEVT_GRID_COL_SIZE
, -1, m_dragRowOrCol
, event
);
5581 // ------------ Right button down
5583 else if ( event
.RightDown() && coords
!= wxGridNoCellCoords
)
5585 DisableCellEditControl();
5586 if ( !SendEvent( wxEVT_GRID_CELL_RIGHT_CLICK
,
5591 // no default action at the moment
5596 // ------------ Right double click
5598 else if ( event
.RightDClick() && coords
!= wxGridNoCellCoords
)
5600 DisableCellEditControl();
5601 if ( !SendEvent( wxEVT_GRID_CELL_RIGHT_DCLICK
,
5606 // no default action at the moment
5610 // ------------ Moving and no button action
5612 else if ( event
.Moving() && !event
.IsButton() )
5614 if( coords
.GetRow() < 0 || coords
.GetCol() < 0 )
5616 // out of grid cell area
5617 ChangeCursorMode(WXGRID_CURSOR_SELECT_CELL
);
5621 int dragRow
= YToEdgeOfRow( y
);
5622 int dragCol
= XToEdgeOfCol( x
);
5624 // Dragging on the corner of a cell to resize in both
5625 // directions is not implemented yet...
5627 if ( dragRow
>= 0 && dragCol
>= 0 )
5629 ChangeCursorMode(WXGRID_CURSOR_SELECT_CELL
);
5635 m_dragRowOrCol
= dragRow
;
5637 if ( m_cursorMode
== WXGRID_CURSOR_SELECT_CELL
)
5639 if ( CanDragRowSize() && CanDragGridSize() )
5640 ChangeCursorMode(WXGRID_CURSOR_RESIZE_ROW
);
5645 m_dragRowOrCol
= dragCol
;
5653 m_dragRowOrCol
= dragCol
;
5655 if ( m_cursorMode
== WXGRID_CURSOR_SELECT_CELL
)
5657 if ( CanDragColSize() && CanDragGridSize() )
5658 ChangeCursorMode(WXGRID_CURSOR_RESIZE_COL
);
5664 // Neither on a row or col edge
5666 if ( m_cursorMode
!= WXGRID_CURSOR_SELECT_CELL
)
5668 ChangeCursorMode(WXGRID_CURSOR_SELECT_CELL
);
5674 void wxGrid::DoEndDragResizeRow()
5676 if ( m_dragLastPos
>= 0 )
5678 // erase the last line and resize the row
5680 int cw
, ch
, left
, dummy
;
5681 m_gridWin
->GetClientSize( &cw
, &ch
);
5682 CalcUnscrolledPosition( 0, 0, &left
, &dummy
);
5684 wxClientDC
dc( m_gridWin
);
5686 dc
.SetLogicalFunction( wxINVERT
);
5687 dc
.DrawLine( left
, m_dragLastPos
, left
+cw
, m_dragLastPos
);
5688 HideCellEditControl();
5689 SaveEditControlValue();
5691 int rowTop
= GetRowTop(m_dragRowOrCol
);
5692 SetRowSize( m_dragRowOrCol
,
5693 wxMax( m_dragLastPos
- rowTop
, m_minAcceptableRowHeight
) );
5695 if ( !GetBatchCount() )
5697 // Only needed to get the correct rect.y:
5698 wxRect
rect ( CellToRect( m_dragRowOrCol
, 0 ) );
5700 CalcScrolledPosition(0, rect
.y
, &dummy
, &rect
.y
);
5701 rect
.width
= m_rowLabelWidth
;
5702 rect
.height
= ch
- rect
.y
;
5703 m_rowLabelWin
->Refresh( TRUE
, &rect
);
5705 // if there is a multicell block, paint all of it
5708 int i
, cell_rows
, cell_cols
, subtract_rows
= 0;
5709 int leftCol
= XToCol(left
);
5710 int rightCol
= internalXToCol(left
+cw
);
5713 for (i
=leftCol
; i
<rightCol
; i
++)
5715 GetCellSize(m_dragRowOrCol
, i
, &cell_rows
, &cell_cols
);
5716 if (cell_rows
< subtract_rows
)
5717 subtract_rows
= cell_rows
;
5719 rect
.y
= GetRowTop(m_dragRowOrCol
+ subtract_rows
);
5720 CalcScrolledPosition(0, rect
.y
, &dummy
, &rect
.y
);
5721 rect
.height
= ch
- rect
.y
;
5724 m_gridWin
->Refresh( FALSE
, &rect
);
5727 ShowCellEditControl();
5732 void wxGrid::DoEndDragResizeCol()
5734 if ( m_dragLastPos
>= 0 )
5736 // erase the last line and resize the col
5738 int cw
, ch
, dummy
, top
;
5739 m_gridWin
->GetClientSize( &cw
, &ch
);
5740 CalcUnscrolledPosition( 0, 0, &dummy
, &top
);
5742 wxClientDC
dc( m_gridWin
);
5744 dc
.SetLogicalFunction( wxINVERT
);
5745 dc
.DrawLine( m_dragLastPos
, top
, m_dragLastPos
, top
+ch
);
5746 HideCellEditControl();
5747 SaveEditControlValue();
5749 int colLeft
= GetColLeft(m_dragRowOrCol
);
5750 SetColSize( m_dragRowOrCol
,
5751 wxMax( m_dragLastPos
- colLeft
,
5752 GetColMinimalWidth(m_dragRowOrCol
) ) );
5754 if ( !GetBatchCount() )
5756 // Only needed to get the correct rect.x:
5757 wxRect
rect ( CellToRect( 0, m_dragRowOrCol
) );
5759 CalcScrolledPosition(rect
.x
, 0, &rect
.x
, &dummy
);
5760 rect
.width
= cw
- rect
.x
;
5761 rect
.height
= m_colLabelHeight
;
5762 m_colLabelWin
->Refresh( TRUE
, &rect
);
5764 // if there is a multicell block, paint all of it
5767 int i
, cell_rows
, cell_cols
, subtract_cols
= 0;
5768 int topRow
= YToRow(top
);
5769 int bottomRow
= internalYToRow(top
+cw
);
5772 for (i
=topRow
; i
<bottomRow
; i
++)
5774 GetCellSize(i
, m_dragRowOrCol
, &cell_rows
, &cell_cols
);
5775 if (cell_cols
< subtract_cols
)
5776 subtract_cols
= cell_cols
;
5778 rect
.x
= GetColLeft(m_dragRowOrCol
+ subtract_cols
);
5779 CalcScrolledPosition(rect
.x
, 0, &rect
.x
, &dummy
);
5780 rect
.width
= cw
- rect
.x
;
5783 m_gridWin
->Refresh( FALSE
, &rect
);
5786 ShowCellEditControl();
5793 // ------ interaction with data model
5795 bool wxGrid::ProcessTableMessage( wxGridTableMessage
& msg
)
5797 switch ( msg
.GetId() )
5799 case wxGRIDTABLE_REQUEST_VIEW_GET_VALUES
:
5800 return GetModelValues();
5802 case wxGRIDTABLE_REQUEST_VIEW_SEND_VALUES
:
5803 return SetModelValues();
5805 case wxGRIDTABLE_NOTIFY_ROWS_INSERTED
:
5806 case wxGRIDTABLE_NOTIFY_ROWS_APPENDED
:
5807 case wxGRIDTABLE_NOTIFY_ROWS_DELETED
:
5808 case wxGRIDTABLE_NOTIFY_COLS_INSERTED
:
5809 case wxGRIDTABLE_NOTIFY_COLS_APPENDED
:
5810 case wxGRIDTABLE_NOTIFY_COLS_DELETED
:
5811 return Redimension( msg
);
5820 // The behaviour of this function depends on the grid table class
5821 // Clear() function. For the default wxGridStringTable class the
5822 // behavious is to replace all cell contents with wxEmptyString but
5823 // not to change the number of rows or cols.
5825 void wxGrid::ClearGrid()
5829 if (IsCellEditControlEnabled())
5830 DisableCellEditControl();
5833 if ( !GetBatchCount() ) m_gridWin
->Refresh();
5838 bool wxGrid::InsertRows( int pos
, int numRows
, bool WXUNUSED(updateLabels
) )
5840 // TODO: something with updateLabels flag
5844 wxFAIL_MSG( wxT("Called wxGrid::InsertRows() before calling CreateGrid()") );
5850 if (IsCellEditControlEnabled())
5851 DisableCellEditControl();
5853 bool done
= m_table
->InsertRows( pos
, numRows
);
5856 // the table will have sent the results of the insert row
5857 // operation to this view object as a grid table message
5863 bool wxGrid::AppendRows( int numRows
, bool WXUNUSED(updateLabels
) )
5865 // TODO: something with updateLabels flag
5869 wxFAIL_MSG( wxT("Called wxGrid::AppendRows() before calling CreateGrid()") );
5875 bool done
= m_table
&& m_table
->AppendRows( numRows
);
5877 // the table will have sent the results of the append row
5878 // operation to this view object as a grid table message
5884 bool wxGrid::DeleteRows( int pos
, int numRows
, bool WXUNUSED(updateLabels
) )
5886 // TODO: something with updateLabels flag
5890 wxFAIL_MSG( wxT("Called wxGrid::DeleteRows() before calling CreateGrid()") );
5896 if (IsCellEditControlEnabled())
5897 DisableCellEditControl();
5899 bool done
= m_table
->DeleteRows( pos
, numRows
);
5901 // the table will have sent the results of the delete row
5902 // operation to this view object as a grid table message
5908 bool wxGrid::InsertCols( int pos
, int numCols
, bool WXUNUSED(updateLabels
) )
5910 // TODO: something with updateLabels flag
5914 wxFAIL_MSG( wxT("Called wxGrid::InsertCols() before calling CreateGrid()") );
5920 if (IsCellEditControlEnabled())
5921 DisableCellEditControl();
5923 bool done
= m_table
->InsertCols( pos
, numCols
);
5925 // the table will have sent the results of the insert col
5926 // operation to this view object as a grid table message
5932 bool wxGrid::AppendCols( int numCols
, bool WXUNUSED(updateLabels
) )
5934 // TODO: something with updateLabels flag
5938 wxFAIL_MSG( wxT("Called wxGrid::AppendCols() before calling CreateGrid()") );
5944 bool done
= m_table
->AppendCols( numCols
);
5946 // the table will have sent the results of the append col
5947 // operation to this view object as a grid table message
5953 bool wxGrid::DeleteCols( int pos
, int numCols
, bool WXUNUSED(updateLabels
) )
5955 // TODO: something with updateLabels flag
5959 wxFAIL_MSG( wxT("Called wxGrid::DeleteCols() before calling CreateGrid()") );
5965 if (IsCellEditControlEnabled())
5966 DisableCellEditControl();
5968 bool done
= m_table
->DeleteCols( pos
, numCols
);
5970 // the table will have sent the results of the delete col
5971 // operation to this view object as a grid table message
5979 // ----- event handlers
5982 // Generate a grid event based on a mouse event and
5983 // return the result of ProcessEvent()
5985 int wxGrid::SendEvent( const wxEventType type
,
5987 wxMouseEvent
& mouseEv
)
5992 if ( type
== wxEVT_GRID_ROW_SIZE
|| type
== wxEVT_GRID_COL_SIZE
)
5994 int rowOrCol
= (row
== -1 ? col
: row
);
5996 wxGridSizeEvent
gridEvt( GetId(),
6000 mouseEv
.GetX() + GetRowLabelSize(),
6001 mouseEv
.GetY() + GetColLabelSize(),
6002 mouseEv
.ControlDown(),
6003 mouseEv
.ShiftDown(),
6005 mouseEv
.MetaDown() );
6007 claimed
= GetEventHandler()->ProcessEvent(gridEvt
);
6008 vetoed
= !gridEvt
.IsAllowed();
6010 else if ( type
== wxEVT_GRID_RANGE_SELECT
)
6012 // Right now, it should _never_ end up here!
6013 wxGridRangeSelectEvent
gridEvt( GetId(),
6017 m_selectingBottomRight
,
6019 mouseEv
.ControlDown(),
6020 mouseEv
.ShiftDown(),
6022 mouseEv
.MetaDown() );
6024 claimed
= GetEventHandler()->ProcessEvent(gridEvt
);
6025 vetoed
= !gridEvt
.IsAllowed();
6029 wxGridEvent
gridEvt( GetId(),
6033 mouseEv
.GetX() + GetRowLabelSize(),
6034 mouseEv
.GetY() + GetColLabelSize(),
6036 mouseEv
.ControlDown(),
6037 mouseEv
.ShiftDown(),
6039 mouseEv
.MetaDown() );
6040 claimed
= GetEventHandler()->ProcessEvent(gridEvt
);
6041 vetoed
= !gridEvt
.IsAllowed();
6044 // A Veto'd event may not be `claimed' so test this first
6045 if (vetoed
) return -1;
6046 return claimed
? 1 : 0;
6050 // Generate a grid event of specified type and return the result
6051 // of ProcessEvent().
6053 int wxGrid::SendEvent( const wxEventType type
,
6059 if ( type
== wxEVT_GRID_ROW_SIZE
|| type
== wxEVT_GRID_COL_SIZE
)
6061 int rowOrCol
= (row
== -1 ? col
: row
);
6063 wxGridSizeEvent
gridEvt( GetId(),
6068 claimed
= GetEventHandler()->ProcessEvent(gridEvt
);
6069 vetoed
= !gridEvt
.IsAllowed();
6073 wxGridEvent
gridEvt( GetId(),
6078 claimed
= GetEventHandler()->ProcessEvent(gridEvt
);
6079 vetoed
= !gridEvt
.IsAllowed();
6082 // A Veto'd event may not be `claimed' so test this first
6083 if (vetoed
) return -1;
6084 return claimed
? 1 : 0;
6088 void wxGrid::OnPaint( wxPaintEvent
& WXUNUSED(event
) )
6090 wxPaintDC
dc(this); // needed to prevent zillions of paint events on MSW
6093 void wxGrid::Refresh(bool eraseb
, const wxRect
* rect
)
6095 // Don't do anything if between Begin/EndBatch...
6096 // EndBatch() will do all this on the last nested one anyway.
6097 if (! GetBatchCount())
6099 // Refresh to get correct scrolled position:
6100 wxScrolledWindow::Refresh(eraseb
,rect
);
6104 int rect_x
, rect_y
, rectWidth
, rectHeight
;
6105 int width_label
, width_cell
, height_label
, height_cell
;
6108 //Copy rectangle can get scroll offsets..
6109 rect_x
= rect
->GetX();
6110 rect_y
= rect
->GetY();
6111 rectWidth
= rect
->GetWidth();
6112 rectHeight
= rect
->GetHeight();
6114 width_label
= m_rowLabelWidth
- rect_x
;
6115 if (width_label
> rectWidth
) width_label
= rectWidth
;
6117 height_label
= m_colLabelHeight
- rect_y
;
6118 if (height_label
> rectHeight
) height_label
= rectHeight
;
6120 if (rect_x
> m_rowLabelWidth
)
6122 x
= rect_x
- m_rowLabelWidth
;
6123 width_cell
= rectWidth
;
6128 width_cell
= rectWidth
- (m_rowLabelWidth
- rect_x
);
6131 if (rect_y
> m_colLabelHeight
)
6133 y
= rect_y
- m_colLabelHeight
;
6134 height_cell
= rectHeight
;
6139 height_cell
= rectHeight
- (m_colLabelHeight
- rect_y
);
6142 // Paint corner label part intersecting rect.
6143 if ( width_label
> 0 && height_label
> 0 )
6145 wxRect
anotherrect(rect_x
, rect_y
, width_label
, height_label
);
6146 m_cornerLabelWin
->Refresh(eraseb
, &anotherrect
);
6149 // Paint col labels part intersecting rect.
6150 if ( width_cell
> 0 && height_label
> 0 )
6152 wxRect
anotherrect(x
, rect_y
, width_cell
, height_label
);
6153 m_colLabelWin
->Refresh(eraseb
, &anotherrect
);
6156 // Paint row labels part intersecting rect.
6157 if ( width_label
> 0 && height_cell
> 0 )
6159 wxRect
anotherrect(rect_x
, y
, width_label
, height_cell
);
6160 m_rowLabelWin
->Refresh(eraseb
, &anotherrect
);
6163 // Paint cell area part intersecting rect.
6164 if ( width_cell
> 0 && height_cell
> 0 )
6166 wxRect
anotherrect(x
, y
, width_cell
, height_cell
);
6167 m_gridWin
->Refresh(eraseb
, &anotherrect
);
6172 m_cornerLabelWin
->Refresh(eraseb
, NULL
);
6173 m_colLabelWin
->Refresh(eraseb
, NULL
);
6174 m_rowLabelWin
->Refresh(eraseb
, NULL
);
6175 m_gridWin
->Refresh(eraseb
, NULL
);
6180 void wxGrid::OnSize( wxSizeEvent
& event
)
6182 // position the child windows
6185 // don't call CalcDimensions() from here, the base class handles the size
6191 void wxGrid::OnKeyDown( wxKeyEvent
& event
)
6193 if ( m_inOnKeyDown
)
6195 // shouldn't be here - we are going round in circles...
6197 wxFAIL_MSG( wxT("wxGrid::OnKeyDown called while already active") );
6200 m_inOnKeyDown
= TRUE
;
6202 // propagate the event up and see if it gets processed
6204 wxWindow
*parent
= GetParent();
6205 wxKeyEvent
keyEvt( event
);
6206 keyEvt
.SetEventObject( parent
);
6208 if ( !parent
->GetEventHandler()->ProcessEvent( keyEvt
) )
6211 // try local handlers
6213 switch ( event
.GetKeyCode() )
6216 if ( event
.ControlDown() )
6218 MoveCursorUpBlock( event
.ShiftDown() );
6222 MoveCursorUp( event
.ShiftDown() );
6227 if ( event
.ControlDown() )
6229 MoveCursorDownBlock( event
.ShiftDown() );
6233 MoveCursorDown( event
.ShiftDown() );
6238 if ( event
.ControlDown() )
6240 MoveCursorLeftBlock( event
.ShiftDown() );
6244 MoveCursorLeft( event
.ShiftDown() );
6249 if ( event
.ControlDown() )
6251 MoveCursorRightBlock( event
.ShiftDown() );
6255 MoveCursorRight( event
.ShiftDown() );
6260 case WXK_NUMPAD_ENTER
:
6261 if ( event
.ControlDown() )
6263 event
.Skip(); // to let the edit control have the return
6267 if ( GetGridCursorRow() < GetNumberRows()-1 )
6269 MoveCursorDown( event
.ShiftDown() );
6273 // at the bottom of a column
6274 HideCellEditControl();
6275 SaveEditControlValue();
6285 if (event
.ShiftDown())
6287 if ( GetGridCursorCol() > 0 )
6289 MoveCursorLeft( FALSE
);
6294 HideCellEditControl();
6295 SaveEditControlValue();
6300 if ( GetGridCursorCol() < GetNumberCols()-1 )
6302 MoveCursorRight( FALSE
);
6307 HideCellEditControl();
6308 SaveEditControlValue();
6314 if ( event
.ControlDown() )
6316 MakeCellVisible( 0, 0 );
6317 SetCurrentCell( 0, 0 );
6326 if ( event
.ControlDown() )
6328 MakeCellVisible( m_numRows
-1, m_numCols
-1 );
6329 SetCurrentCell( m_numRows
-1, m_numCols
-1 );
6346 if ( event
.ControlDown() )
6350 m_selection
->ToggleCellSelection( m_currentCellCoords
.GetRow(),
6351 m_currentCellCoords
.GetCol(),
6352 event
.ControlDown(),
6359 if ( !IsEditable() )
6361 MoveCursorRight( FALSE
);
6364 // Otherwise fall through to default
6367 // is it possible to edit the current cell at all?
6368 if ( !IsCellEditControlEnabled() && CanEnableCellControl() )
6370 // yes, now check whether the cells editor accepts the key
6371 int row
= m_currentCellCoords
.GetRow();
6372 int col
= m_currentCellCoords
.GetCol();
6373 wxGridCellAttr
* attr
= GetCellAttr(row
, col
);
6374 wxGridCellEditor
*editor
= attr
->GetEditor(this, row
, col
);
6376 // <F2> is special and will always start editing, for
6377 // other keys - ask the editor itself
6378 if ( (event
.GetKeyCode() == WXK_F2
&& !event
.HasModifiers())
6379 || editor
->IsAcceptedKey(event
) )
6381 // ensure cell is visble
6382 MakeCellVisible(row
, col
);
6383 EnableCellEditControl();
6385 // a problem can arise if the cell is not completely
6386 // visible (even after calling MakeCellVisible the
6387 // control is not created and calling StartingKey will
6389 if( editor
->IsCreated() && m_cellEditCtrlEnabled
) editor
->StartingKey(event
);
6401 // let others process char events with modifiers or all
6402 // char events for readonly cells
6409 m_inOnKeyDown
= FALSE
;
6412 void wxGrid::OnKeyUp( wxKeyEvent
& event
)
6414 // try local handlers
6416 if ( event
.GetKeyCode() == WXK_SHIFT
)
6418 if ( m_selectingTopLeft
!= wxGridNoCellCoords
&&
6419 m_selectingBottomRight
!= wxGridNoCellCoords
)
6423 m_selection
->SelectBlock( m_selectingTopLeft
.GetRow(),
6424 m_selectingTopLeft
.GetCol(),
6425 m_selectingBottomRight
.GetRow(),
6426 m_selectingBottomRight
.GetCol(),
6427 event
.ControlDown(),
6434 m_selectingTopLeft
= wxGridNoCellCoords
;
6435 m_selectingBottomRight
= wxGridNoCellCoords
;
6436 m_selectingKeyboard
= wxGridNoCellCoords
;
6440 void wxGrid::OnEraseBackground(wxEraseEvent
&)
6444 void wxGrid::SetCurrentCell( const wxGridCellCoords
& coords
)
6446 if ( SendEvent( wxEVT_GRID_SELECT_CELL
, coords
.GetRow(), coords
.GetCol() ) )
6448 // the event has been intercepted - do nothing
6452 wxClientDC
dc(m_gridWin
);
6455 if ( m_currentCellCoords
!= wxGridNoCellCoords
)
6457 HideCellEditControl();
6458 DisableCellEditControl();
6460 if ( IsVisible( m_currentCellCoords
, FALSE
) )
6463 r
= BlockToDeviceRect(m_currentCellCoords
, m_currentCellCoords
);
6464 if ( !m_gridLinesEnabled
)
6472 wxGridCellCoordsArray cells
= CalcCellsExposed( r
);
6474 // Otherwise refresh redraws the highlight!
6475 m_currentCellCoords
= coords
;
6477 DrawGridCellArea(dc
,cells
);
6478 DrawAllGridLines( dc
, r
);
6482 m_currentCellCoords
= coords
;
6484 wxGridCellAttr
* attr
= GetCellAttr(coords
);
6485 DrawCellHighlight(dc
, attr
);
6490 void wxGrid::HighlightBlock( int topRow
, int leftCol
, int bottomRow
, int rightCol
)
6493 wxGridCellCoords updateTopLeft
, updateBottomRight
;
6497 if ( m_selection
->GetSelectionMode() == wxGrid::wxGridSelectRows
)
6500 rightCol
= GetNumberCols() - 1;
6502 else if ( m_selection
->GetSelectionMode() == wxGrid::wxGridSelectColumns
)
6505 bottomRow
= GetNumberRows() - 1;
6509 if ( topRow
> bottomRow
)
6516 if ( leftCol
> rightCol
)
6523 updateTopLeft
= wxGridCellCoords( topRow
, leftCol
);
6524 updateBottomRight
= wxGridCellCoords( bottomRow
, rightCol
);
6526 // First the case that we selected a completely new area
6527 if ( m_selectingTopLeft
== wxGridNoCellCoords
||
6528 m_selectingBottomRight
== wxGridNoCellCoords
)
6531 rect
= BlockToDeviceRect( wxGridCellCoords ( topRow
, leftCol
),
6532 wxGridCellCoords ( bottomRow
, rightCol
) );
6533 m_gridWin
->Refresh( FALSE
, &rect
);
6535 // Now handle changing an existing selection area.
6536 else if ( m_selectingTopLeft
!= updateTopLeft
||
6537 m_selectingBottomRight
!= updateBottomRight
)
6539 // Compute two optimal update rectangles:
6540 // Either one rectangle is a real subset of the
6541 // other, or they are (almost) disjoint!
6543 bool need_refresh
[4];
6547 need_refresh
[3] = FALSE
;
6550 // Store intermediate values
6551 wxCoord oldLeft
= m_selectingTopLeft
.GetCol();
6552 wxCoord oldTop
= m_selectingTopLeft
.GetRow();
6553 wxCoord oldRight
= m_selectingBottomRight
.GetCol();
6554 wxCoord oldBottom
= m_selectingBottomRight
.GetRow();
6556 // Determine the outer/inner coordinates.
6557 if (oldLeft
> leftCol
)
6563 if (oldTop
> topRow
)
6569 if (oldRight
< rightCol
)
6572 oldRight
= rightCol
;
6575 if (oldBottom
< bottomRow
)
6578 oldBottom
= bottomRow
;
6582 // Now, either the stuff marked old is the outer
6583 // rectangle or we don't have a situation where one
6584 // is contained in the other.
6586 if ( oldLeft
< leftCol
)
6588 // Refresh the newly selected or deselected
6589 // area to the left of the old or new selection.
6590 need_refresh
[0] = TRUE
;
6591 rect
[0] = BlockToDeviceRect( wxGridCellCoords ( oldTop
,
6593 wxGridCellCoords ( oldBottom
,
6597 if ( oldTop
< topRow
)
6599 // Refresh the newly selected or deselected
6600 // area above the old or new selection.
6601 need_refresh
[1] = TRUE
;
6602 rect
[1] = BlockToDeviceRect( wxGridCellCoords ( oldTop
,
6604 wxGridCellCoords ( topRow
- 1,
6608 if ( oldRight
> rightCol
)
6610 // Refresh the newly selected or deselected
6611 // area to the right of the old or new selection.
6612 need_refresh
[2] = TRUE
;
6613 rect
[2] = BlockToDeviceRect( wxGridCellCoords ( oldTop
,
6615 wxGridCellCoords ( oldBottom
,
6619 if ( oldBottom
> bottomRow
)
6621 // Refresh the newly selected or deselected
6622 // area below the old or new selection.
6623 need_refresh
[3] = TRUE
;
6624 rect
[3] = BlockToDeviceRect( wxGridCellCoords ( bottomRow
+ 1,
6626 wxGridCellCoords ( oldBottom
,
6630 // various Refresh() calls
6631 for (i
= 0; i
< 4; i
++ )
6632 if ( need_refresh
[i
] && rect
[i
] != wxGridNoCellRect
)
6633 m_gridWin
->Refresh( FALSE
, &(rect
[i
]) );
6636 m_selectingTopLeft
= updateTopLeft
;
6637 m_selectingBottomRight
= updateBottomRight
;
6641 // ------ functions to get/send data (see also public functions)
6644 bool wxGrid::GetModelValues()
6646 // Hide the editor, so it won't hide a changed value.
6647 HideCellEditControl();
6651 // all we need to do is repaint the grid
6653 m_gridWin
->Refresh();
6661 bool wxGrid::SetModelValues()
6665 // Disable the editor, so it won't hide a changed value.
6666 // Do we also want to save the current value of the editor first?
6668 DisableCellEditControl();
6672 for ( row
= 0; row
< m_numRows
; row
++ )
6674 for ( col
= 0; col
< m_numCols
; col
++ )
6676 m_table
->SetValue( row
, col
, GetCellValue(row
, col
) );
6688 // Note - this function only draws cells that are in the list of
6689 // exposed cells (usually set from the update region by
6690 // CalcExposedCells)
6692 void wxGrid::DrawGridCellArea( wxDC
& dc
, const wxGridCellCoordsArray
& cells
)
6694 if ( !m_numRows
|| !m_numCols
) return;
6696 int i
, numCells
= cells
.GetCount();
6697 int row
, col
, cell_rows
, cell_cols
;
6698 wxGridCellCoordsArray redrawCells
;
6700 for ( i
= numCells
-1; i
>= 0; i
-- )
6702 row
= cells
[i
].GetRow();
6703 col
= cells
[i
].GetCol();
6704 GetCellSize( row
, col
, &cell_rows
, &cell_cols
);
6706 // If this cell is part of a multicell block, find owner for repaint
6707 if ( cell_rows
<= 0 || cell_cols
<= 0 )
6709 wxGridCellCoords
cell(row
+cell_rows
, col
+cell_cols
);
6710 bool marked
= FALSE
;
6711 for ( int j
= 0; j
< numCells
; j
++ )
6713 if ( cell
== cells
[j
] )
6721 int count
= redrawCells
.GetCount();
6722 for (int j
= 0; j
< count
; j
++)
6724 if ( cell
== redrawCells
[j
] )
6730 if (!marked
) redrawCells
.Add( cell
);
6732 continue; // don't bother drawing this cell
6735 // If this cell is empty, find cell to left that might want to overflow
6736 if (m_table
&& m_table
->IsEmptyCell(row
, col
))
6738 for ( int l
= 0; l
< cell_rows
; l
++ )
6740 // find a cell in this row to left alreay marked for repaint
6742 for (int k
= 0; k
< int(redrawCells
.GetCount()); k
++)
6743 if ((redrawCells
[k
].GetCol() < left
) &&
6744 (redrawCells
[k
].GetRow() == row
))
6745 left
=redrawCells
[k
].GetCol();
6747 if (left
== col
) left
= 0; // oh well
6749 for (int j
= col
-1; j
>= left
; j
--)
6751 if (!m_table
->IsEmptyCell(row
+l
, j
))
6753 if (GetCellOverflow(row
+l
, j
))
6755 wxGridCellCoords
cell(row
+l
, j
);
6756 bool marked
= FALSE
;
6758 for (int k
= 0; k
< numCells
; k
++)
6760 if ( cell
== cells
[k
] )
6768 int count
= redrawCells
.GetCount();
6769 for (int k
= 0; k
< count
; k
++)
6771 if ( cell
== redrawCells
[k
] )
6777 if (!marked
) redrawCells
.Add( cell
);
6785 DrawCell( dc
, cells
[i
] );
6788 numCells
= redrawCells
.GetCount();
6790 for ( i
= numCells
- 1; i
>= 0; i
-- )
6792 DrawCell( dc
, redrawCells
[i
] );
6797 void wxGrid::DrawGridSpace( wxDC
& dc
)
6800 m_gridWin
->GetClientSize( &cw
, &ch
);
6803 CalcUnscrolledPosition( cw
, ch
, &right
, &bottom
);
6805 int rightCol
= m_numCols
> 0 ? GetColRight(m_numCols
- 1) : 0;
6806 int bottomRow
= m_numRows
> 0 ? GetRowBottom(m_numRows
- 1) : 0 ;
6808 if ( right
> rightCol
|| bottom
> bottomRow
)
6811 CalcUnscrolledPosition( 0, 0, &left
, &top
);
6813 dc
.SetBrush( wxBrush(GetDefaultCellBackgroundColour(), wxSOLID
) );
6814 dc
.SetPen( *wxTRANSPARENT_PEN
);
6816 if ( right
> rightCol
)
6818 dc
.DrawRectangle( rightCol
, top
, right
- rightCol
, ch
);
6821 if ( bottom
> bottomRow
)
6823 dc
.DrawRectangle( left
, bottomRow
, cw
, bottom
- bottomRow
);
6829 void wxGrid::DrawCell( wxDC
& dc
, const wxGridCellCoords
& coords
)
6831 int row
= coords
.GetRow();
6832 int col
= coords
.GetCol();
6834 if ( GetColWidth(col
) <= 0 || GetRowHeight(row
) <= 0 )
6837 // we draw the cell border ourselves
6838 #if !WXGRID_DRAW_LINES
6839 if ( m_gridLinesEnabled
)
6840 DrawCellBorder( dc
, coords
);
6843 wxGridCellAttr
* attr
= GetCellAttr(row
, col
);
6845 bool isCurrent
= coords
== m_currentCellCoords
;
6847 wxRect rect
= CellToRect( row
, col
);
6849 // if the editor is shown, we should use it and not the renderer
6850 // Note: However, only if it is really _shown_, i.e. not hidden!
6851 if ( isCurrent
&& IsCellEditControlShown() )
6853 wxGridCellEditor
*editor
= attr
->GetEditor(this, row
, col
);
6854 editor
->PaintBackground(rect
, attr
);
6859 // but all the rest is drawn by the cell renderer and hence may be
6861 wxGridCellRenderer
*renderer
= attr
->GetRenderer(this, row
, col
);
6862 renderer
->Draw(*this, *attr
, dc
, rect
, row
, col
, IsInSelection(coords
));
6869 void wxGrid::DrawCellHighlight( wxDC
& dc
, const wxGridCellAttr
*attr
)
6871 int row
= m_currentCellCoords
.GetRow();
6872 int col
= m_currentCellCoords
.GetCol();
6874 if ( GetColWidth(col
) <= 0 || GetRowHeight(row
) <= 0 )
6877 wxRect rect
= CellToRect(row
, col
);
6879 // hmmm... what could we do here to show that the cell is disabled?
6880 // for now, I just draw a thinner border than for the other ones, but
6881 // it doesn't look really good
6883 int penWidth
= attr
->IsReadOnly() ? m_cellHighlightROPenWidth
: m_cellHighlightPenWidth
;
6887 // The center of th drawn line is where the position/width/height of
6888 // the rectangle is actually at, (on wxMSW atr least,) so we will
6889 // reduce the size of the rectangle to compensate for the thickness of
6890 // the line. If this is too strange on non wxMSW platforms then
6891 // please #ifdef this appropriately.
6892 rect
.x
+= penWidth
/2;
6893 rect
.y
+= penWidth
/2;
6894 rect
.width
-= penWidth
-1;
6895 rect
.height
-= penWidth
-1;
6898 // Now draw the rectangle
6899 // use the cellHighlightColour if the cell is inside a selection, this
6900 // will ensure the cell is always visible.
6901 dc
.SetPen(wxPen(IsInSelection(row
,col
)?m_selectionForeground
:m_cellHighlightColour
, penWidth
, wxSOLID
));
6902 dc
.SetBrush(*wxTRANSPARENT_BRUSH
);
6903 dc
.DrawRectangle(rect
);
6907 // VZ: my experiments with 3d borders...
6909 // how to properly set colours for arbitrary bg?
6910 wxCoord x1
= rect
.x
,
6912 x2
= rect
.x
+ rect
.width
-1,
6913 y2
= rect
.y
+ rect
.height
-1;
6915 dc
.SetPen(*wxWHITE_PEN
);
6916 dc
.DrawLine(x1
, y1
, x2
, y1
);
6917 dc
.DrawLine(x1
, y1
, x1
, y2
);
6919 dc
.DrawLine(x1
+ 1, y2
- 1, x2
- 1, y2
- 1);
6920 dc
.DrawLine(x2
- 1, y1
+ 1, x2
- 1, y2
);
6922 dc
.SetPen(*wxBLACK_PEN
);
6923 dc
.DrawLine(x1
, y2
, x2
, y2
);
6924 dc
.DrawLine(x2
, y1
, x2
, y2
+1);
6929 void wxGrid::DrawCellBorder( wxDC
& dc
, const wxGridCellCoords
& coords
)
6931 int row
= coords
.GetRow();
6932 int col
= coords
.GetCol();
6933 if ( GetColWidth(col
) <= 0 || GetRowHeight(row
) <= 0 )
6936 dc
.SetPen( wxPen(GetGridLineColour(), 1, wxSOLID
) );
6938 wxRect rect
= CellToRect( row
, col
);
6940 // right hand border
6942 dc
.DrawLine( rect
.x
+ rect
.width
, rect
.y
,
6943 rect
.x
+ rect
.width
, rect
.y
+ rect
.height
+ 1 );
6947 dc
.DrawLine( rect
.x
, rect
.y
+ rect
.height
,
6948 rect
.x
+ rect
.width
, rect
.y
+ rect
.height
);
6951 void wxGrid::DrawHighlight(wxDC
& dc
,const wxGridCellCoordsArray
& cells
)
6953 // This if block was previously in wxGrid::OnPaint but that doesn't
6954 // seem to get called under wxGTK - MB
6956 if ( m_currentCellCoords
== wxGridNoCellCoords
&&
6957 m_numRows
&& m_numCols
)
6959 m_currentCellCoords
.Set(0, 0);
6962 if ( IsCellEditControlShown() )
6964 // don't show highlight when the edit control is shown
6968 // if the active cell was repainted, repaint its highlight too because it
6969 // might have been damaged by the grid lines
6970 size_t count
= cells
.GetCount();
6971 for ( size_t n
= 0; n
< count
; n
++ )
6973 if ( cells
[n
] == m_currentCellCoords
)
6975 wxGridCellAttr
* attr
= GetCellAttr(m_currentCellCoords
);
6976 DrawCellHighlight(dc
, attr
);
6984 // TODO: remove this ???
6985 // This is used to redraw all grid lines e.g. when the grid line colour
6988 void wxGrid::DrawAllGridLines( wxDC
& dc
, const wxRegion
& WXUNUSED(reg
) )
6990 #if !WXGRID_DRAW_LINES
6994 if ( !m_gridLinesEnabled
||
6996 !m_numCols
) return;
6998 int top
, bottom
, left
, right
;
7000 #if 0 //#ifndef __WXGTK__
7004 m_gridWin
->GetClientSize(&cw
, &ch
);
7006 // virtual coords of visible area
7008 CalcUnscrolledPosition( 0, 0, &left
, &top
);
7009 CalcUnscrolledPosition( cw
, ch
, &right
, &bottom
);
7014 reg
.GetBox(x
, y
, w
, h
);
7015 CalcUnscrolledPosition( x
, y
, &left
, &top
);
7016 CalcUnscrolledPosition( x
+ w
, y
+ h
, &right
, &bottom
);
7020 m_gridWin
->GetClientSize(&cw
, &ch
);
7021 CalcUnscrolledPosition( 0, 0, &left
, &top
);
7022 CalcUnscrolledPosition( cw
, ch
, &right
, &bottom
);
7025 // avoid drawing grid lines past the last row and col
7027 right
= wxMin( right
, GetColRight(m_numCols
- 1) );
7028 bottom
= wxMin( bottom
, GetRowBottom(m_numRows
- 1) );
7030 // no gridlines inside multicells, clip them out
7031 int leftCol
= internalXToCol(left
);
7032 int topRow
= internalYToRow(top
);
7033 int rightCol
= internalXToCol(right
);
7034 int bottomRow
= internalYToRow(bottom
);
7035 wxRegion
clippedcells(0, 0, cw
, ch
);
7038 int i
, j
, cell_rows
, cell_cols
;
7041 for (j
=topRow
; j
<bottomRow
; j
++)
7043 for (i
=leftCol
; i
<rightCol
; i
++)
7045 GetCellSize( j
, i
, &cell_rows
, &cell_cols
);
7046 if ((cell_rows
> 1) || (cell_cols
> 1))
7048 rect
= CellToRect(j
,i
);
7049 CalcScrolledPosition( rect
.x
, rect
.y
, &rect
.x
, &rect
.y
);
7050 clippedcells
.Subtract(rect
);
7052 else if ((cell_rows
< 0) || (cell_cols
< 0))
7054 rect
= CellToRect(j
+cell_rows
, i
+cell_cols
);
7055 CalcScrolledPosition( rect
.x
, rect
.y
, &rect
.x
, &rect
.y
);
7056 clippedcells
.Subtract(rect
);
7060 dc
.SetClippingRegion( clippedcells
);
7062 dc
.SetPen( wxPen(GetGridLineColour(), 1, wxSOLID
) );
7064 // horizontal grid lines
7066 // already declared above - int i;
7067 for ( i
= internalYToRow(top
); i
< m_numRows
; i
++ )
7069 int bot
= GetRowBottom(i
) - 1;
7078 dc
.DrawLine( left
, bot
, right
, bot
);
7083 // vertical grid lines
7085 for ( i
= internalXToCol(left
); i
< m_numCols
; i
++ )
7087 int colRight
= GetColRight(i
) - 1;
7088 if ( colRight
> right
)
7093 if ( colRight
>= left
)
7095 dc
.DrawLine( colRight
, top
, colRight
, bottom
);
7098 dc
.DestroyClippingRegion();
7102 void wxGrid::DrawRowLabels( wxDC
& dc
,const wxArrayInt
& rows
)
7104 if ( !m_numRows
) return;
7107 size_t numLabels
= rows
.GetCount();
7109 for ( i
= 0; i
< numLabels
; i
++ )
7111 DrawRowLabel( dc
, rows
[i
] );
7116 void wxGrid::DrawRowLabel( wxDC
& dc
, int row
)
7118 if ( GetRowHeight(row
) <= 0 )
7121 int rowTop
= GetRowTop(row
),
7122 rowBottom
= GetRowBottom(row
) - 1;
7124 dc
.SetPen( wxPen(wxSystemSettings::GetColour(wxSYS_COLOUR_3DDKSHADOW
),1, wxSOLID
) );
7125 dc
.DrawLine( m_rowLabelWidth
-1, rowTop
,
7126 m_rowLabelWidth
-1, rowBottom
);
7128 dc
.DrawLine( 0, rowTop
, 0, rowBottom
);
7130 dc
.DrawLine( 0, rowBottom
, m_rowLabelWidth
, rowBottom
);
7132 dc
.SetPen( *wxWHITE_PEN
);
7133 dc
.DrawLine( 1, rowTop
, 1, rowBottom
);
7134 dc
.DrawLine( 1, rowTop
, m_rowLabelWidth
-1, rowTop
);
7136 dc
.SetBackgroundMode( wxTRANSPARENT
);
7137 dc
.SetTextForeground( GetLabelTextColour() );
7138 dc
.SetFont( GetLabelFont() );
7141 GetRowLabelAlignment( &hAlign
, &vAlign
);
7145 rect
.SetY( GetRowTop(row
) + 2 );
7146 rect
.SetWidth( m_rowLabelWidth
- 4 );
7147 rect
.SetHeight( GetRowHeight(row
) - 4 );
7148 DrawTextRectangle( dc
, GetRowLabelValue( row
), rect
, hAlign
, vAlign
);
7152 void wxGrid::DrawColLabels( wxDC
& dc
,const wxArrayInt
& cols
)
7154 if ( !m_numCols
) return;
7157 size_t numLabels
= cols
.GetCount();
7159 for ( i
= 0; i
< numLabels
; i
++ )
7161 DrawColLabel( dc
, cols
[i
] );
7166 void wxGrid::DrawColLabel( wxDC
& dc
, int col
)
7168 if ( GetColWidth(col
) <= 0 )
7171 int colLeft
= GetColLeft(col
),
7172 colRight
= GetColRight(col
) - 1;
7174 dc
.SetPen( wxPen(wxSystemSettings::GetColour(wxSYS_COLOUR_3DDKSHADOW
),1, wxSOLID
) );
7175 dc
.DrawLine( colRight
, 0,
7176 colRight
, m_colLabelHeight
-1 );
7178 dc
.DrawLine( colLeft
, 0, colRight
, 0 );
7180 dc
.DrawLine( colLeft
, m_colLabelHeight
-1,
7181 colRight
+1, m_colLabelHeight
-1 );
7183 dc
.SetPen( *wxWHITE_PEN
);
7184 dc
.DrawLine( colLeft
, 1, colLeft
, m_colLabelHeight
-1 );
7185 dc
.DrawLine( colLeft
, 1, colRight
, 1 );
7187 dc
.SetBackgroundMode( wxTRANSPARENT
);
7188 dc
.SetTextForeground( GetLabelTextColour() );
7189 dc
.SetFont( GetLabelFont() );
7191 int hAlign
, vAlign
, orient
;
7192 GetColLabelAlignment( &hAlign
, &vAlign
);
7193 orient
= GetColLabelTextOrientation();
7196 rect
.SetX( colLeft
+ 2 );
7198 rect
.SetWidth( GetColWidth(col
) - 4 );
7199 rect
.SetHeight( m_colLabelHeight
- 4 );
7200 DrawTextRectangle( dc
, GetColLabelValue( col
), rect
, hAlign
, vAlign
, orient
);
7203 void wxGrid::DrawTextRectangle( wxDC
& dc
,
7204 const wxString
& value
,
7208 int textOrientation
)
7210 wxArrayString lines
;
7212 StringToLines( value
, lines
);
7215 //Forward to new API.
7216 DrawTextRectangle( dc
,
7225 void wxGrid::DrawTextRectangle( wxDC
& dc
,
7226 const wxArrayString
& lines
,
7230 int textOrientation
)
7232 long textWidth
, textHeight
;
7233 long lineWidth
, lineHeight
;
7236 dc
.SetClippingRegion( rect
);
7238 nLines
= lines
.GetCount();
7242 float x
= 0.0, y
= 0.0;
7244 if( textOrientation
== wxHORIZONTAL
)
7245 GetTextBoxSize(dc
, lines
, &textWidth
, &textHeight
);
7247 GetTextBoxSize( dc
, lines
, &textHeight
, &textWidth
);
7251 case wxALIGN_BOTTOM
:
7252 if( textOrientation
== wxHORIZONTAL
)
7253 y
= rect
.y
+ (rect
.height
- textHeight
- 1);
7255 x
= rect
.x
+ rect
.width
- textWidth
;
7258 case wxALIGN_CENTRE
:
7259 if( textOrientation
== wxHORIZONTAL
)
7260 y
= rect
.y
+ ((rect
.height
- textHeight
)/2);
7262 x
= rect
.x
+ ((rect
.width
- textWidth
)/2);
7267 if( textOrientation
== wxHORIZONTAL
)
7274 // Align each line of a multi-line label
7275 for( l
= 0; l
< nLines
; l
++ )
7277 dc
.GetTextExtent(lines
[l
], &lineWidth
, &lineHeight
);
7279 switch( horizAlign
)
7282 if( textOrientation
== wxHORIZONTAL
)
7283 x
= rect
.x
+ (rect
.width
- lineWidth
- 1);
7285 y
= rect
.y
+ lineWidth
+ 1;
7288 case wxALIGN_CENTRE
:
7289 if( textOrientation
== wxHORIZONTAL
)
7290 x
= rect
.x
+ ((rect
.width
- lineWidth
)/2);
7292 y
= rect
.y
+ rect
.height
- ((rect
.height
- lineWidth
)/2);
7297 if( textOrientation
== wxHORIZONTAL
)
7300 y
= rect
.y
+ rect
.height
- 1;
7304 if( textOrientation
== wxHORIZONTAL
)
7306 dc
.DrawText( lines
[l
], (int)x
, (int)y
);
7311 dc
.DrawRotatedText( lines
[l
], (int)x
, (int)y
, 90.0 );
7316 dc
.DestroyClippingRegion();
7320 // Split multi line text up into an array of strings. Any existing
7321 // contents of the string array are preserved.
7323 void wxGrid::StringToLines( const wxString
& value
, wxArrayString
& lines
)
7327 wxString eol
= wxTextFile::GetEOL( wxTextFileType_Unix
);
7328 wxString tVal
= wxTextFile::Translate( value
, wxTextFileType_Unix
);
7330 while ( startPos
< (int)tVal
.Length() )
7332 pos
= tVal
.Mid(startPos
).Find( eol
);
7337 else if ( pos
== 0 )
7339 lines
.Add( wxEmptyString
);
7343 lines
.Add( value
.Mid(startPos
, pos
) );
7347 if ( startPos
< (int)value
.Length() )
7349 lines
.Add( value
.Mid( startPos
) );
7354 void wxGrid::GetTextBoxSize( wxDC
& dc
,
7355 const wxArrayString
& lines
,
7356 long *width
, long *height
)
7363 for ( i
= 0; i
< lines
.GetCount(); i
++ )
7365 dc
.GetTextExtent( lines
[i
], &lineW
, &lineH
);
7366 w
= wxMax( w
, lineW
);
7375 // ------ Batch processing.
7377 void wxGrid::EndBatch()
7379 if ( m_batchCount
> 0 )
7382 if ( !m_batchCount
)
7385 m_rowLabelWin
->Refresh();
7386 m_colLabelWin
->Refresh();
7387 m_cornerLabelWin
->Refresh();
7388 m_gridWin
->Refresh();
7393 // Use this, rather than wxWindow::Refresh(), to force an immediate
7394 // repainting of the grid. Has no effect if you are already inside a
7395 // BeginBatch / EndBatch block.
7397 void wxGrid::ForceRefresh()
7405 // ------ Edit control functions
7409 void wxGrid::EnableEditing( bool edit
)
7411 // TODO: improve this ?
7413 if ( edit
!= m_editable
)
7415 if(!edit
) EnableCellEditControl(edit
);
7421 void wxGrid::EnableCellEditControl( bool enable
)
7426 if ( m_currentCellCoords
== wxGridNoCellCoords
)
7427 SetCurrentCell( 0, 0 );
7429 if ( enable
!= m_cellEditCtrlEnabled
)
7433 if (SendEvent( wxEVT_GRID_EDITOR_SHOWN
) <0)
7436 // this should be checked by the caller!
7437 wxASSERT_MSG( CanEnableCellControl(),
7438 _T("can't enable editing for this cell!") );
7440 // do it before ShowCellEditControl()
7441 m_cellEditCtrlEnabled
= enable
;
7443 ShowCellEditControl();
7447 //FIXME:add veto support
7448 SendEvent( wxEVT_GRID_EDITOR_HIDDEN
);
7450 HideCellEditControl();
7451 SaveEditControlValue();
7453 // do it after HideCellEditControl()
7454 m_cellEditCtrlEnabled
= enable
;
7459 bool wxGrid::IsCurrentCellReadOnly() const
7462 wxGridCellAttr
* attr
= ((wxGrid
*)this)->GetCellAttr(m_currentCellCoords
);
7463 bool readonly
= attr
->IsReadOnly();
7469 bool wxGrid::CanEnableCellControl() const
7471 return m_editable
&& (m_currentCellCoords
!= wxGridNoCellCoords
) &&
7472 !IsCurrentCellReadOnly();
7476 bool wxGrid::IsCellEditControlEnabled() const
7478 // the cell edit control might be disable for all cells or just for the
7479 // current one if it's read only
7480 return m_cellEditCtrlEnabled
? !IsCurrentCellReadOnly() : FALSE
;
7483 bool wxGrid::IsCellEditControlShown() const
7485 bool isShown
= FALSE
;
7487 if ( m_cellEditCtrlEnabled
)
7489 int row
= m_currentCellCoords
.GetRow();
7490 int col
= m_currentCellCoords
.GetCol();
7491 wxGridCellAttr
* attr
= GetCellAttr(row
, col
);
7492 wxGridCellEditor
* editor
= attr
->GetEditor((wxGrid
*) this, row
, col
);
7497 if ( editor
->IsCreated() )
7499 isShown
= editor
->GetControl()->IsShown();
7509 void wxGrid::ShowCellEditControl()
7511 if ( IsCellEditControlEnabled() )
7513 if ( !IsVisible( m_currentCellCoords
) )
7515 m_cellEditCtrlEnabled
= FALSE
;
7520 wxRect rect
= CellToRect( m_currentCellCoords
);
7521 int row
= m_currentCellCoords
.GetRow();
7522 int col
= m_currentCellCoords
.GetCol();
7524 // if this is part of a multicell, find owner (topleft)
7525 int cell_rows
, cell_cols
;
7526 GetCellSize( row
, col
, &cell_rows
, &cell_cols
);
7527 if ( cell_rows
<= 0 || cell_cols
<= 0 )
7531 m_currentCellCoords
.SetRow( row
);
7532 m_currentCellCoords
.SetCol( col
);
7535 // convert to scrolled coords
7537 CalcScrolledPosition( rect
.x
, rect
.y
, &rect
.x
, &rect
.y
);
7539 // done in PaintBackground()
7541 // erase the highlight and the cell contents because the editor
7542 // might not cover the entire cell
7543 wxClientDC
dc( m_gridWin
);
7545 dc
.SetBrush(*wxLIGHT_GREY_BRUSH
); //wxBrush(attr->GetBackgroundColour(), wxSOLID));
7546 dc
.SetPen(*wxTRANSPARENT_PEN
);
7547 dc
.DrawRectangle(rect
);
7550 // cell is shifted by one pixel
7551 // However, don't allow x or y to become negative
7552 // since the SetSize() method interprets that as
7559 wxGridCellAttr
* attr
= GetCellAttr(row
, col
);
7560 wxGridCellEditor
* editor
= attr
->GetEditor(this, row
, col
);
7561 if ( !editor
->IsCreated() )
7563 editor
->Create(m_gridWin
, -1,
7564 new wxGridCellEditorEvtHandler(this, editor
));
7566 wxGridEditorCreatedEvent
evt(GetId(),
7567 wxEVT_GRID_EDITOR_CREATED
,
7571 editor
->GetControl());
7572 GetEventHandler()->ProcessEvent(evt
);
7576 // resize editor to overflow into righthand cells if allowed
7577 int maxWidth
= rect
.width
;
7578 wxString value
= GetCellValue(row
, col
);
7579 if ( (value
!= wxEmptyString
) && (attr
->GetOverflow()) )
7582 GetTextExtent(value
, &maxWidth
, &y
,
7583 NULL
, NULL
, &attr
->GetFont());
7584 if (maxWidth
< rect
.width
) maxWidth
= rect
.width
;
7586 int client_right
= m_gridWin
->GetClientSize().GetWidth();
7587 if (rect
.x
+maxWidth
> client_right
)
7588 maxWidth
= client_right
- rect
.x
;
7590 if ((maxWidth
> rect
.width
) && (col
< m_numCols
) && m_table
)
7592 GetCellSize( row
, col
, &cell_rows
, &cell_cols
);
7593 // may have changed earlier
7594 for (int i
= col
+cell_cols
; i
< m_numCols
; i
++)
7597 GetCellSize( row
, i
, &c_rows
, &c_cols
);
7598 // looks weird going over a multicell
7599 if (m_table
->IsEmptyCell(row
,i
) &&
7600 (rect
.width
< maxWidth
) && (c_rows
== 1))
7601 rect
.width
+= GetColWidth(i
);
7605 if (rect
.GetRight() > client_right
)
7606 rect
.SetRight(client_right
-1);
7609 editor
->SetCellAttr(attr
);
7610 editor
->SetSize( rect
);
7611 editor
->Show( TRUE
, attr
);
7613 // recalc dimensions in case we need to
7614 // expand the scrolled window to account for editor
7617 editor
->BeginEdit(row
, col
, this);
7618 editor
->SetCellAttr(NULL
);
7627 void wxGrid::HideCellEditControl()
7629 if ( IsCellEditControlEnabled() )
7631 int row
= m_currentCellCoords
.GetRow();
7632 int col
= m_currentCellCoords
.GetCol();
7634 wxGridCellAttr
* attr
= GetCellAttr(row
, col
);
7635 wxGridCellEditor
*editor
= attr
->GetEditor(this, row
, col
);
7636 editor
->Show( FALSE
);
7639 m_gridWin
->SetFocus();
7640 // refresh whole row to the right
7641 wxRect
rect( CellToRect(row
, col
) );
7642 CalcScrolledPosition(rect
.x
, rect
.y
, &rect
.x
, &rect
.y
);
7643 rect
.width
= m_gridWin
->GetClientSize().GetWidth() - rect
.x
;
7644 m_gridWin
->Refresh( FALSE
, &rect
);
7649 void wxGrid::SaveEditControlValue()
7651 if ( IsCellEditControlEnabled() )
7653 int row
= m_currentCellCoords
.GetRow();
7654 int col
= m_currentCellCoords
.GetCol();
7656 wxString oldval
= GetCellValue(row
,col
);
7658 wxGridCellAttr
* attr
= GetCellAttr(row
, col
);
7659 wxGridCellEditor
* editor
= attr
->GetEditor(this, row
, col
);
7660 bool changed
= editor
->EndEdit(row
, col
, this);
7667 if ( SendEvent( wxEVT_GRID_CELL_CHANGE
,
7668 m_currentCellCoords
.GetRow(),
7669 m_currentCellCoords
.GetCol() ) < 0 ) {
7671 // Event has been vetoed, set the data back.
7672 SetCellValue(row
,col
,oldval
);
7680 // ------ Grid location functions
7681 // Note that all of these functions work with the logical coordinates of
7682 // grid cells and labels so you will need to convert from device
7683 // coordinates for mouse events etc.
7686 void wxGrid::XYToCell( int x
, int y
, wxGridCellCoords
& coords
)
7688 int row
= YToRow(y
);
7689 int col
= XToCol(x
);
7691 if ( row
== -1 || col
== -1 )
7693 coords
= wxGridNoCellCoords
;
7697 coords
.Set( row
, col
);
7702 // Internal Helper function for computing row or column from some
7703 // (unscrolled) coordinate value, using either
7704 // m_defaultRowHeight/m_defaultColWidth or binary search on array
7705 // of m_rowBottoms/m_ColRights to speed up the search!
7707 static int CoordToRowOrCol(int coord
, int defaultDist
, int minDist
,
7708 const wxArrayInt
& BorderArray
, int nMax
,
7713 return clipToMinMax
&& (nMax
> 0) ? 0 : -1;
7719 size_t i_max
= coord
/ defaultDist
,
7722 if (BorderArray
.IsEmpty())
7724 if((int) i_max
< nMax
)
7726 return clipToMinMax
? nMax
- 1 : -1;
7729 if ( i_max
>= BorderArray
.GetCount())
7730 i_max
= BorderArray
.GetCount() - 1;
7733 if ( coord
>= BorderArray
[i_max
])
7737 i_max
= coord
/ minDist
;
7739 i_max
= BorderArray
.GetCount() - 1;
7741 if ( i_max
>= BorderArray
.GetCount())
7742 i_max
= BorderArray
.GetCount() - 1;
7744 if ( coord
>= BorderArray
[i_max
])
7745 return clipToMinMax
? (int)i_max
: -1;
7746 if ( coord
< BorderArray
[0] )
7749 while ( i_max
- i_min
> 0 )
7751 wxCHECK_MSG(BorderArray
[i_min
] <= coord
&& coord
< BorderArray
[i_max
],
7752 0, _T("wxGrid: internal error in CoordToRowOrCol"));
7753 if (coord
>= BorderArray
[ i_max
- 1])
7757 int median
= i_min
+ (i_max
- i_min
+ 1) / 2;
7758 if (coord
< BorderArray
[median
])
7766 int wxGrid::YToRow( int y
)
7768 return CoordToRowOrCol(y
, m_defaultRowHeight
,
7769 m_minAcceptableRowHeight
, m_rowBottoms
, m_numRows
, FALSE
);
7773 int wxGrid::XToCol( int x
)
7775 return CoordToRowOrCol(x
, m_defaultColWidth
,
7776 m_minAcceptableColWidth
, m_colRights
, m_numCols
, FALSE
);
7780 // return the row number that that the y coord is near the edge of, or
7781 // -1 if not near an edge
7783 int wxGrid::YToEdgeOfRow( int y
)
7786 i
= internalYToRow(y
);
7788 if ( GetRowHeight(i
) > WXGRID_LABEL_EDGE_ZONE
)
7790 // We know that we are in row i, test whether we are
7791 // close enough to lower or upper border, respectively.
7792 if ( abs(GetRowBottom(i
) - y
) < WXGRID_LABEL_EDGE_ZONE
)
7794 else if( i
> 0 && y
- GetRowTop(i
) < WXGRID_LABEL_EDGE_ZONE
)
7802 // return the col number that that the x coord is near the edge of, or
7803 // -1 if not near an edge
7805 int wxGrid::XToEdgeOfCol( int x
)
7808 i
= internalXToCol(x
);
7810 if ( GetColWidth(i
) > WXGRID_LABEL_EDGE_ZONE
)
7812 // We know that we are in column i, test whether we are
7813 // close enough to right or left border, respectively.
7814 if ( abs(GetColRight(i
) - x
) < WXGRID_LABEL_EDGE_ZONE
)
7816 else if( i
> 0 && x
- GetColLeft(i
) < WXGRID_LABEL_EDGE_ZONE
)
7824 wxRect
wxGrid::CellToRect( int row
, int col
)
7826 wxRect
rect( -1, -1, -1, -1 );
7828 if ( row
>= 0 && row
< m_numRows
&&
7829 col
>= 0 && col
< m_numCols
)
7831 int i
, cell_rows
, cell_cols
;
7832 rect
.width
= rect
.height
= 0;
7833 GetCellSize( row
, col
, &cell_rows
, &cell_cols
);
7834 // if negative then find multicell owner
7835 if (cell_rows
< 0) row
+= cell_rows
;
7836 if (cell_cols
< 0) col
+= cell_cols
;
7837 GetCellSize( row
, col
, &cell_rows
, &cell_cols
);
7839 rect
.x
= GetColLeft(col
);
7840 rect
.y
= GetRowTop(row
);
7841 for (i
=col
; i
<col
+cell_cols
; i
++)
7842 rect
.width
+= GetColWidth(i
);
7843 for (i
=row
; i
<row
+cell_rows
; i
++)
7844 rect
.height
+= GetRowHeight(i
);
7847 // if grid lines are enabled, then the area of the cell is a bit smaller
7848 if (m_gridLinesEnabled
) {
7856 bool wxGrid::IsVisible( int row
, int col
, bool wholeCellVisible
)
7858 // get the cell rectangle in logical coords
7860 wxRect
r( CellToRect( row
, col
) );
7862 // convert to device coords
7864 int left
, top
, right
, bottom
;
7865 CalcScrolledPosition( r
.GetLeft(), r
.GetTop(), &left
, &top
);
7866 CalcScrolledPosition( r
.GetRight(), r
.GetBottom(), &right
, &bottom
);
7868 // check against the client area of the grid window
7871 m_gridWin
->GetClientSize( &cw
, &ch
);
7873 if ( wholeCellVisible
)
7875 // is the cell wholly visible ?
7877 return ( left
>= 0 && right
<= cw
&&
7878 top
>= 0 && bottom
<= ch
);
7882 // is the cell partly visible ?
7884 return ( ((left
>=0 && left
< cw
) || (right
> 0 && right
<= cw
)) &&
7885 ((top
>=0 && top
< ch
) || (bottom
> 0 && bottom
<= ch
)) );
7890 // make the specified cell location visible by doing a minimal amount
7893 void wxGrid::MakeCellVisible( int row
, int col
)
7897 int xpos
= -1, ypos
= -1;
7899 if ( row
>= 0 && row
< m_numRows
&&
7900 col
>= 0 && col
< m_numCols
)
7902 // get the cell rectangle in logical coords
7904 wxRect
r( CellToRect( row
, col
) );
7906 // convert to device coords
7908 int left
, top
, right
, bottom
;
7909 CalcScrolledPosition( r
.GetLeft(), r
.GetTop(), &left
, &top
);
7910 CalcScrolledPosition( r
.GetRight(), r
.GetBottom(), &right
, &bottom
);
7913 m_gridWin
->GetClientSize( &cw
, &ch
);
7919 else if ( bottom
> ch
)
7921 int h
= r
.GetHeight();
7923 for ( i
= row
-1; i
>= 0; i
-- )
7925 int rowHeight
= GetRowHeight(i
);
7926 if ( h
+ rowHeight
> ch
)
7933 // we divide it later by GRID_SCROLL_LINE, make sure that we don't
7934 // have rounding errors (this is important, because if we do, we
7935 // might not scroll at all and some cells won't be redrawn)
7937 // Sometimes GRID_SCROLL_LINE/2 is not enough, so just add a full
7939 ypos
+= GRID_SCROLL_LINE_Y
;
7946 else if ( right
> cw
)
7948 // position the view so that the cell is on the right
7950 CalcUnscrolledPosition(0, 0, &x0
, &y0
);
7951 xpos
= x0
+ (right
- cw
);
7953 // see comment for ypos above
7954 xpos
+= GRID_SCROLL_LINE_X
;
7957 if ( xpos
!= -1 || ypos
!= -1 )
7960 xpos
/= GRID_SCROLL_LINE_X
;
7962 ypos
/= GRID_SCROLL_LINE_Y
;
7963 Scroll( xpos
, ypos
);
7971 // ------ Grid cursor movement functions
7974 bool wxGrid::MoveCursorUp( bool expandSelection
)
7976 if ( m_currentCellCoords
!= wxGridNoCellCoords
&&
7977 m_currentCellCoords
.GetRow() >= 0 )
7979 if ( expandSelection
)
7981 if ( m_selectingKeyboard
== wxGridNoCellCoords
)
7982 m_selectingKeyboard
= m_currentCellCoords
;
7983 if ( m_selectingKeyboard
.GetRow() > 0 )
7985 m_selectingKeyboard
.SetRow( m_selectingKeyboard
.GetRow() - 1 );
7986 MakeCellVisible( m_selectingKeyboard
.GetRow(),
7987 m_selectingKeyboard
.GetCol() );
7988 HighlightBlock( m_currentCellCoords
, m_selectingKeyboard
);
7991 else if ( m_currentCellCoords
.GetRow() > 0 )
7994 MakeCellVisible( m_currentCellCoords
.GetRow() - 1,
7995 m_currentCellCoords
.GetCol() );
7996 SetCurrentCell( m_currentCellCoords
.GetRow() - 1,
7997 m_currentCellCoords
.GetCol() );
8008 bool wxGrid::MoveCursorDown( bool expandSelection
)
8010 if ( m_currentCellCoords
!= wxGridNoCellCoords
&&
8011 m_currentCellCoords
.GetRow() < m_numRows
)
8013 if ( expandSelection
)
8015 if ( m_selectingKeyboard
== wxGridNoCellCoords
)
8016 m_selectingKeyboard
= m_currentCellCoords
;
8017 if ( m_selectingKeyboard
.GetRow() < m_numRows
-1 )
8019 m_selectingKeyboard
.SetRow( m_selectingKeyboard
.GetRow() + 1 );
8020 MakeCellVisible( m_selectingKeyboard
.GetRow(),
8021 m_selectingKeyboard
.GetCol() );
8022 HighlightBlock( m_currentCellCoords
, m_selectingKeyboard
);
8025 else if ( m_currentCellCoords
.GetRow() < m_numRows
- 1 )
8028 MakeCellVisible( m_currentCellCoords
.GetRow() + 1,
8029 m_currentCellCoords
.GetCol() );
8030 SetCurrentCell( m_currentCellCoords
.GetRow() + 1,
8031 m_currentCellCoords
.GetCol() );
8042 bool wxGrid::MoveCursorLeft( bool expandSelection
)
8044 if ( m_currentCellCoords
!= wxGridNoCellCoords
&&
8045 m_currentCellCoords
.GetCol() >= 0 )
8047 if ( expandSelection
)
8049 if ( m_selectingKeyboard
== wxGridNoCellCoords
)
8050 m_selectingKeyboard
= m_currentCellCoords
;
8051 if ( m_selectingKeyboard
.GetCol() > 0 )
8053 m_selectingKeyboard
.SetCol( m_selectingKeyboard
.GetCol() - 1 );
8054 MakeCellVisible( m_selectingKeyboard
.GetRow(),
8055 m_selectingKeyboard
.GetCol() );
8056 HighlightBlock( m_currentCellCoords
, m_selectingKeyboard
);
8059 else if ( m_currentCellCoords
.GetCol() > 0 )
8062 MakeCellVisible( m_currentCellCoords
.GetRow(),
8063 m_currentCellCoords
.GetCol() - 1 );
8064 SetCurrentCell( m_currentCellCoords
.GetRow(),
8065 m_currentCellCoords
.GetCol() - 1 );
8076 bool wxGrid::MoveCursorRight( bool expandSelection
)
8078 if ( m_currentCellCoords
!= wxGridNoCellCoords
&&
8079 m_currentCellCoords
.GetCol() < m_numCols
)
8081 if ( expandSelection
)
8083 if ( m_selectingKeyboard
== wxGridNoCellCoords
)
8084 m_selectingKeyboard
= m_currentCellCoords
;
8085 if ( m_selectingKeyboard
.GetCol() < m_numCols
- 1 )
8087 m_selectingKeyboard
.SetCol( m_selectingKeyboard
.GetCol() + 1 );
8088 MakeCellVisible( m_selectingKeyboard
.GetRow(),
8089 m_selectingKeyboard
.GetCol() );
8090 HighlightBlock( m_currentCellCoords
, m_selectingKeyboard
);
8093 else if ( m_currentCellCoords
.GetCol() < m_numCols
- 1 )
8096 MakeCellVisible( m_currentCellCoords
.GetRow(),
8097 m_currentCellCoords
.GetCol() + 1 );
8098 SetCurrentCell( m_currentCellCoords
.GetRow(),
8099 m_currentCellCoords
.GetCol() + 1 );
8110 bool wxGrid::MovePageUp()
8112 if ( m_currentCellCoords
== wxGridNoCellCoords
) return FALSE
;
8114 int row
= m_currentCellCoords
.GetRow();
8118 m_gridWin
->GetClientSize( &cw
, &ch
);
8120 int y
= GetRowTop(row
);
8121 int newRow
= internalYToRow( y
- ch
+ 1 );
8123 if ( newRow
== row
)
8125 //row > 0 , so newrow can never be less than 0 here.
8129 MakeCellVisible( newRow
, m_currentCellCoords
.GetCol() );
8130 SetCurrentCell( newRow
, m_currentCellCoords
.GetCol() );
8138 bool wxGrid::MovePageDown()
8140 if ( m_currentCellCoords
== wxGridNoCellCoords
) return FALSE
;
8142 int row
= m_currentCellCoords
.GetRow();
8143 if ( (row
+1) < m_numRows
)
8146 m_gridWin
->GetClientSize( &cw
, &ch
);
8148 int y
= GetRowTop(row
);
8149 int newRow
= internalYToRow( y
+ ch
);
8150 if ( newRow
== row
)
8152 // row < m_numRows , so newrow can't overflow here.
8156 MakeCellVisible( newRow
, m_currentCellCoords
.GetCol() );
8157 SetCurrentCell( newRow
, m_currentCellCoords
.GetCol() );
8165 bool wxGrid::MoveCursorUpBlock( bool expandSelection
)
8168 m_currentCellCoords
!= wxGridNoCellCoords
&&
8169 m_currentCellCoords
.GetRow() > 0 )
8171 int row
= m_currentCellCoords
.GetRow();
8172 int col
= m_currentCellCoords
.GetCol();
8174 if ( m_table
->IsEmptyCell(row
, col
) )
8176 // starting in an empty cell: find the next block of
8182 if ( !(m_table
->IsEmptyCell(row
, col
)) ) break;
8185 else if ( m_table
->IsEmptyCell(row
-1, col
) )
8187 // starting at the top of a block: find the next block
8193 if ( !(m_table
->IsEmptyCell(row
, col
)) ) break;
8198 // starting within a block: find the top of the block
8203 if ( m_table
->IsEmptyCell(row
, col
) )
8211 MakeCellVisible( row
, col
);
8212 if ( expandSelection
)
8214 m_selectingKeyboard
= wxGridCellCoords( row
, col
);
8215 HighlightBlock( m_currentCellCoords
, m_selectingKeyboard
);
8220 SetCurrentCell( row
, col
);
8228 bool wxGrid::MoveCursorDownBlock( bool expandSelection
)
8231 m_currentCellCoords
!= wxGridNoCellCoords
&&
8232 m_currentCellCoords
.GetRow() < m_numRows
-1 )
8234 int row
= m_currentCellCoords
.GetRow();
8235 int col
= m_currentCellCoords
.GetCol();
8237 if ( m_table
->IsEmptyCell(row
, col
) )
8239 // starting in an empty cell: find the next block of
8242 while ( row
< m_numRows
-1 )
8245 if ( !(m_table
->IsEmptyCell(row
, col
)) ) break;
8248 else if ( m_table
->IsEmptyCell(row
+1, col
) )
8250 // starting at the bottom of a block: find the next block
8253 while ( row
< m_numRows
-1 )
8256 if ( !(m_table
->IsEmptyCell(row
, col
)) ) break;
8261 // starting within a block: find the bottom of the block
8263 while ( row
< m_numRows
-1 )
8266 if ( m_table
->IsEmptyCell(row
, col
) )
8274 MakeCellVisible( row
, col
);
8275 if ( expandSelection
)
8277 m_selectingKeyboard
= wxGridCellCoords( row
, col
);
8278 HighlightBlock( m_currentCellCoords
, m_selectingKeyboard
);
8283 SetCurrentCell( row
, col
);
8292 bool wxGrid::MoveCursorLeftBlock( bool expandSelection
)
8295 m_currentCellCoords
!= wxGridNoCellCoords
&&
8296 m_currentCellCoords
.GetCol() > 0 )
8298 int row
= m_currentCellCoords
.GetRow();
8299 int col
= m_currentCellCoords
.GetCol();
8301 if ( m_table
->IsEmptyCell(row
, col
) )
8303 // starting in an empty cell: find the next block of
8309 if ( !(m_table
->IsEmptyCell(row
, col
)) ) break;
8312 else if ( m_table
->IsEmptyCell(row
, col
-1) )
8314 // starting at the left of a block: find the next block
8320 if ( !(m_table
->IsEmptyCell(row
, col
)) ) break;
8325 // starting within a block: find the left of the block
8330 if ( m_table
->IsEmptyCell(row
, col
) )
8338 MakeCellVisible( row
, col
);
8339 if ( expandSelection
)
8341 m_selectingKeyboard
= wxGridCellCoords( row
, col
);
8342 HighlightBlock( m_currentCellCoords
, m_selectingKeyboard
);
8347 SetCurrentCell( row
, col
);
8356 bool wxGrid::MoveCursorRightBlock( bool expandSelection
)
8359 m_currentCellCoords
!= wxGridNoCellCoords
&&
8360 m_currentCellCoords
.GetCol() < m_numCols
-1 )
8362 int row
= m_currentCellCoords
.GetRow();
8363 int col
= m_currentCellCoords
.GetCol();
8365 if ( m_table
->IsEmptyCell(row
, col
) )
8367 // starting in an empty cell: find the next block of
8370 while ( col
< m_numCols
-1 )
8373 if ( !(m_table
->IsEmptyCell(row
, col
)) ) break;
8376 else if ( m_table
->IsEmptyCell(row
, col
+1) )
8378 // starting at the right of a block: find the next block
8381 while ( col
< m_numCols
-1 )
8384 if ( !(m_table
->IsEmptyCell(row
, col
)) ) break;
8389 // starting within a block: find the right of the block
8391 while ( col
< m_numCols
-1 )
8394 if ( m_table
->IsEmptyCell(row
, col
) )
8402 MakeCellVisible( row
, col
);
8403 if ( expandSelection
)
8405 m_selectingKeyboard
= wxGridCellCoords( row
, col
);
8406 HighlightBlock( m_currentCellCoords
, m_selectingKeyboard
);
8411 SetCurrentCell( row
, col
);
8423 // ------ Label values and formatting
8426 void wxGrid::GetRowLabelAlignment( int *horiz
, int *vert
)
8428 *horiz
= m_rowLabelHorizAlign
;
8429 *vert
= m_rowLabelVertAlign
;
8432 void wxGrid::GetColLabelAlignment( int *horiz
, int *vert
)
8434 *horiz
= m_colLabelHorizAlign
;
8435 *vert
= m_colLabelVertAlign
;
8438 int wxGrid::GetColLabelTextOrientation()
8440 return m_colLabelTextOrientation
;
8443 wxString
wxGrid::GetRowLabelValue( int row
)
8447 return m_table
->GetRowLabelValue( row
);
8457 wxString
wxGrid::GetColLabelValue( int col
)
8461 return m_table
->GetColLabelValue( col
);
8472 void wxGrid::SetRowLabelSize( int width
)
8474 width
= wxMax( width
, 0 );
8475 if ( width
!= m_rowLabelWidth
)
8479 m_rowLabelWin
->Show( FALSE
);
8480 m_cornerLabelWin
->Show( FALSE
);
8482 else if ( m_rowLabelWidth
== 0 )
8484 m_rowLabelWin
->Show( TRUE
);
8485 if ( m_colLabelHeight
> 0 ) m_cornerLabelWin
->Show( TRUE
);
8488 m_rowLabelWidth
= width
;
8490 wxScrolledWindow::Refresh( TRUE
);
8495 void wxGrid::SetColLabelSize( int height
)
8497 height
= wxMax( height
, 0 );
8498 if ( height
!= m_colLabelHeight
)
8502 m_colLabelWin
->Show( FALSE
);
8503 m_cornerLabelWin
->Show( FALSE
);
8505 else if ( m_colLabelHeight
== 0 )
8507 m_colLabelWin
->Show( TRUE
);
8508 if ( m_rowLabelWidth
> 0 ) m_cornerLabelWin
->Show( TRUE
);
8511 m_colLabelHeight
= height
;
8513 wxScrolledWindow::Refresh( TRUE
);
8518 void wxGrid::SetLabelBackgroundColour( const wxColour
& colour
)
8520 if ( m_labelBackgroundColour
!= colour
)
8522 m_labelBackgroundColour
= colour
;
8523 m_rowLabelWin
->SetBackgroundColour( colour
);
8524 m_colLabelWin
->SetBackgroundColour( colour
);
8525 m_cornerLabelWin
->SetBackgroundColour( colour
);
8527 if ( !GetBatchCount() )
8529 m_rowLabelWin
->Refresh();
8530 m_colLabelWin
->Refresh();
8531 m_cornerLabelWin
->Refresh();
8536 void wxGrid::SetLabelTextColour( const wxColour
& colour
)
8538 if ( m_labelTextColour
!= colour
)
8540 m_labelTextColour
= colour
;
8541 if ( !GetBatchCount() )
8543 m_rowLabelWin
->Refresh();
8544 m_colLabelWin
->Refresh();
8549 void wxGrid::SetLabelFont( const wxFont
& font
)
8552 if ( !GetBatchCount() )
8554 m_rowLabelWin
->Refresh();
8555 m_colLabelWin
->Refresh();
8559 void wxGrid::SetRowLabelAlignment( int horiz
, int vert
)
8561 // allow old (incorrect) defs to be used
8564 case wxLEFT
: horiz
= wxALIGN_LEFT
; break;
8565 case wxRIGHT
: horiz
= wxALIGN_RIGHT
; break;
8566 case wxCENTRE
: horiz
= wxALIGN_CENTRE
; break;
8571 case wxTOP
: vert
= wxALIGN_TOP
; break;
8572 case wxBOTTOM
: vert
= wxALIGN_BOTTOM
; break;
8573 case wxCENTRE
: vert
= wxALIGN_CENTRE
; break;
8576 if ( horiz
== wxALIGN_LEFT
|| horiz
== wxALIGN_CENTRE
|| horiz
== wxALIGN_RIGHT
)
8578 m_rowLabelHorizAlign
= horiz
;
8581 if ( vert
== wxALIGN_TOP
|| vert
== wxALIGN_CENTRE
|| vert
== wxALIGN_BOTTOM
)
8583 m_rowLabelVertAlign
= vert
;
8586 if ( !GetBatchCount() )
8588 m_rowLabelWin
->Refresh();
8592 void wxGrid::SetColLabelAlignment( int horiz
, int vert
)
8594 // allow old (incorrect) defs to be used
8597 case wxLEFT
: horiz
= wxALIGN_LEFT
; break;
8598 case wxRIGHT
: horiz
= wxALIGN_RIGHT
; break;
8599 case wxCENTRE
: horiz
= wxALIGN_CENTRE
; break;
8604 case wxTOP
: vert
= wxALIGN_TOP
; break;
8605 case wxBOTTOM
: vert
= wxALIGN_BOTTOM
; break;
8606 case wxCENTRE
: vert
= wxALIGN_CENTRE
; break;
8609 if ( horiz
== wxALIGN_LEFT
|| horiz
== wxALIGN_CENTRE
|| horiz
== wxALIGN_RIGHT
)
8611 m_colLabelHorizAlign
= horiz
;
8614 if ( vert
== wxALIGN_TOP
|| vert
== wxALIGN_CENTRE
|| vert
== wxALIGN_BOTTOM
)
8616 m_colLabelVertAlign
= vert
;
8619 if ( !GetBatchCount() )
8621 m_colLabelWin
->Refresh();
8625 // Note: under MSW, the default column label font must be changed because it
8626 // does not support vertical printing
8628 // Example: wxFont font(9, wxSWISS, wxNORMAL, wxBOLD);
8629 // pGrid->SetLabelFont(font);
8630 // pGrid->SetColLabelTextOrientation(wxVERTICAL);
8632 void wxGrid::SetColLabelTextOrientation( int textOrientation
)
8634 if( textOrientation
== wxHORIZONTAL
|| textOrientation
== wxVERTICAL
)
8636 m_colLabelTextOrientation
= textOrientation
;
8639 if ( !GetBatchCount() )
8641 m_colLabelWin
->Refresh();
8645 void wxGrid::SetRowLabelValue( int row
, const wxString
& s
)
8649 m_table
->SetRowLabelValue( row
, s
);
8650 if ( !GetBatchCount() )
8652 wxRect rect
= CellToRect( row
, 0);
8653 if ( rect
.height
> 0 )
8655 CalcScrolledPosition(0, rect
.y
, &rect
.x
, &rect
.y
);
8657 rect
.width
= m_rowLabelWidth
;
8658 m_rowLabelWin
->Refresh( TRUE
, &rect
);
8664 void wxGrid::SetColLabelValue( int col
, const wxString
& s
)
8668 m_table
->SetColLabelValue( col
, s
);
8669 if ( !GetBatchCount() )
8671 wxRect rect
= CellToRect( 0, col
);
8672 if ( rect
.width
> 0 )
8674 CalcScrolledPosition(rect
.x
, 0, &rect
.x
, &rect
.y
);
8676 rect
.height
= m_colLabelHeight
;
8677 m_colLabelWin
->Refresh( TRUE
, &rect
);
8683 void wxGrid::SetGridLineColour( const wxColour
& colour
)
8685 if ( m_gridLineColour
!= colour
)
8687 m_gridLineColour
= colour
;
8689 wxClientDC
dc( m_gridWin
);
8691 DrawAllGridLines( dc
, wxRegion() );
8696 void wxGrid::SetCellHighlightColour( const wxColour
& colour
)
8698 if ( m_cellHighlightColour
!= colour
)
8700 m_cellHighlightColour
= colour
;
8702 wxClientDC
dc( m_gridWin
);
8704 wxGridCellAttr
* attr
= GetCellAttr(m_currentCellCoords
);
8705 DrawCellHighlight(dc
, attr
);
8710 void wxGrid::SetCellHighlightPenWidth(int width
)
8712 if (m_cellHighlightPenWidth
!= width
) {
8713 m_cellHighlightPenWidth
= width
;
8715 // Just redrawing the cell highlight is not enough since that won't
8716 // make any visible change if the the thickness is getting smaller.
8717 int row
= m_currentCellCoords
.GetRow();
8718 int col
= m_currentCellCoords
.GetCol();
8719 if ( GetColWidth(col
) <= 0 || GetRowHeight(row
) <= 0 )
8721 wxRect rect
= CellToRect(row
, col
);
8722 m_gridWin
->Refresh(TRUE
, &rect
);
8726 void wxGrid::SetCellHighlightROPenWidth(int width
)
8728 if (m_cellHighlightROPenWidth
!= width
) {
8729 m_cellHighlightROPenWidth
= width
;
8731 // Just redrawing the cell highlight is not enough since that won't
8732 // make any visible change if the the thickness is getting smaller.
8733 int row
= m_currentCellCoords
.GetRow();
8734 int col
= m_currentCellCoords
.GetCol();
8735 if ( GetColWidth(col
) <= 0 || GetRowHeight(row
) <= 0 )
8737 wxRect rect
= CellToRect(row
, col
);
8738 m_gridWin
->Refresh(TRUE
, &rect
);
8742 void wxGrid::EnableGridLines( bool enable
)
8744 if ( enable
!= m_gridLinesEnabled
)
8746 m_gridLinesEnabled
= enable
;
8748 if ( !GetBatchCount() )
8752 wxClientDC
dc( m_gridWin
);
8754 DrawAllGridLines( dc
, wxRegion() );
8758 m_gridWin
->Refresh();
8765 int wxGrid::GetDefaultRowSize()
8767 return m_defaultRowHeight
;
8770 int wxGrid::GetRowSize( int row
)
8772 wxCHECK_MSG( row
>= 0 && row
< m_numRows
, 0, _T("invalid row index") );
8774 return GetRowHeight(row
);
8777 int wxGrid::GetDefaultColSize()
8779 return m_defaultColWidth
;
8782 int wxGrid::GetColSize( int col
)
8784 wxCHECK_MSG( col
>= 0 && col
< m_numCols
, 0, _T("invalid column index") );
8786 return GetColWidth(col
);
8789 // ============================================================================
8790 // access to the grid attributes: each of them has a default value in the grid
8791 // itself and may be overidden on a per-cell basis
8792 // ============================================================================
8794 // ----------------------------------------------------------------------------
8795 // setting default attributes
8796 // ----------------------------------------------------------------------------
8798 void wxGrid::SetDefaultCellBackgroundColour( const wxColour
& col
)
8800 m_defaultCellAttr
->SetBackgroundColour(col
);
8802 m_gridWin
->SetBackgroundColour(col
);
8806 void wxGrid::SetDefaultCellTextColour( const wxColour
& col
)
8808 m_defaultCellAttr
->SetTextColour(col
);
8811 void wxGrid::SetDefaultCellAlignment( int horiz
, int vert
)
8813 m_defaultCellAttr
->SetAlignment(horiz
, vert
);
8816 void wxGrid::SetDefaultCellOverflow( bool allow
)
8818 m_defaultCellAttr
->SetOverflow(allow
);
8821 void wxGrid::SetDefaultCellFont( const wxFont
& font
)
8823 m_defaultCellAttr
->SetFont(font
);
8826 void wxGrid::SetDefaultRenderer(wxGridCellRenderer
*renderer
)
8828 m_defaultCellAttr
->SetRenderer(renderer
);
8831 void wxGrid::SetDefaultEditor(wxGridCellEditor
*editor
)
8833 m_defaultCellAttr
->SetEditor(editor
);
8836 // ----------------------------------------------------------------------------
8837 // access to the default attrbiutes
8838 // ----------------------------------------------------------------------------
8840 wxColour
wxGrid::GetDefaultCellBackgroundColour()
8842 return m_defaultCellAttr
->GetBackgroundColour();
8845 wxColour
wxGrid::GetDefaultCellTextColour()
8847 return m_defaultCellAttr
->GetTextColour();
8850 wxFont
wxGrid::GetDefaultCellFont()
8852 return m_defaultCellAttr
->GetFont();
8855 void wxGrid::GetDefaultCellAlignment( int *horiz
, int *vert
)
8857 m_defaultCellAttr
->GetAlignment(horiz
, vert
);
8860 bool wxGrid::GetDefaultCellOverflow()
8862 return m_defaultCellAttr
->GetOverflow();
8865 wxGridCellRenderer
*wxGrid::GetDefaultRenderer() const
8867 return m_defaultCellAttr
->GetRenderer(NULL
, 0, 0);
8870 wxGridCellEditor
*wxGrid::GetDefaultEditor() const
8872 return m_defaultCellAttr
->GetEditor(NULL
,0,0);
8875 // ----------------------------------------------------------------------------
8876 // access to cell attributes
8877 // ----------------------------------------------------------------------------
8879 wxColour
wxGrid::GetCellBackgroundColour(int row
, int col
)
8881 wxGridCellAttr
*attr
= GetCellAttr(row
, col
);
8882 wxColour colour
= attr
->GetBackgroundColour();
8887 wxColour
wxGrid::GetCellTextColour( int row
, int col
)
8889 wxGridCellAttr
*attr
= GetCellAttr(row
, col
);
8890 wxColour colour
= attr
->GetTextColour();
8895 wxFont
wxGrid::GetCellFont( int row
, int col
)
8897 wxGridCellAttr
*attr
= GetCellAttr(row
, col
);
8898 wxFont font
= attr
->GetFont();
8903 void wxGrid::GetCellAlignment( int row
, int col
, int *horiz
, int *vert
)
8905 wxGridCellAttr
*attr
= GetCellAttr(row
, col
);
8906 attr
->GetAlignment(horiz
, vert
);
8910 bool wxGrid::GetCellOverflow( int row
, int col
)
8912 wxGridCellAttr
*attr
= GetCellAttr(row
, col
);
8913 bool allow
= attr
->GetOverflow();
8918 void wxGrid::GetCellSize( int row
, int col
, int *num_rows
, int *num_cols
)
8920 wxGridCellAttr
*attr
= GetCellAttr(row
, col
);
8921 attr
->GetSize( num_rows
, num_cols
);
8925 wxGridCellRenderer
* wxGrid::GetCellRenderer(int row
, int col
)
8927 wxGridCellAttr
* attr
= GetCellAttr(row
, col
);
8928 wxGridCellRenderer
* renderer
= attr
->GetRenderer(this, row
, col
);
8934 wxGridCellEditor
* wxGrid::GetCellEditor(int row
, int col
)
8936 wxGridCellAttr
* attr
= GetCellAttr(row
, col
);
8937 wxGridCellEditor
* editor
= attr
->GetEditor(this, row
, col
);
8943 bool wxGrid::IsReadOnly(int row
, int col
) const
8945 wxGridCellAttr
* attr
= GetCellAttr(row
, col
);
8946 bool isReadOnly
= attr
->IsReadOnly();
8951 // ----------------------------------------------------------------------------
8952 // attribute support: cache, automatic provider creation, ...
8953 // ----------------------------------------------------------------------------
8955 bool wxGrid::CanHaveAttributes()
8962 return m_table
->CanHaveAttributes();
8965 void wxGrid::ClearAttrCache()
8967 if ( m_attrCache
.row
!= -1 )
8969 wxSafeDecRef(m_attrCache
.attr
);
8970 m_attrCache
.attr
= NULL
;
8971 m_attrCache
.row
= -1;
8975 void wxGrid::CacheAttr(int row
, int col
, wxGridCellAttr
*attr
) const
8979 wxGrid
*self
= (wxGrid
*)this; // const_cast
8981 self
->ClearAttrCache();
8982 self
->m_attrCache
.row
= row
;
8983 self
->m_attrCache
.col
= col
;
8984 self
->m_attrCache
.attr
= attr
;
8989 bool wxGrid::LookupAttr(int row
, int col
, wxGridCellAttr
**attr
) const
8991 if ( row
== m_attrCache
.row
&& col
== m_attrCache
.col
)
8993 *attr
= m_attrCache
.attr
;
8994 wxSafeIncRef(m_attrCache
.attr
);
8996 #ifdef DEBUG_ATTR_CACHE
8997 gs_nAttrCacheHits
++;
9004 #ifdef DEBUG_ATTR_CACHE
9005 gs_nAttrCacheMisses
++;
9011 wxGridCellAttr
*wxGrid::GetCellAttr(int row
, int col
) const
9013 wxGridCellAttr
*attr
= NULL
;
9014 // Additional test to avoid looking at the cache e.g. for
9015 // wxNoCellCoords, as this will confuse memory management.
9018 if ( !LookupAttr(row
, col
, &attr
) )
9020 attr
= m_table
? m_table
->GetAttr(row
, col
, wxGridCellAttr::Any
)
9021 : (wxGridCellAttr
*)NULL
;
9022 CacheAttr(row
, col
, attr
);
9027 attr
->SetDefAttr(m_defaultCellAttr
);
9031 attr
= m_defaultCellAttr
;
9038 wxGridCellAttr
*wxGrid::GetOrCreateCellAttr(int row
, int col
) const
9040 wxGridCellAttr
*attr
= (wxGridCellAttr
*)NULL
;
9042 wxCHECK_MSG( m_table
, attr
,
9043 _T("we may only be called if CanHaveAttributes() returned TRUE and then m_table should be !NULL") );
9045 attr
= m_table
->GetAttr(row
, col
, wxGridCellAttr::Cell
);
9048 attr
= new wxGridCellAttr(m_defaultCellAttr
);
9050 // artificially inc the ref count to match DecRef() in caller
9052 m_table
->SetAttr(attr
, row
, col
);
9058 // ----------------------------------------------------------------------------
9059 // setting column attributes (wrappers around SetColAttr)
9060 // ----------------------------------------------------------------------------
9062 void wxGrid::SetColFormatBool(int col
)
9064 SetColFormatCustom(col
, wxGRID_VALUE_BOOL
);
9067 void wxGrid::SetColFormatNumber(int col
)
9069 SetColFormatCustom(col
, wxGRID_VALUE_NUMBER
);
9072 void wxGrid::SetColFormatFloat(int col
, int width
, int precision
)
9074 wxString typeName
= wxGRID_VALUE_FLOAT
;
9075 if ( (width
!= -1) || (precision
!= -1) )
9077 typeName
<< _T(':') << width
<< _T(',') << precision
;
9080 SetColFormatCustom(col
, typeName
);
9083 void wxGrid::SetColFormatCustom(int col
, const wxString
& typeName
)
9085 wxGridCellAttr
*attr
= m_table
->GetAttr(-1, col
, wxGridCellAttr::Col
);
9087 attr
= new wxGridCellAttr
;
9088 wxGridCellRenderer
*renderer
= GetDefaultRendererForType(typeName
);
9089 attr
->SetRenderer(renderer
);
9091 SetColAttr(col
, attr
);
9095 // ----------------------------------------------------------------------------
9096 // setting cell attributes: this is forwarded to the table
9097 // ----------------------------------------------------------------------------
9099 void wxGrid::SetAttr(int row
, int col
, wxGridCellAttr
*attr
)
9101 if ( CanHaveAttributes() )
9103 m_table
->SetAttr(attr
, row
, col
);
9112 void wxGrid::SetRowAttr(int row
, wxGridCellAttr
*attr
)
9114 if ( CanHaveAttributes() )
9116 m_table
->SetRowAttr(attr
, row
);
9125 void wxGrid::SetColAttr(int col
, wxGridCellAttr
*attr
)
9127 if ( CanHaveAttributes() )
9129 m_table
->SetColAttr(attr
, col
);
9138 void wxGrid::SetCellBackgroundColour( int row
, int col
, const wxColour
& colour
)
9140 if ( CanHaveAttributes() )
9142 wxGridCellAttr
*attr
= GetOrCreateCellAttr(row
, col
);
9143 attr
->SetBackgroundColour(colour
);
9148 void wxGrid::SetCellTextColour( int row
, int col
, const wxColour
& colour
)
9150 if ( CanHaveAttributes() )
9152 wxGridCellAttr
*attr
= GetOrCreateCellAttr(row
, col
);
9153 attr
->SetTextColour(colour
);
9158 void wxGrid::SetCellFont( int row
, int col
, const wxFont
& font
)
9160 if ( CanHaveAttributes() )
9162 wxGridCellAttr
*attr
= GetOrCreateCellAttr(row
, col
);
9163 attr
->SetFont(font
);
9168 void wxGrid::SetCellAlignment( int row
, int col
, int horiz
, int vert
)
9170 if ( CanHaveAttributes() )
9172 wxGridCellAttr
*attr
= GetOrCreateCellAttr(row
, col
);
9173 attr
->SetAlignment(horiz
, vert
);
9178 void wxGrid::SetCellOverflow( int row
, int col
, bool allow
)
9180 if ( CanHaveAttributes() )
9182 wxGridCellAttr
*attr
= GetOrCreateCellAttr(row
, col
);
9183 attr
->SetOverflow(allow
);
9188 void wxGrid::SetCellSize( int row
, int col
, int num_rows
, int num_cols
)
9190 if ( CanHaveAttributes() )
9192 int cell_rows
, cell_cols
;
9194 wxGridCellAttr
*attr
= GetOrCreateCellAttr(row
, col
);
9195 attr
->GetSize(&cell_rows
, &cell_cols
);
9196 attr
->SetSize(num_rows
, num_cols
);
9199 // Cannot set the size of a cell to 0 or negative values
9200 // While it is perfectly legal to do that, this function cannot
9201 // handle all the possibilies, do it by hand by getting the CellAttr.
9202 // You can only set the size of a cell to 1,1 or greater with this fn
9203 wxASSERT_MSG( !((cell_rows
< 1) || (cell_cols
< 1)),
9204 wxT("wxGrid::SetCellSize setting cell size that is already part of another cell"));
9205 wxASSERT_MSG( !((num_rows
< 1) || (num_cols
< 1)),
9206 wxT("wxGrid::SetCellSize setting cell size to < 1"));
9208 // if this was already a multicell then "turn off" the other cells first
9209 if ((cell_rows
> 1) || (cell_rows
> 1))
9212 for (j
=row
; j
<row
+cell_rows
; j
++)
9214 for (i
=col
; i
<col
+cell_cols
; i
++)
9216 if ((i
!= col
) || (j
!= row
))
9218 wxGridCellAttr
*attr_stub
= GetOrCreateCellAttr(j
, i
);
9219 attr_stub
->SetSize( 1, 1 );
9220 attr_stub
->DecRef();
9226 // mark the cells that will be covered by this cell to
9227 // negative or zero values to point back at this cell
9228 if (((num_rows
> 1) || (num_cols
> 1)) && (num_rows
>= 1) && (num_cols
>= 1))
9231 for (j
=row
; j
<row
+num_rows
; j
++)
9233 for (i
=col
; i
<col
+num_cols
; i
++)
9235 if ((i
!= col
) || (j
!= row
))
9237 wxGridCellAttr
*attr_stub
= GetOrCreateCellAttr(j
, i
);
9238 attr_stub
->SetSize( row
-j
, col
-i
);
9239 attr_stub
->DecRef();
9247 void wxGrid::SetCellRenderer(int row
, int col
, wxGridCellRenderer
*renderer
)
9249 if ( CanHaveAttributes() )
9251 wxGridCellAttr
*attr
= GetOrCreateCellAttr(row
, col
);
9252 attr
->SetRenderer(renderer
);
9257 void wxGrid::SetCellEditor(int row
, int col
, wxGridCellEditor
* editor
)
9259 if ( CanHaveAttributes() )
9261 wxGridCellAttr
*attr
= GetOrCreateCellAttr(row
, col
);
9262 attr
->SetEditor(editor
);
9267 void wxGrid::SetReadOnly(int row
, int col
, bool isReadOnly
)
9269 if ( CanHaveAttributes() )
9271 wxGridCellAttr
*attr
= GetOrCreateCellAttr(row
, col
);
9272 attr
->SetReadOnly(isReadOnly
);
9277 // ----------------------------------------------------------------------------
9278 // Data type registration
9279 // ----------------------------------------------------------------------------
9281 void wxGrid::RegisterDataType(const wxString
& typeName
,
9282 wxGridCellRenderer
* renderer
,
9283 wxGridCellEditor
* editor
)
9285 m_typeRegistry
->RegisterDataType(typeName
, renderer
, editor
);
9289 wxGridCellEditor
* wxGrid::GetDefaultEditorForCell(int row
, int col
) const
9291 wxString typeName
= m_table
->GetTypeName(row
, col
);
9292 return GetDefaultEditorForType(typeName
);
9295 wxGridCellRenderer
* wxGrid::GetDefaultRendererForCell(int row
, int col
) const
9297 wxString typeName
= m_table
->GetTypeName(row
, col
);
9298 return GetDefaultRendererForType(typeName
);
9302 wxGrid::GetDefaultEditorForType(const wxString
& typeName
) const
9304 int index
= m_typeRegistry
->FindOrCloneDataType(typeName
);
9305 if ( index
== wxNOT_FOUND
)
9307 wxFAIL_MSG(wxT("Unknown data type name"));
9312 return m_typeRegistry
->GetEditor(index
);
9316 wxGrid::GetDefaultRendererForType(const wxString
& typeName
) const
9318 int index
= m_typeRegistry
->FindOrCloneDataType(typeName
);
9319 if ( index
== wxNOT_FOUND
)
9321 wxFAIL_MSG(wxT("Unknown data type name"));
9326 return m_typeRegistry
->GetRenderer(index
);
9330 // ----------------------------------------------------------------------------
9332 // ----------------------------------------------------------------------------
9334 void wxGrid::EnableDragRowSize( bool enable
)
9336 m_canDragRowSize
= enable
;
9340 void wxGrid::EnableDragColSize( bool enable
)
9342 m_canDragColSize
= enable
;
9345 void wxGrid::EnableDragGridSize( bool enable
)
9347 m_canDragGridSize
= enable
;
9351 void wxGrid::SetDefaultRowSize( int height
, bool resizeExistingRows
)
9353 m_defaultRowHeight
= wxMax( height
, m_minAcceptableRowHeight
);
9355 if ( resizeExistingRows
)
9357 // since we are resizing all rows to the default row size,
9358 // we can simply clear the row heights and row bottoms
9359 // arrays (which also allows us to take advantage of
9360 // some speed optimisations)
9361 m_rowHeights
.Empty();
9362 m_rowBottoms
.Empty();
9363 if ( !GetBatchCount() )
9368 void wxGrid::SetRowSize( int row
, int height
)
9370 wxCHECK_RET( row
>= 0 && row
< m_numRows
, _T("invalid row index") );
9372 // See comment in SetColSize
9373 if ( height
< GetRowMinimalAcceptableHeight()) { return; }
9375 if ( m_rowHeights
.IsEmpty() )
9377 // need to really create the array
9381 int h
= wxMax( 0, height
);
9382 int diff
= h
- m_rowHeights
[row
];
9384 m_rowHeights
[row
] = h
;
9386 for ( i
= row
; i
< m_numRows
; i
++ )
9388 m_rowBottoms
[i
] += diff
;
9390 if ( !GetBatchCount() )
9394 void wxGrid::SetDefaultColSize( int width
, bool resizeExistingCols
)
9396 m_defaultColWidth
= wxMax( width
, m_minAcceptableColWidth
);
9398 if ( resizeExistingCols
)
9400 // since we are resizing all columns to the default column size,
9401 // we can simply clear the col widths and col rights
9402 // arrays (which also allows us to take advantage of
9403 // some speed optimisations)
9404 m_colWidths
.Empty();
9405 m_colRights
.Empty();
9406 if ( !GetBatchCount() )
9411 void wxGrid::SetColSize( int col
, int width
)
9413 wxCHECK_RET( col
>= 0 && col
< m_numCols
, _T("invalid column index") );
9415 // should we check that it's bigger than GetColMinimalWidth(col) here?
9417 // No, because it is reasonable to assume the library user know's
9418 // what he is doing. However whe should test against the weaker
9419 // constariant of minimalAcceptableWidth, as this breaks rendering
9421 // This test then fixes sf.net bug #645734
9423 if ( width
< GetColMinimalAcceptableWidth()) { return; }
9425 if ( m_colWidths
.IsEmpty() )
9427 // need to really create the array
9431 // if < 0 calc new width from label
9435 wxArrayString lines
;
9436 wxClientDC
dc(m_colLabelWin
);
9437 dc
.SetFont(GetLabelFont());
9438 StringToLines(GetColLabelValue(col
), lines
);
9439 GetTextBoxSize(dc
, lines
, &w
, &h
);
9442 int w
= wxMax( 0, width
);
9443 int diff
= w
- m_colWidths
[col
];
9444 m_colWidths
[col
] = w
;
9447 for ( i
= col
; i
< m_numCols
; i
++ )
9449 m_colRights
[i
] += diff
;
9451 if ( !GetBatchCount() )
9456 void wxGrid::SetColMinimalWidth( int col
, int width
)
9458 if (width
> GetColMinimalAcceptableWidth()) {
9459 m_colMinWidths
[col
] = width
;
9463 void wxGrid::SetRowMinimalHeight( int row
, int width
)
9465 if (width
> GetRowMinimalAcceptableHeight()) {
9466 m_rowMinHeights
[row
] = width
;
9470 int wxGrid::GetColMinimalWidth(int col
) const
9472 wxLongToLongHashMap::const_iterator it
= m_colMinWidths
.find(col
);
9473 return it
!= m_colMinWidths
.end() ? (int)it
->second
: m_minAcceptableColWidth
;
9476 int wxGrid::GetRowMinimalHeight(int row
) const
9478 wxLongToLongHashMap::const_iterator it
= m_rowMinHeights
.find(row
);
9479 return it
!= m_rowMinHeights
.end() ? (int)it
->second
: m_minAcceptableRowHeight
;
9482 void wxGrid::SetColMinimalAcceptableWidth( int width
)
9484 // We do allow a width of 0 since this gives us
9485 // an easy way to temporarily hidding columns.
9488 m_minAcceptableColWidth
= width
;
9491 void wxGrid::SetRowMinimalAcceptableHeight( int height
)
9493 // We do allow a height of 0 since this gives us
9494 // an easy way to temporarily hidding rows.
9497 m_minAcceptableRowHeight
= height
;
9500 int wxGrid::GetColMinimalAcceptableWidth() const
9502 return m_minAcceptableColWidth
;
9505 int wxGrid::GetRowMinimalAcceptableHeight() const
9507 return m_minAcceptableRowHeight
;
9510 // ----------------------------------------------------------------------------
9512 // ----------------------------------------------------------------------------
9514 void wxGrid::AutoSizeColOrRow( int colOrRow
, bool setAsMin
, bool column
)
9516 wxClientDC
dc(m_gridWin
);
9518 // init both of them to avoid compiler warnings, even if weo nly need one
9526 wxCoord extent
, extentMax
= 0;
9527 int max
= column
? m_numRows
: m_numCols
;
9528 for ( int rowOrCol
= 0; rowOrCol
< max
; rowOrCol
++ )
9535 wxGridCellAttr
* attr
= GetCellAttr(row
, col
);
9536 wxGridCellRenderer
* renderer
= attr
->GetRenderer(this, row
, col
);
9539 wxSize size
= renderer
->GetBestSize(*this, *attr
, dc
, row
, col
);
9540 extent
= column
? size
.x
: size
.y
;
9541 if ( extent
> extentMax
)
9552 // now also compare with the column label extent
9554 dc
.SetFont( GetLabelFont() );
9558 dc
.GetTextExtent( GetColLabelValue(col
), &w
, &h
);
9559 if( GetColLabelTextOrientation() == wxVERTICAL
)
9563 dc
.GetTextExtent( GetRowLabelValue(row
), &w
, &h
);
9565 extent
= column
? w
: h
;
9566 if ( extent
> extentMax
)
9573 // empty column - give default extent (notice that if extentMax is less
9574 // than default extent but != 0, it's ok)
9575 extentMax
= column
? m_defaultColWidth
: m_defaultRowHeight
;
9581 // leave some space around text
9592 SetColSize(col
, extentMax
);
9593 if ( !GetBatchCount() )
9596 m_gridWin
->GetClientSize( &cw
, &ch
);
9597 wxRect
rect ( CellToRect( 0, col
) );
9599 CalcScrolledPosition(rect
.x
, 0, &rect
.x
, &dummy
);
9600 rect
.width
= cw
- rect
.x
;
9601 rect
.height
= m_colLabelHeight
;
9602 m_colLabelWin
->Refresh( TRUE
, &rect
);
9607 SetRowSize(row
, extentMax
);
9608 if ( !GetBatchCount() )
9611 m_gridWin
->GetClientSize( &cw
, &ch
);
9612 wxRect
rect ( CellToRect( row
, 0 ) );
9614 CalcScrolledPosition(0, rect
.y
, &dummy
, &rect
.y
);
9615 rect
.width
= m_rowLabelWidth
;
9616 rect
.height
= ch
- rect
.y
;
9617 m_rowLabelWin
->Refresh( TRUE
, &rect
);
9623 SetColMinimalWidth(col
, extentMax
);
9625 SetRowMinimalHeight(row
, extentMax
);
9629 int wxGrid::SetOrCalcColumnSizes(bool calcOnly
, bool setAsMin
)
9631 int width
= m_rowLabelWidth
;
9636 for ( int col
= 0; col
< m_numCols
; col
++ )
9640 AutoSizeColumn(col
, setAsMin
);
9643 width
+= GetColWidth(col
);
9652 int wxGrid::SetOrCalcRowSizes(bool calcOnly
, bool setAsMin
)
9654 int height
= m_colLabelHeight
;
9659 for ( int row
= 0; row
< m_numRows
; row
++ )
9663 AutoSizeRow(row
, setAsMin
);
9666 height
+= GetRowHeight(row
);
9675 void wxGrid::AutoSize()
9679 wxSize
size(SetOrCalcColumnSizes(FALSE
), SetOrCalcRowSizes(FALSE
));
9681 // round up the size to a multiple of scroll step - this ensures that we
9682 // won't get the scrollbars if we're sized exactly to this width
9683 // CalcDimension adds m_extraWidth + 1 etc. to calculate the necessary
9685 wxSize
sizeFit(GetScrollX(size
.x
+ m_extraWidth
+ 1) * GRID_SCROLL_LINE_X
,
9686 GetScrollY(size
.y
+ m_extraHeight
+ 1) * GRID_SCROLL_LINE_Y
);
9688 // distribute the extra space between the columns/rows to avoid having
9689 // extra white space
9691 // Remove the extra m_extraWidth + 1 added above
9692 wxCoord diff
= sizeFit
.x
- size
.x
+ (m_extraWidth
+ 1);
9693 if ( diff
&& m_numCols
)
9695 // try to resize the columns uniformly
9696 wxCoord diffPerCol
= diff
/ m_numCols
;
9699 for ( int col
= 0; col
< m_numCols
; col
++ )
9701 SetColSize(col
, GetColWidth(col
) + diffPerCol
);
9705 // add remaining amount to the last columns
9706 diff
-= diffPerCol
* m_numCols
;
9709 for ( int col
= m_numCols
- 1; col
>= m_numCols
- diff
; col
-- )
9711 SetColSize(col
, GetColWidth(col
) + 1);
9717 diff
= sizeFit
.y
- size
.y
- (m_extraHeight
+ 1);
9718 if ( diff
&& m_numRows
)
9720 // try to resize the columns uniformly
9721 wxCoord diffPerRow
= diff
/ m_numRows
;
9724 for ( int row
= 0; row
< m_numRows
; row
++ )
9726 SetRowSize(row
, GetRowHeight(row
) + diffPerRow
);
9730 // add remaining amount to the last rows
9731 diff
-= diffPerRow
* m_numRows
;
9734 for ( int row
= m_numRows
- 1; row
>= m_numRows
- diff
; row
-- )
9736 SetRowSize(row
, GetRowHeight(row
) + 1);
9743 SetClientSize(sizeFit
);
9746 void wxGrid::AutoSizeRowLabelSize( int row
)
9748 wxArrayString lines
;
9751 // Hide the edit control, so it
9752 // won't interfer with drag-shrinking.
9753 if( IsCellEditControlShown() )
9755 HideCellEditControl();
9756 SaveEditControlValue();
9759 // autosize row height depending on label text
9760 StringToLines( GetRowLabelValue( row
), lines
);
9761 wxClientDC
dc( m_rowLabelWin
);
9762 GetTextBoxSize( dc
, lines
, &w
, &h
);
9763 if( h
< m_defaultRowHeight
)
9764 h
= m_defaultRowHeight
;
9769 void wxGrid::AutoSizeColLabelSize( int col
)
9771 wxArrayString lines
;
9774 // Hide the edit control, so it
9775 // won't interfer with drag-shrinking.
9776 if( IsCellEditControlShown() )
9778 HideCellEditControl();
9779 SaveEditControlValue();
9782 // autosize column width depending on label text
9783 StringToLines( GetColLabelValue( col
), lines
);
9784 wxClientDC
dc( m_colLabelWin
);
9785 if( GetColLabelTextOrientation() == wxHORIZONTAL
)
9786 GetTextBoxSize( dc
, lines
, &w
, &h
);
9788 GetTextBoxSize( dc
, lines
, &h
, &w
);
9789 if( w
< m_defaultColWidth
)
9790 w
= m_defaultColWidth
;
9795 wxSize
wxGrid::DoGetBestSize() const
9797 // don't set sizes, only calculate them
9798 wxGrid
*self
= (wxGrid
*)this; // const_cast
9801 width
= self
->SetOrCalcColumnSizes(TRUE
);
9802 height
= self
->SetOrCalcRowSizes(TRUE
);
9804 int maxwidth
, maxheight
;
9805 wxDisplaySize( & maxwidth
, & maxheight
);
9807 if ( width
> maxwidth
) width
= maxwidth
;
9808 if ( height
> maxheight
) height
= maxheight
;
9810 return wxSize( width
, height
);
9819 wxPen
& wxGrid::GetDividerPen() const
9824 // ----------------------------------------------------------------------------
9825 // cell value accessor functions
9826 // ----------------------------------------------------------------------------
9828 void wxGrid::SetCellValue( int row
, int col
, const wxString
& s
)
9832 m_table
->SetValue( row
, col
, s
);
9833 if ( !GetBatchCount() )
9836 wxRect
rect( CellToRect( row
, col
) );
9838 rect
.width
= m_gridWin
->GetClientSize().GetWidth();
9839 CalcScrolledPosition(0, rect
.y
, &dummy
, &rect
.y
);
9840 m_gridWin
->Refresh( FALSE
, &rect
);
9843 if ( m_currentCellCoords
.GetRow() == row
&&
9844 m_currentCellCoords
.GetCol() == col
&&
9845 IsCellEditControlShown())
9846 // Note: If we are using IsCellEditControlEnabled,
9847 // this interacts badly with calling SetCellValue from
9848 // an EVT_GRID_CELL_CHANGE handler.
9850 HideCellEditControl();
9851 ShowCellEditControl(); // will reread data from table
9858 // ------ Block, row and col selection
9861 void wxGrid::SelectRow( int row
, bool addToSelected
)
9863 if ( IsSelection() && !addToSelected
)
9867 m_selection
->SelectRow( row
, FALSE
, addToSelected
);
9871 void wxGrid::SelectCol( int col
, bool addToSelected
)
9873 if ( IsSelection() && !addToSelected
)
9877 m_selection
->SelectCol( col
, FALSE
, addToSelected
);
9881 void wxGrid::SelectBlock( int topRow
, int leftCol
, int bottomRow
, int rightCol
,
9882 bool addToSelected
)
9884 if ( IsSelection() && !addToSelected
)
9888 m_selection
->SelectBlock( topRow
, leftCol
, bottomRow
, rightCol
,
9889 FALSE
, addToSelected
);
9893 void wxGrid::SelectAll()
9895 if ( m_numRows
> 0 && m_numCols
> 0 )
9898 m_selection
->SelectBlock( 0, 0, m_numRows
-1, m_numCols
-1 );
9903 // ------ Cell, row and col deselection
9906 void wxGrid::DeselectRow( int row
)
9911 if ( m_selection
->GetSelectionMode() == wxGrid::wxGridSelectRows
)
9913 if ( m_selection
->IsInSelection(row
, 0 ) )
9914 m_selection
->ToggleCellSelection( row
, 0);
9918 int nCols
= GetNumberCols();
9919 for ( int i
= 0; i
< nCols
; i
++ )
9921 if ( m_selection
->IsInSelection(row
, i
) )
9922 m_selection
->ToggleCellSelection( row
, i
);
9927 void wxGrid::DeselectCol( int col
)
9932 if ( m_selection
->GetSelectionMode() == wxGrid::wxGridSelectColumns
)
9934 if ( m_selection
->IsInSelection(0, col
) )
9935 m_selection
->ToggleCellSelection( 0, col
);
9939 int nRows
= GetNumberRows();
9940 for ( int i
= 0; i
< nRows
; i
++ )
9942 if ( m_selection
->IsInSelection(i
, col
) )
9943 m_selection
->ToggleCellSelection(i
, col
);
9948 void wxGrid::DeselectCell( int row
, int col
)
9950 if ( m_selection
&& m_selection
->IsInSelection(row
, col
) )
9951 m_selection
->ToggleCellSelection(row
, col
);
9954 bool wxGrid::IsSelection()
9956 return ( m_selection
&& (m_selection
->IsSelection() ||
9957 ( m_selectingTopLeft
!= wxGridNoCellCoords
&&
9958 m_selectingBottomRight
!= wxGridNoCellCoords
) ) );
9961 bool wxGrid::IsInSelection( int row
, int col
) const
9963 return ( m_selection
&& (m_selection
->IsInSelection( row
, col
) ||
9964 ( row
>= m_selectingTopLeft
.GetRow() &&
9965 col
>= m_selectingTopLeft
.GetCol() &&
9966 row
<= m_selectingBottomRight
.GetRow() &&
9967 col
<= m_selectingBottomRight
.GetCol() )) );
9970 wxGridCellCoordsArray
wxGrid::GetSelectedCells() const
9972 if (!m_selection
) { wxGridCellCoordsArray a
; return a
; }
9973 return m_selection
->m_cellSelection
;
9975 wxGridCellCoordsArray
wxGrid::GetSelectionBlockTopLeft() const
9977 if (!m_selection
) { wxGridCellCoordsArray a
; return a
; }
9978 return m_selection
->m_blockSelectionTopLeft
;
9980 wxGridCellCoordsArray
wxGrid::GetSelectionBlockBottomRight() const
9982 if (!m_selection
) { wxGridCellCoordsArray a
; return a
; }
9983 return m_selection
->m_blockSelectionBottomRight
;
9985 wxArrayInt
wxGrid::GetSelectedRows() const
9987 if (!m_selection
) { wxArrayInt a
; return a
; }
9988 return m_selection
->m_rowSelection
;
9990 wxArrayInt
wxGrid::GetSelectedCols() const
9992 if (!m_selection
) { wxArrayInt a
; return a
; }
9993 return m_selection
->m_colSelection
;
9997 void wxGrid::ClearSelection()
9999 m_selectingTopLeft
= wxGridNoCellCoords
;
10000 m_selectingBottomRight
= wxGridNoCellCoords
;
10002 m_selection
->ClearSelection();
10006 // This function returns the rectangle that encloses the given block
10007 // in device coords clipped to the client size of the grid window.
10009 wxRect
wxGrid::BlockToDeviceRect( const wxGridCellCoords
&topLeft
,
10010 const wxGridCellCoords
&bottomRight
)
10012 wxRect
rect( wxGridNoCellRect
);
10015 cellRect
= CellToRect( topLeft
);
10016 if ( cellRect
!= wxGridNoCellRect
)
10022 rect
= wxRect( 0, 0, 0, 0 );
10025 cellRect
= CellToRect( bottomRight
);
10026 if ( cellRect
!= wxGridNoCellRect
)
10032 return wxGridNoCellRect
;
10036 int left
= rect
.GetLeft();
10037 int top
= rect
.GetTop();
10038 int right
= rect
.GetRight();
10039 int bottom
= rect
.GetBottom();
10041 int leftCol
= topLeft
.GetCol();
10042 int topRow
= topLeft
.GetRow();
10043 int rightCol
= bottomRight
.GetCol();
10044 int bottomRow
= bottomRight
.GetRow();
10062 topRow
= bottomRow
;
10067 for ( j
= topRow
; j
<= bottomRow
; j
++ )
10069 for ( i
= leftCol
; i
<= rightCol
; i
++ )
10071 if ((j
==topRow
) || (j
==bottomRow
) || (i
==leftCol
) || (i
==rightCol
))
10073 cellRect
= CellToRect( j
, i
);
10075 if (cellRect
.x
< left
)
10077 if (cellRect
.y
< top
)
10079 if (cellRect
.x
+ cellRect
.width
> right
)
10080 right
= cellRect
.x
+ cellRect
.width
;
10081 if (cellRect
.y
+ cellRect
.height
> bottom
)
10082 bottom
= cellRect
.y
+ cellRect
.height
;
10084 else i
= rightCol
; // jump over inner cells.
10088 // convert to scrolled coords
10090 CalcScrolledPosition( left
, top
, &left
, &top
);
10091 CalcScrolledPosition( right
, bottom
, &right
, &bottom
);
10094 m_gridWin
->GetClientSize( &cw
, &ch
);
10096 if (right
< 0 || bottom
< 0 || left
> cw
|| top
> ch
)
10097 return wxRect( 0, 0, 0, 0);
10099 rect
.SetLeft( wxMax(0, left
) );
10100 rect
.SetTop( wxMax(0, top
) );
10101 rect
.SetRight( wxMin(cw
, right
) );
10102 rect
.SetBottom( wxMin(ch
, bottom
) );
10108 // ------ Grid event classes
10111 IMPLEMENT_DYNAMIC_CLASS( wxGridEvent
, wxNotifyEvent
)
10113 wxGridEvent::wxGridEvent( int id
, wxEventType type
, wxObject
* obj
,
10114 int row
, int col
, int x
, int y
, bool sel
,
10115 bool control
, bool shift
, bool alt
, bool meta
)
10116 : wxNotifyEvent( type
, id
)
10123 m_control
= control
;
10128 SetEventObject(obj
);
10132 IMPLEMENT_DYNAMIC_CLASS( wxGridSizeEvent
, wxNotifyEvent
)
10134 wxGridSizeEvent::wxGridSizeEvent( int id
, wxEventType type
, wxObject
* obj
,
10135 int rowOrCol
, int x
, int y
,
10136 bool control
, bool shift
, bool alt
, bool meta
)
10137 : wxNotifyEvent( type
, id
)
10139 m_rowOrCol
= rowOrCol
;
10142 m_control
= control
;
10147 SetEventObject(obj
);
10151 IMPLEMENT_DYNAMIC_CLASS( wxGridRangeSelectEvent
, wxNotifyEvent
)
10153 wxGridRangeSelectEvent::wxGridRangeSelectEvent(int id
, wxEventType type
, wxObject
* obj
,
10154 const wxGridCellCoords
& topLeft
,
10155 const wxGridCellCoords
& bottomRight
,
10156 bool sel
, bool control
,
10157 bool shift
, bool alt
, bool meta
)
10158 : wxNotifyEvent( type
, id
)
10160 m_topLeft
= topLeft
;
10161 m_bottomRight
= bottomRight
;
10163 m_control
= control
;
10168 SetEventObject(obj
);
10172 IMPLEMENT_DYNAMIC_CLASS(wxGridEditorCreatedEvent
, wxCommandEvent
)
10174 wxGridEditorCreatedEvent::wxGridEditorCreatedEvent(int id
, wxEventType type
,
10175 wxObject
* obj
, int row
,
10176 int col
, wxControl
* ctrl
)
10177 : wxCommandEvent(type
, id
)
10179 SetEventObject(obj
);
10185 #endif // wxUSE_GRID