1 ///////////////////////////////////////////////////////////////////////////
2 // Name: src/generic/grid.cpp
3 // Purpose: wxGrid and related classes
4 // Author: Michael Bedward (based on code by Julian Smart, Robin Dunn)
5 // Modified by: Robin Dunn, Vadim Zeitlin, Santiago Palacios
8 // Copyright: (c) Michael Bedward (mbedward@ozemail.com.au)
9 // Licence: wxWindows licence
10 /////////////////////////////////////////////////////////////////////////////
12 // For compilers that support precompilation, includes "wx/wx.h".
13 #include "wx/wxprec.h"
25 #include "wx/dcclient.h"
26 #include "wx/settings.h"
28 #include "wx/textctrl.h"
29 #include "wx/checkbox.h"
30 #include "wx/combobox.h"
31 #include "wx/valtext.h"
34 #include "wx/listbox.h"
37 #include "wx/textfile.h"
38 #include "wx/spinctrl.h"
39 #include "wx/tokenzr.h"
40 #include "wx/renderer.h"
42 #include "wx/generic/gridsel.h"
44 const wxChar wxGridNameStr
[] = wxT("grid");
46 #if defined(__WXMOTIF__)
47 #define WXUNUSED_MOTIF(identifier) WXUNUSED(identifier)
49 #define WXUNUSED_MOTIF(identifier) identifier
52 #if defined(__WXGTK__)
53 #define WXUNUSED_GTK(identifier) WXUNUSED(identifier)
55 #define WXUNUSED_GTK(identifier) identifier
58 // Required for wxIs... functions
61 // ----------------------------------------------------------------------------
63 // ----------------------------------------------------------------------------
65 WX_DEFINE_ARRAY_WITH_DECL_PTR(wxGridCellAttr
*, wxArrayAttrs
,
66 class WXDLLIMPEXP_ADV
);
68 struct wxGridCellWithAttr
70 wxGridCellWithAttr(int row
, int col
, wxGridCellAttr
*attr_
)
71 : coords(row
, col
), attr(attr_
)
80 wxGridCellCoords coords
;
84 // DECLARE_NO_COPY_CLASS(wxGridCellWithAttr)
85 // without rewriting the macros, which require a public copy constructor.
88 WX_DECLARE_OBJARRAY_WITH_DECL(wxGridCellWithAttr
, wxGridCellWithAttrArray
,
89 class WXDLLIMPEXP_ADV
);
91 #include "wx/arrimpl.cpp"
93 WX_DEFINE_OBJARRAY(wxGridCellCoordsArray
)
94 WX_DEFINE_OBJARRAY(wxGridCellWithAttrArray
)
96 // ----------------------------------------------------------------------------
98 // ----------------------------------------------------------------------------
100 DEFINE_EVENT_TYPE(wxEVT_GRID_CELL_LEFT_CLICK
)
101 DEFINE_EVENT_TYPE(wxEVT_GRID_CELL_RIGHT_CLICK
)
102 DEFINE_EVENT_TYPE(wxEVT_GRID_CELL_LEFT_DCLICK
)
103 DEFINE_EVENT_TYPE(wxEVT_GRID_CELL_RIGHT_DCLICK
)
104 DEFINE_EVENT_TYPE(wxEVT_GRID_CELL_BEGIN_DRAG
)
105 DEFINE_EVENT_TYPE(wxEVT_GRID_LABEL_LEFT_CLICK
)
106 DEFINE_EVENT_TYPE(wxEVT_GRID_LABEL_RIGHT_CLICK
)
107 DEFINE_EVENT_TYPE(wxEVT_GRID_LABEL_LEFT_DCLICK
)
108 DEFINE_EVENT_TYPE(wxEVT_GRID_LABEL_RIGHT_DCLICK
)
109 DEFINE_EVENT_TYPE(wxEVT_GRID_ROW_SIZE
)
110 DEFINE_EVENT_TYPE(wxEVT_GRID_COL_SIZE
)
111 DEFINE_EVENT_TYPE(wxEVT_GRID_COL_MOVE
)
112 DEFINE_EVENT_TYPE(wxEVT_GRID_RANGE_SELECT
)
113 DEFINE_EVENT_TYPE(wxEVT_GRID_CELL_CHANGE
)
114 DEFINE_EVENT_TYPE(wxEVT_GRID_SELECT_CELL
)
115 DEFINE_EVENT_TYPE(wxEVT_GRID_EDITOR_SHOWN
)
116 DEFINE_EVENT_TYPE(wxEVT_GRID_EDITOR_HIDDEN
)
117 DEFINE_EVENT_TYPE(wxEVT_GRID_EDITOR_CREATED
)
119 // ----------------------------------------------------------------------------
121 // ----------------------------------------------------------------------------
123 // common base class for various grid subwindows
124 class WXDLLIMPEXP_ADV wxGridSubwindow
: public wxWindow
127 wxGridSubwindow() { m_owner
= NULL
; }
128 wxGridSubwindow(wxGrid
*owner
,
132 int additionalStyle
= 0,
133 const wxString
& name
= wxPanelNameStr
)
134 : wxWindow(owner
, id
, pos
, size
,
135 wxBORDER_NONE
| additionalStyle
,
141 virtual bool AcceptsFocus() const { return false; }
143 wxGrid
*GetOwner() { return m_owner
; }
146 void OnMouseCaptureLost(wxMouseCaptureLostEvent
& event
);
150 DECLARE_EVENT_TABLE()
151 DECLARE_NO_COPY_CLASS(wxGridSubwindow
)
154 class WXDLLIMPEXP_ADV wxGridRowLabelWindow
: public wxGridSubwindow
157 wxGridRowLabelWindow() { }
158 wxGridRowLabelWindow( wxGrid
*parent
, wxWindowID id
,
159 const wxPoint
&pos
, const wxSize
&size
);
162 void OnPaint( wxPaintEvent
& event
);
163 void OnMouseEvent( wxMouseEvent
& event
);
164 void OnMouseWheel( wxMouseEvent
& event
);
166 DECLARE_DYNAMIC_CLASS(wxGridRowLabelWindow
)
167 DECLARE_EVENT_TABLE()
168 DECLARE_NO_COPY_CLASS(wxGridRowLabelWindow
)
172 class WXDLLIMPEXP_ADV wxGridColLabelWindow
: public wxGridSubwindow
175 wxGridColLabelWindow() { }
176 wxGridColLabelWindow( wxGrid
*parent
, wxWindowID id
,
177 const wxPoint
&pos
, const wxSize
&size
);
180 void OnPaint( wxPaintEvent
& event
);
181 void OnMouseEvent( wxMouseEvent
& event
);
182 void OnMouseWheel( wxMouseEvent
& event
);
184 DECLARE_DYNAMIC_CLASS(wxGridColLabelWindow
)
185 DECLARE_EVENT_TABLE()
186 DECLARE_NO_COPY_CLASS(wxGridColLabelWindow
)
190 class WXDLLIMPEXP_ADV wxGridCornerLabelWindow
: public wxGridSubwindow
193 wxGridCornerLabelWindow() { }
194 wxGridCornerLabelWindow( wxGrid
*parent
, wxWindowID id
,
195 const wxPoint
&pos
, const wxSize
&size
);
198 void OnMouseEvent( wxMouseEvent
& event
);
199 void OnMouseWheel( wxMouseEvent
& event
);
200 void OnPaint( wxPaintEvent
& event
);
202 DECLARE_DYNAMIC_CLASS(wxGridCornerLabelWindow
)
203 DECLARE_EVENT_TABLE()
204 DECLARE_NO_COPY_CLASS(wxGridCornerLabelWindow
)
207 class WXDLLIMPEXP_ADV wxGridWindow
: public wxGridSubwindow
212 m_rowLabelWin
= NULL
;
213 m_colLabelWin
= NULL
;
216 wxGridWindow( wxGrid
*parent
,
217 wxGridRowLabelWindow
*rowLblWin
,
218 wxGridColLabelWindow
*colLblWin
,
219 wxWindowID id
, const wxPoint
&pos
, const wxSize
&size
);
221 void ScrollWindow( int dx
, int dy
, const wxRect
*rect
);
223 virtual bool AcceptsFocus() const { return true; }
226 wxGridRowLabelWindow
*m_rowLabelWin
;
227 wxGridColLabelWindow
*m_colLabelWin
;
229 void OnPaint( wxPaintEvent
&event
);
230 void OnMouseWheel( wxMouseEvent
& event
);
231 void OnMouseEvent( wxMouseEvent
& event
);
232 void OnKeyDown( wxKeyEvent
& );
233 void OnKeyUp( wxKeyEvent
& );
234 void OnChar( wxKeyEvent
& );
235 void OnEraseBackground( wxEraseEvent
& );
236 void OnFocus( wxFocusEvent
& );
238 DECLARE_DYNAMIC_CLASS(wxGridWindow
)
239 DECLARE_EVENT_TABLE()
240 DECLARE_NO_COPY_CLASS(wxGridWindow
)
244 class wxGridCellEditorEvtHandler
: public wxEvtHandler
247 wxGridCellEditorEvtHandler(wxGrid
* grid
, wxGridCellEditor
* editor
)
254 void OnKillFocus(wxFocusEvent
& event
);
255 void OnKeyDown(wxKeyEvent
& event
);
256 void OnChar(wxKeyEvent
& event
);
258 void SetInSetFocus(bool inSetFocus
) { m_inSetFocus
= inSetFocus
; }
262 wxGridCellEditor
*m_editor
;
264 // Work around the fact that a focus kill event can be sent to
265 // a combobox within a set focus event.
268 DECLARE_EVENT_TABLE()
269 DECLARE_DYNAMIC_CLASS(wxGridCellEditorEvtHandler
)
270 DECLARE_NO_COPY_CLASS(wxGridCellEditorEvtHandler
)
274 IMPLEMENT_ABSTRACT_CLASS(wxGridCellEditorEvtHandler
, wxEvtHandler
)
276 BEGIN_EVENT_TABLE( wxGridCellEditorEvtHandler
, wxEvtHandler
)
277 EVT_KILL_FOCUS( wxGridCellEditorEvtHandler::OnKillFocus
)
278 EVT_KEY_DOWN( wxGridCellEditorEvtHandler::OnKeyDown
)
279 EVT_CHAR( wxGridCellEditorEvtHandler::OnChar
)
283 // ----------------------------------------------------------------------------
284 // the internal data representation used by wxGridCellAttrProvider
285 // ----------------------------------------------------------------------------
287 // this class stores attributes set for cells
288 class WXDLLIMPEXP_ADV wxGridCellAttrData
291 void SetAttr(wxGridCellAttr
*attr
, int row
, int col
);
292 wxGridCellAttr
*GetAttr(int row
, int col
) const;
293 void UpdateAttrRows( size_t pos
, int numRows
);
294 void UpdateAttrCols( size_t pos
, int numCols
);
297 // searches for the attr for given cell, returns wxNOT_FOUND if not found
298 int FindIndex(int row
, int col
) const;
300 wxGridCellWithAttrArray m_attrs
;
303 // this class stores attributes set for rows or columns
304 class WXDLLIMPEXP_ADV wxGridRowOrColAttrData
307 // empty ctor to suppress warnings
308 wxGridRowOrColAttrData() {}
309 ~wxGridRowOrColAttrData();
311 void SetAttr(wxGridCellAttr
*attr
, int rowOrCol
);
312 wxGridCellAttr
*GetAttr(int rowOrCol
) const;
313 void UpdateAttrRowsOrCols( size_t pos
, int numRowsOrCols
);
316 wxArrayInt m_rowsOrCols
;
317 wxArrayAttrs m_attrs
;
320 // NB: this is just a wrapper around 3 objects: one which stores cell
321 // attributes, and 2 others for row/col ones
322 class WXDLLIMPEXP_ADV wxGridCellAttrProviderData
325 wxGridCellAttrData m_cellAttrs
;
326 wxGridRowOrColAttrData m_rowAttrs
,
331 // ----------------------------------------------------------------------------
332 // data structures used for the data type registry
333 // ----------------------------------------------------------------------------
335 struct wxGridDataTypeInfo
337 wxGridDataTypeInfo(const wxString
& typeName
,
338 wxGridCellRenderer
* renderer
,
339 wxGridCellEditor
* editor
)
340 : m_typeName(typeName
), m_renderer(renderer
), m_editor(editor
)
343 ~wxGridDataTypeInfo()
345 wxSafeDecRef(m_renderer
);
346 wxSafeDecRef(m_editor
);
350 wxGridCellRenderer
* m_renderer
;
351 wxGridCellEditor
* m_editor
;
353 DECLARE_NO_COPY_CLASS(wxGridDataTypeInfo
)
357 WX_DEFINE_ARRAY_WITH_DECL_PTR(wxGridDataTypeInfo
*, wxGridDataTypeInfoArray
,
358 class WXDLLIMPEXP_ADV
);
361 class WXDLLIMPEXP_ADV wxGridTypeRegistry
364 wxGridTypeRegistry() {}
365 ~wxGridTypeRegistry();
367 void RegisterDataType(const wxString
& typeName
,
368 wxGridCellRenderer
* renderer
,
369 wxGridCellEditor
* editor
);
371 // find one of already registered data types
372 int FindRegisteredDataType(const wxString
& typeName
);
374 // try to FindRegisteredDataType(), if this fails and typeName is one of
375 // standard typenames, register it and return its index
376 int FindDataType(const wxString
& typeName
);
378 // try to FindDataType(), if it fails see if it is not one of already
379 // registered data types with some params in which case clone the
380 // registered data type and set params for it
381 int FindOrCloneDataType(const wxString
& typeName
);
383 wxGridCellRenderer
* GetRenderer(int index
);
384 wxGridCellEditor
* GetEditor(int index
);
387 wxGridDataTypeInfoArray m_typeinfo
;
391 // ----------------------------------------------------------------------------
392 // conditional compilation
393 // ----------------------------------------------------------------------------
395 #ifndef WXGRID_DRAW_LINES
396 #define WXGRID_DRAW_LINES 1
399 // ----------------------------------------------------------------------------
401 // ----------------------------------------------------------------------------
403 //#define DEBUG_ATTR_CACHE
404 #ifdef DEBUG_ATTR_CACHE
405 static size_t gs_nAttrCacheHits
= 0;
406 static size_t gs_nAttrCacheMisses
= 0;
409 // ----------------------------------------------------------------------------
411 // ----------------------------------------------------------------------------
413 wxGridCellCoords
wxGridNoCellCoords( -1, -1 );
414 wxRect
wxGridNoCellRect( -1, -1, -1, -1 );
417 // TODO: this doesn't work at all, grid cells have different sizes and approx
418 // calculations don't work as because of the size mismatch scrollbars
419 // sometimes fail to be shown when they should be or vice versa
421 // The scroll bars may be a little flakey once in a while, but that is
422 // surely much less horrible than having scroll lines of only 1!!!
425 // Well, it's still seriously broken so it might be better but needs
428 static const size_t GRID_SCROLL_LINE_X
= 15; // 1;
429 static const size_t GRID_SCROLL_LINE_Y
= GRID_SCROLL_LINE_X
;
431 // the size of hash tables used a bit everywhere (the max number of elements
432 // in these hash tables is the number of rows/columns)
433 static const int GRID_HASH_SIZE
= 100;
436 // ----------------------------------------------------------------------------
438 // ----------------------------------------------------------------------------
440 static inline int GetScrollX(int x
)
442 return (x
+ GRID_SCROLL_LINE_X
- 1) / GRID_SCROLL_LINE_X
;
445 static inline int GetScrollY(int y
)
447 return (y
+ GRID_SCROLL_LINE_Y
- 1) / GRID_SCROLL_LINE_Y
;
451 // ============================================================================
453 // ============================================================================
455 // ----------------------------------------------------------------------------
457 // ----------------------------------------------------------------------------
459 wxGridCellEditor::wxGridCellEditor()
465 wxGridCellEditor::~wxGridCellEditor()
470 void wxGridCellEditor::Create(wxWindow
* WXUNUSED(parent
),
471 wxWindowID
WXUNUSED(id
),
472 wxEvtHandler
* evtHandler
)
475 m_control
->PushEventHandler(evtHandler
);
478 void wxGridCellEditor::PaintBackground(const wxRect
& rectCell
,
479 wxGridCellAttr
*attr
)
481 // erase the background because we might not fill the cell
482 wxClientDC
dc(m_control
->GetParent());
483 wxGridWindow
* gridWindow
= wxDynamicCast(m_control
->GetParent(), wxGridWindow
);
485 gridWindow
->GetOwner()->PrepareDC(dc
);
487 dc
.SetPen(*wxTRANSPARENT_PEN
);
488 dc
.SetBrush(wxBrush(attr
->GetBackgroundColour(), wxSOLID
));
489 dc
.DrawRectangle(rectCell
);
491 // redraw the control we just painted over
492 m_control
->Refresh();
495 void wxGridCellEditor::Destroy()
499 m_control
->PopEventHandler( true /* delete it*/ );
501 m_control
->Destroy();
506 void wxGridCellEditor::Show(bool show
, wxGridCellAttr
*attr
)
508 wxASSERT_MSG(m_control
, wxT("The wxGridCellEditor must be created first!"));
510 m_control
->Show(show
);
514 // set the colours/fonts if we have any
517 m_colFgOld
= m_control
->GetForegroundColour();
518 m_control
->SetForegroundColour(attr
->GetTextColour());
520 m_colBgOld
= m_control
->GetBackgroundColour();
521 m_control
->SetBackgroundColour(attr
->GetBackgroundColour());
523 // Workaround for GTK+1 font setting problem on some platforms
524 #if !defined(__WXGTK__) || defined(__WXGTK20__)
525 m_fontOld
= m_control
->GetFont();
526 m_control
->SetFont(attr
->GetFont());
529 // can't do anything more in the base class version, the other
530 // attributes may only be used by the derived classes
535 // restore the standard colours fonts
536 if ( m_colFgOld
.Ok() )
538 m_control
->SetForegroundColour(m_colFgOld
);
539 m_colFgOld
= wxNullColour
;
542 if ( m_colBgOld
.Ok() )
544 m_control
->SetBackgroundColour(m_colBgOld
);
545 m_colBgOld
= wxNullColour
;
548 // Workaround for GTK+1 font setting problem on some platforms
549 #if !defined(__WXGTK__) || defined(__WXGTK20__)
550 if ( m_fontOld
.Ok() )
552 m_control
->SetFont(m_fontOld
);
553 m_fontOld
= wxNullFont
;
559 void wxGridCellEditor::SetSize(const wxRect
& rect
)
561 wxASSERT_MSG(m_control
, wxT("The wxGridCellEditor must be created first!"));
563 m_control
->SetSize(rect
, wxSIZE_ALLOW_MINUS_ONE
);
566 void wxGridCellEditor::HandleReturn(wxKeyEvent
& event
)
571 bool wxGridCellEditor::IsAcceptedKey(wxKeyEvent
& event
)
573 bool ctrl
= event
.ControlDown();
574 bool alt
= event
.AltDown();
577 // On the Mac the Alt key is more like shift and is used for entry of
578 // valid characters, so check for Ctrl and Meta instead.
579 alt
= event
.MetaDown();
582 // Assume it's not a valid char if ctrl or alt is down, but if both are
583 // down then it may be because of an AltGr key combination, so let them
584 // through in that case.
585 if ((ctrl
|| alt
) && !(ctrl
&& alt
))
592 // If it's a F-Key or other special key then it shouldn't start the
594 if (event
.GetKeyCode() >= WXK_START
)
598 // if the unicode key code is not really a unicode character (it may
599 // be a function key or etc., the platforms appear to always give us a
600 // small value in this case) then fallback to the ASCII key code but
601 // don't do anything for function keys or etc.
602 key
= event
.GetUnicodeKey();
605 key
= event
.GetKeyCode();
606 keyOk
= (key
<= 127);
609 key
= event
.GetKeyCode();
610 keyOk
= (key
<= 255);
616 void wxGridCellEditor::StartingKey(wxKeyEvent
& event
)
621 void wxGridCellEditor::StartingClick()
627 // ----------------------------------------------------------------------------
628 // wxGridCellTextEditor
629 // ----------------------------------------------------------------------------
631 wxGridCellTextEditor::wxGridCellTextEditor()
636 void wxGridCellTextEditor::Create(wxWindow
* parent
,
638 wxEvtHandler
* evtHandler
)
640 DoCreate(parent
, id
, evtHandler
);
643 void wxGridCellTextEditor::DoCreate(wxWindow
* parent
,
645 wxEvtHandler
* evtHandler
,
648 style
|= wxTE_PROCESS_ENTER
|
653 m_control
= new wxTextCtrl(parent
, id
, wxEmptyString
,
654 wxDefaultPosition
, wxDefaultSize
,
657 // set max length allowed in the textctrl, if the parameter was set
658 if ( m_maxChars
!= 0 )
660 Text()->SetMaxLength(m_maxChars
);
663 wxGridCellEditor::Create(parent
, id
, evtHandler
);
666 void wxGridCellTextEditor::PaintBackground(const wxRect
& WXUNUSED(rectCell
),
667 wxGridCellAttr
* WXUNUSED(attr
))
669 // as we fill the entire client area,
670 // don't do anything here to minimize flicker
673 void wxGridCellTextEditor::SetSize(const wxRect
& rectOrig
)
675 wxRect
rect(rectOrig
);
677 // Make the edit control large enough to allow for internal margins
679 // TODO: remove this if the text ctrl sizing is improved esp. for unix
681 #if defined(__WXGTK__)
689 #elif defined(__WXMSW__)
703 int extra_x
= ( rect
.x
> 2 ) ? 2 : 1;
704 int extra_y
= ( rect
.y
> 2 ) ? 2 : 1;
706 #if defined(__WXMOTIF__)
711 rect
.SetLeft( wxMax(0, rect
.x
- extra_x
) );
712 rect
.SetTop( wxMax(0, rect
.y
- extra_y
) );
713 rect
.SetRight( rect
.GetRight() + 2 * extra_x
);
714 rect
.SetBottom( rect
.GetBottom() + 2 * extra_y
);
717 wxGridCellEditor::SetSize(rect
);
720 void wxGridCellTextEditor::BeginEdit(int row
, int col
, wxGrid
* grid
)
722 wxASSERT_MSG(m_control
, wxT("The wxGridCellEditor must be created first!"));
724 m_startValue
= grid
->GetTable()->GetValue(row
, col
);
726 DoBeginEdit(m_startValue
);
729 void wxGridCellTextEditor::DoBeginEdit(const wxString
& startValue
)
731 Text()->SetValue(startValue
);
732 Text()->SetInsertionPointEnd();
733 Text()->SetSelection(-1, -1);
737 bool wxGridCellTextEditor::EndEdit(int row
, int col
, wxGrid
* grid
)
739 wxASSERT_MSG(m_control
, wxT("The wxGridCellEditor must be created first!"));
741 bool changed
= false;
742 wxString value
= Text()->GetValue();
743 if (value
!= m_startValue
)
747 grid
->GetTable()->SetValue(row
, col
, value
);
749 m_startValue
= wxEmptyString
;
751 // No point in setting the text of the hidden control
752 //Text()->SetValue(m_startValue);
757 void wxGridCellTextEditor::Reset()
759 wxASSERT_MSG(m_control
, wxT("The wxGridCellEditor must be created first!"));
761 DoReset(m_startValue
);
764 void wxGridCellTextEditor::DoReset(const wxString
& startValue
)
766 Text()->SetValue(startValue
);
767 Text()->SetInsertionPointEnd();
770 bool wxGridCellTextEditor::IsAcceptedKey(wxKeyEvent
& event
)
772 return wxGridCellEditor::IsAcceptedKey(event
);
775 void wxGridCellTextEditor::StartingKey(wxKeyEvent
& event
)
777 // Since this is now happening in the EVT_CHAR event EmulateKeyPress is no
778 // longer an appropriate way to get the character into the text control.
779 // Do it ourselves instead. We know that if we get this far that we have
780 // a valid character, so not a whole lot of testing needs to be done.
782 wxTextCtrl
* tc
= Text();
787 ch
= event
.GetUnicodeKey();
789 ch
= (wxChar
)event
.GetKeyCode();
791 ch
= (wxChar
)event
.GetKeyCode();
797 // delete the character at the cursor
798 pos
= tc
->GetInsertionPoint();
799 if (pos
< tc
->GetLastPosition())
800 tc
->Remove(pos
, pos
+ 1);
804 // delete the character before the cursor
805 pos
= tc
->GetInsertionPoint();
807 tc
->Remove(pos
- 1, pos
);
816 void wxGridCellTextEditor::HandleReturn( wxKeyEvent
&
817 WXUNUSED_GTK(WXUNUSED_MOTIF(event
)) )
819 #if defined(__WXMOTIF__) || defined(__WXGTK__)
820 // wxMotif needs a little extra help...
821 size_t pos
= (size_t)( Text()->GetInsertionPoint() );
822 wxString
s( Text()->GetValue() );
823 s
= s
.Left(pos
) + wxT("\n") + s
.Mid(pos
);
825 Text()->SetInsertionPoint( pos
);
827 // the other ports can handle a Return key press
833 void wxGridCellTextEditor::SetParameters(const wxString
& params
)
843 if ( params
.ToLong(&tmp
) )
845 m_maxChars
= (size_t)tmp
;
849 wxLogDebug( _T("Invalid wxGridCellTextEditor parameter string '%s' ignored"), params
.c_str() );
854 // return the value in the text control
855 wxString
wxGridCellTextEditor::GetValue() const
857 return Text()->GetValue();
860 // ----------------------------------------------------------------------------
861 // wxGridCellNumberEditor
862 // ----------------------------------------------------------------------------
864 wxGridCellNumberEditor::wxGridCellNumberEditor(int min
, int max
)
870 void wxGridCellNumberEditor::Create(wxWindow
* parent
,
872 wxEvtHandler
* evtHandler
)
877 // create a spin ctrl
878 m_control
= new wxSpinCtrl(parent
, wxID_ANY
, wxEmptyString
,
879 wxDefaultPosition
, wxDefaultSize
,
883 wxGridCellEditor::Create(parent
, id
, evtHandler
);
888 // just a text control
889 wxGridCellTextEditor::Create(parent
, id
, evtHandler
);
892 Text()->SetValidator(wxTextValidator(wxFILTER_NUMERIC
));
897 void wxGridCellNumberEditor::BeginEdit(int row
, int col
, wxGrid
* grid
)
899 // first get the value
900 wxGridTableBase
*table
= grid
->GetTable();
901 if ( table
->CanGetValueAs(row
, col
, wxGRID_VALUE_NUMBER
) )
903 m_valueOld
= table
->GetValueAsLong(row
, col
);
908 wxString sValue
= table
->GetValue(row
, col
);
909 if (! sValue
.ToLong(&m_valueOld
) && ! sValue
.empty())
911 wxFAIL_MSG( _T("this cell doesn't have numeric value") );
919 Spin()->SetValue((int)m_valueOld
);
925 DoBeginEdit(GetString());
929 bool wxGridCellNumberEditor::EndEdit(int row
, int col
,
939 value
= Spin()->GetValue();
940 changed
= value
!= m_valueOld
;
942 text
= wxString::Format(wxT("%ld"), value
);
947 text
= Text()->GetValue();
948 changed
= (text
.empty() || text
.ToLong(&value
)) && (value
!= m_valueOld
);
953 if (grid
->GetTable()->CanSetValueAs(row
, col
, wxGRID_VALUE_NUMBER
))
954 grid
->GetTable()->SetValueAsLong(row
, col
, value
);
956 grid
->GetTable()->SetValue(row
, col
, text
);
962 void wxGridCellNumberEditor::Reset()
967 Spin()->SetValue((int)m_valueOld
);
972 DoReset(GetString());
976 bool wxGridCellNumberEditor::IsAcceptedKey(wxKeyEvent
& event
)
978 if ( wxGridCellEditor::IsAcceptedKey(event
) )
980 int keycode
= event
.GetKeyCode();
981 if ( (keycode
< 128) &&
982 (wxIsdigit(keycode
) || keycode
== '+' || keycode
== '-'))
991 void wxGridCellNumberEditor::StartingKey(wxKeyEvent
& event
)
993 int keycode
= event
.GetKeyCode();
996 if ( wxIsdigit(keycode
) || keycode
== '+' || keycode
== '-')
998 wxGridCellTextEditor::StartingKey(event
);
1000 // skip Skip() below
1007 if ( wxIsdigit(keycode
) )
1009 wxSpinCtrl
* spin
= (wxSpinCtrl
*)m_control
;
1010 spin
->SetValue(keycode
- '0');
1011 spin
->SetSelection(1,1);
1020 void wxGridCellNumberEditor::SetParameters(const wxString
& params
)
1031 if ( params
.BeforeFirst(_T(',')).ToLong(&tmp
) )
1035 if ( params
.AfterFirst(_T(',')).ToLong(&tmp
) )
1039 // skip the error message below
1044 wxLogDebug(_T("Invalid wxGridCellNumberEditor parameter string '%s' ignored"), params
.c_str());
1048 // return the value in the spin control if it is there (the text control otherwise)
1049 wxString
wxGridCellNumberEditor::GetValue() const
1056 long value
= Spin()->GetValue();
1057 s
.Printf(wxT("%ld"), value
);
1062 s
= Text()->GetValue();
1068 // ----------------------------------------------------------------------------
1069 // wxGridCellFloatEditor
1070 // ----------------------------------------------------------------------------
1072 wxGridCellFloatEditor::wxGridCellFloatEditor(int width
, int precision
)
1075 m_precision
= precision
;
1078 void wxGridCellFloatEditor::Create(wxWindow
* parent
,
1080 wxEvtHandler
* evtHandler
)
1082 wxGridCellTextEditor::Create(parent
, id
, evtHandler
);
1084 #if wxUSE_VALIDATORS
1085 Text()->SetValidator(wxTextValidator(wxFILTER_NUMERIC
));
1089 void wxGridCellFloatEditor::BeginEdit(int row
, int col
, wxGrid
* grid
)
1091 // first get the value
1092 wxGridTableBase
*table
= grid
->GetTable();
1093 if ( table
->CanGetValueAs(row
, col
, wxGRID_VALUE_FLOAT
) )
1095 m_valueOld
= table
->GetValueAsDouble(row
, col
);
1100 wxString sValue
= table
->GetValue(row
, col
);
1101 if (! sValue
.ToDouble(&m_valueOld
) && ! sValue
.empty())
1103 wxFAIL_MSG( _T("this cell doesn't have float value") );
1108 DoBeginEdit(GetString());
1111 bool wxGridCellFloatEditor::EndEdit(int row
, int col
,
1115 wxString
text(Text()->GetValue());
1117 if ( (text
.empty() || text
.ToDouble(&value
)) &&
1118 !wxIsSameDouble(value
, m_valueOld
) )
1120 if (grid
->GetTable()->CanSetValueAs(row
, col
, wxGRID_VALUE_FLOAT
))
1121 grid
->GetTable()->SetValueAsDouble(row
, col
, value
);
1123 grid
->GetTable()->SetValue(row
, col
, text
);
1131 void wxGridCellFloatEditor::Reset()
1133 DoReset(GetString());
1136 void wxGridCellFloatEditor::StartingKey(wxKeyEvent
& event
)
1138 int keycode
= event
.GetKeyCode();
1140 tmpbuf
[0] = (char) keycode
;
1142 wxString
strbuf(tmpbuf
, *wxConvCurrent
);
1145 bool is_decimal_point
= ( strbuf
==
1146 wxLocale::GetInfo(wxLOCALE_DECIMAL_POINT
, wxLOCALE_CAT_NUMBER
) );
1148 bool is_decimal_point
= ( strbuf
== _T(".") );
1151 if ( wxIsdigit(keycode
) || keycode
== '+' || keycode
== '-'
1152 || is_decimal_point
)
1154 wxGridCellTextEditor::StartingKey(event
);
1156 // skip Skip() below
1163 void wxGridCellFloatEditor::SetParameters(const wxString
& params
)
1174 if ( params
.BeforeFirst(_T(',')).ToLong(&tmp
) )
1178 if ( params
.AfterFirst(_T(',')).ToLong(&tmp
) )
1180 m_precision
= (int)tmp
;
1182 // skip the error message below
1187 wxLogDebug(_T("Invalid wxGridCellFloatEditor parameter string '%s' ignored"), params
.c_str());
1191 wxString
wxGridCellFloatEditor::GetString() const
1194 if ( m_precision
== -1 && m_width
!= -1)
1196 // default precision
1197 fmt
.Printf(_T("%%%d.f"), m_width
);
1199 else if ( m_precision
!= -1 && m_width
== -1)
1202 fmt
.Printf(_T("%%.%df"), m_precision
);
1204 else if ( m_precision
!= -1 && m_width
!= -1 )
1206 fmt
.Printf(_T("%%%d.%df"), m_width
, m_precision
);
1210 // default width/precision
1214 return wxString::Format(fmt
, m_valueOld
);
1217 bool wxGridCellFloatEditor::IsAcceptedKey(wxKeyEvent
& event
)
1219 if ( wxGridCellEditor::IsAcceptedKey(event
) )
1221 const int keycode
= event
.GetKeyCode();
1222 if ( isascii(keycode
) )
1225 tmpbuf
[0] = (char) keycode
;
1227 wxString
strbuf(tmpbuf
, *wxConvCurrent
);
1230 const wxString decimalPoint
=
1231 wxLocale::GetInfo(wxLOCALE_DECIMAL_POINT
, wxLOCALE_CAT_NUMBER
);
1233 const wxString
decimalPoint(_T('.'));
1236 // accept digits, 'e' as in '1e+6', also '-', '+', and '.'
1237 if ( wxIsdigit(keycode
) ||
1238 tolower(keycode
) == 'e' ||
1239 keycode
== decimalPoint
||
1251 #endif // wxUSE_TEXTCTRL
1255 // ----------------------------------------------------------------------------
1256 // wxGridCellBoolEditor
1257 // ----------------------------------------------------------------------------
1259 // the default values for GetValue()
1260 wxString
wxGridCellBoolEditor::ms_stringValues
[2] = { _T(""), _T("1") };
1262 void wxGridCellBoolEditor::Create(wxWindow
* parent
,
1264 wxEvtHandler
* evtHandler
)
1266 m_control
= new wxCheckBox(parent
, id
, wxEmptyString
,
1267 wxDefaultPosition
, wxDefaultSize
,
1270 wxGridCellEditor::Create(parent
, id
, evtHandler
);
1273 void wxGridCellBoolEditor::SetSize(const wxRect
& r
)
1275 bool resize
= false;
1276 wxSize size
= m_control
->GetSize();
1277 wxCoord minSize
= wxMin(r
.width
, r
.height
);
1279 // check if the checkbox is not too big/small for this cell
1280 wxSize sizeBest
= m_control
->GetBestSize();
1281 if ( !(size
== sizeBest
) )
1283 // reset to default size if it had been made smaller
1289 if ( size
.x
>= minSize
|| size
.y
>= minSize
)
1291 // leave 1 pixel margin
1292 size
.x
= size
.y
= minSize
- 2;
1299 m_control
->SetSize(size
);
1302 // position it in the centre of the rectangle (TODO: support alignment?)
1304 #if defined(__WXGTK__) || defined (__WXMOTIF__)
1305 // the checkbox without label still has some space to the right in wxGTK,
1306 // so shift it to the right
1308 #elif defined(__WXMSW__)
1309 // here too, but in other way
1314 int hAlign
= wxALIGN_CENTRE
;
1315 int vAlign
= wxALIGN_CENTRE
;
1317 GetCellAttr()->GetAlignment(& hAlign
, & vAlign
);
1320 if (hAlign
== wxALIGN_LEFT
)
1328 y
= r
.y
+ r
.height
/ 2 - size
.y
/ 2;
1330 else if (hAlign
== wxALIGN_RIGHT
)
1332 x
= r
.x
+ r
.width
- size
.x
- 2;
1333 y
= r
.y
+ r
.height
/ 2 - size
.y
/ 2;
1335 else if (hAlign
== wxALIGN_CENTRE
)
1337 x
= r
.x
+ r
.width
/ 2 - size
.x
/ 2;
1338 y
= r
.y
+ r
.height
/ 2 - size
.y
/ 2;
1341 m_control
->Move(x
, y
);
1344 void wxGridCellBoolEditor::Show(bool show
, wxGridCellAttr
*attr
)
1346 m_control
->Show(show
);
1350 wxColour colBg
= attr
? attr
->GetBackgroundColour() : *wxLIGHT_GREY
;
1351 CBox()->SetBackgroundColour(colBg
);
1355 void wxGridCellBoolEditor::BeginEdit(int row
, int col
, wxGrid
* grid
)
1357 wxASSERT_MSG(m_control
,
1358 wxT("The wxGridCellEditor must be created first!"));
1360 if (grid
->GetTable()->CanGetValueAs(row
, col
, wxGRID_VALUE_BOOL
))
1362 m_startValue
= grid
->GetTable()->GetValueAsBool(row
, col
);
1366 wxString
cellval( grid
->GetTable()->GetValue(row
, col
) );
1368 if ( cellval
== ms_stringValues
[false] )
1369 m_startValue
= false;
1370 else if ( cellval
== ms_stringValues
[true] )
1371 m_startValue
= true;
1374 // do not try to be smart here and convert it to true or false
1375 // because we'll still overwrite it with something different and
1376 // this risks to be very surprising for the user code, let them
1378 wxFAIL_MSG( _T("invalid value for a cell with bool editor!") );
1382 CBox()->SetValue(m_startValue
);
1386 bool wxGridCellBoolEditor::EndEdit(int row
, int col
,
1389 wxASSERT_MSG(m_control
,
1390 wxT("The wxGridCellEditor must be created first!"));
1392 bool changed
= false;
1393 bool value
= CBox()->GetValue();
1394 if ( value
!= m_startValue
)
1399 wxGridTableBase
* const table
= grid
->GetTable();
1400 if ( table
->CanGetValueAs(row
, col
, wxGRID_VALUE_BOOL
) )
1401 table
->SetValueAsBool(row
, col
, value
);
1403 table
->SetValue(row
, col
, GetValue());
1409 void wxGridCellBoolEditor::Reset()
1411 wxASSERT_MSG(m_control
,
1412 wxT("The wxGridCellEditor must be created first!"));
1414 CBox()->SetValue(m_startValue
);
1417 void wxGridCellBoolEditor::StartingClick()
1419 CBox()->SetValue(!CBox()->GetValue());
1422 bool wxGridCellBoolEditor::IsAcceptedKey(wxKeyEvent
& event
)
1424 if ( wxGridCellEditor::IsAcceptedKey(event
) )
1426 int keycode
= event
.GetKeyCode();
1439 void wxGridCellBoolEditor::StartingKey(wxKeyEvent
& event
)
1441 int keycode
= event
.GetKeyCode();
1445 CBox()->SetValue(!CBox()->GetValue());
1449 CBox()->SetValue(true);
1453 CBox()->SetValue(false);
1458 wxString
wxGridCellBoolEditor::GetValue() const
1460 return ms_stringValues
[CBox()->GetValue()];
1464 wxGridCellBoolEditor::UseStringValues(const wxString
& valueTrue
,
1465 const wxString
& valueFalse
)
1467 ms_stringValues
[false] = valueFalse
;
1468 ms_stringValues
[true] = valueTrue
;
1472 wxGridCellBoolEditor::IsTrueValue(const wxString
& value
)
1474 return value
== ms_stringValues
[true];
1477 #endif // wxUSE_CHECKBOX
1481 // ----------------------------------------------------------------------------
1482 // wxGridCellChoiceEditor
1483 // ----------------------------------------------------------------------------
1485 wxGridCellChoiceEditor::wxGridCellChoiceEditor(const wxArrayString
& choices
,
1487 : m_choices(choices
),
1488 m_allowOthers(allowOthers
) { }
1490 wxGridCellChoiceEditor::wxGridCellChoiceEditor(size_t count
,
1491 const wxString choices
[],
1493 : m_allowOthers(allowOthers
)
1497 m_choices
.Alloc(count
);
1498 for ( size_t n
= 0; n
< count
; n
++ )
1500 m_choices
.Add(choices
[n
]);
1505 wxGridCellEditor
*wxGridCellChoiceEditor::Clone() const
1507 wxGridCellChoiceEditor
*editor
= new wxGridCellChoiceEditor
;
1508 editor
->m_allowOthers
= m_allowOthers
;
1509 editor
->m_choices
= m_choices
;
1514 void wxGridCellChoiceEditor::Create(wxWindow
* parent
,
1516 wxEvtHandler
* evtHandler
)
1518 int style
= wxBORDER_NONE
;
1520 style
|= wxCB_READONLY
;
1521 m_control
= new wxComboBox(parent
, id
, wxEmptyString
,
1522 wxDefaultPosition
, wxDefaultSize
,
1525 wxGridCellEditor::Create(parent
, id
, evtHandler
);
1528 void wxGridCellChoiceEditor::PaintBackground(const wxRect
& rectCell
,
1529 wxGridCellAttr
* attr
)
1531 // as we fill the entire client area, don't do anything here to minimize
1534 // TODO: It doesn't actually fill the client area since the height of a
1535 // combo always defaults to the standard. Until someone has time to
1536 // figure out the right rectangle to paint, just do it the normal way.
1537 wxGridCellEditor::PaintBackground(rectCell
, attr
);
1540 void wxGridCellChoiceEditor::BeginEdit(int row
, int col
, wxGrid
* grid
)
1542 wxASSERT_MSG(m_control
,
1543 wxT("The wxGridCellEditor must be created first!"));
1545 wxGridCellEditorEvtHandler
* evtHandler
= NULL
;
1547 evtHandler
= wxDynamicCast(m_control
->GetEventHandler(), wxGridCellEditorEvtHandler
);
1549 // Don't immediately end if we get a kill focus event within BeginEdit
1551 evtHandler
->SetInSetFocus(true);
1553 m_startValue
= grid
->GetTable()->GetValue(row
, col
);
1557 Combo()->SetValue(m_startValue
);
1558 Combo()->SetInsertionPointEnd();
1560 else // the combobox is read-only
1562 // find the right position, or default to the first if not found
1563 int pos
= Combo()->FindString(m_startValue
);
1564 if (pos
== wxNOT_FOUND
)
1566 Combo()->SetSelection(pos
);
1569 Combo()->SetFocus();
1573 // When dropping down the menu, a kill focus event
1574 // happens after this point, so we can't reset the flag yet.
1575 #if !defined(__WXGTK20__)
1576 evtHandler
->SetInSetFocus(false);
1581 bool wxGridCellChoiceEditor::EndEdit(int row
, int col
,
1584 wxString value
= Combo()->GetValue();
1585 if ( value
== m_startValue
)
1588 grid
->GetTable()->SetValue(row
, col
, value
);
1593 void wxGridCellChoiceEditor::Reset()
1595 Combo()->SetValue(m_startValue
);
1596 Combo()->SetInsertionPointEnd();
1599 void wxGridCellChoiceEditor::SetParameters(const wxString
& params
)
1609 wxStringTokenizer
tk(params
, _T(','));
1610 while ( tk
.HasMoreTokens() )
1612 m_choices
.Add(tk
.GetNextToken());
1616 // return the value in the text control
1617 wxString
wxGridCellChoiceEditor::GetValue() const
1619 return Combo()->GetValue();
1622 #endif // wxUSE_COMBOBOX
1624 // ----------------------------------------------------------------------------
1625 // wxGridCellEditorEvtHandler
1626 // ----------------------------------------------------------------------------
1628 void wxGridCellEditorEvtHandler::OnKillFocus(wxFocusEvent
& event
)
1630 // Don't disable the cell if we're just starting to edit it
1635 m_grid
->DisableCellEditControl();
1640 void wxGridCellEditorEvtHandler::OnKeyDown(wxKeyEvent
& event
)
1642 switch ( event
.GetKeyCode() )
1646 m_grid
->DisableCellEditControl();
1650 m_grid
->GetEventHandler()->ProcessEvent( event
);
1654 case WXK_NUMPAD_ENTER
:
1655 if (!m_grid
->GetEventHandler()->ProcessEvent(event
))
1656 m_editor
->HandleReturn(event
);
1665 void wxGridCellEditorEvtHandler::OnChar(wxKeyEvent
& event
)
1667 int row
= m_grid
->GetGridCursorRow();
1668 int col
= m_grid
->GetGridCursorCol();
1669 wxRect rect
= m_grid
->CellToRect( row
, col
);
1671 m_grid
->GetGridWindow()->GetClientSize( &cw
, &ch
);
1673 // if cell width is smaller than grid client area, cell is wholly visible
1674 bool wholeCellVisible
= (rect
.GetWidth() < cw
);
1676 switch ( event
.GetKeyCode() )
1681 case WXK_NUMPAD_ENTER
:
1686 if ( wholeCellVisible
)
1688 // no special processing needed...
1693 // do special processing for partly visible cell...
1695 // get the widths of all cells previous to this one
1697 for ( int i
= 0; i
< col
; i
++ )
1699 colXPos
+= m_grid
->GetColSize(i
);
1702 int xUnit
= 1, yUnit
= 1;
1703 m_grid
->GetScrollPixelsPerUnit(&xUnit
, &yUnit
);
1706 m_grid
->Scroll(colXPos
/ xUnit
- 1, m_grid
->GetScrollPos(wxVERTICAL
));
1710 m_grid
->Scroll(colXPos
/ xUnit
, m_grid
->GetScrollPos(wxVERTICAL
));
1718 if ( wholeCellVisible
)
1720 // no special processing needed...
1725 // do special processing for partly visible cell...
1728 wxString value
= m_grid
->GetCellValue(row
, col
);
1729 if ( wxEmptyString
!= value
)
1731 // get width of cell CONTENTS (text)
1733 wxFont font
= m_grid
->GetCellFont(row
, col
);
1734 m_grid
->GetTextExtent(value
, &textWidth
, &y
, NULL
, NULL
, &font
);
1736 // try to RIGHT align the text by scrolling
1737 int client_right
= m_grid
->GetGridWindow()->GetClientSize().GetWidth();
1739 // (m_grid->GetScrollLineX()*2) is a factor for not scrolling to far,
1740 // otherwise the last part of the cell content might be hidden below the scroll bar
1741 // FIXME: maybe there is a more suitable correction?
1742 textWidth
-= (client_right
- (m_grid
->GetScrollLineX() * 2));
1743 if ( textWidth
< 0 )
1749 // get the widths of all cells previous to this one
1751 for ( int i
= 0; i
< col
; i
++ )
1753 colXPos
+= m_grid
->GetColSize(i
);
1756 // and add the (modified) text width of the cell contents
1757 // as we'd like to see the last part of the cell contents
1758 colXPos
+= textWidth
;
1760 int xUnit
= 1, yUnit
= 1;
1761 m_grid
->GetScrollPixelsPerUnit(&xUnit
, &yUnit
);
1762 m_grid
->Scroll(colXPos
/ xUnit
- 1, m_grid
->GetScrollPos(wxVERTICAL
));
1773 // ----------------------------------------------------------------------------
1774 // wxGridCellWorker is an (almost) empty common base class for
1775 // wxGridCellRenderer and wxGridCellEditor managing ref counting
1776 // ----------------------------------------------------------------------------
1778 void wxGridCellWorker::SetParameters(const wxString
& WXUNUSED(params
))
1783 wxGridCellWorker::~wxGridCellWorker()
1787 // ============================================================================
1789 // ============================================================================
1791 // ----------------------------------------------------------------------------
1792 // wxGridCellRenderer
1793 // ----------------------------------------------------------------------------
1795 void wxGridCellRenderer::Draw(wxGrid
& grid
,
1796 wxGridCellAttr
& attr
,
1799 int WXUNUSED(row
), int WXUNUSED(col
),
1802 dc
.SetBackgroundMode( wxSOLID
);
1804 // grey out fields if the grid is disabled
1805 if ( grid
.IsEnabled() )
1810 if ( grid
.HasFocus() )
1811 clr
= grid
.GetSelectionBackground();
1813 clr
= wxSystemSettings::GetColour(wxSYS_COLOUR_BTNSHADOW
);
1814 dc
.SetBrush( wxBrush(clr
, wxSOLID
) );
1818 dc
.SetBrush( wxBrush(attr
.GetBackgroundColour(), wxSOLID
) );
1823 dc
.SetBrush(wxBrush(wxSystemSettings::GetColour(wxSYS_COLOUR_BTNFACE
), wxSOLID
));
1826 dc
.SetPen( *wxTRANSPARENT_PEN
);
1827 dc
.DrawRectangle(rect
);
1830 // ----------------------------------------------------------------------------
1831 // wxGridCellStringRenderer
1832 // ----------------------------------------------------------------------------
1834 void wxGridCellStringRenderer::SetTextColoursAndFont(const wxGrid
& grid
,
1835 const wxGridCellAttr
& attr
,
1839 dc
.SetBackgroundMode( wxTRANSPARENT
);
1841 // TODO some special colours for attr.IsReadOnly() case?
1843 // different coloured text when the grid is disabled
1844 if ( grid
.IsEnabled() )
1849 if ( grid
.HasFocus() )
1850 clr
= grid
.GetSelectionBackground();
1852 clr
= wxSystemSettings::GetColour(wxSYS_COLOUR_BTNSHADOW
);
1853 dc
.SetTextBackground( clr
);
1854 dc
.SetTextForeground( grid
.GetSelectionForeground() );
1858 dc
.SetTextBackground( attr
.GetBackgroundColour() );
1859 dc
.SetTextForeground( attr
.GetTextColour() );
1864 dc
.SetTextBackground(wxSystemSettings::GetColour(wxSYS_COLOUR_BTNFACE
));
1865 dc
.SetTextForeground(wxSystemSettings::GetColour(wxSYS_COLOUR_GRAYTEXT
));
1868 dc
.SetFont( attr
.GetFont() );
1871 wxSize
wxGridCellStringRenderer::DoGetBestSize(const wxGridCellAttr
& attr
,
1873 const wxString
& text
)
1875 wxCoord x
= 0, y
= 0, max_x
= 0;
1876 dc
.SetFont(attr
.GetFont());
1877 wxStringTokenizer
tk(text
, _T('\n'));
1878 while ( tk
.HasMoreTokens() )
1880 dc
.GetTextExtent(tk
.GetNextToken(), &x
, &y
);
1881 max_x
= wxMax(max_x
, x
);
1884 y
*= 1 + text
.Freq(wxT('\n')); // multiply by the number of lines.
1886 return wxSize(max_x
, y
);
1889 wxSize
wxGridCellStringRenderer::GetBestSize(wxGrid
& grid
,
1890 wxGridCellAttr
& attr
,
1894 return DoGetBestSize(attr
, dc
, grid
.GetCellValue(row
, col
));
1897 void wxGridCellStringRenderer::Draw(wxGrid
& grid
,
1898 wxGridCellAttr
& attr
,
1900 const wxRect
& rectCell
,
1904 wxRect rect
= rectCell
;
1907 // erase only this cells background, overflow cells should have been erased
1908 wxGridCellRenderer::Draw(grid
, attr
, dc
, rectCell
, row
, col
, isSelected
);
1911 attr
.GetAlignment(&hAlign
, &vAlign
);
1913 int overflowCols
= 0;
1915 if (attr
.GetOverflow())
1917 int cols
= grid
.GetNumberCols();
1918 int best_width
= GetBestSize(grid
,attr
,dc
,row
,col
).GetWidth();
1919 int cell_rows
, cell_cols
;
1920 attr
.GetSize( &cell_rows
, &cell_cols
); // shouldn't get here if <= 0
1921 if ((best_width
> rectCell
.width
) && (col
< cols
) && grid
.GetTable())
1923 int i
, c_cols
, c_rows
;
1924 for (i
= col
+cell_cols
; i
< cols
; i
++)
1926 bool is_empty
= true;
1927 for (int j
=row
; j
< row
+ cell_rows
; j
++)
1929 // check w/ anchor cell for multicell block
1930 grid
.GetCellSize(j
, i
, &c_rows
, &c_cols
);
1933 if (!grid
.GetTable()->IsEmptyCell(j
+ c_rows
, i
))
1942 rect
.width
+= grid
.GetColSize(i
);
1950 if (rect
.width
>= best_width
)
1954 overflowCols
= i
- col
- cell_cols
+ 1;
1955 if (overflowCols
>= cols
)
1956 overflowCols
= cols
- 1;
1959 if (overflowCols
> 0) // redraw overflow cells w/ proper hilight
1961 hAlign
= wxALIGN_LEFT
; // if oveflowed then it's left aligned
1963 clip
.x
+= rectCell
.width
;
1964 // draw each overflow cell individually
1965 int col_end
= col
+ cell_cols
+ overflowCols
;
1966 if (col_end
>= grid
.GetNumberCols())
1967 col_end
= grid
.GetNumberCols() - 1;
1968 for (int i
= col
+ cell_cols
; i
<= col_end
; i
++)
1970 clip
.width
= grid
.GetColSize(i
) - 1;
1971 dc
.DestroyClippingRegion();
1972 dc
.SetClippingRegion(clip
);
1974 SetTextColoursAndFont(grid
, attr
, dc
,
1975 grid
.IsInSelection(row
,i
));
1977 grid
.DrawTextRectangle(dc
, grid
.GetCellValue(row
, col
),
1978 rect
, hAlign
, vAlign
);
1979 clip
.x
+= grid
.GetColSize(i
) - 1;
1985 dc
.DestroyClippingRegion();
1989 // now we only have to draw the text
1990 SetTextColoursAndFont(grid
, attr
, dc
, isSelected
);
1992 grid
.DrawTextRectangle(dc
, grid
.GetCellValue(row
, col
),
1993 rect
, hAlign
, vAlign
);
1996 // ----------------------------------------------------------------------------
1997 // wxGridCellNumberRenderer
1998 // ----------------------------------------------------------------------------
2000 wxString
wxGridCellNumberRenderer::GetString(const wxGrid
& grid
, int row
, int col
)
2002 wxGridTableBase
*table
= grid
.GetTable();
2004 if ( table
->CanGetValueAs(row
, col
, wxGRID_VALUE_NUMBER
) )
2006 text
.Printf(_T("%ld"), table
->GetValueAsLong(row
, col
));
2010 text
= table
->GetValue(row
, col
);
2016 void wxGridCellNumberRenderer::Draw(wxGrid
& grid
,
2017 wxGridCellAttr
& attr
,
2019 const wxRect
& rectCell
,
2023 wxGridCellRenderer::Draw(grid
, attr
, dc
, rectCell
, row
, col
, isSelected
);
2025 SetTextColoursAndFont(grid
, attr
, dc
, isSelected
);
2027 // draw the text right aligned by default
2029 attr
.GetAlignment(&hAlign
, &vAlign
);
2030 hAlign
= wxALIGN_RIGHT
;
2032 wxRect rect
= rectCell
;
2035 grid
.DrawTextRectangle(dc
, GetString(grid
, row
, col
), rect
, hAlign
, vAlign
);
2038 wxSize
wxGridCellNumberRenderer::GetBestSize(wxGrid
& grid
,
2039 wxGridCellAttr
& attr
,
2043 return DoGetBestSize(attr
, dc
, GetString(grid
, row
, col
));
2046 // ----------------------------------------------------------------------------
2047 // wxGridCellFloatRenderer
2048 // ----------------------------------------------------------------------------
2050 wxGridCellFloatRenderer::wxGridCellFloatRenderer(int width
, int precision
)
2053 SetPrecision(precision
);
2056 wxGridCellRenderer
*wxGridCellFloatRenderer::Clone() const
2058 wxGridCellFloatRenderer
*renderer
= new wxGridCellFloatRenderer
;
2059 renderer
->m_width
= m_width
;
2060 renderer
->m_precision
= m_precision
;
2061 renderer
->m_format
= m_format
;
2066 wxString
wxGridCellFloatRenderer::GetString(const wxGrid
& grid
, int row
, int col
)
2068 wxGridTableBase
*table
= grid
.GetTable();
2073 if ( table
->CanGetValueAs(row
, col
, wxGRID_VALUE_FLOAT
) )
2075 val
= table
->GetValueAsDouble(row
, col
);
2080 text
= table
->GetValue(row
, col
);
2081 hasDouble
= text
.ToDouble(&val
);
2088 if ( m_width
== -1 )
2090 if ( m_precision
== -1 )
2092 // default width/precision
2093 m_format
= _T("%f");
2097 m_format
.Printf(_T("%%.%df"), m_precision
);
2100 else if ( m_precision
== -1 )
2102 // default precision
2103 m_format
.Printf(_T("%%%d.f"), m_width
);
2107 m_format
.Printf(_T("%%%d.%df"), m_width
, m_precision
);
2111 text
.Printf(m_format
, val
);
2114 //else: text already contains the string
2119 void wxGridCellFloatRenderer::Draw(wxGrid
& grid
,
2120 wxGridCellAttr
& attr
,
2122 const wxRect
& rectCell
,
2126 wxGridCellRenderer::Draw(grid
, attr
, dc
, rectCell
, row
, col
, isSelected
);
2128 SetTextColoursAndFont(grid
, attr
, dc
, isSelected
);
2130 // draw the text right aligned by default
2132 attr
.GetAlignment(&hAlign
, &vAlign
);
2133 hAlign
= wxALIGN_RIGHT
;
2135 wxRect rect
= rectCell
;
2138 grid
.DrawTextRectangle(dc
, GetString(grid
, row
, col
), rect
, hAlign
, vAlign
);
2141 wxSize
wxGridCellFloatRenderer::GetBestSize(wxGrid
& grid
,
2142 wxGridCellAttr
& attr
,
2146 return DoGetBestSize(attr
, dc
, GetString(grid
, row
, col
));
2149 void wxGridCellFloatRenderer::SetParameters(const wxString
& params
)
2153 // reset to defaults
2159 wxString tmp
= params
.BeforeFirst(_T(','));
2163 if ( tmp
.ToLong(&width
) )
2165 SetWidth((int)width
);
2169 wxLogDebug(_T("Invalid wxGridCellFloatRenderer width parameter string '%s ignored"), params
.c_str());
2173 tmp
= params
.AfterFirst(_T(','));
2177 if ( tmp
.ToLong(&precision
) )
2179 SetPrecision((int)precision
);
2183 wxLogDebug(_T("Invalid wxGridCellFloatRenderer precision parameter string '%s ignored"), params
.c_str());
2189 // ----------------------------------------------------------------------------
2190 // wxGridCellBoolRenderer
2191 // ----------------------------------------------------------------------------
2193 wxSize
wxGridCellBoolRenderer::ms_sizeCheckMark
;
2195 // FIXME these checkbox size calculations are really ugly...
2197 // between checkmark and box
2198 static const wxCoord wxGRID_CHECKMARK_MARGIN
= 2;
2200 wxSize
wxGridCellBoolRenderer::GetBestSize(wxGrid
& grid
,
2201 wxGridCellAttr
& WXUNUSED(attr
),
2206 // compute it only once (no locks for MT safeness in GUI thread...)
2207 if ( !ms_sizeCheckMark
.x
)
2209 // get checkbox size
2210 wxCheckBox
*checkbox
= new wxCheckBox(&grid
, wxID_ANY
, wxEmptyString
);
2211 wxSize size
= checkbox
->GetBestSize();
2212 wxCoord checkSize
= size
.y
+ 2 * wxGRID_CHECKMARK_MARGIN
;
2214 #if defined(__WXMOTIF__)
2215 checkSize
-= size
.y
/ 2;
2220 ms_sizeCheckMark
.x
= ms_sizeCheckMark
.y
= checkSize
;
2223 return ms_sizeCheckMark
;
2226 void wxGridCellBoolRenderer::Draw(wxGrid
& grid
,
2227 wxGridCellAttr
& attr
,
2233 wxGridCellRenderer::Draw(grid
, attr
, dc
, rect
, row
, col
, isSelected
);
2235 // draw a check mark in the centre (ignoring alignment - TODO)
2236 wxSize size
= GetBestSize(grid
, attr
, dc
, row
, col
);
2238 // don't draw outside the cell
2239 wxCoord minSize
= wxMin(rect
.width
, rect
.height
);
2240 if ( size
.x
>= minSize
|| size
.y
>= minSize
)
2242 // and even leave (at least) 1 pixel margin
2243 size
.x
= size
.y
= minSize
;
2246 // draw a border around checkmark
2248 attr
.GetAlignment(&hAlign
, &vAlign
);
2251 if (hAlign
== wxALIGN_CENTRE
)
2253 rectBorder
.x
= rect
.x
+ rect
.width
/ 2 - size
.x
/ 2;
2254 rectBorder
.y
= rect
.y
+ rect
.height
/ 2 - size
.y
/ 2;
2255 rectBorder
.width
= size
.x
;
2256 rectBorder
.height
= size
.y
;
2258 else if (hAlign
== wxALIGN_LEFT
)
2260 rectBorder
.x
= rect
.x
+ 2;
2261 rectBorder
.y
= rect
.y
+ rect
.height
/ 2 - size
.y
/ 2;
2262 rectBorder
.width
= size
.x
;
2263 rectBorder
.height
= size
.y
;
2265 else if (hAlign
== wxALIGN_RIGHT
)
2267 rectBorder
.x
= rect
.x
+ rect
.width
- size
.x
- 2;
2268 rectBorder
.y
= rect
.y
+ rect
.height
/ 2 - size
.y
/ 2;
2269 rectBorder
.width
= size
.x
;
2270 rectBorder
.height
= size
.y
;
2274 if ( grid
.GetTable()->CanGetValueAs(row
, col
, wxGRID_VALUE_BOOL
) )
2276 value
= grid
.GetTable()->GetValueAsBool(row
, col
);
2280 wxString
cellval( grid
.GetTable()->GetValue(row
, col
) );
2281 value
= wxGridCellBoolEditor::IsTrueValue(cellval
);
2286 flags
|= wxCONTROL_CHECKED
;
2288 wxRendererNative::Get().DrawCheckBox( &grid
, dc
, rectBorder
, flags
);
2291 // ----------------------------------------------------------------------------
2293 // ----------------------------------------------------------------------------
2295 void wxGridCellAttr::Init(wxGridCellAttr
*attrDefault
)
2299 m_isReadOnly
= Unset
;
2304 m_attrkind
= wxGridCellAttr::Cell
;
2306 m_sizeRows
= m_sizeCols
= 1;
2307 m_overflow
= UnsetOverflow
;
2309 SetDefAttr(attrDefault
);
2312 wxGridCellAttr
*wxGridCellAttr::Clone() const
2314 wxGridCellAttr
*attr
= new wxGridCellAttr(m_defGridAttr
);
2316 if ( HasTextColour() )
2317 attr
->SetTextColour(GetTextColour());
2318 if ( HasBackgroundColour() )
2319 attr
->SetBackgroundColour(GetBackgroundColour());
2321 attr
->SetFont(GetFont());
2322 if ( HasAlignment() )
2323 attr
->SetAlignment(m_hAlign
, m_vAlign
);
2325 attr
->SetSize( m_sizeRows
, m_sizeCols
);
2329 attr
->SetRenderer(m_renderer
);
2330 m_renderer
->IncRef();
2334 attr
->SetEditor(m_editor
);
2339 attr
->SetReadOnly();
2341 attr
->SetOverflow( m_overflow
== Overflow
);
2342 attr
->SetKind( m_attrkind
);
2347 void wxGridCellAttr::MergeWith(wxGridCellAttr
*mergefrom
)
2349 if ( !HasTextColour() && mergefrom
->HasTextColour() )
2350 SetTextColour(mergefrom
->GetTextColour());
2351 if ( !HasBackgroundColour() && mergefrom
->HasBackgroundColour() )
2352 SetBackgroundColour(mergefrom
->GetBackgroundColour());
2353 if ( !HasFont() && mergefrom
->HasFont() )
2354 SetFont(mergefrom
->GetFont());
2355 if ( !HasAlignment() && mergefrom
->HasAlignment() )
2358 mergefrom
->GetAlignment( &hAlign
, &vAlign
);
2359 SetAlignment(hAlign
, vAlign
);
2361 if ( !HasSize() && mergefrom
->HasSize() )
2362 mergefrom
->GetSize( &m_sizeRows
, &m_sizeCols
);
2364 // Directly access member functions as GetRender/Editor don't just return
2365 // m_renderer/m_editor
2367 // Maybe add support for merge of Render and Editor?
2368 if (!HasRenderer() && mergefrom
->HasRenderer() )
2370 m_renderer
= mergefrom
->m_renderer
;
2371 m_renderer
->IncRef();
2373 if ( !HasEditor() && mergefrom
->HasEditor() )
2375 m_editor
= mergefrom
->m_editor
;
2378 if ( !HasReadWriteMode() && mergefrom
->HasReadWriteMode() )
2379 SetReadOnly(mergefrom
->IsReadOnly());
2381 if (!HasOverflowMode() && mergefrom
->HasOverflowMode() )
2382 SetOverflow(mergefrom
->GetOverflow());
2384 SetDefAttr(mergefrom
->m_defGridAttr
);
2387 void wxGridCellAttr::SetSize(int num_rows
, int num_cols
)
2389 // The size of a cell is normally 1,1
2391 // If this cell is larger (2,2) then this is the top left cell
2392 // the other cells that will be covered (lower right cells) must be
2393 // set to negative or zero values such that
2394 // row + num_rows of the covered cell points to the larger cell (this cell)
2395 // same goes for the col + num_cols.
2397 // Size of 0,0 is NOT valid, neither is <=0 and any positive value
2399 wxASSERT_MSG( (!((num_rows
> 0) && (num_cols
<= 0)) ||
2400 !((num_rows
<= 0) && (num_cols
> 0)) ||
2401 !((num_rows
== 0) && (num_cols
== 0))),
2402 wxT("wxGridCellAttr::SetSize only takes two postive values or negative/zero values"));
2404 m_sizeRows
= num_rows
;
2405 m_sizeCols
= num_cols
;
2408 const wxColour
& wxGridCellAttr::GetTextColour() const
2410 if (HasTextColour())
2414 else if (m_defGridAttr
&& m_defGridAttr
!= this)
2416 return m_defGridAttr
->GetTextColour();
2420 wxFAIL_MSG(wxT("Missing default cell attribute"));
2421 return wxNullColour
;
2425 const wxColour
& wxGridCellAttr::GetBackgroundColour() const
2427 if (HasBackgroundColour())
2431 else if (m_defGridAttr
&& m_defGridAttr
!= this)
2433 return m_defGridAttr
->GetBackgroundColour();
2437 wxFAIL_MSG(wxT("Missing default cell attribute"));
2438 return wxNullColour
;
2442 const wxFont
& wxGridCellAttr::GetFont() const
2448 else if (m_defGridAttr
&& m_defGridAttr
!= this)
2450 return m_defGridAttr
->GetFont();
2454 wxFAIL_MSG(wxT("Missing default cell attribute"));
2459 void wxGridCellAttr::GetAlignment(int *hAlign
, int *vAlign
) const
2468 else if (m_defGridAttr
&& m_defGridAttr
!= this)
2470 m_defGridAttr
->GetAlignment(hAlign
, vAlign
);
2474 wxFAIL_MSG(wxT("Missing default cell attribute"));
2478 void wxGridCellAttr::GetSize( int *num_rows
, int *num_cols
) const
2481 *num_rows
= m_sizeRows
;
2483 *num_cols
= m_sizeCols
;
2486 // GetRenderer and GetEditor use a slightly different decision path about
2487 // which attribute to use. If a non-default attr object has one then it is
2488 // used, otherwise the default editor or renderer is fetched from the grid and
2489 // used. It should be the default for the data type of the cell. If it is
2490 // NULL (because the table has a type that the grid does not have in its
2491 // registry), then the grid's default editor or renderer is used.
2493 wxGridCellRenderer
* wxGridCellAttr::GetRenderer(const wxGrid
* grid
, int row
, int col
) const
2495 wxGridCellRenderer
*renderer
= NULL
;
2497 if ( m_renderer
&& this != m_defGridAttr
)
2499 // use the cells renderer if it has one
2500 renderer
= m_renderer
;
2503 else // no non-default cell renderer
2505 // get default renderer for the data type
2508 // GetDefaultRendererForCell() will do IncRef() for us
2509 renderer
= grid
->GetDefaultRendererForCell(row
, col
);
2512 if ( renderer
== NULL
)
2514 if ( (m_defGridAttr
!= NULL
) && (m_defGridAttr
!= this) )
2516 // if we still don't have one then use the grid default
2517 // (no need for IncRef() here neither)
2518 renderer
= m_defGridAttr
->GetRenderer(NULL
, 0, 0);
2520 else // default grid attr
2522 // use m_renderer which we had decided not to use initially
2523 renderer
= m_renderer
;
2530 // we're supposed to always find something
2531 wxASSERT_MSG(renderer
, wxT("Missing default cell renderer"));
2536 // same as above, except for s/renderer/editor/g
2537 wxGridCellEditor
* wxGridCellAttr::GetEditor(const wxGrid
* grid
, int row
, int col
) const
2539 wxGridCellEditor
*editor
= NULL
;
2541 if ( m_editor
&& this != m_defGridAttr
)
2543 // use the cells editor if it has one
2547 else // no non default cell editor
2549 // get default editor for the data type
2552 // GetDefaultEditorForCell() will do IncRef() for us
2553 editor
= grid
->GetDefaultEditorForCell(row
, col
);
2556 if ( editor
== NULL
)
2558 if ( (m_defGridAttr
!= NULL
) && (m_defGridAttr
!= this) )
2560 // if we still don't have one then use the grid default
2561 // (no need for IncRef() here neither)
2562 editor
= m_defGridAttr
->GetEditor(NULL
, 0, 0);
2564 else // default grid attr
2566 // use m_editor which we had decided not to use initially
2574 // we're supposed to always find something
2575 wxASSERT_MSG(editor
, wxT("Missing default cell editor"));
2580 // ----------------------------------------------------------------------------
2581 // wxGridCellAttrData
2582 // ----------------------------------------------------------------------------
2584 void wxGridCellAttrData::SetAttr(wxGridCellAttr
*attr
, int row
, int col
)
2586 int n
= FindIndex(row
, col
);
2587 if ( n
== wxNOT_FOUND
)
2589 // add the attribute
2590 m_attrs
.Add(new wxGridCellWithAttr(row
, col
, attr
));
2594 // free the old attribute
2595 m_attrs
[(size_t)n
].attr
->DecRef();
2599 // change the attribute
2600 m_attrs
[(size_t)n
].attr
= attr
;
2604 // remove this attribute
2605 m_attrs
.RemoveAt((size_t)n
);
2610 wxGridCellAttr
*wxGridCellAttrData::GetAttr(int row
, int col
) const
2612 wxGridCellAttr
*attr
= (wxGridCellAttr
*)NULL
;
2614 int n
= FindIndex(row
, col
);
2615 if ( n
!= wxNOT_FOUND
)
2617 attr
= m_attrs
[(size_t)n
].attr
;
2624 void wxGridCellAttrData::UpdateAttrRows( size_t pos
, int numRows
)
2626 size_t count
= m_attrs
.GetCount();
2627 for ( size_t n
= 0; n
< count
; n
++ )
2629 wxGridCellCoords
& coords
= m_attrs
[n
].coords
;
2630 wxCoord row
= coords
.GetRow();
2631 if ((size_t)row
>= pos
)
2635 // If rows inserted, include row counter where necessary
2636 coords
.SetRow(row
+ numRows
);
2638 else if (numRows
< 0)
2640 // If rows deleted ...
2641 if ((size_t)row
>= pos
- numRows
)
2643 // ...either decrement row counter (if row still exists)...
2644 coords
.SetRow(row
+ numRows
);
2648 // ...or remove the attribute
2649 // No need to DecRef the attribute itself since this is
2650 // done be wxGridCellWithAttr's destructor!
2651 m_attrs
.RemoveAt(n
);
2660 void wxGridCellAttrData::UpdateAttrCols( size_t pos
, int numCols
)
2662 size_t count
= m_attrs
.GetCount();
2663 for ( size_t n
= 0; n
< count
; n
++ )
2665 wxGridCellCoords
& coords
= m_attrs
[n
].coords
;
2666 wxCoord col
= coords
.GetCol();
2667 if ( (size_t)col
>= pos
)
2671 // If rows inserted, include row counter where necessary
2672 coords
.SetCol(col
+ numCols
);
2674 else if (numCols
< 0)
2676 // If rows deleted ...
2677 if ((size_t)col
>= pos
- numCols
)
2679 // ...either decrement row counter (if row still exists)...
2680 coords
.SetCol(col
+ numCols
);
2684 // ...or remove the attribute
2685 // No need to DecRef the attribute itself since this is
2686 // done be wxGridCellWithAttr's destructor!
2687 m_attrs
.RemoveAt(n
);
2696 int wxGridCellAttrData::FindIndex(int row
, int col
) const
2698 size_t count
= m_attrs
.GetCount();
2699 for ( size_t n
= 0; n
< count
; n
++ )
2701 const wxGridCellCoords
& coords
= m_attrs
[n
].coords
;
2702 if ( (coords
.GetRow() == row
) && (coords
.GetCol() == col
) )
2711 // ----------------------------------------------------------------------------
2712 // wxGridRowOrColAttrData
2713 // ----------------------------------------------------------------------------
2715 wxGridRowOrColAttrData::~wxGridRowOrColAttrData()
2717 size_t count
= m_attrs
.GetCount();
2718 for ( size_t n
= 0; n
< count
; n
++ )
2720 m_attrs
[n
]->DecRef();
2724 wxGridCellAttr
*wxGridRowOrColAttrData::GetAttr(int rowOrCol
) const
2726 wxGridCellAttr
*attr
= (wxGridCellAttr
*)NULL
;
2728 int n
= m_rowsOrCols
.Index(rowOrCol
);
2729 if ( n
!= wxNOT_FOUND
)
2731 attr
= m_attrs
[(size_t)n
];
2738 void wxGridRowOrColAttrData::SetAttr(wxGridCellAttr
*attr
, int rowOrCol
)
2740 int i
= m_rowsOrCols
.Index(rowOrCol
);
2741 if ( i
== wxNOT_FOUND
)
2745 // add the attribute
2746 m_rowsOrCols
.Add(rowOrCol
);
2749 // nothing to remove
2753 size_t n
= (size_t)i
;
2756 // change the attribute
2757 m_attrs
[n
]->DecRef();
2762 // remove this attribute
2763 m_attrs
[n
]->DecRef();
2764 m_rowsOrCols
.RemoveAt(n
);
2765 m_attrs
.RemoveAt(n
);
2770 void wxGridRowOrColAttrData::UpdateAttrRowsOrCols( size_t pos
, int numRowsOrCols
)
2772 size_t count
= m_attrs
.GetCount();
2773 for ( size_t n
= 0; n
< count
; n
++ )
2775 int & rowOrCol
= m_rowsOrCols
[n
];
2776 if ( (size_t)rowOrCol
>= pos
)
2778 if ( numRowsOrCols
> 0 )
2780 // If rows inserted, include row counter where necessary
2781 rowOrCol
+= numRowsOrCols
;
2783 else if ( numRowsOrCols
< 0)
2785 // If rows deleted, either decrement row counter (if row still exists)
2786 if ((size_t)rowOrCol
>= pos
- numRowsOrCols
)
2787 rowOrCol
+= numRowsOrCols
;
2790 m_rowsOrCols
.RemoveAt(n
);
2791 m_attrs
[n
]->DecRef();
2792 m_attrs
.RemoveAt(n
);
2801 // ----------------------------------------------------------------------------
2802 // wxGridCellAttrProvider
2803 // ----------------------------------------------------------------------------
2805 wxGridCellAttrProvider::wxGridCellAttrProvider()
2807 m_data
= (wxGridCellAttrProviderData
*)NULL
;
2810 wxGridCellAttrProvider::~wxGridCellAttrProvider()
2815 void wxGridCellAttrProvider::InitData()
2817 m_data
= new wxGridCellAttrProviderData
;
2820 wxGridCellAttr
*wxGridCellAttrProvider::GetAttr(int row
, int col
,
2821 wxGridCellAttr::wxAttrKind kind
) const
2823 wxGridCellAttr
*attr
= (wxGridCellAttr
*)NULL
;
2828 case (wxGridCellAttr::Any
):
2829 // Get cached merge attributes.
2830 // Currently not used as no cache implemented as not mutable
2831 // attr = m_data->m_mergeAttr.GetAttr(row, col);
2834 // Basically implement old version.
2835 // Also check merge cache, so we don't have to re-merge every time..
2836 wxGridCellAttr
*attrcell
= m_data
->m_cellAttrs
.GetAttr(row
, col
);
2837 wxGridCellAttr
*attrrow
= m_data
->m_rowAttrs
.GetAttr(row
);
2838 wxGridCellAttr
*attrcol
= m_data
->m_colAttrs
.GetAttr(col
);
2840 if ((attrcell
!= attrrow
) && (attrrow
!= attrcol
) && (attrcell
!= attrcol
))
2842 // Two or more are non NULL
2843 attr
= new wxGridCellAttr
;
2844 attr
->SetKind(wxGridCellAttr::Merged
);
2846 // Order is important..
2849 attr
->MergeWith(attrcell
);
2854 attr
->MergeWith(attrcol
);
2859 attr
->MergeWith(attrrow
);
2863 // store merge attr if cache implemented
2865 //m_data->m_mergeAttr.SetAttr(attr, row, col);
2869 // one or none is non null return it or null.
2888 case (wxGridCellAttr::Cell
):
2889 attr
= m_data
->m_cellAttrs
.GetAttr(row
, col
);
2892 case (wxGridCellAttr::Col
):
2893 attr
= m_data
->m_colAttrs
.GetAttr(col
);
2896 case (wxGridCellAttr::Row
):
2897 attr
= m_data
->m_rowAttrs
.GetAttr(row
);
2902 // (wxGridCellAttr::Default):
2903 // (wxGridCellAttr::Merged):
2911 void wxGridCellAttrProvider::SetAttr(wxGridCellAttr
*attr
,
2917 m_data
->m_cellAttrs
.SetAttr(attr
, row
, col
);
2920 void wxGridCellAttrProvider::SetRowAttr(wxGridCellAttr
*attr
, int row
)
2925 m_data
->m_rowAttrs
.SetAttr(attr
, row
);
2928 void wxGridCellAttrProvider::SetColAttr(wxGridCellAttr
*attr
, int col
)
2933 m_data
->m_colAttrs
.SetAttr(attr
, col
);
2936 void wxGridCellAttrProvider::UpdateAttrRows( size_t pos
, int numRows
)
2940 m_data
->m_cellAttrs
.UpdateAttrRows( pos
, numRows
);
2942 m_data
->m_rowAttrs
.UpdateAttrRowsOrCols( pos
, numRows
);
2946 void wxGridCellAttrProvider::UpdateAttrCols( size_t pos
, int numCols
)
2950 m_data
->m_cellAttrs
.UpdateAttrCols( pos
, numCols
);
2952 m_data
->m_colAttrs
.UpdateAttrRowsOrCols( pos
, numCols
);
2956 // ----------------------------------------------------------------------------
2957 // wxGridTypeRegistry
2958 // ----------------------------------------------------------------------------
2960 wxGridTypeRegistry::~wxGridTypeRegistry()
2962 size_t count
= m_typeinfo
.GetCount();
2963 for ( size_t i
= 0; i
< count
; i
++ )
2964 delete m_typeinfo
[i
];
2967 void wxGridTypeRegistry::RegisterDataType(const wxString
& typeName
,
2968 wxGridCellRenderer
* renderer
,
2969 wxGridCellEditor
* editor
)
2971 wxGridDataTypeInfo
* info
= new wxGridDataTypeInfo(typeName
, renderer
, editor
);
2973 // is it already registered?
2974 int loc
= FindRegisteredDataType(typeName
);
2975 if ( loc
!= wxNOT_FOUND
)
2977 delete m_typeinfo
[loc
];
2978 m_typeinfo
[loc
] = info
;
2982 m_typeinfo
.Add(info
);
2986 int wxGridTypeRegistry::FindRegisteredDataType(const wxString
& typeName
)
2988 size_t count
= m_typeinfo
.GetCount();
2989 for ( size_t i
= 0; i
< count
; i
++ )
2991 if ( typeName
== m_typeinfo
[i
]->m_typeName
)
3000 int wxGridTypeRegistry::FindDataType(const wxString
& typeName
)
3002 int index
= FindRegisteredDataType(typeName
);
3003 if ( index
== wxNOT_FOUND
)
3005 // check whether this is one of the standard ones, in which case
3006 // register it "on the fly"
3008 if ( typeName
== wxGRID_VALUE_STRING
)
3010 RegisterDataType(wxGRID_VALUE_STRING
,
3011 new wxGridCellStringRenderer
,
3012 new wxGridCellTextEditor
);
3015 #endif // wxUSE_TEXTCTRL
3017 if ( typeName
== wxGRID_VALUE_BOOL
)
3019 RegisterDataType(wxGRID_VALUE_BOOL
,
3020 new wxGridCellBoolRenderer
,
3021 new wxGridCellBoolEditor
);
3024 #endif // wxUSE_CHECKBOX
3026 if ( typeName
== wxGRID_VALUE_NUMBER
)
3028 RegisterDataType(wxGRID_VALUE_NUMBER
,
3029 new wxGridCellNumberRenderer
,
3030 new wxGridCellNumberEditor
);
3032 else if ( typeName
== wxGRID_VALUE_FLOAT
)
3034 RegisterDataType(wxGRID_VALUE_FLOAT
,
3035 new wxGridCellFloatRenderer
,
3036 new wxGridCellFloatEditor
);
3039 #endif // wxUSE_TEXTCTRL
3041 if ( typeName
== wxGRID_VALUE_CHOICE
)
3043 RegisterDataType(wxGRID_VALUE_CHOICE
,
3044 new wxGridCellStringRenderer
,
3045 new wxGridCellChoiceEditor
);
3048 #endif // wxUSE_COMBOBOX
3053 // we get here only if just added the entry for this type, so return
3055 index
= m_typeinfo
.GetCount() - 1;
3061 int wxGridTypeRegistry::FindOrCloneDataType(const wxString
& typeName
)
3063 int index
= FindDataType(typeName
);
3064 if ( index
== wxNOT_FOUND
)
3066 // the first part of the typename is the "real" type, anything after ':'
3067 // are the parameters for the renderer
3068 index
= FindDataType(typeName
.BeforeFirst(_T(':')));
3069 if ( index
== wxNOT_FOUND
)
3074 wxGridCellRenderer
*renderer
= GetRenderer(index
);
3075 wxGridCellRenderer
*rendererOld
= renderer
;
3076 renderer
= renderer
->Clone();
3077 rendererOld
->DecRef();
3079 wxGridCellEditor
*editor
= GetEditor(index
);
3080 wxGridCellEditor
*editorOld
= editor
;
3081 editor
= editor
->Clone();
3082 editorOld
->DecRef();
3084 // do it even if there are no parameters to reset them to defaults
3085 wxString params
= typeName
.AfterFirst(_T(':'));
3086 renderer
->SetParameters(params
);
3087 editor
->SetParameters(params
);
3089 // register the new typename
3090 RegisterDataType(typeName
, renderer
, editor
);
3092 // we just registered it, it's the last one
3093 index
= m_typeinfo
.GetCount() - 1;
3099 wxGridCellRenderer
* wxGridTypeRegistry::GetRenderer(int index
)
3101 wxGridCellRenderer
* renderer
= m_typeinfo
[index
]->m_renderer
;
3108 wxGridCellEditor
* wxGridTypeRegistry::GetEditor(int index
)
3110 wxGridCellEditor
* editor
= m_typeinfo
[index
]->m_editor
;
3117 // ----------------------------------------------------------------------------
3119 // ----------------------------------------------------------------------------
3121 IMPLEMENT_ABSTRACT_CLASS( wxGridTableBase
, wxObject
)
3123 wxGridTableBase::wxGridTableBase()
3125 m_view
= (wxGrid
*) NULL
;
3126 m_attrProvider
= (wxGridCellAttrProvider
*) NULL
;
3129 wxGridTableBase::~wxGridTableBase()
3131 delete m_attrProvider
;
3134 void wxGridTableBase::SetAttrProvider(wxGridCellAttrProvider
*attrProvider
)
3136 delete m_attrProvider
;
3137 m_attrProvider
= attrProvider
;
3140 bool wxGridTableBase::CanHaveAttributes()
3142 if ( ! GetAttrProvider() )
3144 // use the default attr provider by default
3145 SetAttrProvider(new wxGridCellAttrProvider
);
3151 wxGridCellAttr
*wxGridTableBase::GetAttr(int row
, int col
, wxGridCellAttr::wxAttrKind kind
)
3153 if ( m_attrProvider
)
3154 return m_attrProvider
->GetAttr(row
, col
, kind
);
3156 return (wxGridCellAttr
*)NULL
;
3159 void wxGridTableBase::SetAttr(wxGridCellAttr
* attr
, int row
, int col
)
3161 if ( m_attrProvider
)
3163 attr
->SetKind(wxGridCellAttr::Cell
);
3164 m_attrProvider
->SetAttr(attr
, row
, col
);
3168 // as we take ownership of the pointer and don't store it, we must
3174 void wxGridTableBase::SetRowAttr(wxGridCellAttr
*attr
, int row
)
3176 if ( m_attrProvider
)
3178 attr
->SetKind(wxGridCellAttr::Row
);
3179 m_attrProvider
->SetRowAttr(attr
, row
);
3183 // as we take ownership of the pointer and don't store it, we must
3189 void wxGridTableBase::SetColAttr(wxGridCellAttr
*attr
, int col
)
3191 if ( m_attrProvider
)
3193 attr
->SetKind(wxGridCellAttr::Col
);
3194 m_attrProvider
->SetColAttr(attr
, col
);
3198 // as we take ownership of the pointer and don't store it, we must
3204 bool wxGridTableBase::InsertRows( size_t WXUNUSED(pos
),
3205 size_t WXUNUSED(numRows
) )
3207 wxFAIL_MSG( wxT("Called grid table class function InsertRows\nbut your derived table class does not override this function") );
3212 bool wxGridTableBase::AppendRows( size_t WXUNUSED(numRows
) )
3214 wxFAIL_MSG( wxT("Called grid table class function AppendRows\nbut your derived table class does not override this function"));
3219 bool wxGridTableBase::DeleteRows( size_t WXUNUSED(pos
),
3220 size_t WXUNUSED(numRows
) )
3222 wxFAIL_MSG( wxT("Called grid table class function DeleteRows\nbut your derived table class does not override this function"));
3227 bool wxGridTableBase::InsertCols( size_t WXUNUSED(pos
),
3228 size_t WXUNUSED(numCols
) )
3230 wxFAIL_MSG( wxT("Called grid table class function InsertCols\nbut your derived table class does not override this function"));
3235 bool wxGridTableBase::AppendCols( size_t WXUNUSED(numCols
) )
3237 wxFAIL_MSG(wxT("Called grid table class function AppendCols\nbut your derived table class does not override this function"));
3242 bool wxGridTableBase::DeleteCols( size_t WXUNUSED(pos
),
3243 size_t WXUNUSED(numCols
) )
3245 wxFAIL_MSG( wxT("Called grid table class function DeleteCols\nbut your derived table class does not override this function"));
3250 wxString
wxGridTableBase::GetRowLabelValue( int row
)
3254 // RD: Starting the rows at zero confuses users,
3255 // no matter how much it makes sense to us geeks.
3261 wxString
wxGridTableBase::GetColLabelValue( int col
)
3263 // default col labels are:
3264 // cols 0 to 25 : A-Z
3265 // cols 26 to 675 : AA-ZZ
3270 for ( n
= 1; ; n
++ )
3272 s
+= (wxChar
) (_T('A') + (wxChar
)(col
% 26));
3278 // reverse the string...
3280 for ( i
= 0; i
< n
; i
++ )
3288 wxString
wxGridTableBase::GetTypeName( int WXUNUSED(row
), int WXUNUSED(col
) )
3290 return wxGRID_VALUE_STRING
;
3293 bool wxGridTableBase::CanGetValueAs( int WXUNUSED(row
), int WXUNUSED(col
),
3294 const wxString
& typeName
)
3296 return typeName
== wxGRID_VALUE_STRING
;
3299 bool wxGridTableBase::CanSetValueAs( int row
, int col
, const wxString
& typeName
)
3301 return CanGetValueAs(row
, col
, typeName
);
3304 long wxGridTableBase::GetValueAsLong( int WXUNUSED(row
), int WXUNUSED(col
) )
3309 double wxGridTableBase::GetValueAsDouble( int WXUNUSED(row
), int WXUNUSED(col
) )
3314 bool wxGridTableBase::GetValueAsBool( int WXUNUSED(row
), int WXUNUSED(col
) )
3319 void wxGridTableBase::SetValueAsLong( int WXUNUSED(row
), int WXUNUSED(col
),
3320 long WXUNUSED(value
) )
3324 void wxGridTableBase::SetValueAsDouble( int WXUNUSED(row
), int WXUNUSED(col
),
3325 double WXUNUSED(value
) )
3329 void wxGridTableBase::SetValueAsBool( int WXUNUSED(row
), int WXUNUSED(col
),
3330 bool WXUNUSED(value
) )
3334 void* wxGridTableBase::GetValueAsCustom( int WXUNUSED(row
), int WXUNUSED(col
),
3335 const wxString
& WXUNUSED(typeName
) )
3340 void wxGridTableBase::SetValueAsCustom( int WXUNUSED(row
), int WXUNUSED(col
),
3341 const wxString
& WXUNUSED(typeName
),
3342 void* WXUNUSED(value
) )
3346 //////////////////////////////////////////////////////////////////////
3348 // Message class for the grid table to send requests and notifications
3352 wxGridTableMessage::wxGridTableMessage()
3354 m_table
= (wxGridTableBase
*) NULL
;
3360 wxGridTableMessage::wxGridTableMessage( wxGridTableBase
*table
, int id
,
3361 int commandInt1
, int commandInt2
)
3365 m_comInt1
= commandInt1
;
3366 m_comInt2
= commandInt2
;
3369 //////////////////////////////////////////////////////////////////////
3371 // A basic grid table for string data. An object of this class will
3372 // created by wxGrid if you don't specify an alternative table class.
3375 WX_DEFINE_OBJARRAY(wxGridStringArray
)
3377 IMPLEMENT_DYNAMIC_CLASS( wxGridStringTable
, wxGridTableBase
)
3379 wxGridStringTable::wxGridStringTable()
3384 wxGridStringTable::wxGridStringTable( int numRows
, int numCols
)
3387 m_data
.Alloc( numRows
);
3390 sa
.Alloc( numCols
);
3391 sa
.Add( wxEmptyString
, numCols
);
3393 m_data
.Add( sa
, numRows
);
3396 wxGridStringTable::~wxGridStringTable()
3400 int wxGridStringTable::GetNumberRows()
3402 return m_data
.GetCount();
3405 int wxGridStringTable::GetNumberCols()
3407 if ( m_data
.GetCount() > 0 )
3408 return m_data
[0].GetCount();
3413 wxString
wxGridStringTable::GetValue( int row
, int col
)
3415 wxCHECK_MSG( (row
< GetNumberRows()) && (col
< GetNumberCols()),
3417 _T("invalid row or column index in wxGridStringTable") );
3419 return m_data
[row
][col
];
3422 void wxGridStringTable::SetValue( int row
, int col
, const wxString
& value
)
3424 wxCHECK_RET( (row
< GetNumberRows()) && (col
< GetNumberCols()),
3425 _T("invalid row or column index in wxGridStringTable") );
3427 m_data
[row
][col
] = value
;
3430 bool wxGridStringTable::IsEmptyCell( int row
, int col
)
3432 wxCHECK_MSG( (row
< GetNumberRows()) && (col
< GetNumberCols()),
3434 _T("invalid row or column index in wxGridStringTable") );
3436 return (m_data
[row
][col
] == wxEmptyString
);
3439 void wxGridStringTable::Clear()
3442 int numRows
, numCols
;
3444 numRows
= m_data
.GetCount();
3447 numCols
= m_data
[0].GetCount();
3449 for ( row
= 0; row
< numRows
; row
++ )
3451 for ( col
= 0; col
< numCols
; col
++ )
3453 m_data
[row
][col
] = wxEmptyString
;
3459 bool wxGridStringTable::InsertRows( size_t pos
, size_t numRows
)
3461 size_t curNumRows
= m_data
.GetCount();
3462 size_t curNumCols
= ( curNumRows
> 0 ? m_data
[0].GetCount() :
3463 ( GetView() ? GetView()->GetNumberCols() : 0 ) );
3465 if ( pos
>= curNumRows
)
3467 return AppendRows( numRows
);
3471 sa
.Alloc( curNumCols
);
3472 sa
.Add( wxEmptyString
, curNumCols
);
3473 m_data
.Insert( sa
, pos
, numRows
);
3477 wxGridTableMessage
msg( this,
3478 wxGRIDTABLE_NOTIFY_ROWS_INSERTED
,
3482 GetView()->ProcessTableMessage( msg
);
3488 bool wxGridStringTable::AppendRows( size_t numRows
)
3490 size_t curNumRows
= m_data
.GetCount();
3491 size_t curNumCols
= ( curNumRows
> 0
3492 ? m_data
[0].GetCount()
3493 : ( GetView() ? GetView()->GetNumberCols() : 0 ) );
3496 if ( curNumCols
> 0 )
3498 sa
.Alloc( curNumCols
);
3499 sa
.Add( wxEmptyString
, curNumCols
);
3502 m_data
.Add( sa
, numRows
);
3506 wxGridTableMessage
msg( this,
3507 wxGRIDTABLE_NOTIFY_ROWS_APPENDED
,
3510 GetView()->ProcessTableMessage( msg
);
3516 bool wxGridStringTable::DeleteRows( size_t pos
, size_t numRows
)
3518 size_t curNumRows
= m_data
.GetCount();
3520 if ( pos
>= curNumRows
)
3522 wxFAIL_MSG( wxString::Format
3524 wxT("Called wxGridStringTable::DeleteRows(pos=%lu, N=%lu)\nPos value is invalid for present table with %lu rows"),
3526 (unsigned long)numRows
,
3527 (unsigned long)curNumRows
3533 if ( numRows
> curNumRows
- pos
)
3535 numRows
= curNumRows
- pos
;
3538 if ( numRows
>= curNumRows
)
3544 m_data
.RemoveAt( pos
, numRows
);
3549 wxGridTableMessage
msg( this,
3550 wxGRIDTABLE_NOTIFY_ROWS_DELETED
,
3554 GetView()->ProcessTableMessage( msg
);
3560 bool wxGridStringTable::InsertCols( size_t pos
, size_t numCols
)
3564 size_t curNumRows
= m_data
.GetCount();
3565 size_t curNumCols
= ( curNumRows
> 0
3566 ? m_data
[0].GetCount()
3567 : ( GetView() ? GetView()->GetNumberCols() : 0 ) );
3569 if ( pos
>= curNumCols
)
3571 return AppendCols( numCols
);
3574 if ( !m_colLabels
.IsEmpty() )
3576 m_colLabels
.Insert( wxEmptyString
, pos
, numCols
);
3579 for ( i
= pos
; i
< pos
+ numCols
; i
++ )
3580 m_colLabels
[i
] = wxGridTableBase::GetColLabelValue( i
);
3583 for ( row
= 0; row
< curNumRows
; row
++ )
3585 for ( col
= pos
; col
< pos
+ numCols
; col
++ )
3587 m_data
[row
].Insert( wxEmptyString
, col
);
3593 wxGridTableMessage
msg( this,
3594 wxGRIDTABLE_NOTIFY_COLS_INSERTED
,
3598 GetView()->ProcessTableMessage( msg
);
3604 bool wxGridStringTable::AppendCols( size_t numCols
)
3608 size_t curNumRows
= m_data
.GetCount();
3613 // TODO: something better than this ?
3615 wxFAIL_MSG( wxT("Unable to append cols to a grid table with no rows.\nCall AppendRows() first") );
3620 for ( row
= 0; row
< curNumRows
; row
++ )
3622 m_data
[row
].Add( wxEmptyString
, numCols
);
3627 wxGridTableMessage
msg( this,
3628 wxGRIDTABLE_NOTIFY_COLS_APPENDED
,
3631 GetView()->ProcessTableMessage( msg
);
3637 bool wxGridStringTable::DeleteCols( size_t pos
, size_t numCols
)
3641 size_t curNumRows
= m_data
.GetCount();
3642 size_t curNumCols
= ( curNumRows
> 0 ? m_data
[0].GetCount() :
3643 ( GetView() ? GetView()->GetNumberCols() : 0 ) );
3645 if ( pos
>= curNumCols
)
3647 wxFAIL_MSG( wxString::Format
3649 wxT("Called wxGridStringTable::DeleteCols(pos=%lu, N=%lu)\nPos value is invalid for present table with %lu cols"),
3651 (unsigned long)numCols
,
3652 (unsigned long)curNumCols
3659 colID
= GetView()->GetColAt( pos
);
3663 if ( numCols
> curNumCols
- colID
)
3665 numCols
= curNumCols
- colID
;
3668 if ( !m_colLabels
.IsEmpty() )
3670 // m_colLabels stores just as many elements as it needs, e.g. if only
3671 // the label of the first column had been set it would have only one
3672 // element and not numCols, so account for it
3673 int nToRm
= m_colLabels
.size() - colID
;
3675 m_colLabels
.RemoveAt( colID
, nToRm
);
3678 for ( row
= 0; row
< curNumRows
; row
++ )
3680 if ( numCols
>= curNumCols
)
3682 m_data
[row
].Clear();
3686 m_data
[row
].RemoveAt( colID
, numCols
);
3692 wxGridTableMessage
msg( this,
3693 wxGRIDTABLE_NOTIFY_COLS_DELETED
,
3697 GetView()->ProcessTableMessage( msg
);
3703 wxString
wxGridStringTable::GetRowLabelValue( int row
)
3705 if ( row
> (int)(m_rowLabels
.GetCount()) - 1 )
3707 // using default label
3709 return wxGridTableBase::GetRowLabelValue( row
);
3713 return m_rowLabels
[row
];
3717 wxString
wxGridStringTable::GetColLabelValue( int col
)
3719 if ( col
> (int)(m_colLabels
.GetCount()) - 1 )
3721 // using default label
3723 return wxGridTableBase::GetColLabelValue( col
);
3727 return m_colLabels
[col
];
3731 void wxGridStringTable::SetRowLabelValue( int row
, const wxString
& value
)
3733 if ( row
> (int)(m_rowLabels
.GetCount()) - 1 )
3735 int n
= m_rowLabels
.GetCount();
3738 for ( i
= n
; i
<= row
; i
++ )
3740 m_rowLabels
.Add( wxGridTableBase::GetRowLabelValue(i
) );
3744 m_rowLabels
[row
] = value
;
3747 void wxGridStringTable::SetColLabelValue( int col
, const wxString
& value
)
3749 if ( col
> (int)(m_colLabels
.GetCount()) - 1 )
3751 int n
= m_colLabels
.GetCount();
3754 for ( i
= n
; i
<= col
; i
++ )
3756 m_colLabels
.Add( wxGridTableBase::GetColLabelValue(i
) );
3760 m_colLabels
[col
] = value
;
3764 //////////////////////////////////////////////////////////////////////
3765 //////////////////////////////////////////////////////////////////////
3767 BEGIN_EVENT_TABLE(wxGridSubwindow
, wxWindow
)
3768 EVT_MOUSE_CAPTURE_LOST(wxGridSubwindow::OnMouseCaptureLost
)
3771 void wxGridSubwindow::OnMouseCaptureLost(wxMouseCaptureLostEvent
& WXUNUSED(event
))
3773 m_owner
->CancelMouseCapture();
3776 IMPLEMENT_DYNAMIC_CLASS( wxGridRowLabelWindow
, wxWindow
)
3778 BEGIN_EVENT_TABLE( wxGridRowLabelWindow
, wxGridSubwindow
)
3779 EVT_PAINT( wxGridRowLabelWindow::OnPaint
)
3780 EVT_MOUSEWHEEL( wxGridRowLabelWindow::OnMouseWheel
)
3781 EVT_MOUSE_EVENTS( wxGridRowLabelWindow::OnMouseEvent
)
3784 wxGridRowLabelWindow::wxGridRowLabelWindow( wxGrid
*parent
,
3786 const wxPoint
&pos
, const wxSize
&size
)
3787 : wxGridSubwindow(parent
, id
, pos
, size
)
3792 void wxGridRowLabelWindow::OnPaint( wxPaintEvent
& WXUNUSED(event
) )
3796 // NO - don't do this because it will set both the x and y origin
3797 // coords to match the parent scrolled window and we just want to
3798 // set the y coord - MB
3800 // m_owner->PrepareDC( dc );
3803 m_owner
->CalcUnscrolledPosition( 0, 0, &x
, &y
);
3804 wxPoint pt
= dc
.GetDeviceOrigin();
3805 dc
.SetDeviceOrigin( pt
.x
, pt
.y
-y
);
3807 wxArrayInt rows
= m_owner
->CalcRowLabelsExposed( GetUpdateRegion() );
3808 m_owner
->DrawRowLabels( dc
, rows
);
3811 void wxGridRowLabelWindow::OnMouseEvent( wxMouseEvent
& event
)
3813 m_owner
->ProcessRowLabelMouseEvent( event
);
3816 void wxGridRowLabelWindow::OnMouseWheel( wxMouseEvent
& event
)
3818 m_owner
->GetEventHandler()->ProcessEvent( event
);
3821 //////////////////////////////////////////////////////////////////////
3823 IMPLEMENT_DYNAMIC_CLASS( wxGridColLabelWindow
, wxWindow
)
3825 BEGIN_EVENT_TABLE( wxGridColLabelWindow
, wxGridSubwindow
)
3826 EVT_PAINT( wxGridColLabelWindow::OnPaint
)
3827 EVT_MOUSEWHEEL( wxGridColLabelWindow::OnMouseWheel
)
3828 EVT_MOUSE_EVENTS( wxGridColLabelWindow::OnMouseEvent
)
3831 wxGridColLabelWindow::wxGridColLabelWindow( wxGrid
*parent
,
3833 const wxPoint
&pos
, const wxSize
&size
)
3834 : wxGridSubwindow(parent
, id
, pos
, size
)
3839 void wxGridColLabelWindow::OnPaint( wxPaintEvent
& WXUNUSED(event
) )
3843 // NO - don't do this because it will set both the x and y origin
3844 // coords to match the parent scrolled window and we just want to
3845 // set the x coord - MB
3847 // m_owner->PrepareDC( dc );
3850 m_owner
->CalcUnscrolledPosition( 0, 0, &x
, &y
);
3851 wxPoint pt
= dc
.GetDeviceOrigin();
3852 if (GetLayoutDirection() == wxLayout_RightToLeft
)
3853 dc
.SetDeviceOrigin( pt
.x
+x
, pt
.y
);
3855 dc
.SetDeviceOrigin( pt
.x
-x
, pt
.y
);
3857 wxArrayInt cols
= m_owner
->CalcColLabelsExposed( GetUpdateRegion() );
3858 m_owner
->DrawColLabels( dc
, cols
);
3861 void wxGridColLabelWindow::OnMouseEvent( wxMouseEvent
& event
)
3863 m_owner
->ProcessColLabelMouseEvent( event
);
3866 void wxGridColLabelWindow::OnMouseWheel( wxMouseEvent
& event
)
3868 m_owner
->GetEventHandler()->ProcessEvent( event
);
3871 //////////////////////////////////////////////////////////////////////
3873 IMPLEMENT_DYNAMIC_CLASS( wxGridCornerLabelWindow
, wxWindow
)
3875 BEGIN_EVENT_TABLE( wxGridCornerLabelWindow
, wxGridSubwindow
)
3876 EVT_MOUSEWHEEL( wxGridCornerLabelWindow::OnMouseWheel
)
3877 EVT_MOUSE_EVENTS( wxGridCornerLabelWindow::OnMouseEvent
)
3878 EVT_PAINT( wxGridCornerLabelWindow::OnPaint
)
3881 wxGridCornerLabelWindow::wxGridCornerLabelWindow( wxGrid
*parent
,
3883 const wxPoint
&pos
, const wxSize
&size
)
3884 : wxGridSubwindow(parent
, id
, pos
, size
)
3889 void wxGridCornerLabelWindow::OnPaint( wxPaintEvent
& WXUNUSED(event
) )
3893 int client_height
= 0;
3894 int client_width
= 0;
3895 GetClientSize( &client_width
, &client_height
);
3897 // VZ: any reason for this ifdef? (FIXME)
3903 rect
.SetWidth( client_width
- 2 );
3904 rect
.SetHeight( client_height
- 2 );
3906 wxRendererNative::Get().DrawHeaderButton( this, dc
, rect
, 0 );
3908 dc
.SetPen( wxPen(wxSystemSettings::GetColour(wxSYS_COLOUR_3DSHADOW
), 1, wxSOLID
) );
3909 dc
.DrawLine( client_width
- 1, client_height
- 1, client_width
- 1, 0 );
3910 dc
.DrawLine( client_width
- 1, client_height
- 1, 0, client_height
- 1 );
3911 dc
.DrawLine( 0, 0, client_width
, 0 );
3912 dc
.DrawLine( 0, 0, 0, client_height
);
3914 dc
.SetPen( *wxWHITE_PEN
);
3915 dc
.DrawLine( 1, 1, client_width
- 1, 1 );
3916 dc
.DrawLine( 1, 1, 1, client_height
- 1 );
3920 void wxGridCornerLabelWindow::OnMouseEvent( wxMouseEvent
& event
)
3922 m_owner
->ProcessCornerLabelMouseEvent( event
);
3925 void wxGridCornerLabelWindow::OnMouseWheel( wxMouseEvent
& event
)
3927 m_owner
->GetEventHandler()->ProcessEvent(event
);
3930 //////////////////////////////////////////////////////////////////////
3932 IMPLEMENT_DYNAMIC_CLASS( wxGridWindow
, wxWindow
)
3934 BEGIN_EVENT_TABLE( wxGridWindow
, wxGridSubwindow
)
3935 EVT_PAINT( wxGridWindow::OnPaint
)
3936 EVT_MOUSEWHEEL( wxGridWindow::OnMouseWheel
)
3937 EVT_MOUSE_EVENTS( wxGridWindow::OnMouseEvent
)
3938 EVT_KEY_DOWN( wxGridWindow::OnKeyDown
)
3939 EVT_KEY_UP( wxGridWindow::OnKeyUp
)
3940 EVT_CHAR( wxGridWindow::OnChar
)
3941 EVT_SET_FOCUS( wxGridWindow::OnFocus
)
3942 EVT_KILL_FOCUS( wxGridWindow::OnFocus
)
3943 EVT_ERASE_BACKGROUND( wxGridWindow::OnEraseBackground
)
3946 wxGridWindow::wxGridWindow( wxGrid
*parent
,
3947 wxGridRowLabelWindow
*rowLblWin
,
3948 wxGridColLabelWindow
*colLblWin
,
3951 const wxSize
&size
)
3952 : wxGridSubwindow(parent
, id
, pos
, size
,
3953 wxWANTS_CHARS
| wxCLIP_CHILDREN
,
3954 wxT("grid window") )
3957 m_rowLabelWin
= rowLblWin
;
3958 m_colLabelWin
= colLblWin
;
3961 void wxGridWindow::OnPaint( wxPaintEvent
&WXUNUSED(event
) )
3963 wxPaintDC
dc( this );
3964 m_owner
->PrepareDC( dc
);
3965 wxRegion reg
= GetUpdateRegion();
3966 wxGridCellCoordsArray dirtyCells
= m_owner
->CalcCellsExposed( reg
);
3967 m_owner
->DrawGridCellArea( dc
, dirtyCells
);
3969 #if WXGRID_DRAW_LINES
3970 m_owner
->DrawAllGridLines( dc
, reg
);
3973 m_owner
->DrawGridSpace( dc
);
3974 m_owner
->DrawHighlight( dc
, dirtyCells
);
3977 void wxGridWindow::ScrollWindow( int dx
, int dy
, const wxRect
*rect
)
3979 wxWindow::ScrollWindow( dx
, dy
, rect
);
3980 m_rowLabelWin
->ScrollWindow( 0, dy
, rect
);
3981 m_colLabelWin
->ScrollWindow( dx
, 0, rect
);
3984 void wxGridWindow::OnMouseEvent( wxMouseEvent
& event
)
3986 if (event
.ButtonDown(wxMOUSE_BTN_LEFT
) && FindFocus() != this)
3989 m_owner
->ProcessGridCellMouseEvent( event
);
3992 void wxGridWindow::OnMouseWheel( wxMouseEvent
& event
)
3994 m_owner
->GetEventHandler()->ProcessEvent( event
);
3997 // This seems to be required for wxMotif/wxGTK otherwise the mouse
3998 // cursor must be in the cell edit control to get key events
4000 void wxGridWindow::OnKeyDown( wxKeyEvent
& event
)
4002 if ( !m_owner
->GetEventHandler()->ProcessEvent( event
) )
4006 void wxGridWindow::OnKeyUp( wxKeyEvent
& event
)
4008 if ( !m_owner
->GetEventHandler()->ProcessEvent( event
) )
4012 void wxGridWindow::OnChar( wxKeyEvent
& event
)
4014 if ( !m_owner
->GetEventHandler()->ProcessEvent( event
) )
4018 void wxGridWindow::OnEraseBackground( wxEraseEvent
& WXUNUSED(event
) )
4022 void wxGridWindow::OnFocus(wxFocusEvent
& event
)
4024 // and if we have any selection, it has to be repainted, because it
4025 // uses different colour when the grid is not focused:
4026 if ( m_owner
->IsSelection() )
4032 // NB: Note that this code is in "else" branch only because the other
4033 // branch refreshes everything and so there's no point in calling
4034 // Refresh() again, *not* because it should only be done if
4035 // !IsSelection(). If the above code is ever optimized to refresh
4036 // only selected area, this needs to be moved out of the "else"
4037 // branch so that it's always executed.
4039 // current cell cursor {dis,re}appears on focus change:
4040 const wxGridCellCoords
cursorCoords(m_owner
->GetGridCursorRow(),
4041 m_owner
->GetGridCursorCol());
4042 const wxRect cursor
=
4043 m_owner
->BlockToDeviceRect(cursorCoords
, cursorCoords
);
4044 Refresh(true, &cursor
);
4047 if ( !m_owner
->GetEventHandler()->ProcessEvent( event
) )
4051 //////////////////////////////////////////////////////////////////////
4053 // Internal Helper function for computing row or column from some
4054 // (unscrolled) coordinate value, using either
4055 // m_defaultRowHeight/m_defaultColWidth or binary search on array
4056 // of m_rowBottoms/m_ColRights to speed up the search!
4058 // Internal helper macros for simpler use of that function
4060 static int CoordToRowOrCol(int coord
, int defaultDist
, int minDist
,
4061 const wxArrayInt
& BorderArray
, int nMax
,
4064 #define internalXToCol(x) XToCol(x, true)
4065 #define internalYToRow(y) CoordToRowOrCol(y, m_defaultRowHeight, \
4066 m_minAcceptableRowHeight, \
4067 m_rowBottoms, m_numRows, true)
4069 /////////////////////////////////////////////////////////////////////
4071 #if wxUSE_EXTENDED_RTTI
4072 WX_DEFINE_FLAGS( wxGridStyle
)
4074 wxBEGIN_FLAGS( wxGridStyle
)
4075 // new style border flags, we put them first to
4076 // use them for streaming out
4077 wxFLAGS_MEMBER(wxBORDER_SIMPLE
)
4078 wxFLAGS_MEMBER(wxBORDER_SUNKEN
)
4079 wxFLAGS_MEMBER(wxBORDER_DOUBLE
)
4080 wxFLAGS_MEMBER(wxBORDER_RAISED
)
4081 wxFLAGS_MEMBER(wxBORDER_STATIC
)
4082 wxFLAGS_MEMBER(wxBORDER_NONE
)
4084 // old style border flags
4085 wxFLAGS_MEMBER(wxSIMPLE_BORDER
)
4086 wxFLAGS_MEMBER(wxSUNKEN_BORDER
)
4087 wxFLAGS_MEMBER(wxDOUBLE_BORDER
)
4088 wxFLAGS_MEMBER(wxRAISED_BORDER
)
4089 wxFLAGS_MEMBER(wxSTATIC_BORDER
)
4090 wxFLAGS_MEMBER(wxBORDER
)
4092 // standard window styles
4093 wxFLAGS_MEMBER(wxTAB_TRAVERSAL
)
4094 wxFLAGS_MEMBER(wxCLIP_CHILDREN
)
4095 wxFLAGS_MEMBER(wxTRANSPARENT_WINDOW
)
4096 wxFLAGS_MEMBER(wxWANTS_CHARS
)
4097 wxFLAGS_MEMBER(wxFULL_REPAINT_ON_RESIZE
)
4098 wxFLAGS_MEMBER(wxALWAYS_SHOW_SB
)
4099 wxFLAGS_MEMBER(wxVSCROLL
)
4100 wxFLAGS_MEMBER(wxHSCROLL
)
4102 wxEND_FLAGS( wxGridStyle
)
4104 IMPLEMENT_DYNAMIC_CLASS_XTI(wxGrid
, wxScrolledWindow
,"wx/grid.h")
4106 wxBEGIN_PROPERTIES_TABLE(wxGrid
)
4107 wxHIDE_PROPERTY( Children
)
4108 wxPROPERTY_FLAGS( WindowStyle
, wxGridStyle
, long , SetWindowStyleFlag
, GetWindowStyleFlag
, EMPTY_MACROVALUE
, 0 /*flags*/ , wxT("Helpstring") , wxT("group")) // style
4109 wxEND_PROPERTIES_TABLE()
4111 wxBEGIN_HANDLERS_TABLE(wxGrid
)
4112 wxEND_HANDLERS_TABLE()
4114 wxCONSTRUCTOR_5( wxGrid
, wxWindow
* , Parent
, wxWindowID
, Id
, wxPoint
, Position
, wxSize
, Size
, long , WindowStyle
)
4117 TODO : Expose more information of a list's layout, etc. via appropriate objects (e.g., NotebookPageInfo)
4120 IMPLEMENT_DYNAMIC_CLASS( wxGrid
, wxScrolledWindow
)
4123 BEGIN_EVENT_TABLE( wxGrid
, wxScrolledWindow
)
4124 EVT_PAINT( wxGrid::OnPaint
)
4125 EVT_SIZE( wxGrid::OnSize
)
4126 EVT_KEY_DOWN( wxGrid::OnKeyDown
)
4127 EVT_KEY_UP( wxGrid::OnKeyUp
)
4128 EVT_CHAR ( wxGrid::OnChar
)
4129 EVT_ERASE_BACKGROUND( wxGrid::OnEraseBackground
)
4137 wxGrid::wxGrid( wxWindow
*parent
,
4142 const wxString
& name
)
4145 Create(parent
, id
, pos
, size
, style
, name
);
4148 bool wxGrid::Create(wxWindow
*parent
, wxWindowID id
,
4149 const wxPoint
& pos
, const wxSize
& size
,
4150 long style
, const wxString
& name
)
4152 if (!wxScrolledWindow::Create(parent
, id
, pos
, size
,
4153 style
| wxWANTS_CHARS
, name
))
4156 m_colMinWidths
= wxLongToLongHashMap(GRID_HASH_SIZE
);
4157 m_rowMinHeights
= wxLongToLongHashMap(GRID_HASH_SIZE
);
4160 SetInitialSize(size
);
4168 // Must do this or ~wxScrollHelper will pop the wrong event handler
4169 SetTargetWindow(this);
4171 wxSafeDecRef(m_defaultCellAttr
);
4173 #ifdef DEBUG_ATTR_CACHE
4174 size_t total
= gs_nAttrCacheHits
+ gs_nAttrCacheMisses
;
4175 wxPrintf(_T("wxGrid attribute cache statistics: "
4176 "total: %u, hits: %u (%u%%)\n"),
4177 total
, gs_nAttrCacheHits
,
4178 total
? (gs_nAttrCacheHits
*100) / total
: 0);
4181 // if we own the table, just delete it, otherwise at least don't leave it
4182 // with dangling view pointer
4185 else if ( m_table
&& m_table
->GetView() == this )
4186 m_table
->SetView(NULL
);
4188 delete m_typeRegistry
;
4193 // ----- internal init and update functions
4196 // NOTE: If using the default visual attributes works everywhere then this can
4197 // be removed as well as the #else cases below.
4198 #define _USE_VISATTR 0
4200 void wxGrid::Create()
4202 // create the type registry
4203 m_typeRegistry
= new wxGridTypeRegistry
;
4205 m_cellEditCtrlEnabled
= false;
4207 m_defaultCellAttr
= new wxGridCellAttr();
4209 // Set default cell attributes
4210 m_defaultCellAttr
->SetDefAttr(m_defaultCellAttr
);
4211 m_defaultCellAttr
->SetKind(wxGridCellAttr::Default
);
4212 m_defaultCellAttr
->SetFont(GetFont());
4213 m_defaultCellAttr
->SetAlignment(wxALIGN_LEFT
, wxALIGN_TOP
);
4214 m_defaultCellAttr
->SetRenderer(new wxGridCellStringRenderer
);
4215 m_defaultCellAttr
->SetEditor(new wxGridCellTextEditor
);
4218 wxVisualAttributes gva
= wxListBox::GetClassDefaultAttributes();
4219 wxVisualAttributes lva
= wxPanel::GetClassDefaultAttributes();
4221 m_defaultCellAttr
->SetTextColour(gva
.colFg
);
4222 m_defaultCellAttr
->SetBackgroundColour(gva
.colBg
);
4225 m_defaultCellAttr
->SetTextColour(
4226 wxSystemSettings::GetColour(wxSYS_COLOUR_WINDOWTEXT
));
4227 m_defaultCellAttr
->SetBackgroundColour(
4228 wxSystemSettings::GetColour(wxSYS_COLOUR_WINDOW
));
4233 m_currentCellCoords
= wxGridNoCellCoords
;
4235 m_rowLabelWidth
= WXGRID_DEFAULT_ROW_LABEL_WIDTH
;
4236 m_colLabelHeight
= WXGRID_DEFAULT_COL_LABEL_HEIGHT
;
4238 // subwindow components that make up the wxGrid
4239 m_rowLabelWin
= new wxGridRowLabelWindow( this,
4244 m_colLabelWin
= new wxGridColLabelWindow( this,
4249 m_cornerLabelWin
= new wxGridCornerLabelWindow( this,
4254 m_gridWin
= new wxGridWindow( this,
4261 SetTargetWindow( m_gridWin
);
4264 wxColour gfg
= gva
.colFg
;
4265 wxColour gbg
= gva
.colBg
;
4266 wxColour lfg
= lva
.colFg
;
4267 wxColour lbg
= lva
.colBg
;
4269 wxColour gfg
= wxSystemSettings::GetColour( wxSYS_COLOUR_WINDOWTEXT
);
4270 wxColour gbg
= wxSystemSettings::GetColour( wxSYS_COLOUR_WINDOW
);
4271 wxColour lfg
= wxSystemSettings::GetColour( wxSYS_COLOUR_WINDOWTEXT
);
4272 wxColour lbg
= wxSystemSettings::GetColour( wxSYS_COLOUR_BTNFACE
);
4275 m_cornerLabelWin
->SetOwnForegroundColour(lfg
);
4276 m_cornerLabelWin
->SetOwnBackgroundColour(lbg
);
4277 m_rowLabelWin
->SetOwnForegroundColour(lfg
);
4278 m_rowLabelWin
->SetOwnBackgroundColour(lbg
);
4279 m_colLabelWin
->SetOwnForegroundColour(lfg
);
4280 m_colLabelWin
->SetOwnBackgroundColour(lbg
);
4282 m_gridWin
->SetOwnForegroundColour(gfg
);
4283 m_gridWin
->SetOwnBackgroundColour(gbg
);
4288 bool wxGrid::CreateGrid( int numRows
, int numCols
,
4289 wxGrid::wxGridSelectionModes selmode
)
4291 wxCHECK_MSG( !m_created
,
4293 wxT("wxGrid::CreateGrid or wxGrid::SetTable called more than once") );
4295 m_numRows
= numRows
;
4296 m_numCols
= numCols
;
4298 m_table
= new wxGridStringTable( m_numRows
, m_numCols
);
4299 m_table
->SetView( this );
4301 m_selection
= new wxGridSelection( this, selmode
);
4310 void wxGrid::SetSelectionMode(wxGrid::wxGridSelectionModes selmode
)
4312 wxCHECK_RET( m_created
,
4313 wxT("Called wxGrid::SetSelectionMode() before calling CreateGrid()") );
4315 m_selection
->SetSelectionMode( selmode
);
4318 wxGrid::wxGridSelectionModes
wxGrid::GetSelectionMode() const
4320 wxCHECK_MSG( m_created
, wxGrid::wxGridSelectCells
,
4321 wxT("Called wxGrid::GetSelectionMode() before calling CreateGrid()") );
4323 return m_selection
->GetSelectionMode();
4326 bool wxGrid::SetTable( wxGridTableBase
*table
, bool takeOwnership
,
4327 wxGrid::wxGridSelectionModes selmode
)
4329 bool checkSelection
= false;
4332 // stop all processing
4337 m_table
->SetView(0);
4349 checkSelection
= true;
4351 // kill row and column size arrays
4352 m_colWidths
.Empty();
4353 m_colRights
.Empty();
4354 m_rowHeights
.Empty();
4355 m_rowBottoms
.Empty();
4360 m_numRows
= table
->GetNumberRows();
4361 m_numCols
= table
->GetNumberCols();
4364 m_table
->SetView( this );
4365 m_ownTable
= takeOwnership
;
4366 m_selection
= new wxGridSelection( this, selmode
);
4369 // If the newly set table is smaller than the
4370 // original one current cell and selection regions
4371 // might be invalid,
4372 m_selectingKeyboard
= wxGridNoCellCoords
;
4373 m_currentCellCoords
=
4374 wxGridCellCoords(wxMin(m_numRows
, m_currentCellCoords
.GetRow()),
4375 wxMin(m_numCols
, m_currentCellCoords
.GetCol()));
4376 if (m_selectingTopLeft
.GetRow() >= m_numRows
||
4377 m_selectingTopLeft
.GetCol() >= m_numCols
)
4379 m_selectingTopLeft
= wxGridNoCellCoords
;
4380 m_selectingBottomRight
= wxGridNoCellCoords
;
4383 m_selectingBottomRight
=
4384 wxGridCellCoords(wxMin(m_numRows
,
4385 m_selectingBottomRight
.GetRow()),
4387 m_selectingBottomRight
.GetCol()));
4397 void wxGrid::InitVars()
4401 m_cornerLabelWin
= NULL
;
4402 m_rowLabelWin
= NULL
;
4403 m_colLabelWin
= NULL
;
4410 m_defaultCellAttr
= NULL
;
4411 m_typeRegistry
= NULL
;
4412 m_winCapture
= NULL
;
4417 m_rowLabelWidth
= WXGRID_DEFAULT_ROW_LABEL_WIDTH
;
4418 m_colLabelHeight
= WXGRID_DEFAULT_COL_LABEL_HEIGHT
;
4420 if ( m_rowLabelWin
)
4422 m_labelBackgroundColour
= m_rowLabelWin
->GetBackgroundColour();
4426 m_labelBackgroundColour
= *wxWHITE
;
4429 m_labelTextColour
= *wxBLACK
;
4432 m_attrCache
.row
= -1;
4433 m_attrCache
.col
= -1;
4434 m_attrCache
.attr
= NULL
;
4436 // TODO: something better than this ?
4438 m_labelFont
= this->GetFont();
4439 m_labelFont
.SetWeight( wxBOLD
);
4441 m_rowLabelHorizAlign
= wxALIGN_CENTRE
;
4442 m_rowLabelVertAlign
= wxALIGN_CENTRE
;
4444 m_colLabelHorizAlign
= wxALIGN_CENTRE
;
4445 m_colLabelVertAlign
= wxALIGN_CENTRE
;
4446 m_colLabelTextOrientation
= wxHORIZONTAL
;
4448 m_defaultColWidth
= WXGRID_DEFAULT_COL_WIDTH
;
4449 m_defaultRowHeight
= m_gridWin
->GetCharHeight();
4451 m_minAcceptableColWidth
= WXGRID_MIN_COL_WIDTH
;
4452 m_minAcceptableRowHeight
= WXGRID_MIN_ROW_HEIGHT
;
4454 #if defined(__WXMOTIF__) || defined(__WXGTK__) // see also text ctrl sizing in ShowCellEditControl()
4455 m_defaultRowHeight
+= 8;
4457 m_defaultRowHeight
+= 4;
4460 m_gridLineColour
= wxColour( 192,192,192 );
4461 m_gridLinesEnabled
= true;
4462 m_cellHighlightColour
= *wxBLACK
;
4463 m_cellHighlightPenWidth
= 2;
4464 m_cellHighlightROPenWidth
= 1;
4466 m_canDragColMove
= false;
4468 m_cursorMode
= WXGRID_CURSOR_SELECT_CELL
;
4469 m_winCapture
= (wxWindow
*)NULL
;
4470 m_canDragRowSize
= true;
4471 m_canDragColSize
= true;
4472 m_canDragGridSize
= true;
4473 m_canDragCell
= false;
4475 m_dragRowOrCol
= -1;
4476 m_isDragging
= false;
4477 m_startDragPos
= wxDefaultPosition
;
4478 m_nativeColumnLabels
= false;
4480 m_waitForSlowClick
= false;
4482 m_rowResizeCursor
= wxCursor( wxCURSOR_SIZENS
);
4483 m_colResizeCursor
= wxCursor( wxCURSOR_SIZEWE
);
4485 m_currentCellCoords
= wxGridNoCellCoords
;
4489 m_selectionBackground
= wxSystemSettings::GetColour(wxSYS_COLOUR_HIGHLIGHT
);
4490 m_selectionForeground
= wxSystemSettings::GetColour(wxSYS_COLOUR_HIGHLIGHTTEXT
);
4492 m_editable
= true; // default for whole grid
4494 m_inOnKeyDown
= false;
4500 m_scrollLineX
= GRID_SCROLL_LINE_X
;
4501 m_scrollLineY
= GRID_SCROLL_LINE_Y
;
4504 // ----------------------------------------------------------------------------
4505 // the idea is to call these functions only when necessary because they create
4506 // quite big arrays which eat memory mostly unnecessary - in particular, if
4507 // default widths/heights are used for all rows/columns, we may not use these
4510 // with some extra code, it should be possible to only store the widths/heights
4511 // different from default ones (resulting in space savings for huge grids) but
4512 // this is not done currently
4513 // ----------------------------------------------------------------------------
4515 void wxGrid::InitRowHeights()
4517 m_rowHeights
.Empty();
4518 m_rowBottoms
.Empty();
4520 m_rowHeights
.Alloc( m_numRows
);
4521 m_rowBottoms
.Alloc( m_numRows
);
4523 m_rowHeights
.Add( m_defaultRowHeight
, m_numRows
);
4526 for ( int i
= 0; i
< m_numRows
; i
++ )
4528 rowBottom
+= m_defaultRowHeight
;
4529 m_rowBottoms
.Add( rowBottom
);
4533 void wxGrid::InitColWidths()
4535 m_colWidths
.Empty();
4536 m_colRights
.Empty();
4538 m_colWidths
.Alloc( m_numCols
);
4539 m_colRights
.Alloc( m_numCols
);
4541 m_colWidths
.Add( m_defaultColWidth
, m_numCols
);
4544 for ( int i
= 0; i
< m_numCols
; i
++ )
4546 colRight
= ( GetColPos( i
) + 1 ) * m_defaultColWidth
;
4547 m_colRights
.Add( colRight
);
4551 int wxGrid::GetColWidth(int col
) const
4553 return m_colWidths
.IsEmpty() ? m_defaultColWidth
: m_colWidths
[col
];
4556 int wxGrid::GetColLeft(int col
) const
4558 return m_colRights
.IsEmpty() ? GetColPos( col
) * m_defaultColWidth
4559 : m_colRights
[col
] - m_colWidths
[col
];
4562 int wxGrid::GetColRight(int col
) const
4564 return m_colRights
.IsEmpty() ? (GetColPos( col
) + 1) * m_defaultColWidth
4568 int wxGrid::GetRowHeight(int row
) const
4570 return m_rowHeights
.IsEmpty() ? m_defaultRowHeight
: m_rowHeights
[row
];
4573 int wxGrid::GetRowTop(int row
) const
4575 return m_rowBottoms
.IsEmpty() ? row
* m_defaultRowHeight
4576 : m_rowBottoms
[row
] - m_rowHeights
[row
];
4579 int wxGrid::GetRowBottom(int row
) const
4581 return m_rowBottoms
.IsEmpty() ? (row
+ 1) * m_defaultRowHeight
4582 : m_rowBottoms
[row
];
4585 void wxGrid::CalcDimensions()
4587 // compute the size of the scrollable area
4588 int w
= m_numCols
> 0 ? GetColRight(GetColAt(m_numCols
- 1)) : 0;
4589 int h
= m_numRows
> 0 ? GetRowBottom(m_numRows
- 1) : 0;
4594 // take into account editor if shown
4595 if ( IsCellEditControlShown() )
4598 int r
= m_currentCellCoords
.GetRow();
4599 int c
= m_currentCellCoords
.GetCol();
4600 int x
= GetColLeft(c
);
4601 int y
= GetRowTop(r
);
4603 // how big is the editor
4604 wxGridCellAttr
* attr
= GetCellAttr(r
, c
);
4605 wxGridCellEditor
* editor
= attr
->GetEditor(this, r
, c
);
4606 editor
->GetControl()->GetSize(&w2
, &h2
);
4617 // preserve (more or less) the previous position
4619 GetViewStart( &x
, &y
);
4621 // ensure the position is valid for the new scroll ranges
4623 x
= wxMax( w
- 1, 0 );
4625 y
= wxMax( h
- 1, 0 );
4627 // do set scrollbar parameters
4628 SetScrollbars( m_scrollLineX
, m_scrollLineY
,
4629 GetScrollX(w
), GetScrollY(h
),
4631 GetBatchCount() != 0);
4633 // if our OnSize() hadn't been called (it would if we have scrollbars), we
4634 // still must reposition the children
4638 void wxGrid::CalcWindowSizes()
4640 // escape if the window is has not been fully created yet
4642 if ( m_cornerLabelWin
== NULL
)
4646 GetClientSize( &cw
, &ch
);
4648 // this block of code tries to work around the following problem: the grid
4649 // could have been just resized to have enough space to show the full grid
4650 // window contents without the scrollbars, but its client size could be
4651 // not big enough because the grid has the scrollbars right now and so the
4652 // scrollbars would remain even though we don't need them any more
4654 // to prevent this from happening, check if we have enough space for
4655 // everything without the scrollbars and explicitly disable them then
4656 wxSize size
= GetSize() - GetWindowBorderSize();
4657 if ( size
!= wxSize(cw
, ch
) )
4659 // check if we have enough space for grid window after accounting for
4660 // the fixed size elements
4661 size
.x
-= m_rowLabelWidth
;
4662 size
.y
-= m_colLabelHeight
;
4664 const wxSize vsize
= m_gridWin
->GetVirtualSize();
4666 if ( size
.x
>= vsize
.x
&& size
.y
>= vsize
.y
)
4668 // yes, we do, so remove the scrollbars and use the new client size
4669 // (which should be the same as full window size - borders now)
4670 SetScrollbars(0, 0, 0, 0);
4671 GetClientSize(&cw
, &ch
);
4675 // the grid may be too small to have enough space for the labels yet, don't
4676 // size the windows to negative sizes in this case
4677 int gw
= cw
- m_rowLabelWidth
;
4678 int gh
= ch
- m_colLabelHeight
;
4684 if ( m_cornerLabelWin
&& m_cornerLabelWin
->IsShown() )
4685 m_cornerLabelWin
->SetSize( 0, 0, m_rowLabelWidth
, m_colLabelHeight
);
4687 if ( m_colLabelWin
&& m_colLabelWin
->IsShown() )
4688 m_colLabelWin
->SetSize( m_rowLabelWidth
, 0, gw
, m_colLabelHeight
);
4690 if ( m_rowLabelWin
&& m_rowLabelWin
->IsShown() )
4691 m_rowLabelWin
->SetSize( 0, m_colLabelHeight
, m_rowLabelWidth
, gh
);
4693 if ( m_gridWin
&& m_gridWin
->IsShown() )
4694 m_gridWin
->SetSize( m_rowLabelWidth
, m_colLabelHeight
, gw
, gh
);
4697 // this is called when the grid table sends a message
4698 // to indicate that it has been redimensioned
4700 bool wxGrid::Redimension( wxGridTableMessage
& msg
)
4703 bool result
= false;
4705 // Clear the attribute cache as the attribute might refer to a different
4706 // cell than stored in the cache after adding/removing rows/columns.
4709 // By the same reasoning, the editor should be dismissed if columns are
4710 // added or removed. And for consistency, it should IMHO always be
4711 // removed, not only if the cell "underneath" it actually changes.
4712 // For now, I intentionally do not save the editor's content as the
4713 // cell it might want to save that stuff to might no longer exist.
4714 HideCellEditControl();
4717 // if we were using the default widths/heights so far, we must change them
4719 if ( m_colWidths
.IsEmpty() )
4724 if ( m_rowHeights
.IsEmpty() )
4730 switch ( msg
.GetId() )
4732 case wxGRIDTABLE_NOTIFY_ROWS_INSERTED
:
4734 size_t pos
= msg
.GetCommandInt();
4735 int numRows
= msg
.GetCommandInt2();
4737 m_numRows
+= numRows
;
4739 if ( !m_rowHeights
.IsEmpty() )
4741 m_rowHeights
.Insert( m_defaultRowHeight
, pos
, numRows
);
4742 m_rowBottoms
.Insert( 0, pos
, numRows
);
4746 bottom
= m_rowBottoms
[pos
- 1];
4748 for ( i
= pos
; i
< m_numRows
; i
++ )
4750 bottom
+= m_rowHeights
[i
];
4751 m_rowBottoms
[i
] = bottom
;
4755 if ( m_currentCellCoords
== wxGridNoCellCoords
)
4757 // if we have just inserted cols into an empty grid the current
4758 // cell will be undefined...
4760 SetCurrentCell( 0, 0 );
4764 m_selection
->UpdateRows( pos
, numRows
);
4765 wxGridCellAttrProvider
* attrProvider
= m_table
->GetAttrProvider();
4767 attrProvider
->UpdateAttrRows( pos
, numRows
);
4769 if ( !GetBatchCount() )
4772 m_rowLabelWin
->Refresh();
4778 case wxGRIDTABLE_NOTIFY_ROWS_APPENDED
:
4780 int numRows
= msg
.GetCommandInt();
4781 int oldNumRows
= m_numRows
;
4782 m_numRows
+= numRows
;
4784 if ( !m_rowHeights
.IsEmpty() )
4786 m_rowHeights
.Add( m_defaultRowHeight
, numRows
);
4787 m_rowBottoms
.Add( 0, numRows
);
4790 if ( oldNumRows
> 0 )
4791 bottom
= m_rowBottoms
[oldNumRows
- 1];
4793 for ( i
= oldNumRows
; i
< m_numRows
; i
++ )
4795 bottom
+= m_rowHeights
[i
];
4796 m_rowBottoms
[i
] = bottom
;
4800 if ( m_currentCellCoords
== wxGridNoCellCoords
)
4802 // if we have just inserted cols into an empty grid the current
4803 // cell will be undefined...
4805 SetCurrentCell( 0, 0 );
4808 if ( !GetBatchCount() )
4811 m_rowLabelWin
->Refresh();
4817 case wxGRIDTABLE_NOTIFY_ROWS_DELETED
:
4819 size_t pos
= msg
.GetCommandInt();
4820 int numRows
= msg
.GetCommandInt2();
4821 m_numRows
-= numRows
;
4823 if ( !m_rowHeights
.IsEmpty() )
4825 m_rowHeights
.RemoveAt( pos
, numRows
);
4826 m_rowBottoms
.RemoveAt( pos
, numRows
);
4829 for ( i
= 0; i
< m_numRows
; i
++ )
4831 h
+= m_rowHeights
[i
];
4832 m_rowBottoms
[i
] = h
;
4838 m_currentCellCoords
= wxGridNoCellCoords
;
4842 if ( m_currentCellCoords
.GetRow() >= m_numRows
)
4843 m_currentCellCoords
.Set( 0, 0 );
4847 m_selection
->UpdateRows( pos
, -((int)numRows
) );
4848 wxGridCellAttrProvider
* attrProvider
= m_table
->GetAttrProvider();
4851 attrProvider
->UpdateAttrRows( pos
, -((int)numRows
) );
4853 // ifdef'd out following patch from Paul Gammans
4855 // No need to touch column attributes, unless we
4856 // removed _all_ rows, in this case, we remove
4857 // all column attributes.
4858 // I hate to do this here, but the
4859 // needed data is not available inside UpdateAttrRows.
4860 if ( !GetNumberRows() )
4861 attrProvider
->UpdateAttrCols( 0, -GetNumberCols() );
4865 if ( !GetBatchCount() )
4868 m_rowLabelWin
->Refresh();
4874 case wxGRIDTABLE_NOTIFY_COLS_INSERTED
:
4876 size_t pos
= msg
.GetCommandInt();
4877 int numCols
= msg
.GetCommandInt2();
4878 m_numCols
+= numCols
;
4880 if ( !m_colAt
.IsEmpty() )
4882 //Shift the column IDs
4884 for ( i
= 0; i
< m_numCols
- numCols
; i
++ )
4886 if ( m_colAt
[i
] >= (int)pos
)
4887 m_colAt
[i
] += numCols
;
4890 m_colAt
.Insert( pos
, pos
, numCols
);
4892 //Set the new columns' positions
4893 for ( i
= pos
+ 1; i
< (int)pos
+ numCols
; i
++ )
4899 if ( !m_colWidths
.IsEmpty() )
4901 m_colWidths
.Insert( m_defaultColWidth
, pos
, numCols
);
4902 m_colRights
.Insert( 0, pos
, numCols
);
4906 right
= m_colRights
[GetColAt( pos
- 1 )];
4909 for ( colPos
= pos
; colPos
< m_numCols
; colPos
++ )
4911 i
= GetColAt( colPos
);
4913 right
+= m_colWidths
[i
];
4914 m_colRights
[i
] = right
;
4918 if ( m_currentCellCoords
== wxGridNoCellCoords
)
4920 // if we have just inserted cols into an empty grid the current
4921 // cell will be undefined...
4923 SetCurrentCell( 0, 0 );
4927 m_selection
->UpdateCols( pos
, numCols
);
4928 wxGridCellAttrProvider
* attrProvider
= m_table
->GetAttrProvider();
4930 attrProvider
->UpdateAttrCols( pos
, numCols
);
4931 if ( !GetBatchCount() )
4934 m_colLabelWin
->Refresh();
4940 case wxGRIDTABLE_NOTIFY_COLS_APPENDED
:
4942 int numCols
= msg
.GetCommandInt();
4943 int oldNumCols
= m_numCols
;
4944 m_numCols
+= numCols
;
4946 if ( !m_colAt
.IsEmpty() )
4948 m_colAt
.Add( 0, numCols
);
4950 //Set the new columns' positions
4952 for ( i
= oldNumCols
; i
< m_numCols
; i
++ )
4958 if ( !m_colWidths
.IsEmpty() )
4960 m_colWidths
.Add( m_defaultColWidth
, numCols
);
4961 m_colRights
.Add( 0, numCols
);
4964 if ( oldNumCols
> 0 )
4965 right
= m_colRights
[GetColAt( oldNumCols
- 1 )];
4968 for ( colPos
= oldNumCols
; colPos
< m_numCols
; colPos
++ )
4970 i
= GetColAt( colPos
);
4972 right
+= m_colWidths
[i
];
4973 m_colRights
[i
] = right
;
4977 if ( m_currentCellCoords
== wxGridNoCellCoords
)
4979 // if we have just inserted cols into an empty grid the current
4980 // cell will be undefined...
4982 SetCurrentCell( 0, 0 );
4984 if ( !GetBatchCount() )
4987 m_colLabelWin
->Refresh();
4993 case wxGRIDTABLE_NOTIFY_COLS_DELETED
:
4995 size_t pos
= msg
.GetCommandInt();
4996 int numCols
= msg
.GetCommandInt2();
4997 m_numCols
-= numCols
;
4999 if ( !m_colAt
.IsEmpty() )
5001 int colID
= GetColAt( pos
);
5003 m_colAt
.RemoveAt( pos
, numCols
);
5005 //Shift the column IDs
5007 for ( colPos
= 0; colPos
< m_numCols
; colPos
++ )
5009 if ( m_colAt
[colPos
] > colID
)
5010 m_colAt
[colPos
] -= numCols
;
5014 if ( !m_colWidths
.IsEmpty() )
5016 m_colWidths
.RemoveAt( pos
, numCols
);
5017 m_colRights
.RemoveAt( pos
, numCols
);
5021 for ( colPos
= 0; colPos
< m_numCols
; colPos
++ )
5023 i
= GetColAt( colPos
);
5025 w
+= m_colWidths
[i
];
5032 m_currentCellCoords
= wxGridNoCellCoords
;
5036 if ( m_currentCellCoords
.GetCol() >= m_numCols
)
5037 m_currentCellCoords
.Set( 0, 0 );
5041 m_selection
->UpdateCols( pos
, -((int)numCols
) );
5042 wxGridCellAttrProvider
* attrProvider
= m_table
->GetAttrProvider();
5045 attrProvider
->UpdateAttrCols( pos
, -((int)numCols
) );
5047 // ifdef'd out following patch from Paul Gammans
5049 // No need to touch row attributes, unless we
5050 // removed _all_ columns, in this case, we remove
5051 // all row attributes.
5052 // I hate to do this here, but the
5053 // needed data is not available inside UpdateAttrCols.
5054 if ( !GetNumberCols() )
5055 attrProvider
->UpdateAttrRows( 0, -GetNumberRows() );
5059 if ( !GetBatchCount() )
5062 m_colLabelWin
->Refresh();
5069 if (result
&& !GetBatchCount() )
5070 m_gridWin
->Refresh();
5075 wxArrayInt
wxGrid::CalcRowLabelsExposed( const wxRegion
& reg
) const
5077 wxRegionIterator
iter( reg
);
5080 wxArrayInt rowlabels
;
5087 // TODO: remove this when we can...
5088 // There is a bug in wxMotif that gives garbage update
5089 // rectangles if you jump-scroll a long way by clicking the
5090 // scrollbar with middle button. This is a work-around
5092 #if defined(__WXMOTIF__)
5094 m_gridWin
->GetClientSize( &cw
, &ch
);
5095 if ( r
.GetTop() > ch
)
5097 r
.SetBottom( wxMin( r
.GetBottom(), ch
) );
5100 // logical bounds of update region
5103 CalcUnscrolledPosition( 0, r
.GetTop(), &dummy
, &top
);
5104 CalcUnscrolledPosition( 0, r
.GetBottom(), &dummy
, &bottom
);
5106 // find the row labels within these bounds
5109 for ( row
= internalYToRow(top
); row
< m_numRows
; row
++ )
5111 if ( GetRowBottom(row
) < top
)
5114 if ( GetRowTop(row
) > bottom
)
5117 rowlabels
.Add( row
);
5126 wxArrayInt
wxGrid::CalcColLabelsExposed( const wxRegion
& reg
) const
5128 wxRegionIterator
iter( reg
);
5131 wxArrayInt colLabels
;
5138 // TODO: remove this when we can...
5139 // There is a bug in wxMotif that gives garbage update
5140 // rectangles if you jump-scroll a long way by clicking the
5141 // scrollbar with middle button. This is a work-around
5143 #if defined(__WXMOTIF__)
5145 m_gridWin
->GetClientSize( &cw
, &ch
);
5146 if ( r
.GetLeft() > cw
)
5148 r
.SetRight( wxMin( r
.GetRight(), cw
) );
5151 // logical bounds of update region
5154 CalcUnscrolledPosition( r
.GetLeft(), 0, &left
, &dummy
);
5155 CalcUnscrolledPosition( r
.GetRight(), 0, &right
, &dummy
);
5157 // find the cells within these bounds
5161 for ( colPos
= GetColPos( internalXToCol(left
) ); colPos
< m_numCols
; colPos
++ )
5163 col
= GetColAt( colPos
);
5165 if ( GetColRight(col
) < left
)
5168 if ( GetColLeft(col
) > right
)
5171 colLabels
.Add( col
);
5180 wxGridCellCoordsArray
wxGrid::CalcCellsExposed( const wxRegion
& reg
) const
5182 wxRegionIterator
iter( reg
);
5185 wxGridCellCoordsArray cellsExposed
;
5187 int left
, top
, right
, bottom
;
5192 // TODO: remove this when we can...
5193 // There is a bug in wxMotif that gives garbage update
5194 // rectangles if you jump-scroll a long way by clicking the
5195 // scrollbar with middle button. This is a work-around
5197 #if defined(__WXMOTIF__)
5199 m_gridWin
->GetClientSize( &cw
, &ch
);
5200 if ( r
.GetTop() > ch
) r
.SetTop( 0 );
5201 if ( r
.GetLeft() > cw
) r
.SetLeft( 0 );
5202 r
.SetRight( wxMin( r
.GetRight(), cw
) );
5203 r
.SetBottom( wxMin( r
.GetBottom(), ch
) );
5206 // logical bounds of update region
5208 CalcUnscrolledPosition( r
.GetLeft(), r
.GetTop(), &left
, &top
);
5209 CalcUnscrolledPosition( r
.GetRight(), r
.GetBottom(), &right
, &bottom
);
5211 // find the cells within these bounds
5214 for ( row
= internalYToRow(top
); row
< m_numRows
; row
++ )
5216 if ( GetRowBottom(row
) <= top
)
5219 if ( GetRowTop(row
) > bottom
)
5223 for ( colPos
= GetColPos( internalXToCol(left
) ); colPos
< m_numCols
; colPos
++ )
5225 col
= GetColAt( colPos
);
5227 if ( GetColRight(col
) <= left
)
5230 if ( GetColLeft(col
) > right
)
5233 cellsExposed
.Add( wxGridCellCoords( row
, col
) );
5240 return cellsExposed
;
5244 void wxGrid::ProcessRowLabelMouseEvent( wxMouseEvent
& event
)
5247 wxPoint
pos( event
.GetPosition() );
5248 CalcUnscrolledPosition( pos
.x
, pos
.y
, &x
, &y
);
5250 if ( event
.Dragging() )
5254 m_isDragging
= true;
5255 m_rowLabelWin
->CaptureMouse();
5258 if ( event
.LeftIsDown() )
5260 switch ( m_cursorMode
)
5262 case WXGRID_CURSOR_RESIZE_ROW
:
5264 int cw
, ch
, left
, dummy
;
5265 m_gridWin
->GetClientSize( &cw
, &ch
);
5266 CalcUnscrolledPosition( 0, 0, &left
, &dummy
);
5268 wxClientDC
dc( m_gridWin
);
5271 GetRowTop(m_dragRowOrCol
) +
5272 GetRowMinimalHeight(m_dragRowOrCol
) );
5273 dc
.SetLogicalFunction(wxINVERT
);
5274 if ( m_dragLastPos
>= 0 )
5276 dc
.DrawLine( left
, m_dragLastPos
, left
+cw
, m_dragLastPos
);
5278 dc
.DrawLine( left
, y
, left
+cw
, y
);
5283 case WXGRID_CURSOR_SELECT_ROW
:
5285 if ( (row
= YToRow( y
)) >= 0 )
5289 m_selection
->SelectRow( row
,
5290 event
.ControlDown(),
5299 // default label to suppress warnings about "enumeration value
5300 // 'xxx' not handled in switch
5308 if ( m_isDragging
&& (event
.Entering() || event
.Leaving()) )
5313 if (m_rowLabelWin
->HasCapture())
5314 m_rowLabelWin
->ReleaseMouse();
5315 m_isDragging
= false;
5318 // ------------ Entering or leaving the window
5320 if ( event
.Entering() || event
.Leaving() )
5322 ChangeCursorMode(WXGRID_CURSOR_SELECT_CELL
, m_rowLabelWin
);
5325 // ------------ Left button pressed
5327 else if ( event
.LeftDown() )
5329 // don't send a label click event for a hit on the
5330 // edge of the row label - this is probably the user
5331 // wanting to resize the row
5333 if ( YToEdgeOfRow(y
) < 0 )
5337 !SendEvent( wxEVT_GRID_LABEL_LEFT_CLICK
, row
, -1, event
) )
5339 if ( !event
.ShiftDown() && !event
.CmdDown() )
5343 if ( event
.ShiftDown() )
5345 m_selection
->SelectBlock( m_currentCellCoords
.GetRow(),
5348 GetNumberCols() - 1,
5349 event
.ControlDown(),
5356 m_selection
->SelectRow( row
,
5357 event
.ControlDown(),
5364 ChangeCursorMode(WXGRID_CURSOR_SELECT_ROW
, m_rowLabelWin
);
5369 // starting to drag-resize a row
5370 if ( CanDragRowSize() )
5371 ChangeCursorMode(WXGRID_CURSOR_RESIZE_ROW
, m_rowLabelWin
);
5375 // ------------ Left double click
5377 else if (event
.LeftDClick() )
5379 row
= YToEdgeOfRow(y
);
5384 !SendEvent( wxEVT_GRID_LABEL_LEFT_DCLICK
, row
, -1, event
) )
5386 // no default action at the moment
5391 // adjust row height depending on label text
5392 AutoSizeRowLabelSize( row
);
5394 ChangeCursorMode(WXGRID_CURSOR_SELECT_CELL
, m_colLabelWin
);
5399 // ------------ Left button released
5401 else if ( event
.LeftUp() )
5403 if ( m_cursorMode
== WXGRID_CURSOR_RESIZE_ROW
)
5405 DoEndDragResizeRow();
5407 // Note: we are ending the event *after* doing
5408 // default processing in this case
5410 SendEvent( wxEVT_GRID_ROW_SIZE
, m_dragRowOrCol
, -1, event
);
5413 ChangeCursorMode(WXGRID_CURSOR_SELECT_CELL
, m_rowLabelWin
);
5417 // ------------ Right button down
5419 else if ( event
.RightDown() )
5423 !SendEvent( wxEVT_GRID_LABEL_RIGHT_CLICK
, row
, -1, event
) )
5425 // no default action at the moment
5429 // ------------ Right double click
5431 else if ( event
.RightDClick() )
5435 !SendEvent( wxEVT_GRID_LABEL_RIGHT_DCLICK
, row
, -1, event
) )
5437 // no default action at the moment
5441 // ------------ No buttons down and mouse moving
5443 else if ( event
.Moving() )
5445 m_dragRowOrCol
= YToEdgeOfRow( y
);
5446 if ( m_dragRowOrCol
>= 0 )
5448 if ( m_cursorMode
== WXGRID_CURSOR_SELECT_CELL
)
5450 // don't capture the mouse yet
5451 if ( CanDragRowSize() )
5452 ChangeCursorMode(WXGRID_CURSOR_RESIZE_ROW
, m_rowLabelWin
, false);
5455 else if ( m_cursorMode
!= WXGRID_CURSOR_SELECT_CELL
)
5457 ChangeCursorMode(WXGRID_CURSOR_SELECT_CELL
, m_rowLabelWin
, false);
5462 void wxGrid::ProcessColLabelMouseEvent( wxMouseEvent
& event
)
5465 wxPoint
pos( event
.GetPosition() );
5466 CalcUnscrolledPosition( pos
.x
, pos
.y
, &x
, &y
);
5468 if ( event
.Dragging() )
5472 m_isDragging
= true;
5473 m_colLabelWin
->CaptureMouse();
5475 if ( m_cursorMode
== WXGRID_CURSOR_MOVE_COL
)
5476 m_dragRowOrCol
= XToCol( x
);
5479 if ( event
.LeftIsDown() )
5481 switch ( m_cursorMode
)
5483 case WXGRID_CURSOR_RESIZE_COL
:
5485 int cw
, ch
, dummy
, top
;
5486 m_gridWin
->GetClientSize( &cw
, &ch
);
5487 CalcUnscrolledPosition( 0, 0, &dummy
, &top
);
5489 wxClientDC
dc( m_gridWin
);
5492 x
= wxMax( x
, GetColLeft(m_dragRowOrCol
) +
5493 GetColMinimalWidth(m_dragRowOrCol
));
5494 dc
.SetLogicalFunction(wxINVERT
);
5495 if ( m_dragLastPos
>= 0 )
5497 dc
.DrawLine( m_dragLastPos
, top
, m_dragLastPos
, top
+ ch
);
5499 dc
.DrawLine( x
, top
, x
, top
+ ch
);
5504 case WXGRID_CURSOR_SELECT_COL
:
5506 if ( (col
= XToCol( x
)) >= 0 )
5510 m_selection
->SelectCol( col
,
5511 event
.ControlDown(),
5520 case WXGRID_CURSOR_MOVE_COL
:
5523 m_moveToCol
= GetColAt( 0 );
5525 m_moveToCol
= XToCol( x
);
5529 if ( m_moveToCol
< 0 )
5530 markerX
= GetColRight( GetColAt( m_numCols
- 1 ) );
5532 markerX
= GetColLeft( m_moveToCol
);
5534 if ( markerX
!= m_dragLastPos
)
5536 wxClientDC
dc( m_colLabelWin
);
5539 m_colLabelWin
->GetClientSize( &cw
, &ch
);
5543 //Clean up the last indicator
5544 if ( m_dragLastPos
>= 0 )
5546 wxPen
pen( m_colLabelWin
->GetBackgroundColour(), 2 );
5548 dc
.DrawLine( m_dragLastPos
+ 1, 0, m_dragLastPos
+ 1, ch
);
5549 dc
.SetPen(wxNullPen
);
5551 if ( XToCol( m_dragLastPos
) != -1 )
5552 DrawColLabel( dc
, XToCol( m_dragLastPos
) );
5555 //Moving to the same place? Don't draw a marker
5556 if ( (m_moveToCol
== m_dragRowOrCol
)
5557 || (GetColPos( m_moveToCol
) == GetColPos( m_dragRowOrCol
) + 1)
5558 || (m_moveToCol
< 0 && m_dragRowOrCol
== GetColAt( m_numCols
- 1 )))
5565 wxPen
pen( *wxBLUE
, 2 );
5568 dc
.DrawLine( markerX
, 0, markerX
, ch
);
5570 dc
.SetPen(wxNullPen
);
5572 m_dragLastPos
= markerX
- 1;
5577 // default label to suppress warnings about "enumeration value
5578 // 'xxx' not handled in switch
5586 if ( m_isDragging
&& (event
.Entering() || event
.Leaving()) )
5591 if (m_colLabelWin
->HasCapture())
5592 m_colLabelWin
->ReleaseMouse();
5593 m_isDragging
= false;
5596 // ------------ Entering or leaving the window
5598 if ( event
.Entering() || event
.Leaving() )
5600 ChangeCursorMode(WXGRID_CURSOR_SELECT_CELL
, m_colLabelWin
);
5603 // ------------ Left button pressed
5605 else if ( event
.LeftDown() )
5607 // don't send a label click event for a hit on the
5608 // edge of the col label - this is probably the user
5609 // wanting to resize the col
5611 if ( XToEdgeOfCol(x
) < 0 )
5615 !SendEvent( wxEVT_GRID_LABEL_LEFT_CLICK
, -1, col
, event
) )
5617 if ( m_canDragColMove
)
5619 //Show button as pressed
5620 wxClientDC
dc( m_colLabelWin
);
5621 int colLeft
= GetColLeft( col
);
5622 int colRight
= GetColRight( col
) - 1;
5623 dc
.SetPen( wxPen( m_colLabelWin
->GetBackgroundColour(), 1 ) );
5624 dc
.DrawLine( colLeft
, 1, colLeft
, m_colLabelHeight
-1 );
5625 dc
.DrawLine( colLeft
, 1, colRight
, 1 );
5627 ChangeCursorMode(WXGRID_CURSOR_MOVE_COL
, m_colLabelWin
);
5631 if ( !event
.ShiftDown() && !event
.CmdDown() )
5635 if ( event
.ShiftDown() )
5637 m_selection
->SelectBlock( 0,
5638 m_currentCellCoords
.GetCol(),
5639 GetNumberRows() - 1, col
,
5640 event
.ControlDown(),
5647 m_selection
->SelectCol( col
,
5648 event
.ControlDown(),
5655 ChangeCursorMode(WXGRID_CURSOR_SELECT_COL
, m_colLabelWin
);
5661 // starting to drag-resize a col
5663 if ( CanDragColSize() )
5664 ChangeCursorMode(WXGRID_CURSOR_RESIZE_COL
, m_colLabelWin
);
5668 // ------------ Left double click
5670 if ( event
.LeftDClick() )
5672 col
= XToEdgeOfCol(x
);
5677 ! SendEvent( wxEVT_GRID_LABEL_LEFT_DCLICK
, -1, col
, event
) )
5679 // no default action at the moment
5684 // adjust column width depending on label text
5685 AutoSizeColLabelSize( col
);
5687 ChangeCursorMode(WXGRID_CURSOR_SELECT_CELL
, m_colLabelWin
);
5692 // ------------ Left button released
5694 else if ( event
.LeftUp() )
5696 switch ( m_cursorMode
)
5698 case WXGRID_CURSOR_RESIZE_COL
:
5699 DoEndDragResizeCol();
5701 // Note: we are ending the event *after* doing
5702 // default processing in this case
5704 SendEvent( wxEVT_GRID_COL_SIZE
, -1, m_dragRowOrCol
, event
);
5707 case WXGRID_CURSOR_MOVE_COL
:
5710 SendEvent( wxEVT_GRID_COL_MOVE
, -1, m_dragRowOrCol
, event
);
5713 case WXGRID_CURSOR_SELECT_COL
:
5714 case WXGRID_CURSOR_SELECT_CELL
:
5715 case WXGRID_CURSOR_RESIZE_ROW
:
5716 case WXGRID_CURSOR_SELECT_ROW
:
5717 // nothing to do (?)
5721 ChangeCursorMode(WXGRID_CURSOR_SELECT_CELL
, m_colLabelWin
);
5725 // ------------ Right button down
5727 else if ( event
.RightDown() )
5731 !SendEvent( wxEVT_GRID_LABEL_RIGHT_CLICK
, -1, col
, event
) )
5733 // no default action at the moment
5737 // ------------ Right double click
5739 else if ( event
.RightDClick() )
5743 !SendEvent( wxEVT_GRID_LABEL_RIGHT_DCLICK
, -1, col
, event
) )
5745 // no default action at the moment
5749 // ------------ No buttons down and mouse moving
5751 else if ( event
.Moving() )
5753 m_dragRowOrCol
= XToEdgeOfCol( x
);
5754 if ( m_dragRowOrCol
>= 0 )
5756 if ( m_cursorMode
== WXGRID_CURSOR_SELECT_CELL
)
5758 // don't capture the cursor yet
5759 if ( CanDragColSize() )
5760 ChangeCursorMode(WXGRID_CURSOR_RESIZE_COL
, m_colLabelWin
, false);
5763 else if ( m_cursorMode
!= WXGRID_CURSOR_SELECT_CELL
)
5765 ChangeCursorMode(WXGRID_CURSOR_SELECT_CELL
, m_colLabelWin
, false);
5770 void wxGrid::ProcessCornerLabelMouseEvent( wxMouseEvent
& event
)
5772 if ( event
.LeftDown() )
5774 // indicate corner label by having both row and
5777 if ( !SendEvent( wxEVT_GRID_LABEL_LEFT_CLICK
, -1, -1, event
) )
5782 else if ( event
.LeftDClick() )
5784 SendEvent( wxEVT_GRID_LABEL_LEFT_DCLICK
, -1, -1, event
);
5786 else if ( event
.RightDown() )
5788 if ( !SendEvent( wxEVT_GRID_LABEL_RIGHT_CLICK
, -1, -1, event
) )
5790 // no default action at the moment
5793 else if ( event
.RightDClick() )
5795 if ( !SendEvent( wxEVT_GRID_LABEL_RIGHT_DCLICK
, -1, -1, event
) )
5797 // no default action at the moment
5802 void wxGrid::CancelMouseCapture()
5804 // cancel operation currently in progress, whatever it is
5807 m_isDragging
= false;
5808 m_cursorMode
= WXGRID_CURSOR_SELECT_CELL
;
5809 m_winCapture
->SetCursor( *wxSTANDARD_CURSOR
);
5810 m_winCapture
= NULL
;
5812 // remove traces of whatever we drew on screen
5817 void wxGrid::ChangeCursorMode(CursorMode mode
,
5822 static const wxChar
*cursorModes
[] =
5832 wxLogTrace(_T("grid"),
5833 _T("wxGrid cursor mode (mouse capture for %s): %s -> %s"),
5834 win
== m_colLabelWin
? _T("colLabelWin")
5835 : win
? _T("rowLabelWin")
5837 cursorModes
[m_cursorMode
], cursorModes
[mode
]);
5840 if ( mode
== m_cursorMode
&&
5841 win
== m_winCapture
&&
5842 captureMouse
== (m_winCapture
!= NULL
))
5847 // by default use the grid itself
5853 if (m_winCapture
->HasCapture())
5854 m_winCapture
->ReleaseMouse();
5855 m_winCapture
= (wxWindow
*)NULL
;
5858 m_cursorMode
= mode
;
5860 switch ( m_cursorMode
)
5862 case WXGRID_CURSOR_RESIZE_ROW
:
5863 win
->SetCursor( m_rowResizeCursor
);
5866 case WXGRID_CURSOR_RESIZE_COL
:
5867 win
->SetCursor( m_colResizeCursor
);
5870 case WXGRID_CURSOR_MOVE_COL
:
5871 win
->SetCursor( wxCursor(wxCURSOR_HAND
) );
5875 win
->SetCursor( *wxSTANDARD_CURSOR
);
5879 // we need to capture mouse when resizing
5880 bool resize
= m_cursorMode
== WXGRID_CURSOR_RESIZE_ROW
||
5881 m_cursorMode
== WXGRID_CURSOR_RESIZE_COL
;
5883 if ( captureMouse
&& resize
)
5885 win
->CaptureMouse();
5890 void wxGrid::ProcessGridCellMouseEvent( wxMouseEvent
& event
)
5893 wxPoint
pos( event
.GetPosition() );
5894 CalcUnscrolledPosition( pos
.x
, pos
.y
, &x
, &y
);
5896 wxGridCellCoords coords
;
5897 XYToCell( x
, y
, coords
);
5899 int cell_rows
, cell_cols
;
5900 bool isFirstDrag
= !m_isDragging
;
5901 GetCellSize( coords
.GetRow(), coords
.GetCol(), &cell_rows
, &cell_cols
);
5902 if ((cell_rows
< 0) || (cell_cols
< 0))
5904 coords
.SetRow(coords
.GetRow() + cell_rows
);
5905 coords
.SetCol(coords
.GetCol() + cell_cols
);
5908 if ( event
.Dragging() )
5910 //wxLogDebug("pos(%d, %d) coords(%d, %d)", pos.x, pos.y, coords.GetRow(), coords.GetCol());
5912 // Don't start doing anything until the mouse has been dragged at
5913 // least 3 pixels in any direction...
5916 if (m_startDragPos
== wxDefaultPosition
)
5918 m_startDragPos
= pos
;
5921 if (abs(m_startDragPos
.x
- pos
.x
) < 4 && abs(m_startDragPos
.y
- pos
.y
) < 4)
5925 m_isDragging
= true;
5926 if ( m_cursorMode
== WXGRID_CURSOR_SELECT_CELL
)
5928 // Hide the edit control, so it
5929 // won't interfere with drag-shrinking.
5930 if ( IsCellEditControlShown() )
5932 HideCellEditControl();
5933 SaveEditControlValue();
5936 if ( coords
!= wxGridNoCellCoords
)
5938 if ( event
.CmdDown() )
5940 if ( m_selectingKeyboard
== wxGridNoCellCoords
)
5941 m_selectingKeyboard
= coords
;
5942 HighlightBlock( m_selectingKeyboard
, coords
);
5944 else if ( CanDragCell() )
5948 if ( m_selectingKeyboard
== wxGridNoCellCoords
)
5949 m_selectingKeyboard
= coords
;
5951 SendEvent( wxEVT_GRID_CELL_BEGIN_DRAG
,
5960 if ( !IsSelection() )
5962 HighlightBlock( coords
, coords
);
5966 HighlightBlock( m_currentCellCoords
, coords
);
5970 if (! IsVisible(coords
))
5972 MakeCellVisible(coords
);
5973 // TODO: need to introduce a delay or something here. The
5974 // scrolling is way to fast, at least on MSW - also on GTK.
5977 // Have we captured the mouse yet?
5980 m_winCapture
= m_gridWin
;
5981 m_winCapture
->CaptureMouse();
5986 else if ( m_cursorMode
== WXGRID_CURSOR_RESIZE_ROW
)
5988 int cw
, ch
, left
, dummy
;
5989 m_gridWin
->GetClientSize( &cw
, &ch
);
5990 CalcUnscrolledPosition( 0, 0, &left
, &dummy
);
5992 wxClientDC
dc( m_gridWin
);
5994 y
= wxMax( y
, GetRowTop(m_dragRowOrCol
) +
5995 GetRowMinimalHeight(m_dragRowOrCol
) );
5996 dc
.SetLogicalFunction(wxINVERT
);
5997 if ( m_dragLastPos
>= 0 )
5999 dc
.DrawLine( left
, m_dragLastPos
, left
+cw
, m_dragLastPos
);
6001 dc
.DrawLine( left
, y
, left
+cw
, y
);
6004 else if ( m_cursorMode
== WXGRID_CURSOR_RESIZE_COL
)
6006 int cw
, ch
, dummy
, top
;
6007 m_gridWin
->GetClientSize( &cw
, &ch
);
6008 CalcUnscrolledPosition( 0, 0, &dummy
, &top
);
6010 wxClientDC
dc( m_gridWin
);
6012 x
= wxMax( x
, GetColLeft(m_dragRowOrCol
) +
6013 GetColMinimalWidth(m_dragRowOrCol
) );
6014 dc
.SetLogicalFunction(wxINVERT
);
6015 if ( m_dragLastPos
>= 0 )
6017 dc
.DrawLine( m_dragLastPos
, top
, m_dragLastPos
, top
+ ch
);
6019 dc
.DrawLine( x
, top
, x
, top
+ ch
);
6026 m_isDragging
= false;
6027 m_startDragPos
= wxDefaultPosition
;
6029 // VZ: if we do this, the mode is reset to WXGRID_CURSOR_SELECT_CELL
6030 // immediately after it becomes WXGRID_CURSOR_RESIZE_ROW/COL under
6033 if ( event
.Entering() || event
.Leaving() )
6035 ChangeCursorMode(WXGRID_CURSOR_SELECT_CELL
);
6036 m_gridWin
->SetCursor( *wxSTANDARD_CURSOR
);
6041 // ------------ Left button pressed
6043 if ( event
.LeftDown() && coords
!= wxGridNoCellCoords
)
6045 if ( !SendEvent( wxEVT_GRID_CELL_LEFT_CLICK
,
6050 if ( !event
.CmdDown() )
6052 if ( event
.ShiftDown() )
6056 m_selection
->SelectBlock( m_currentCellCoords
.GetRow(),
6057 m_currentCellCoords
.GetCol(),
6060 event
.ControlDown(),
6066 else if ( XToEdgeOfCol(x
) < 0 &&
6067 YToEdgeOfRow(y
) < 0 )
6069 DisableCellEditControl();
6070 MakeCellVisible( coords
);
6072 if ( event
.CmdDown() )
6076 m_selection
->ToggleCellSelection( coords
.GetRow(),
6078 event
.ControlDown(),
6083 m_selectingTopLeft
= wxGridNoCellCoords
;
6084 m_selectingBottomRight
= wxGridNoCellCoords
;
6085 m_selectingKeyboard
= coords
;
6089 m_waitForSlowClick
= m_currentCellCoords
== coords
&& coords
!= wxGridNoCellCoords
;
6090 SetCurrentCell( coords
);
6093 if ( m_selection
->GetSelectionMode() !=
6094 wxGrid::wxGridSelectCells
)
6096 HighlightBlock( coords
, coords
);
6104 // ------------ Left double click
6106 else if ( event
.LeftDClick() && coords
!= wxGridNoCellCoords
)
6108 DisableCellEditControl();
6110 if ( XToEdgeOfCol(x
) < 0 && YToEdgeOfRow(y
) < 0 )
6112 if ( !SendEvent( wxEVT_GRID_CELL_LEFT_DCLICK
,
6117 // we want double click to select a cell and start editing
6118 // (i.e. to behave in same way as sequence of two slow clicks):
6119 m_waitForSlowClick
= true;
6124 // ------------ Left button released
6126 else if ( event
.LeftUp() )
6128 if ( m_cursorMode
== WXGRID_CURSOR_SELECT_CELL
)
6132 if (m_winCapture
->HasCapture())
6133 m_winCapture
->ReleaseMouse();
6134 m_winCapture
= NULL
;
6137 if ( coords
== m_currentCellCoords
&& m_waitForSlowClick
&& CanEnableCellControl() )
6140 EnableCellEditControl();
6142 wxGridCellAttr
*attr
= GetCellAttr(coords
);
6143 wxGridCellEditor
*editor
= attr
->GetEditor(this, coords
.GetRow(), coords
.GetCol());
6144 editor
->StartingClick();
6148 m_waitForSlowClick
= false;
6150 else if ( m_selectingTopLeft
!= wxGridNoCellCoords
&&
6151 m_selectingBottomRight
!= wxGridNoCellCoords
)
6155 m_selection
->SelectBlock( m_selectingTopLeft
.GetRow(),
6156 m_selectingTopLeft
.GetCol(),
6157 m_selectingBottomRight
.GetRow(),
6158 m_selectingBottomRight
.GetCol(),
6159 event
.ControlDown(),
6165 m_selectingTopLeft
= wxGridNoCellCoords
;
6166 m_selectingBottomRight
= wxGridNoCellCoords
;
6168 // Show the edit control, if it has been hidden for
6170 ShowCellEditControl();
6173 else if ( m_cursorMode
== WXGRID_CURSOR_RESIZE_ROW
)
6175 ChangeCursorMode(WXGRID_CURSOR_SELECT_CELL
);
6176 DoEndDragResizeRow();
6178 // Note: we are ending the event *after* doing
6179 // default processing in this case
6181 SendEvent( wxEVT_GRID_ROW_SIZE
, m_dragRowOrCol
, -1, event
);
6183 else if ( m_cursorMode
== WXGRID_CURSOR_RESIZE_COL
)
6185 ChangeCursorMode(WXGRID_CURSOR_SELECT_CELL
);
6186 DoEndDragResizeCol();
6188 // Note: we are ending the event *after* doing
6189 // default processing in this case
6191 SendEvent( wxEVT_GRID_COL_SIZE
, -1, m_dragRowOrCol
, event
);
6197 // ------------ Right button down
6199 else if ( event
.RightDown() && coords
!= wxGridNoCellCoords
)
6201 DisableCellEditControl();
6202 if ( !SendEvent( wxEVT_GRID_CELL_RIGHT_CLICK
,
6207 // no default action at the moment
6211 // ------------ Right double click
6213 else if ( event
.RightDClick() && coords
!= wxGridNoCellCoords
)
6215 DisableCellEditControl();
6216 if ( !SendEvent( wxEVT_GRID_CELL_RIGHT_DCLICK
,
6221 // no default action at the moment
6225 // ------------ Moving and no button action
6227 else if ( event
.Moving() && !event
.IsButton() )
6229 if ( coords
.GetRow() < 0 || coords
.GetCol() < 0 )
6231 // out of grid cell area
6232 ChangeCursorMode(WXGRID_CURSOR_SELECT_CELL
);
6236 int dragRow
= YToEdgeOfRow( y
);
6237 int dragCol
= XToEdgeOfCol( x
);
6239 // Dragging on the corner of a cell to resize in both
6240 // directions is not implemented yet...
6242 if ( dragRow
>= 0 && dragCol
>= 0 )
6244 ChangeCursorMode(WXGRID_CURSOR_SELECT_CELL
);
6250 m_dragRowOrCol
= dragRow
;
6252 if ( m_cursorMode
== WXGRID_CURSOR_SELECT_CELL
)
6254 if ( CanDragRowSize() && CanDragGridSize() )
6255 ChangeCursorMode(WXGRID_CURSOR_RESIZE_ROW
, NULL
, false);
6258 else if ( dragCol
>= 0 )
6260 m_dragRowOrCol
= dragCol
;
6262 if ( m_cursorMode
== WXGRID_CURSOR_SELECT_CELL
)
6264 if ( CanDragColSize() && CanDragGridSize() )
6265 ChangeCursorMode(WXGRID_CURSOR_RESIZE_COL
, NULL
, false);
6268 else // Neither on a row or col edge
6270 if ( m_cursorMode
!= WXGRID_CURSOR_SELECT_CELL
)
6272 ChangeCursorMode(WXGRID_CURSOR_SELECT_CELL
);
6278 void wxGrid::DoEndDragResizeRow()
6280 if ( m_dragLastPos
>= 0 )
6282 // erase the last line and resize the row
6284 int cw
, ch
, left
, dummy
;
6285 m_gridWin
->GetClientSize( &cw
, &ch
);
6286 CalcUnscrolledPosition( 0, 0, &left
, &dummy
);
6288 wxClientDC
dc( m_gridWin
);
6290 dc
.SetLogicalFunction( wxINVERT
);
6291 dc
.DrawLine( left
, m_dragLastPos
, left
+ cw
, m_dragLastPos
);
6292 HideCellEditControl();
6293 SaveEditControlValue();
6295 int rowTop
= GetRowTop(m_dragRowOrCol
);
6296 SetRowSize( m_dragRowOrCol
,
6297 wxMax( m_dragLastPos
- rowTop
, m_minAcceptableRowHeight
) );
6299 if ( !GetBatchCount() )
6301 // Only needed to get the correct rect.y:
6302 wxRect
rect ( CellToRect( m_dragRowOrCol
, 0 ) );
6304 CalcScrolledPosition(0, rect
.y
, &dummy
, &rect
.y
);
6305 rect
.width
= m_rowLabelWidth
;
6306 rect
.height
= ch
- rect
.y
;
6307 m_rowLabelWin
->Refresh( true, &rect
);
6310 // if there is a multicell block, paint all of it
6313 int i
, cell_rows
, cell_cols
, subtract_rows
= 0;
6314 int leftCol
= XToCol(left
);
6315 int rightCol
= internalXToCol(left
+ cw
);
6318 for (i
=leftCol
; i
<rightCol
; i
++)
6320 GetCellSize(m_dragRowOrCol
, i
, &cell_rows
, &cell_cols
);
6321 if (cell_rows
< subtract_rows
)
6322 subtract_rows
= cell_rows
;
6324 rect
.y
= GetRowTop(m_dragRowOrCol
+ subtract_rows
);
6325 CalcScrolledPosition(0, rect
.y
, &dummy
, &rect
.y
);
6326 rect
.height
= ch
- rect
.y
;
6329 m_gridWin
->Refresh( false, &rect
);
6332 ShowCellEditControl();
6337 void wxGrid::DoEndDragResizeCol()
6339 if ( m_dragLastPos
>= 0 )
6341 // erase the last line and resize the col
6343 int cw
, ch
, dummy
, top
;
6344 m_gridWin
->GetClientSize( &cw
, &ch
);
6345 CalcUnscrolledPosition( 0, 0, &dummy
, &top
);
6347 wxClientDC
dc( m_gridWin
);
6349 dc
.SetLogicalFunction( wxINVERT
);
6350 dc
.DrawLine( m_dragLastPos
, top
, m_dragLastPos
, top
+ ch
);
6351 HideCellEditControl();
6352 SaveEditControlValue();
6354 int colLeft
= GetColLeft(m_dragRowOrCol
);
6355 SetColSize( m_dragRowOrCol
,
6356 wxMax( m_dragLastPos
- colLeft
,
6357 GetColMinimalWidth(m_dragRowOrCol
) ) );
6359 if ( !GetBatchCount() )
6361 // Only needed to get the correct rect.x:
6362 wxRect
rect ( CellToRect( 0, m_dragRowOrCol
) );
6364 CalcScrolledPosition(rect
.x
, 0, &rect
.x
, &dummy
);
6365 rect
.width
= cw
- rect
.x
;
6366 rect
.height
= m_colLabelHeight
;
6367 m_colLabelWin
->Refresh( true, &rect
);
6370 // if there is a multicell block, paint all of it
6373 int i
, cell_rows
, cell_cols
, subtract_cols
= 0;
6374 int topRow
= YToRow(top
);
6375 int bottomRow
= internalYToRow(top
+ cw
);
6378 for (i
=topRow
; i
<bottomRow
; i
++)
6380 GetCellSize(i
, m_dragRowOrCol
, &cell_rows
, &cell_cols
);
6381 if (cell_cols
< subtract_cols
)
6382 subtract_cols
= cell_cols
;
6385 rect
.x
= GetColLeft(m_dragRowOrCol
+ subtract_cols
);
6386 CalcScrolledPosition(rect
.x
, 0, &rect
.x
, &dummy
);
6387 rect
.width
= cw
- rect
.x
;
6391 m_gridWin
->Refresh( false, &rect
);
6394 ShowCellEditControl();
6398 void wxGrid::DoEndDragMoveCol()
6400 //The user clicked on the column but didn't actually drag
6401 if ( m_dragLastPos
< 0 )
6403 m_colLabelWin
->Refresh(); //Do this to "unpress" the column
6408 if ( m_moveToCol
== -1 )
6409 newPos
= m_numCols
- 1;
6412 newPos
= GetColPos( m_moveToCol
);
6413 if ( newPos
> GetColPos( m_dragRowOrCol
) )
6417 SetColPos( m_dragRowOrCol
, newPos
);
6420 void wxGrid::SetColPos( int colID
, int newPos
)
6422 if ( m_colAt
.IsEmpty() )
6424 m_colAt
.Alloc( m_numCols
);
6427 for ( i
= 0; i
< m_numCols
; i
++ )
6433 int oldPos
= GetColPos( colID
);
6435 //Reshuffle the m_colAt array
6436 if ( newPos
> oldPos
)
6439 for ( i
= oldPos
; i
< newPos
; i
++ )
6441 m_colAt
[i
] = m_colAt
[i
+1];
6447 for ( i
= oldPos
; i
> newPos
; i
-- )
6449 m_colAt
[i
] = m_colAt
[i
-1];
6453 m_colAt
[newPos
] = colID
;
6455 //Recalculate the column rights
6456 if ( !m_colWidths
.IsEmpty() )
6460 for ( colPos
= 0; colPos
< m_numCols
; colPos
++ )
6462 int colID
= GetColAt( colPos
);
6464 colRight
+= m_colWidths
[colID
];
6465 m_colRights
[colID
] = colRight
;
6469 m_colLabelWin
->Refresh();
6470 m_gridWin
->Refresh();
6475 void wxGrid::EnableDragColMove( bool enable
)
6477 if ( m_canDragColMove
== enable
)
6480 m_canDragColMove
= enable
;
6482 if ( !m_canDragColMove
)
6486 //Recalculate the column rights
6487 if ( !m_colWidths
.IsEmpty() )
6491 for ( colPos
= 0; colPos
< m_numCols
; colPos
++ )
6493 colRight
+= m_colWidths
[colPos
];
6494 m_colRights
[colPos
] = colRight
;
6498 m_colLabelWin
->Refresh();
6499 m_gridWin
->Refresh();
6505 // ------ interaction with data model
6507 bool wxGrid::ProcessTableMessage( wxGridTableMessage
& msg
)
6509 switch ( msg
.GetId() )
6511 case wxGRIDTABLE_REQUEST_VIEW_GET_VALUES
:
6512 return GetModelValues();
6514 case wxGRIDTABLE_REQUEST_VIEW_SEND_VALUES
:
6515 return SetModelValues();
6517 case wxGRIDTABLE_NOTIFY_ROWS_INSERTED
:
6518 case wxGRIDTABLE_NOTIFY_ROWS_APPENDED
:
6519 case wxGRIDTABLE_NOTIFY_ROWS_DELETED
:
6520 case wxGRIDTABLE_NOTIFY_COLS_INSERTED
:
6521 case wxGRIDTABLE_NOTIFY_COLS_APPENDED
:
6522 case wxGRIDTABLE_NOTIFY_COLS_DELETED
:
6523 return Redimension( msg
);
6530 // The behaviour of this function depends on the grid table class
6531 // Clear() function. For the default wxGridStringTable class the
6532 // behavious is to replace all cell contents with wxEmptyString but
6533 // not to change the number of rows or cols.
6535 void wxGrid::ClearGrid()
6539 if (IsCellEditControlEnabled())
6540 DisableCellEditControl();
6543 if (!GetBatchCount())
6544 m_gridWin
->Refresh();
6548 bool wxGrid::InsertRows( int pos
, int numRows
, bool WXUNUSED(updateLabels
) )
6550 // TODO: something with updateLabels flag
6554 wxFAIL_MSG( wxT("Called wxGrid::InsertRows() before calling CreateGrid()") );
6560 if (IsCellEditControlEnabled())
6561 DisableCellEditControl();
6563 bool done
= m_table
->InsertRows( pos
, numRows
);
6566 // the table will have sent the results of the insert row
6567 // operation to this view object as a grid table message
6573 bool wxGrid::AppendRows( int numRows
, bool WXUNUSED(updateLabels
) )
6575 // TODO: something with updateLabels flag
6579 wxFAIL_MSG( wxT("Called wxGrid::AppendRows() before calling CreateGrid()") );
6585 bool done
= m_table
&& m_table
->AppendRows( numRows
);
6588 // the table will have sent the results of the append row
6589 // operation to this view object as a grid table message
6595 bool wxGrid::DeleteRows( int pos
, int numRows
, bool WXUNUSED(updateLabels
) )
6597 // TODO: something with updateLabels flag
6601 wxFAIL_MSG( wxT("Called wxGrid::DeleteRows() before calling CreateGrid()") );
6607 if (IsCellEditControlEnabled())
6608 DisableCellEditControl();
6610 bool done
= m_table
->DeleteRows( pos
, numRows
);
6612 // the table will have sent the results of the delete row
6613 // operation to this view object as a grid table message
6619 bool wxGrid::InsertCols( int pos
, int numCols
, bool WXUNUSED(updateLabels
) )
6621 // TODO: something with updateLabels flag
6625 wxFAIL_MSG( wxT("Called wxGrid::InsertCols() before calling CreateGrid()") );
6631 if (IsCellEditControlEnabled())
6632 DisableCellEditControl();
6634 bool done
= m_table
->InsertCols( pos
, numCols
);
6636 // the table will have sent the results of the insert col
6637 // operation to this view object as a grid table message
6643 bool wxGrid::AppendCols( int numCols
, bool WXUNUSED(updateLabels
) )
6645 // TODO: something with updateLabels flag
6649 wxFAIL_MSG( wxT("Called wxGrid::AppendCols() before calling CreateGrid()") );
6655 bool done
= m_table
->AppendCols( numCols
);
6657 // the table will have sent the results of the append col
6658 // operation to this view object as a grid table message
6664 bool wxGrid::DeleteCols( int pos
, int numCols
, bool WXUNUSED(updateLabels
) )
6666 // TODO: something with updateLabels flag
6670 wxFAIL_MSG( wxT("Called wxGrid::DeleteCols() before calling CreateGrid()") );
6676 if (IsCellEditControlEnabled())
6677 DisableCellEditControl();
6679 bool done
= m_table
->DeleteCols( pos
, numCols
);
6681 // the table will have sent the results of the delete col
6682 // operation to this view object as a grid table message
6689 // ----- event handlers
6692 // Generate a grid event based on a mouse event and
6693 // return the result of ProcessEvent()
6695 int wxGrid::SendEvent( const wxEventType type
,
6697 wxMouseEvent
& mouseEv
)
6699 bool claimed
, vetoed
;
6701 if ( type
== wxEVT_GRID_ROW_SIZE
|| type
== wxEVT_GRID_COL_SIZE
)
6703 int rowOrCol
= (row
== -1 ? col
: row
);
6705 wxGridSizeEvent
gridEvt( GetId(),
6709 mouseEv
.GetX() + GetRowLabelSize(),
6710 mouseEv
.GetY() + GetColLabelSize(),
6711 mouseEv
.ControlDown(),
6712 mouseEv
.ShiftDown(),
6714 mouseEv
.MetaDown() );
6716 claimed
= GetEventHandler()->ProcessEvent(gridEvt
);
6717 vetoed
= !gridEvt
.IsAllowed();
6719 else if ( type
== wxEVT_GRID_RANGE_SELECT
)
6721 // Right now, it should _never_ end up here!
6722 wxGridRangeSelectEvent
gridEvt( GetId(),
6726 m_selectingBottomRight
,
6728 mouseEv
.ControlDown(),
6729 mouseEv
.ShiftDown(),
6731 mouseEv
.MetaDown() );
6733 claimed
= GetEventHandler()->ProcessEvent(gridEvt
);
6734 vetoed
= !gridEvt
.IsAllowed();
6736 else if ( type
== wxEVT_GRID_LABEL_LEFT_CLICK
||
6737 type
== wxEVT_GRID_LABEL_LEFT_DCLICK
||
6738 type
== wxEVT_GRID_LABEL_RIGHT_CLICK
||
6739 type
== wxEVT_GRID_LABEL_RIGHT_DCLICK
)
6741 wxPoint pos
= mouseEv
.GetPosition();
6743 if ( mouseEv
.GetEventObject() == GetGridRowLabelWindow() )
6744 pos
.y
+= GetColLabelSize();
6745 if ( mouseEv
.GetEventObject() == GetGridColLabelWindow() )
6746 pos
.x
+= GetRowLabelSize();
6748 wxGridEvent
gridEvt( GetId(),
6755 mouseEv
.ControlDown(),
6756 mouseEv
.ShiftDown(),
6758 mouseEv
.MetaDown() );
6759 claimed
= GetEventHandler()->ProcessEvent(gridEvt
);
6760 vetoed
= !gridEvt
.IsAllowed();
6764 wxGridEvent
gridEvt( GetId(),
6768 mouseEv
.GetX() + GetRowLabelSize(),
6769 mouseEv
.GetY() + GetColLabelSize(),
6771 mouseEv
.ControlDown(),
6772 mouseEv
.ShiftDown(),
6774 mouseEv
.MetaDown() );
6775 claimed
= GetEventHandler()->ProcessEvent(gridEvt
);
6776 vetoed
= !gridEvt
.IsAllowed();
6779 // A Veto'd event may not be `claimed' so test this first
6783 return claimed
? 1 : 0;
6786 // Generate a grid event of specified type and return the result
6787 // of ProcessEvent().
6789 int wxGrid::SendEvent( const wxEventType type
,
6792 bool claimed
, vetoed
;
6794 if ( type
== wxEVT_GRID_ROW_SIZE
|| type
== wxEVT_GRID_COL_SIZE
)
6796 int rowOrCol
= (row
== -1 ? col
: row
);
6798 wxGridSizeEvent
gridEvt( GetId(), type
, this, rowOrCol
);
6800 claimed
= GetEventHandler()->ProcessEvent(gridEvt
);
6801 vetoed
= !gridEvt
.IsAllowed();
6805 wxGridEvent
gridEvt( GetId(), type
, this, row
, col
);
6807 claimed
= GetEventHandler()->ProcessEvent(gridEvt
);
6808 vetoed
= !gridEvt
.IsAllowed();
6811 // A Veto'd event may not be `claimed' so test this first
6815 return claimed
? 1 : 0;
6818 void wxGrid::OnPaint( wxPaintEvent
& WXUNUSED(event
) )
6820 // needed to prevent zillions of paint events on MSW
6824 void wxGrid::Refresh(bool eraseb
, const wxRect
* rect
)
6826 // Don't do anything if between Begin/EndBatch...
6827 // EndBatch() will do all this on the last nested one anyway.
6828 if ( m_created
&& !GetBatchCount() )
6830 // Refresh to get correct scrolled position:
6831 wxScrolledWindow::Refresh(eraseb
, rect
);
6835 int rect_x
, rect_y
, rectWidth
, rectHeight
;
6836 int width_label
, width_cell
, height_label
, height_cell
;
6839 // Copy rectangle can get scroll offsets..
6840 rect_x
= rect
->GetX();
6841 rect_y
= rect
->GetY();
6842 rectWidth
= rect
->GetWidth();
6843 rectHeight
= rect
->GetHeight();
6845 width_label
= m_rowLabelWidth
- rect_x
;
6846 if (width_label
> rectWidth
)
6847 width_label
= rectWidth
;
6849 height_label
= m_colLabelHeight
- rect_y
;
6850 if (height_label
> rectHeight
)
6851 height_label
= rectHeight
;
6853 if (rect_x
> m_rowLabelWidth
)
6855 x
= rect_x
- m_rowLabelWidth
;
6856 width_cell
= rectWidth
;
6861 width_cell
= rectWidth
- (m_rowLabelWidth
- rect_x
);
6864 if (rect_y
> m_colLabelHeight
)
6866 y
= rect_y
- m_colLabelHeight
;
6867 height_cell
= rectHeight
;
6872 height_cell
= rectHeight
- (m_colLabelHeight
- rect_y
);
6875 // Paint corner label part intersecting rect.
6876 if ( width_label
> 0 && height_label
> 0 )
6878 wxRect
anotherrect(rect_x
, rect_y
, width_label
, height_label
);
6879 m_cornerLabelWin
->Refresh(eraseb
, &anotherrect
);
6882 // Paint col labels part intersecting rect.
6883 if ( width_cell
> 0 && height_label
> 0 )
6885 wxRect
anotherrect(x
, rect_y
, width_cell
, height_label
);
6886 m_colLabelWin
->Refresh(eraseb
, &anotherrect
);
6889 // Paint row labels part intersecting rect.
6890 if ( width_label
> 0 && height_cell
> 0 )
6892 wxRect
anotherrect(rect_x
, y
, width_label
, height_cell
);
6893 m_rowLabelWin
->Refresh(eraseb
, &anotherrect
);
6896 // Paint cell area part intersecting rect.
6897 if ( width_cell
> 0 && height_cell
> 0 )
6899 wxRect
anotherrect(x
, y
, width_cell
, height_cell
);
6900 m_gridWin
->Refresh(eraseb
, &anotherrect
);
6905 m_cornerLabelWin
->Refresh(eraseb
, NULL
);
6906 m_colLabelWin
->Refresh(eraseb
, NULL
);
6907 m_rowLabelWin
->Refresh(eraseb
, NULL
);
6908 m_gridWin
->Refresh(eraseb
, NULL
);
6913 void wxGrid::OnSize(wxSizeEvent
& WXUNUSED(event
))
6915 if (m_targetWindow
!= this) // check whether initialisation has been done
6917 // update our children window positions and scrollbars
6922 void wxGrid::OnKeyDown( wxKeyEvent
& event
)
6924 if ( m_inOnKeyDown
)
6926 // shouldn't be here - we are going round in circles...
6928 wxFAIL_MSG( wxT("wxGrid::OnKeyDown called while already active") );
6931 m_inOnKeyDown
= true;
6933 // propagate the event up and see if it gets processed
6934 wxWindow
*parent
= GetParent();
6935 wxKeyEvent
keyEvt( event
);
6936 keyEvt
.SetEventObject( parent
);
6938 if ( !parent
->GetEventHandler()->ProcessEvent( keyEvt
) )
6940 if (GetLayoutDirection() == wxLayout_RightToLeft
)
6942 if (event
.GetKeyCode() == WXK_RIGHT
)
6943 event
.m_keyCode
= WXK_LEFT
;
6944 else if (event
.GetKeyCode() == WXK_LEFT
)
6945 event
.m_keyCode
= WXK_RIGHT
;
6948 // try local handlers
6949 switch ( event
.GetKeyCode() )
6952 if ( event
.ControlDown() )
6953 MoveCursorUpBlock( event
.ShiftDown() );
6955 MoveCursorUp( event
.ShiftDown() );
6959 if ( event
.ControlDown() )
6960 MoveCursorDownBlock( event
.ShiftDown() );
6962 MoveCursorDown( event
.ShiftDown() );
6966 if ( event
.ControlDown() )
6967 MoveCursorLeftBlock( event
.ShiftDown() );
6969 MoveCursorLeft( event
.ShiftDown() );
6973 if ( event
.ControlDown() )
6974 MoveCursorRightBlock( event
.ShiftDown() );
6976 MoveCursorRight( event
.ShiftDown() );
6980 case WXK_NUMPAD_ENTER
:
6981 if ( event
.ControlDown() )
6983 event
.Skip(); // to let the edit control have the return
6987 if ( GetGridCursorRow() < GetNumberRows()-1 )
6989 MoveCursorDown( event
.ShiftDown() );
6993 // at the bottom of a column
6994 DisableCellEditControl();
7004 if (event
.ShiftDown())
7006 if ( GetGridCursorCol() > 0 )
7008 MoveCursorLeft( false );
7013 DisableCellEditControl();
7018 if ( GetGridCursorCol() < GetNumberCols() - 1 )
7020 MoveCursorRight( false );
7025 DisableCellEditControl();
7031 if ( event
.ControlDown() )
7033 MakeCellVisible( 0, 0 );
7034 SetCurrentCell( 0, 0 );
7043 if ( event
.ControlDown() )
7045 MakeCellVisible( m_numRows
- 1, m_numCols
- 1 );
7046 SetCurrentCell( m_numRows
- 1, m_numCols
- 1 );
7063 if ( event
.ControlDown() )
7067 m_selection
->ToggleCellSelection(
7068 m_currentCellCoords
.GetRow(),
7069 m_currentCellCoords
.GetCol(),
7070 event
.ControlDown(),
7078 if ( !IsEditable() )
7079 MoveCursorRight( false );
7090 m_inOnKeyDown
= false;
7093 void wxGrid::OnKeyUp( wxKeyEvent
& event
)
7095 // try local handlers
7097 if ( event
.GetKeyCode() == WXK_SHIFT
)
7099 if ( m_selectingTopLeft
!= wxGridNoCellCoords
&&
7100 m_selectingBottomRight
!= wxGridNoCellCoords
)
7104 m_selection
->SelectBlock(
7105 m_selectingTopLeft
.GetRow(),
7106 m_selectingTopLeft
.GetCol(),
7107 m_selectingBottomRight
.GetRow(),
7108 m_selectingBottomRight
.GetCol(),
7109 event
.ControlDown(),
7116 m_selectingTopLeft
= wxGridNoCellCoords
;
7117 m_selectingBottomRight
= wxGridNoCellCoords
;
7118 m_selectingKeyboard
= wxGridNoCellCoords
;
7122 void wxGrid::OnChar( wxKeyEvent
& event
)
7124 // is it possible to edit the current cell at all?
7125 if ( !IsCellEditControlEnabled() && CanEnableCellControl() )
7127 // yes, now check whether the cells editor accepts the key
7128 int row
= m_currentCellCoords
.GetRow();
7129 int col
= m_currentCellCoords
.GetCol();
7130 wxGridCellAttr
*attr
= GetCellAttr(row
, col
);
7131 wxGridCellEditor
*editor
= attr
->GetEditor(this, row
, col
);
7133 // <F2> is special and will always start editing, for
7134 // other keys - ask the editor itself
7135 if ( (event
.GetKeyCode() == WXK_F2
&& !event
.HasModifiers())
7136 || editor
->IsAcceptedKey(event
) )
7138 // ensure cell is visble
7139 MakeCellVisible(row
, col
);
7140 EnableCellEditControl();
7142 // a problem can arise if the cell is not completely
7143 // visible (even after calling MakeCellVisible the
7144 // control is not created and calling StartingKey will
7146 if ( event
.GetKeyCode() != WXK_F2
&& editor
->IsCreated() && m_cellEditCtrlEnabled
)
7147 editor
->StartingKey(event
);
7163 void wxGrid::OnEraseBackground(wxEraseEvent
&)
7167 void wxGrid::SetCurrentCell( const wxGridCellCoords
& coords
)
7169 if ( SendEvent( wxEVT_GRID_SELECT_CELL
, coords
.GetRow(), coords
.GetCol() ) )
7171 // the event has been intercepted - do nothing
7175 #if !defined(__WXMAC__)
7176 wxClientDC
dc( m_gridWin
);
7180 if ( m_currentCellCoords
!= wxGridNoCellCoords
)
7182 DisableCellEditControl();
7184 if ( IsVisible( m_currentCellCoords
, false ) )
7187 r
= BlockToDeviceRect( m_currentCellCoords
, m_currentCellCoords
);
7188 if ( !m_gridLinesEnabled
)
7196 wxGridCellCoordsArray cells
= CalcCellsExposed( r
);
7198 // Otherwise refresh redraws the highlight!
7199 m_currentCellCoords
= coords
;
7201 #if defined(__WXMAC__)
7202 m_gridWin
->Refresh(true /*, & r */);
7204 DrawGridCellArea( dc
, cells
);
7205 DrawAllGridLines( dc
, r
);
7210 m_currentCellCoords
= coords
;
7212 wxGridCellAttr
*attr
= GetCellAttr( coords
);
7213 #if !defined(__WXMAC__)
7214 DrawCellHighlight( dc
, attr
);
7219 void wxGrid::HighlightBlock( int topRow
, int leftCol
, int bottomRow
, int rightCol
)
7222 wxGridCellCoords updateTopLeft
, updateBottomRight
;
7226 if ( m_selection
->GetSelectionMode() == wxGrid::wxGridSelectRows
)
7229 rightCol
= GetNumberCols() - 1;
7231 else if ( m_selection
->GetSelectionMode() == wxGrid::wxGridSelectColumns
)
7234 bottomRow
= GetNumberRows() - 1;
7238 if ( topRow
> bottomRow
)
7245 if ( leftCol
> rightCol
)
7252 updateTopLeft
= wxGridCellCoords( topRow
, leftCol
);
7253 updateBottomRight
= wxGridCellCoords( bottomRow
, rightCol
);
7255 // First the case that we selected a completely new area
7256 if ( m_selectingTopLeft
== wxGridNoCellCoords
||
7257 m_selectingBottomRight
== wxGridNoCellCoords
)
7260 rect
= BlockToDeviceRect( wxGridCellCoords ( topRow
, leftCol
),
7261 wxGridCellCoords ( bottomRow
, rightCol
) );
7262 m_gridWin
->Refresh( false, &rect
);
7265 // Now handle changing an existing selection area.
7266 else if ( m_selectingTopLeft
!= updateTopLeft
||
7267 m_selectingBottomRight
!= updateBottomRight
)
7269 // Compute two optimal update rectangles:
7270 // Either one rectangle is a real subset of the
7271 // other, or they are (almost) disjoint!
7273 bool need_refresh
[4];
7277 need_refresh
[3] = false;
7280 // Store intermediate values
7281 wxCoord oldLeft
= m_selectingTopLeft
.GetCol();
7282 wxCoord oldTop
= m_selectingTopLeft
.GetRow();
7283 wxCoord oldRight
= m_selectingBottomRight
.GetCol();
7284 wxCoord oldBottom
= m_selectingBottomRight
.GetRow();
7286 // Determine the outer/inner coordinates.
7287 if (oldLeft
> leftCol
)
7293 if (oldTop
> topRow
)
7299 if (oldRight
< rightCol
)
7302 oldRight
= rightCol
;
7305 if (oldBottom
< bottomRow
)
7308 oldBottom
= bottomRow
;
7312 // Now, either the stuff marked old is the outer
7313 // rectangle or we don't have a situation where one
7314 // is contained in the other.
7316 if ( oldLeft
< leftCol
)
7318 // Refresh the newly selected or deselected
7319 // area to the left of the old or new selection.
7320 need_refresh
[0] = true;
7321 rect
[0] = BlockToDeviceRect(
7322 wxGridCellCoords( oldTop
, oldLeft
),
7323 wxGridCellCoords( oldBottom
, leftCol
- 1 ) );
7326 if ( oldTop
< topRow
)
7328 // Refresh the newly selected or deselected
7329 // area above the old or new selection.
7330 need_refresh
[1] = true;
7331 rect
[1] = BlockToDeviceRect(
7332 wxGridCellCoords( oldTop
, leftCol
),
7333 wxGridCellCoords( topRow
- 1, rightCol
) );
7336 if ( oldRight
> rightCol
)
7338 // Refresh the newly selected or deselected
7339 // area to the right of the old or new selection.
7340 need_refresh
[2] = true;
7341 rect
[2] = BlockToDeviceRect(
7342 wxGridCellCoords( oldTop
, rightCol
+ 1 ),
7343 wxGridCellCoords( oldBottom
, oldRight
) );
7346 if ( oldBottom
> bottomRow
)
7348 // Refresh the newly selected or deselected
7349 // area below the old or new selection.
7350 need_refresh
[3] = true;
7351 rect
[3] = BlockToDeviceRect(
7352 wxGridCellCoords( bottomRow
+ 1, leftCol
),
7353 wxGridCellCoords( oldBottom
, rightCol
) );
7356 // various Refresh() calls
7357 for (i
= 0; i
< 4; i
++ )
7358 if ( need_refresh
[i
] && rect
[i
] != wxGridNoCellRect
)
7359 m_gridWin
->Refresh( false, &(rect
[i
]) );
7363 m_selectingTopLeft
= updateTopLeft
;
7364 m_selectingBottomRight
= updateBottomRight
;
7368 // ------ functions to get/send data (see also public functions)
7371 bool wxGrid::GetModelValues()
7373 // Hide the editor, so it won't hide a changed value.
7374 HideCellEditControl();
7378 // all we need to do is repaint the grid
7380 m_gridWin
->Refresh();
7387 bool wxGrid::SetModelValues()
7391 // Disable the editor, so it won't hide a changed value.
7392 // Do we also want to save the current value of the editor first?
7394 DisableCellEditControl();
7398 for ( row
= 0; row
< m_numRows
; row
++ )
7400 for ( col
= 0; col
< m_numCols
; col
++ )
7402 m_table
->SetValue( row
, col
, GetCellValue(row
, col
) );
7412 // Note - this function only draws cells that are in the list of
7413 // exposed cells (usually set from the update region by
7414 // CalcExposedCells)
7416 void wxGrid::DrawGridCellArea( wxDC
& dc
, const wxGridCellCoordsArray
& cells
)
7418 if ( !m_numRows
|| !m_numCols
)
7421 int i
, numCells
= cells
.GetCount();
7422 int row
, col
, cell_rows
, cell_cols
;
7423 wxGridCellCoordsArray redrawCells
;
7425 for ( i
= numCells
- 1; i
>= 0; i
-- )
7427 row
= cells
[i
].GetRow();
7428 col
= cells
[i
].GetCol();
7429 GetCellSize( row
, col
, &cell_rows
, &cell_cols
);
7431 // If this cell is part of a multicell block, find owner for repaint
7432 if ( cell_rows
<= 0 || cell_cols
<= 0 )
7434 wxGridCellCoords
cell( row
+ cell_rows
, col
+ cell_cols
);
7435 bool marked
= false;
7436 for ( int j
= 0; j
< numCells
; j
++ )
7438 if ( cell
== cells
[j
] )
7447 int count
= redrawCells
.GetCount();
7448 for (int j
= 0; j
< count
; j
++)
7450 if ( cell
== redrawCells
[j
] )
7458 redrawCells
.Add( cell
);
7461 // don't bother drawing this cell
7465 // If this cell is empty, find cell to left that might want to overflow
7466 if (m_table
&& m_table
->IsEmptyCell(row
, col
))
7468 for ( int l
= 0; l
< cell_rows
; l
++ )
7470 // find a cell in this row to leave already marked for repaint
7472 for (int k
= 0; k
< int(redrawCells
.GetCount()); k
++)
7473 if ((redrawCells
[k
].GetCol() < left
) &&
7474 (redrawCells
[k
].GetRow() == row
))
7476 left
= redrawCells
[k
].GetCol();
7480 left
= 0; // oh well
7482 for (int j
= col
- 1; j
>= left
; j
--)
7484 if (!m_table
->IsEmptyCell(row
+ l
, j
))
7486 if (GetCellOverflow(row
+ l
, j
))
7488 wxGridCellCoords
cell(row
+ l
, j
);
7489 bool marked
= false;
7491 for (int k
= 0; k
< numCells
; k
++)
7493 if ( cell
== cells
[k
] )
7502 int count
= redrawCells
.GetCount();
7503 for (int k
= 0; k
< count
; k
++)
7505 if ( cell
== redrawCells
[k
] )
7512 redrawCells
.Add( cell
);
7521 DrawCell( dc
, cells
[i
] );
7524 numCells
= redrawCells
.GetCount();
7526 for ( i
= numCells
- 1; i
>= 0; i
-- )
7528 DrawCell( dc
, redrawCells
[i
] );
7532 void wxGrid::DrawGridSpace( wxDC
& dc
)
7535 m_gridWin
->GetClientSize( &cw
, &ch
);
7538 CalcUnscrolledPosition( cw
, ch
, &right
, &bottom
);
7540 int rightCol
= m_numCols
> 0 ? GetColRight(GetColAt( m_numCols
- 1 )) : 0;
7541 int bottomRow
= m_numRows
> 0 ? GetRowBottom(m_numRows
- 1) : 0;
7543 if ( right
> rightCol
|| bottom
> bottomRow
)
7546 CalcUnscrolledPosition( 0, 0, &left
, &top
);
7548 dc
.SetBrush( wxBrush(GetDefaultCellBackgroundColour(), wxSOLID
) );
7549 dc
.SetPen( *wxTRANSPARENT_PEN
);
7551 if ( right
> rightCol
)
7553 dc
.DrawRectangle( rightCol
, top
, right
- rightCol
, ch
);
7556 if ( bottom
> bottomRow
)
7558 dc
.DrawRectangle( left
, bottomRow
, cw
, bottom
- bottomRow
);
7563 void wxGrid::DrawCell( wxDC
& dc
, const wxGridCellCoords
& coords
)
7565 int row
= coords
.GetRow();
7566 int col
= coords
.GetCol();
7568 if ( GetColWidth(col
) <= 0 || GetRowHeight(row
) <= 0 )
7571 // we draw the cell border ourselves
7572 #if !WXGRID_DRAW_LINES
7573 if ( m_gridLinesEnabled
)
7574 DrawCellBorder( dc
, coords
);
7577 wxGridCellAttr
* attr
= GetCellAttr(row
, col
);
7579 bool isCurrent
= coords
== m_currentCellCoords
;
7581 wxRect rect
= CellToRect( row
, col
);
7583 // if the editor is shown, we should use it and not the renderer
7584 // Note: However, only if it is really _shown_, i.e. not hidden!
7585 if ( isCurrent
&& IsCellEditControlShown() )
7587 // NB: this "#if..." is temporary and fixes a problem where the
7588 // edit control is erased by this code after being rendered.
7589 // On wxMac (QD build only), the cell editor is a wxTextCntl and is rendered
7590 // implicitly, causing this out-of order render.
7591 #if !defined(__WXMAC__)
7592 wxGridCellEditor
*editor
= attr
->GetEditor(this, row
, col
);
7593 editor
->PaintBackground(rect
, attr
);
7599 // but all the rest is drawn by the cell renderer and hence may be customized
7600 wxGridCellRenderer
*renderer
= attr
->GetRenderer(this, row
, col
);
7601 renderer
->Draw(*this, *attr
, dc
, rect
, row
, col
, IsInSelection(coords
));
7608 void wxGrid::DrawCellHighlight( wxDC
& dc
, const wxGridCellAttr
*attr
)
7610 // don't show highlight when the grid doesn't have focus
7614 int row
= m_currentCellCoords
.GetRow();
7615 int col
= m_currentCellCoords
.GetCol();
7617 if ( GetColWidth(col
) <= 0 || GetRowHeight(row
) <= 0 )
7620 wxRect rect
= CellToRect(row
, col
);
7622 // hmmm... what could we do here to show that the cell is disabled?
7623 // for now, I just draw a thinner border than for the other ones, but
7624 // it doesn't look really good
7626 int penWidth
= attr
->IsReadOnly() ? m_cellHighlightROPenWidth
: m_cellHighlightPenWidth
;
7630 // The center of the drawn line is where the position/width/height of
7631 // the rectangle is actually at (on wxMSW at least), so the
7632 // size of the rectangle is reduced to compensate for the thickness of
7633 // the line. If this is too strange on non-wxMSW platforms then
7634 // please #ifdef this appropriately.
7635 rect
.x
+= penWidth
/ 2;
7636 rect
.y
+= penWidth
/ 2;
7637 rect
.width
-= penWidth
- 1;
7638 rect
.height
-= penWidth
- 1;
7640 // Now draw the rectangle
7641 // use the cellHighlightColour if the cell is inside a selection, this
7642 // will ensure the cell is always visible.
7643 dc
.SetPen(wxPen(IsInSelection(row
,col
) ? m_selectionForeground
: m_cellHighlightColour
, penWidth
, wxSOLID
));
7644 dc
.SetBrush(*wxTRANSPARENT_BRUSH
);
7645 dc
.DrawRectangle(rect
);
7649 // VZ: my experiments with 3D borders...
7651 // how to properly set colours for arbitrary bg?
7652 wxCoord x1
= rect
.x
,
7654 x2
= rect
.x
+ rect
.width
- 1,
7655 y2
= rect
.y
+ rect
.height
- 1;
7657 dc
.SetPen(*wxWHITE_PEN
);
7658 dc
.DrawLine(x1
, y1
, x2
, y1
);
7659 dc
.DrawLine(x1
, y1
, x1
, y2
);
7661 dc
.DrawLine(x1
+ 1, y2
- 1, x2
- 1, y2
- 1);
7662 dc
.DrawLine(x2
- 1, y1
+ 1, x2
- 1, y2
);
7664 dc
.SetPen(*wxBLACK_PEN
);
7665 dc
.DrawLine(x1
, y2
, x2
, y2
);
7666 dc
.DrawLine(x2
, y1
, x2
, y2
+ 1);
7670 wxPen
wxGrid::GetDefaultGridLinePen()
7672 return wxPen(GetGridLineColour(), 1, wxSOLID
);
7675 wxPen
wxGrid::GetRowGridLinePen(int WXUNUSED(row
))
7677 return GetDefaultGridLinePen();
7680 wxPen
wxGrid::GetColGridLinePen(int WXUNUSED(col
))
7682 return GetDefaultGridLinePen();
7685 void wxGrid::DrawCellBorder( wxDC
& dc
, const wxGridCellCoords
& coords
)
7687 int row
= coords
.GetRow();
7688 int col
= coords
.GetCol();
7689 if ( GetColWidth(col
) <= 0 || GetRowHeight(row
) <= 0 )
7693 wxRect rect
= CellToRect( row
, col
);
7695 // right hand border
7696 dc
.SetPen( GetColGridLinePen(col
) );
7697 dc
.DrawLine( rect
.x
+ rect
.width
, rect
.y
,
7698 rect
.x
+ rect
.width
, rect
.y
+ rect
.height
+ 1 );
7701 dc
.SetPen( GetRowGridLinePen(row
) );
7702 dc
.DrawLine( rect
.x
, rect
.y
+ rect
.height
,
7703 rect
.x
+ rect
.width
, rect
.y
+ rect
.height
);
7706 void wxGrid::DrawHighlight(wxDC
& dc
, const wxGridCellCoordsArray
& cells
)
7708 // This if block was previously in wxGrid::OnPaint but that doesn't
7709 // seem to get called under wxGTK - MB
7711 if ( m_currentCellCoords
== wxGridNoCellCoords
&&
7712 m_numRows
&& m_numCols
)
7714 m_currentCellCoords
.Set(0, 0);
7717 if ( IsCellEditControlShown() )
7719 // don't show highlight when the edit control is shown
7723 // if the active cell was repainted, repaint its highlight too because it
7724 // might have been damaged by the grid lines
7725 size_t count
= cells
.GetCount();
7726 for ( size_t n
= 0; n
< count
; n
++ )
7728 if ( cells
[n
] == m_currentCellCoords
)
7730 wxGridCellAttr
* attr
= GetCellAttr(m_currentCellCoords
);
7731 DrawCellHighlight(dc
, attr
);
7739 // TODO: remove this ???
7740 // This is used to redraw all grid lines e.g. when the grid line colour
7743 void wxGrid::DrawAllGridLines( wxDC
& dc
, const wxRegion
& WXUNUSED(reg
) )
7745 #if !WXGRID_DRAW_LINES
7749 if ( !m_gridLinesEnabled
|| !m_numRows
|| !m_numCols
)
7752 int top
, bottom
, left
, right
;
7754 #if 0 //#ifndef __WXGTK__
7758 m_gridWin
->GetClientSize(&cw
, &ch
);
7760 // virtual coords of visible area
7762 CalcUnscrolledPosition( 0, 0, &left
, &top
);
7763 CalcUnscrolledPosition( cw
, ch
, &right
, &bottom
);
7768 reg
.GetBox(x
, y
, w
, h
);
7769 CalcUnscrolledPosition( x
, y
, &left
, &top
);
7770 CalcUnscrolledPosition( x
+ w
, y
+ h
, &right
, &bottom
);
7774 m_gridWin
->GetClientSize(&cw
, &ch
);
7775 CalcUnscrolledPosition( 0, 0, &left
, &top
);
7776 CalcUnscrolledPosition( cw
, ch
, &right
, &bottom
);
7779 // avoid drawing grid lines past the last row and col
7781 right
= wxMin( right
, GetColRight(GetColAt( m_numCols
- 1 )) );
7782 bottom
= wxMin( bottom
, GetRowBottom(m_numRows
- 1) );
7784 // no gridlines inside multicells, clip them out
7785 int leftCol
= GetColPos( internalXToCol(left
) );
7786 int topRow
= internalYToRow(top
);
7787 int rightCol
= GetColPos( internalXToCol(right
) );
7788 int bottomRow
= internalYToRow(bottom
);
7790 wxRegion
clippedcells(0, 0, cw
, ch
);
7792 int i
, j
, cell_rows
, cell_cols
;
7795 for (j
=topRow
; j
<=bottomRow
; j
++)
7798 for (colPos
=leftCol
; colPos
<=rightCol
; colPos
++)
7800 i
= GetColAt( colPos
);
7802 GetCellSize( j
, i
, &cell_rows
, &cell_cols
);
7803 if ((cell_rows
> 1) || (cell_cols
> 1))
7805 rect
= CellToRect(j
,i
);
7806 CalcScrolledPosition( rect
.x
, rect
.y
, &rect
.x
, &rect
.y
);
7807 clippedcells
.Subtract(rect
);
7809 else if ((cell_rows
< 0) || (cell_cols
< 0))
7811 rect
= CellToRect(j
+ cell_rows
, i
+ cell_cols
);
7812 CalcScrolledPosition( rect
.x
, rect
.y
, &rect
.x
, &rect
.y
);
7813 clippedcells
.Subtract(rect
);
7818 dc
.SetClippingRegion( clippedcells
);
7821 // horizontal grid lines
7823 // already declared above - int i;
7824 for ( i
= internalYToRow(top
); i
< m_numRows
; i
++ )
7826 int bot
= GetRowBottom(i
) - 1;
7835 dc
.SetPen( GetRowGridLinePen(i
) );
7836 dc
.DrawLine( left
, bot
, right
, bot
);
7840 // vertical grid lines
7843 for ( colPos
= leftCol
; colPos
< m_numCols
; colPos
++ )
7845 i
= GetColAt( colPos
);
7847 int colRight
= GetColRight(i
);
7849 if (GetLayoutDirection() != wxLayout_RightToLeft
)
7853 if ( colRight
> right
)
7858 if ( colRight
>= left
)
7860 dc
.SetPen( GetColGridLinePen(i
) );
7861 dc
.DrawLine( colRight
, top
, colRight
, bottom
);
7865 dc
.DestroyClippingRegion();
7868 void wxGrid::DrawRowLabels( wxDC
& dc
, const wxArrayInt
& rows
)
7874 size_t numLabels
= rows
.GetCount();
7876 for ( i
= 0; i
< numLabels
; i
++ )
7878 DrawRowLabel( dc
, rows
[i
] );
7882 void wxGrid::DrawRowLabel( wxDC
& dc
, int row
)
7884 if ( GetRowHeight(row
) <= 0 || m_rowLabelWidth
<= 0 )
7889 int rowTop
= GetRowTop(row
),
7890 rowBottom
= GetRowBottom(row
) - 1;
7892 dc
.SetPen( wxPen(wxSystemSettings::GetColour(wxSYS_COLOUR_3DSHADOW
), 1, wxSOLID
) );
7893 dc
.DrawLine( m_rowLabelWidth
- 1, rowTop
, m_rowLabelWidth
- 1, rowBottom
);
7894 dc
.DrawLine( 0, rowTop
, 0, rowBottom
);
7895 dc
.DrawLine( 0, rowBottom
, m_rowLabelWidth
, rowBottom
);
7897 dc
.SetPen( *wxWHITE_PEN
);
7898 dc
.DrawLine( 1, rowTop
, 1, rowBottom
);
7899 dc
.DrawLine( 1, rowTop
, m_rowLabelWidth
- 1, rowTop
);
7901 dc
.SetBackgroundMode( wxTRANSPARENT
);
7902 dc
.SetTextForeground( GetLabelTextColour() );
7903 dc
.SetFont( GetLabelFont() );
7906 GetRowLabelAlignment( &hAlign
, &vAlign
);
7909 rect
.SetY( GetRowTop(row
) + 2 );
7910 rect
.SetWidth( m_rowLabelWidth
- 4 );
7911 rect
.SetHeight( GetRowHeight(row
) - 4 );
7912 DrawTextRectangle( dc
, GetRowLabelValue( row
), rect
, hAlign
, vAlign
);
7915 void wxGrid::SetUseNativeColLabels( bool native
)
7917 m_nativeColumnLabels
= native
;
7920 int height
= wxRendererNative::Get().GetHeaderButtonHeight( this );
7921 SetColLabelSize( height
);
7924 m_colLabelWin
->Refresh();
7927 void wxGrid::DrawColLabels( wxDC
& dc
,const wxArrayInt
& cols
)
7933 size_t numLabels
= cols
.GetCount();
7935 for ( i
= 0; i
< numLabels
; i
++ )
7937 DrawColLabel( dc
, cols
[i
] );
7941 void wxGrid::DrawColLabel( wxDC
& dc
, int col
)
7943 if ( GetColWidth(col
) <= 0 || m_colLabelHeight
<= 0 )
7946 int colLeft
= GetColLeft(col
);
7950 if (m_nativeColumnLabels
)
7952 rect
.SetX( colLeft
);
7954 rect
.SetWidth( GetColWidth(col
));
7955 rect
.SetHeight( m_colLabelHeight
);
7957 wxWindowDC
*win_dc
= (wxWindowDC
*) &dc
;
7958 wxRendererNative::Get().DrawHeaderButton( win_dc
->GetWindow(), dc
, rect
, 0 );
7962 int colRight
= GetColRight(col
) - 1;
7964 dc
.SetPen( wxPen(wxSystemSettings::GetColour(wxSYS_COLOUR_3DSHADOW
), 1, wxSOLID
) );
7965 dc
.DrawLine( colRight
, 0, colRight
, m_colLabelHeight
- 1 );
7966 dc
.DrawLine( colLeft
, 0, colRight
, 0 );
7967 dc
.DrawLine( colLeft
, m_colLabelHeight
- 1,
7968 colRight
+ 1, m_colLabelHeight
- 1 );
7970 dc
.SetPen( *wxWHITE_PEN
);
7971 dc
.DrawLine( colLeft
, 1, colLeft
, m_colLabelHeight
- 1 );
7972 dc
.DrawLine( colLeft
, 1, colRight
, 1 );
7975 dc
.SetBackgroundMode( wxTRANSPARENT
);
7976 dc
.SetTextForeground( GetLabelTextColour() );
7977 dc
.SetFont( GetLabelFont() );
7979 int hAlign
, vAlign
, orient
;
7980 GetColLabelAlignment( &hAlign
, &vAlign
);
7981 orient
= GetColLabelTextOrientation();
7983 rect
.SetX( colLeft
+ 2 );
7985 rect
.SetWidth( GetColWidth(col
) - 4 );
7986 rect
.SetHeight( m_colLabelHeight
- 4 );
7987 DrawTextRectangle( dc
, GetColLabelValue( col
), rect
, hAlign
, vAlign
, orient
);
7990 void wxGrid::DrawTextRectangle( wxDC
& dc
,
7991 const wxString
& value
,
7995 int textOrientation
)
7997 wxArrayString lines
;
7999 StringToLines( value
, lines
);
8001 // Forward to new API.
8002 DrawTextRectangle( dc
,
8010 // VZ: this should be replaced with wxDC::DrawLabel() to which we just have to
8011 // add textOrientation support
8012 void wxGrid::DrawTextRectangle(wxDC
& dc
,
8013 const wxArrayString
& lines
,
8017 int textOrientation
)
8019 if ( lines
.empty() )
8022 wxDCClipper
clip(dc
, rect
);
8027 if ( textOrientation
== wxHORIZONTAL
)
8028 GetTextBoxSize( dc
, lines
, &textWidth
, &textHeight
);
8030 GetTextBoxSize( dc
, lines
, &textHeight
, &textWidth
);
8034 switch ( vertAlign
)
8036 case wxALIGN_BOTTOM
:
8037 if ( textOrientation
== wxHORIZONTAL
)
8038 y
= rect
.y
+ (rect
.height
- textHeight
- 1);
8040 x
= rect
.x
+ rect
.width
- textWidth
;
8043 case wxALIGN_CENTRE
:
8044 if ( textOrientation
== wxHORIZONTAL
)
8045 y
= rect
.y
+ ((rect
.height
- textHeight
) / 2);
8047 x
= rect
.x
+ ((rect
.width
- textWidth
) / 2);
8052 if ( textOrientation
== wxHORIZONTAL
)
8059 // Align each line of a multi-line label
8060 size_t nLines
= lines
.GetCount();
8061 for ( size_t l
= 0; l
< nLines
; l
++ )
8063 const wxString
& line
= lines
[l
];
8067 *(textOrientation
== wxHORIZONTAL
? &y
: &x
) += dc
.GetCharHeight();
8071 wxCoord lineWidth
= 0,
8073 dc
.GetTextExtent(line
, &lineWidth
, &lineHeight
);
8075 switch ( horizAlign
)
8078 if ( textOrientation
== wxHORIZONTAL
)
8079 x
= rect
.x
+ (rect
.width
- lineWidth
- 1);
8081 y
= rect
.y
+ lineWidth
+ 1;
8084 case wxALIGN_CENTRE
:
8085 if ( textOrientation
== wxHORIZONTAL
)
8086 x
= rect
.x
+ ((rect
.width
- lineWidth
) / 2);
8088 y
= rect
.y
+ rect
.height
- ((rect
.height
- lineWidth
) / 2);
8093 if ( textOrientation
== wxHORIZONTAL
)
8096 y
= rect
.y
+ rect
.height
- 1;
8100 if ( textOrientation
== wxHORIZONTAL
)
8102 dc
.DrawText( line
, x
, y
);
8107 dc
.DrawRotatedText( line
, x
, y
, 90.0 );
8113 // Split multi-line text up into an array of strings.
8114 // Any existing contents of the string array are preserved.
8116 // TODO: refactor wxTextFile::Read() and reuse the same code from here
8117 void wxGrid::StringToLines( const wxString
& value
, wxArrayString
& lines
) const
8121 wxString eol
= wxTextFile::GetEOL( wxTextFileType_Unix
);
8122 wxString tVal
= wxTextFile::Translate( value
, wxTextFileType_Unix
);
8124 while ( startPos
< (int)tVal
.length() )
8126 pos
= tVal
.Mid(startPos
).Find( eol
);
8131 else if ( pos
== 0 )
8133 lines
.Add( wxEmptyString
);
8137 lines
.Add( tVal
.Mid(startPos
, pos
) );
8140 startPos
+= pos
+ 1;
8143 if ( startPos
< (int)tVal
.length() )
8145 lines
.Add( tVal
.Mid( startPos
) );
8149 void wxGrid::GetTextBoxSize( const wxDC
& dc
,
8150 const wxArrayString
& lines
,
8151 long *width
, long *height
) const
8155 wxCoord lineW
= 0, lineH
= 0;
8158 for ( i
= 0; i
< lines
.GetCount(); i
++ )
8160 dc
.GetTextExtent( lines
[i
], &lineW
, &lineH
);
8161 w
= wxMax( w
, lineW
);
8170 // ------ Batch processing.
8172 void wxGrid::EndBatch()
8174 if ( m_batchCount
> 0 )
8177 if ( !m_batchCount
)
8180 m_rowLabelWin
->Refresh();
8181 m_colLabelWin
->Refresh();
8182 m_cornerLabelWin
->Refresh();
8183 m_gridWin
->Refresh();
8188 // Use this, rather than wxWindow::Refresh(), to force an immediate
8189 // repainting of the grid. Has no effect if you are already inside a
8190 // BeginBatch / EndBatch block.
8192 void wxGrid::ForceRefresh()
8198 bool wxGrid::Enable(bool enable
)
8200 if ( !wxScrolledWindow::Enable(enable
) )
8203 // redraw in the new state
8204 m_gridWin
->Refresh();
8210 // ------ Edit control functions
8213 void wxGrid::EnableEditing( bool edit
)
8215 // TODO: improve this ?
8217 if ( edit
!= m_editable
)
8220 EnableCellEditControl(edit
);
8225 void wxGrid::EnableCellEditControl( bool enable
)
8230 if ( enable
!= m_cellEditCtrlEnabled
)
8234 if (SendEvent( wxEVT_GRID_EDITOR_SHOWN
) <0)
8237 // this should be checked by the caller!
8238 wxASSERT_MSG( CanEnableCellControl(), _T("can't enable editing for this cell!") );
8240 // do it before ShowCellEditControl()
8241 m_cellEditCtrlEnabled
= enable
;
8243 ShowCellEditControl();
8247 //FIXME:add veto support
8248 SendEvent( wxEVT_GRID_EDITOR_HIDDEN
);
8250 HideCellEditControl();
8251 SaveEditControlValue();
8253 // do it after HideCellEditControl()
8254 m_cellEditCtrlEnabled
= enable
;
8259 bool wxGrid::IsCurrentCellReadOnly() const
8262 wxGridCellAttr
* attr
= ((wxGrid
*)this)->GetCellAttr(m_currentCellCoords
);
8263 bool readonly
= attr
->IsReadOnly();
8269 bool wxGrid::CanEnableCellControl() const
8271 return m_editable
&& (m_currentCellCoords
!= wxGridNoCellCoords
) &&
8272 !IsCurrentCellReadOnly();
8275 bool wxGrid::IsCellEditControlEnabled() const
8277 // the cell edit control might be disable for all cells or just for the
8278 // current one if it's read only
8279 return m_cellEditCtrlEnabled
? !IsCurrentCellReadOnly() : false;
8282 bool wxGrid::IsCellEditControlShown() const
8284 bool isShown
= false;
8286 if ( m_cellEditCtrlEnabled
)
8288 int row
= m_currentCellCoords
.GetRow();
8289 int col
= m_currentCellCoords
.GetCol();
8290 wxGridCellAttr
* attr
= GetCellAttr(row
, col
);
8291 wxGridCellEditor
* editor
= attr
->GetEditor((wxGrid
*) this, row
, col
);
8296 if ( editor
->IsCreated() )
8298 isShown
= editor
->GetControl()->IsShown();
8308 void wxGrid::ShowCellEditControl()
8310 if ( IsCellEditControlEnabled() )
8312 if ( !IsVisible( m_currentCellCoords
, false ) )
8314 m_cellEditCtrlEnabled
= false;
8319 wxRect rect
= CellToRect( m_currentCellCoords
);
8320 int row
= m_currentCellCoords
.GetRow();
8321 int col
= m_currentCellCoords
.GetCol();
8323 // if this is part of a multicell, find owner (topleft)
8324 int cell_rows
, cell_cols
;
8325 GetCellSize( row
, col
, &cell_rows
, &cell_cols
);
8326 if ( cell_rows
<= 0 || cell_cols
<= 0 )
8330 m_currentCellCoords
.SetRow( row
);
8331 m_currentCellCoords
.SetCol( col
);
8334 // erase the highlight and the cell contents because the editor
8335 // might not cover the entire cell
8336 wxClientDC
dc( m_gridWin
);
8338 wxGridCellAttr
* attr
= GetCellAttr(row
, col
);
8339 dc
.SetBrush(wxBrush(attr
->GetBackgroundColour(), wxSOLID
));
8340 dc
.SetPen(*wxTRANSPARENT_PEN
);
8341 dc
.DrawRectangle(rect
);
8343 // convert to scrolled coords
8344 CalcScrolledPosition( rect
.x
, rect
.y
, &rect
.x
, &rect
.y
);
8350 // cell is shifted by one pixel
8351 // However, don't allow x or y to become negative
8352 // since the SetSize() method interprets that as
8359 wxGridCellEditor
* editor
= attr
->GetEditor(this, row
, col
);
8360 if ( !editor
->IsCreated() )
8362 editor
->Create(m_gridWin
, wxID_ANY
,
8363 new wxGridCellEditorEvtHandler(this, editor
));
8365 wxGridEditorCreatedEvent
evt(GetId(),
8366 wxEVT_GRID_EDITOR_CREATED
,
8370 editor
->GetControl());
8371 GetEventHandler()->ProcessEvent(evt
);
8374 // resize editor to overflow into righthand cells if allowed
8375 int maxWidth
= rect
.width
;
8376 wxString value
= GetCellValue(row
, col
);
8377 if ( (value
!= wxEmptyString
) && (attr
->GetOverflow()) )
8380 GetTextExtent(value
, &maxWidth
, &y
, NULL
, NULL
, &attr
->GetFont());
8381 if (maxWidth
< rect
.width
)
8382 maxWidth
= rect
.width
;
8385 int client_right
= m_gridWin
->GetClientSize().GetWidth();
8386 if (rect
.x
+ maxWidth
> client_right
)
8387 maxWidth
= client_right
- rect
.x
;
8389 if ((maxWidth
> rect
.width
) && (col
< m_numCols
) && m_table
)
8391 GetCellSize( row
, col
, &cell_rows
, &cell_cols
);
8392 // may have changed earlier
8393 for (int i
= col
+ cell_cols
; i
< m_numCols
; i
++)
8396 GetCellSize( row
, i
, &c_rows
, &c_cols
);
8398 // looks weird going over a multicell
8399 if (m_table
->IsEmptyCell( row
, i
) &&
8400 (rect
.width
< maxWidth
) && (c_rows
== 1))
8402 rect
.width
+= GetColWidth( i
);
8408 if (rect
.GetRight() > client_right
)
8409 rect
.SetRight( client_right
- 1 );
8412 editor
->SetCellAttr( attr
);
8413 editor
->SetSize( rect
);
8415 editor
->GetControl()->Move(
8416 editor
->GetControl()->GetPosition().x
+ nXMove
,
8417 editor
->GetControl()->GetPosition().y
);
8418 editor
->Show( true, attr
);
8420 // recalc dimensions in case we need to
8421 // expand the scrolled window to account for editor
8424 editor
->BeginEdit(row
, col
, this);
8425 editor
->SetCellAttr(NULL
);
8433 void wxGrid::HideCellEditControl()
8435 if ( IsCellEditControlEnabled() )
8437 int row
= m_currentCellCoords
.GetRow();
8438 int col
= m_currentCellCoords
.GetCol();
8440 wxGridCellAttr
*attr
= GetCellAttr(row
, col
);
8441 wxGridCellEditor
*editor
= attr
->GetEditor(this, row
, col
);
8442 editor
->Show( false );
8446 m_gridWin
->SetFocus();
8448 // refresh whole row to the right
8449 wxRect
rect( CellToRect(row
, col
) );
8450 CalcScrolledPosition(rect
.x
, rect
.y
, &rect
.x
, &rect
.y
);
8451 rect
.width
= m_gridWin
->GetClientSize().GetWidth() - rect
.x
;
8454 // ensure that the pixels under the focus ring get refreshed as well
8455 rect
.Inflate(10, 10);
8458 m_gridWin
->Refresh( false, &rect
);
8462 void wxGrid::SaveEditControlValue()
8464 if ( IsCellEditControlEnabled() )
8466 int row
= m_currentCellCoords
.GetRow();
8467 int col
= m_currentCellCoords
.GetCol();
8469 wxString oldval
= GetCellValue(row
, col
);
8471 wxGridCellAttr
* attr
= GetCellAttr(row
, col
);
8472 wxGridCellEditor
* editor
= attr
->GetEditor(this, row
, col
);
8473 bool changed
= editor
->EndEdit(row
, col
, this);
8480 if ( SendEvent( wxEVT_GRID_CELL_CHANGE
,
8481 m_currentCellCoords
.GetRow(),
8482 m_currentCellCoords
.GetCol() ) < 0 )
8484 // Event has been vetoed, set the data back.
8485 SetCellValue(row
, col
, oldval
);
8492 // ------ Grid location functions
8493 // Note that all of these functions work with the logical coordinates of
8494 // grid cells and labels so you will need to convert from device
8495 // coordinates for mouse events etc.
8498 void wxGrid::XYToCell( int x
, int y
, wxGridCellCoords
& coords
) const
8500 int row
= YToRow(y
);
8501 int col
= XToCol(x
);
8503 if ( row
== -1 || col
== -1 )
8505 coords
= wxGridNoCellCoords
;
8509 coords
.Set( row
, col
);
8513 // Internal Helper function for computing row or column from some
8514 // (unscrolled) coordinate value, using either
8515 // m_defaultRowHeight/m_defaultColWidth or binary search on array
8516 // of m_rowBottoms/m_ColRights to speed up the search!
8518 static int CoordToRowOrCol(int coord
, int defaultDist
, int minDist
,
8519 const wxArrayInt
& BorderArray
, int nMax
,
8523 return clipToMinMax
&& (nMax
> 0) ? 0 : -1;
8528 size_t i_max
= coord
/ defaultDist
,
8531 if (BorderArray
.IsEmpty())
8533 if ((int) i_max
< nMax
)
8535 return clipToMinMax
? nMax
- 1 : -1;
8538 if ( i_max
>= BorderArray
.GetCount())
8540 i_max
= BorderArray
.GetCount() - 1;
8544 if ( coord
>= BorderArray
[i_max
])
8548 i_max
= coord
/ minDist
;
8550 i_max
= BorderArray
.GetCount() - 1;
8553 if ( i_max
>= BorderArray
.GetCount())
8554 i_max
= BorderArray
.GetCount() - 1;
8557 if ( coord
>= BorderArray
[i_max
])
8558 return clipToMinMax
? (int)i_max
: -1;
8559 if ( coord
< BorderArray
[0] )
8562 while ( i_max
- i_min
> 0 )
8564 wxCHECK_MSG(BorderArray
[i_min
] <= coord
&& coord
< BorderArray
[i_max
],
8565 0, _T("wxGrid: internal error in CoordToRowOrCol"));
8566 if (coord
>= BorderArray
[ i_max
- 1])
8570 int median
= i_min
+ (i_max
- i_min
+ 1) / 2;
8571 if (coord
< BorderArray
[median
])
8580 int wxGrid::YToRow( int y
) const
8582 return CoordToRowOrCol(y
, m_defaultRowHeight
,
8583 m_minAcceptableRowHeight
, m_rowBottoms
, m_numRows
, false);
8586 int wxGrid::XToCol( int x
, bool clipToMinMax
) const
8589 return clipToMinMax
&& (m_numCols
> 0) ? GetColAt( 0 ) : -1;
8591 wxASSERT_MSG(m_defaultColWidth
> 0, wxT("Default column width can not be zero"));
8593 int maxPos
= x
/ m_defaultColWidth
;
8596 if (m_colRights
.IsEmpty())
8598 if(maxPos
< m_numCols
)
8599 return GetColAt( maxPos
);
8600 return clipToMinMax
? GetColAt( m_numCols
- 1 ) : -1;
8603 if ( maxPos
>= m_numCols
)
8604 maxPos
= m_numCols
- 1;
8607 if ( x
>= m_colRights
[GetColAt( maxPos
)])
8610 if (m_minAcceptableColWidth
)
8611 maxPos
= x
/ m_minAcceptableColWidth
;
8613 maxPos
= m_numCols
- 1;
8615 if ( maxPos
>= m_numCols
)
8616 maxPos
= m_numCols
- 1;
8619 //X is beyond the last column
8620 if ( x
>= m_colRights
[GetColAt( maxPos
)])
8621 return clipToMinMax
? GetColAt( maxPos
) : -1;
8623 //X is before the first column
8624 if ( x
< m_colRights
[GetColAt( 0 )] )
8625 return GetColAt( 0 );
8627 //Perform a binary search
8628 while ( maxPos
- minPos
> 0 )
8630 wxCHECK_MSG(m_colRights
[GetColAt( minPos
)] <= x
&& x
< m_colRights
[GetColAt( maxPos
)],
8631 0, _T("wxGrid: internal error in XToCol"));
8633 if (x
>= m_colRights
[GetColAt( maxPos
- 1 )])
8634 return GetColAt( maxPos
);
8637 int median
= minPos
+ (maxPos
- minPos
+ 1) / 2;
8638 if (x
< m_colRights
[GetColAt( median
)])
8643 return GetColAt( maxPos
);
8646 // return the row number that that the y coord is near
8647 // the edge of, or -1 if not near an edge.
8648 // coords can only possibly be near an edge if
8649 // (a) the row/column is large enough to still allow for an "inner" area
8650 // that is _not_ nead the edge (i.e., if the height/width is smaller
8651 // than WXGRID_LABEL_EDGE_ZONE, coords are _never_ considered to be
8654 // (b) resizing rows/columns (the thing for which edge detection is
8655 // relevant at all) is enabled.
8657 int wxGrid::YToEdgeOfRow( int y
) const
8660 i
= internalYToRow(y
);
8662 if ( GetRowHeight(i
) > WXGRID_LABEL_EDGE_ZONE
&& CanDragRowSize() )
8664 // We know that we are in row i, test whether we are
8665 // close enough to lower or upper border, respectively.
8666 if ( abs(GetRowBottom(i
) - y
) < WXGRID_LABEL_EDGE_ZONE
)
8668 else if ( i
> 0 && y
- GetRowTop(i
) < WXGRID_LABEL_EDGE_ZONE
)
8675 // return the col number that that the x coord is near the edge of, or
8676 // -1 if not near an edge
8677 // See comment at YToEdgeOfRow for conditions on edge detection.
8679 int wxGrid::XToEdgeOfCol( int x
) const
8682 i
= internalXToCol(x
);
8684 if ( GetColWidth(i
) > WXGRID_LABEL_EDGE_ZONE
&& CanDragColSize() )
8686 // We know that we are in column i; test whether we are
8687 // close enough to right or left border, respectively.
8688 if ( abs(GetColRight(i
) - x
) < WXGRID_LABEL_EDGE_ZONE
)
8690 else if ( i
> 0 && x
- GetColLeft(i
) < WXGRID_LABEL_EDGE_ZONE
)
8697 wxRect
wxGrid::CellToRect( int row
, int col
) const
8699 wxRect
rect( -1, -1, -1, -1 );
8701 if ( row
>= 0 && row
< m_numRows
&&
8702 col
>= 0 && col
< m_numCols
)
8704 int i
, cell_rows
, cell_cols
;
8705 rect
.width
= rect
.height
= 0;
8706 GetCellSize( row
, col
, &cell_rows
, &cell_cols
);
8707 // if negative then find multicell owner
8712 GetCellSize( row
, col
, &cell_rows
, &cell_cols
);
8714 rect
.x
= GetColLeft(col
);
8715 rect
.y
= GetRowTop(row
);
8716 for (i
=col
; i
< col
+ cell_cols
; i
++)
8717 rect
.width
+= GetColWidth(i
);
8718 for (i
=row
; i
< row
+ cell_rows
; i
++)
8719 rect
.height
+= GetRowHeight(i
);
8722 // if grid lines are enabled, then the area of the cell is a bit smaller
8723 if (m_gridLinesEnabled
)
8732 bool wxGrid::IsVisible( int row
, int col
, bool wholeCellVisible
) const
8734 // get the cell rectangle in logical coords
8736 wxRect
r( CellToRect( row
, col
) );
8738 // convert to device coords
8740 int left
, top
, right
, bottom
;
8741 CalcScrolledPosition( r
.GetLeft(), r
.GetTop(), &left
, &top
);
8742 CalcScrolledPosition( r
.GetRight(), r
.GetBottom(), &right
, &bottom
);
8744 // check against the client area of the grid window
8746 m_gridWin
->GetClientSize( &cw
, &ch
);
8748 if ( wholeCellVisible
)
8750 // is the cell wholly visible ?
8751 return ( left
>= 0 && right
<= cw
&&
8752 top
>= 0 && bottom
<= ch
);
8756 // is the cell partly visible ?
8758 return ( ((left
>= 0 && left
< cw
) || (right
> 0 && right
<= cw
)) &&
8759 ((top
>= 0 && top
< ch
) || (bottom
> 0 && bottom
<= ch
)) );
8763 // make the specified cell location visible by doing a minimal amount
8766 void wxGrid::MakeCellVisible( int row
, int col
)
8769 int xpos
= -1, ypos
= -1;
8771 if ( row
>= 0 && row
< m_numRows
&&
8772 col
>= 0 && col
< m_numCols
)
8774 // get the cell rectangle in logical coords
8775 wxRect
r( CellToRect( row
, col
) );
8777 // convert to device coords
8778 int left
, top
, right
, bottom
;
8779 CalcScrolledPosition( r
.GetLeft(), r
.GetTop(), &left
, &top
);
8780 CalcScrolledPosition( r
.GetRight(), r
.GetBottom(), &right
, &bottom
);
8783 m_gridWin
->GetClientSize( &cw
, &ch
);
8789 else if ( bottom
> ch
)
8791 int h
= r
.GetHeight();
8793 for ( i
= row
- 1; i
>= 0; i
-- )
8795 int rowHeight
= GetRowHeight(i
);
8796 if ( h
+ rowHeight
> ch
)
8803 // we divide it later by GRID_SCROLL_LINE, make sure that we don't
8804 // have rounding errors (this is important, because if we do,
8805 // we might not scroll at all and some cells won't be redrawn)
8807 // Sometimes GRID_SCROLL_LINE / 2 is not enough,
8808 // so just add a full scroll unit...
8809 ypos
+= m_scrollLineY
;
8812 // special handling for wide cells - show always left part of the cell!
8813 // Otherwise, e.g. when stepping from row to row, it would jump between
8814 // left and right part of the cell on every step!
8816 if ( left
< 0 || (right
- left
) >= cw
)
8820 else if ( right
> cw
)
8822 // position the view so that the cell is on the right
8824 CalcUnscrolledPosition(0, 0, &x0
, &y0
);
8825 xpos
= x0
+ (right
- cw
);
8827 // see comment for ypos above
8828 xpos
+= m_scrollLineX
;
8831 if ( xpos
!= -1 || ypos
!= -1 )
8834 xpos
/= m_scrollLineX
;
8836 ypos
/= m_scrollLineY
;
8837 Scroll( xpos
, ypos
);
8844 // ------ Grid cursor movement functions
8847 bool wxGrid::MoveCursorUp( bool expandSelection
)
8849 if ( m_currentCellCoords
!= wxGridNoCellCoords
&&
8850 m_currentCellCoords
.GetRow() >= 0 )
8852 if ( expandSelection
)
8854 if ( m_selectingKeyboard
== wxGridNoCellCoords
)
8855 m_selectingKeyboard
= m_currentCellCoords
;
8856 if ( m_selectingKeyboard
.GetRow() > 0 )
8858 m_selectingKeyboard
.SetRow( m_selectingKeyboard
.GetRow() - 1 );
8859 MakeCellVisible( m_selectingKeyboard
.GetRow(),
8860 m_selectingKeyboard
.GetCol() );
8861 HighlightBlock( m_currentCellCoords
, m_selectingKeyboard
);
8864 else if ( m_currentCellCoords
.GetRow() > 0 )
8866 int row
= m_currentCellCoords
.GetRow() - 1;
8867 int col
= m_currentCellCoords
.GetCol();
8869 MakeCellVisible( row
, col
);
8870 SetCurrentCell( row
, col
);
8881 bool wxGrid::MoveCursorDown( bool expandSelection
)
8883 if ( m_currentCellCoords
!= wxGridNoCellCoords
&&
8884 m_currentCellCoords
.GetRow() < m_numRows
)
8886 if ( expandSelection
)
8888 if ( m_selectingKeyboard
== wxGridNoCellCoords
)
8889 m_selectingKeyboard
= m_currentCellCoords
;
8890 if ( m_selectingKeyboard
.GetRow() < m_numRows
- 1 )
8892 m_selectingKeyboard
.SetRow( m_selectingKeyboard
.GetRow() + 1 );
8893 MakeCellVisible( m_selectingKeyboard
.GetRow(),
8894 m_selectingKeyboard
.GetCol() );
8895 HighlightBlock( m_currentCellCoords
, m_selectingKeyboard
);
8898 else if ( m_currentCellCoords
.GetRow() < m_numRows
- 1 )
8900 int row
= m_currentCellCoords
.GetRow() + 1;
8901 int col
= m_currentCellCoords
.GetCol();
8903 MakeCellVisible( row
, col
);
8904 SetCurrentCell( row
, col
);
8915 bool wxGrid::MoveCursorLeft( bool expandSelection
)
8917 if ( m_currentCellCoords
!= wxGridNoCellCoords
&&
8918 m_currentCellCoords
.GetCol() >= 0 )
8920 if ( expandSelection
)
8922 if ( m_selectingKeyboard
== wxGridNoCellCoords
)
8923 m_selectingKeyboard
= m_currentCellCoords
;
8924 if ( m_selectingKeyboard
.GetCol() > 0 )
8926 m_selectingKeyboard
.SetCol( m_selectingKeyboard
.GetCol() - 1 );
8927 MakeCellVisible( m_selectingKeyboard
.GetRow(),
8928 m_selectingKeyboard
.GetCol() );
8929 HighlightBlock( m_currentCellCoords
, m_selectingKeyboard
);
8932 else if ( GetColPos( m_currentCellCoords
.GetCol() ) > 0 )
8934 int row
= m_currentCellCoords
.GetRow();
8935 int col
= GetColAt( GetColPos( m_currentCellCoords
.GetCol() ) - 1 );
8938 MakeCellVisible( row
, col
);
8939 SetCurrentCell( row
, col
);
8950 bool wxGrid::MoveCursorRight( bool expandSelection
)
8952 if ( m_currentCellCoords
!= wxGridNoCellCoords
&&
8953 m_currentCellCoords
.GetCol() < m_numCols
)
8955 if ( expandSelection
)
8957 if ( m_selectingKeyboard
== wxGridNoCellCoords
)
8958 m_selectingKeyboard
= m_currentCellCoords
;
8959 if ( m_selectingKeyboard
.GetCol() < m_numCols
- 1 )
8961 m_selectingKeyboard
.SetCol( m_selectingKeyboard
.GetCol() + 1 );
8962 MakeCellVisible( m_selectingKeyboard
.GetRow(),
8963 m_selectingKeyboard
.GetCol() );
8964 HighlightBlock( m_currentCellCoords
, m_selectingKeyboard
);
8967 else if ( GetColPos( m_currentCellCoords
.GetCol() ) < m_numCols
- 1 )
8969 int row
= m_currentCellCoords
.GetRow();
8970 int col
= GetColAt( GetColPos( m_currentCellCoords
.GetCol() ) + 1 );
8973 MakeCellVisible( row
, col
);
8974 SetCurrentCell( row
, col
);
8985 bool wxGrid::MovePageUp()
8987 if ( m_currentCellCoords
== wxGridNoCellCoords
)
8990 int row
= m_currentCellCoords
.GetRow();
8994 m_gridWin
->GetClientSize( &cw
, &ch
);
8996 int y
= GetRowTop(row
);
8997 int newRow
= internalYToRow( y
- ch
+ 1 );
8999 if ( newRow
== row
)
9001 // row > 0, so newRow can never be less than 0 here.
9005 MakeCellVisible( newRow
, m_currentCellCoords
.GetCol() );
9006 SetCurrentCell( newRow
, m_currentCellCoords
.GetCol() );
9014 bool wxGrid::MovePageDown()
9016 if ( m_currentCellCoords
== wxGridNoCellCoords
)
9019 int row
= m_currentCellCoords
.GetRow();
9020 if ( (row
+ 1) < m_numRows
)
9023 m_gridWin
->GetClientSize( &cw
, &ch
);
9025 int y
= GetRowTop(row
);
9026 int newRow
= internalYToRow( y
+ ch
);
9027 if ( newRow
== row
)
9029 // row < m_numRows, so newRow can't overflow here.
9033 MakeCellVisible( newRow
, m_currentCellCoords
.GetCol() );
9034 SetCurrentCell( newRow
, m_currentCellCoords
.GetCol() );
9042 bool wxGrid::MoveCursorUpBlock( bool expandSelection
)
9045 m_currentCellCoords
!= wxGridNoCellCoords
&&
9046 m_currentCellCoords
.GetRow() > 0 )
9048 int row
= m_currentCellCoords
.GetRow();
9049 int col
= m_currentCellCoords
.GetCol();
9051 if ( m_table
->IsEmptyCell(row
, col
) )
9053 // starting in an empty cell: find the next block of
9059 if ( !(m_table
->IsEmptyCell(row
, col
)) )
9063 else if ( m_table
->IsEmptyCell(row
- 1, col
) )
9065 // starting at the top of a block: find the next block
9071 if ( !(m_table
->IsEmptyCell(row
, col
)) )
9077 // starting within a block: find the top of the block
9082 if ( m_table
->IsEmptyCell(row
, col
) )
9090 MakeCellVisible( row
, col
);
9091 if ( expandSelection
)
9093 m_selectingKeyboard
= wxGridCellCoords( row
, col
);
9094 HighlightBlock( m_currentCellCoords
, m_selectingKeyboard
);
9099 SetCurrentCell( row
, col
);
9108 bool wxGrid::MoveCursorDownBlock( bool expandSelection
)
9111 m_currentCellCoords
!= wxGridNoCellCoords
&&
9112 m_currentCellCoords
.GetRow() < m_numRows
- 1 )
9114 int row
= m_currentCellCoords
.GetRow();
9115 int col
= m_currentCellCoords
.GetCol();
9117 if ( m_table
->IsEmptyCell(row
, col
) )
9119 // starting in an empty cell: find the next block of
9122 while ( row
< m_numRows
- 1 )
9125 if ( !(m_table
->IsEmptyCell(row
, col
)) )
9129 else if ( m_table
->IsEmptyCell(row
+ 1, col
) )
9131 // starting at the bottom of a block: find the next block
9134 while ( row
< m_numRows
- 1 )
9137 if ( !(m_table
->IsEmptyCell(row
, col
)) )
9143 // starting within a block: find the bottom of the block
9145 while ( row
< m_numRows
- 1 )
9148 if ( m_table
->IsEmptyCell(row
, col
) )
9156 MakeCellVisible( row
, col
);
9157 if ( expandSelection
)
9159 m_selectingKeyboard
= wxGridCellCoords( row
, col
);
9160 HighlightBlock( m_currentCellCoords
, m_selectingKeyboard
);
9165 SetCurrentCell( row
, col
);
9174 bool wxGrid::MoveCursorLeftBlock( bool expandSelection
)
9177 m_currentCellCoords
!= wxGridNoCellCoords
&&
9178 m_currentCellCoords
.GetCol() > 0 )
9180 int row
= m_currentCellCoords
.GetRow();
9181 int col
= m_currentCellCoords
.GetCol();
9183 if ( m_table
->IsEmptyCell(row
, col
) )
9185 // starting in an empty cell: find the next block of
9191 if ( !(m_table
->IsEmptyCell(row
, col
)) )
9195 else if ( m_table
->IsEmptyCell(row
, col
- 1) )
9197 // starting at the left of a block: find the next block
9203 if ( !(m_table
->IsEmptyCell(row
, col
)) )
9209 // starting within a block: find the left of the block
9214 if ( m_table
->IsEmptyCell(row
, col
) )
9222 MakeCellVisible( row
, col
);
9223 if ( expandSelection
)
9225 m_selectingKeyboard
= wxGridCellCoords( row
, col
);
9226 HighlightBlock( m_currentCellCoords
, m_selectingKeyboard
);
9231 SetCurrentCell( row
, col
);
9240 bool wxGrid::MoveCursorRightBlock( bool expandSelection
)
9243 m_currentCellCoords
!= wxGridNoCellCoords
&&
9244 m_currentCellCoords
.GetCol() < m_numCols
- 1 )
9246 int row
= m_currentCellCoords
.GetRow();
9247 int col
= m_currentCellCoords
.GetCol();
9249 if ( m_table
->IsEmptyCell(row
, col
) )
9251 // starting in an empty cell: find the next block of
9254 while ( col
< m_numCols
- 1 )
9257 if ( !(m_table
->IsEmptyCell(row
, col
)) )
9261 else if ( m_table
->IsEmptyCell(row
, col
+ 1) )
9263 // starting at the right of a block: find the next block
9266 while ( col
< m_numCols
- 1 )
9269 if ( !(m_table
->IsEmptyCell(row
, col
)) )
9275 // starting within a block: find the right of the block
9277 while ( col
< m_numCols
- 1 )
9280 if ( m_table
->IsEmptyCell(row
, col
) )
9288 MakeCellVisible( row
, col
);
9289 if ( expandSelection
)
9291 m_selectingKeyboard
= wxGridCellCoords( row
, col
);
9292 HighlightBlock( m_currentCellCoords
, m_selectingKeyboard
);
9297 SetCurrentCell( row
, col
);
9307 // ------ Label values and formatting
9310 void wxGrid::GetRowLabelAlignment( int *horiz
, int *vert
) const
9313 *horiz
= m_rowLabelHorizAlign
;
9315 *vert
= m_rowLabelVertAlign
;
9318 void wxGrid::GetColLabelAlignment( int *horiz
, int *vert
) const
9321 *horiz
= m_colLabelHorizAlign
;
9323 *vert
= m_colLabelVertAlign
;
9326 int wxGrid::GetColLabelTextOrientation() const
9328 return m_colLabelTextOrientation
;
9331 wxString
wxGrid::GetRowLabelValue( int row
) const
9335 return m_table
->GetRowLabelValue( row
);
9345 wxString
wxGrid::GetColLabelValue( int col
) const
9349 return m_table
->GetColLabelValue( col
);
9359 void wxGrid::SetRowLabelSize( int width
)
9361 wxASSERT( width
>= 0 || width
== wxGRID_AUTOSIZE
);
9363 if ( width
== wxGRID_AUTOSIZE
)
9365 width
= CalcColOrRowLabelAreaMinSize(wxGRID_ROW
);
9368 if ( width
!= m_rowLabelWidth
)
9372 m_rowLabelWin
->Show( false );
9373 m_cornerLabelWin
->Show( false );
9375 else if ( m_rowLabelWidth
== 0 )
9377 m_rowLabelWin
->Show( true );
9378 if ( m_colLabelHeight
> 0 )
9379 m_cornerLabelWin
->Show( true );
9382 m_rowLabelWidth
= width
;
9384 wxScrolledWindow::Refresh( true );
9388 void wxGrid::SetColLabelSize( int height
)
9390 wxASSERT( height
>=0 || height
== wxGRID_AUTOSIZE
);
9392 if ( height
== wxGRID_AUTOSIZE
)
9394 height
= CalcColOrRowLabelAreaMinSize(wxGRID_COLUMN
);
9397 if ( height
!= m_colLabelHeight
)
9401 m_colLabelWin
->Show( false );
9402 m_cornerLabelWin
->Show( false );
9404 else if ( m_colLabelHeight
== 0 )
9406 m_colLabelWin
->Show( true );
9407 if ( m_rowLabelWidth
> 0 )
9408 m_cornerLabelWin
->Show( true );
9411 m_colLabelHeight
= height
;
9413 wxScrolledWindow::Refresh( true );
9417 void wxGrid::SetLabelBackgroundColour( const wxColour
& colour
)
9419 if ( m_labelBackgroundColour
!= colour
)
9421 m_labelBackgroundColour
= colour
;
9422 m_rowLabelWin
->SetBackgroundColour( colour
);
9423 m_colLabelWin
->SetBackgroundColour( colour
);
9424 m_cornerLabelWin
->SetBackgroundColour( colour
);
9426 if ( !GetBatchCount() )
9428 m_rowLabelWin
->Refresh();
9429 m_colLabelWin
->Refresh();
9430 m_cornerLabelWin
->Refresh();
9435 void wxGrid::SetLabelTextColour( const wxColour
& colour
)
9437 if ( m_labelTextColour
!= colour
)
9439 m_labelTextColour
= colour
;
9440 if ( !GetBatchCount() )
9442 m_rowLabelWin
->Refresh();
9443 m_colLabelWin
->Refresh();
9448 void wxGrid::SetLabelFont( const wxFont
& font
)
9451 if ( !GetBatchCount() )
9453 m_rowLabelWin
->Refresh();
9454 m_colLabelWin
->Refresh();
9458 void wxGrid::SetRowLabelAlignment( int horiz
, int vert
)
9460 // allow old (incorrect) defs to be used
9463 case wxLEFT
: horiz
= wxALIGN_LEFT
; break;
9464 case wxRIGHT
: horiz
= wxALIGN_RIGHT
; break;
9465 case wxCENTRE
: horiz
= wxALIGN_CENTRE
; break;
9470 case wxTOP
: vert
= wxALIGN_TOP
; break;
9471 case wxBOTTOM
: vert
= wxALIGN_BOTTOM
; break;
9472 case wxCENTRE
: vert
= wxALIGN_CENTRE
; break;
9475 if ( horiz
== wxALIGN_LEFT
|| horiz
== wxALIGN_CENTRE
|| horiz
== wxALIGN_RIGHT
)
9477 m_rowLabelHorizAlign
= horiz
;
9480 if ( vert
== wxALIGN_TOP
|| vert
== wxALIGN_CENTRE
|| vert
== wxALIGN_BOTTOM
)
9482 m_rowLabelVertAlign
= vert
;
9485 if ( !GetBatchCount() )
9487 m_rowLabelWin
->Refresh();
9491 void wxGrid::SetColLabelAlignment( int horiz
, int vert
)
9493 // allow old (incorrect) defs to be used
9496 case wxLEFT
: horiz
= wxALIGN_LEFT
; break;
9497 case wxRIGHT
: horiz
= wxALIGN_RIGHT
; break;
9498 case wxCENTRE
: horiz
= wxALIGN_CENTRE
; break;
9503 case wxTOP
: vert
= wxALIGN_TOP
; break;
9504 case wxBOTTOM
: vert
= wxALIGN_BOTTOM
; break;
9505 case wxCENTRE
: vert
= wxALIGN_CENTRE
; break;
9508 if ( horiz
== wxALIGN_LEFT
|| horiz
== wxALIGN_CENTRE
|| horiz
== wxALIGN_RIGHT
)
9510 m_colLabelHorizAlign
= horiz
;
9513 if ( vert
== wxALIGN_TOP
|| vert
== wxALIGN_CENTRE
|| vert
== wxALIGN_BOTTOM
)
9515 m_colLabelVertAlign
= vert
;
9518 if ( !GetBatchCount() )
9520 m_colLabelWin
->Refresh();
9524 // Note: under MSW, the default column label font must be changed because it
9525 // does not support vertical printing
9527 // Example: wxFont font(9, wxSWISS, wxNORMAL, wxBOLD);
9528 // pGrid->SetLabelFont(font);
9529 // pGrid->SetColLabelTextOrientation(wxVERTICAL);
9531 void wxGrid::SetColLabelTextOrientation( int textOrientation
)
9533 if ( textOrientation
== wxHORIZONTAL
|| textOrientation
== wxVERTICAL
)
9534 m_colLabelTextOrientation
= textOrientation
;
9536 if ( !GetBatchCount() )
9537 m_colLabelWin
->Refresh();
9540 void wxGrid::SetRowLabelValue( int row
, const wxString
& s
)
9544 m_table
->SetRowLabelValue( row
, s
);
9545 if ( !GetBatchCount() )
9547 wxRect rect
= CellToRect( row
, 0 );
9548 if ( rect
.height
> 0 )
9550 CalcScrolledPosition(0, rect
.y
, &rect
.x
, &rect
.y
);
9552 rect
.width
= m_rowLabelWidth
;
9553 m_rowLabelWin
->Refresh( true, &rect
);
9559 void wxGrid::SetColLabelValue( int col
, const wxString
& s
)
9563 m_table
->SetColLabelValue( col
, s
);
9564 if ( !GetBatchCount() )
9566 wxRect rect
= CellToRect( 0, col
);
9567 if ( rect
.width
> 0 )
9569 CalcScrolledPosition(rect
.x
, 0, &rect
.x
, &rect
.y
);
9571 rect
.height
= m_colLabelHeight
;
9572 m_colLabelWin
->Refresh( true, &rect
);
9578 void wxGrid::SetGridLineColour( const wxColour
& colour
)
9580 if ( m_gridLineColour
!= colour
)
9582 m_gridLineColour
= colour
;
9584 wxClientDC
dc( m_gridWin
);
9586 DrawAllGridLines( dc
, wxRegion() );
9590 void wxGrid::SetCellHighlightColour( const wxColour
& colour
)
9592 if ( m_cellHighlightColour
!= colour
)
9594 m_cellHighlightColour
= colour
;
9596 wxClientDC
dc( m_gridWin
);
9598 wxGridCellAttr
* attr
= GetCellAttr(m_currentCellCoords
);
9599 DrawCellHighlight(dc
, attr
);
9604 void wxGrid::SetCellHighlightPenWidth(int width
)
9606 if (m_cellHighlightPenWidth
!= width
)
9608 m_cellHighlightPenWidth
= width
;
9610 // Just redrawing the cell highlight is not enough since that won't
9611 // make any visible change if the the thickness is getting smaller.
9612 int row
= m_currentCellCoords
.GetRow();
9613 int col
= m_currentCellCoords
.GetCol();
9614 if ( row
== -1 || col
== -1 || GetColWidth(col
) <= 0 || GetRowHeight(row
) <= 0 )
9617 wxRect rect
= CellToRect(row
, col
);
9618 m_gridWin
->Refresh(true, &rect
);
9622 void wxGrid::SetCellHighlightROPenWidth(int width
)
9624 if (m_cellHighlightROPenWidth
!= width
)
9626 m_cellHighlightROPenWidth
= width
;
9628 // Just redrawing the cell highlight is not enough since that won't
9629 // make any visible change if the the thickness is getting smaller.
9630 int row
= m_currentCellCoords
.GetRow();
9631 int col
= m_currentCellCoords
.GetCol();
9632 if ( GetColWidth(col
) <= 0 || GetRowHeight(row
) <= 0 )
9635 wxRect rect
= CellToRect(row
, col
);
9636 m_gridWin
->Refresh(true, &rect
);
9640 void wxGrid::EnableGridLines( bool enable
)
9642 if ( enable
!= m_gridLinesEnabled
)
9644 m_gridLinesEnabled
= enable
;
9646 if ( !GetBatchCount() )
9650 wxClientDC
dc( m_gridWin
);
9652 DrawAllGridLines( dc
, wxRegion() );
9656 m_gridWin
->Refresh();
9662 int wxGrid::GetDefaultRowSize() const
9664 return m_defaultRowHeight
;
9667 int wxGrid::GetRowSize( int row
) const
9669 wxCHECK_MSG( row
>= 0 && row
< m_numRows
, 0, _T("invalid row index") );
9671 return GetRowHeight(row
);
9674 int wxGrid::GetDefaultColSize() const
9676 return m_defaultColWidth
;
9679 int wxGrid::GetColSize( int col
) const
9681 wxCHECK_MSG( col
>= 0 && col
< m_numCols
, 0, _T("invalid column index") );
9683 return GetColWidth(col
);
9686 // ============================================================================
9687 // access to the grid attributes: each of them has a default value in the grid
9688 // itself and may be overidden on a per-cell basis
9689 // ============================================================================
9691 // ----------------------------------------------------------------------------
9692 // setting default attributes
9693 // ----------------------------------------------------------------------------
9695 void wxGrid::SetDefaultCellBackgroundColour( const wxColour
& col
)
9697 m_defaultCellAttr
->SetBackgroundColour(col
);
9699 m_gridWin
->SetBackgroundColour(col
);
9703 void wxGrid::SetDefaultCellTextColour( const wxColour
& col
)
9705 m_defaultCellAttr
->SetTextColour(col
);
9708 void wxGrid::SetDefaultCellAlignment( int horiz
, int vert
)
9710 m_defaultCellAttr
->SetAlignment(horiz
, vert
);
9713 void wxGrid::SetDefaultCellOverflow( bool allow
)
9715 m_defaultCellAttr
->SetOverflow(allow
);
9718 void wxGrid::SetDefaultCellFont( const wxFont
& font
)
9720 m_defaultCellAttr
->SetFont(font
);
9723 // For editors and renderers the type registry takes precedence over the
9724 // default attr, so we need to register the new editor/renderer for the string
9725 // data type in order to make setting a default editor/renderer appear to
9728 void wxGrid::SetDefaultRenderer(wxGridCellRenderer
*renderer
)
9730 RegisterDataType(wxGRID_VALUE_STRING
,
9732 GetDefaultEditorForType(wxGRID_VALUE_STRING
));
9735 void wxGrid::SetDefaultEditor(wxGridCellEditor
*editor
)
9737 RegisterDataType(wxGRID_VALUE_STRING
,
9738 GetDefaultRendererForType(wxGRID_VALUE_STRING
),
9742 // ----------------------------------------------------------------------------
9743 // access to the default attributes
9744 // ----------------------------------------------------------------------------
9746 wxColour
wxGrid::GetDefaultCellBackgroundColour() const
9748 return m_defaultCellAttr
->GetBackgroundColour();
9751 wxColour
wxGrid::GetDefaultCellTextColour() const
9753 return m_defaultCellAttr
->GetTextColour();
9756 wxFont
wxGrid::GetDefaultCellFont() const
9758 return m_defaultCellAttr
->GetFont();
9761 void wxGrid::GetDefaultCellAlignment( int *horiz
, int *vert
) const
9763 m_defaultCellAttr
->GetAlignment(horiz
, vert
);
9766 bool wxGrid::GetDefaultCellOverflow() const
9768 return m_defaultCellAttr
->GetOverflow();
9771 wxGridCellRenderer
*wxGrid::GetDefaultRenderer() const
9773 return m_defaultCellAttr
->GetRenderer(NULL
, 0, 0);
9776 wxGridCellEditor
*wxGrid::GetDefaultEditor() const
9778 return m_defaultCellAttr
->GetEditor(NULL
, 0, 0);
9781 // ----------------------------------------------------------------------------
9782 // access to cell attributes
9783 // ----------------------------------------------------------------------------
9785 wxColour
wxGrid::GetCellBackgroundColour(int row
, int col
) const
9787 wxGridCellAttr
*attr
= GetCellAttr(row
, col
);
9788 wxColour colour
= attr
->GetBackgroundColour();
9794 wxColour
wxGrid::GetCellTextColour( int row
, int col
) const
9796 wxGridCellAttr
*attr
= GetCellAttr(row
, col
);
9797 wxColour colour
= attr
->GetTextColour();
9803 wxFont
wxGrid::GetCellFont( int row
, int col
) const
9805 wxGridCellAttr
*attr
= GetCellAttr(row
, col
);
9806 wxFont font
= attr
->GetFont();
9812 void wxGrid::GetCellAlignment( int row
, int col
, int *horiz
, int *vert
) const
9814 wxGridCellAttr
*attr
= GetCellAttr(row
, col
);
9815 attr
->GetAlignment(horiz
, vert
);
9819 bool wxGrid::GetCellOverflow( int row
, int col
) const
9821 wxGridCellAttr
*attr
= GetCellAttr(row
, col
);
9822 bool allow
= attr
->GetOverflow();
9828 void wxGrid::GetCellSize( int row
, int col
, int *num_rows
, int *num_cols
) const
9830 wxGridCellAttr
*attr
= GetCellAttr(row
, col
);
9831 attr
->GetSize( num_rows
, num_cols
);
9835 wxGridCellRenderer
* wxGrid::GetCellRenderer(int row
, int col
) const
9837 wxGridCellAttr
* attr
= GetCellAttr(row
, col
);
9838 wxGridCellRenderer
* renderer
= attr
->GetRenderer(this, row
, col
);
9844 wxGridCellEditor
* wxGrid::GetCellEditor(int row
, int col
) const
9846 wxGridCellAttr
* attr
= GetCellAttr(row
, col
);
9847 wxGridCellEditor
* editor
= attr
->GetEditor(this, row
, col
);
9853 bool wxGrid::IsReadOnly(int row
, int col
) const
9855 wxGridCellAttr
* attr
= GetCellAttr(row
, col
);
9856 bool isReadOnly
= attr
->IsReadOnly();
9862 // ----------------------------------------------------------------------------
9863 // attribute support: cache, automatic provider creation, ...
9864 // ----------------------------------------------------------------------------
9866 bool wxGrid::CanHaveAttributes() const
9873 return m_table
->CanHaveAttributes();
9876 void wxGrid::ClearAttrCache()
9878 if ( m_attrCache
.row
!= -1 )
9880 wxSafeDecRef(m_attrCache
.attr
);
9881 m_attrCache
.attr
= NULL
;
9882 m_attrCache
.row
= -1;
9886 void wxGrid::CacheAttr(int row
, int col
, wxGridCellAttr
*attr
) const
9890 wxGrid
*self
= (wxGrid
*)this; // const_cast
9892 self
->ClearAttrCache();
9893 self
->m_attrCache
.row
= row
;
9894 self
->m_attrCache
.col
= col
;
9895 self
->m_attrCache
.attr
= attr
;
9900 bool wxGrid::LookupAttr(int row
, int col
, wxGridCellAttr
**attr
) const
9902 if ( row
== m_attrCache
.row
&& col
== m_attrCache
.col
)
9904 *attr
= m_attrCache
.attr
;
9905 wxSafeIncRef(m_attrCache
.attr
);
9907 #ifdef DEBUG_ATTR_CACHE
9908 gs_nAttrCacheHits
++;
9915 #ifdef DEBUG_ATTR_CACHE
9916 gs_nAttrCacheMisses
++;
9923 wxGridCellAttr
*wxGrid::GetCellAttr(int row
, int col
) const
9925 wxGridCellAttr
*attr
= NULL
;
9926 // Additional test to avoid looking at the cache e.g. for
9927 // wxNoCellCoords, as this will confuse memory management.
9930 if ( !LookupAttr(row
, col
, &attr
) )
9932 attr
= m_table
? m_table
->GetAttr(row
, col
, wxGridCellAttr::Any
)
9933 : (wxGridCellAttr
*)NULL
;
9934 CacheAttr(row
, col
, attr
);
9940 attr
->SetDefAttr(m_defaultCellAttr
);
9944 attr
= m_defaultCellAttr
;
9951 wxGridCellAttr
*wxGrid::GetOrCreateCellAttr(int row
, int col
) const
9953 wxGridCellAttr
*attr
= (wxGridCellAttr
*)NULL
;
9954 bool canHave
= ((wxGrid
*)this)->CanHaveAttributes();
9956 wxCHECK_MSG( canHave
, attr
, _T("Cell attributes not allowed"));
9957 wxCHECK_MSG( m_table
, attr
, _T("must have a table") );
9959 attr
= m_table
->GetAttr(row
, col
, wxGridCellAttr::Cell
);
9962 attr
= new wxGridCellAttr(m_defaultCellAttr
);
9964 // artificially inc the ref count to match DecRef() in caller
9966 m_table
->SetAttr(attr
, row
, col
);
9972 // ----------------------------------------------------------------------------
9973 // setting column attributes (wrappers around SetColAttr)
9974 // ----------------------------------------------------------------------------
9976 void wxGrid::SetColFormatBool(int col
)
9978 SetColFormatCustom(col
, wxGRID_VALUE_BOOL
);
9981 void wxGrid::SetColFormatNumber(int col
)
9983 SetColFormatCustom(col
, wxGRID_VALUE_NUMBER
);
9986 void wxGrid::SetColFormatFloat(int col
, int width
, int precision
)
9988 wxString typeName
= wxGRID_VALUE_FLOAT
;
9989 if ( (width
!= -1) || (precision
!= -1) )
9991 typeName
<< _T(':') << width
<< _T(',') << precision
;
9994 SetColFormatCustom(col
, typeName
);
9997 void wxGrid::SetColFormatCustom(int col
, const wxString
& typeName
)
9999 wxGridCellAttr
*attr
= m_table
->GetAttr(-1, col
, wxGridCellAttr::Col
);
10001 attr
= new wxGridCellAttr
;
10002 wxGridCellRenderer
*renderer
= GetDefaultRendererForType(typeName
);
10003 attr
->SetRenderer(renderer
);
10005 SetColAttr(col
, attr
);
10009 // ----------------------------------------------------------------------------
10010 // setting cell attributes: this is forwarded to the table
10011 // ----------------------------------------------------------------------------
10013 void wxGrid::SetAttr(int row
, int col
, wxGridCellAttr
*attr
)
10015 if ( CanHaveAttributes() )
10017 m_table
->SetAttr(attr
, row
, col
);
10022 wxSafeDecRef(attr
);
10026 void wxGrid::SetRowAttr(int row
, wxGridCellAttr
*attr
)
10028 if ( CanHaveAttributes() )
10030 m_table
->SetRowAttr(attr
, row
);
10035 wxSafeDecRef(attr
);
10039 void wxGrid::SetColAttr(int col
, wxGridCellAttr
*attr
)
10041 if ( CanHaveAttributes() )
10043 m_table
->SetColAttr(attr
, col
);
10048 wxSafeDecRef(attr
);
10052 void wxGrid::SetCellBackgroundColour( int row
, int col
, const wxColour
& colour
)
10054 if ( CanHaveAttributes() )
10056 wxGridCellAttr
*attr
= GetOrCreateCellAttr(row
, col
);
10057 attr
->SetBackgroundColour(colour
);
10062 void wxGrid::SetCellTextColour( int row
, int col
, const wxColour
& colour
)
10064 if ( CanHaveAttributes() )
10066 wxGridCellAttr
*attr
= GetOrCreateCellAttr(row
, col
);
10067 attr
->SetTextColour(colour
);
10072 void wxGrid::SetCellFont( int row
, int col
, const wxFont
& font
)
10074 if ( CanHaveAttributes() )
10076 wxGridCellAttr
*attr
= GetOrCreateCellAttr(row
, col
);
10077 attr
->SetFont(font
);
10082 void wxGrid::SetCellAlignment( int row
, int col
, int horiz
, int vert
)
10084 if ( CanHaveAttributes() )
10086 wxGridCellAttr
*attr
= GetOrCreateCellAttr(row
, col
);
10087 attr
->SetAlignment(horiz
, vert
);
10092 void wxGrid::SetCellOverflow( int row
, int col
, bool allow
)
10094 if ( CanHaveAttributes() )
10096 wxGridCellAttr
*attr
= GetOrCreateCellAttr(row
, col
);
10097 attr
->SetOverflow(allow
);
10102 void wxGrid::SetCellSize( int row
, int col
, int num_rows
, int num_cols
)
10104 if ( CanHaveAttributes() )
10106 int cell_rows
, cell_cols
;
10108 wxGridCellAttr
*attr
= GetOrCreateCellAttr(row
, col
);
10109 attr
->GetSize(&cell_rows
, &cell_cols
);
10110 attr
->SetSize(num_rows
, num_cols
);
10113 // Cannot set the size of a cell to 0 or negative values
10114 // While it is perfectly legal to do that, this function cannot
10115 // handle all the possibilies, do it by hand by getting the CellAttr.
10116 // You can only set the size of a cell to 1,1 or greater with this fn
10117 wxASSERT_MSG( !((cell_rows
< 1) || (cell_cols
< 1)),
10118 wxT("wxGrid::SetCellSize setting cell size that is already part of another cell"));
10119 wxASSERT_MSG( !((num_rows
< 1) || (num_cols
< 1)),
10120 wxT("wxGrid::SetCellSize setting cell size to < 1"));
10122 // if this was already a multicell then "turn off" the other cells first
10123 if ((cell_rows
> 1) || (cell_rows
> 1))
10126 for (j
=row
; j
< row
+ cell_rows
; j
++)
10128 for (i
=col
; i
< col
+ cell_cols
; i
++)
10130 if ((i
!= col
) || (j
!= row
))
10132 wxGridCellAttr
*attr_stub
= GetOrCreateCellAttr(j
, i
);
10133 attr_stub
->SetSize( 1, 1 );
10134 attr_stub
->DecRef();
10140 // mark the cells that will be covered by this cell to
10141 // negative or zero values to point back at this cell
10142 if (((num_rows
> 1) || (num_cols
> 1)) && (num_rows
>= 1) && (num_cols
>= 1))
10145 for (j
=row
; j
< row
+ num_rows
; j
++)
10147 for (i
=col
; i
< col
+ num_cols
; i
++)
10149 if ((i
!= col
) || (j
!= row
))
10151 wxGridCellAttr
*attr_stub
= GetOrCreateCellAttr(j
, i
);
10152 attr_stub
->SetSize( row
- j
, col
- i
);
10153 attr_stub
->DecRef();
10161 void wxGrid::SetCellRenderer(int row
, int col
, wxGridCellRenderer
*renderer
)
10163 if ( CanHaveAttributes() )
10165 wxGridCellAttr
*attr
= GetOrCreateCellAttr(row
, col
);
10166 attr
->SetRenderer(renderer
);
10171 void wxGrid::SetCellEditor(int row
, int col
, wxGridCellEditor
* editor
)
10173 if ( CanHaveAttributes() )
10175 wxGridCellAttr
*attr
= GetOrCreateCellAttr(row
, col
);
10176 attr
->SetEditor(editor
);
10181 void wxGrid::SetReadOnly(int row
, int col
, bool isReadOnly
)
10183 if ( CanHaveAttributes() )
10185 wxGridCellAttr
*attr
= GetOrCreateCellAttr(row
, col
);
10186 attr
->SetReadOnly(isReadOnly
);
10191 // ----------------------------------------------------------------------------
10192 // Data type registration
10193 // ----------------------------------------------------------------------------
10195 void wxGrid::RegisterDataType(const wxString
& typeName
,
10196 wxGridCellRenderer
* renderer
,
10197 wxGridCellEditor
* editor
)
10199 m_typeRegistry
->RegisterDataType(typeName
, renderer
, editor
);
10203 wxGridCellEditor
* wxGrid::GetDefaultEditorForCell(int row
, int col
) const
10205 wxString typeName
= m_table
->GetTypeName(row
, col
);
10206 return GetDefaultEditorForType(typeName
);
10209 wxGridCellRenderer
* wxGrid::GetDefaultRendererForCell(int row
, int col
) const
10211 wxString typeName
= m_table
->GetTypeName(row
, col
);
10212 return GetDefaultRendererForType(typeName
);
10215 wxGridCellEditor
* wxGrid::GetDefaultEditorForType(const wxString
& typeName
) const
10217 int index
= m_typeRegistry
->FindOrCloneDataType(typeName
);
10218 if ( index
== wxNOT_FOUND
)
10220 wxFAIL_MSG(wxString::Format(wxT("Unknown data type name [%s]"), typeName
.c_str()));
10225 return m_typeRegistry
->GetEditor(index
);
10228 wxGridCellRenderer
* wxGrid::GetDefaultRendererForType(const wxString
& typeName
) const
10230 int index
= m_typeRegistry
->FindOrCloneDataType(typeName
);
10231 if ( index
== wxNOT_FOUND
)
10233 wxFAIL_MSG(wxString::Format(wxT("Unknown data type name [%s]"), typeName
.c_str()));
10238 return m_typeRegistry
->GetRenderer(index
);
10241 // ----------------------------------------------------------------------------
10243 // ----------------------------------------------------------------------------
10245 void wxGrid::EnableDragRowSize( bool enable
)
10247 m_canDragRowSize
= enable
;
10250 void wxGrid::EnableDragColSize( bool enable
)
10252 m_canDragColSize
= enable
;
10255 void wxGrid::EnableDragGridSize( bool enable
)
10257 m_canDragGridSize
= enable
;
10260 void wxGrid::EnableDragCell( bool enable
)
10262 m_canDragCell
= enable
;
10265 void wxGrid::SetDefaultRowSize( int height
, bool resizeExistingRows
)
10267 m_defaultRowHeight
= wxMax( height
, m_minAcceptableRowHeight
);
10269 if ( resizeExistingRows
)
10271 // since we are resizing all rows to the default row size,
10272 // we can simply clear the row heights and row bottoms
10273 // arrays (which also allows us to take advantage of
10274 // some speed optimisations)
10275 m_rowHeights
.Empty();
10276 m_rowBottoms
.Empty();
10277 if ( !GetBatchCount() )
10282 void wxGrid::SetRowSize( int row
, int height
)
10284 wxCHECK_RET( row
>= 0 && row
< m_numRows
, _T("invalid row index") );
10286 // See comment in SetColSize
10287 if ( height
< GetRowMinimalAcceptableHeight())
10290 if ( m_rowHeights
.IsEmpty() )
10292 // need to really create the array
10296 int h
= wxMax( 0, height
);
10297 int diff
= h
- m_rowHeights
[row
];
10299 m_rowHeights
[row
] = h
;
10300 for ( int i
= row
; i
< m_numRows
; i
++ )
10302 m_rowBottoms
[i
] += diff
;
10305 if ( !GetBatchCount() )
10309 void wxGrid::SetDefaultColSize( int width
, bool resizeExistingCols
)
10311 // we dont allow zero default column width
10312 m_defaultColWidth
= wxMax( wxMax( width
, m_minAcceptableColWidth
), 1 );
10314 if ( resizeExistingCols
)
10316 // since we are resizing all columns to the default column size,
10317 // we can simply clear the col widths and col rights
10318 // arrays (which also allows us to take advantage of
10319 // some speed optimisations)
10320 m_colWidths
.Empty();
10321 m_colRights
.Empty();
10322 if ( !GetBatchCount() )
10327 void wxGrid::SetColSize( int col
, int width
)
10329 wxCHECK_RET( col
>= 0 && col
< m_numCols
, _T("invalid column index") );
10331 // should we check that it's bigger than GetColMinimalWidth(col) here?
10333 // No, because it is reasonable to assume the library user know's
10334 // what he is doing. However we should test against the weaker
10335 // constraint of minimalAcceptableWidth, as this breaks rendering
10337 // This test then fixes sf.net bug #645734
10339 if ( width
< GetColMinimalAcceptableWidth() )
10342 if ( m_colWidths
.IsEmpty() )
10344 // need to really create the array
10348 // if < 0 then calculate new width from label
10352 wxArrayString lines
;
10353 wxClientDC
dc(m_colLabelWin
);
10354 dc
.SetFont(GetLabelFont());
10355 StringToLines(GetColLabelValue(col
), lines
);
10356 GetTextBoxSize(dc
, lines
, &w
, &h
);
10360 int w
= wxMax( 0, width
);
10361 int diff
= w
- m_colWidths
[col
];
10362 m_colWidths
[col
] = w
;
10364 for ( int colPos
= GetColPos(col
); colPos
< m_numCols
; colPos
++ )
10366 m_colRights
[GetColAt(colPos
)] += diff
;
10369 if ( !GetBatchCount() )
10373 void wxGrid::SetColMinimalWidth( int col
, int width
)
10375 if (width
> GetColMinimalAcceptableWidth())
10377 wxLongToLongHashMap::key_type key
= (wxLongToLongHashMap::key_type
)col
;
10378 m_colMinWidths
[key
] = width
;
10382 void wxGrid::SetRowMinimalHeight( int row
, int width
)
10384 if (width
> GetRowMinimalAcceptableHeight())
10386 wxLongToLongHashMap::key_type key
= (wxLongToLongHashMap::key_type
)row
;
10387 m_rowMinHeights
[key
] = width
;
10391 int wxGrid::GetColMinimalWidth(int col
) const
10393 wxLongToLongHashMap::key_type key
= (wxLongToLongHashMap::key_type
)col
;
10394 wxLongToLongHashMap::const_iterator it
= m_colMinWidths
.find(key
);
10396 return it
!= m_colMinWidths
.end() ? (int)it
->second
: m_minAcceptableColWidth
;
10399 int wxGrid::GetRowMinimalHeight(int row
) const
10401 wxLongToLongHashMap::key_type key
= (wxLongToLongHashMap::key_type
)row
;
10402 wxLongToLongHashMap::const_iterator it
= m_rowMinHeights
.find(key
);
10404 return it
!= m_rowMinHeights
.end() ? (int)it
->second
: m_minAcceptableRowHeight
;
10407 void wxGrid::SetColMinimalAcceptableWidth( int width
)
10409 // We do allow a width of 0 since this gives us
10410 // an easy way to temporarily hiding columns.
10412 m_minAcceptableColWidth
= width
;
10415 void wxGrid::SetRowMinimalAcceptableHeight( int height
)
10417 // We do allow a height of 0 since this gives us
10418 // an easy way to temporarily hiding rows.
10420 m_minAcceptableRowHeight
= height
;
10423 int wxGrid::GetColMinimalAcceptableWidth() const
10425 return m_minAcceptableColWidth
;
10428 int wxGrid::GetRowMinimalAcceptableHeight() const
10430 return m_minAcceptableRowHeight
;
10433 // ----------------------------------------------------------------------------
10435 // ----------------------------------------------------------------------------
10438 wxGrid::AutoSizeColOrRow(int colOrRow
, bool setAsMin
, wxGridDirection direction
)
10440 const bool column
= direction
== wxGRID_COLUMN
;
10442 wxClientDC
dc(m_gridWin
);
10444 // cancel editing of cell
10445 HideCellEditControl();
10446 SaveEditControlValue();
10448 // init both of them to avoid compiler warnings, even if we only need one
10456 wxCoord extent
, extentMax
= 0;
10457 int max
= column
? m_numRows
: m_numCols
;
10458 for ( int rowOrCol
= 0; rowOrCol
< max
; rowOrCol
++ )
10465 wxGridCellAttr
*attr
= GetCellAttr(row
, col
);
10466 wxGridCellRenderer
*renderer
= attr
->GetRenderer(this, row
, col
);
10469 wxSize size
= renderer
->GetBestSize(*this, *attr
, dc
, row
, col
);
10470 extent
= column
? size
.x
: size
.y
;
10471 if ( extent
> extentMax
)
10472 extentMax
= extent
;
10474 renderer
->DecRef();
10480 // now also compare with the column label extent
10482 dc
.SetFont( GetLabelFont() );
10486 dc
.GetMultiLineTextExtent( GetColLabelValue(col
), &w
, &h
);
10487 if ( GetColLabelTextOrientation() == wxVERTICAL
)
10491 dc
.GetMultiLineTextExtent( GetRowLabelValue(row
), &w
, &h
);
10493 extent
= column
? w
: h
;
10494 if ( extent
> extentMax
)
10495 extentMax
= extent
;
10499 // empty column - give default extent (notice that if extentMax is less
10500 // than default extent but != 0, it's OK)
10501 extentMax
= column
? m_defaultColWidth
: m_defaultRowHeight
;
10506 // leave some space around text
10514 // Ensure automatic width is not less than minimal width. See the
10515 // comment in SetColSize() for explanation of why this isn't done
10516 // in SetColSize().
10518 extentMax
= wxMax(extentMax
, GetColMinimalWidth(col
));
10520 SetColSize( col
, extentMax
);
10521 if ( !GetBatchCount() )
10524 m_gridWin
->GetClientSize( &cw
, &ch
);
10525 wxRect
rect ( CellToRect( 0, col
) );
10527 CalcScrolledPosition(rect
.x
, 0, &rect
.x
, &dummy
);
10528 rect
.width
= cw
- rect
.x
;
10529 rect
.height
= m_colLabelHeight
;
10530 m_colLabelWin
->Refresh( true, &rect
);
10535 // Ensure automatic width is not less than minimal height. See the
10536 // comment in SetColSize() for explanation of why this isn't done
10537 // in SetRowSize().
10539 extentMax
= wxMax(extentMax
, GetRowMinimalHeight(row
));
10541 SetRowSize(row
, extentMax
);
10542 if ( !GetBatchCount() )
10545 m_gridWin
->GetClientSize( &cw
, &ch
);
10546 wxRect
rect( CellToRect( row
, 0 ) );
10548 CalcScrolledPosition(0, rect
.y
, &dummy
, &rect
.y
);
10549 rect
.width
= m_rowLabelWidth
;
10550 rect
.height
= ch
- rect
.y
;
10551 m_rowLabelWin
->Refresh( true, &rect
);
10558 SetColMinimalWidth(col
, extentMax
);
10560 SetRowMinimalHeight(row
, extentMax
);
10564 wxCoord
wxGrid::CalcColOrRowLabelAreaMinSize(wxGridDirection direction
)
10566 // calculate size for the rows or columns?
10567 const bool calcRows
= direction
== wxGRID_ROW
;
10569 wxClientDC
dc(calcRows
? GetGridRowLabelWindow()
10570 : GetGridColLabelWindow());
10571 dc
.SetFont(GetLabelFont());
10573 // which dimension should we take into account for calculations?
10575 // for columns, the text can be only horizontal so it's easy but for rows
10576 // we also have to take into account the text orientation
10578 useWidth
= calcRows
|| (GetColLabelTextOrientation() == wxVERTICAL
);
10580 wxArrayString lines
;
10581 wxCoord extentMax
= 0;
10583 const int numRowsOrCols
= calcRows
? m_numRows
: m_numCols
;
10584 for ( int rowOrCol
= 0; rowOrCol
< numRowsOrCols
; rowOrCol
++ )
10588 wxString label
= calcRows
? GetRowLabelValue(rowOrCol
)
10589 : GetColLabelValue(rowOrCol
);
10590 StringToLines(label
, lines
);
10593 GetTextBoxSize(dc
, lines
, &w
, &h
);
10595 const wxCoord extent
= useWidth
? w
: h
;
10596 if ( extent
> extentMax
)
10597 extentMax
= extent
;
10602 // empty column - give default extent (notice that if extentMax is less
10603 // than default extent but != 0, it's OK)
10604 extentMax
= calcRows
? GetDefaultRowLabelSize()
10605 : GetDefaultColLabelSize();
10608 // leave some space around text (taken from AutoSizeColOrRow)
10617 int wxGrid::SetOrCalcColumnSizes(bool calcOnly
, bool setAsMin
)
10619 int width
= m_rowLabelWidth
;
10621 wxGridUpdateLocker locker
;
10623 locker
.Create(this);
10625 for ( int col
= 0; col
< m_numCols
; col
++ )
10628 AutoSizeColumn(col
, setAsMin
);
10630 width
+= GetColWidth(col
);
10636 int wxGrid::SetOrCalcRowSizes(bool calcOnly
, bool setAsMin
)
10638 int height
= m_colLabelHeight
;
10640 wxGridUpdateLocker locker
;
10642 locker
.Create(this);
10644 for ( int row
= 0; row
< m_numRows
; row
++ )
10647 AutoSizeRow(row
, setAsMin
);
10649 height
+= GetRowHeight(row
);
10655 void wxGrid::AutoSize()
10657 wxGridUpdateLocker
locker(this);
10659 // we need to round up the size of the scrollable area to a multiple of
10660 // scroll step to ensure that we don't get the scrollbars when we're sized
10661 // exactly to fit our contents
10662 wxSize
size(SetOrCalcColumnSizes(false) - m_rowLabelWidth
+ m_extraWidth
,
10663 SetOrCalcRowSizes(false) - m_colLabelHeight
+ m_extraHeight
);
10664 wxSize
sizeFit(GetScrollX(size
.x
) * GetScrollLineX(),
10665 GetScrollY(size
.y
) * GetScrollLineY());
10667 // distribute the extra space between the columns/rows to avoid having
10668 // extra white space
10669 wxCoord diff
= sizeFit
.x
- size
.x
;
10670 if ( diff
&& m_numCols
)
10672 // try to resize the columns uniformly
10673 wxCoord diffPerCol
= diff
/ m_numCols
;
10676 for ( int col
= 0; col
< m_numCols
; col
++ )
10678 SetColSize(col
, GetColWidth(col
) + diffPerCol
);
10682 // add remaining amount to the last columns
10683 diff
-= diffPerCol
* m_numCols
;
10686 for ( int col
= m_numCols
- 1; col
>= m_numCols
- diff
; col
-- )
10688 SetColSize(col
, GetColWidth(col
) + 1);
10694 diff
= sizeFit
.y
- size
.y
;
10695 if ( diff
&& m_numRows
)
10697 // try to resize the columns uniformly
10698 wxCoord diffPerRow
= diff
/ m_numRows
;
10701 for ( int row
= 0; row
< m_numRows
; row
++ )
10703 SetRowSize(row
, GetRowHeight(row
) + diffPerRow
);
10707 // add remaining amount to the last rows
10708 diff
-= diffPerRow
* m_numRows
;
10711 for ( int row
= m_numRows
- 1; row
>= m_numRows
- diff
; row
-- )
10713 SetRowSize(row
, GetRowHeight(row
) + 1);
10718 // we know that we're not going to have scrollbars so disable them now to
10719 // avoid trouble in SetClientSize() which can otherwise set the correct
10720 // client size but also leave space for (not needed any more) scrollbars
10721 SetScrollbars(0, 0, 0, 0, 0, 0, true);
10722 SetClientSize(sizeFit
.x
+ m_rowLabelWidth
, sizeFit
.y
+ m_colLabelHeight
);
10725 void wxGrid::AutoSizeRowLabelSize( int row
)
10727 wxArrayString lines
;
10730 // Hide the edit control, so it
10731 // won't interfere with drag-shrinking.
10732 if ( IsCellEditControlShown() )
10734 HideCellEditControl();
10735 SaveEditControlValue();
10738 // autosize row height depending on label text
10739 StringToLines( GetRowLabelValue( row
), lines
);
10740 wxClientDC
dc( m_rowLabelWin
);
10741 GetTextBoxSize( dc
, lines
, &w
, &h
);
10742 if ( h
< m_defaultRowHeight
)
10743 h
= m_defaultRowHeight
;
10744 SetRowSize(row
, h
);
10748 void wxGrid::AutoSizeColLabelSize( int col
)
10750 wxArrayString lines
;
10753 // Hide the edit control, so it
10754 // won't interfere with drag-shrinking.
10755 if ( IsCellEditControlShown() )
10757 HideCellEditControl();
10758 SaveEditControlValue();
10761 // autosize column width depending on label text
10762 StringToLines( GetColLabelValue( col
), lines
);
10763 wxClientDC
dc( m_colLabelWin
);
10764 if ( GetColLabelTextOrientation() == wxHORIZONTAL
)
10765 GetTextBoxSize( dc
, lines
, &w
, &h
);
10767 GetTextBoxSize( dc
, lines
, &h
, &w
);
10768 if ( w
< m_defaultColWidth
)
10769 w
= m_defaultColWidth
;
10770 SetColSize(col
, w
);
10774 wxSize
wxGrid::DoGetBestSize() const
10776 wxGrid
*self
= (wxGrid
*)this; // const_cast
10778 // we do the same as in AutoSize() here with the exception that we don't
10779 // change the column/row sizes, only calculate them
10780 wxSize
size(self
->SetOrCalcColumnSizes(true) - m_rowLabelWidth
+ m_extraWidth
,
10781 self
->SetOrCalcRowSizes(true) - m_colLabelHeight
+ m_extraHeight
);
10782 wxSize
sizeFit(GetScrollX(size
.x
) * GetScrollLineX(),
10783 GetScrollY(size
.y
) * GetScrollLineY());
10785 // NOTE: This size should be cached, but first we need to add calls to
10786 // InvalidateBestSize everywhere that could change the results of this
10788 // CacheBestSize(size);
10790 return wxSize(sizeFit
.x
+ m_rowLabelWidth
, sizeFit
.y
+ m_colLabelHeight
)
10791 + GetWindowBorderSize();
10799 wxPen
& wxGrid::GetDividerPen() const
10804 // ----------------------------------------------------------------------------
10805 // cell value accessor functions
10806 // ----------------------------------------------------------------------------
10808 void wxGrid::SetCellValue( int row
, int col
, const wxString
& s
)
10812 m_table
->SetValue( row
, col
, s
);
10813 if ( !GetBatchCount() )
10816 wxRect
rect( CellToRect( row
, col
) );
10818 rect
.width
= m_gridWin
->GetClientSize().GetWidth();
10819 CalcScrolledPosition(0, rect
.y
, &dummy
, &rect
.y
);
10820 m_gridWin
->Refresh( false, &rect
);
10823 if ( m_currentCellCoords
.GetRow() == row
&&
10824 m_currentCellCoords
.GetCol() == col
&&
10825 IsCellEditControlShown())
10826 // Note: If we are using IsCellEditControlEnabled,
10827 // this interacts badly with calling SetCellValue from
10828 // an EVT_GRID_CELL_CHANGE handler.
10830 HideCellEditControl();
10831 ShowCellEditControl(); // will reread data from table
10836 // ----------------------------------------------------------------------------
10837 // block, row and column selection
10838 // ----------------------------------------------------------------------------
10840 void wxGrid::SelectRow( int row
, bool addToSelected
)
10842 if ( IsSelection() && !addToSelected
)
10846 m_selection
->SelectRow( row
, false, addToSelected
);
10849 void wxGrid::SelectCol( int col
, bool addToSelected
)
10851 if ( IsSelection() && !addToSelected
)
10855 m_selection
->SelectCol( col
, false, addToSelected
);
10858 void wxGrid::SelectBlock( int topRow
, int leftCol
, int bottomRow
, int rightCol
,
10859 bool addToSelected
)
10861 if ( IsSelection() && !addToSelected
)
10865 m_selection
->SelectBlock( topRow
, leftCol
, bottomRow
, rightCol
,
10866 false, addToSelected
);
10869 void wxGrid::SelectAll()
10871 if ( m_numRows
> 0 && m_numCols
> 0 )
10874 m_selection
->SelectBlock( 0, 0, m_numRows
- 1, m_numCols
- 1 );
10878 // ----------------------------------------------------------------------------
10879 // cell, row and col deselection
10880 // ----------------------------------------------------------------------------
10882 void wxGrid::DeselectRow( int row
)
10884 if ( !m_selection
)
10887 if ( m_selection
->GetSelectionMode() == wxGrid::wxGridSelectRows
)
10889 if ( m_selection
->IsInSelection(row
, 0 ) )
10890 m_selection
->ToggleCellSelection(row
, 0);
10894 int nCols
= GetNumberCols();
10895 for ( int i
= 0; i
< nCols
; i
++ )
10897 if ( m_selection
->IsInSelection(row
, i
) )
10898 m_selection
->ToggleCellSelection(row
, i
);
10903 void wxGrid::DeselectCol( int col
)
10905 if ( !m_selection
)
10908 if ( m_selection
->GetSelectionMode() == wxGrid::wxGridSelectColumns
)
10910 if ( m_selection
->IsInSelection(0, col
) )
10911 m_selection
->ToggleCellSelection(0, col
);
10915 int nRows
= GetNumberRows();
10916 for ( int i
= 0; i
< nRows
; i
++ )
10918 if ( m_selection
->IsInSelection(i
, col
) )
10919 m_selection
->ToggleCellSelection(i
, col
);
10924 void wxGrid::DeselectCell( int row
, int col
)
10926 if ( m_selection
&& m_selection
->IsInSelection(row
, col
) )
10927 m_selection
->ToggleCellSelection(row
, col
);
10930 bool wxGrid::IsSelection() const
10932 return ( m_selection
&& (m_selection
->IsSelection() ||
10933 ( m_selectingTopLeft
!= wxGridNoCellCoords
&&
10934 m_selectingBottomRight
!= wxGridNoCellCoords
) ) );
10937 bool wxGrid::IsInSelection( int row
, int col
) const
10939 return ( m_selection
&& (m_selection
->IsInSelection( row
, col
) ||
10940 ( row
>= m_selectingTopLeft
.GetRow() &&
10941 col
>= m_selectingTopLeft
.GetCol() &&
10942 row
<= m_selectingBottomRight
.GetRow() &&
10943 col
<= m_selectingBottomRight
.GetCol() )) );
10946 wxGridCellCoordsArray
wxGrid::GetSelectedCells() const
10950 wxGridCellCoordsArray a
;
10954 return m_selection
->m_cellSelection
;
10957 wxGridCellCoordsArray
wxGrid::GetSelectionBlockTopLeft() const
10961 wxGridCellCoordsArray a
;
10965 return m_selection
->m_blockSelectionTopLeft
;
10968 wxGridCellCoordsArray
wxGrid::GetSelectionBlockBottomRight() const
10972 wxGridCellCoordsArray a
;
10976 return m_selection
->m_blockSelectionBottomRight
;
10979 wxArrayInt
wxGrid::GetSelectedRows() const
10987 return m_selection
->m_rowSelection
;
10990 wxArrayInt
wxGrid::GetSelectedCols() const
10998 return m_selection
->m_colSelection
;
11001 void wxGrid::ClearSelection()
11003 m_selectingTopLeft
=
11004 m_selectingBottomRight
=
11005 m_selectingKeyboard
= wxGridNoCellCoords
;
11007 m_selection
->ClearSelection();
11010 // This function returns the rectangle that encloses the given block
11011 // in device coords clipped to the client size of the grid window.
11013 wxRect
wxGrid::BlockToDeviceRect( const wxGridCellCoords
&topLeft
,
11014 const wxGridCellCoords
&bottomRight
) const
11016 wxRect
rect( wxGridNoCellRect
);
11019 cellRect
= CellToRect( topLeft
);
11020 if ( cellRect
!= wxGridNoCellRect
)
11026 rect
= wxRect(0, 0, 0, 0);
11029 cellRect
= CellToRect( bottomRight
);
11030 if ( cellRect
!= wxGridNoCellRect
)
11036 return wxGridNoCellRect
;
11040 int left
= rect
.GetLeft();
11041 int top
= rect
.GetTop();
11042 int right
= rect
.GetRight();
11043 int bottom
= rect
.GetBottom();
11045 int leftCol
= topLeft
.GetCol();
11046 int topRow
= topLeft
.GetRow();
11047 int rightCol
= bottomRight
.GetCol();
11048 int bottomRow
= bottomRight
.GetRow();
11056 leftCol
= rightCol
;
11066 topRow
= bottomRow
;
11070 for ( j
= topRow
; j
<= bottomRow
; j
++ )
11072 for ( i
= leftCol
; i
<= rightCol
; i
++ )
11074 if ((j
== topRow
) || (j
== bottomRow
) || (i
== leftCol
) || (i
== rightCol
))
11076 cellRect
= CellToRect( j
, i
);
11078 if (cellRect
.x
< left
)
11080 if (cellRect
.y
< top
)
11082 if (cellRect
.x
+ cellRect
.width
> right
)
11083 right
= cellRect
.x
+ cellRect
.width
;
11084 if (cellRect
.y
+ cellRect
.height
> bottom
)
11085 bottom
= cellRect
.y
+ cellRect
.height
;
11089 i
= rightCol
; // jump over inner cells.
11094 // convert to scrolled coords
11096 CalcScrolledPosition( left
, top
, &left
, &top
);
11097 CalcScrolledPosition( right
, bottom
, &right
, &bottom
);
11100 m_gridWin
->GetClientSize( &cw
, &ch
);
11102 if (right
< 0 || bottom
< 0 || left
> cw
|| top
> ch
)
11103 return wxRect(0,0,0,0);
11105 rect
.SetLeft( wxMax(0, left
) );
11106 rect
.SetTop( wxMax(0, top
) );
11107 rect
.SetRight( wxMin(cw
, right
) );
11108 rect
.SetBottom( wxMin(ch
, bottom
) );
11113 // ----------------------------------------------------------------------------
11115 // ----------------------------------------------------------------------------
11117 #if wxUSE_DRAG_AND_DROP
11119 // this allow setting drop target directly on wxGrid
11120 void wxGrid::SetDropTarget(wxDropTarget
*dropTarget
)
11122 GetGridWindow()->SetDropTarget(dropTarget
);
11125 #endif // wxUSE_DRAG_AND_DROP
11127 // ----------------------------------------------------------------------------
11128 // grid event classes
11129 // ----------------------------------------------------------------------------
11131 IMPLEMENT_DYNAMIC_CLASS( wxGridEvent
, wxNotifyEvent
)
11133 wxGridEvent::wxGridEvent( int id
, wxEventType type
, wxObject
* obj
,
11134 int row
, int col
, int x
, int y
, bool sel
,
11135 bool control
, bool shift
, bool alt
, bool meta
)
11136 : wxNotifyEvent( type
, id
)
11143 m_control
= control
;
11148 SetEventObject(obj
);
11152 IMPLEMENT_DYNAMIC_CLASS( wxGridSizeEvent
, wxNotifyEvent
)
11154 wxGridSizeEvent::wxGridSizeEvent( int id
, wxEventType type
, wxObject
* obj
,
11155 int rowOrCol
, int x
, int y
,
11156 bool control
, bool shift
, bool alt
, bool meta
)
11157 : wxNotifyEvent( type
, id
)
11159 m_rowOrCol
= rowOrCol
;
11162 m_control
= control
;
11167 SetEventObject(obj
);
11171 IMPLEMENT_DYNAMIC_CLASS( wxGridRangeSelectEvent
, wxNotifyEvent
)
11173 wxGridRangeSelectEvent::wxGridRangeSelectEvent(int id
, wxEventType type
, wxObject
* obj
,
11174 const wxGridCellCoords
& topLeft
,
11175 const wxGridCellCoords
& bottomRight
,
11176 bool sel
, bool control
,
11177 bool shift
, bool alt
, bool meta
)
11178 : wxNotifyEvent( type
, id
)
11180 m_topLeft
= topLeft
;
11181 m_bottomRight
= bottomRight
;
11183 m_control
= control
;
11188 SetEventObject(obj
);
11192 IMPLEMENT_DYNAMIC_CLASS(wxGridEditorCreatedEvent
, wxCommandEvent
)
11194 wxGridEditorCreatedEvent::wxGridEditorCreatedEvent(int id
, wxEventType type
,
11195 wxObject
* obj
, int row
,
11196 int col
, wxControl
* ctrl
)
11197 : wxCommandEvent(type
, id
)
11199 SetEventObject(obj
);
11205 #endif // wxUSE_GRID