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 /////////////////////////////////////////////////////////////////////////////
15 - Replace use of wxINVERT with wxOverlay
16 - Make Begin/EndBatch() the same as the generic Freeze/Thaw()
17 - Review the column reordering code, it's a mess.
18 - Implement row reordering after dealing with the columns.
21 // For compilers that support precompilation, includes "wx/wx.h".
22 #include "wx/wxprec.h"
34 #include "wx/dcclient.h"
35 #include "wx/settings.h"
37 #include "wx/textctrl.h"
38 #include "wx/checkbox.h"
39 #include "wx/combobox.h"
40 #include "wx/valtext.h"
43 #include "wx/listbox.h"
46 #include "wx/textfile.h"
47 #include "wx/spinctrl.h"
48 #include "wx/tokenzr.h"
49 #include "wx/renderer.h"
50 #include "wx/headerctrl.h"
51 #include "wx/hashset.h"
53 #include "wx/generic/gridsel.h"
54 #include "wx/generic/gridctrl.h"
55 #include "wx/generic/grideditors.h"
56 #include "wx/generic/private/grid.h"
58 const char wxGridNameStr
[] = "grid";
60 #if defined(__WXMOTIF__)
61 #define WXUNUSED_MOTIF(identifier) WXUNUSED(identifier)
63 #define WXUNUSED_MOTIF(identifier) identifier
66 #if defined(__WXGTK__)
67 #define WXUNUSED_GTK(identifier) WXUNUSED(identifier)
69 #define WXUNUSED_GTK(identifier) identifier
72 // Required for wxIs... functions
75 WX_DECLARE_HASH_SET_WITH_DECL(int, wxIntegerHash
, wxIntegerEqual
,
76 wxGridFixedIndicesSet
, class WXDLLIMPEXP_ADV
);
79 // ----------------------------------------------------------------------------
81 // ----------------------------------------------------------------------------
86 //#define DEBUG_ATTR_CACHE
87 #ifdef DEBUG_ATTR_CACHE
88 static size_t gs_nAttrCacheHits
= 0;
89 static size_t gs_nAttrCacheMisses
= 0;
92 // this struct simply combines together the default header renderers
94 // as the renderers ctors are trivial, there is no problem with making them
96 struct DefaultHeaderRenderers
98 wxGridColumnHeaderRendererDefault colRenderer
;
99 wxGridRowHeaderRendererDefault rowRenderer
;
100 wxGridCornerHeaderRendererDefault cornerRenderer
;
101 } gs_defaultHeaderRenderers
;
103 } // anonymous namespace
105 // ----------------------------------------------------------------------------
107 // ----------------------------------------------------------------------------
109 wxGridCellCoords
wxGridNoCellCoords( -1, -1 );
110 wxRect
wxGridNoCellRect( -1, -1, -1, -1 );
116 const size_t GRID_SCROLL_LINE_X
= 15;
117 const size_t GRID_SCROLL_LINE_Y
= GRID_SCROLL_LINE_X
;
119 // the size of hash tables used a bit everywhere (the max number of elements
120 // in these hash tables is the number of rows/columns)
121 const int GRID_HASH_SIZE
= 100;
123 // the minimal distance in pixels the mouse needs to move to start a drag
125 const int DRAG_SENSITIVITY
= 3;
127 } // anonymous namespace
129 #include "wx/arrimpl.cpp"
131 WX_DEFINE_OBJARRAY(wxGridCellCoordsArray
)
132 WX_DEFINE_OBJARRAY(wxGridCellWithAttrArray
)
134 // ----------------------------------------------------------------------------
136 // ----------------------------------------------------------------------------
138 wxDEFINE_EVENT( wxEVT_GRID_CELL_LEFT_CLICK
, wxGridEvent
);
139 wxDEFINE_EVENT( wxEVT_GRID_CELL_RIGHT_CLICK
, wxGridEvent
);
140 wxDEFINE_EVENT( wxEVT_GRID_CELL_LEFT_DCLICK
, wxGridEvent
);
141 wxDEFINE_EVENT( wxEVT_GRID_CELL_RIGHT_DCLICK
, wxGridEvent
);
142 wxDEFINE_EVENT( wxEVT_GRID_CELL_BEGIN_DRAG
, wxGridEvent
);
143 wxDEFINE_EVENT( wxEVT_GRID_LABEL_LEFT_CLICK
, wxGridEvent
);
144 wxDEFINE_EVENT( wxEVT_GRID_LABEL_RIGHT_CLICK
, wxGridEvent
);
145 wxDEFINE_EVENT( wxEVT_GRID_LABEL_LEFT_DCLICK
, wxGridEvent
);
146 wxDEFINE_EVENT( wxEVT_GRID_LABEL_RIGHT_DCLICK
, wxGridEvent
);
147 wxDEFINE_EVENT( wxEVT_GRID_ROW_SIZE
, wxGridSizeEvent
);
148 wxDEFINE_EVENT( wxEVT_GRID_COL_SIZE
, wxGridSizeEvent
);
149 wxDEFINE_EVENT( wxEVT_GRID_COL_MOVE
, wxGridEvent
);
150 wxDEFINE_EVENT( wxEVT_GRID_COL_SORT
, wxGridEvent
);
151 wxDEFINE_EVENT( wxEVT_GRID_RANGE_SELECT
, wxGridRangeSelectEvent
);
152 wxDEFINE_EVENT( wxEVT_GRID_CELL_CHANGING
, wxGridEvent
);
153 wxDEFINE_EVENT( wxEVT_GRID_CELL_CHANGED
, wxGridEvent
);
154 wxDEFINE_EVENT( wxEVT_GRID_SELECT_CELL
, wxGridEvent
);
155 wxDEFINE_EVENT( wxEVT_GRID_EDITOR_SHOWN
, wxGridEvent
);
156 wxDEFINE_EVENT( wxEVT_GRID_EDITOR_HIDDEN
, wxGridEvent
);
157 wxDEFINE_EVENT( wxEVT_GRID_EDITOR_CREATED
, wxGridEditorCreatedEvent
);
159 // ----------------------------------------------------------------------------
161 // ----------------------------------------------------------------------------
166 // ensure that first is less or equal to second, swapping the values if
168 void EnsureFirstLessThanSecond(int& first
, int& second
)
170 if ( first
> second
)
171 wxSwap(first
, second
);
174 } // anonymous namespace
176 // ============================================================================
178 // ============================================================================
180 IMPLEMENT_ABSTRACT_CLASS(wxGridCellEditorEvtHandler
, wxEvtHandler
)
182 BEGIN_EVENT_TABLE( wxGridCellEditorEvtHandler
, wxEvtHandler
)
183 EVT_KILL_FOCUS( wxGridCellEditorEvtHandler::OnKillFocus
)
184 EVT_KEY_DOWN( wxGridCellEditorEvtHandler::OnKeyDown
)
185 EVT_CHAR( wxGridCellEditorEvtHandler::OnChar
)
188 BEGIN_EVENT_TABLE(wxGridHeaderCtrl
, wxHeaderCtrl
)
189 EVT_HEADER_CLICK(wxID_ANY
, wxGridHeaderCtrl::OnClick
)
190 EVT_HEADER_DCLICK(wxID_ANY
, wxGridHeaderCtrl::OnDoubleClick
)
191 EVT_HEADER_RIGHT_CLICK(wxID_ANY
, wxGridHeaderCtrl::OnRightClick
)
193 EVT_HEADER_BEGIN_RESIZE(wxID_ANY
, wxGridHeaderCtrl::OnBeginResize
)
194 EVT_HEADER_RESIZING(wxID_ANY
, wxGridHeaderCtrl::OnResizing
)
195 EVT_HEADER_END_RESIZE(wxID_ANY
, wxGridHeaderCtrl::OnEndResize
)
197 EVT_HEADER_BEGIN_REORDER(wxID_ANY
, wxGridHeaderCtrl::OnBeginReorder
)
198 EVT_HEADER_END_REORDER(wxID_ANY
, wxGridHeaderCtrl::OnEndReorder
)
201 wxGridOperations
& wxGridRowOperations::Dual() const
203 static wxGridColumnOperations s_colOper
;
208 wxGridOperations
& wxGridColumnOperations::Dual() const
210 static wxGridRowOperations s_rowOper
;
215 // ----------------------------------------------------------------------------
216 // wxGridCellWorker is an (almost) empty common base class for
217 // wxGridCellRenderer and wxGridCellEditor managing ref counting
218 // ----------------------------------------------------------------------------
220 void wxGridCellWorker::SetParameters(const wxString
& WXUNUSED(params
))
225 wxGridCellWorker::~wxGridCellWorker()
229 // ----------------------------------------------------------------------------
230 // wxGridHeaderLabelsRenderer and related classes
231 // ----------------------------------------------------------------------------
233 void wxGridHeaderLabelsRenderer::DrawLabel(const wxGrid
& grid
,
235 const wxString
& value
,
239 int textOrientation
) const
241 dc
.SetBackgroundMode(wxBRUSHSTYLE_TRANSPARENT
);
242 dc
.SetTextForeground(grid
.GetLabelTextColour());
243 dc
.SetFont(grid
.GetLabelFont());
244 grid
.DrawTextRectangle(dc
, value
, rect
, horizAlign
, vertAlign
, textOrientation
);
248 void wxGridRowHeaderRendererDefault::DrawBorder(const wxGrid
& WXUNUSED(grid
),
252 dc
.SetPen(wxPen(wxSystemSettings::GetColour(wxSYS_COLOUR_3DSHADOW
)));
253 dc
.DrawLine(rect
.GetRight(), rect
.GetTop(),
254 rect
.GetRight(), rect
.GetBottom());
255 dc
.DrawLine(rect
.GetLeft(), rect
.GetTop(),
256 rect
.GetLeft(), rect
.GetBottom());
257 dc
.DrawLine(rect
.GetLeft(), rect
.GetBottom(),
258 rect
.GetRight() + 1, rect
.GetBottom());
260 dc
.SetPen(*wxWHITE_PEN
);
261 dc
.DrawLine(rect
.GetLeft() + 1, rect
.GetTop(),
262 rect
.GetLeft() + 1, rect
.GetBottom());
263 dc
.DrawLine(rect
.GetLeft() + 1, rect
.GetTop(),
264 rect
.GetRight(), rect
.GetTop());
269 void wxGridColumnHeaderRendererDefault::DrawBorder(const wxGrid
& WXUNUSED(grid
),
273 dc
.SetPen(wxPen(wxSystemSettings::GetColour(wxSYS_COLOUR_3DSHADOW
)));
274 dc
.DrawLine(rect
.GetRight(), rect
.GetTop(),
275 rect
.GetRight(), rect
.GetBottom());
276 dc
.DrawLine(rect
.GetLeft(), rect
.GetTop(),
277 rect
.GetRight(), rect
.GetTop());
278 dc
.DrawLine(rect
.GetLeft(), rect
.GetBottom(),
279 rect
.GetRight() + 1, rect
.GetBottom());
281 dc
.SetPen(*wxWHITE_PEN
);
282 dc
.DrawLine(rect
.GetLeft(), rect
.GetTop() + 1,
283 rect
.GetLeft(), rect
.GetBottom());
284 dc
.DrawLine(rect
.GetLeft(), rect
.GetTop() + 1,
285 rect
.GetRight(), rect
.GetTop() + 1);
290 void wxGridCornerHeaderRendererDefault::DrawBorder(const wxGrid
& WXUNUSED(grid
),
294 dc
.SetPen(wxPen(wxSystemSettings::GetColour(wxSYS_COLOUR_3DSHADOW
)));
295 dc
.DrawLine(rect
.GetRight() - 1, rect
.GetBottom() - 1,
296 rect
.GetRight() - 1, rect
.GetTop());
297 dc
.DrawLine(rect
.GetRight() - 1, rect
.GetBottom() - 1,
298 rect
.GetLeft(), rect
.GetBottom() - 1);
299 dc
.DrawLine(rect
.GetLeft(), rect
.GetTop(),
300 rect
.GetRight(), rect
.GetTop());
301 dc
.DrawLine(rect
.GetLeft(), rect
.GetTop(),
302 rect
.GetLeft(), rect
.GetBottom());
304 dc
.SetPen(*wxWHITE_PEN
);
305 dc
.DrawLine(rect
.GetLeft() + 1, rect
.GetTop() + 1,
306 rect
.GetRight() - 1, rect
.GetTop() + 1);
307 dc
.DrawLine(rect
.GetLeft() + 1, rect
.GetTop() + 1,
308 rect
.GetLeft() + 1, rect
.GetBottom() - 1);
313 // ----------------------------------------------------------------------------
315 // ----------------------------------------------------------------------------
317 void wxGridCellAttr::Init(wxGridCellAttr
*attrDefault
)
319 m_isReadOnly
= Unset
;
324 m_attrkind
= wxGridCellAttr::Cell
;
326 m_sizeRows
= m_sizeCols
= 1;
327 m_overflow
= UnsetOverflow
;
329 SetDefAttr(attrDefault
);
332 wxGridCellAttr
*wxGridCellAttr::Clone() const
334 wxGridCellAttr
*attr
= new wxGridCellAttr(m_defGridAttr
);
336 if ( HasTextColour() )
337 attr
->SetTextColour(GetTextColour());
338 if ( HasBackgroundColour() )
339 attr
->SetBackgroundColour(GetBackgroundColour());
341 attr
->SetFont(GetFont());
342 if ( HasAlignment() )
343 attr
->SetAlignment(m_hAlign
, m_vAlign
);
345 attr
->SetSize( m_sizeRows
, m_sizeCols
);
349 attr
->SetRenderer(m_renderer
);
350 m_renderer
->IncRef();
354 attr
->SetEditor(m_editor
);
361 attr
->SetOverflow( m_overflow
== Overflow
);
362 attr
->SetKind( m_attrkind
);
367 void wxGridCellAttr::MergeWith(wxGridCellAttr
*mergefrom
)
369 if ( !HasTextColour() && mergefrom
->HasTextColour() )
370 SetTextColour(mergefrom
->GetTextColour());
371 if ( !HasBackgroundColour() && mergefrom
->HasBackgroundColour() )
372 SetBackgroundColour(mergefrom
->GetBackgroundColour());
373 if ( !HasFont() && mergefrom
->HasFont() )
374 SetFont(mergefrom
->GetFont());
375 if ( !HasAlignment() && mergefrom
->HasAlignment() )
378 mergefrom
->GetAlignment( &hAlign
, &vAlign
);
379 SetAlignment(hAlign
, vAlign
);
381 if ( !HasSize() && mergefrom
->HasSize() )
382 mergefrom
->GetSize( &m_sizeRows
, &m_sizeCols
);
384 // Directly access member functions as GetRender/Editor don't just return
385 // m_renderer/m_editor
387 // Maybe add support for merge of Render and Editor?
388 if (!HasRenderer() && mergefrom
->HasRenderer() )
390 m_renderer
= mergefrom
->m_renderer
;
391 m_renderer
->IncRef();
393 if ( !HasEditor() && mergefrom
->HasEditor() )
395 m_editor
= mergefrom
->m_editor
;
398 if ( !HasReadWriteMode() && mergefrom
->HasReadWriteMode() )
399 SetReadOnly(mergefrom
->IsReadOnly());
401 if (!HasOverflowMode() && mergefrom
->HasOverflowMode() )
402 SetOverflow(mergefrom
->GetOverflow());
404 SetDefAttr(mergefrom
->m_defGridAttr
);
407 void wxGridCellAttr::SetSize(int num_rows
, int num_cols
)
409 // The size of a cell is normally 1,1
411 // If this cell is larger (2,2) then this is the top left cell
412 // the other cells that will be covered (lower right cells) must be
413 // set to negative or zero values such that
414 // row + num_rows of the covered cell points to the larger cell (this cell)
415 // same goes for the col + num_cols.
417 // Size of 0,0 is NOT valid, neither is <=0 and any positive value
419 wxASSERT_MSG( (!((num_rows
> 0) && (num_cols
<= 0)) ||
420 !((num_rows
<= 0) && (num_cols
> 0)) ||
421 !((num_rows
== 0) && (num_cols
== 0))),
422 wxT("wxGridCellAttr::SetSize only takes two postive values or negative/zero values"));
424 m_sizeRows
= num_rows
;
425 m_sizeCols
= num_cols
;
428 const wxColour
& wxGridCellAttr::GetTextColour() const
434 else if (m_defGridAttr
&& m_defGridAttr
!= this)
436 return m_defGridAttr
->GetTextColour();
440 wxFAIL_MSG(wxT("Missing default cell attribute"));
445 const wxColour
& wxGridCellAttr::GetBackgroundColour() const
447 if (HasBackgroundColour())
451 else if (m_defGridAttr
&& m_defGridAttr
!= this)
453 return m_defGridAttr
->GetBackgroundColour();
457 wxFAIL_MSG(wxT("Missing default cell attribute"));
462 const wxFont
& wxGridCellAttr::GetFont() const
468 else if (m_defGridAttr
&& m_defGridAttr
!= this)
470 return m_defGridAttr
->GetFont();
474 wxFAIL_MSG(wxT("Missing default cell attribute"));
479 void wxGridCellAttr::GetAlignment(int *hAlign
, int *vAlign
) const
488 else if (m_defGridAttr
&& m_defGridAttr
!= this)
490 m_defGridAttr
->GetAlignment(hAlign
, vAlign
);
494 wxFAIL_MSG(wxT("Missing default cell attribute"));
498 void wxGridCellAttr::GetNonDefaultAlignment(int *hAlign
, int *vAlign
) const
500 if ( hAlign
&& m_hAlign
!= wxALIGN_INVALID
)
503 if ( vAlign
&& m_vAlign
!= wxALIGN_INVALID
)
507 void wxGridCellAttr::GetSize( int *num_rows
, int *num_cols
) const
510 *num_rows
= m_sizeRows
;
512 *num_cols
= m_sizeCols
;
515 // GetRenderer and GetEditor use a slightly different decision path about
516 // which attribute to use. If a non-default attr object has one then it is
517 // used, otherwise the default editor or renderer is fetched from the grid and
518 // used. It should be the default for the data type of the cell. If it is
519 // NULL (because the table has a type that the grid does not have in its
520 // registry), then the grid's default editor or renderer is used.
522 wxGridCellRenderer
* wxGridCellAttr::GetRenderer(const wxGrid
* grid
, int row
, int col
) const
524 wxGridCellRenderer
*renderer
= NULL
;
526 if ( m_renderer
&& this != m_defGridAttr
)
528 // use the cells renderer if it has one
529 renderer
= m_renderer
;
532 else // no non-default cell renderer
534 // get default renderer for the data type
537 // GetDefaultRendererForCell() will do IncRef() for us
538 renderer
= grid
->GetDefaultRendererForCell(row
, col
);
541 if ( renderer
== NULL
)
543 if ( (m_defGridAttr
!= NULL
) && (m_defGridAttr
!= this) )
545 // if we still don't have one then use the grid default
546 // (no need for IncRef() here neither)
547 renderer
= m_defGridAttr
->GetRenderer(NULL
, 0, 0);
549 else // default grid attr
551 // use m_renderer which we had decided not to use initially
552 renderer
= m_renderer
;
559 // we're supposed to always find something
560 wxASSERT_MSG(renderer
, wxT("Missing default cell renderer"));
565 // same as above, except for s/renderer/editor/g
566 wxGridCellEditor
* wxGridCellAttr::GetEditor(const wxGrid
* grid
, int row
, int col
) const
568 wxGridCellEditor
*editor
= NULL
;
570 if ( m_editor
&& this != m_defGridAttr
)
572 // use the cells editor if it has one
576 else // no non default cell editor
578 // get default editor for the data type
581 // GetDefaultEditorForCell() will do IncRef() for us
582 editor
= grid
->GetDefaultEditorForCell(row
, col
);
585 if ( editor
== NULL
)
587 if ( (m_defGridAttr
!= NULL
) && (m_defGridAttr
!= this) )
589 // if we still don't have one then use the grid default
590 // (no need for IncRef() here neither)
591 editor
= m_defGridAttr
->GetEditor(NULL
, 0, 0);
593 else // default grid attr
595 // use m_editor which we had decided not to use initially
603 // we're supposed to always find something
604 wxASSERT_MSG(editor
, wxT("Missing default cell editor"));
609 // ----------------------------------------------------------------------------
610 // wxGridCellAttrData
611 // ----------------------------------------------------------------------------
613 void wxGridCellAttrData::SetAttr(wxGridCellAttr
*attr
, int row
, int col
)
615 // Note: contrary to wxGridRowOrColAttrData::SetAttr, we must not
616 // touch attribute's reference counting explicitly, since this
617 // is managed by class wxGridCellWithAttr
618 int n
= FindIndex(row
, col
);
619 if ( n
== wxNOT_FOUND
)
624 m_attrs
.Add(new wxGridCellWithAttr(row
, col
, attr
));
626 //else: nothing to do
628 else // we already have an attribute for this cell
632 // change the attribute
633 m_attrs
[(size_t)n
].ChangeAttr(attr
);
637 // remove this attribute
638 m_attrs
.RemoveAt((size_t)n
);
643 wxGridCellAttr
*wxGridCellAttrData::GetAttr(int row
, int col
) const
645 wxGridCellAttr
*attr
= NULL
;
647 int n
= FindIndex(row
, col
);
648 if ( n
!= wxNOT_FOUND
)
650 attr
= m_attrs
[(size_t)n
].attr
;
657 void wxGridCellAttrData::UpdateAttrRows( size_t pos
, int numRows
)
659 size_t count
= m_attrs
.GetCount();
660 for ( size_t n
= 0; n
< count
; n
++ )
662 wxGridCellCoords
& coords
= m_attrs
[n
].coords
;
663 wxCoord row
= coords
.GetRow();
664 if ((size_t)row
>= pos
)
668 // If rows inserted, include row counter where necessary
669 coords
.SetRow(row
+ numRows
);
671 else if (numRows
< 0)
673 // If rows deleted ...
674 if ((size_t)row
>= pos
- numRows
)
676 // ...either decrement row counter (if row still exists)...
677 coords
.SetRow(row
+ numRows
);
681 // ...or remove the attribute
691 void wxGridCellAttrData::UpdateAttrCols( size_t pos
, int numCols
)
693 size_t count
= m_attrs
.GetCount();
694 for ( size_t n
= 0; n
< count
; n
++ )
696 wxGridCellCoords
& coords
= m_attrs
[n
].coords
;
697 wxCoord col
= coords
.GetCol();
698 if ( (size_t)col
>= pos
)
702 // If rows inserted, include row counter where necessary
703 coords
.SetCol(col
+ numCols
);
705 else if (numCols
< 0)
707 // If rows deleted ...
708 if ((size_t)col
>= pos
- numCols
)
710 // ...either decrement row counter (if row still exists)...
711 coords
.SetCol(col
+ numCols
);
715 // ...or remove the attribute
725 int wxGridCellAttrData::FindIndex(int row
, int col
) const
727 size_t count
= m_attrs
.GetCount();
728 for ( size_t n
= 0; n
< count
; n
++ )
730 const wxGridCellCoords
& coords
= m_attrs
[n
].coords
;
731 if ( (coords
.GetRow() == row
) && (coords
.GetCol() == col
) )
740 // ----------------------------------------------------------------------------
741 // wxGridRowOrColAttrData
742 // ----------------------------------------------------------------------------
744 wxGridRowOrColAttrData::~wxGridRowOrColAttrData()
746 size_t count
= m_attrs
.GetCount();
747 for ( size_t n
= 0; n
< count
; n
++ )
749 m_attrs
[n
]->DecRef();
753 wxGridCellAttr
*wxGridRowOrColAttrData::GetAttr(int rowOrCol
) const
755 wxGridCellAttr
*attr
= NULL
;
757 int n
= m_rowsOrCols
.Index(rowOrCol
);
758 if ( n
!= wxNOT_FOUND
)
760 attr
= m_attrs
[(size_t)n
];
767 void wxGridRowOrColAttrData::SetAttr(wxGridCellAttr
*attr
, int rowOrCol
)
769 int i
= m_rowsOrCols
.Index(rowOrCol
);
770 if ( i
== wxNOT_FOUND
)
774 // store the new attribute, taking its ownership
775 m_rowsOrCols
.Add(rowOrCol
);
780 else // we have an attribute for this row or column
782 size_t n
= (size_t)i
;
784 // notice that this code works correctly even when the old attribute is
785 // the same as the new one: as we own of it, we must call DecRef() on
786 // it in any case and this won't result in destruction of the new
787 // attribute if it's the same as old one because it must have ref count
788 // of at least 2 to be passed to us while we keep a reference to it too
789 m_attrs
[n
]->DecRef();
793 // replace the attribute with the new one
796 else // remove the attribute
798 m_rowsOrCols
.RemoveAt(n
);
804 void wxGridRowOrColAttrData::UpdateAttrRowsOrCols( size_t pos
, int numRowsOrCols
)
806 size_t count
= m_attrs
.GetCount();
807 for ( size_t n
= 0; n
< count
; n
++ )
809 int & rowOrCol
= m_rowsOrCols
[n
];
810 if ( (size_t)rowOrCol
>= pos
)
812 if ( numRowsOrCols
> 0 )
814 // If rows inserted, include row counter where necessary
815 rowOrCol
+= numRowsOrCols
;
817 else if ( numRowsOrCols
< 0)
819 // If rows deleted, either decrement row counter (if row still exists)
820 if ((size_t)rowOrCol
>= pos
- numRowsOrCols
)
821 rowOrCol
+= numRowsOrCols
;
824 m_rowsOrCols
.RemoveAt(n
);
825 m_attrs
[n
]->DecRef();
835 // ----------------------------------------------------------------------------
836 // wxGridCellAttrProvider
837 // ----------------------------------------------------------------------------
839 wxGridCellAttrProvider::wxGridCellAttrProvider()
844 wxGridCellAttrProvider::~wxGridCellAttrProvider()
849 void wxGridCellAttrProvider::InitData()
851 m_data
= new wxGridCellAttrProviderData
;
854 wxGridCellAttr
*wxGridCellAttrProvider::GetAttr(int row
, int col
,
855 wxGridCellAttr::wxAttrKind kind
) const
857 wxGridCellAttr
*attr
= NULL
;
862 case (wxGridCellAttr::Any
):
863 // Get cached merge attributes.
864 // Currently not used as no cache implemented as not mutable
865 // attr = m_data->m_mergeAttr.GetAttr(row, col);
868 // Basically implement old version.
869 // Also check merge cache, so we don't have to re-merge every time..
870 wxGridCellAttr
*attrcell
= m_data
->m_cellAttrs
.GetAttr(row
, col
);
871 wxGridCellAttr
*attrrow
= m_data
->m_rowAttrs
.GetAttr(row
);
872 wxGridCellAttr
*attrcol
= m_data
->m_colAttrs
.GetAttr(col
);
874 if ((attrcell
!= attrrow
) && (attrrow
!= attrcol
) && (attrcell
!= attrcol
))
876 // Two or more are non NULL
877 attr
= new wxGridCellAttr
;
878 attr
->SetKind(wxGridCellAttr::Merged
);
880 // Order is important..
883 attr
->MergeWith(attrcell
);
888 attr
->MergeWith(attrcol
);
893 attr
->MergeWith(attrrow
);
897 // store merge attr if cache implemented
899 //m_data->m_mergeAttr.SetAttr(attr, row, col);
903 // one or none is non null return it or null.
922 case (wxGridCellAttr::Cell
):
923 attr
= m_data
->m_cellAttrs
.GetAttr(row
, col
);
926 case (wxGridCellAttr::Col
):
927 attr
= m_data
->m_colAttrs
.GetAttr(col
);
930 case (wxGridCellAttr::Row
):
931 attr
= m_data
->m_rowAttrs
.GetAttr(row
);
936 // (wxGridCellAttr::Default):
937 // (wxGridCellAttr::Merged):
945 void wxGridCellAttrProvider::SetAttr(wxGridCellAttr
*attr
,
951 m_data
->m_cellAttrs
.SetAttr(attr
, row
, col
);
954 void wxGridCellAttrProvider::SetRowAttr(wxGridCellAttr
*attr
, int row
)
959 m_data
->m_rowAttrs
.SetAttr(attr
, row
);
962 void wxGridCellAttrProvider::SetColAttr(wxGridCellAttr
*attr
, int col
)
967 m_data
->m_colAttrs
.SetAttr(attr
, col
);
970 void wxGridCellAttrProvider::UpdateAttrRows( size_t pos
, int numRows
)
974 m_data
->m_cellAttrs
.UpdateAttrRows( pos
, numRows
);
976 m_data
->m_rowAttrs
.UpdateAttrRowsOrCols( pos
, numRows
);
980 void wxGridCellAttrProvider::UpdateAttrCols( size_t pos
, int numCols
)
984 m_data
->m_cellAttrs
.UpdateAttrCols( pos
, numCols
);
986 m_data
->m_colAttrs
.UpdateAttrRowsOrCols( pos
, numCols
);
990 const wxGridColumnHeaderRenderer
&
991 wxGridCellAttrProvider::GetColumnHeaderRenderer(int WXUNUSED(col
))
993 return gs_defaultHeaderRenderers
.colRenderer
;
996 const wxGridRowHeaderRenderer
&
997 wxGridCellAttrProvider::GetRowHeaderRenderer(int WXUNUSED(row
))
999 return gs_defaultHeaderRenderers
.rowRenderer
;
1002 const wxGridCornerHeaderRenderer
& wxGridCellAttrProvider::GetCornerRenderer()
1004 return gs_defaultHeaderRenderers
.cornerRenderer
;
1007 // ----------------------------------------------------------------------------
1009 // ----------------------------------------------------------------------------
1011 IMPLEMENT_ABSTRACT_CLASS( wxGridTableBase
, wxObject
)
1013 wxGridTableBase::wxGridTableBase()
1016 m_attrProvider
= NULL
;
1019 wxGridTableBase::~wxGridTableBase()
1021 delete m_attrProvider
;
1024 void wxGridTableBase::SetAttrProvider(wxGridCellAttrProvider
*attrProvider
)
1026 delete m_attrProvider
;
1027 m_attrProvider
= attrProvider
;
1030 bool wxGridTableBase::CanHaveAttributes()
1032 if ( ! GetAttrProvider() )
1034 // use the default attr provider by default
1035 SetAttrProvider(new wxGridCellAttrProvider
);
1041 wxGridCellAttr
*wxGridTableBase::GetAttr(int row
, int col
, wxGridCellAttr::wxAttrKind kind
)
1043 if ( m_attrProvider
)
1044 return m_attrProvider
->GetAttr(row
, col
, kind
);
1049 void wxGridTableBase::SetAttr(wxGridCellAttr
* attr
, int row
, int col
)
1051 if ( m_attrProvider
)
1054 attr
->SetKind(wxGridCellAttr::Cell
);
1055 m_attrProvider
->SetAttr(attr
, row
, col
);
1059 // as we take ownership of the pointer and don't store it, we must
1065 void wxGridTableBase::SetRowAttr(wxGridCellAttr
*attr
, int row
)
1067 if ( m_attrProvider
)
1069 attr
->SetKind(wxGridCellAttr::Row
);
1070 m_attrProvider
->SetRowAttr(attr
, row
);
1074 // as we take ownership of the pointer and don't store it, we must
1080 void wxGridTableBase::SetColAttr(wxGridCellAttr
*attr
, int col
)
1082 if ( m_attrProvider
)
1084 attr
->SetKind(wxGridCellAttr::Col
);
1085 m_attrProvider
->SetColAttr(attr
, col
);
1089 // as we take ownership of the pointer and don't store it, we must
1095 bool wxGridTableBase::InsertRows( size_t WXUNUSED(pos
),
1096 size_t WXUNUSED(numRows
) )
1098 wxFAIL_MSG( wxT("Called grid table class function InsertRows\nbut your derived table class does not override this function") );
1103 bool wxGridTableBase::AppendRows( size_t WXUNUSED(numRows
) )
1105 wxFAIL_MSG( wxT("Called grid table class function AppendRows\nbut your derived table class does not override this function"));
1110 bool wxGridTableBase::DeleteRows( size_t WXUNUSED(pos
),
1111 size_t WXUNUSED(numRows
) )
1113 wxFAIL_MSG( wxT("Called grid table class function DeleteRows\nbut your derived table class does not override this function"));
1118 bool wxGridTableBase::InsertCols( size_t WXUNUSED(pos
),
1119 size_t WXUNUSED(numCols
) )
1121 wxFAIL_MSG( wxT("Called grid table class function InsertCols\nbut your derived table class does not override this function"));
1126 bool wxGridTableBase::AppendCols( size_t WXUNUSED(numCols
) )
1128 wxFAIL_MSG(wxT("Called grid table class function AppendCols\nbut your derived table class does not override this function"));
1133 bool wxGridTableBase::DeleteCols( size_t WXUNUSED(pos
),
1134 size_t WXUNUSED(numCols
) )
1136 wxFAIL_MSG( wxT("Called grid table class function DeleteCols\nbut your derived table class does not override this function"));
1141 wxString
wxGridTableBase::GetRowLabelValue( int row
)
1145 // RD: Starting the rows at zero confuses users,
1146 // no matter how much it makes sense to us geeks.
1152 wxString
wxGridTableBase::GetColLabelValue( int col
)
1154 // default col labels are:
1155 // cols 0 to 25 : A-Z
1156 // cols 26 to 675 : AA-ZZ
1161 for ( n
= 1; ; n
++ )
1163 s
+= (wxChar
) (wxT('A') + (wxChar
)(col
% 26));
1169 // reverse the string...
1171 for ( i
= 0; i
< n
; i
++ )
1179 wxString
wxGridTableBase::GetTypeName( int WXUNUSED(row
), int WXUNUSED(col
) )
1181 return wxGRID_VALUE_STRING
;
1184 bool wxGridTableBase::CanGetValueAs( int WXUNUSED(row
), int WXUNUSED(col
),
1185 const wxString
& typeName
)
1187 return typeName
== wxGRID_VALUE_STRING
;
1190 bool wxGridTableBase::CanSetValueAs( int row
, int col
, const wxString
& typeName
)
1192 return CanGetValueAs(row
, col
, typeName
);
1195 long wxGridTableBase::GetValueAsLong( int WXUNUSED(row
), int WXUNUSED(col
) )
1200 double wxGridTableBase::GetValueAsDouble( int WXUNUSED(row
), int WXUNUSED(col
) )
1205 bool wxGridTableBase::GetValueAsBool( int WXUNUSED(row
), int WXUNUSED(col
) )
1210 void wxGridTableBase::SetValueAsLong( int WXUNUSED(row
), int WXUNUSED(col
),
1211 long WXUNUSED(value
) )
1215 void wxGridTableBase::SetValueAsDouble( int WXUNUSED(row
), int WXUNUSED(col
),
1216 double WXUNUSED(value
) )
1220 void wxGridTableBase::SetValueAsBool( int WXUNUSED(row
), int WXUNUSED(col
),
1221 bool WXUNUSED(value
) )
1225 void* wxGridTableBase::GetValueAsCustom( int WXUNUSED(row
), int WXUNUSED(col
),
1226 const wxString
& WXUNUSED(typeName
) )
1231 void wxGridTableBase::SetValueAsCustom( int WXUNUSED(row
), int WXUNUSED(col
),
1232 const wxString
& WXUNUSED(typeName
),
1233 void* WXUNUSED(value
) )
1237 //////////////////////////////////////////////////////////////////////
1239 // Message class for the grid table to send requests and notifications
1243 wxGridTableMessage::wxGridTableMessage()
1251 wxGridTableMessage::wxGridTableMessage( wxGridTableBase
*table
, int id
,
1252 int commandInt1
, int commandInt2
)
1256 m_comInt1
= commandInt1
;
1257 m_comInt2
= commandInt2
;
1260 //////////////////////////////////////////////////////////////////////
1262 // A basic grid table for string data. An object of this class will
1263 // created by wxGrid if you don't specify an alternative table class.
1266 WX_DEFINE_OBJARRAY(wxGridStringArray
)
1268 IMPLEMENT_DYNAMIC_CLASS( wxGridStringTable
, wxGridTableBase
)
1270 wxGridStringTable::wxGridStringTable()
1276 wxGridStringTable::wxGridStringTable( int numRows
, int numCols
)
1279 m_numCols
= numCols
;
1281 m_data
.Alloc( numRows
);
1284 sa
.Alloc( numCols
);
1285 sa
.Add( wxEmptyString
, numCols
);
1287 m_data
.Add( sa
, numRows
);
1290 wxString
wxGridStringTable::GetValue( int row
, int col
)
1292 wxCHECK_MSG( (row
>= 0 && row
< GetNumberRows()) &&
1293 (col
>= 0 && col
< GetNumberCols()),
1295 wxT("invalid row or column index in wxGridStringTable") );
1297 return m_data
[row
][col
];
1300 void wxGridStringTable::SetValue( int row
, int col
, const wxString
& value
)
1302 wxCHECK_RET( (row
>= 0 && row
< GetNumberRows()) &&
1303 (col
>= 0 && col
< GetNumberCols()),
1304 wxT("invalid row or column index in wxGridStringTable") );
1306 m_data
[row
][col
] = value
;
1309 void wxGridStringTable::Clear()
1312 int numRows
, numCols
;
1314 numRows
= m_data
.GetCount();
1317 numCols
= m_data
[0].GetCount();
1319 for ( row
= 0; row
< numRows
; row
++ )
1321 for ( col
= 0; col
< numCols
; col
++ )
1323 m_data
[row
][col
] = wxEmptyString
;
1329 bool wxGridStringTable::InsertRows( size_t pos
, size_t numRows
)
1331 size_t curNumRows
= m_data
.GetCount();
1332 size_t curNumCols
= ( curNumRows
> 0 ? m_data
[0].GetCount() :
1333 ( GetView() ? GetView()->GetNumberCols() : 0 ) );
1335 if ( pos
>= curNumRows
)
1337 return AppendRows( numRows
);
1341 sa
.Alloc( curNumCols
);
1342 sa
.Add( wxEmptyString
, curNumCols
);
1343 m_data
.Insert( sa
, pos
, numRows
);
1347 wxGridTableMessage
msg( this,
1348 wxGRIDTABLE_NOTIFY_ROWS_INSERTED
,
1352 GetView()->ProcessTableMessage( msg
);
1358 bool wxGridStringTable::AppendRows( size_t numRows
)
1360 size_t curNumRows
= m_data
.GetCount();
1361 size_t curNumCols
= ( curNumRows
> 0
1362 ? m_data
[0].GetCount()
1363 : ( GetView() ? GetView()->GetNumberCols() : 0 ) );
1366 if ( curNumCols
> 0 )
1368 sa
.Alloc( curNumCols
);
1369 sa
.Add( wxEmptyString
, curNumCols
);
1372 m_data
.Add( sa
, numRows
);
1376 wxGridTableMessage
msg( this,
1377 wxGRIDTABLE_NOTIFY_ROWS_APPENDED
,
1380 GetView()->ProcessTableMessage( msg
);
1386 bool wxGridStringTable::DeleteRows( size_t pos
, size_t numRows
)
1388 size_t curNumRows
= m_data
.GetCount();
1390 if ( pos
>= curNumRows
)
1392 wxFAIL_MSG( wxString::Format
1394 wxT("Called wxGridStringTable::DeleteRows(pos=%lu, N=%lu)\nPos value is invalid for present table with %lu rows"),
1396 (unsigned long)numRows
,
1397 (unsigned long)curNumRows
1403 if ( numRows
> curNumRows
- pos
)
1405 numRows
= curNumRows
- pos
;
1408 if ( numRows
>= curNumRows
)
1414 m_data
.RemoveAt( pos
, numRows
);
1419 wxGridTableMessage
msg( this,
1420 wxGRIDTABLE_NOTIFY_ROWS_DELETED
,
1424 GetView()->ProcessTableMessage( msg
);
1430 bool wxGridStringTable::InsertCols( size_t pos
, size_t numCols
)
1434 size_t curNumRows
= m_data
.GetCount();
1435 size_t curNumCols
= ( curNumRows
> 0
1436 ? m_data
[0].GetCount()
1437 : ( GetView() ? GetView()->GetNumberCols() : 0 ) );
1439 if ( pos
>= curNumCols
)
1441 return AppendCols( numCols
);
1444 if ( !m_colLabels
.IsEmpty() )
1446 m_colLabels
.Insert( wxEmptyString
, pos
, numCols
);
1449 for ( i
= pos
; i
< pos
+ numCols
; i
++ )
1450 m_colLabels
[i
] = wxGridTableBase::GetColLabelValue( i
);
1453 for ( row
= 0; row
< curNumRows
; row
++ )
1455 for ( col
= pos
; col
< pos
+ numCols
; col
++ )
1457 m_data
[row
].Insert( wxEmptyString
, col
);
1461 m_numCols
+= numCols
;
1465 wxGridTableMessage
msg( this,
1466 wxGRIDTABLE_NOTIFY_COLS_INSERTED
,
1470 GetView()->ProcessTableMessage( msg
);
1476 bool wxGridStringTable::AppendCols( size_t numCols
)
1480 size_t curNumRows
= m_data
.GetCount();
1482 for ( row
= 0; row
< curNumRows
; row
++ )
1484 m_data
[row
].Add( wxEmptyString
, numCols
);
1487 m_numCols
+= numCols
;
1491 wxGridTableMessage
msg( this,
1492 wxGRIDTABLE_NOTIFY_COLS_APPENDED
,
1495 GetView()->ProcessTableMessage( msg
);
1501 bool wxGridStringTable::DeleteCols( size_t pos
, size_t numCols
)
1505 size_t curNumRows
= m_data
.GetCount();
1506 size_t curNumCols
= ( curNumRows
> 0 ? m_data
[0].GetCount() :
1507 ( GetView() ? GetView()->GetNumberCols() : 0 ) );
1509 if ( pos
>= curNumCols
)
1511 wxFAIL_MSG( wxString::Format
1513 wxT("Called wxGridStringTable::DeleteCols(pos=%lu, N=%lu)\nPos value is invalid for present table with %lu cols"),
1515 (unsigned long)numCols
,
1516 (unsigned long)curNumCols
1523 colID
= GetView()->GetColAt( pos
);
1527 if ( numCols
> curNumCols
- colID
)
1529 numCols
= curNumCols
- colID
;
1532 if ( !m_colLabels
.IsEmpty() )
1534 // m_colLabels stores just as many elements as it needs, e.g. if only
1535 // the label of the first column had been set it would have only one
1536 // element and not numCols, so account for it
1537 int nToRm
= m_colLabels
.size() - colID
;
1539 m_colLabels
.RemoveAt( colID
, nToRm
);
1542 if ( numCols
>= curNumCols
)
1544 for ( row
= 0; row
< curNumRows
; row
++ )
1546 m_data
[row
].Clear();
1551 else // something will be left
1553 for ( row
= 0; row
< curNumRows
; row
++ )
1555 m_data
[row
].RemoveAt( colID
, numCols
);
1558 m_numCols
-= numCols
;
1563 wxGridTableMessage
msg( this,
1564 wxGRIDTABLE_NOTIFY_COLS_DELETED
,
1568 GetView()->ProcessTableMessage( msg
);
1574 wxString
wxGridStringTable::GetRowLabelValue( int row
)
1576 if ( row
> (int)(m_rowLabels
.GetCount()) - 1 )
1578 // using default label
1580 return wxGridTableBase::GetRowLabelValue( row
);
1584 return m_rowLabels
[row
];
1588 wxString
wxGridStringTable::GetColLabelValue( int col
)
1590 if ( col
> (int)(m_colLabels
.GetCount()) - 1 )
1592 // using default label
1594 return wxGridTableBase::GetColLabelValue( col
);
1598 return m_colLabels
[col
];
1602 void wxGridStringTable::SetRowLabelValue( int row
, const wxString
& value
)
1604 if ( row
> (int)(m_rowLabels
.GetCount()) - 1 )
1606 int n
= m_rowLabels
.GetCount();
1609 for ( i
= n
; i
<= row
; i
++ )
1611 m_rowLabels
.Add( wxGridTableBase::GetRowLabelValue(i
) );
1615 m_rowLabels
[row
] = value
;
1618 void wxGridStringTable::SetColLabelValue( int col
, const wxString
& value
)
1620 if ( col
> (int)(m_colLabels
.GetCount()) - 1 )
1622 int n
= m_colLabels
.GetCount();
1625 for ( i
= n
; i
<= col
; i
++ )
1627 m_colLabels
.Add( wxGridTableBase::GetColLabelValue(i
) );
1631 m_colLabels
[col
] = value
;
1635 //////////////////////////////////////////////////////////////////////
1636 //////////////////////////////////////////////////////////////////////
1638 BEGIN_EVENT_TABLE(wxGridSubwindow
, wxWindow
)
1639 EVT_MOUSE_CAPTURE_LOST(wxGridSubwindow::OnMouseCaptureLost
)
1642 void wxGridSubwindow::OnMouseCaptureLost(wxMouseCaptureLostEvent
& WXUNUSED(event
))
1644 m_owner
->CancelMouseCapture();
1647 BEGIN_EVENT_TABLE( wxGridRowLabelWindow
, wxGridSubwindow
)
1648 EVT_PAINT( wxGridRowLabelWindow::OnPaint
)
1649 EVT_MOUSEWHEEL( wxGridRowLabelWindow::OnMouseWheel
)
1650 EVT_MOUSE_EVENTS( wxGridRowLabelWindow::OnMouseEvent
)
1653 void wxGridRowLabelWindow::OnPaint( wxPaintEvent
& WXUNUSED(event
) )
1657 // NO - don't do this because it will set both the x and y origin
1658 // coords to match the parent scrolled window and we just want to
1659 // set the y coord - MB
1661 // m_owner->PrepareDC( dc );
1664 m_owner
->CalcUnscrolledPosition( 0, 0, &x
, &y
);
1665 wxPoint pt
= dc
.GetDeviceOrigin();
1666 dc
.SetDeviceOrigin( pt
.x
, pt
.y
-y
);
1668 wxArrayInt rows
= m_owner
->CalcRowLabelsExposed( GetUpdateRegion() );
1669 m_owner
->DrawRowLabels( dc
, rows
);
1672 void wxGridRowLabelWindow::OnMouseEvent( wxMouseEvent
& event
)
1674 m_owner
->ProcessRowLabelMouseEvent( event
);
1677 void wxGridRowLabelWindow::OnMouseWheel( wxMouseEvent
& event
)
1679 if (!m_owner
->GetEventHandler()->ProcessEvent( event
))
1683 //////////////////////////////////////////////////////////////////////
1685 BEGIN_EVENT_TABLE( wxGridColLabelWindow
, wxGridSubwindow
)
1686 EVT_PAINT( wxGridColLabelWindow::OnPaint
)
1687 EVT_MOUSEWHEEL( wxGridColLabelWindow::OnMouseWheel
)
1688 EVT_MOUSE_EVENTS( wxGridColLabelWindow::OnMouseEvent
)
1691 void wxGridColLabelWindow::OnPaint( wxPaintEvent
& WXUNUSED(event
) )
1695 // NO - don't do this because it will set both the x and y origin
1696 // coords to match the parent scrolled window and we just want to
1697 // set the x coord - MB
1699 // m_owner->PrepareDC( dc );
1702 m_owner
->CalcUnscrolledPosition( 0, 0, &x
, &y
);
1703 wxPoint pt
= dc
.GetDeviceOrigin();
1704 if (GetLayoutDirection() == wxLayout_RightToLeft
)
1705 dc
.SetDeviceOrigin( pt
.x
+x
, pt
.y
);
1707 dc
.SetDeviceOrigin( pt
.x
-x
, pt
.y
);
1709 wxArrayInt cols
= m_owner
->CalcColLabelsExposed( GetUpdateRegion() );
1710 m_owner
->DrawColLabels( dc
, cols
);
1713 void wxGridColLabelWindow::OnMouseEvent( wxMouseEvent
& event
)
1715 m_owner
->ProcessColLabelMouseEvent( event
);
1718 void wxGridColLabelWindow::OnMouseWheel( wxMouseEvent
& event
)
1720 if (!m_owner
->GetEventHandler()->ProcessEvent( event
))
1724 //////////////////////////////////////////////////////////////////////
1726 BEGIN_EVENT_TABLE( wxGridCornerLabelWindow
, wxGridSubwindow
)
1727 EVT_MOUSEWHEEL( wxGridCornerLabelWindow::OnMouseWheel
)
1728 EVT_MOUSE_EVENTS( wxGridCornerLabelWindow::OnMouseEvent
)
1729 EVT_PAINT( wxGridCornerLabelWindow::OnPaint
)
1732 void wxGridCornerLabelWindow::OnPaint( wxPaintEvent
& WXUNUSED(event
) )
1736 m_owner
->DrawCornerLabel(dc
);
1739 void wxGridCornerLabelWindow::OnMouseEvent( wxMouseEvent
& event
)
1741 m_owner
->ProcessCornerLabelMouseEvent( event
);
1744 void wxGridCornerLabelWindow::OnMouseWheel( wxMouseEvent
& event
)
1746 if (!m_owner
->GetEventHandler()->ProcessEvent(event
))
1750 //////////////////////////////////////////////////////////////////////
1752 BEGIN_EVENT_TABLE( wxGridWindow
, wxGridSubwindow
)
1753 EVT_PAINT( wxGridWindow::OnPaint
)
1754 EVT_MOUSEWHEEL( wxGridWindow::OnMouseWheel
)
1755 EVT_MOUSE_EVENTS( wxGridWindow::OnMouseEvent
)
1756 EVT_KEY_DOWN( wxGridWindow::OnKeyDown
)
1757 EVT_KEY_UP( wxGridWindow::OnKeyUp
)
1758 EVT_CHAR( wxGridWindow::OnChar
)
1759 EVT_SET_FOCUS( wxGridWindow::OnFocus
)
1760 EVT_KILL_FOCUS( wxGridWindow::OnFocus
)
1761 EVT_ERASE_BACKGROUND( wxGridWindow::OnEraseBackground
)
1764 void wxGridWindow::OnPaint( wxPaintEvent
&WXUNUSED(event
) )
1766 wxPaintDC
dc( this );
1767 m_owner
->PrepareDC( dc
);
1768 wxRegion reg
= GetUpdateRegion();
1769 wxGridCellCoordsArray dirtyCells
= m_owner
->CalcCellsExposed( reg
);
1770 m_owner
->DrawGridCellArea( dc
, dirtyCells
);
1772 m_owner
->DrawGridSpace( dc
);
1774 m_owner
->DrawAllGridLines( dc
, reg
);
1776 m_owner
->DrawHighlight( dc
, dirtyCells
);
1779 void wxGridWindow::ScrollWindow( int dx
, int dy
, const wxRect
*rect
)
1781 wxWindow::ScrollWindow( dx
, dy
, rect
);
1782 m_owner
->GetGridRowLabelWindow()->ScrollWindow( 0, dy
, rect
);
1783 m_owner
->GetGridColLabelWindow()->ScrollWindow( dx
, 0, rect
);
1786 void wxGridWindow::OnMouseEvent( wxMouseEvent
& event
)
1788 if (event
.ButtonDown(wxMOUSE_BTN_LEFT
) && FindFocus() != this)
1791 m_owner
->ProcessGridCellMouseEvent( event
);
1794 void wxGridWindow::OnMouseWheel( wxMouseEvent
& event
)
1796 if (!m_owner
->GetEventHandler()->ProcessEvent( event
))
1800 // This seems to be required for wxMotif/wxGTK otherwise the mouse
1801 // cursor must be in the cell edit control to get key events
1803 void wxGridWindow::OnKeyDown( wxKeyEvent
& event
)
1805 if ( !m_owner
->GetEventHandler()->ProcessEvent( event
) )
1809 void wxGridWindow::OnKeyUp( wxKeyEvent
& event
)
1811 if ( !m_owner
->GetEventHandler()->ProcessEvent( event
) )
1815 void wxGridWindow::OnChar( wxKeyEvent
& event
)
1817 if ( !m_owner
->GetEventHandler()->ProcessEvent( event
) )
1821 void wxGridWindow::OnEraseBackground( wxEraseEvent
& WXUNUSED(event
) )
1825 void wxGridWindow::OnFocus(wxFocusEvent
& event
)
1827 // and if we have any selection, it has to be repainted, because it
1828 // uses different colour when the grid is not focused:
1829 if ( m_owner
->IsSelection() )
1835 // NB: Note that this code is in "else" branch only because the other
1836 // branch refreshes everything and so there's no point in calling
1837 // Refresh() again, *not* because it should only be done if
1838 // !IsSelection(). If the above code is ever optimized to refresh
1839 // only selected area, this needs to be moved out of the "else"
1840 // branch so that it's always executed.
1842 // current cell cursor {dis,re}appears on focus change:
1843 const wxGridCellCoords
cursorCoords(m_owner
->GetGridCursorRow(),
1844 m_owner
->GetGridCursorCol());
1845 const wxRect cursor
=
1846 m_owner
->BlockToDeviceRect(cursorCoords
, cursorCoords
);
1847 Refresh(true, &cursor
);
1850 if ( !m_owner
->GetEventHandler()->ProcessEvent( event
) )
1854 #define internalXToCol(x) XToCol(x, true)
1855 #define internalYToRow(y) YToRow(y, true)
1857 /////////////////////////////////////////////////////////////////////
1859 BEGIN_EVENT_TABLE( wxGrid
, wxScrolledWindow
)
1860 EVT_PAINT( wxGrid::OnPaint
)
1861 EVT_SIZE( wxGrid::OnSize
)
1862 EVT_KEY_DOWN( wxGrid::OnKeyDown
)
1863 EVT_KEY_UP( wxGrid::OnKeyUp
)
1864 EVT_CHAR ( wxGrid::OnChar
)
1865 EVT_ERASE_BACKGROUND( wxGrid::OnEraseBackground
)
1868 bool wxGrid::Create(wxWindow
*parent
, wxWindowID id
,
1869 const wxPoint
& pos
, const wxSize
& size
,
1870 long style
, const wxString
& name
)
1872 if (!wxScrolledWindow::Create(parent
, id
, pos
, size
,
1873 style
| wxWANTS_CHARS
, name
))
1876 m_colMinWidths
= wxLongToLongHashMap(GRID_HASH_SIZE
);
1877 m_rowMinHeights
= wxLongToLongHashMap(GRID_HASH_SIZE
);
1880 SetInitialSize(size
);
1889 m_winCapture
->ReleaseMouse();
1891 // Ensure that the editor control is destroyed before the grid is,
1892 // otherwise we crash later when the editor tries to do something with the
1893 // half destroyed grid
1894 HideCellEditControl();
1896 // Must do this or ~wxScrollHelper will pop the wrong event handler
1897 SetTargetWindow(this);
1899 wxSafeDecRef(m_defaultCellAttr
);
1901 #ifdef DEBUG_ATTR_CACHE
1902 size_t total
= gs_nAttrCacheHits
+ gs_nAttrCacheMisses
;
1903 wxPrintf(wxT("wxGrid attribute cache statistics: "
1904 "total: %u, hits: %u (%u%%)\n"),
1905 total
, gs_nAttrCacheHits
,
1906 total
? (gs_nAttrCacheHits
*100) / total
: 0);
1909 // if we own the table, just delete it, otherwise at least don't leave it
1910 // with dangling view pointer
1913 else if ( m_table
&& m_table
->GetView() == this )
1914 m_table
->SetView(NULL
);
1916 delete m_typeRegistry
;
1919 delete m_setFixedRows
;
1920 delete m_setFixedCols
;
1924 // ----- internal init and update functions
1927 // NOTE: If using the default visual attributes works everywhere then this can
1928 // be removed as well as the #else cases below.
1929 #define _USE_VISATTR 0
1931 void wxGrid::Create()
1933 // create the type registry
1934 m_typeRegistry
= new wxGridTypeRegistry
;
1936 m_cellEditCtrlEnabled
= false;
1938 m_defaultCellAttr
= new wxGridCellAttr();
1940 // Set default cell attributes
1941 m_defaultCellAttr
->SetDefAttr(m_defaultCellAttr
);
1942 m_defaultCellAttr
->SetKind(wxGridCellAttr::Default
);
1943 m_defaultCellAttr
->SetFont(GetFont());
1944 m_defaultCellAttr
->SetAlignment(wxALIGN_LEFT
, wxALIGN_TOP
);
1945 m_defaultCellAttr
->SetRenderer(new wxGridCellStringRenderer
);
1946 m_defaultCellAttr
->SetEditor(new wxGridCellTextEditor
);
1949 wxVisualAttributes gva
= wxListBox::GetClassDefaultAttributes();
1950 wxVisualAttributes lva
= wxPanel::GetClassDefaultAttributes();
1952 m_defaultCellAttr
->SetTextColour(gva
.colFg
);
1953 m_defaultCellAttr
->SetBackgroundColour(gva
.colBg
);
1956 m_defaultCellAttr
->SetTextColour(
1957 wxSystemSettings::GetColour(wxSYS_COLOUR_WINDOWTEXT
));
1958 m_defaultCellAttr
->SetBackgroundColour(
1959 wxSystemSettings::GetColour(wxSYS_COLOUR_WINDOW
));
1964 m_currentCellCoords
= wxGridNoCellCoords
;
1966 // subwindow components that make up the wxGrid
1967 m_rowLabelWin
= new wxGridRowLabelWindow(this);
1968 CreateColumnWindow();
1969 m_cornerLabelWin
= new wxGridCornerLabelWindow(this);
1970 m_gridWin
= new wxGridWindow( this );
1972 SetTargetWindow( m_gridWin
);
1975 wxColour gfg
= gva
.colFg
;
1976 wxColour gbg
= gva
.colBg
;
1977 wxColour lfg
= lva
.colFg
;
1978 wxColour lbg
= lva
.colBg
;
1980 wxColour gfg
= wxSystemSettings::GetColour( wxSYS_COLOUR_WINDOWTEXT
);
1981 wxColour gbg
= wxSystemSettings::GetColour( wxSYS_COLOUR_WINDOW
);
1982 wxColour lfg
= wxSystemSettings::GetColour( wxSYS_COLOUR_WINDOWTEXT
);
1983 wxColour lbg
= wxSystemSettings::GetColour( wxSYS_COLOUR_BTNFACE
);
1986 m_cornerLabelWin
->SetOwnForegroundColour(lfg
);
1987 m_cornerLabelWin
->SetOwnBackgroundColour(lbg
);
1988 m_rowLabelWin
->SetOwnForegroundColour(lfg
);
1989 m_rowLabelWin
->SetOwnBackgroundColour(lbg
);
1990 m_colWindow
->SetOwnForegroundColour(lfg
);
1991 m_colWindow
->SetOwnBackgroundColour(lbg
);
1993 m_gridWin
->SetOwnForegroundColour(gfg
);
1994 m_gridWin
->SetOwnBackgroundColour(gbg
);
1996 m_labelBackgroundColour
= m_rowLabelWin
->GetBackgroundColour();
1997 m_labelTextColour
= m_rowLabelWin
->GetForegroundColour();
1999 // now that we have the grid window, use its font to compute the default
2001 m_defaultRowHeight
= m_gridWin
->GetCharHeight();
2002 #if defined(__WXMOTIF__) || defined(__WXGTK__) // see also text ctrl sizing in ShowCellEditControl()
2003 m_defaultRowHeight
+= 8;
2005 m_defaultRowHeight
+= 4;
2010 void wxGrid::CreateColumnWindow()
2012 if ( m_useNativeHeader
)
2014 m_colWindow
= new wxGridHeaderCtrl(this);
2015 m_colLabelHeight
= m_colWindow
->GetBestSize().y
;
2017 else // draw labels ourselves
2019 m_colWindow
= new wxGridColLabelWindow(this);
2020 m_colLabelHeight
= WXGRID_DEFAULT_COL_LABEL_HEIGHT
;
2024 bool wxGrid::CreateGrid( int numRows
, int numCols
,
2025 wxGridSelectionModes selmode
)
2027 wxCHECK_MSG( !m_created
,
2029 wxT("wxGrid::CreateGrid or wxGrid::SetTable called more than once") );
2031 return SetTable(new wxGridStringTable(numRows
, numCols
), true, selmode
);
2034 void wxGrid::SetSelectionMode(wxGridSelectionModes selmode
)
2036 wxCHECK_RET( m_created
,
2037 wxT("Called wxGrid::SetSelectionMode() before calling CreateGrid()") );
2039 m_selection
->SetSelectionMode( selmode
);
2042 wxGrid::wxGridSelectionModes
wxGrid::GetSelectionMode() const
2044 wxCHECK_MSG( m_created
, wxGridSelectCells
,
2045 wxT("Called wxGrid::GetSelectionMode() before calling CreateGrid()") );
2047 return m_selection
->GetSelectionMode();
2051 wxGrid::SetTable(wxGridTableBase
*table
,
2053 wxGrid::wxGridSelectionModes selmode
)
2055 bool checkSelection
= false;
2058 // stop all processing
2063 m_table
->SetView(0);
2069 wxDELETE(m_selection
);
2074 checkSelection
= true;
2076 // kill row and column size arrays
2077 m_colWidths
.Empty();
2078 m_colRights
.Empty();
2079 m_rowHeights
.Empty();
2080 m_rowBottoms
.Empty();
2085 m_numRows
= table
->GetNumberRows();
2086 m_numCols
= table
->GetNumberCols();
2088 if ( m_useNativeHeader
)
2089 GetGridColHeader()->SetColumnCount(m_numCols
);
2092 m_table
->SetView( this );
2093 m_ownTable
= takeOwnership
;
2094 m_selection
= new wxGridSelection( this, selmode
);
2097 // If the newly set table is smaller than the
2098 // original one current cell and selection regions
2099 // might be invalid,
2100 m_selectedBlockCorner
= wxGridNoCellCoords
;
2101 m_currentCellCoords
=
2102 wxGridCellCoords(wxMin(m_numRows
, m_currentCellCoords
.GetRow()),
2103 wxMin(m_numCols
, m_currentCellCoords
.GetCol()));
2104 if (m_selectedBlockTopLeft
.GetRow() >= m_numRows
||
2105 m_selectedBlockTopLeft
.GetCol() >= m_numCols
)
2107 m_selectedBlockTopLeft
= wxGridNoCellCoords
;
2108 m_selectedBlockBottomRight
= wxGridNoCellCoords
;
2111 m_selectedBlockBottomRight
=
2112 wxGridCellCoords(wxMin(m_numRows
,
2113 m_selectedBlockBottomRight
.GetRow()),
2115 m_selectedBlockBottomRight
.GetCol()));
2129 m_cornerLabelWin
= NULL
;
2130 m_rowLabelWin
= NULL
;
2138 m_defaultCellAttr
= NULL
;
2139 m_typeRegistry
= NULL
;
2140 m_winCapture
= NULL
;
2142 m_rowLabelWidth
= WXGRID_DEFAULT_ROW_LABEL_WIDTH
;
2143 m_colLabelHeight
= WXGRID_DEFAULT_COL_LABEL_HEIGHT
;
2146 m_setFixedCols
= NULL
;
2149 m_attrCache
.row
= -1;
2150 m_attrCache
.col
= -1;
2151 m_attrCache
.attr
= NULL
;
2153 m_labelFont
= GetFont();
2154 m_labelFont
.SetWeight( wxBOLD
);
2156 m_rowLabelHorizAlign
= wxALIGN_CENTRE
;
2157 m_rowLabelVertAlign
= wxALIGN_CENTRE
;
2159 m_colLabelHorizAlign
= wxALIGN_CENTRE
;
2160 m_colLabelVertAlign
= wxALIGN_CENTRE
;
2161 m_colLabelTextOrientation
= wxHORIZONTAL
;
2163 m_defaultColWidth
= WXGRID_DEFAULT_COL_WIDTH
;
2164 m_defaultRowHeight
= 0; // this will be initialized after creation
2166 m_minAcceptableColWidth
= WXGRID_MIN_COL_WIDTH
;
2167 m_minAcceptableRowHeight
= WXGRID_MIN_ROW_HEIGHT
;
2169 m_gridLineColour
= wxColour( 192,192,192 );
2170 m_gridLinesEnabled
= true;
2171 m_gridLinesClipHorz
=
2172 m_gridLinesClipVert
= true;
2173 m_cellHighlightColour
= *wxBLACK
;
2174 m_cellHighlightPenWidth
= 2;
2175 m_cellHighlightROPenWidth
= 1;
2177 m_canDragColMove
= false;
2179 m_cursorMode
= WXGRID_CURSOR_SELECT_CELL
;
2180 m_winCapture
= NULL
;
2181 m_canDragRowSize
= true;
2182 m_canDragColSize
= true;
2183 m_canDragGridSize
= true;
2184 m_canDragCell
= false;
2186 m_dragRowOrCol
= -1;
2187 m_isDragging
= false;
2188 m_startDragPos
= wxDefaultPosition
;
2190 m_sortCol
= wxNOT_FOUND
;
2191 m_sortIsAscending
= true;
2194 m_nativeColumnLabels
= false;
2196 m_waitForSlowClick
= false;
2198 m_rowResizeCursor
= wxCursor( wxCURSOR_SIZENS
);
2199 m_colResizeCursor
= wxCursor( wxCURSOR_SIZEWE
);
2201 m_currentCellCoords
= wxGridNoCellCoords
;
2203 m_selectedBlockTopLeft
=
2204 m_selectedBlockBottomRight
=
2205 m_selectedBlockCorner
= wxGridNoCellCoords
;
2207 m_selectionBackground
= wxSystemSettings::GetColour(wxSYS_COLOUR_HIGHLIGHT
);
2208 m_selectionForeground
= wxSystemSettings::GetColour(wxSYS_COLOUR_HIGHLIGHTTEXT
);
2210 m_editable
= true; // default for whole grid
2212 m_inOnKeyDown
= false;
2218 // we can't call SetScrollRate() as the window isn't created yet but OTOH
2219 // we don't need to call it neither as the scroll position is (0, 0) right
2220 // now anyhow, so just set the parameters directly
2221 m_xScrollPixelsPerLine
= GRID_SCROLL_LINE_X
;
2222 m_yScrollPixelsPerLine
= GRID_SCROLL_LINE_Y
;
2225 // ----------------------------------------------------------------------------
2226 // the idea is to call these functions only when necessary because they create
2227 // quite big arrays which eat memory mostly unnecessary - in particular, if
2228 // default widths/heights are used for all rows/columns, we may not use these
2231 // with some extra code, it should be possible to only store the widths/heights
2232 // different from default ones (resulting in space savings for huge grids) but
2233 // this is not done currently
2234 // ----------------------------------------------------------------------------
2236 void wxGrid::InitRowHeights()
2238 m_rowHeights
.Empty();
2239 m_rowBottoms
.Empty();
2241 m_rowHeights
.Alloc( m_numRows
);
2242 m_rowBottoms
.Alloc( m_numRows
);
2244 m_rowHeights
.Add( m_defaultRowHeight
, m_numRows
);
2247 for ( int i
= 0; i
< m_numRows
; i
++ )
2249 rowBottom
+= m_defaultRowHeight
;
2250 m_rowBottoms
.Add( rowBottom
);
2254 void wxGrid::InitColWidths()
2256 m_colWidths
.Empty();
2257 m_colRights
.Empty();
2259 m_colWidths
.Alloc( m_numCols
);
2260 m_colRights
.Alloc( m_numCols
);
2262 m_colWidths
.Add( m_defaultColWidth
, m_numCols
);
2264 for ( int i
= 0; i
< m_numCols
; i
++ )
2266 int colRight
= ( GetColPos( i
) + 1 ) * m_defaultColWidth
;
2267 m_colRights
.Add( colRight
);
2271 int wxGrid::GetColWidth(int col
) const
2273 return m_colWidths
.IsEmpty() ? m_defaultColWidth
: m_colWidths
[col
];
2276 int wxGrid::GetColLeft(int col
) const
2278 return m_colRights
.IsEmpty() ? GetColPos( col
) * m_defaultColWidth
2279 : m_colRights
[col
] - m_colWidths
[col
];
2282 int wxGrid::GetColRight(int col
) const
2284 return m_colRights
.IsEmpty() ? (GetColPos( col
) + 1) * m_defaultColWidth
2288 int wxGrid::GetRowHeight(int row
) const
2290 return m_rowHeights
.IsEmpty() ? m_defaultRowHeight
: m_rowHeights
[row
];
2293 int wxGrid::GetRowTop(int row
) const
2295 return m_rowBottoms
.IsEmpty() ? row
* m_defaultRowHeight
2296 : m_rowBottoms
[row
] - m_rowHeights
[row
];
2299 int wxGrid::GetRowBottom(int row
) const
2301 return m_rowBottoms
.IsEmpty() ? (row
+ 1) * m_defaultRowHeight
2302 : m_rowBottoms
[row
];
2305 void wxGrid::CalcDimensions()
2307 // compute the size of the scrollable area
2308 int w
= m_numCols
> 0 ? GetColRight(GetColAt(m_numCols
- 1)) : 0;
2309 int h
= m_numRows
> 0 ? GetRowBottom(m_numRows
- 1) : 0;
2314 // take into account editor if shown
2315 if ( IsCellEditControlShown() )
2318 int r
= m_currentCellCoords
.GetRow();
2319 int c
= m_currentCellCoords
.GetCol();
2320 int x
= GetColLeft(c
);
2321 int y
= GetRowTop(r
);
2323 // how big is the editor
2324 wxGridCellAttr
* attr
= GetCellAttr(r
, c
);
2325 wxGridCellEditor
* editor
= attr
->GetEditor(this, r
, c
);
2326 editor
->GetControl()->GetSize(&w2
, &h2
);
2337 // preserve (more or less) the previous position
2339 GetViewStart( &x
, &y
);
2341 // ensure the position is valid for the new scroll ranges
2343 x
= wxMax( w
- 1, 0 );
2345 y
= wxMax( h
- 1, 0 );
2347 // update the virtual size and refresh the scrollbars to reflect it
2348 m_gridWin
->SetVirtualSize(w
, h
);
2352 // if our OnSize() hadn't been called (it would if we have scrollbars), we
2353 // still must reposition the children
2357 wxSize
wxGrid::GetSizeAvailableForScrollTarget(const wxSize
& size
)
2359 wxSize
sizeGridWin(size
);
2360 sizeGridWin
.x
-= m_rowLabelWidth
;
2361 sizeGridWin
.y
-= m_colLabelHeight
;
2366 void wxGrid::CalcWindowSizes()
2368 // escape if the window is has not been fully created yet
2370 if ( m_cornerLabelWin
== NULL
)
2374 GetClientSize( &cw
, &ch
);
2376 // the grid may be too small to have enough space for the labels yet, don't
2377 // size the windows to negative sizes in this case
2378 int gw
= cw
- m_rowLabelWidth
;
2379 int gh
= ch
- m_colLabelHeight
;
2385 if ( m_cornerLabelWin
&& m_cornerLabelWin
->IsShown() )
2386 m_cornerLabelWin
->SetSize( 0, 0, m_rowLabelWidth
, m_colLabelHeight
);
2388 if ( m_colWindow
&& m_colWindow
->IsShown() )
2389 m_colWindow
->SetSize( m_rowLabelWidth
, 0, gw
, m_colLabelHeight
);
2391 if ( m_rowLabelWin
&& m_rowLabelWin
->IsShown() )
2392 m_rowLabelWin
->SetSize( 0, m_colLabelHeight
, m_rowLabelWidth
, gh
);
2394 if ( m_gridWin
&& m_gridWin
->IsShown() )
2395 m_gridWin
->SetSize( m_rowLabelWidth
, m_colLabelHeight
, gw
, gh
);
2398 // this is called when the grid table sends a message
2399 // to indicate that it has been redimensioned
2401 bool wxGrid::Redimension( wxGridTableMessage
& msg
)
2404 bool result
= false;
2406 // Clear the attribute cache as the attribute might refer to a different
2407 // cell than stored in the cache after adding/removing rows/columns.
2410 // By the same reasoning, the editor should be dismissed if columns are
2411 // added or removed. And for consistency, it should IMHO always be
2412 // removed, not only if the cell "underneath" it actually changes.
2413 // For now, I intentionally do not save the editor's content as the
2414 // cell it might want to save that stuff to might no longer exist.
2415 HideCellEditControl();
2417 switch ( msg
.GetId() )
2419 case wxGRIDTABLE_NOTIFY_ROWS_INSERTED
:
2421 size_t pos
= msg
.GetCommandInt();
2422 int numRows
= msg
.GetCommandInt2();
2424 m_numRows
+= numRows
;
2426 if ( !m_rowHeights
.IsEmpty() )
2428 m_rowHeights
.Insert( m_defaultRowHeight
, pos
, numRows
);
2429 m_rowBottoms
.Insert( 0, pos
, numRows
);
2433 bottom
= m_rowBottoms
[pos
- 1];
2435 for ( i
= pos
; i
< m_numRows
; i
++ )
2437 bottom
+= m_rowHeights
[i
];
2438 m_rowBottoms
[i
] = bottom
;
2442 if ( m_currentCellCoords
== wxGridNoCellCoords
)
2444 // if we have just inserted cols into an empty grid the current
2445 // cell will be undefined...
2447 SetCurrentCell( 0, 0 );
2451 m_selection
->UpdateRows( pos
, numRows
);
2452 wxGridCellAttrProvider
* attrProvider
= m_table
->GetAttrProvider();
2454 attrProvider
->UpdateAttrRows( pos
, numRows
);
2456 if ( !GetBatchCount() )
2459 m_rowLabelWin
->Refresh();
2465 case wxGRIDTABLE_NOTIFY_ROWS_APPENDED
:
2467 int numRows
= msg
.GetCommandInt();
2468 int oldNumRows
= m_numRows
;
2469 m_numRows
+= numRows
;
2471 if ( !m_rowHeights
.IsEmpty() )
2473 m_rowHeights
.Add( m_defaultRowHeight
, numRows
);
2474 m_rowBottoms
.Add( 0, numRows
);
2477 if ( oldNumRows
> 0 )
2478 bottom
= m_rowBottoms
[oldNumRows
- 1];
2480 for ( i
= oldNumRows
; i
< m_numRows
; i
++ )
2482 bottom
+= m_rowHeights
[i
];
2483 m_rowBottoms
[i
] = bottom
;
2487 if ( m_currentCellCoords
== wxGridNoCellCoords
)
2489 // if we have just inserted cols into an empty grid the current
2490 // cell will be undefined...
2492 SetCurrentCell( 0, 0 );
2495 if ( !GetBatchCount() )
2498 m_rowLabelWin
->Refresh();
2504 case wxGRIDTABLE_NOTIFY_ROWS_DELETED
:
2506 size_t pos
= msg
.GetCommandInt();
2507 int numRows
= msg
.GetCommandInt2();
2508 m_numRows
-= numRows
;
2510 if ( !m_rowHeights
.IsEmpty() )
2512 m_rowHeights
.RemoveAt( pos
, numRows
);
2513 m_rowBottoms
.RemoveAt( pos
, numRows
);
2516 for ( i
= 0; i
< m_numRows
; i
++ )
2518 h
+= m_rowHeights
[i
];
2519 m_rowBottoms
[i
] = h
;
2525 m_currentCellCoords
= wxGridNoCellCoords
;
2529 if ( m_currentCellCoords
.GetRow() >= m_numRows
)
2530 m_currentCellCoords
.Set( 0, 0 );
2534 m_selection
->UpdateRows( pos
, -((int)numRows
) );
2535 wxGridCellAttrProvider
* attrProvider
= m_table
->GetAttrProvider();
2538 attrProvider
->UpdateAttrRows( pos
, -((int)numRows
) );
2540 // ifdef'd out following patch from Paul Gammans
2542 // No need to touch column attributes, unless we
2543 // removed _all_ rows, in this case, we remove
2544 // all column attributes.
2545 // I hate to do this here, but the
2546 // needed data is not available inside UpdateAttrRows.
2547 if ( !GetNumberRows() )
2548 attrProvider
->UpdateAttrCols( 0, -GetNumberCols() );
2552 if ( !GetBatchCount() )
2555 m_rowLabelWin
->Refresh();
2561 case wxGRIDTABLE_NOTIFY_COLS_INSERTED
:
2563 size_t pos
= msg
.GetCommandInt();
2564 int numCols
= msg
.GetCommandInt2();
2565 m_numCols
+= numCols
;
2567 if ( m_useNativeHeader
)
2568 GetGridColHeader()->SetColumnCount(m_numCols
);
2570 if ( !m_colAt
.IsEmpty() )
2572 //Shift the column IDs
2574 for ( i
= 0; i
< m_numCols
- numCols
; i
++ )
2576 if ( m_colAt
[i
] >= (int)pos
)
2577 m_colAt
[i
] += numCols
;
2580 m_colAt
.Insert( pos
, pos
, numCols
);
2582 //Set the new columns' positions
2583 for ( i
= pos
+ 1; i
< (int)pos
+ numCols
; i
++ )
2589 if ( !m_colWidths
.IsEmpty() )
2591 m_colWidths
.Insert( m_defaultColWidth
, pos
, numCols
);
2592 m_colRights
.Insert( 0, pos
, numCols
);
2596 right
= m_colRights
[GetColAt( pos
- 1 )];
2599 for ( colPos
= pos
; colPos
< m_numCols
; colPos
++ )
2601 i
= GetColAt( colPos
);
2603 right
+= m_colWidths
[i
];
2604 m_colRights
[i
] = right
;
2608 if ( m_currentCellCoords
== wxGridNoCellCoords
)
2610 // if we have just inserted cols into an empty grid the current
2611 // cell will be undefined...
2613 SetCurrentCell( 0, 0 );
2617 m_selection
->UpdateCols( pos
, numCols
);
2618 wxGridCellAttrProvider
* attrProvider
= m_table
->GetAttrProvider();
2620 attrProvider
->UpdateAttrCols( pos
, numCols
);
2621 if ( !GetBatchCount() )
2624 m_colWindow
->Refresh();
2630 case wxGRIDTABLE_NOTIFY_COLS_APPENDED
:
2632 int numCols
= msg
.GetCommandInt();
2633 int oldNumCols
= m_numCols
;
2634 m_numCols
+= numCols
;
2635 if ( m_useNativeHeader
)
2636 GetGridColHeader()->SetColumnCount(m_numCols
);
2638 if ( !m_colAt
.IsEmpty() )
2640 m_colAt
.Add( 0, numCols
);
2642 //Set the new columns' positions
2644 for ( i
= oldNumCols
; i
< m_numCols
; i
++ )
2650 if ( !m_colWidths
.IsEmpty() )
2652 m_colWidths
.Add( m_defaultColWidth
, numCols
);
2653 m_colRights
.Add( 0, numCols
);
2656 if ( oldNumCols
> 0 )
2657 right
= m_colRights
[GetColAt( oldNumCols
- 1 )];
2660 for ( colPos
= oldNumCols
; colPos
< m_numCols
; colPos
++ )
2662 i
= GetColAt( colPos
);
2664 right
+= m_colWidths
[i
];
2665 m_colRights
[i
] = right
;
2669 if ( m_currentCellCoords
== wxGridNoCellCoords
)
2671 // if we have just inserted cols into an empty grid the current
2672 // cell will be undefined...
2674 SetCurrentCell( 0, 0 );
2676 if ( !GetBatchCount() )
2679 m_colWindow
->Refresh();
2685 case wxGRIDTABLE_NOTIFY_COLS_DELETED
:
2687 size_t pos
= msg
.GetCommandInt();
2688 int numCols
= msg
.GetCommandInt2();
2689 m_numCols
-= numCols
;
2690 if ( m_useNativeHeader
)
2691 GetGridColHeader()->SetColumnCount(m_numCols
);
2693 if ( !m_colAt
.IsEmpty() )
2695 int colID
= GetColAt( pos
);
2697 m_colAt
.RemoveAt( pos
, numCols
);
2699 //Shift the column IDs
2701 for ( colPos
= 0; colPos
< m_numCols
; colPos
++ )
2703 if ( m_colAt
[colPos
] > colID
)
2704 m_colAt
[colPos
] -= numCols
;
2708 if ( !m_colWidths
.IsEmpty() )
2710 m_colWidths
.RemoveAt( pos
, numCols
);
2711 m_colRights
.RemoveAt( pos
, numCols
);
2715 for ( colPos
= 0; colPos
< m_numCols
; colPos
++ )
2717 i
= GetColAt( colPos
);
2719 w
+= m_colWidths
[i
];
2726 m_currentCellCoords
= wxGridNoCellCoords
;
2730 if ( m_currentCellCoords
.GetCol() >= m_numCols
)
2731 m_currentCellCoords
.Set( 0, 0 );
2735 m_selection
->UpdateCols( pos
, -((int)numCols
) );
2736 wxGridCellAttrProvider
* attrProvider
= m_table
->GetAttrProvider();
2739 attrProvider
->UpdateAttrCols( pos
, -((int)numCols
) );
2741 // ifdef'd out following patch from Paul Gammans
2743 // No need to touch row attributes, unless we
2744 // removed _all_ columns, in this case, we remove
2745 // all row attributes.
2746 // I hate to do this here, but the
2747 // needed data is not available inside UpdateAttrCols.
2748 if ( !GetNumberCols() )
2749 attrProvider
->UpdateAttrRows( 0, -GetNumberRows() );
2753 if ( !GetBatchCount() )
2756 m_colWindow
->Refresh();
2763 if (result
&& !GetBatchCount() )
2764 m_gridWin
->Refresh();
2769 wxArrayInt
wxGrid::CalcRowLabelsExposed( const wxRegion
& reg
) const
2771 wxRegionIterator
iter( reg
);
2774 wxArrayInt rowlabels
;
2781 // TODO: remove this when we can...
2782 // There is a bug in wxMotif that gives garbage update
2783 // rectangles if you jump-scroll a long way by clicking the
2784 // scrollbar with middle button. This is a work-around
2786 #if defined(__WXMOTIF__)
2788 m_gridWin
->GetClientSize( &cw
, &ch
);
2789 if ( r
.GetTop() > ch
)
2791 r
.SetBottom( wxMin( r
.GetBottom(), ch
) );
2794 // logical bounds of update region
2797 CalcUnscrolledPosition( 0, r
.GetTop(), &dummy
, &top
);
2798 CalcUnscrolledPosition( 0, r
.GetBottom(), &dummy
, &bottom
);
2800 // find the row labels within these bounds
2803 for ( row
= internalYToRow(top
); row
< m_numRows
; row
++ )
2805 if ( GetRowBottom(row
) < top
)
2808 if ( GetRowTop(row
) > bottom
)
2811 rowlabels
.Add( row
);
2820 wxArrayInt
wxGrid::CalcColLabelsExposed( const wxRegion
& reg
) const
2822 wxRegionIterator
iter( reg
);
2825 wxArrayInt colLabels
;
2832 // TODO: remove this when we can...
2833 // There is a bug in wxMotif that gives garbage update
2834 // rectangles if you jump-scroll a long way by clicking the
2835 // scrollbar with middle button. This is a work-around
2837 #if defined(__WXMOTIF__)
2839 m_gridWin
->GetClientSize( &cw
, &ch
);
2840 if ( r
.GetLeft() > cw
)
2842 r
.SetRight( wxMin( r
.GetRight(), cw
) );
2845 // logical bounds of update region
2848 CalcUnscrolledPosition( r
.GetLeft(), 0, &left
, &dummy
);
2849 CalcUnscrolledPosition( r
.GetRight(), 0, &right
, &dummy
);
2851 // find the cells within these bounds
2855 for ( colPos
= GetColPos( internalXToCol(left
) ); colPos
< m_numCols
; colPos
++ )
2857 col
= GetColAt( colPos
);
2859 if ( GetColRight(col
) < left
)
2862 if ( GetColLeft(col
) > right
)
2865 colLabels
.Add( col
);
2874 wxGridCellCoordsArray
wxGrid::CalcCellsExposed( const wxRegion
& reg
) const
2876 wxRegionIterator
iter( reg
);
2879 wxGridCellCoordsArray cellsExposed
;
2881 int left
, top
, right
, bottom
;
2886 // TODO: remove this when we can...
2887 // There is a bug in wxMotif that gives garbage update
2888 // rectangles if you jump-scroll a long way by clicking the
2889 // scrollbar with middle button. This is a work-around
2891 #if defined(__WXMOTIF__)
2893 m_gridWin
->GetClientSize( &cw
, &ch
);
2894 if ( r
.GetTop() > ch
) r
.SetTop( 0 );
2895 if ( r
.GetLeft() > cw
) r
.SetLeft( 0 );
2896 r
.SetRight( wxMin( r
.GetRight(), cw
) );
2897 r
.SetBottom( wxMin( r
.GetBottom(), ch
) );
2900 // logical bounds of update region
2902 CalcUnscrolledPosition( r
.GetLeft(), r
.GetTop(), &left
, &top
);
2903 CalcUnscrolledPosition( r
.GetRight(), r
.GetBottom(), &right
, &bottom
);
2905 // find the cells within these bounds
2907 for ( int row
= internalYToRow(top
); row
< m_numRows
; row
++ )
2909 if ( GetRowBottom(row
) <= top
)
2912 if ( GetRowTop(row
) > bottom
)
2915 // add all dirty cells in this row: notice that the columns which
2916 // are dirty don't depend on the row so we compute them only once
2917 // for the first dirty row and then reuse for all the next ones
2920 // do determine the dirty columns
2921 for ( int pos
= XToPos(left
); pos
<= XToPos(right
); pos
++ )
2922 cols
.push_back(GetColAt(pos
));
2924 // if there are no dirty columns at all, nothing to do
2929 const size_t count
= cols
.size();
2930 for ( size_t n
= 0; n
< count
; n
++ )
2931 cellsExposed
.Add(wxGridCellCoords(row
, cols
[n
]));
2937 return cellsExposed
;
2941 void wxGrid::ProcessRowLabelMouseEvent( wxMouseEvent
& event
)
2944 wxPoint
pos( event
.GetPosition() );
2945 CalcUnscrolledPosition( pos
.x
, pos
.y
, &x
, &y
);
2947 if ( event
.Dragging() )
2951 m_isDragging
= true;
2952 m_rowLabelWin
->CaptureMouse();
2955 if ( event
.LeftIsDown() )
2957 switch ( m_cursorMode
)
2959 case WXGRID_CURSOR_RESIZE_ROW
:
2961 int cw
, ch
, left
, dummy
;
2962 m_gridWin
->GetClientSize( &cw
, &ch
);
2963 CalcUnscrolledPosition( 0, 0, &left
, &dummy
);
2965 wxClientDC
dc( m_gridWin
);
2968 GetRowTop(m_dragRowOrCol
) +
2969 GetRowMinimalHeight(m_dragRowOrCol
) );
2970 dc
.SetLogicalFunction(wxINVERT
);
2971 if ( m_dragLastPos
>= 0 )
2973 dc
.DrawLine( left
, m_dragLastPos
, left
+cw
, m_dragLastPos
);
2975 dc
.DrawLine( left
, y
, left
+cw
, y
);
2980 case WXGRID_CURSOR_SELECT_ROW
:
2982 if ( (row
= YToRow( y
)) >= 0 )
2985 m_selection
->SelectRow(row
, event
);
2990 // default label to suppress warnings about "enumeration value
2991 // 'xxx' not handled in switch
2999 if ( m_isDragging
&& (event
.Entering() || event
.Leaving()) )
3004 if (m_rowLabelWin
->HasCapture())
3005 m_rowLabelWin
->ReleaseMouse();
3006 m_isDragging
= false;
3009 // ------------ Entering or leaving the window
3011 if ( event
.Entering() || event
.Leaving() )
3013 ChangeCursorMode(WXGRID_CURSOR_SELECT_CELL
, m_rowLabelWin
);
3016 // ------------ Left button pressed
3018 else if ( event
.LeftDown() )
3020 row
= YToEdgeOfRow(y
);
3021 if ( row
!= wxNOT_FOUND
&& CanDragRowSize(row
) )
3023 ChangeCursorMode(WXGRID_CURSOR_RESIZE_ROW
, m_rowLabelWin
);
3025 else // not a request to start resizing
3029 !SendEvent( wxEVT_GRID_LABEL_LEFT_CLICK
, row
, -1, event
) )
3031 if ( !event
.ShiftDown() && !event
.CmdDown() )
3035 if ( event
.ShiftDown() )
3037 m_selection
->SelectBlock
3039 m_currentCellCoords
.GetRow(), 0,
3040 row
, GetNumberCols() - 1,
3046 m_selection
->SelectRow(row
, event
);
3050 ChangeCursorMode(WXGRID_CURSOR_SELECT_ROW
, m_rowLabelWin
);
3055 // ------------ Left double click
3057 else if (event
.LeftDClick() )
3059 row
= YToEdgeOfRow(y
);
3060 if ( row
!= wxNOT_FOUND
&& CanDragRowSize(row
) )
3062 // adjust row height depending on label text
3064 // TODO: generate RESIZING event, see #10754
3065 AutoSizeRowLabelSize( row
);
3067 SendGridSizeEvent(wxEVT_GRID_ROW_SIZE
, row
, -1, event
);
3069 ChangeCursorMode(WXGRID_CURSOR_SELECT_CELL
, GetColLabelWindow());
3072 else // not on row separator or it's not resizable
3076 !SendEvent( wxEVT_GRID_LABEL_LEFT_DCLICK
, row
, -1, event
) )
3078 // no default action at the moment
3083 // ------------ Left button released
3085 else if ( event
.LeftUp() )
3087 if ( m_cursorMode
== WXGRID_CURSOR_RESIZE_ROW
)
3088 DoEndDragResizeRow(event
);
3090 ChangeCursorMode(WXGRID_CURSOR_SELECT_CELL
, m_rowLabelWin
);
3094 // ------------ Right button down
3096 else if ( event
.RightDown() )
3100 !SendEvent( wxEVT_GRID_LABEL_RIGHT_CLICK
, row
, -1, event
) )
3102 // no default action at the moment
3106 // ------------ Right double click
3108 else if ( event
.RightDClick() )
3112 !SendEvent( wxEVT_GRID_LABEL_RIGHT_DCLICK
, row
, -1, event
) )
3114 // no default action at the moment
3118 // ------------ No buttons down and mouse moving
3120 else if ( event
.Moving() )
3122 m_dragRowOrCol
= YToEdgeOfRow( y
);
3123 if ( m_dragRowOrCol
!= wxNOT_FOUND
)
3125 if ( m_cursorMode
== WXGRID_CURSOR_SELECT_CELL
)
3127 if ( CanDragRowSize(m_dragRowOrCol
) )
3128 ChangeCursorMode(WXGRID_CURSOR_RESIZE_ROW
, m_rowLabelWin
, false);
3131 else if ( m_cursorMode
!= WXGRID_CURSOR_SELECT_CELL
)
3133 ChangeCursorMode(WXGRID_CURSOR_SELECT_CELL
, m_rowLabelWin
, false);
3138 void wxGrid::UpdateColumnSortingIndicator(int col
)
3140 wxCHECK_RET( col
!= wxNOT_FOUND
, "invalid column index" );
3142 if ( m_useNativeHeader
)
3143 GetGridColHeader()->UpdateColumn(col
);
3144 else if ( m_nativeColumnLabels
)
3145 m_colWindow
->Refresh();
3146 //else: sorting indicator display not yet implemented in grid version
3149 void wxGrid::SetSortingColumn(int col
, bool ascending
)
3151 if ( col
== m_sortCol
)
3153 // we are already using this column for sorting (or not sorting at all)
3154 // but we might still change the sorting order, check for it
3155 if ( m_sortCol
!= wxNOT_FOUND
&& ascending
!= m_sortIsAscending
)
3157 m_sortIsAscending
= ascending
;
3159 UpdateColumnSortingIndicator(m_sortCol
);
3162 else // we're changing the column used for sorting
3164 const int sortColOld
= m_sortCol
;
3166 // change it before updating the column as we want GetSortingColumn()
3167 // to return the correct new value
3170 if ( sortColOld
!= wxNOT_FOUND
)
3171 UpdateColumnSortingIndicator(sortColOld
);
3173 if ( m_sortCol
!= wxNOT_FOUND
)
3175 m_sortIsAscending
= ascending
;
3176 UpdateColumnSortingIndicator(m_sortCol
);
3181 void wxGrid::DoColHeaderClick(int col
)
3183 // we consider that the grid was resorted if this event is processed and
3185 if ( SendEvent(wxEVT_GRID_COL_SORT
, -1, col
) == 1 )
3187 SetSortingColumn(col
, IsSortingBy(col
) ? !m_sortIsAscending
: true);
3192 void wxGrid::DoStartResizeCol(int col
)
3194 m_dragRowOrCol
= col
;
3196 DoUpdateResizeColWidth(GetColWidth(m_dragRowOrCol
));
3199 void wxGrid::DoUpdateResizeCol(int x
)
3201 int cw
, ch
, dummy
, top
;
3202 m_gridWin
->GetClientSize( &cw
, &ch
);
3203 CalcUnscrolledPosition( 0, 0, &dummy
, &top
);
3205 wxClientDC
dc( m_gridWin
);
3208 x
= wxMax( x
, GetColLeft(m_dragRowOrCol
) + GetColMinimalWidth(m_dragRowOrCol
));
3209 dc
.SetLogicalFunction(wxINVERT
);
3210 if ( m_dragLastPos
>= 0 )
3212 dc
.DrawLine( m_dragLastPos
, top
, m_dragLastPos
, top
+ ch
);
3214 dc
.DrawLine( x
, top
, x
, top
+ ch
);
3218 void wxGrid::DoUpdateResizeColWidth(int w
)
3220 DoUpdateResizeCol(GetColLeft(m_dragRowOrCol
) + w
);
3223 void wxGrid::ProcessColLabelMouseEvent( wxMouseEvent
& event
)
3226 wxPoint
pos( event
.GetPosition() );
3227 CalcUnscrolledPosition( pos
.x
, pos
.y
, &x
, &y
);
3229 int col
= XToCol(x
);
3230 if ( event
.Dragging() )
3234 m_isDragging
= true;
3235 GetColLabelWindow()->CaptureMouse();
3237 if ( m_cursorMode
== WXGRID_CURSOR_MOVE_COL
&& col
!= -1 )
3238 DoStartMoveCol(col
);
3241 if ( event
.LeftIsDown() )
3243 switch ( m_cursorMode
)
3245 case WXGRID_CURSOR_RESIZE_COL
:
3246 DoUpdateResizeCol(x
);
3249 case WXGRID_CURSOR_SELECT_COL
:
3254 m_selection
->SelectCol(col
, event
);
3259 case WXGRID_CURSOR_MOVE_COL
:
3261 int posNew
= XToPos(x
);
3262 int colNew
= GetColAt(posNew
);
3264 // determine the position of the drop marker
3266 if ( x
>= GetColLeft(colNew
) + (GetColWidth(colNew
) / 2) )
3267 markerX
= GetColRight(colNew
);
3269 markerX
= GetColLeft(colNew
);
3271 if ( markerX
!= m_dragLastPos
)
3273 wxClientDC
dc( GetColLabelWindow() );
3277 GetColLabelWindow()->GetClientSize( &cw
, &ch
);
3281 //Clean up the last indicator
3282 if ( m_dragLastPos
>= 0 )
3284 wxPen
pen( GetColLabelWindow()->GetBackgroundColour(), 2 );
3286 dc
.DrawLine( m_dragLastPos
+ 1, 0, m_dragLastPos
+ 1, ch
);
3287 dc
.SetPen(wxNullPen
);
3289 if ( XToCol( m_dragLastPos
) != -1 )
3290 DrawColLabel( dc
, XToCol( m_dragLastPos
) );
3293 const wxColour
*color
;
3294 //Moving to the same place? Don't draw a marker
3295 if ( colNew
== m_dragRowOrCol
)
3296 color
= wxLIGHT_GREY
;
3301 wxPen
pen( *color
, 2 );
3304 dc
.DrawLine( markerX
, 0, markerX
, ch
);
3306 dc
.SetPen(wxNullPen
);
3308 m_dragLastPos
= markerX
- 1;
3313 // default label to suppress warnings about "enumeration value
3314 // 'xxx' not handled in switch
3322 if ( m_isDragging
&& (event
.Entering() || event
.Leaving()) )
3327 if (GetColLabelWindow()->HasCapture())
3328 GetColLabelWindow()->ReleaseMouse();
3329 m_isDragging
= false;
3332 // ------------ Entering or leaving the window
3334 if ( event
.Entering() || event
.Leaving() )
3336 ChangeCursorMode(WXGRID_CURSOR_SELECT_CELL
, GetColLabelWindow());
3339 // ------------ Left button pressed
3341 else if ( event
.LeftDown() )
3343 int col
= XToEdgeOfCol(x
);
3344 if ( col
!= wxNOT_FOUND
&& CanDragColSize(col
) )
3346 ChangeCursorMode(WXGRID_CURSOR_RESIZE_COL
, GetColLabelWindow());
3348 else // not a request to start resizing
3352 !SendEvent( wxEVT_GRID_LABEL_LEFT_CLICK
, -1, col
, event
) )
3354 if ( m_canDragColMove
)
3356 //Show button as pressed
3357 wxClientDC
dc( GetColLabelWindow() );
3358 int colLeft
= GetColLeft( col
);
3359 int colRight
= GetColRight( col
) - 1;
3360 dc
.SetPen( wxPen( GetColLabelWindow()->GetBackgroundColour(), 1 ) );
3361 dc
.DrawLine( colLeft
, 1, colLeft
, m_colLabelHeight
-1 );
3362 dc
.DrawLine( colLeft
, 1, colRight
, 1 );
3364 ChangeCursorMode(WXGRID_CURSOR_MOVE_COL
, GetColLabelWindow());
3368 if ( !event
.ShiftDown() && !event
.CmdDown() )
3372 if ( event
.ShiftDown() )
3374 m_selection
->SelectBlock
3376 0, m_currentCellCoords
.GetCol(),
3377 GetNumberRows() - 1, col
,
3383 m_selection
->SelectCol(col
, event
);
3387 ChangeCursorMode(WXGRID_CURSOR_SELECT_COL
, GetColLabelWindow());
3393 // ------------ Left double click
3395 if ( event
.LeftDClick() )
3397 const int colEdge
= XToEdgeOfCol(x
);
3398 if ( colEdge
== -1 )
3401 ! SendEvent( wxEVT_GRID_LABEL_LEFT_DCLICK
, -1, col
, event
) )
3403 // no default action at the moment
3408 // adjust column width depending on label text
3410 // TODO: generate RESIZING event, see #10754
3411 AutoSizeColLabelSize( colEdge
);
3413 SendGridSizeEvent(wxEVT_GRID_COL_SIZE
, -1, colEdge
, event
);
3415 ChangeCursorMode(WXGRID_CURSOR_SELECT_CELL
, GetColLabelWindow());
3420 // ------------ Left button released
3422 else if ( event
.LeftUp() )
3424 switch ( m_cursorMode
)
3426 case WXGRID_CURSOR_RESIZE_COL
:
3427 DoEndDragResizeCol(event
);
3430 case WXGRID_CURSOR_MOVE_COL
:
3431 if ( m_dragLastPos
== -1 || col
== m_dragRowOrCol
)
3433 // the column didn't actually move anywhere
3435 DoColHeaderClick(col
);
3436 m_colWindow
->Refresh(); // "unpress" the column
3440 // get the position of the column we're over
3441 int pos
= XToPos(x
);
3443 // we may need to adjust the drop position but don't bother
3444 // checking for it if we can't anyhow
3447 // also find the index of the column we're over: notice
3448 // that the existing "col" variable may be invalid but
3449 // we need a valid one here
3450 const int colValid
= GetColAt(pos
);
3452 // if we're on the "near" (usually left but right in
3453 // RTL case) part of the column, the actual position we
3454 // should be placed in is actually the one before it
3456 const int middle
= GetColLeft(colValid
) +
3457 GetColWidth(colValid
)/2;
3458 if ( GetLayoutDirection() == wxLayout_LeftToRight
)
3459 onNearPart
= (x
<= middle
);
3460 else // wxLayout_RightToLeft
3461 onNearPart
= (x
> middle
);
3471 case WXGRID_CURSOR_SELECT_COL
:
3472 case WXGRID_CURSOR_SELECT_CELL
:
3473 case WXGRID_CURSOR_RESIZE_ROW
:
3474 case WXGRID_CURSOR_SELECT_ROW
:
3476 DoColHeaderClick(col
);
3480 ChangeCursorMode(WXGRID_CURSOR_SELECT_CELL
, GetColLabelWindow());
3484 // ------------ Right button down
3486 else if ( event
.RightDown() )
3489 !SendEvent( wxEVT_GRID_LABEL_RIGHT_CLICK
, -1, col
, event
) )
3491 // no default action at the moment
3495 // ------------ Right double click
3497 else if ( event
.RightDClick() )
3500 !SendEvent( wxEVT_GRID_LABEL_RIGHT_DCLICK
, -1, col
, event
) )
3502 // no default action at the moment
3506 // ------------ No buttons down and mouse moving
3508 else if ( event
.Moving() )
3510 m_dragRowOrCol
= XToEdgeOfCol( x
);
3511 if ( m_dragRowOrCol
>= 0 )
3513 if ( m_cursorMode
== WXGRID_CURSOR_SELECT_CELL
)
3515 if ( CanDragColSize(m_dragRowOrCol
) )
3516 ChangeCursorMode(WXGRID_CURSOR_RESIZE_COL
, GetColLabelWindow(), false);
3519 else if ( m_cursorMode
!= WXGRID_CURSOR_SELECT_CELL
)
3521 ChangeCursorMode(WXGRID_CURSOR_SELECT_CELL
, GetColLabelWindow(), false);
3526 void wxGrid::ProcessCornerLabelMouseEvent( wxMouseEvent
& event
)
3528 if ( event
.LeftDown() )
3530 // indicate corner label by having both row and
3533 if ( !SendEvent( wxEVT_GRID_LABEL_LEFT_CLICK
, -1, -1, event
) )
3538 else if ( event
.LeftDClick() )
3540 SendEvent( wxEVT_GRID_LABEL_LEFT_DCLICK
, -1, -1, event
);
3542 else if ( event
.RightDown() )
3544 if ( !SendEvent( wxEVT_GRID_LABEL_RIGHT_CLICK
, -1, -1, event
) )
3546 // no default action at the moment
3549 else if ( event
.RightDClick() )
3551 if ( !SendEvent( wxEVT_GRID_LABEL_RIGHT_DCLICK
, -1, -1, event
) )
3553 // no default action at the moment
3558 void wxGrid::CancelMouseCapture()
3560 // cancel operation currently in progress, whatever it is
3563 m_isDragging
= false;
3564 m_startDragPos
= wxDefaultPosition
;
3566 m_cursorMode
= WXGRID_CURSOR_SELECT_CELL
;
3567 m_winCapture
->SetCursor( *wxSTANDARD_CURSOR
);
3568 m_winCapture
= NULL
;
3570 // remove traces of whatever we drew on screen
3575 void wxGrid::ChangeCursorMode(CursorMode mode
,
3580 static const wxChar
*const cursorModes
[] =
3590 wxLogTrace(wxT("grid"),
3591 wxT("wxGrid cursor mode (mouse capture for %s): %s -> %s"),
3592 win
== m_colWindow
? wxT("colLabelWin")
3593 : win
? wxT("rowLabelWin")
3595 cursorModes
[m_cursorMode
], cursorModes
[mode
]);
3596 #endif // wxUSE_LOG_TRACE
3598 if ( mode
== m_cursorMode
&&
3599 win
== m_winCapture
&&
3600 captureMouse
== (m_winCapture
!= NULL
))
3605 // by default use the grid itself
3611 m_winCapture
->ReleaseMouse();
3612 m_winCapture
= NULL
;
3615 m_cursorMode
= mode
;
3617 switch ( m_cursorMode
)
3619 case WXGRID_CURSOR_RESIZE_ROW
:
3620 win
->SetCursor( m_rowResizeCursor
);
3623 case WXGRID_CURSOR_RESIZE_COL
:
3624 win
->SetCursor( m_colResizeCursor
);
3627 case WXGRID_CURSOR_MOVE_COL
:
3628 win
->SetCursor( wxCursor(wxCURSOR_HAND
) );
3632 win
->SetCursor( *wxSTANDARD_CURSOR
);
3636 // we need to capture mouse when resizing
3637 bool resize
= m_cursorMode
== WXGRID_CURSOR_RESIZE_ROW
||
3638 m_cursorMode
== WXGRID_CURSOR_RESIZE_COL
;
3640 if ( captureMouse
&& resize
)
3642 win
->CaptureMouse();
3647 // ----------------------------------------------------------------------------
3648 // grid mouse event processing
3649 // ----------------------------------------------------------------------------
3652 wxGrid::DoGridCellDrag(wxMouseEvent
& event
,
3653 const wxGridCellCoords
& coords
,
3656 if ( coords
== wxGridNoCellCoords
)
3657 return; // we're outside any valid cell
3659 // Hide the edit control, so it won't interfere with drag-shrinking.
3660 if ( IsCellEditControlShown() )
3662 HideCellEditControl();
3663 SaveEditControlValue();
3666 switch ( event
.GetModifiers() )
3669 if ( m_selectedBlockCorner
== wxGridNoCellCoords
)
3670 m_selectedBlockCorner
= coords
;
3671 UpdateBlockBeingSelected(m_selectedBlockCorner
, coords
);
3675 if ( CanDragCell() )
3679 if ( m_selectedBlockCorner
== wxGridNoCellCoords
)
3680 m_selectedBlockCorner
= coords
;
3682 SendEvent(wxEVT_GRID_CELL_BEGIN_DRAG
, coords
, event
);
3687 UpdateBlockBeingSelected(m_currentCellCoords
, coords
);
3691 // we don't handle the other key modifiers
3696 void wxGrid::DoGridLineDrag(wxMouseEvent
& event
, const wxGridOperations
& oper
)
3698 wxClientDC
dc(m_gridWin
);
3700 dc
.SetLogicalFunction(wxINVERT
);
3702 const wxRect
rectWin(CalcUnscrolledPosition(wxPoint(0, 0)),
3703 m_gridWin
->GetClientSize());
3705 // erase the previously drawn line, if any
3706 if ( m_dragLastPos
>= 0 )
3707 oper
.DrawParallelLineInRect(dc
, rectWin
, m_dragLastPos
);
3709 // we need the vertical position for rows and horizontal for columns here
3710 m_dragLastPos
= oper
.Dual().Select(CalcUnscrolledPosition(event
.GetPosition()));
3712 // don't allow resizing beneath the minimal size
3713 const int posMin
= oper
.GetLineStartPos(this, m_dragRowOrCol
) +
3714 oper
.GetMinimalLineSize(this, m_dragRowOrCol
);
3715 if ( m_dragLastPos
< posMin
)
3716 m_dragLastPos
= posMin
;
3718 // and draw it at the new position
3719 oper
.DrawParallelLineInRect(dc
, rectWin
, m_dragLastPos
);
3722 void wxGrid::DoGridDragEvent(wxMouseEvent
& event
, const wxGridCellCoords
& coords
)
3724 if ( !m_isDragging
)
3726 // Don't start doing anything until the mouse has been dragged far
3728 const wxPoint
& pt
= event
.GetPosition();
3729 if ( m_startDragPos
== wxDefaultPosition
)
3731 m_startDragPos
= pt
;
3735 if ( abs(m_startDragPos
.x
- pt
.x
) <= DRAG_SENSITIVITY
&&
3736 abs(m_startDragPos
.y
- pt
.y
) <= DRAG_SENSITIVITY
)
3740 const bool isFirstDrag
= !m_isDragging
;
3741 m_isDragging
= true;
3743 switch ( m_cursorMode
)
3745 case WXGRID_CURSOR_SELECT_CELL
:
3746 DoGridCellDrag(event
, coords
, isFirstDrag
);
3749 case WXGRID_CURSOR_RESIZE_ROW
:
3750 DoGridLineDrag(event
, wxGridRowOperations());
3753 case WXGRID_CURSOR_RESIZE_COL
:
3754 DoGridLineDrag(event
, wxGridColumnOperations());
3763 wxASSERT_MSG( !m_winCapture
, "shouldn't capture the mouse twice" );
3765 m_winCapture
= m_gridWin
;
3766 m_winCapture
->CaptureMouse();
3771 wxGrid::DoGridCellLeftDown(wxMouseEvent
& event
,
3772 const wxGridCellCoords
& coords
,
3775 if ( SendEvent(wxEVT_GRID_CELL_LEFT_CLICK
, coords
, event
) )
3777 // event handled by user code, no need to do anything here
3781 if ( !event
.CmdDown() )
3784 if ( event
.ShiftDown() )
3788 m_selection
->SelectBlock(m_currentCellCoords
, coords
, event
);
3789 m_selectedBlockCorner
= coords
;
3792 else if ( XToEdgeOfCol(pos
.x
) < 0 && YToEdgeOfRow(pos
.y
) < 0 )
3794 DisableCellEditControl();
3795 MakeCellVisible( coords
);
3797 if ( event
.CmdDown() )
3801 m_selection
->ToggleCellSelection(coords
, event
);
3804 m_selectedBlockTopLeft
= wxGridNoCellCoords
;
3805 m_selectedBlockBottomRight
= wxGridNoCellCoords
;
3806 m_selectedBlockCorner
= coords
;
3812 // In row or column selection mode just clicking on the cell
3813 // should select the row or column containing it: this is more
3814 // convenient for the kinds of controls that use such selection
3815 // mode and is compatible with 2.8 behaviour (see #12062).
3816 switch ( m_selection
->GetSelectionMode() )
3818 case wxGridSelectCells
:
3819 case wxGridSelectRowsOrColumns
:
3820 // nothing to do in these cases
3823 case wxGridSelectRows
:
3824 m_selection
->SelectRow(coords
.GetRow());
3827 case wxGridSelectColumns
:
3828 m_selection
->SelectCol(coords
.GetCol());
3833 m_waitForSlowClick
= m_currentCellCoords
== coords
&&
3834 coords
!= wxGridNoCellCoords
;
3835 SetCurrentCell( coords
);
3841 wxGrid::DoGridCellLeftDClick(wxMouseEvent
& event
,
3842 const wxGridCellCoords
& coords
,
3845 if ( XToEdgeOfCol(pos
.x
) < 0 && YToEdgeOfRow(pos
.y
) < 0 )
3847 if ( !SendEvent(wxEVT_GRID_CELL_LEFT_DCLICK
, coords
, event
) )
3849 // we want double click to select a cell and start editing
3850 // (i.e. to behave in same way as sequence of two slow clicks):
3851 m_waitForSlowClick
= true;
3857 wxGrid::DoGridCellLeftUp(wxMouseEvent
& event
, const wxGridCellCoords
& coords
)
3859 if ( m_cursorMode
== WXGRID_CURSOR_SELECT_CELL
)
3863 m_winCapture
->ReleaseMouse();
3864 m_winCapture
= NULL
;
3867 if ( coords
== m_currentCellCoords
&& m_waitForSlowClick
&& CanEnableCellControl() )
3870 EnableCellEditControl();
3872 wxGridCellAttr
*attr
= GetCellAttr(coords
);
3873 wxGridCellEditor
*editor
= attr
->GetEditor(this, coords
.GetRow(), coords
.GetCol());
3874 editor
->StartingClick();
3878 m_waitForSlowClick
= false;
3880 else if ( m_selectedBlockTopLeft
!= wxGridNoCellCoords
&&
3881 m_selectedBlockBottomRight
!= wxGridNoCellCoords
)
3885 m_selection
->SelectBlock( m_selectedBlockTopLeft
,
3886 m_selectedBlockBottomRight
,
3890 m_selectedBlockTopLeft
= wxGridNoCellCoords
;
3891 m_selectedBlockBottomRight
= wxGridNoCellCoords
;
3893 // Show the edit control, if it has been hidden for
3895 ShowCellEditControl();
3898 else if ( m_cursorMode
== WXGRID_CURSOR_RESIZE_ROW
)
3900 ChangeCursorMode(WXGRID_CURSOR_SELECT_CELL
);
3901 DoEndDragResizeRow(event
);
3903 else if ( m_cursorMode
== WXGRID_CURSOR_RESIZE_COL
)
3905 ChangeCursorMode(WXGRID_CURSOR_SELECT_CELL
);
3906 DoEndDragResizeCol(event
);
3913 wxGrid::DoGridMouseMoveEvent(wxMouseEvent
& WXUNUSED(event
),
3914 const wxGridCellCoords
& coords
,
3917 if ( coords
.GetRow() < 0 || coords
.GetCol() < 0 )
3919 // out of grid cell area
3920 ChangeCursorMode(WXGRID_CURSOR_SELECT_CELL
);
3924 int dragRow
= YToEdgeOfRow( pos
.y
);
3925 int dragCol
= XToEdgeOfCol( pos
.x
);
3927 // Dragging on the corner of a cell to resize in both
3928 // directions is not implemented yet...
3930 if ( dragRow
>= 0 && dragCol
>= 0 )
3932 ChangeCursorMode(WXGRID_CURSOR_SELECT_CELL
);
3936 if ( dragRow
>= 0 && CanDragGridSize() && CanDragRowSize(dragRow
) )
3938 if ( m_cursorMode
== WXGRID_CURSOR_SELECT_CELL
)
3940 m_dragRowOrCol
= dragRow
;
3941 ChangeCursorMode(WXGRID_CURSOR_RESIZE_ROW
, NULL
, false);
3944 // When using the native header window we can only resize the columns by
3945 // dragging the dividers in it because we can't make it enter into the
3946 // column resizing mode programmatically
3947 else if ( dragCol
>= 0 && !m_useNativeHeader
&&
3948 CanDragGridSize() && CanDragColSize(dragCol
) )
3950 if ( m_cursorMode
== WXGRID_CURSOR_SELECT_CELL
)
3952 m_dragRowOrCol
= dragCol
;
3953 ChangeCursorMode(WXGRID_CURSOR_RESIZE_COL
, NULL
, false);
3956 else // Neither on a row or col edge
3958 if ( m_cursorMode
!= WXGRID_CURSOR_SELECT_CELL
)
3960 ChangeCursorMode(WXGRID_CURSOR_SELECT_CELL
);
3965 void wxGrid::ProcessGridCellMouseEvent(wxMouseEvent
& event
)
3967 if ( event
.Entering() || event
.Leaving() )
3969 // we don't care about these events but we must not reset m_isDragging
3970 // if they happen so return before anything else is done
3975 const wxPoint pos
= CalcUnscrolledPosition(event
.GetPosition());
3977 // coordinates of the cell under mouse
3978 wxGridCellCoords coords
= XYToCell(pos
);
3980 int cell_rows
, cell_cols
;
3981 GetCellSize( coords
.GetRow(), coords
.GetCol(), &cell_rows
, &cell_cols
);
3982 if ( (cell_rows
< 0) || (cell_cols
< 0) )
3984 coords
.SetRow(coords
.GetRow() + cell_rows
);
3985 coords
.SetCol(coords
.GetCol() + cell_cols
);
3988 if ( event
.Dragging() )
3990 if ( event
.LeftIsDown() )
3991 DoGridDragEvent(event
, coords
);
3997 m_isDragging
= false;
3998 m_startDragPos
= wxDefaultPosition
;
4000 // deal with various button presses
4001 if ( event
.IsButton() )
4003 if ( coords
!= wxGridNoCellCoords
)
4005 DisableCellEditControl();
4007 if ( event
.LeftDown() )
4008 DoGridCellLeftDown(event
, coords
, pos
);
4009 else if ( event
.LeftDClick() )
4010 DoGridCellLeftDClick(event
, coords
, pos
);
4011 else if ( event
.RightDown() )
4012 SendEvent(wxEVT_GRID_CELL_RIGHT_CLICK
, coords
, event
);
4013 else if ( event
.RightDClick() )
4014 SendEvent(wxEVT_GRID_CELL_RIGHT_DCLICK
, coords
, event
);
4017 // this one should be called even if we're not over any cell
4018 if ( event
.LeftUp() )
4020 DoGridCellLeftUp(event
, coords
);
4023 else if ( event
.Moving() )
4025 DoGridMouseMoveEvent(event
, coords
, pos
);
4027 else // unknown mouse event?
4033 // this function returns true only if the size really changed
4034 bool wxGrid::DoEndDragResizeLine(const wxGridOperations
& oper
)
4036 if ( m_dragLastPos
== -1 )
4039 const wxGridOperations
& doper
= oper
.Dual();
4041 const wxSize size
= m_gridWin
->GetClientSize();
4043 const wxPoint ptOrigin
= CalcUnscrolledPosition(wxPoint(0, 0));
4045 // erase the last line we drew
4046 wxClientDC
dc(m_gridWin
);
4048 dc
.SetLogicalFunction(wxINVERT
);
4050 const int posLineStart
= oper
.Select(ptOrigin
);
4051 const int posLineEnd
= oper
.Select(ptOrigin
) + oper
.Select(size
);
4053 oper
.DrawParallelLine(dc
, posLineStart
, posLineEnd
, m_dragLastPos
);
4055 // temporarily hide the edit control before resizing
4056 HideCellEditControl();
4057 SaveEditControlValue();
4059 // do resize the line
4060 const int lineStart
= oper
.GetLineStartPos(this, m_dragRowOrCol
);
4061 const int lineSizeOld
= oper
.GetLineSize(this, m_dragRowOrCol
);
4062 oper
.SetLineSize(this, m_dragRowOrCol
,
4063 wxMax(m_dragLastPos
- lineStart
,
4064 oper
.GetMinimalLineSize(this, m_dragRowOrCol
)));
4066 sizeChanged
= oper
.GetLineSize(this, m_dragRowOrCol
) != lineSizeOld
;
4070 // refresh now if we're not frozen
4071 if ( !GetBatchCount() )
4073 // we need to refresh everything beyond the resized line in the header
4076 // get the position from which to refresh in the other direction
4077 wxRect
rect(CellToRect(oper
.MakeCoords(m_dragRowOrCol
, 0)));
4078 rect
.SetPosition(CalcScrolledPosition(rect
.GetPosition()));
4080 // we only need the ordinate (for rows) or abscissa (for columns) here,
4081 // and need to cover the entire window in the other direction
4082 oper
.Select(rect
) = 0;
4084 wxRect
rectHeader(rect
.GetPosition(),
4087 oper
.GetHeaderWindowSize(this),
4088 doper
.Select(size
) - doper
.Select(rect
)
4091 oper
.GetHeaderWindow(this)->Refresh(true, &rectHeader
);
4094 // also refresh the grid window: extend the rectangle
4097 oper
.SelectSize(rect
) = oper
.Select(size
);
4099 int subtractLines
= 0;
4100 const int lineStart
= doper
.PosToLine(this, posLineStart
);
4101 if ( lineStart
>= 0 )
4103 // ensure that if we have a multi-cell block we redraw all of
4104 // it by increasing the refresh area to cover it entirely if a
4105 // part of it is affected
4106 const int lineEnd
= doper
.PosToLine(this, posLineEnd
, true);
4107 for ( int line
= lineStart
; line
< lineEnd
; line
++ )
4109 int cellLines
= oper
.Select(
4110 GetCellSize(oper
.MakeCoords(m_dragRowOrCol
, line
)));
4111 if ( cellLines
< subtractLines
)
4112 subtractLines
= cellLines
;
4117 oper
.GetLineStartPos(this, m_dragRowOrCol
+ subtractLines
);
4118 startPos
= doper
.CalcScrolledPosition(this, startPos
);
4120 doper
.Select(rect
) = startPos
;
4121 doper
.SelectSize(rect
) = doper
.Select(size
) - startPos
;
4123 m_gridWin
->Refresh(false, &rect
);
4127 // show the edit control back again
4128 ShowCellEditControl();
4133 void wxGrid::DoEndDragResizeRow(const wxMouseEvent
& event
)
4135 // TODO: generate RESIZING event, see #10754
4137 if ( DoEndDragResizeLine(wxGridRowOperations()) )
4138 SendGridSizeEvent(wxEVT_GRID_ROW_SIZE
, m_dragRowOrCol
, -1, event
);
4141 void wxGrid::DoEndDragResizeCol(const wxMouseEvent
& event
)
4143 // TODO: generate RESIZING event, see #10754
4145 if ( DoEndDragResizeLine(wxGridColumnOperations()) )
4146 SendGridSizeEvent(wxEVT_GRID_COL_SIZE
, -1, m_dragRowOrCol
, event
);
4149 void wxGrid::DoStartMoveCol(int col
)
4151 m_dragRowOrCol
= col
;
4154 void wxGrid::DoEndMoveCol(int pos
)
4156 wxASSERT_MSG( m_dragRowOrCol
!= -1, "no matching DoStartMoveCol?" );
4158 if ( SendEvent(wxEVT_GRID_COL_MOVE
, -1, m_dragRowOrCol
) != -1 )
4159 SetColPos(m_dragRowOrCol
, pos
);
4160 //else: vetoed by user
4162 m_dragRowOrCol
= -1;
4165 void wxGrid::RefreshAfterColPosChange()
4167 // recalculate the column rights as the column positions have changed,
4168 // unless we calculate them dynamically because all columns widths are the
4169 // same and it's easy to do
4170 if ( !m_colWidths
.empty() )
4173 for ( int colPos
= 0; colPos
< m_numCols
; colPos
++ )
4175 int colID
= GetColAt( colPos
);
4177 colRight
+= m_colWidths
[colID
];
4178 m_colRights
[colID
] = colRight
;
4182 // and make the changes visible
4183 if ( m_useNativeHeader
)
4185 if ( m_colAt
.empty() )
4186 GetGridColHeader()->ResetColumnsOrder();
4188 GetGridColHeader()->SetColumnsOrder(m_colAt
);
4192 m_colWindow
->Refresh();
4194 m_gridWin
->Refresh();
4197 void wxGrid::SetColumnsOrder(const wxArrayInt
& order
)
4201 RefreshAfterColPosChange();
4204 void wxGrid::SetColPos(int idx
, int pos
)
4206 // we're going to need m_colAt now, initialize it if needed
4207 if ( m_colAt
.empty() )
4209 m_colAt
.reserve(m_numCols
);
4210 for ( int i
= 0; i
< m_numCols
; i
++ )
4211 m_colAt
.push_back(i
);
4214 wxHeaderCtrl::MoveColumnInOrderArray(m_colAt
, idx
, pos
);
4216 RefreshAfterColPosChange();
4219 void wxGrid::ResetColPos()
4223 RefreshAfterColPosChange();
4226 void wxGrid::EnableDragColMove( bool enable
)
4228 if ( m_canDragColMove
== enable
)
4231 if ( m_useNativeHeader
)
4233 // update all columns to make them [not] reorderable
4234 GetGridColHeader()->SetColumnCount(m_numCols
);
4237 m_canDragColMove
= enable
;
4239 // we use to call ResetColPos() from here if !enable but this doesn't seem
4240 // right as it would mean there would be no way to "freeze" the current
4241 // columns order by disabling moving them after putting them in the desired
4242 // order, whereas now you can always call ResetColPos() manually if needed
4247 // ------ interaction with data model
4249 bool wxGrid::ProcessTableMessage( wxGridTableMessage
& msg
)
4251 switch ( msg
.GetId() )
4253 case wxGRIDTABLE_REQUEST_VIEW_GET_VALUES
:
4254 return GetModelValues();
4256 case wxGRIDTABLE_REQUEST_VIEW_SEND_VALUES
:
4257 return SetModelValues();
4259 case wxGRIDTABLE_NOTIFY_ROWS_INSERTED
:
4260 case wxGRIDTABLE_NOTIFY_ROWS_APPENDED
:
4261 case wxGRIDTABLE_NOTIFY_ROWS_DELETED
:
4262 case wxGRIDTABLE_NOTIFY_COLS_INSERTED
:
4263 case wxGRIDTABLE_NOTIFY_COLS_APPENDED
:
4264 case wxGRIDTABLE_NOTIFY_COLS_DELETED
:
4265 return Redimension( msg
);
4272 // The behaviour of this function depends on the grid table class
4273 // Clear() function. For the default wxGridStringTable class the
4274 // behaviour is to replace all cell contents with wxEmptyString but
4275 // not to change the number of rows or cols.
4277 void wxGrid::ClearGrid()
4281 if (IsCellEditControlEnabled())
4282 DisableCellEditControl();
4285 if (!GetBatchCount())
4286 m_gridWin
->Refresh();
4291 wxGrid::DoModifyLines(bool (wxGridTableBase::*funcModify
)(size_t, size_t),
4292 int pos
, int num
, bool WXUNUSED(updateLabels
) )
4294 wxCHECK_MSG( m_created
, false, "must finish creating the grid first" );
4299 if ( IsCellEditControlEnabled() )
4300 DisableCellEditControl();
4302 return (m_table
->*funcModify
)(pos
, num
);
4304 // the table will have sent the results of the insert row
4305 // operation to this view object as a grid table message
4309 wxGrid::DoAppendLines(bool (wxGridTableBase::*funcAppend
)(size_t),
4310 int num
, bool WXUNUSED(updateLabels
))
4312 wxCHECK_MSG( m_created
, false, "must finish creating the grid first" );
4317 return (m_table
->*funcAppend
)(num
);
4320 // ----------------------------------------------------------------------------
4321 // event generation helpers
4322 // ----------------------------------------------------------------------------
4325 wxGrid::SendGridSizeEvent(wxEventType type
,
4327 const wxMouseEvent
& mouseEv
)
4329 int rowOrCol
= row
== -1 ? col
: row
;
4331 wxGridSizeEvent
gridEvt( GetId(),
4335 mouseEv
.GetX() + GetRowLabelSize(),
4336 mouseEv
.GetY() + GetColLabelSize(),
4339 GetEventHandler()->ProcessEvent(gridEvt
);
4342 // Generate a grid event based on a mouse event and return:
4343 // -1 if the event was vetoed
4344 // +1 if the event was processed (but not vetoed)
4345 // 0 if the event wasn't handled
4347 wxGrid::SendEvent(const wxEventType type
,
4349 const wxMouseEvent
& mouseEv
)
4351 bool claimed
, vetoed
;
4353 if ( type
== wxEVT_GRID_RANGE_SELECT
)
4355 // Right now, it should _never_ end up here!
4356 wxGridRangeSelectEvent
gridEvt( GetId(),
4359 m_selectedBlockTopLeft
,
4360 m_selectedBlockBottomRight
,
4364 claimed
= GetEventHandler()->ProcessEvent(gridEvt
);
4365 vetoed
= !gridEvt
.IsAllowed();
4367 else if ( type
== wxEVT_GRID_LABEL_LEFT_CLICK
||
4368 type
== wxEVT_GRID_LABEL_LEFT_DCLICK
||
4369 type
== wxEVT_GRID_LABEL_RIGHT_CLICK
||
4370 type
== wxEVT_GRID_LABEL_RIGHT_DCLICK
)
4372 wxPoint pos
= mouseEv
.GetPosition();
4374 if ( mouseEv
.GetEventObject() == GetGridRowLabelWindow() )
4375 pos
.y
+= GetColLabelSize();
4376 if ( mouseEv
.GetEventObject() == GetGridColLabelWindow() )
4377 pos
.x
+= GetRowLabelSize();
4379 wxGridEvent
gridEvt( GetId(),
4387 claimed
= GetEventHandler()->ProcessEvent(gridEvt
);
4388 vetoed
= !gridEvt
.IsAllowed();
4392 wxGridEvent
gridEvt( GetId(),
4396 mouseEv
.GetX() + GetRowLabelSize(),
4397 mouseEv
.GetY() + GetColLabelSize(),
4400 claimed
= GetEventHandler()->ProcessEvent(gridEvt
);
4401 vetoed
= !gridEvt
.IsAllowed();
4404 // A Veto'd event may not be `claimed' so test this first
4408 return claimed
? 1 : 0;
4411 // Generate a grid event of specified type, return value same as above
4414 wxGrid::SendEvent(const wxEventType type
, int row
, int col
, const wxString
& s
)
4416 wxGridEvent
gridEvt( GetId(), type
, this, row
, col
);
4417 gridEvt
.SetString(s
);
4419 const bool claimed
= GetEventHandler()->ProcessEvent(gridEvt
);
4421 // A Veto'd event may not be `claimed' so test this first
4422 if ( !gridEvt
.IsAllowed() )
4425 return claimed
? 1 : 0;
4428 void wxGrid::OnPaint( wxPaintEvent
& WXUNUSED(event
) )
4430 // needed to prevent zillions of paint events on MSW
4434 void wxGrid::Refresh(bool eraseb
, const wxRect
* rect
)
4436 // Don't do anything if between Begin/EndBatch...
4437 // EndBatch() will do all this on the last nested one anyway.
4438 if ( m_created
&& !GetBatchCount() )
4440 // Refresh to get correct scrolled position:
4441 wxScrolledWindow::Refresh(eraseb
, rect
);
4445 int rect_x
, rect_y
, rectWidth
, rectHeight
;
4446 int width_label
, width_cell
, height_label
, height_cell
;
4449 // Copy rectangle can get scroll offsets..
4450 rect_x
= rect
->GetX();
4451 rect_y
= rect
->GetY();
4452 rectWidth
= rect
->GetWidth();
4453 rectHeight
= rect
->GetHeight();
4455 width_label
= m_rowLabelWidth
- rect_x
;
4456 if (width_label
> rectWidth
)
4457 width_label
= rectWidth
;
4459 height_label
= m_colLabelHeight
- rect_y
;
4460 if (height_label
> rectHeight
)
4461 height_label
= rectHeight
;
4463 if (rect_x
> m_rowLabelWidth
)
4465 x
= rect_x
- m_rowLabelWidth
;
4466 width_cell
= rectWidth
;
4471 width_cell
= rectWidth
- (m_rowLabelWidth
- rect_x
);
4474 if (rect_y
> m_colLabelHeight
)
4476 y
= rect_y
- m_colLabelHeight
;
4477 height_cell
= rectHeight
;
4482 height_cell
= rectHeight
- (m_colLabelHeight
- rect_y
);
4485 // Paint corner label part intersecting rect.
4486 if ( width_label
> 0 && height_label
> 0 )
4488 wxRect
anotherrect(rect_x
, rect_y
, width_label
, height_label
);
4489 m_cornerLabelWin
->Refresh(eraseb
, &anotherrect
);
4492 // Paint col labels part intersecting rect.
4493 if ( width_cell
> 0 && height_label
> 0 )
4495 wxRect
anotherrect(x
, rect_y
, width_cell
, height_label
);
4496 m_colWindow
->Refresh(eraseb
, &anotherrect
);
4499 // Paint row labels part intersecting rect.
4500 if ( width_label
> 0 && height_cell
> 0 )
4502 wxRect
anotherrect(rect_x
, y
, width_label
, height_cell
);
4503 m_rowLabelWin
->Refresh(eraseb
, &anotherrect
);
4506 // Paint cell area part intersecting rect.
4507 if ( width_cell
> 0 && height_cell
> 0 )
4509 wxRect
anotherrect(x
, y
, width_cell
, height_cell
);
4510 m_gridWin
->Refresh(eraseb
, &anotherrect
);
4515 m_cornerLabelWin
->Refresh(eraseb
, NULL
);
4516 m_colWindow
->Refresh(eraseb
, NULL
);
4517 m_rowLabelWin
->Refresh(eraseb
, NULL
);
4518 m_gridWin
->Refresh(eraseb
, NULL
);
4523 void wxGrid::OnSize(wxSizeEvent
& WXUNUSED(event
))
4525 if (m_targetWindow
!= this) // check whether initialisation has been done
4527 // reposition our children windows
4532 void wxGrid::OnKeyDown( wxKeyEvent
& event
)
4534 if ( m_inOnKeyDown
)
4536 // shouldn't be here - we are going round in circles...
4538 wxFAIL_MSG( wxT("wxGrid::OnKeyDown called while already active") );
4541 m_inOnKeyDown
= true;
4543 // propagate the event up and see if it gets processed
4544 wxWindow
*parent
= GetParent();
4545 wxKeyEvent
keyEvt( event
);
4546 keyEvt
.SetEventObject( parent
);
4548 if ( !parent
->GetEventHandler()->ProcessEvent( keyEvt
) )
4550 if (GetLayoutDirection() == wxLayout_RightToLeft
)
4552 if (event
.GetKeyCode() == WXK_RIGHT
)
4553 event
.m_keyCode
= WXK_LEFT
;
4554 else if (event
.GetKeyCode() == WXK_LEFT
)
4555 event
.m_keyCode
= WXK_RIGHT
;
4558 // try local handlers
4559 switch ( event
.GetKeyCode() )
4562 if ( event
.ControlDown() )
4563 MoveCursorUpBlock( event
.ShiftDown() );
4565 MoveCursorUp( event
.ShiftDown() );
4569 if ( event
.ControlDown() )
4570 MoveCursorDownBlock( event
.ShiftDown() );
4572 MoveCursorDown( event
.ShiftDown() );
4576 if ( event
.ControlDown() )
4577 MoveCursorLeftBlock( event
.ShiftDown() );
4579 MoveCursorLeft( event
.ShiftDown() );
4583 if ( event
.ControlDown() )
4584 MoveCursorRightBlock( event
.ShiftDown() );
4586 MoveCursorRight( event
.ShiftDown() );
4590 case WXK_NUMPAD_ENTER
:
4591 if ( event
.ControlDown() )
4593 event
.Skip(); // to let the edit control have the return
4597 if ( GetGridCursorRow() < GetNumberRows()-1 )
4599 MoveCursorDown( event
.ShiftDown() );
4603 // at the bottom of a column
4604 DisableCellEditControl();
4614 if (event
.ShiftDown())
4616 if ( GetGridCursorCol() > 0 )
4618 MoveCursorLeft( false );
4623 DisableCellEditControl();
4628 if ( GetGridCursorCol() < GetNumberCols() - 1 )
4630 MoveCursorRight( false );
4635 DisableCellEditControl();
4641 GoToCell(event
.ControlDown() ? 0
4642 : m_currentCellCoords
.GetRow(),
4647 GoToCell(event
.ControlDown() ? m_numRows
- 1
4648 : m_currentCellCoords
.GetRow(),
4661 // Ctrl-Space selects the current column, Shift-Space -- the
4662 // current row and Ctrl-Shift-Space -- everything
4663 switch ( m_selection
? event
.GetModifiers() : wxMOD_NONE
)
4666 m_selection
->SelectCol(m_currentCellCoords
.GetCol());
4670 m_selection
->SelectRow(m_currentCellCoords
.GetRow());
4673 case wxMOD_CONTROL
| wxMOD_SHIFT
:
4674 m_selection
->SelectBlock(0, 0,
4675 m_numRows
- 1, m_numCols
- 1);
4679 if ( !IsEditable() )
4681 MoveCursorRight(false);
4684 //else: fall through
4697 m_inOnKeyDown
= false;
4700 void wxGrid::OnKeyUp( wxKeyEvent
& event
)
4702 // try local handlers
4704 if ( event
.GetKeyCode() == WXK_SHIFT
)
4706 if ( m_selectedBlockTopLeft
!= wxGridNoCellCoords
&&
4707 m_selectedBlockBottomRight
!= wxGridNoCellCoords
)
4711 m_selection
->SelectBlock(
4712 m_selectedBlockTopLeft
,
4713 m_selectedBlockBottomRight
,
4718 m_selectedBlockTopLeft
= wxGridNoCellCoords
;
4719 m_selectedBlockBottomRight
= wxGridNoCellCoords
;
4720 m_selectedBlockCorner
= wxGridNoCellCoords
;
4724 void wxGrid::OnChar( wxKeyEvent
& event
)
4726 // is it possible to edit the current cell at all?
4727 if ( !IsCellEditControlEnabled() && CanEnableCellControl() )
4729 // yes, now check whether the cells editor accepts the key
4730 int row
= m_currentCellCoords
.GetRow();
4731 int col
= m_currentCellCoords
.GetCol();
4732 wxGridCellAttr
*attr
= GetCellAttr(row
, col
);
4733 wxGridCellEditor
*editor
= attr
->GetEditor(this, row
, col
);
4735 // <F2> is special and will always start editing, for
4736 // other keys - ask the editor itself
4737 if ( (event
.GetKeyCode() == WXK_F2
&& !event
.HasModifiers())
4738 || editor
->IsAcceptedKey(event
) )
4740 // ensure cell is visble
4741 MakeCellVisible(row
, col
);
4742 EnableCellEditControl();
4744 // a problem can arise if the cell is not completely
4745 // visible (even after calling MakeCellVisible the
4746 // control is not created and calling StartingKey will
4748 if ( event
.GetKeyCode() != WXK_F2
&& editor
->IsCreated() && m_cellEditCtrlEnabled
)
4749 editor
->StartingKey(event
);
4765 void wxGrid::OnEraseBackground(wxEraseEvent
&)
4769 bool wxGrid::SetCurrentCell( const wxGridCellCoords
& coords
)
4771 if ( SendEvent(wxEVT_GRID_SELECT_CELL
, coords
) == -1 )
4773 // the event has been vetoed - do nothing
4777 #if !defined(__WXMAC__)
4778 wxClientDC
dc( m_gridWin
);
4782 if ( m_currentCellCoords
!= wxGridNoCellCoords
)
4784 DisableCellEditControl();
4786 if ( IsVisible( m_currentCellCoords
, false ) )
4789 r
= BlockToDeviceRect( m_currentCellCoords
, m_currentCellCoords
);
4790 if ( !m_gridLinesEnabled
)
4798 wxGridCellCoordsArray cells
= CalcCellsExposed( r
);
4800 // Otherwise refresh redraws the highlight!
4801 m_currentCellCoords
= coords
;
4803 #if defined(__WXMAC__)
4804 m_gridWin
->Refresh(true /*, & r */);
4806 DrawGridCellArea( dc
, cells
);
4807 DrawAllGridLines( dc
, r
);
4812 m_currentCellCoords
= coords
;
4814 wxGridCellAttr
*attr
= GetCellAttr( coords
);
4815 #if !defined(__WXMAC__)
4816 DrawCellHighlight( dc
, attr
);
4824 wxGrid::UpdateBlockBeingSelected(int topRow
, int leftCol
,
4825 int bottomRow
, int rightCol
)
4827 MakeCellVisible(m_selectedBlockCorner
);
4828 m_selectedBlockCorner
= wxGridCellCoords(bottomRow
, rightCol
);
4832 switch ( m_selection
->GetSelectionMode() )
4835 wxFAIL_MSG( "unknown selection mode" );
4838 case wxGridSelectCells
:
4839 // arbitrary blocks selection allowed so just use the cell
4840 // coordinates as is
4843 case wxGridSelectRows
:
4844 // only full rows selection allowd, ensure that we do select
4847 rightCol
= GetNumberCols() - 1;
4850 case wxGridSelectColumns
:
4851 // same as above but for columns
4853 bottomRow
= GetNumberRows() - 1;
4856 case wxGridSelectRowsOrColumns
:
4857 // in this mode we can select only full rows or full columns so
4858 // it doesn't make sense to select blocks at all (and we can't
4859 // extend the block because there is no preferred direction, we
4860 // could only extend it to cover the entire grid but this is
4866 EnsureFirstLessThanSecond(topRow
, bottomRow
);
4867 EnsureFirstLessThanSecond(leftCol
, rightCol
);
4869 wxGridCellCoords updateTopLeft
= wxGridCellCoords(topRow
, leftCol
),
4870 updateBottomRight
= wxGridCellCoords(bottomRow
, rightCol
);
4872 // First the case that we selected a completely new area
4873 if ( m_selectedBlockTopLeft
== wxGridNoCellCoords
||
4874 m_selectedBlockBottomRight
== wxGridNoCellCoords
)
4877 rect
= BlockToDeviceRect( wxGridCellCoords ( topRow
, leftCol
),
4878 wxGridCellCoords ( bottomRow
, rightCol
) );
4879 m_gridWin
->Refresh( false, &rect
);
4882 // Now handle changing an existing selection area.
4883 else if ( m_selectedBlockTopLeft
!= updateTopLeft
||
4884 m_selectedBlockBottomRight
!= updateBottomRight
)
4886 // Compute two optimal update rectangles:
4887 // Either one rectangle is a real subset of the
4888 // other, or they are (almost) disjoint!
4890 bool need_refresh
[4];
4894 need_refresh
[3] = false;
4897 // Store intermediate values
4898 wxCoord oldLeft
= m_selectedBlockTopLeft
.GetCol();
4899 wxCoord oldTop
= m_selectedBlockTopLeft
.GetRow();
4900 wxCoord oldRight
= m_selectedBlockBottomRight
.GetCol();
4901 wxCoord oldBottom
= m_selectedBlockBottomRight
.GetRow();
4903 // Determine the outer/inner coordinates.
4904 EnsureFirstLessThanSecond(oldLeft
, leftCol
);
4905 EnsureFirstLessThanSecond(oldTop
, topRow
);
4906 EnsureFirstLessThanSecond(rightCol
, oldRight
);
4907 EnsureFirstLessThanSecond(bottomRow
, oldBottom
);
4909 // Now, either the stuff marked old is the outer
4910 // rectangle or we don't have a situation where one
4911 // is contained in the other.
4913 if ( oldLeft
< leftCol
)
4915 // Refresh the newly selected or deselected
4916 // area to the left of the old or new selection.
4917 need_refresh
[0] = true;
4918 rect
[0] = BlockToDeviceRect(
4919 wxGridCellCoords( oldTop
, oldLeft
),
4920 wxGridCellCoords( oldBottom
, leftCol
- 1 ) );
4923 if ( oldTop
< topRow
)
4925 // Refresh the newly selected or deselected
4926 // area above the old or new selection.
4927 need_refresh
[1] = true;
4928 rect
[1] = BlockToDeviceRect(
4929 wxGridCellCoords( oldTop
, leftCol
),
4930 wxGridCellCoords( topRow
- 1, rightCol
) );
4933 if ( oldRight
> rightCol
)
4935 // Refresh the newly selected or deselected
4936 // area to the right of the old or new selection.
4937 need_refresh
[2] = true;
4938 rect
[2] = BlockToDeviceRect(
4939 wxGridCellCoords( oldTop
, rightCol
+ 1 ),
4940 wxGridCellCoords( oldBottom
, oldRight
) );
4943 if ( oldBottom
> bottomRow
)
4945 // Refresh the newly selected or deselected
4946 // area below the old or new selection.
4947 need_refresh
[3] = true;
4948 rect
[3] = BlockToDeviceRect(
4949 wxGridCellCoords( bottomRow
+ 1, leftCol
),
4950 wxGridCellCoords( oldBottom
, rightCol
) );
4953 // various Refresh() calls
4954 for (i
= 0; i
< 4; i
++ )
4955 if ( need_refresh
[i
] && rect
[i
] != wxGridNoCellRect
)
4956 m_gridWin
->Refresh( false, &(rect
[i
]) );
4960 m_selectedBlockTopLeft
= updateTopLeft
;
4961 m_selectedBlockBottomRight
= updateBottomRight
;
4965 // ------ functions to get/send data (see also public functions)
4968 bool wxGrid::GetModelValues()
4970 // Hide the editor, so it won't hide a changed value.
4971 HideCellEditControl();
4975 // all we need to do is repaint the grid
4977 m_gridWin
->Refresh();
4984 bool wxGrid::SetModelValues()
4988 // Disable the editor, so it won't hide a changed value.
4989 // Do we also want to save the current value of the editor first?
4991 DisableCellEditControl();
4995 for ( row
= 0; row
< m_numRows
; row
++ )
4997 for ( col
= 0; col
< m_numCols
; col
++ )
4999 m_table
->SetValue( row
, col
, GetCellValue(row
, col
) );
5009 // Note - this function only draws cells that are in the list of
5010 // exposed cells (usually set from the update region by
5011 // CalcExposedCells)
5013 void wxGrid::DrawGridCellArea( wxDC
& dc
, const wxGridCellCoordsArray
& cells
)
5015 if ( !m_numRows
|| !m_numCols
)
5018 int i
, numCells
= cells
.GetCount();
5019 int row
, col
, cell_rows
, cell_cols
;
5020 wxGridCellCoordsArray redrawCells
;
5022 for ( i
= numCells
- 1; i
>= 0; i
-- )
5024 row
= cells
[i
].GetRow();
5025 col
= cells
[i
].GetCol();
5026 GetCellSize( row
, col
, &cell_rows
, &cell_cols
);
5028 // If this cell is part of a multicell block, find owner for repaint
5029 if ( cell_rows
<= 0 || cell_cols
<= 0 )
5031 wxGridCellCoords
cell( row
+ cell_rows
, col
+ cell_cols
);
5032 bool marked
= false;
5033 for ( int j
= 0; j
< numCells
; j
++ )
5035 if ( cell
== cells
[j
] )
5044 int count
= redrawCells
.GetCount();
5045 for (int j
= 0; j
< count
; j
++)
5047 if ( cell
== redrawCells
[j
] )
5055 redrawCells
.Add( cell
);
5058 // don't bother drawing this cell
5062 // If this cell is empty, find cell to left that might want to overflow
5063 if (m_table
&& m_table
->IsEmptyCell(row
, col
))
5065 for ( int l
= 0; l
< cell_rows
; l
++ )
5067 // find a cell in this row to leave already marked for repaint
5069 for (int k
= 0; k
< int(redrawCells
.GetCount()); k
++)
5070 if ((redrawCells
[k
].GetCol() < left
) &&
5071 (redrawCells
[k
].GetRow() == row
))
5073 left
= redrawCells
[k
].GetCol();
5077 left
= 0; // oh well
5079 for (int j
= col
- 1; j
>= left
; j
--)
5081 if (!m_table
->IsEmptyCell(row
+ l
, j
))
5083 if (GetCellOverflow(row
+ l
, j
))
5085 wxGridCellCoords
cell(row
+ l
, j
);
5086 bool marked
= false;
5088 for (int k
= 0; k
< numCells
; k
++)
5090 if ( cell
== cells
[k
] )
5099 int count
= redrawCells
.GetCount();
5100 for (int k
= 0; k
< count
; k
++)
5102 if ( cell
== redrawCells
[k
] )
5109 redrawCells
.Add( cell
);
5118 DrawCell( dc
, cells
[i
] );
5121 numCells
= redrawCells
.GetCount();
5123 for ( i
= numCells
- 1; i
>= 0; i
-- )
5125 DrawCell( dc
, redrawCells
[i
] );
5129 void wxGrid::DrawGridSpace( wxDC
& dc
)
5132 m_gridWin
->GetClientSize( &cw
, &ch
);
5135 CalcUnscrolledPosition( cw
, ch
, &right
, &bottom
);
5137 int rightCol
= m_numCols
> 0 ? GetColRight(GetColAt( m_numCols
- 1 )) : 0;
5138 int bottomRow
= m_numRows
> 0 ? GetRowBottom(m_numRows
- 1) : 0;
5140 if ( right
> rightCol
|| bottom
> bottomRow
)
5143 CalcUnscrolledPosition( 0, 0, &left
, &top
);
5145 dc
.SetBrush(GetDefaultCellBackgroundColour());
5146 dc
.SetPen( *wxTRANSPARENT_PEN
);
5148 if ( right
> rightCol
)
5150 dc
.DrawRectangle( rightCol
, top
, right
- rightCol
, ch
);
5153 if ( bottom
> bottomRow
)
5155 dc
.DrawRectangle( left
, bottomRow
, cw
, bottom
- bottomRow
);
5160 void wxGrid::DrawCell( wxDC
& dc
, const wxGridCellCoords
& coords
)
5162 int row
= coords
.GetRow();
5163 int col
= coords
.GetCol();
5165 if ( GetColWidth(col
) <= 0 || GetRowHeight(row
) <= 0 )
5168 // we draw the cell border ourselves
5169 wxGridCellAttr
* attr
= GetCellAttr(row
, col
);
5171 bool isCurrent
= coords
== m_currentCellCoords
;
5173 wxRect rect
= CellToRect( row
, col
);
5175 // if the editor is shown, we should use it and not the renderer
5176 // Note: However, only if it is really _shown_, i.e. not hidden!
5177 if ( isCurrent
&& IsCellEditControlShown() )
5179 // NB: this "#if..." is temporary and fixes a problem where the
5180 // edit control is erased by this code after being rendered.
5181 // On wxMac (QD build only), the cell editor is a wxTextCntl and is rendered
5182 // implicitly, causing this out-of order render.
5183 #if !defined(__WXMAC__)
5184 wxGridCellEditor
*editor
= attr
->GetEditor(this, row
, col
);
5185 editor
->PaintBackground(rect
, attr
);
5191 // but all the rest is drawn by the cell renderer and hence may be customized
5192 wxGridCellRenderer
*renderer
= attr
->GetRenderer(this, row
, col
);
5193 renderer
->Draw(*this, *attr
, dc
, rect
, row
, col
, IsInSelection(coords
));
5200 void wxGrid::DrawCellHighlight( wxDC
& dc
, const wxGridCellAttr
*attr
)
5202 // don't show highlight when the grid doesn't have focus
5206 int row
= m_currentCellCoords
.GetRow();
5207 int col
= m_currentCellCoords
.GetCol();
5209 if ( GetColWidth(col
) <= 0 || GetRowHeight(row
) <= 0 )
5212 wxRect rect
= CellToRect(row
, col
);
5214 // hmmm... what could we do here to show that the cell is disabled?
5215 // for now, I just draw a thinner border than for the other ones, but
5216 // it doesn't look really good
5218 int penWidth
= attr
->IsReadOnly() ? m_cellHighlightROPenWidth
: m_cellHighlightPenWidth
;
5222 // The center of the drawn line is where the position/width/height of
5223 // the rectangle is actually at (on wxMSW at least), so the
5224 // size of the rectangle is reduced to compensate for the thickness of
5225 // the line. If this is too strange on non-wxMSW platforms then
5226 // please #ifdef this appropriately.
5227 rect
.x
+= penWidth
/ 2;
5228 rect
.y
+= penWidth
/ 2;
5229 rect
.width
-= penWidth
- 1;
5230 rect
.height
-= penWidth
- 1;
5232 // Now draw the rectangle
5233 // use the cellHighlightColour if the cell is inside a selection, this
5234 // will ensure the cell is always visible.
5235 dc
.SetPen(wxPen(IsInSelection(row
,col
) ? m_selectionForeground
5236 : m_cellHighlightColour
,
5238 dc
.SetBrush(*wxTRANSPARENT_BRUSH
);
5239 dc
.DrawRectangle(rect
);
5243 wxPen
wxGrid::GetDefaultGridLinePen()
5245 return wxPen(GetGridLineColour());
5248 wxPen
wxGrid::GetRowGridLinePen(int WXUNUSED(row
))
5250 return GetDefaultGridLinePen();
5253 wxPen
wxGrid::GetColGridLinePen(int WXUNUSED(col
))
5255 return GetDefaultGridLinePen();
5258 void wxGrid::DrawCellBorder( wxDC
& dc
, const wxGridCellCoords
& coords
)
5260 int row
= coords
.GetRow();
5261 int col
= coords
.GetCol();
5262 if ( GetColWidth(col
) <= 0 || GetRowHeight(row
) <= 0 )
5266 wxRect rect
= CellToRect( row
, col
);
5268 // right hand border
5269 dc
.SetPen( GetColGridLinePen(col
) );
5270 dc
.DrawLine( rect
.x
+ rect
.width
, rect
.y
,
5271 rect
.x
+ rect
.width
, rect
.y
+ rect
.height
+ 1 );
5274 dc
.SetPen( GetRowGridLinePen(row
) );
5275 dc
.DrawLine( rect
.x
, rect
.y
+ rect
.height
,
5276 rect
.x
+ rect
.width
, rect
.y
+ rect
.height
);
5279 void wxGrid::DrawHighlight(wxDC
& dc
, const wxGridCellCoordsArray
& cells
)
5281 // This if block was previously in wxGrid::OnPaint but that doesn't
5282 // seem to get called under wxGTK - MB
5284 if ( m_currentCellCoords
== wxGridNoCellCoords
&&
5285 m_numRows
&& m_numCols
)
5287 m_currentCellCoords
.Set(0, 0);
5290 if ( IsCellEditControlShown() )
5292 // don't show highlight when the edit control is shown
5296 // if the active cell was repainted, repaint its highlight too because it
5297 // might have been damaged by the grid lines
5298 size_t count
= cells
.GetCount();
5299 for ( size_t n
= 0; n
< count
; n
++ )
5301 wxGridCellCoords cell
= cells
[n
];
5303 // If we are using attributes, then we may have just exposed another
5304 // cell in a partially-visible merged cluster of cells. If the "anchor"
5305 // (upper left) cell of this merged cluster is the cell indicated by
5306 // m_currentCellCoords, then we need to refresh the cell highlight even
5307 // though the "anchor" itself is not part of our update segment.
5308 if ( CanHaveAttributes() )
5312 GetCellSize(cell
.GetRow(), cell
.GetCol(), &rows
, &cols
);
5315 cell
.SetRow(cell
.GetRow() + rows
);
5318 cell
.SetCol(cell
.GetCol() + cols
);
5321 if ( cell
== m_currentCellCoords
)
5323 wxGridCellAttr
* attr
= GetCellAttr(m_currentCellCoords
);
5324 DrawCellHighlight(dc
, attr
);
5332 // This is used to redraw all grid lines e.g. when the grid line colour
5335 void wxGrid::DrawAllGridLines( wxDC
& dc
, const wxRegion
& WXUNUSED(reg
) )
5337 if ( !m_gridLinesEnabled
)
5340 int top
, bottom
, left
, right
;
5343 m_gridWin
->GetClientSize(&cw
, &ch
);
5344 CalcUnscrolledPosition( 0, 0, &left
, &top
);
5345 CalcUnscrolledPosition( cw
, ch
, &right
, &bottom
);
5347 // avoid drawing grid lines past the last row and col
5348 if ( m_gridLinesClipHorz
)
5353 const int lastColRight
= GetColRight(GetColAt(m_numCols
- 1));
5354 if ( right
> lastColRight
)
5355 right
= lastColRight
;
5358 if ( m_gridLinesClipVert
)
5363 const int lastRowBottom
= GetRowBottom(m_numRows
- 1);
5364 if ( bottom
> lastRowBottom
)
5365 bottom
= lastRowBottom
;
5368 // no gridlines inside multicells, clip them out
5369 int leftCol
= GetColPos( internalXToCol(left
) );
5370 int topRow
= internalYToRow(top
);
5371 int rightCol
= GetColPos( internalXToCol(right
) );
5372 int bottomRow
= internalYToRow(bottom
);
5374 wxRegion
clippedcells(0, 0, cw
, ch
);
5376 int cell_rows
, cell_cols
;
5379 for ( int j
= topRow
; j
<= bottomRow
; j
++ )
5381 for ( int colPos
= leftCol
; colPos
<= rightCol
; colPos
++ )
5383 int i
= GetColAt( colPos
);
5385 GetCellSize( j
, i
, &cell_rows
, &cell_cols
);
5386 if ((cell_rows
> 1) || (cell_cols
> 1))
5388 rect
= CellToRect(j
,i
);
5389 CalcScrolledPosition( rect
.x
, rect
.y
, &rect
.x
, &rect
.y
);
5390 clippedcells
.Subtract(rect
);
5392 else if ((cell_rows
< 0) || (cell_cols
< 0))
5394 rect
= CellToRect(j
+ cell_rows
, i
+ cell_cols
);
5395 CalcScrolledPosition( rect
.x
, rect
.y
, &rect
.x
, &rect
.y
);
5396 clippedcells
.Subtract(rect
);
5401 dc
.SetDeviceClippingRegion( clippedcells
);
5404 // horizontal grid lines
5405 for ( int i
= internalYToRow(top
); i
< m_numRows
; i
++ )
5407 int bot
= GetRowBottom(i
) - 1;
5414 dc
.SetPen( GetRowGridLinePen(i
) );
5415 dc
.DrawLine( left
, bot
, right
, bot
);
5419 // vertical grid lines
5420 for ( int colPos
= leftCol
; colPos
< m_numCols
; colPos
++ )
5422 int i
= GetColAt( colPos
);
5424 int colRight
= GetColRight(i
);
5426 if (GetLayoutDirection() != wxLayout_RightToLeft
)
5430 if ( colRight
> right
)
5433 if ( colRight
>= left
)
5435 dc
.SetPen( GetColGridLinePen(i
) );
5436 dc
.DrawLine( colRight
, top
, colRight
, bottom
);
5440 dc
.DestroyClippingRegion();
5443 void wxGrid::DrawRowLabels( wxDC
& dc
, const wxArrayInt
& rows
)
5448 const size_t numLabels
= rows
.GetCount();
5449 for ( size_t i
= 0; i
< numLabels
; i
++ )
5451 DrawRowLabel( dc
, rows
[i
] );
5455 void wxGrid::DrawRowLabel( wxDC
& dc
, int row
)
5457 if ( GetRowHeight(row
) <= 0 || m_rowLabelWidth
<= 0 )
5460 wxGridCellAttrProvider
* const
5461 attrProvider
= m_table
? m_table
->GetAttrProvider() : NULL
;
5463 // notice that an explicit static_cast is needed to avoid a compilation
5464 // error with VC7.1 which, for some reason, tries to instantiate (abstract)
5465 // wxGridRowHeaderRenderer class without it
5466 const wxGridRowHeaderRenderer
&
5467 rend
= attrProvider
? attrProvider
->GetRowHeaderRenderer(row
)
5468 : static_cast<const wxGridRowHeaderRenderer
&>
5469 (gs_defaultHeaderRenderers
.rowRenderer
);
5471 wxRect
rect(0, GetRowTop(row
), m_rowLabelWidth
, GetRowHeight(row
));
5472 rend
.DrawBorder(*this, dc
, rect
);
5475 GetRowLabelAlignment(&hAlign
, &vAlign
);
5477 rend
.DrawLabel(*this, dc
, GetRowLabelValue(row
),
5478 rect
, hAlign
, vAlign
, wxHORIZONTAL
);
5481 void wxGrid::UseNativeColHeader(bool native
)
5483 if ( native
== m_useNativeHeader
)
5487 m_useNativeHeader
= native
;
5489 CreateColumnWindow();
5491 if ( m_useNativeHeader
)
5492 GetGridColHeader()->SetColumnCount(m_numCols
);
5496 void wxGrid::SetUseNativeColLabels( bool native
)
5498 wxASSERT_MSG( !m_useNativeHeader
,
5499 "doesn't make sense when using native header" );
5501 m_nativeColumnLabels
= native
;
5504 int height
= wxRendererNative::Get().GetHeaderButtonHeight( this );
5505 SetColLabelSize( height
);
5508 GetColLabelWindow()->Refresh();
5509 m_cornerLabelWin
->Refresh();
5512 void wxGrid::DrawColLabels( wxDC
& dc
,const wxArrayInt
& cols
)
5517 const size_t numLabels
= cols
.GetCount();
5518 for ( size_t i
= 0; i
< numLabels
; i
++ )
5520 DrawColLabel( dc
, cols
[i
] );
5524 void wxGrid::DrawCornerLabel(wxDC
& dc
)
5526 wxRect
rect(wxSize(m_rowLabelWidth
, m_colLabelHeight
));
5528 if ( m_nativeColumnLabels
)
5532 wxRendererNative::Get().DrawHeaderButton(m_cornerLabelWin
, dc
, rect
, 0);
5539 wxGridCellAttrProvider
* const
5540 attrProvider
= m_table
? m_table
->GetAttrProvider() : NULL
;
5541 const wxGridCornerHeaderRenderer
&
5542 rend
= attrProvider
? attrProvider
->GetCornerRenderer()
5543 : static_cast<wxGridCornerHeaderRenderer
&>
5544 (gs_defaultHeaderRenderers
.cornerRenderer
);
5546 rend
.DrawBorder(*this, dc
, rect
);
5550 void wxGrid::DrawColLabel(wxDC
& dc
, int col
)
5552 if ( GetColWidth(col
) <= 0 || m_colLabelHeight
<= 0 )
5555 int colLeft
= GetColLeft(col
);
5557 wxRect
rect(colLeft
, 0, GetColWidth(col
), m_colLabelHeight
);
5558 wxGridCellAttrProvider
* const
5559 attrProvider
= m_table
? m_table
->GetAttrProvider() : NULL
;
5560 const wxGridColumnHeaderRenderer
&
5561 rend
= attrProvider
? attrProvider
->GetColumnHeaderRenderer(col
)
5562 : static_cast<wxGridColumnHeaderRenderer
&>
5563 (gs_defaultHeaderRenderers
.colRenderer
);
5565 if ( m_nativeColumnLabels
)
5567 wxRendererNative::Get().DrawHeaderButton
5569 GetColLabelWindow(),
5574 ? IsSortOrderAscending()
5575 ? wxHDR_SORT_ICON_UP
5576 : wxHDR_SORT_ICON_DOWN
5577 : wxHDR_SORT_ICON_NONE
5583 // It is reported that we need to erase the background to avoid display
5584 // artefacts, see #12055.
5585 wxDCBrushChanger
setBrush(dc
, m_colWindow
->GetBackgroundColour());
5586 dc
.DrawRectangle(rect
);
5588 rend
.DrawBorder(*this, dc
, rect
);
5592 GetColLabelAlignment(&hAlign
, &vAlign
);
5593 const int orient
= GetColLabelTextOrientation();
5595 rend
.DrawLabel(*this, dc
, GetColLabelValue(col
), rect
, hAlign
, vAlign
, orient
);
5598 // TODO: these 2 functions should be replaced with wxDC::DrawLabel() to which
5599 // we just have to add textOrientation support
5600 void wxGrid::DrawTextRectangle( wxDC
& dc
,
5601 const wxString
& value
,
5605 int textOrientation
) const
5607 wxArrayString lines
;
5609 StringToLines( value
, lines
);
5611 DrawTextRectangle(dc
, lines
, rect
, horizAlign
, vertAlign
, textOrientation
);
5614 void wxGrid::DrawTextRectangle(wxDC
& dc
,
5615 const wxArrayString
& lines
,
5619 int textOrientation
) const
5621 if ( lines
.empty() )
5624 wxDCClipper
clip(dc
, rect
);
5629 if ( textOrientation
== wxHORIZONTAL
)
5630 GetTextBoxSize( dc
, lines
, &textWidth
, &textHeight
);
5632 GetTextBoxSize( dc
, lines
, &textHeight
, &textWidth
);
5636 switch ( vertAlign
)
5638 case wxALIGN_BOTTOM
:
5639 if ( textOrientation
== wxHORIZONTAL
)
5640 y
= rect
.y
+ (rect
.height
- textHeight
- 1);
5642 x
= rect
.x
+ rect
.width
- textWidth
;
5645 case wxALIGN_CENTRE
:
5646 if ( textOrientation
== wxHORIZONTAL
)
5647 y
= rect
.y
+ ((rect
.height
- textHeight
) / 2);
5649 x
= rect
.x
+ ((rect
.width
- textWidth
) / 2);
5654 if ( textOrientation
== wxHORIZONTAL
)
5661 // Align each line of a multi-line label
5662 size_t nLines
= lines
.GetCount();
5663 for ( size_t l
= 0; l
< nLines
; l
++ )
5665 const wxString
& line
= lines
[l
];
5669 *(textOrientation
== wxHORIZONTAL
? &y
: &x
) += dc
.GetCharHeight();
5673 wxCoord lineWidth
= 0,
5675 dc
.GetTextExtent(line
, &lineWidth
, &lineHeight
);
5677 switch ( horizAlign
)
5680 if ( textOrientation
== wxHORIZONTAL
)
5681 x
= rect
.x
+ (rect
.width
- lineWidth
- 1);
5683 y
= rect
.y
+ lineWidth
+ 1;
5686 case wxALIGN_CENTRE
:
5687 if ( textOrientation
== wxHORIZONTAL
)
5688 x
= rect
.x
+ ((rect
.width
- lineWidth
) / 2);
5690 y
= rect
.y
+ rect
.height
- ((rect
.height
- lineWidth
) / 2);
5695 if ( textOrientation
== wxHORIZONTAL
)
5698 y
= rect
.y
+ rect
.height
- 1;
5702 if ( textOrientation
== wxHORIZONTAL
)
5704 dc
.DrawText( line
, x
, y
);
5709 dc
.DrawRotatedText( line
, x
, y
, 90.0 );
5715 // Split multi-line text up into an array of strings.
5716 // Any existing contents of the string array are preserved.
5718 // TODO: refactor wxTextFile::Read() and reuse the same code from here
5719 void wxGrid::StringToLines( const wxString
& value
, wxArrayString
& lines
) const
5723 wxString eol
= wxTextFile::GetEOL( wxTextFileType_Unix
);
5724 wxString tVal
= wxTextFile::Translate( value
, wxTextFileType_Unix
);
5726 while ( startPos
< (int)tVal
.length() )
5728 pos
= tVal
.Mid(startPos
).Find( eol
);
5733 else if ( pos
== 0 )
5735 lines
.Add( wxEmptyString
);
5739 lines
.Add( tVal
.Mid(startPos
, pos
) );
5742 startPos
+= pos
+ 1;
5745 if ( startPos
< (int)tVal
.length() )
5747 lines
.Add( tVal
.Mid( startPos
) );
5751 void wxGrid::GetTextBoxSize( const wxDC
& dc
,
5752 const wxArrayString
& lines
,
5753 long *width
, long *height
) const
5757 wxCoord lineW
= 0, lineH
= 0;
5760 for ( i
= 0; i
< lines
.GetCount(); i
++ )
5762 dc
.GetTextExtent( lines
[i
], &lineW
, &lineH
);
5763 w
= wxMax( w
, lineW
);
5772 // ------ Batch processing.
5774 void wxGrid::EndBatch()
5776 if ( m_batchCount
> 0 )
5779 if ( !m_batchCount
)
5782 m_rowLabelWin
->Refresh();
5783 m_colWindow
->Refresh();
5784 m_cornerLabelWin
->Refresh();
5785 m_gridWin
->Refresh();
5790 // Use this, rather than wxWindow::Refresh(), to force an immediate
5791 // repainting of the grid. Has no effect if you are already inside a
5792 // BeginBatch / EndBatch block.
5794 void wxGrid::ForceRefresh()
5800 bool wxGrid::Enable(bool enable
)
5802 if ( !wxScrolledWindow::Enable(enable
) )
5805 // redraw in the new state
5806 m_gridWin
->Refresh();
5812 // ------ Edit control functions
5815 void wxGrid::EnableEditing( bool edit
)
5817 if ( edit
!= m_editable
)
5820 EnableCellEditControl(edit
);
5825 void wxGrid::EnableCellEditControl( bool enable
)
5830 if ( enable
!= m_cellEditCtrlEnabled
)
5834 if ( SendEvent(wxEVT_GRID_EDITOR_SHOWN
) == -1 )
5837 // this should be checked by the caller!
5838 wxASSERT_MSG( CanEnableCellControl(), wxT("can't enable editing for this cell!") );
5840 // do it before ShowCellEditControl()
5841 m_cellEditCtrlEnabled
= enable
;
5843 ShowCellEditControl();
5847 SendEvent(wxEVT_GRID_EDITOR_HIDDEN
);
5849 HideCellEditControl();
5850 SaveEditControlValue();
5852 // do it after HideCellEditControl()
5853 m_cellEditCtrlEnabled
= enable
;
5858 bool wxGrid::IsCurrentCellReadOnly() const
5861 attr
= const_cast<wxGrid
*>(this)->GetCellAttr(m_currentCellCoords
);
5862 bool readonly
= attr
->IsReadOnly();
5868 bool wxGrid::CanEnableCellControl() const
5870 return m_editable
&& (m_currentCellCoords
!= wxGridNoCellCoords
) &&
5871 !IsCurrentCellReadOnly();
5874 bool wxGrid::IsCellEditControlEnabled() const
5876 // the cell edit control might be disable for all cells or just for the
5877 // current one if it's read only
5878 return m_cellEditCtrlEnabled
? !IsCurrentCellReadOnly() : false;
5881 bool wxGrid::IsCellEditControlShown() const
5883 bool isShown
= false;
5885 if ( m_cellEditCtrlEnabled
)
5887 int row
= m_currentCellCoords
.GetRow();
5888 int col
= m_currentCellCoords
.GetCol();
5889 wxGridCellAttr
* attr
= GetCellAttr(row
, col
);
5890 wxGridCellEditor
* editor
= attr
->GetEditor((wxGrid
*) this, row
, col
);
5895 if ( editor
->IsCreated() )
5897 isShown
= editor
->GetControl()->IsShown();
5907 void wxGrid::ShowCellEditControl()
5909 if ( IsCellEditControlEnabled() )
5911 if ( !IsVisible( m_currentCellCoords
, false ) )
5913 m_cellEditCtrlEnabled
= false;
5918 wxRect rect
= CellToRect( m_currentCellCoords
);
5919 int row
= m_currentCellCoords
.GetRow();
5920 int col
= m_currentCellCoords
.GetCol();
5922 // if this is part of a multicell, find owner (topleft)
5923 int cell_rows
, cell_cols
;
5924 GetCellSize( row
, col
, &cell_rows
, &cell_cols
);
5925 if ( cell_rows
<= 0 || cell_cols
<= 0 )
5929 m_currentCellCoords
.SetRow( row
);
5930 m_currentCellCoords
.SetCol( col
);
5933 // erase the highlight and the cell contents because the editor
5934 // might not cover the entire cell
5935 wxClientDC
dc( m_gridWin
);
5937 wxGridCellAttr
* attr
= GetCellAttr(row
, col
);
5938 dc
.SetBrush(wxBrush(attr
->GetBackgroundColour()));
5939 dc
.SetPen(*wxTRANSPARENT_PEN
);
5940 dc
.DrawRectangle(rect
);
5942 // convert to scrolled coords
5943 CalcScrolledPosition( rect
.x
, rect
.y
, &rect
.x
, &rect
.y
);
5949 // cell is shifted by one pixel
5950 // However, don't allow x or y to become negative
5951 // since the SetSize() method interprets that as
5958 wxGridCellEditor
* editor
= attr
->GetEditor(this, row
, col
);
5959 if ( !editor
->IsCreated() )
5961 editor
->Create(m_gridWin
, wxID_ANY
,
5962 new wxGridCellEditorEvtHandler(this, editor
));
5964 wxGridEditorCreatedEvent
evt(GetId(),
5965 wxEVT_GRID_EDITOR_CREATED
,
5969 editor
->GetControl());
5970 GetEventHandler()->ProcessEvent(evt
);
5973 // resize editor to overflow into righthand cells if allowed
5974 int maxWidth
= rect
.width
;
5975 wxString value
= GetCellValue(row
, col
);
5976 if ( (value
!= wxEmptyString
) && (attr
->GetOverflow()) )
5979 GetTextExtent(value
, &maxWidth
, &y
, NULL
, NULL
, &attr
->GetFont());
5980 if (maxWidth
< rect
.width
)
5981 maxWidth
= rect
.width
;
5984 int client_right
= m_gridWin
->GetClientSize().GetWidth();
5985 if (rect
.x
+ maxWidth
> client_right
)
5986 maxWidth
= client_right
- rect
.x
;
5988 if ((maxWidth
> rect
.width
) && (col
< m_numCols
) && m_table
)
5990 GetCellSize( row
, col
, &cell_rows
, &cell_cols
);
5991 // may have changed earlier
5992 for (int i
= col
+ cell_cols
; i
< m_numCols
; i
++)
5995 GetCellSize( row
, i
, &c_rows
, &c_cols
);
5997 // looks weird going over a multicell
5998 if (m_table
->IsEmptyCell( row
, i
) &&
5999 (rect
.width
< maxWidth
) && (c_rows
== 1))
6001 rect
.width
+= GetColWidth( i
);
6007 if (rect
.GetRight() > client_right
)
6008 rect
.SetRight( client_right
- 1 );
6011 editor
->SetCellAttr( attr
);
6012 editor
->SetSize( rect
);
6014 editor
->GetControl()->Move(
6015 editor
->GetControl()->GetPosition().x
+ nXMove
,
6016 editor
->GetControl()->GetPosition().y
);
6017 editor
->Show( true, attr
);
6019 // recalc dimensions in case we need to
6020 // expand the scrolled window to account for editor
6023 editor
->BeginEdit(row
, col
, this);
6024 editor
->SetCellAttr(NULL
);
6032 void wxGrid::HideCellEditControl()
6034 if ( IsCellEditControlEnabled() )
6036 int row
= m_currentCellCoords
.GetRow();
6037 int col
= m_currentCellCoords
.GetCol();
6039 wxGridCellAttr
*attr
= GetCellAttr(row
, col
);
6040 wxGridCellEditor
*editor
= attr
->GetEditor(this, row
, col
);
6041 const bool editorHadFocus
= editor
->GetControl()->HasFocus();
6042 editor
->Show( false );
6046 // return the focus to the grid itself if the editor had it
6048 // note that we must not do this unconditionally to avoid stealing
6049 // focus from the window which just received it if we are hiding the
6050 // editor precisely because we lost focus
6051 if ( editorHadFocus
)
6052 m_gridWin
->SetFocus();
6054 // refresh whole row to the right
6055 wxRect
rect( CellToRect(row
, col
) );
6056 CalcScrolledPosition(rect
.x
, rect
.y
, &rect
.x
, &rect
.y
);
6057 rect
.width
= m_gridWin
->GetClientSize().GetWidth() - rect
.x
;
6060 // ensure that the pixels under the focus ring get refreshed as well
6061 rect
.Inflate(10, 10);
6064 m_gridWin
->Refresh( false, &rect
);
6068 void wxGrid::SaveEditControlValue()
6070 if ( IsCellEditControlEnabled() )
6072 int row
= m_currentCellCoords
.GetRow();
6073 int col
= m_currentCellCoords
.GetCol();
6075 wxString oldval
= GetCellValue(row
, col
);
6077 wxGridCellAttr
* attr
= GetCellAttr(row
, col
);
6078 wxGridCellEditor
* editor
= attr
->GetEditor(this, row
, col
);
6081 bool changed
= editor
->EndEdit(row
, col
, this, oldval
, &newval
);
6083 if ( changed
&& SendEvent(wxEVT_GRID_CELL_CHANGING
, newval
) != -1 )
6085 editor
->ApplyEdit(row
, col
, this);
6087 // for compatibility reasons dating back to wx 2.8 when this event
6088 // was called wxEVT_GRID_CELL_CHANGE and wxEVT_GRID_CELL_CHANGING
6089 // didn't exist we allow vetoing this one too
6090 if ( SendEvent(wxEVT_GRID_CELL_CHANGED
, oldval
) == -1 )
6092 // Event has been vetoed, set the data back.
6093 SetCellValue(row
, col
, oldval
);
6103 // ------ Grid location functions
6104 // Note that all of these functions work with the logical coordinates of
6105 // grid cells and labels so you will need to convert from device
6106 // coordinates for mouse events etc.
6109 wxGridCellCoords
wxGrid::XYToCell(int x
, int y
) const
6111 int row
= YToRow(y
);
6112 int col
= XToCol(x
);
6114 return row
== -1 || col
== -1 ? wxGridNoCellCoords
6115 : wxGridCellCoords(row
, col
);
6118 // compute row or column from some (unscrolled) coordinate value, using either
6119 // m_defaultRowHeight/m_defaultColWidth or binary search on array of
6120 // m_rowBottoms/m_colRights to do it quickly (linear search shouldn't be used
6122 int wxGrid::PosToLinePos(int coord
,
6124 const wxGridOperations
& oper
) const
6126 const int numLines
= oper
.GetNumberOfLines(this);
6129 return clipToMinMax
&& numLines
> 0 ? 0 : wxNOT_FOUND
;
6131 const int defaultLineSize
= oper
.GetDefaultLineSize(this);
6132 wxCHECK_MSG( defaultLineSize
, -1, "can't have 0 default line size" );
6134 int maxPos
= coord
/ defaultLineSize
,
6137 // check for the simplest case: if we have no explicit line sizes
6138 // configured, then we already know the line this position falls in
6139 const wxArrayInt
& lineEnds
= oper
.GetLineEnds(this);
6140 if ( lineEnds
.empty() )
6142 if ( maxPos
< numLines
)
6145 return clipToMinMax
? numLines
- 1 : -1;
6149 // adjust maxPos before starting the binary search
6150 if ( maxPos
>= numLines
)
6152 maxPos
= numLines
- 1;
6156 if ( coord
>= lineEnds
[oper
.GetLineAt(this, maxPos
)])
6159 const int minDist
= oper
.GetMinimalAcceptableLineSize(this);
6161 maxPos
= coord
/ minDist
;
6163 maxPos
= numLines
- 1;
6166 if ( maxPos
>= numLines
)
6167 maxPos
= numLines
- 1;
6170 // check if the position is beyond the last column
6171 const int lineAtMaxPos
= oper
.GetLineAt(this, maxPos
);
6172 if ( coord
>= lineEnds
[lineAtMaxPos
] )
6173 return clipToMinMax
? maxPos
: -1;
6175 // or before the first one
6176 const int lineAt0
= oper
.GetLineAt(this, 0);
6177 if ( coord
< lineEnds
[lineAt0
] )
6181 // finally do perform the binary search
6182 while ( minPos
< maxPos
)
6184 wxCHECK_MSG( lineEnds
[oper
.GetLineAt(this, minPos
)] <= coord
&&
6185 coord
< lineEnds
[oper
.GetLineAt(this, maxPos
)],
6187 "wxGrid: internal error in PosToLinePos()" );
6189 if ( coord
>= lineEnds
[oper
.GetLineAt(this, maxPos
- 1)] )
6194 const int median
= minPos
+ (maxPos
- minPos
+ 1) / 2;
6195 if ( coord
< lineEnds
[oper
.GetLineAt(this, median
)] )
6205 wxGrid::PosToLine(int coord
,
6207 const wxGridOperations
& oper
) const
6209 int pos
= PosToLinePos(coord
, clipToMinMax
, oper
);
6211 return pos
== wxNOT_FOUND
? wxNOT_FOUND
: oper
.GetLineAt(this, pos
);
6214 int wxGrid::YToRow(int y
, bool clipToMinMax
) const
6216 return PosToLine(y
, clipToMinMax
, wxGridRowOperations());
6219 int wxGrid::XToCol(int x
, bool clipToMinMax
) const
6221 return PosToLine(x
, clipToMinMax
, wxGridColumnOperations());
6224 int wxGrid::XToPos(int x
) const
6226 return PosToLinePos(x
, true /* clip */, wxGridColumnOperations());
6229 // return the row number such that the y coord is near the edge of, or -1 if
6230 // not near an edge.
6232 // notice that position can only possibly be near an edge if the row/column is
6233 // large enough to still allow for an "inner" area that is _not_ near the edge
6234 // (i.e., if the height/width is smaller than WXGRID_LABEL_EDGE_ZONE, pos will
6235 // _never_ be considered to be near the edge).
6236 int wxGrid::PosToEdgeOfLine(int pos
, const wxGridOperations
& oper
) const
6238 const int line
= oper
.PosToLine(this, pos
, true);
6240 if ( oper
.GetLineSize(this, line
) > WXGRID_LABEL_EDGE_ZONE
)
6242 // We know that we are in this line, test whether we are close enough
6243 // to start or end border, respectively.
6244 if ( abs(oper
.GetLineEndPos(this, line
) - pos
) < WXGRID_LABEL_EDGE_ZONE
)
6246 else if ( line
> 0 &&
6247 pos
- oper
.GetLineStartPos(this,
6248 line
) < WXGRID_LABEL_EDGE_ZONE
)
6250 return oper
.GetLineBefore(this, line
);
6257 int wxGrid::YToEdgeOfRow(int y
) const
6259 return PosToEdgeOfLine(y
, wxGridRowOperations());
6262 int wxGrid::XToEdgeOfCol(int x
) const
6264 return PosToEdgeOfLine(x
, wxGridColumnOperations());
6267 wxRect
wxGrid::CellToRect( int row
, int col
) const
6269 wxRect
rect( -1, -1, -1, -1 );
6271 if ( row
>= 0 && row
< m_numRows
&&
6272 col
>= 0 && col
< m_numCols
)
6274 int i
, cell_rows
, cell_cols
;
6275 rect
.width
= rect
.height
= 0;
6276 GetCellSize( row
, col
, &cell_rows
, &cell_cols
);
6277 // if negative then find multicell owner
6282 GetCellSize( row
, col
, &cell_rows
, &cell_cols
);
6284 rect
.x
= GetColLeft(col
);
6285 rect
.y
= GetRowTop(row
);
6286 for (i
=col
; i
< col
+ cell_cols
; i
++)
6287 rect
.width
+= GetColWidth(i
);
6288 for (i
=row
; i
< row
+ cell_rows
; i
++)
6289 rect
.height
+= GetRowHeight(i
);
6291 // if grid lines are enabled, then the area of the cell is a bit smaller
6292 if (m_gridLinesEnabled
)
6302 bool wxGrid::IsVisible( int row
, int col
, bool wholeCellVisible
) const
6304 // get the cell rectangle in logical coords
6306 wxRect
r( CellToRect( row
, col
) );
6308 // convert to device coords
6310 int left
, top
, right
, bottom
;
6311 CalcScrolledPosition( r
.GetLeft(), r
.GetTop(), &left
, &top
);
6312 CalcScrolledPosition( r
.GetRight(), r
.GetBottom(), &right
, &bottom
);
6314 // check against the client area of the grid window
6316 m_gridWin
->GetClientSize( &cw
, &ch
);
6318 if ( wholeCellVisible
)
6320 // is the cell wholly visible ?
6321 return ( left
>= 0 && right
<= cw
&&
6322 top
>= 0 && bottom
<= ch
);
6326 // is the cell partly visible ?
6328 return ( ((left
>= 0 && left
< cw
) || (right
> 0 && right
<= cw
)) &&
6329 ((top
>= 0 && top
< ch
) || (bottom
> 0 && bottom
<= ch
)) );
6333 // make the specified cell location visible by doing a minimal amount
6336 void wxGrid::MakeCellVisible( int row
, int col
)
6339 int xpos
= -1, ypos
= -1;
6341 if ( row
>= 0 && row
< m_numRows
&&
6342 col
>= 0 && col
< m_numCols
)
6344 // get the cell rectangle in logical coords
6345 wxRect
r( CellToRect( row
, col
) );
6347 // convert to device coords
6348 int left
, top
, right
, bottom
;
6349 CalcScrolledPosition( r
.GetLeft(), r
.GetTop(), &left
, &top
);
6350 CalcScrolledPosition( r
.GetRight(), r
.GetBottom(), &right
, &bottom
);
6353 m_gridWin
->GetClientSize( &cw
, &ch
);
6359 else if ( bottom
> ch
)
6361 int h
= r
.GetHeight();
6363 for ( i
= row
- 1; i
>= 0; i
-- )
6365 int rowHeight
= GetRowHeight(i
);
6366 if ( h
+ rowHeight
> ch
)
6373 // we divide it later by GRID_SCROLL_LINE, make sure that we don't
6374 // have rounding errors (this is important, because if we do,
6375 // we might not scroll at all and some cells won't be redrawn)
6377 // Sometimes GRID_SCROLL_LINE / 2 is not enough,
6378 // so just add a full scroll unit...
6379 ypos
+= m_yScrollPixelsPerLine
;
6382 // special handling for wide cells - show always left part of the cell!
6383 // Otherwise, e.g. when stepping from row to row, it would jump between
6384 // left and right part of the cell on every step!
6386 if ( left
< 0 || (right
- left
) >= cw
)
6390 else if ( right
> cw
)
6392 // position the view so that the cell is on the right
6394 CalcUnscrolledPosition(0, 0, &x0
, &y0
);
6395 xpos
= x0
+ (right
- cw
);
6397 // see comment for ypos above
6398 xpos
+= m_xScrollPixelsPerLine
;
6401 if ( xpos
!= -1 || ypos
!= -1 )
6404 xpos
/= m_xScrollPixelsPerLine
;
6406 ypos
/= m_yScrollPixelsPerLine
;
6407 Scroll( xpos
, ypos
);
6414 // ------ Grid cursor movement functions
6418 wxGrid::DoMoveCursor(bool expandSelection
,
6419 const wxGridDirectionOperations
& diroper
)
6421 if ( m_currentCellCoords
== wxGridNoCellCoords
)
6424 if ( expandSelection
)
6426 wxGridCellCoords coords
= m_selectedBlockCorner
;
6427 if ( coords
== wxGridNoCellCoords
)
6428 coords
= m_currentCellCoords
;
6430 if ( diroper
.IsAtBoundary(coords
) )
6433 diroper
.Advance(coords
);
6435 UpdateBlockBeingSelected(m_currentCellCoords
, coords
);
6437 else // don't expand selection
6441 if ( diroper
.IsAtBoundary(m_currentCellCoords
) )
6444 wxGridCellCoords coords
= m_currentCellCoords
;
6445 diroper
.Advance(coords
);
6453 bool wxGrid::MoveCursorUp(bool expandSelection
)
6455 return DoMoveCursor(expandSelection
,
6456 wxGridBackwardOperations(this, wxGridRowOperations()));
6459 bool wxGrid::MoveCursorDown(bool expandSelection
)
6461 return DoMoveCursor(expandSelection
,
6462 wxGridForwardOperations(this, wxGridRowOperations()));
6465 bool wxGrid::MoveCursorLeft(bool expandSelection
)
6467 return DoMoveCursor(expandSelection
,
6468 wxGridBackwardOperations(this, wxGridColumnOperations()));
6471 bool wxGrid::MoveCursorRight(bool expandSelection
)
6473 return DoMoveCursor(expandSelection
,
6474 wxGridForwardOperations(this, wxGridColumnOperations()));
6477 bool wxGrid::DoMoveCursorByPage(const wxGridDirectionOperations
& diroper
)
6479 if ( m_currentCellCoords
== wxGridNoCellCoords
)
6482 if ( diroper
.IsAtBoundary(m_currentCellCoords
) )
6485 const int oldRow
= m_currentCellCoords
.GetRow();
6486 int newRow
= diroper
.MoveByPixelDistance(oldRow
, m_gridWin
->GetClientSize().y
);
6487 if ( newRow
== oldRow
)
6489 wxGridCellCoords
coords(m_currentCellCoords
);
6490 diroper
.Advance(coords
);
6491 newRow
= coords
.GetRow();
6494 GoToCell(newRow
, m_currentCellCoords
.GetCol());
6499 bool wxGrid::MovePageUp()
6501 return DoMoveCursorByPage(
6502 wxGridBackwardOperations(this, wxGridRowOperations()));
6505 bool wxGrid::MovePageDown()
6507 return DoMoveCursorByPage(
6508 wxGridForwardOperations(this, wxGridRowOperations()));
6511 // helper of DoMoveCursorByBlock(): advance the cell coordinates using diroper
6512 // until we find a non-empty cell or reach the grid end
6514 wxGrid::AdvanceToNextNonEmpty(wxGridCellCoords
& coords
,
6515 const wxGridDirectionOperations
& diroper
)
6517 while ( !diroper
.IsAtBoundary(coords
) )
6519 diroper
.Advance(coords
);
6520 if ( !m_table
->IsEmpty(coords
) )
6526 wxGrid::DoMoveCursorByBlock(bool expandSelection
,
6527 const wxGridDirectionOperations
& diroper
)
6529 if ( !m_table
|| m_currentCellCoords
== wxGridNoCellCoords
)
6532 if ( diroper
.IsAtBoundary(m_currentCellCoords
) )
6535 wxGridCellCoords
coords(m_currentCellCoords
);
6536 if ( m_table
->IsEmpty(coords
) )
6538 // we are in an empty cell: find the next block of non-empty cells
6539 AdvanceToNextNonEmpty(coords
, diroper
);
6541 else // current cell is not empty
6543 diroper
.Advance(coords
);
6544 if ( m_table
->IsEmpty(coords
) )
6546 // we started at the end of a block, find the next one
6547 AdvanceToNextNonEmpty(coords
, diroper
);
6549 else // we're in a middle of a block
6551 // go to the end of it, i.e. find the last cell before the next
6553 while ( !diroper
.IsAtBoundary(coords
) )
6555 wxGridCellCoords
coordsNext(coords
);
6556 diroper
.Advance(coordsNext
);
6557 if ( m_table
->IsEmpty(coordsNext
) )
6560 coords
= coordsNext
;
6565 if ( expandSelection
)
6567 UpdateBlockBeingSelected(m_currentCellCoords
, coords
);
6578 bool wxGrid::MoveCursorUpBlock(bool expandSelection
)
6580 return DoMoveCursorByBlock(
6582 wxGridBackwardOperations(this, wxGridRowOperations())
6586 bool wxGrid::MoveCursorDownBlock( bool expandSelection
)
6588 return DoMoveCursorByBlock(
6590 wxGridForwardOperations(this, wxGridRowOperations())
6594 bool wxGrid::MoveCursorLeftBlock( bool expandSelection
)
6596 return DoMoveCursorByBlock(
6598 wxGridBackwardOperations(this, wxGridColumnOperations())
6602 bool wxGrid::MoveCursorRightBlock( bool expandSelection
)
6604 return DoMoveCursorByBlock(
6606 wxGridForwardOperations(this, wxGridColumnOperations())
6611 // ------ Label values and formatting
6614 void wxGrid::GetRowLabelAlignment( int *horiz
, int *vert
) const
6617 *horiz
= m_rowLabelHorizAlign
;
6619 *vert
= m_rowLabelVertAlign
;
6622 void wxGrid::GetColLabelAlignment( int *horiz
, int *vert
) const
6625 *horiz
= m_colLabelHorizAlign
;
6627 *vert
= m_colLabelVertAlign
;
6630 int wxGrid::GetColLabelTextOrientation() const
6632 return m_colLabelTextOrientation
;
6635 wxString
wxGrid::GetRowLabelValue( int row
) const
6639 return m_table
->GetRowLabelValue( row
);
6649 wxString
wxGrid::GetColLabelValue( int col
) const
6653 return m_table
->GetColLabelValue( col
);
6663 void wxGrid::SetRowLabelSize( int width
)
6665 wxASSERT( width
>= 0 || width
== wxGRID_AUTOSIZE
);
6667 if ( width
== wxGRID_AUTOSIZE
)
6669 width
= CalcColOrRowLabelAreaMinSize(wxGRID_ROW
);
6672 if ( width
!= m_rowLabelWidth
)
6676 m_rowLabelWin
->Show( false );
6677 m_cornerLabelWin
->Show( false );
6679 else if ( m_rowLabelWidth
== 0 )
6681 m_rowLabelWin
->Show( true );
6682 if ( m_colLabelHeight
> 0 )
6683 m_cornerLabelWin
->Show( true );
6686 m_rowLabelWidth
= width
;
6688 wxScrolledWindow::Refresh( true );
6692 void wxGrid::SetColLabelSize( int height
)
6694 wxASSERT( height
>=0 || height
== wxGRID_AUTOSIZE
);
6696 if ( height
== wxGRID_AUTOSIZE
)
6698 height
= CalcColOrRowLabelAreaMinSize(wxGRID_COLUMN
);
6701 if ( height
!= m_colLabelHeight
)
6705 m_colWindow
->Show( false );
6706 m_cornerLabelWin
->Show( false );
6708 else if ( m_colLabelHeight
== 0 )
6710 m_colWindow
->Show( true );
6711 if ( m_rowLabelWidth
> 0 )
6712 m_cornerLabelWin
->Show( true );
6715 m_colLabelHeight
= height
;
6717 wxScrolledWindow::Refresh( true );
6721 void wxGrid::SetLabelBackgroundColour( const wxColour
& colour
)
6723 if ( m_labelBackgroundColour
!= colour
)
6725 m_labelBackgroundColour
= colour
;
6726 m_rowLabelWin
->SetBackgroundColour( colour
);
6727 m_colWindow
->SetBackgroundColour( colour
);
6728 m_cornerLabelWin
->SetBackgroundColour( colour
);
6730 if ( !GetBatchCount() )
6732 m_rowLabelWin
->Refresh();
6733 m_colWindow
->Refresh();
6734 m_cornerLabelWin
->Refresh();
6739 void wxGrid::SetLabelTextColour( const wxColour
& colour
)
6741 if ( m_labelTextColour
!= colour
)
6743 m_labelTextColour
= colour
;
6744 if ( !GetBatchCount() )
6746 m_rowLabelWin
->Refresh();
6747 m_colWindow
->Refresh();
6752 void wxGrid::SetLabelFont( const wxFont
& font
)
6755 if ( !GetBatchCount() )
6757 m_rowLabelWin
->Refresh();
6758 m_colWindow
->Refresh();
6762 void wxGrid::SetRowLabelAlignment( int horiz
, int vert
)
6764 // allow old (incorrect) defs to be used
6767 case wxLEFT
: horiz
= wxALIGN_LEFT
; break;
6768 case wxRIGHT
: horiz
= wxALIGN_RIGHT
; break;
6769 case wxCENTRE
: horiz
= wxALIGN_CENTRE
; break;
6774 case wxTOP
: vert
= wxALIGN_TOP
; break;
6775 case wxBOTTOM
: vert
= wxALIGN_BOTTOM
; break;
6776 case wxCENTRE
: vert
= wxALIGN_CENTRE
; break;
6779 if ( horiz
== wxALIGN_LEFT
|| horiz
== wxALIGN_CENTRE
|| horiz
== wxALIGN_RIGHT
)
6781 m_rowLabelHorizAlign
= horiz
;
6784 if ( vert
== wxALIGN_TOP
|| vert
== wxALIGN_CENTRE
|| vert
== wxALIGN_BOTTOM
)
6786 m_rowLabelVertAlign
= vert
;
6789 if ( !GetBatchCount() )
6791 m_rowLabelWin
->Refresh();
6795 void wxGrid::SetColLabelAlignment( int horiz
, int vert
)
6797 // allow old (incorrect) defs to be used
6800 case wxLEFT
: horiz
= wxALIGN_LEFT
; break;
6801 case wxRIGHT
: horiz
= wxALIGN_RIGHT
; break;
6802 case wxCENTRE
: horiz
= wxALIGN_CENTRE
; break;
6807 case wxTOP
: vert
= wxALIGN_TOP
; break;
6808 case wxBOTTOM
: vert
= wxALIGN_BOTTOM
; break;
6809 case wxCENTRE
: vert
= wxALIGN_CENTRE
; break;
6812 if ( horiz
== wxALIGN_LEFT
|| horiz
== wxALIGN_CENTRE
|| horiz
== wxALIGN_RIGHT
)
6814 m_colLabelHorizAlign
= horiz
;
6817 if ( vert
== wxALIGN_TOP
|| vert
== wxALIGN_CENTRE
|| vert
== wxALIGN_BOTTOM
)
6819 m_colLabelVertAlign
= vert
;
6822 if ( !GetBatchCount() )
6824 m_colWindow
->Refresh();
6828 // Note: under MSW, the default column label font must be changed because it
6829 // does not support vertical printing
6831 // Example: wxFont font(9, wxSWISS, wxNORMAL, wxBOLD);
6832 // pGrid->SetLabelFont(font);
6833 // pGrid->SetColLabelTextOrientation(wxVERTICAL);
6835 void wxGrid::SetColLabelTextOrientation( int textOrientation
)
6837 if ( textOrientation
== wxHORIZONTAL
|| textOrientation
== wxVERTICAL
)
6838 m_colLabelTextOrientation
= textOrientation
;
6840 if ( !GetBatchCount() )
6841 m_colWindow
->Refresh();
6844 void wxGrid::SetRowLabelValue( int row
, const wxString
& s
)
6848 m_table
->SetRowLabelValue( row
, s
);
6849 if ( !GetBatchCount() )
6851 wxRect rect
= CellToRect( row
, 0 );
6852 if ( rect
.height
> 0 )
6854 CalcScrolledPosition(0, rect
.y
, &rect
.x
, &rect
.y
);
6856 rect
.width
= m_rowLabelWidth
;
6857 m_rowLabelWin
->Refresh( true, &rect
);
6863 void wxGrid::SetColLabelValue( int col
, const wxString
& s
)
6867 m_table
->SetColLabelValue( col
, s
);
6868 if ( !GetBatchCount() )
6870 if ( m_useNativeHeader
)
6872 GetGridColHeader()->UpdateColumn(col
);
6876 wxRect rect
= CellToRect( 0, col
);
6877 if ( rect
.width
> 0 )
6879 CalcScrolledPosition(rect
.x
, 0, &rect
.x
, &rect
.y
);
6881 rect
.height
= m_colLabelHeight
;
6882 GetColLabelWindow()->Refresh( true, &rect
);
6889 void wxGrid::SetGridLineColour( const wxColour
& colour
)
6891 if ( m_gridLineColour
!= colour
)
6893 m_gridLineColour
= colour
;
6895 if ( GridLinesEnabled() )
6900 void wxGrid::SetCellHighlightColour( const wxColour
& colour
)
6902 if ( m_cellHighlightColour
!= colour
)
6904 m_cellHighlightColour
= colour
;
6906 wxClientDC
dc( m_gridWin
);
6908 wxGridCellAttr
* attr
= GetCellAttr(m_currentCellCoords
);
6909 DrawCellHighlight(dc
, attr
);
6914 void wxGrid::SetCellHighlightPenWidth(int width
)
6916 if (m_cellHighlightPenWidth
!= width
)
6918 m_cellHighlightPenWidth
= width
;
6920 // Just redrawing the cell highlight is not enough since that won't
6921 // make any visible change if the thickness is getting smaller.
6922 int row
= m_currentCellCoords
.GetRow();
6923 int col
= m_currentCellCoords
.GetCol();
6924 if ( row
== -1 || col
== -1 || GetColWidth(col
) <= 0 || GetRowHeight(row
) <= 0 )
6927 wxRect rect
= CellToRect(row
, col
);
6928 m_gridWin
->Refresh(true, &rect
);
6932 void wxGrid::SetCellHighlightROPenWidth(int width
)
6934 if (m_cellHighlightROPenWidth
!= width
)
6936 m_cellHighlightROPenWidth
= width
;
6938 // Just redrawing the cell highlight is not enough since that won't
6939 // make any visible change if the thickness is getting smaller.
6940 int row
= m_currentCellCoords
.GetRow();
6941 int col
= m_currentCellCoords
.GetCol();
6942 if ( row
== -1 || col
== -1 ||
6943 GetColWidth(col
) <= 0 || GetRowHeight(row
) <= 0 )
6946 wxRect rect
= CellToRect(row
, col
);
6947 m_gridWin
->Refresh(true, &rect
);
6951 void wxGrid::RedrawGridLines()
6953 // the lines will be redrawn when the window is thawn
6954 if ( GetBatchCount() )
6957 if ( GridLinesEnabled() )
6959 wxClientDC
dc( m_gridWin
);
6961 DrawAllGridLines( dc
, wxRegion() );
6963 else // remove the grid lines
6965 m_gridWin
->Refresh();
6969 void wxGrid::EnableGridLines( bool enable
)
6971 if ( enable
!= m_gridLinesEnabled
)
6973 m_gridLinesEnabled
= enable
;
6979 void wxGrid::DoClipGridLines(bool& var
, bool clip
)
6985 if ( GridLinesEnabled() )
6990 int wxGrid::GetDefaultRowSize() const
6992 return m_defaultRowHeight
;
6995 int wxGrid::GetRowSize( int row
) const
6997 wxCHECK_MSG( row
>= 0 && row
< m_numRows
, 0, wxT("invalid row index") );
6999 return GetRowHeight(row
);
7002 int wxGrid::GetDefaultColSize() const
7004 return m_defaultColWidth
;
7007 int wxGrid::GetColSize( int col
) const
7009 wxCHECK_MSG( col
>= 0 && col
< m_numCols
, 0, wxT("invalid column index") );
7011 return GetColWidth(col
);
7014 // ============================================================================
7015 // access to the grid attributes: each of them has a default value in the grid
7016 // itself and may be overidden on a per-cell basis
7017 // ============================================================================
7019 // ----------------------------------------------------------------------------
7020 // setting default attributes
7021 // ----------------------------------------------------------------------------
7023 void wxGrid::SetDefaultCellBackgroundColour( const wxColour
& col
)
7025 m_defaultCellAttr
->SetBackgroundColour(col
);
7027 m_gridWin
->SetBackgroundColour(col
);
7031 void wxGrid::SetDefaultCellTextColour( const wxColour
& col
)
7033 m_defaultCellAttr
->SetTextColour(col
);
7036 void wxGrid::SetDefaultCellAlignment( int horiz
, int vert
)
7038 m_defaultCellAttr
->SetAlignment(horiz
, vert
);
7041 void wxGrid::SetDefaultCellOverflow( bool allow
)
7043 m_defaultCellAttr
->SetOverflow(allow
);
7046 void wxGrid::SetDefaultCellFont( const wxFont
& font
)
7048 m_defaultCellAttr
->SetFont(font
);
7051 // For editors and renderers the type registry takes precedence over the
7052 // default attr, so we need to register the new editor/renderer for the string
7053 // data type in order to make setting a default editor/renderer appear to
7056 void wxGrid::SetDefaultRenderer(wxGridCellRenderer
*renderer
)
7058 RegisterDataType(wxGRID_VALUE_STRING
,
7060 GetDefaultEditorForType(wxGRID_VALUE_STRING
));
7063 void wxGrid::SetDefaultEditor(wxGridCellEditor
*editor
)
7065 RegisterDataType(wxGRID_VALUE_STRING
,
7066 GetDefaultRendererForType(wxGRID_VALUE_STRING
),
7070 // ----------------------------------------------------------------------------
7071 // access to the default attributes
7072 // ----------------------------------------------------------------------------
7074 wxColour
wxGrid::GetDefaultCellBackgroundColour() const
7076 return m_defaultCellAttr
->GetBackgroundColour();
7079 wxColour
wxGrid::GetDefaultCellTextColour() const
7081 return m_defaultCellAttr
->GetTextColour();
7084 wxFont
wxGrid::GetDefaultCellFont() const
7086 return m_defaultCellAttr
->GetFont();
7089 void wxGrid::GetDefaultCellAlignment( int *horiz
, int *vert
) const
7091 m_defaultCellAttr
->GetAlignment(horiz
, vert
);
7094 bool wxGrid::GetDefaultCellOverflow() const
7096 return m_defaultCellAttr
->GetOverflow();
7099 wxGridCellRenderer
*wxGrid::GetDefaultRenderer() const
7101 return m_defaultCellAttr
->GetRenderer(NULL
, 0, 0);
7104 wxGridCellEditor
*wxGrid::GetDefaultEditor() const
7106 return m_defaultCellAttr
->GetEditor(NULL
, 0, 0);
7109 // ----------------------------------------------------------------------------
7110 // access to cell attributes
7111 // ----------------------------------------------------------------------------
7113 wxColour
wxGrid::GetCellBackgroundColour(int row
, int col
) const
7115 wxGridCellAttr
*attr
= GetCellAttr(row
, col
);
7116 wxColour colour
= attr
->GetBackgroundColour();
7122 wxColour
wxGrid::GetCellTextColour( int row
, int col
) const
7124 wxGridCellAttr
*attr
= GetCellAttr(row
, col
);
7125 wxColour colour
= attr
->GetTextColour();
7131 wxFont
wxGrid::GetCellFont( int row
, int col
) const
7133 wxGridCellAttr
*attr
= GetCellAttr(row
, col
);
7134 wxFont font
= attr
->GetFont();
7140 void wxGrid::GetCellAlignment( int row
, int col
, int *horiz
, int *vert
) const
7142 wxGridCellAttr
*attr
= GetCellAttr(row
, col
);
7143 attr
->GetAlignment(horiz
, vert
);
7147 bool wxGrid::GetCellOverflow( int row
, int col
) const
7149 wxGridCellAttr
*attr
= GetCellAttr(row
, col
);
7150 bool allow
= attr
->GetOverflow();
7157 wxGrid::GetCellSize( int row
, int col
, int *num_rows
, int *num_cols
) const
7159 wxGridCellAttr
*attr
= GetCellAttr(row
, col
);
7160 attr
->GetSize( num_rows
, num_cols
);
7163 if ( *num_rows
== 1 && *num_cols
== 1 )
7164 return CellSpan_None
; // just a normal cell
7166 if ( *num_rows
< 0 || *num_cols
< 0 )
7167 return CellSpan_Inside
; // covered by a multi-span cell
7169 // this cell spans multiple cells to its right/bottom
7170 return CellSpan_Main
;
7173 wxGridCellRenderer
* wxGrid::GetCellRenderer(int row
, int col
) const
7175 wxGridCellAttr
* attr
= GetCellAttr(row
, col
);
7176 wxGridCellRenderer
* renderer
= attr
->GetRenderer(this, row
, col
);
7182 wxGridCellEditor
* wxGrid::GetCellEditor(int row
, int col
) const
7184 wxGridCellAttr
* attr
= GetCellAttr(row
, col
);
7185 wxGridCellEditor
* editor
= attr
->GetEditor(this, row
, col
);
7191 bool wxGrid::IsReadOnly(int row
, int col
) const
7193 wxGridCellAttr
* attr
= GetCellAttr(row
, col
);
7194 bool isReadOnly
= attr
->IsReadOnly();
7200 // ----------------------------------------------------------------------------
7201 // attribute support: cache, automatic provider creation, ...
7202 // ----------------------------------------------------------------------------
7204 bool wxGrid::CanHaveAttributes() const
7211 return m_table
->CanHaveAttributes();
7214 void wxGrid::ClearAttrCache()
7216 if ( m_attrCache
.row
!= -1 )
7218 wxGridCellAttr
*oldAttr
= m_attrCache
.attr
;
7219 m_attrCache
.attr
= NULL
;
7220 m_attrCache
.row
= -1;
7221 // wxSafeDecRec(...) might cause event processing that accesses
7222 // the cached attribute, if one exists (e.g. by deleting the
7223 // editor stored within the attribute). Therefore it is important
7224 // to invalidate the cache before calling wxSafeDecRef!
7225 wxSafeDecRef(oldAttr
);
7229 void wxGrid::RefreshAttr(int row
, int col
)
7231 if ( m_attrCache
.row
== row
&& m_attrCache
.col
== col
)
7236 void wxGrid::CacheAttr(int row
, int col
, wxGridCellAttr
*attr
) const
7240 wxGrid
* const self
= const_cast<wxGrid
*>(this);
7242 self
->ClearAttrCache();
7243 self
->m_attrCache
.row
= row
;
7244 self
->m_attrCache
.col
= col
;
7245 self
->m_attrCache
.attr
= attr
;
7250 bool wxGrid::LookupAttr(int row
, int col
, wxGridCellAttr
**attr
) const
7252 if ( row
== m_attrCache
.row
&& col
== m_attrCache
.col
)
7254 *attr
= m_attrCache
.attr
;
7255 wxSafeIncRef(m_attrCache
.attr
);
7257 #ifdef DEBUG_ATTR_CACHE
7258 gs_nAttrCacheHits
++;
7265 #ifdef DEBUG_ATTR_CACHE
7266 gs_nAttrCacheMisses
++;
7273 wxGridCellAttr
*wxGrid::GetCellAttr(int row
, int col
) const
7275 wxGridCellAttr
*attr
= NULL
;
7276 // Additional test to avoid looking at the cache e.g. for
7277 // wxNoCellCoords, as this will confuse memory management.
7280 if ( !LookupAttr(row
, col
, &attr
) )
7282 attr
= m_table
? m_table
->GetAttr(row
, col
, wxGridCellAttr::Any
)
7284 CacheAttr(row
, col
, attr
);
7290 attr
->SetDefAttr(m_defaultCellAttr
);
7294 attr
= m_defaultCellAttr
;
7301 wxGridCellAttr
*wxGrid::GetOrCreateCellAttr(int row
, int col
) const
7303 wxGridCellAttr
*attr
= NULL
;
7304 bool canHave
= ((wxGrid
*)this)->CanHaveAttributes();
7306 wxCHECK_MSG( canHave
, attr
, wxT("Cell attributes not allowed"));
7307 wxCHECK_MSG( m_table
, attr
, wxT("must have a table") );
7309 attr
= m_table
->GetAttr(row
, col
, wxGridCellAttr::Cell
);
7312 attr
= new wxGridCellAttr(m_defaultCellAttr
);
7314 // artificially inc the ref count to match DecRef() in caller
7316 m_table
->SetAttr(attr
, row
, col
);
7322 // ----------------------------------------------------------------------------
7323 // setting column attributes (wrappers around SetColAttr)
7324 // ----------------------------------------------------------------------------
7326 void wxGrid::SetColFormatBool(int col
)
7328 SetColFormatCustom(col
, wxGRID_VALUE_BOOL
);
7331 void wxGrid::SetColFormatNumber(int col
)
7333 SetColFormatCustom(col
, wxGRID_VALUE_NUMBER
);
7336 void wxGrid::SetColFormatFloat(int col
, int width
, int precision
)
7338 wxString typeName
= wxGRID_VALUE_FLOAT
;
7339 if ( (width
!= -1) || (precision
!= -1) )
7341 typeName
<< wxT(':') << width
<< wxT(',') << precision
;
7344 SetColFormatCustom(col
, typeName
);
7347 void wxGrid::SetColFormatCustom(int col
, const wxString
& typeName
)
7349 wxGridCellAttr
*attr
= m_table
->GetAttr(-1, col
, wxGridCellAttr::Col
);
7351 attr
= new wxGridCellAttr
;
7352 wxGridCellRenderer
*renderer
= GetDefaultRendererForType(typeName
);
7353 attr
->SetRenderer(renderer
);
7354 wxGridCellEditor
*editor
= GetDefaultEditorForType(typeName
);
7355 attr
->SetEditor(editor
);
7357 SetColAttr(col
, attr
);
7361 // ----------------------------------------------------------------------------
7362 // setting cell attributes: this is forwarded to the table
7363 // ----------------------------------------------------------------------------
7365 void wxGrid::SetAttr(int row
, int col
, wxGridCellAttr
*attr
)
7367 if ( CanHaveAttributes() )
7369 m_table
->SetAttr(attr
, row
, col
);
7378 void wxGrid::SetRowAttr(int row
, wxGridCellAttr
*attr
)
7380 if ( CanHaveAttributes() )
7382 m_table
->SetRowAttr(attr
, row
);
7391 void wxGrid::SetColAttr(int col
, wxGridCellAttr
*attr
)
7393 if ( CanHaveAttributes() )
7395 m_table
->SetColAttr(attr
, col
);
7404 void wxGrid::SetCellBackgroundColour( int row
, int col
, const wxColour
& colour
)
7406 if ( CanHaveAttributes() )
7408 wxGridCellAttr
*attr
= GetOrCreateCellAttr(row
, col
);
7409 attr
->SetBackgroundColour(colour
);
7414 void wxGrid::SetCellTextColour( int row
, int col
, const wxColour
& colour
)
7416 if ( CanHaveAttributes() )
7418 wxGridCellAttr
*attr
= GetOrCreateCellAttr(row
, col
);
7419 attr
->SetTextColour(colour
);
7424 void wxGrid::SetCellFont( int row
, int col
, const wxFont
& font
)
7426 if ( CanHaveAttributes() )
7428 wxGridCellAttr
*attr
= GetOrCreateCellAttr(row
, col
);
7429 attr
->SetFont(font
);
7434 void wxGrid::SetCellAlignment( int row
, int col
, int horiz
, int vert
)
7436 if ( CanHaveAttributes() )
7438 wxGridCellAttr
*attr
= GetOrCreateCellAttr(row
, col
);
7439 attr
->SetAlignment(horiz
, vert
);
7444 void wxGrid::SetCellOverflow( int row
, int col
, bool allow
)
7446 if ( CanHaveAttributes() )
7448 wxGridCellAttr
*attr
= GetOrCreateCellAttr(row
, col
);
7449 attr
->SetOverflow(allow
);
7454 void wxGrid::SetCellSize( int row
, int col
, int num_rows
, int num_cols
)
7456 if ( CanHaveAttributes() )
7458 int cell_rows
, cell_cols
;
7460 wxGridCellAttr
*attr
= GetOrCreateCellAttr(row
, col
);
7461 attr
->GetSize(&cell_rows
, &cell_cols
);
7462 attr
->SetSize(num_rows
, num_cols
);
7465 // Cannot set the size of a cell to 0 or negative values
7466 // While it is perfectly legal to do that, this function cannot
7467 // handle all the possibilies, do it by hand by getting the CellAttr.
7468 // You can only set the size of a cell to 1,1 or greater with this fn
7469 wxASSERT_MSG( !((cell_rows
< 1) || (cell_cols
< 1)),
7470 wxT("wxGrid::SetCellSize setting cell size that is already part of another cell"));
7471 wxASSERT_MSG( !((num_rows
< 1) || (num_cols
< 1)),
7472 wxT("wxGrid::SetCellSize setting cell size to < 1"));
7474 // if this was already a multicell then "turn off" the other cells first
7475 if ((cell_rows
> 1) || (cell_cols
> 1))
7478 for (j
=row
; j
< row
+ cell_rows
; j
++)
7480 for (i
=col
; i
< col
+ cell_cols
; i
++)
7482 if ((i
!= col
) || (j
!= row
))
7484 wxGridCellAttr
*attr_stub
= GetOrCreateCellAttr(j
, i
);
7485 attr_stub
->SetSize( 1, 1 );
7486 attr_stub
->DecRef();
7492 // mark the cells that will be covered by this cell to
7493 // negative or zero values to point back at this cell
7494 if (((num_rows
> 1) || (num_cols
> 1)) && (num_rows
>= 1) && (num_cols
>= 1))
7497 for (j
=row
; j
< row
+ num_rows
; j
++)
7499 for (i
=col
; i
< col
+ num_cols
; i
++)
7501 if ((i
!= col
) || (j
!= row
))
7503 wxGridCellAttr
*attr_stub
= GetOrCreateCellAttr(j
, i
);
7504 attr_stub
->SetSize( row
- j
, col
- i
);
7505 attr_stub
->DecRef();
7513 void wxGrid::SetCellRenderer(int row
, int col
, wxGridCellRenderer
*renderer
)
7515 if ( CanHaveAttributes() )
7517 wxGridCellAttr
*attr
= GetOrCreateCellAttr(row
, col
);
7518 attr
->SetRenderer(renderer
);
7523 void wxGrid::SetCellEditor(int row
, int col
, wxGridCellEditor
* editor
)
7525 if ( CanHaveAttributes() )
7527 wxGridCellAttr
*attr
= GetOrCreateCellAttr(row
, col
);
7528 attr
->SetEditor(editor
);
7533 void wxGrid::SetReadOnly(int row
, int col
, bool isReadOnly
)
7535 if ( CanHaveAttributes() )
7537 wxGridCellAttr
*attr
= GetOrCreateCellAttr(row
, col
);
7538 attr
->SetReadOnly(isReadOnly
);
7543 // ----------------------------------------------------------------------------
7544 // Data type registration
7545 // ----------------------------------------------------------------------------
7547 void wxGrid::RegisterDataType(const wxString
& typeName
,
7548 wxGridCellRenderer
* renderer
,
7549 wxGridCellEditor
* editor
)
7551 m_typeRegistry
->RegisterDataType(typeName
, renderer
, editor
);
7555 wxGridCellEditor
* wxGrid::GetDefaultEditorForCell(int row
, int col
) const
7557 wxString typeName
= m_table
->GetTypeName(row
, col
);
7558 return GetDefaultEditorForType(typeName
);
7561 wxGridCellRenderer
* wxGrid::GetDefaultRendererForCell(int row
, int col
) const
7563 wxString typeName
= m_table
->GetTypeName(row
, col
);
7564 return GetDefaultRendererForType(typeName
);
7567 wxGridCellEditor
* wxGrid::GetDefaultEditorForType(const wxString
& typeName
) const
7569 int index
= m_typeRegistry
->FindOrCloneDataType(typeName
);
7570 if ( index
== wxNOT_FOUND
)
7572 wxFAIL_MSG(wxString::Format(wxT("Unknown data type name [%s]"), typeName
.c_str()));
7577 return m_typeRegistry
->GetEditor(index
);
7580 wxGridCellRenderer
* wxGrid::GetDefaultRendererForType(const wxString
& typeName
) const
7582 int index
= m_typeRegistry
->FindOrCloneDataType(typeName
);
7583 if ( index
== wxNOT_FOUND
)
7585 wxFAIL_MSG(wxString::Format(wxT("Unknown data type name [%s]"), typeName
.c_str()));
7590 return m_typeRegistry
->GetRenderer(index
);
7593 // ----------------------------------------------------------------------------
7595 // ----------------------------------------------------------------------------
7597 void wxGrid::DoDisableLineResize(int line
, wxGridFixedIndicesSet
*& setFixed
)
7601 setFixed
= new wxGridFixedIndicesSet
;
7604 setFixed
->insert(line
);
7608 wxGrid::DoCanResizeLine(int line
, const wxGridFixedIndicesSet
*setFixed
) const
7610 return !setFixed
|| !setFixed
->count(line
);
7613 void wxGrid::EnableDragRowSize( bool enable
)
7615 m_canDragRowSize
= enable
;
7618 void wxGrid::EnableDragColSize( bool enable
)
7620 m_canDragColSize
= enable
;
7623 void wxGrid::EnableDragGridSize( bool enable
)
7625 m_canDragGridSize
= enable
;
7628 void wxGrid::EnableDragCell( bool enable
)
7630 m_canDragCell
= enable
;
7633 void wxGrid::SetDefaultRowSize( int height
, bool resizeExistingRows
)
7635 m_defaultRowHeight
= wxMax( height
, m_minAcceptableRowHeight
);
7637 if ( resizeExistingRows
)
7639 // since we are resizing all rows to the default row size,
7640 // we can simply clear the row heights and row bottoms
7641 // arrays (which also allows us to take advantage of
7642 // some speed optimisations)
7643 m_rowHeights
.Empty();
7644 m_rowBottoms
.Empty();
7645 if ( !GetBatchCount() )
7650 void wxGrid::SetRowSize( int row
, int height
)
7652 wxCHECK_RET( row
>= 0 && row
< m_numRows
, wxT("invalid row index") );
7654 // if < 0 then calculate new height from label
7658 wxArrayString lines
;
7659 wxClientDC
dc(m_rowLabelWin
);
7660 dc
.SetFont(GetLabelFont());
7661 StringToLines(GetRowLabelValue( row
), lines
);
7662 GetTextBoxSize( dc
, lines
, &w
, &h
);
7663 //check that it is not less than the minimal height
7664 height
= wxMax(h
, GetRowMinimalAcceptableHeight());
7667 // See comment in SetColSize
7668 if ( height
< GetRowMinimalAcceptableHeight())
7671 if ( m_rowHeights
.IsEmpty() )
7673 // need to really create the array
7677 int h
= wxMax( 0, height
);
7678 int diff
= h
- m_rowHeights
[row
];
7680 m_rowHeights
[row
] = h
;
7681 for ( int i
= row
; i
< m_numRows
; i
++ )
7683 m_rowBottoms
[i
] += diff
;
7686 if ( !GetBatchCount() )
7690 void wxGrid::SetDefaultColSize( int width
, bool resizeExistingCols
)
7692 // we dont allow zero default column width
7693 m_defaultColWidth
= wxMax( wxMax( width
, m_minAcceptableColWidth
), 1 );
7695 if ( resizeExistingCols
)
7697 // since we are resizing all columns to the default column size,
7698 // we can simply clear the col widths and col rights
7699 // arrays (which also allows us to take advantage of
7700 // some speed optimisations)
7701 m_colWidths
.Empty();
7702 m_colRights
.Empty();
7703 if ( !GetBatchCount() )
7708 void wxGrid::SetColSize( int col
, int width
)
7710 wxCHECK_RET( col
>= 0 && col
< m_numCols
, wxT("invalid column index") );
7712 // if < 0 then calculate new width from label
7716 wxArrayString lines
;
7717 wxClientDC
dc(m_colWindow
);
7718 dc
.SetFont(GetLabelFont());
7719 StringToLines(GetColLabelValue(col
), lines
);
7720 if ( GetColLabelTextOrientation() == wxHORIZONTAL
)
7721 GetTextBoxSize( dc
, lines
, &w
, &h
);
7723 GetTextBoxSize( dc
, lines
, &h
, &w
);
7725 //check that it is not less than the minimal width
7726 width
= wxMax(width
, GetColMinimalAcceptableWidth());
7729 // we intentionally don't test whether the width is less than
7730 // GetColMinimalWidth() here but we do compare it with
7731 // GetColMinimalAcceptableWidth() as otherwise things currently break (see
7732 // #651) -- and we also always allow the width of 0 as it has the special
7733 // sense of hiding the column
7734 if ( width
> 0 && width
< GetColMinimalAcceptableWidth() )
7737 if ( m_colWidths
.IsEmpty() )
7739 // need to really create the array
7743 const int diff
= width
- m_colWidths
[col
];
7744 m_colWidths
[col
] = width
;
7745 if ( m_useNativeHeader
)
7746 GetGridColHeader()->UpdateColumn(col
);
7747 //else: will be refreshed when the header is redrawn
7749 for ( int colPos
= GetColPos(col
); colPos
< m_numCols
; colPos
++ )
7751 m_colRights
[GetColAt(colPos
)] += diff
;
7754 if ( !GetBatchCount() )
7761 void wxGrid::SetColMinimalWidth( int col
, int width
)
7763 if (width
> GetColMinimalAcceptableWidth())
7765 wxLongToLongHashMap::key_type key
= (wxLongToLongHashMap::key_type
)col
;
7766 m_colMinWidths
[key
] = width
;
7770 void wxGrid::SetRowMinimalHeight( int row
, int width
)
7772 if (width
> GetRowMinimalAcceptableHeight())
7774 wxLongToLongHashMap::key_type key
= (wxLongToLongHashMap::key_type
)row
;
7775 m_rowMinHeights
[key
] = width
;
7779 int wxGrid::GetColMinimalWidth(int col
) const
7781 wxLongToLongHashMap::key_type key
= (wxLongToLongHashMap::key_type
)col
;
7782 wxLongToLongHashMap::const_iterator it
= m_colMinWidths
.find(key
);
7784 return it
!= m_colMinWidths
.end() ? (int)it
->second
: m_minAcceptableColWidth
;
7787 int wxGrid::GetRowMinimalHeight(int row
) const
7789 wxLongToLongHashMap::key_type key
= (wxLongToLongHashMap::key_type
)row
;
7790 wxLongToLongHashMap::const_iterator it
= m_rowMinHeights
.find(key
);
7792 return it
!= m_rowMinHeights
.end() ? (int)it
->second
: m_minAcceptableRowHeight
;
7795 void wxGrid::SetColMinimalAcceptableWidth( int width
)
7797 // We do allow a width of 0 since this gives us
7798 // an easy way to temporarily hiding columns.
7800 m_minAcceptableColWidth
= width
;
7803 void wxGrid::SetRowMinimalAcceptableHeight( int height
)
7805 // We do allow a height of 0 since this gives us
7806 // an easy way to temporarily hiding rows.
7808 m_minAcceptableRowHeight
= height
;
7811 int wxGrid::GetColMinimalAcceptableWidth() const
7813 return m_minAcceptableColWidth
;
7816 int wxGrid::GetRowMinimalAcceptableHeight() const
7818 return m_minAcceptableRowHeight
;
7821 // ----------------------------------------------------------------------------
7823 // ----------------------------------------------------------------------------
7826 wxGrid::AutoSizeColOrRow(int colOrRow
, bool setAsMin
, wxGridDirection direction
)
7828 const bool column
= direction
== wxGRID_COLUMN
;
7830 wxClientDC
dc(m_gridWin
);
7832 // cancel editing of cell
7833 HideCellEditControl();
7834 SaveEditControlValue();
7836 // initialize both of them just to avoid compiler warnings even if only
7837 // really needs to be initialized here
7851 wxCoord extent
, extentMax
= 0;
7852 int max
= column
? m_numRows
: m_numCols
;
7853 for ( int rowOrCol
= 0; rowOrCol
< max
; rowOrCol
++ )
7860 // we need to account for the cells spanning multiple columns/rows:
7861 // while they may need a lot of space, they don't need all of it in
7863 int numRows
, numCols
;
7864 const CellSpan span
= GetCellSize(row
, col
, &numRows
, &numCols
);
7865 if ( span
== CellSpan_Inside
)
7867 // we need to get the size of the main cell, not of a cell hidden
7872 // get the size of the main cell too
7873 GetCellSize(row
, col
, &numRows
, &numCols
);
7876 wxGridCellAttr
*attr
= GetCellAttr(row
, col
);
7877 wxGridCellRenderer
*renderer
= attr
->GetRenderer(this, row
, col
);
7880 wxSize size
= renderer
->GetBestSize(*this, *attr
, dc
, row
, col
);
7881 extent
= column
? size
.x
: size
.y
;
7883 if ( span
!= CellSpan_None
)
7885 // we spread the size of a spanning cell over all the cells it
7886 // covers evenly -- this is probably not ideal but we can't
7887 // really do much better here
7889 // notice that numCols and numRows are never 0 as they
7890 // correspond to the size of the main cell of the span and not
7891 // of the cell inside it
7892 extent
/= column
? numCols
: numRows
;
7895 if ( extent
> extentMax
)
7904 // now also compare with the column label extent
7906 dc
.SetFont( GetLabelFont() );
7910 dc
.GetMultiLineTextExtent( GetColLabelValue(col
), &w
, &h
);
7911 if ( GetColLabelTextOrientation() == wxVERTICAL
)
7915 dc
.GetMultiLineTextExtent( GetRowLabelValue(row
), &w
, &h
);
7917 extent
= column
? w
: h
;
7918 if ( extent
> extentMax
)
7923 // empty column - give default extent (notice that if extentMax is less
7924 // than default extent but != 0, it's OK)
7925 extentMax
= column
? m_defaultColWidth
: m_defaultRowHeight
;
7930 // leave some space around text
7938 // Ensure automatic width is not less than minimal width. See the
7939 // comment in SetColSize() for explanation of why this isn't done
7942 extentMax
= wxMax(extentMax
, GetColMinimalWidth(col
));
7944 SetColSize( col
, extentMax
);
7945 if ( !GetBatchCount() )
7947 if ( m_useNativeHeader
)
7949 GetGridColHeader()->UpdateColumn(col
);
7954 m_gridWin
->GetClientSize( &cw
, &ch
);
7955 wxRect
rect ( CellToRect( 0, col
) );
7957 CalcScrolledPosition(rect
.x
, 0, &rect
.x
, &dummy
);
7958 rect
.width
= cw
- rect
.x
;
7959 rect
.height
= m_colLabelHeight
;
7960 GetColLabelWindow()->Refresh( true, &rect
);
7966 // Ensure automatic width is not less than minimal height. See the
7967 // comment in SetColSize() for explanation of why this isn't done
7970 extentMax
= wxMax(extentMax
, GetRowMinimalHeight(row
));
7972 SetRowSize(row
, extentMax
);
7973 if ( !GetBatchCount() )
7976 m_gridWin
->GetClientSize( &cw
, &ch
);
7977 wxRect
rect( CellToRect( row
, 0 ) );
7979 CalcScrolledPosition(0, rect
.y
, &dummy
, &rect
.y
);
7980 rect
.width
= m_rowLabelWidth
;
7981 rect
.height
= ch
- rect
.y
;
7982 m_rowLabelWin
->Refresh( true, &rect
);
7989 SetColMinimalWidth(col
, extentMax
);
7991 SetRowMinimalHeight(row
, extentMax
);
7995 wxCoord
wxGrid::CalcColOrRowLabelAreaMinSize(wxGridDirection direction
)
7997 // calculate size for the rows or columns?
7998 const bool calcRows
= direction
== wxGRID_ROW
;
8000 wxClientDC
dc(calcRows
? GetGridRowLabelWindow()
8001 : GetGridColLabelWindow());
8002 dc
.SetFont(GetLabelFont());
8004 // which dimension should we take into account for calculations?
8006 // for columns, the text can be only horizontal so it's easy but for rows
8007 // we also have to take into account the text orientation
8009 useWidth
= calcRows
|| (GetColLabelTextOrientation() == wxVERTICAL
);
8011 wxArrayString lines
;
8012 wxCoord extentMax
= 0;
8014 const int numRowsOrCols
= calcRows
? m_numRows
: m_numCols
;
8015 for ( int rowOrCol
= 0; rowOrCol
< numRowsOrCols
; rowOrCol
++ )
8019 wxString label
= calcRows
? GetRowLabelValue(rowOrCol
)
8020 : GetColLabelValue(rowOrCol
);
8021 StringToLines(label
, lines
);
8024 GetTextBoxSize(dc
, lines
, &w
, &h
);
8026 const wxCoord extent
= useWidth
? w
: h
;
8027 if ( extent
> extentMax
)
8033 // empty column - give default extent (notice that if extentMax is less
8034 // than default extent but != 0, it's OK)
8035 extentMax
= calcRows
? GetDefaultRowLabelSize()
8036 : GetDefaultColLabelSize();
8039 // leave some space around text (taken from AutoSizeColOrRow)
8048 int wxGrid::SetOrCalcColumnSizes(bool calcOnly
, bool setAsMin
)
8050 int width
= m_rowLabelWidth
;
8052 wxGridUpdateLocker locker
;
8054 locker
.Create(this);
8056 for ( int col
= 0; col
< m_numCols
; col
++ )
8059 AutoSizeColumn(col
, setAsMin
);
8061 width
+= GetColWidth(col
);
8067 int wxGrid::SetOrCalcRowSizes(bool calcOnly
, bool setAsMin
)
8069 int height
= m_colLabelHeight
;
8071 wxGridUpdateLocker locker
;
8073 locker
.Create(this);
8075 for ( int row
= 0; row
< m_numRows
; row
++ )
8078 AutoSizeRow(row
, setAsMin
);
8080 height
+= GetRowHeight(row
);
8086 void wxGrid::AutoSize()
8088 wxGridUpdateLocker
locker(this);
8090 wxSize
size(SetOrCalcColumnSizes(false) - m_rowLabelWidth
+ m_extraWidth
,
8091 SetOrCalcRowSizes(false) - m_colLabelHeight
+ m_extraHeight
);
8093 // we know that we're not going to have scrollbars so disable them now to
8094 // avoid trouble in SetClientSize() which can otherwise set the correct
8095 // client size but also leave space for (not needed any more) scrollbars
8096 SetScrollbars(m_xScrollPixelsPerLine
, m_yScrollPixelsPerLine
,
8099 SetClientSize(size
.x
+ m_rowLabelWidth
, size
.y
+ m_colLabelHeight
);
8102 void wxGrid::AutoSizeRowLabelSize( int row
)
8104 // Hide the edit control, so it
8105 // won't interfere with drag-shrinking.
8106 if ( IsCellEditControlShown() )
8108 HideCellEditControl();
8109 SaveEditControlValue();
8112 // autosize row height depending on label text
8113 SetRowSize(row
, -1);
8117 void wxGrid::AutoSizeColLabelSize( int col
)
8119 // Hide the edit control, so it
8120 // won't interfere with drag-shrinking.
8121 if ( IsCellEditControlShown() )
8123 HideCellEditControl();
8124 SaveEditControlValue();
8127 // autosize column width depending on label text
8128 SetColSize(col
, -1);
8132 wxSize
wxGrid::DoGetBestSize() const
8134 wxGrid
* const self
= const_cast<wxGrid
*>(this);
8136 // we do the same as in AutoSize() here with the exception that we don't
8137 // change the column/row sizes, only calculate them
8138 wxSize
size(self
->SetOrCalcColumnSizes(true) - m_rowLabelWidth
+ m_extraWidth
,
8139 self
->SetOrCalcRowSizes(true) - m_colLabelHeight
+ m_extraHeight
);
8141 // NOTE: This size should be cached, but first we need to add calls to
8142 // InvalidateBestSize everywhere that could change the results of this
8144 // CacheBestSize(size);
8146 return wxSize(size
.x
+ m_rowLabelWidth
, size
.y
+ m_colLabelHeight
)
8147 + GetWindowBorderSize();
8155 wxPen
& wxGrid::GetDividerPen() const
8160 // ----------------------------------------------------------------------------
8161 // cell value accessor functions
8162 // ----------------------------------------------------------------------------
8164 void wxGrid::SetCellValue( int row
, int col
, const wxString
& s
)
8168 m_table
->SetValue( row
, col
, s
);
8169 if ( !GetBatchCount() )
8172 wxRect
rect( CellToRect( row
, col
) );
8174 rect
.width
= m_gridWin
->GetClientSize().GetWidth();
8175 CalcScrolledPosition(0, rect
.y
, &dummy
, &rect
.y
);
8176 m_gridWin
->Refresh( false, &rect
);
8179 if ( m_currentCellCoords
.GetRow() == row
&&
8180 m_currentCellCoords
.GetCol() == col
&&
8181 IsCellEditControlShown())
8182 // Note: If we are using IsCellEditControlEnabled,
8183 // this interacts badly with calling SetCellValue from
8184 // an EVT_GRID_CELL_CHANGE handler.
8186 HideCellEditControl();
8187 ShowCellEditControl(); // will reread data from table
8192 // ----------------------------------------------------------------------------
8193 // block, row and column selection
8194 // ----------------------------------------------------------------------------
8196 void wxGrid::SelectRow( int row
, bool addToSelected
)
8201 if ( !addToSelected
)
8204 m_selection
->SelectRow(row
);
8207 void wxGrid::SelectCol( int col
, bool addToSelected
)
8212 if ( !addToSelected
)
8215 m_selection
->SelectCol(col
);
8218 void wxGrid::SelectBlock(int topRow
, int leftCol
, int bottomRow
, int rightCol
,
8224 if ( !addToSelected
)
8227 m_selection
->SelectBlock(topRow
, leftCol
, bottomRow
, rightCol
);
8230 void wxGrid::SelectAll()
8232 if ( m_numRows
> 0 && m_numCols
> 0 )
8235 m_selection
->SelectBlock( 0, 0, m_numRows
- 1, m_numCols
- 1 );
8239 // ----------------------------------------------------------------------------
8240 // cell, row and col deselection
8241 // ----------------------------------------------------------------------------
8243 void wxGrid::DeselectLine(int line
, const wxGridOperations
& oper
)
8248 const wxGridSelectionModes mode
= m_selection
->GetSelectionMode();
8249 if ( mode
== oper
.GetSelectionMode() ||
8250 mode
== wxGrid::wxGridSelectRowsOrColumns
)
8252 const wxGridCellCoords
c(oper
.MakeCoords(line
, 0));
8253 if ( m_selection
->IsInSelection(c
) )
8254 m_selection
->ToggleCellSelection(c
);
8256 else if ( mode
!= oper
.Dual().GetSelectionMode() )
8258 const int nOther
= oper
.Dual().GetNumberOfLines(this);
8259 for ( int i
= 0; i
< nOther
; i
++ )
8261 const wxGridCellCoords
c(oper
.MakeCoords(line
, i
));
8262 if ( m_selection
->IsInSelection(c
) )
8263 m_selection
->ToggleCellSelection(c
);
8266 //else: can only select orthogonal lines so no lines in this direction
8267 // could have been selected anyhow
8270 void wxGrid::DeselectRow(int row
)
8272 DeselectLine(row
, wxGridRowOperations());
8275 void wxGrid::DeselectCol(int col
)
8277 DeselectLine(col
, wxGridColumnOperations());
8280 void wxGrid::DeselectCell( int row
, int col
)
8282 if ( m_selection
&& m_selection
->IsInSelection(row
, col
) )
8283 m_selection
->ToggleCellSelection(row
, col
);
8286 bool wxGrid::IsSelection() const
8288 return ( m_selection
&& (m_selection
->IsSelection() ||
8289 ( m_selectedBlockTopLeft
!= wxGridNoCellCoords
&&
8290 m_selectedBlockBottomRight
!= wxGridNoCellCoords
) ) );
8293 bool wxGrid::IsInSelection( int row
, int col
) const
8295 return ( m_selection
&& (m_selection
->IsInSelection( row
, col
) ||
8296 ( row
>= m_selectedBlockTopLeft
.GetRow() &&
8297 col
>= m_selectedBlockTopLeft
.GetCol() &&
8298 row
<= m_selectedBlockBottomRight
.GetRow() &&
8299 col
<= m_selectedBlockBottomRight
.GetCol() )) );
8302 wxGridCellCoordsArray
wxGrid::GetSelectedCells() const
8306 wxGridCellCoordsArray a
;
8310 return m_selection
->m_cellSelection
;
8313 wxGridCellCoordsArray
wxGrid::GetSelectionBlockTopLeft() const
8317 wxGridCellCoordsArray a
;
8321 return m_selection
->m_blockSelectionTopLeft
;
8324 wxGridCellCoordsArray
wxGrid::GetSelectionBlockBottomRight() const
8328 wxGridCellCoordsArray a
;
8332 return m_selection
->m_blockSelectionBottomRight
;
8335 wxArrayInt
wxGrid::GetSelectedRows() const
8343 return m_selection
->m_rowSelection
;
8346 wxArrayInt
wxGrid::GetSelectedCols() const
8354 return m_selection
->m_colSelection
;
8357 void wxGrid::ClearSelection()
8359 wxRect r1
= BlockToDeviceRect(m_selectedBlockTopLeft
,
8360 m_selectedBlockBottomRight
);
8361 wxRect r2
= BlockToDeviceRect(m_currentCellCoords
,
8362 m_selectedBlockCorner
);
8364 m_selectedBlockTopLeft
=
8365 m_selectedBlockBottomRight
=
8366 m_selectedBlockCorner
= wxGridNoCellCoords
;
8368 if ( !r1
.IsEmpty() )
8369 RefreshRect(r1
, false);
8370 if ( !r2
.IsEmpty() )
8371 RefreshRect(r2
, false);
8374 m_selection
->ClearSelection();
8377 // This function returns the rectangle that encloses the given block
8378 // in device coords clipped to the client size of the grid window.
8380 wxRect
wxGrid::BlockToDeviceRect( const wxGridCellCoords
& topLeft
,
8381 const wxGridCellCoords
& bottomRight
) const
8384 wxRect tempCellRect
= CellToRect(topLeft
);
8385 if ( tempCellRect
!= wxGridNoCellRect
)
8387 resultRect
= tempCellRect
;
8391 resultRect
= wxRect(0, 0, 0, 0);
8394 tempCellRect
= CellToRect(bottomRight
);
8395 if ( tempCellRect
!= wxGridNoCellRect
)
8397 resultRect
+= tempCellRect
;
8401 // If both inputs were "wxGridNoCellRect," then there's nothing to do.
8402 return wxGridNoCellRect
;
8405 // Ensure that left/right and top/bottom pairs are in order.
8406 int left
= resultRect
.GetLeft();
8407 int top
= resultRect
.GetTop();
8408 int right
= resultRect
.GetRight();
8409 int bottom
= resultRect
.GetBottom();
8411 int leftCol
= topLeft
.GetCol();
8412 int topRow
= topLeft
.GetRow();
8413 int rightCol
= bottomRight
.GetCol();
8414 int bottomRow
= bottomRight
.GetRow();
8438 // The following loop is ONLY necessary to detect and handle merged cells.
8440 m_gridWin
->GetClientSize( &cw
, &ch
);
8442 // Get the origin coordinates: notice that they will be negative if the
8443 // grid is scrolled downwards/to the right.
8444 int gridOriginX
= 0;
8445 int gridOriginY
= 0;
8446 CalcScrolledPosition(gridOriginX
, gridOriginY
, &gridOriginX
, &gridOriginY
);
8448 int onScreenLeftmostCol
= internalXToCol(-gridOriginX
);
8449 int onScreenUppermostRow
= internalYToRow(-gridOriginY
);
8451 int onScreenRightmostCol
= internalXToCol(-gridOriginX
+ cw
);
8452 int onScreenBottommostRow
= internalYToRow(-gridOriginY
+ ch
);
8454 // Bound our loop so that we only examine the portion of the selected block
8455 // that is shown on screen. Therefore, we compare the Top-Left block values
8456 // to the Top-Left screen values, and the Bottom-Right block values to the
8457 // Bottom-Right screen values, choosing appropriately.
8458 const int visibleTopRow
= wxMax(topRow
, onScreenUppermostRow
);
8459 const int visibleBottomRow
= wxMin(bottomRow
, onScreenBottommostRow
);
8460 const int visibleLeftCol
= wxMax(leftCol
, onScreenLeftmostCol
);
8461 const int visibleRightCol
= wxMin(rightCol
, onScreenRightmostCol
);
8463 for ( int j
= visibleTopRow
; j
<= visibleBottomRow
; j
++ )
8465 for ( int i
= visibleLeftCol
; i
<= visibleRightCol
; i
++ )
8467 if ( (j
== visibleTopRow
) || (j
== visibleBottomRow
) ||
8468 (i
== visibleLeftCol
) || (i
== visibleRightCol
) )
8470 tempCellRect
= CellToRect( j
, i
);
8472 if (tempCellRect
.x
< left
)
8473 left
= tempCellRect
.x
;
8474 if (tempCellRect
.y
< top
)
8475 top
= tempCellRect
.y
;
8476 if (tempCellRect
.x
+ tempCellRect
.width
> right
)
8477 right
= tempCellRect
.x
+ tempCellRect
.width
;
8478 if (tempCellRect
.y
+ tempCellRect
.height
> bottom
)
8479 bottom
= tempCellRect
.y
+ tempCellRect
.height
;
8483 i
= visibleRightCol
; // jump over inner cells.
8488 // Convert to scrolled coords
8489 CalcScrolledPosition( left
, top
, &left
, &top
);
8490 CalcScrolledPosition( right
, bottom
, &right
, &bottom
);
8492 if (right
< 0 || bottom
< 0 || left
> cw
|| top
> ch
)
8493 return wxRect(0,0,0,0);
8495 resultRect
.SetLeft( wxMax(0, left
) );
8496 resultRect
.SetTop( wxMax(0, top
) );
8497 resultRect
.SetRight( wxMin(cw
, right
) );
8498 resultRect
.SetBottom( wxMin(ch
, bottom
) );
8503 void wxGrid::DoSetSizes(const wxGridSizesInfo
& sizeInfo
,
8504 const wxGridOperations
& oper
)
8507 oper
.SetDefaultLineSize(this, sizeInfo
.m_sizeDefault
, true);
8508 const int numLines
= oper
.GetNumberOfLines(this);
8509 for ( int i
= 0; i
< numLines
; i
++ )
8511 int size
= sizeInfo
.GetSize(i
);
8512 if ( size
!= sizeInfo
.m_sizeDefault
)
8513 oper
.SetLineSize(this, i
, size
);
8518 void wxGrid::SetColSizes(const wxGridSizesInfo
& sizeInfo
)
8520 DoSetSizes(sizeInfo
, wxGridColumnOperations());
8523 void wxGrid::SetRowSizes(const wxGridSizesInfo
& sizeInfo
)
8525 DoSetSizes(sizeInfo
, wxGridRowOperations());
8528 wxGridSizesInfo::wxGridSizesInfo(int defSize
, const wxArrayInt
& allSizes
)
8530 m_sizeDefault
= defSize
;
8531 for ( size_t i
= 0; i
< allSizes
.size(); i
++ )
8533 if ( allSizes
[i
] != defSize
)
8534 m_customSizes
[i
] = allSizes
[i
];
8538 int wxGridSizesInfo::GetSize(unsigned pos
) const
8540 wxUnsignedToIntHashMap::const_iterator it
= m_customSizes
.find(pos
);
8542 return it
== m_customSizes
.end() ? m_sizeDefault
: it
->second
;
8545 // ----------------------------------------------------------------------------
8547 // ----------------------------------------------------------------------------
8549 #if wxUSE_DRAG_AND_DROP
8551 // this allow setting drop target directly on wxGrid
8552 void wxGrid::SetDropTarget(wxDropTarget
*dropTarget
)
8554 GetGridWindow()->SetDropTarget(dropTarget
);
8557 #endif // wxUSE_DRAG_AND_DROP
8559 // ----------------------------------------------------------------------------
8560 // grid event classes
8561 // ----------------------------------------------------------------------------
8563 IMPLEMENT_DYNAMIC_CLASS( wxGridEvent
, wxNotifyEvent
)
8565 wxGridEvent::wxGridEvent( int id
, wxEventType type
, wxObject
* obj
,
8566 int row
, int col
, int x
, int y
, bool sel
,
8567 bool control
, bool shift
, bool alt
, bool meta
)
8568 : wxNotifyEvent( type
, id
),
8569 wxKeyboardState(control
, shift
, alt
, meta
)
8571 Init(row
, col
, x
, y
, sel
);
8573 SetEventObject(obj
);
8576 IMPLEMENT_DYNAMIC_CLASS( wxGridSizeEvent
, wxNotifyEvent
)
8578 wxGridSizeEvent::wxGridSizeEvent( int id
, wxEventType type
, wxObject
* obj
,
8579 int rowOrCol
, int x
, int y
,
8580 bool control
, bool shift
, bool alt
, bool meta
)
8581 : wxNotifyEvent( type
, id
),
8582 wxKeyboardState(control
, shift
, alt
, meta
)
8584 Init(rowOrCol
, x
, y
);
8586 SetEventObject(obj
);
8590 IMPLEMENT_DYNAMIC_CLASS( wxGridRangeSelectEvent
, wxNotifyEvent
)
8592 wxGridRangeSelectEvent::wxGridRangeSelectEvent(int id
, wxEventType type
, wxObject
* obj
,
8593 const wxGridCellCoords
& topLeft
,
8594 const wxGridCellCoords
& bottomRight
,
8595 bool sel
, bool control
,
8596 bool shift
, bool alt
, bool meta
)
8597 : wxNotifyEvent( type
, id
),
8598 wxKeyboardState(control
, shift
, alt
, meta
)
8600 Init(topLeft
, bottomRight
, sel
);
8602 SetEventObject(obj
);
8606 IMPLEMENT_DYNAMIC_CLASS(wxGridEditorCreatedEvent
, wxCommandEvent
)
8608 wxGridEditorCreatedEvent::wxGridEditorCreatedEvent(int id
, wxEventType type
,
8609 wxObject
* obj
, int row
,
8610 int col
, wxControl
* ctrl
)
8611 : wxCommandEvent(type
, id
)
8613 SetEventObject(obj
);
8620 // ----------------------------------------------------------------------------
8621 // wxGridTypeRegistry
8622 // ----------------------------------------------------------------------------
8624 wxGridTypeRegistry::~wxGridTypeRegistry()
8626 size_t count
= m_typeinfo
.GetCount();
8627 for ( size_t i
= 0; i
< count
; i
++ )
8628 delete m_typeinfo
[i
];
8631 void wxGridTypeRegistry::RegisterDataType(const wxString
& typeName
,
8632 wxGridCellRenderer
* renderer
,
8633 wxGridCellEditor
* editor
)
8635 wxGridDataTypeInfo
* info
= new wxGridDataTypeInfo(typeName
, renderer
, editor
);
8637 // is it already registered?
8638 int loc
= FindRegisteredDataType(typeName
);
8639 if ( loc
!= wxNOT_FOUND
)
8641 delete m_typeinfo
[loc
];
8642 m_typeinfo
[loc
] = info
;
8646 m_typeinfo
.Add(info
);
8650 int wxGridTypeRegistry::FindRegisteredDataType(const wxString
& typeName
)
8652 size_t count
= m_typeinfo
.GetCount();
8653 for ( size_t i
= 0; i
< count
; i
++ )
8655 if ( typeName
== m_typeinfo
[i
]->m_typeName
)
8664 int wxGridTypeRegistry::FindDataType(const wxString
& typeName
)
8666 int index
= FindRegisteredDataType(typeName
);
8667 if ( index
== wxNOT_FOUND
)
8669 // check whether this is one of the standard ones, in which case
8670 // register it "on the fly"
8672 if ( typeName
== wxGRID_VALUE_STRING
)
8674 RegisterDataType(wxGRID_VALUE_STRING
,
8675 new wxGridCellStringRenderer
,
8676 new wxGridCellTextEditor
);
8679 #endif // wxUSE_TEXTCTRL
8681 if ( typeName
== wxGRID_VALUE_BOOL
)
8683 RegisterDataType(wxGRID_VALUE_BOOL
,
8684 new wxGridCellBoolRenderer
,
8685 new wxGridCellBoolEditor
);
8688 #endif // wxUSE_CHECKBOX
8690 if ( typeName
== wxGRID_VALUE_NUMBER
)
8692 RegisterDataType(wxGRID_VALUE_NUMBER
,
8693 new wxGridCellNumberRenderer
,
8694 new wxGridCellNumberEditor
);
8696 else if ( typeName
== wxGRID_VALUE_FLOAT
)
8698 RegisterDataType(wxGRID_VALUE_FLOAT
,
8699 new wxGridCellFloatRenderer
,
8700 new wxGridCellFloatEditor
);
8703 #endif // wxUSE_TEXTCTRL
8705 if ( typeName
== wxGRID_VALUE_CHOICE
)
8707 RegisterDataType(wxGRID_VALUE_CHOICE
,
8708 new wxGridCellStringRenderer
,
8709 new wxGridCellChoiceEditor
);
8712 #endif // wxUSE_COMBOBOX
8717 // we get here only if just added the entry for this type, so return
8719 index
= m_typeinfo
.GetCount() - 1;
8725 int wxGridTypeRegistry::FindOrCloneDataType(const wxString
& typeName
)
8727 int index
= FindDataType(typeName
);
8728 if ( index
== wxNOT_FOUND
)
8730 // the first part of the typename is the "real" type, anything after ':'
8731 // are the parameters for the renderer
8732 index
= FindDataType(typeName
.BeforeFirst(wxT(':')));
8733 if ( index
== wxNOT_FOUND
)
8738 wxGridCellRenderer
*renderer
= GetRenderer(index
);
8739 wxGridCellRenderer
*rendererOld
= renderer
;
8740 renderer
= renderer
->Clone();
8741 rendererOld
->DecRef();
8743 wxGridCellEditor
*editor
= GetEditor(index
);
8744 wxGridCellEditor
*editorOld
= editor
;
8745 editor
= editor
->Clone();
8746 editorOld
->DecRef();
8748 // do it even if there are no parameters to reset them to defaults
8749 wxString params
= typeName
.AfterFirst(wxT(':'));
8750 renderer
->SetParameters(params
);
8751 editor
->SetParameters(params
);
8753 // register the new typename
8754 RegisterDataType(typeName
, renderer
, editor
);
8756 // we just registered it, it's the last one
8757 index
= m_typeinfo
.GetCount() - 1;
8763 wxGridCellRenderer
* wxGridTypeRegistry::GetRenderer(int index
)
8765 wxGridCellRenderer
* renderer
= m_typeinfo
[index
]->m_renderer
;
8772 wxGridCellEditor
* wxGridTypeRegistry::GetEditor(int index
)
8774 wxGridCellEditor
* editor
= m_typeinfo
[index
]->m_editor
;
8781 #endif // wxUSE_GRID