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"
52 #include "wx/generic/gridsel.h"
54 const char wxGridNameStr
[] = "grid";
56 #if defined(__WXMOTIF__)
57 #define WXUNUSED_MOTIF(identifier) WXUNUSED(identifier)
59 #define WXUNUSED_MOTIF(identifier) identifier
62 #if defined(__WXGTK__)
63 #define WXUNUSED_GTK(identifier) WXUNUSED(identifier)
65 #define WXUNUSED_GTK(identifier) identifier
68 // Required for wxIs... functions
71 // ----------------------------------------------------------------------------
73 // ----------------------------------------------------------------------------
75 WX_DEFINE_ARRAY_WITH_DECL_PTR(wxGridCellAttr
*, wxArrayAttrs
,
76 class WXDLLIMPEXP_ADV
);
78 struct wxGridCellWithAttr
80 wxGridCellWithAttr(int row
, int col
, wxGridCellAttr
*attr_
)
81 : coords(row
, col
), attr(attr_
)
86 wxGridCellWithAttr(const wxGridCellWithAttr
& other
)
87 : coords(other
.coords
),
93 wxGridCellWithAttr
& operator=(const wxGridCellWithAttr
& other
)
95 coords
= other
.coords
;
96 if (attr
!= other
.attr
)
105 void ChangeAttr(wxGridCellAttr
* new_attr
)
107 if (attr
!= new_attr
)
109 // "Delete" (i.e. DecRef) the old attribute.
112 // Take ownership of the new attribute, i.e. no IncRef.
116 ~wxGridCellWithAttr()
121 wxGridCellCoords coords
;
122 wxGridCellAttr
*attr
;
125 WX_DECLARE_OBJARRAY_WITH_DECL(wxGridCellWithAttr
, wxGridCellWithAttrArray
,
126 class WXDLLIMPEXP_ADV
);
128 #include "wx/arrimpl.cpp"
130 WX_DEFINE_OBJARRAY(wxGridCellCoordsArray
)
131 WX_DEFINE_OBJARRAY(wxGridCellWithAttrArray
)
133 // ----------------------------------------------------------------------------
135 // ----------------------------------------------------------------------------
137 DEFINE_EVENT_TYPE(wxEVT_GRID_CELL_LEFT_CLICK
)
138 DEFINE_EVENT_TYPE(wxEVT_GRID_CELL_RIGHT_CLICK
)
139 DEFINE_EVENT_TYPE(wxEVT_GRID_CELL_LEFT_DCLICK
)
140 DEFINE_EVENT_TYPE(wxEVT_GRID_CELL_RIGHT_DCLICK
)
141 DEFINE_EVENT_TYPE(wxEVT_GRID_CELL_BEGIN_DRAG
)
142 DEFINE_EVENT_TYPE(wxEVT_GRID_LABEL_LEFT_CLICK
)
143 DEFINE_EVENT_TYPE(wxEVT_GRID_LABEL_RIGHT_CLICK
)
144 DEFINE_EVENT_TYPE(wxEVT_GRID_LABEL_LEFT_DCLICK
)
145 DEFINE_EVENT_TYPE(wxEVT_GRID_LABEL_RIGHT_DCLICK
)
146 DEFINE_EVENT_TYPE(wxEVT_GRID_ROW_SIZE
)
147 DEFINE_EVENT_TYPE(wxEVT_GRID_COL_SIZE
)
148 DEFINE_EVENT_TYPE(wxEVT_GRID_COL_MOVE
)
149 DEFINE_EVENT_TYPE(wxEVT_GRID_RANGE_SELECT
)
150 DEFINE_EVENT_TYPE(wxEVT_GRID_CELL_CHANGE
)
151 DEFINE_EVENT_TYPE(wxEVT_GRID_SELECT_CELL
)
152 DEFINE_EVENT_TYPE(wxEVT_GRID_EDITOR_SHOWN
)
153 DEFINE_EVENT_TYPE(wxEVT_GRID_EDITOR_HIDDEN
)
154 DEFINE_EVENT_TYPE(wxEVT_GRID_EDITOR_CREATED
)
156 // ----------------------------------------------------------------------------
158 // ----------------------------------------------------------------------------
160 // header column providing access to the column information stored in wxGrid
161 // via wxHeaderColumn interface
162 class wxGridHeaderColumn
: public wxHeaderColumn
165 wxGridHeaderColumn(wxGrid
*grid
, int col
)
171 virtual wxString
GetTitle() const { return m_grid
->GetColLabelValue(m_col
); }
172 virtual wxBitmap
GetBitmap() const { return wxNullBitmap
; }
173 virtual int GetWidth() const { return m_grid
->GetColSize(m_col
); }
174 virtual int GetMinWidth() const { return 0; }
175 virtual wxAlignment
GetAlignment() const
179 m_grid
->GetColLabelAlignment(&horz
, &vert
);
181 return static_cast<wxAlignment
>(horz
);
184 virtual int GetFlags() const
187 if ( m_grid
->CanDragColSize() )
188 flags
|= wxCOL_RESIZABLE
;
189 if ( m_grid
->CanDragColMove() )
190 flags
|= wxCOL_REORDERABLE
;
195 // TODO: currently there is no support for sorting
196 virtual bool IsSortKey() const { return false; }
197 virtual bool IsSortOrderAscending() const { return false; }
200 // these really should be const but are not because the column needs to be
201 // assignable to be used in a wxVector (in STL build, in non-STL build we
202 // avoid the need for this)
207 // header control retreiving column information from the grid
208 class wxGridHeaderCtrl
: public wxHeaderCtrl
211 wxGridHeaderCtrl(wxGrid
*owner
)
212 : wxHeaderCtrl(owner
,
216 owner
->CanDragColMove() ? wxHD_DRAGDROP
: 0)
221 virtual wxHeaderColumn
& GetColumn(unsigned int idx
)
223 return m_columns
[idx
];
227 wxGrid
*GetOwner() const { return static_cast<wxGrid
*>(GetParent()); }
229 // override the base class method to update our m_columns array
230 virtual void OnColumnCountChanging(unsigned int count
)
232 const unsigned countOld
= m_columns
.size();
233 if ( count
< countOld
)
235 // just discard the columns which don't exist any more (notice that
236 // we can't use resize() here as it would require the vector
237 // value_type, i.e. wxGridHeaderColumn to be default constructible,
239 m_columns
.erase(m_columns
.begin() + count
, m_columns
.end());
241 else // new columns added
243 // add columns for the new elements
244 for ( unsigned n
= countOld
; n
< count
; n
++ )
245 m_columns
.push_back(wxGridHeaderColumn(GetOwner(), n
));
249 // override to implement column auto sizing
250 virtual bool UpdateColumnWidthToFit(unsigned int idx
, int widthTitle
)
252 GetOwner()->SetColSize(idx
, widthTitle
);
258 // event handlers forwarding wxHeaderCtrl events to wxGrid
259 void OnBeginResize(wxHeaderCtrlEvent
& event
)
261 GetOwner()->DoStartResizeCol(event
.GetColumn());
266 void OnResizing(wxHeaderCtrlEvent
& event
)
268 GetOwner()->DoUpdateResizeColWidth(event
.GetWidth());
271 void OnEndResize(wxHeaderCtrlEvent
& event
)
273 GetOwner()->DoEndDragResizeCol();
278 void OnBeginReorder(wxHeaderCtrlEvent
& event
)
280 GetOwner()->DoStartMoveCol(event
.GetColumn());
283 void OnEndReorder(wxHeaderCtrlEvent
& event
)
285 GetOwner()->DoEndMoveCol(event
.GetNewOrder());
288 wxVector
<wxGridHeaderColumn
> m_columns
;
290 DECLARE_EVENT_TABLE()
291 DECLARE_NO_COPY_CLASS(wxGridHeaderCtrl
)
294 BEGIN_EVENT_TABLE(wxGridHeaderCtrl
, wxHeaderCtrl
)
295 EVT_HEADER_BEGIN_RESIZE(wxID_ANY
, wxGridHeaderCtrl::OnBeginResize
)
296 EVT_HEADER_RESIZING(wxID_ANY
, wxGridHeaderCtrl::OnResizing
)
297 EVT_HEADER_END_RESIZE(wxID_ANY
, wxGridHeaderCtrl::OnEndResize
)
299 EVT_HEADER_BEGIN_REORDER(wxID_ANY
, wxGridHeaderCtrl::OnBeginReorder
)
300 EVT_HEADER_END_REORDER(wxID_ANY
, wxGridHeaderCtrl::OnEndReorder
)
303 // common base class for various grid subwindows
304 class WXDLLIMPEXP_ADV wxGridSubwindow
: public wxWindow
307 wxGridSubwindow(wxGrid
*owner
,
308 int additionalStyle
= 0,
309 const wxString
& name
= wxPanelNameStr
)
310 : wxWindow(owner
, wxID_ANY
,
311 wxDefaultPosition
, wxDefaultSize
,
312 wxBORDER_NONE
| additionalStyle
,
318 virtual bool AcceptsFocus() const { return false; }
320 wxGrid
*GetOwner() { return m_owner
; }
323 void OnMouseCaptureLost(wxMouseCaptureLostEvent
& event
);
327 DECLARE_EVENT_TABLE()
328 DECLARE_NO_COPY_CLASS(wxGridSubwindow
)
331 class WXDLLIMPEXP_ADV wxGridRowLabelWindow
: public wxGridSubwindow
334 wxGridRowLabelWindow(wxGrid
*parent
)
335 : wxGridSubwindow(parent
)
341 void OnPaint( wxPaintEvent
& event
);
342 void OnMouseEvent( wxMouseEvent
& event
);
343 void OnMouseWheel( wxMouseEvent
& event
);
345 DECLARE_EVENT_TABLE()
346 DECLARE_NO_COPY_CLASS(wxGridRowLabelWindow
)
350 class WXDLLIMPEXP_ADV wxGridColLabelWindow
: public wxGridSubwindow
353 wxGridColLabelWindow(wxGrid
*parent
)
354 : wxGridSubwindow(parent
)
360 void OnPaint( wxPaintEvent
& event
);
361 void OnMouseEvent( wxMouseEvent
& event
);
362 void OnMouseWheel( wxMouseEvent
& event
);
364 DECLARE_EVENT_TABLE()
365 DECLARE_NO_COPY_CLASS(wxGridColLabelWindow
)
369 class WXDLLIMPEXP_ADV wxGridCornerLabelWindow
: public wxGridSubwindow
372 wxGridCornerLabelWindow(wxGrid
*parent
)
373 : wxGridSubwindow(parent
)
378 void OnMouseEvent( wxMouseEvent
& event
);
379 void OnMouseWheel( wxMouseEvent
& event
);
380 void OnPaint( wxPaintEvent
& event
);
382 DECLARE_EVENT_TABLE()
383 DECLARE_NO_COPY_CLASS(wxGridCornerLabelWindow
)
386 class WXDLLIMPEXP_ADV wxGridWindow
: public wxGridSubwindow
389 wxGridWindow(wxGrid
*parent
)
390 : wxGridSubwindow(parent
,
391 wxWANTS_CHARS
| wxCLIP_CHILDREN
,
397 virtual void ScrollWindow( int dx
, int dy
, const wxRect
*rect
);
399 virtual bool AcceptsFocus() const { return true; }
402 void OnPaint( wxPaintEvent
&event
);
403 void OnMouseWheel( wxMouseEvent
& event
);
404 void OnMouseEvent( wxMouseEvent
& event
);
405 void OnKeyDown( wxKeyEvent
& );
406 void OnKeyUp( wxKeyEvent
& );
407 void OnChar( wxKeyEvent
& );
408 void OnEraseBackground( wxEraseEvent
& );
409 void OnFocus( wxFocusEvent
& );
411 DECLARE_EVENT_TABLE()
412 DECLARE_NO_COPY_CLASS(wxGridWindow
)
416 class wxGridCellEditorEvtHandler
: public wxEvtHandler
419 wxGridCellEditorEvtHandler(wxGrid
* grid
, wxGridCellEditor
* editor
)
426 void OnKillFocus(wxFocusEvent
& event
);
427 void OnKeyDown(wxKeyEvent
& event
);
428 void OnChar(wxKeyEvent
& event
);
430 void SetInSetFocus(bool inSetFocus
) { m_inSetFocus
= inSetFocus
; }
434 wxGridCellEditor
*m_editor
;
436 // Work around the fact that a focus kill event can be sent to
437 // a combobox within a set focus event.
440 DECLARE_EVENT_TABLE()
441 DECLARE_DYNAMIC_CLASS(wxGridCellEditorEvtHandler
)
442 DECLARE_NO_COPY_CLASS(wxGridCellEditorEvtHandler
)
446 IMPLEMENT_ABSTRACT_CLASS(wxGridCellEditorEvtHandler
, wxEvtHandler
)
448 BEGIN_EVENT_TABLE( wxGridCellEditorEvtHandler
, wxEvtHandler
)
449 EVT_KILL_FOCUS( wxGridCellEditorEvtHandler::OnKillFocus
)
450 EVT_KEY_DOWN( wxGridCellEditorEvtHandler::OnKeyDown
)
451 EVT_CHAR( wxGridCellEditorEvtHandler::OnChar
)
455 // ----------------------------------------------------------------------------
456 // the internal data representation used by wxGridCellAttrProvider
457 // ----------------------------------------------------------------------------
459 // this class stores attributes set for cells
460 class WXDLLIMPEXP_ADV wxGridCellAttrData
463 void SetAttr(wxGridCellAttr
*attr
, int row
, int col
);
464 wxGridCellAttr
*GetAttr(int row
, int col
) const;
465 void UpdateAttrRows( size_t pos
, int numRows
);
466 void UpdateAttrCols( size_t pos
, int numCols
);
469 // searches for the attr for given cell, returns wxNOT_FOUND if not found
470 int FindIndex(int row
, int col
) const;
472 wxGridCellWithAttrArray m_attrs
;
475 // this class stores attributes set for rows or columns
476 class WXDLLIMPEXP_ADV wxGridRowOrColAttrData
479 // empty ctor to suppress warnings
480 wxGridRowOrColAttrData() {}
481 ~wxGridRowOrColAttrData();
483 void SetAttr(wxGridCellAttr
*attr
, int rowOrCol
);
484 wxGridCellAttr
*GetAttr(int rowOrCol
) const;
485 void UpdateAttrRowsOrCols( size_t pos
, int numRowsOrCols
);
488 wxArrayInt m_rowsOrCols
;
489 wxArrayAttrs m_attrs
;
492 // NB: this is just a wrapper around 3 objects: one which stores cell
493 // attributes, and 2 others for row/col ones
494 class WXDLLIMPEXP_ADV wxGridCellAttrProviderData
497 wxGridCellAttrData m_cellAttrs
;
498 wxGridRowOrColAttrData m_rowAttrs
,
503 // ----------------------------------------------------------------------------
504 // data structures used for the data type registry
505 // ----------------------------------------------------------------------------
507 struct wxGridDataTypeInfo
509 wxGridDataTypeInfo(const wxString
& typeName
,
510 wxGridCellRenderer
* renderer
,
511 wxGridCellEditor
* editor
)
512 : m_typeName(typeName
), m_renderer(renderer
), m_editor(editor
)
515 ~wxGridDataTypeInfo()
517 wxSafeDecRef(m_renderer
);
518 wxSafeDecRef(m_editor
);
522 wxGridCellRenderer
* m_renderer
;
523 wxGridCellEditor
* m_editor
;
525 DECLARE_NO_COPY_CLASS(wxGridDataTypeInfo
)
529 WX_DEFINE_ARRAY_WITH_DECL_PTR(wxGridDataTypeInfo
*, wxGridDataTypeInfoArray
,
530 class WXDLLIMPEXP_ADV
);
533 class WXDLLIMPEXP_ADV wxGridTypeRegistry
536 wxGridTypeRegistry() {}
537 ~wxGridTypeRegistry();
539 void RegisterDataType(const wxString
& typeName
,
540 wxGridCellRenderer
* renderer
,
541 wxGridCellEditor
* editor
);
543 // find one of already registered data types
544 int FindRegisteredDataType(const wxString
& typeName
);
546 // try to FindRegisteredDataType(), if this fails and typeName is one of
547 // standard typenames, register it and return its index
548 int FindDataType(const wxString
& typeName
);
550 // try to FindDataType(), if it fails see if it is not one of already
551 // registered data types with some params in which case clone the
552 // registered data type and set params for it
553 int FindOrCloneDataType(const wxString
& typeName
);
555 wxGridCellRenderer
* GetRenderer(int index
);
556 wxGridCellEditor
* GetEditor(int index
);
559 wxGridDataTypeInfoArray m_typeinfo
;
562 // ----------------------------------------------------------------------------
563 // operations classes abstracting the difference between operating on rows and
565 // ----------------------------------------------------------------------------
567 // This class allows to write a function only once because by using its methods
568 // it will apply to both columns and rows.
570 // This is an abstract interface definition, the two concrete implementations
571 // below should be used when working with rows and columns respectively.
572 class wxGridOperations
575 // Returns the operations in the other direction, i.e. wxGridRowOperations
576 // if this object is a wxGridColumnOperations and vice versa.
577 virtual wxGridOperations
& Dual() const = 0;
579 // Return the number of rows or columns.
580 virtual int GetNumberOfLines(const wxGrid
*grid
) const = 0;
582 // Return the selection mode which allows selecting rows or columns.
583 virtual wxGrid::wxGridSelectionModes
GetSelectionMode() const = 0;
585 // Make a wxGridCellCoords from the given components: thisDir is row or
586 // column and otherDir is column or row
587 virtual wxGridCellCoords
MakeCoords(int thisDir
, int otherDir
) const = 0;
589 // Calculate the scrolled position of the given abscissa or ordinate.
590 virtual int CalcScrolledPosition(wxGrid
*grid
, int pos
) const = 0;
592 // Selects the horizontal or vertical component from the given object.
593 virtual int Select(const wxGridCellCoords
& coords
) const = 0;
594 virtual int Select(const wxPoint
& pt
) const = 0;
595 virtual int Select(const wxSize
& sz
) const = 0;
596 virtual int Select(const wxRect
& r
) const = 0;
597 virtual int& Select(wxRect
& r
) const = 0;
599 // Returns width or height of the rectangle
600 virtual int& SelectSize(wxRect
& r
) const = 0;
602 // Make a wxSize such that Select() applied to it returns first component
603 virtual wxSize
MakeSize(int first
, int second
) const = 0;
605 // Sets the row or column component of the given cell coordinates
606 virtual void Set(wxGridCellCoords
& coords
, int line
) const = 0;
609 // Draws a line parallel to the row or column, i.e. horizontal or vertical:
610 // pos is the horizontal or vertical position of the line and start and end
611 // are the coordinates of the line extremities in the other direction
613 DrawParallelLine(wxDC
& dc
, int start
, int end
, int pos
) const = 0;
615 // Draw a horizontal or vertical line across the given rectangle
616 // (this is implemented in terms of above and uses Select() to extract
617 // start and end from the given rectangle)
618 void DrawParallelLineInRect(wxDC
& dc
, const wxRect
& rect
, int pos
) const
620 const int posStart
= Select(rect
.GetPosition());
621 DrawParallelLine(dc
, posStart
, posStart
+ Select(rect
.GetSize()), pos
);
625 // Return the index of the row or column at the given pixel coordinate.
627 PosToLine(const wxGrid
*grid
, int pos
, bool clip
= false) const = 0;
629 // Get the top/left position, in pixels, of the given row or column
630 virtual int GetLineStartPos(const wxGrid
*grid
, int line
) const = 0;
632 // Get the bottom/right position, in pixels, of the given row or column
633 virtual int GetLineEndPos(const wxGrid
*grid
, int line
) const = 0;
635 // Get the height/width of the given row/column
636 virtual int GetLineSize(const wxGrid
*grid
, int line
) const = 0;
638 // Get wxGrid::m_rowBottoms/m_colRights array
639 virtual const wxArrayInt
& GetLineEnds(const wxGrid
*grid
) const = 0;
641 // Get default height row height or column width
642 virtual int GetDefaultLineSize(const wxGrid
*grid
) const = 0;
644 // Return the minimal acceptable row height or column width
645 virtual int GetMinimalAcceptableLineSize(const wxGrid
*grid
) const = 0;
647 // Return the minimal row height or column width
648 virtual int GetMinimalLineSize(const wxGrid
*grid
, int line
) const = 0;
650 // Set the row height or column width
651 virtual void SetLineSize(wxGrid
*grid
, int line
, int size
) const = 0;
653 // True if rows/columns can be resized by user
654 virtual bool CanResizeLines(const wxGrid
*grid
) const = 0;
657 // Return the index of the line at the given position
659 // NB: currently this is always identity for the rows as reordering is only
660 // implemented for the lines
661 virtual int GetLineAt(const wxGrid
*grid
, int line
) const = 0;
664 // Get the row or column label window
665 virtual wxWindow
*GetHeaderWindow(wxGrid
*grid
) const = 0;
667 // Get the width or height of the row or column label window
668 virtual int GetHeaderWindowSize(wxGrid
*grid
) const = 0;
671 // This class is never used polymorphically but give it a virtual dtor
672 // anyhow to suppress g++ complaints about it
673 virtual ~wxGridOperations() { }
676 class wxGridRowOperations
: public wxGridOperations
679 virtual wxGridOperations
& Dual() const;
681 virtual int GetNumberOfLines(const wxGrid
*grid
) const
682 { return grid
->GetNumberRows(); }
684 virtual wxGrid::wxGridSelectionModes
GetSelectionMode() const
685 { return wxGrid::wxGridSelectRows
; }
687 virtual wxGridCellCoords
MakeCoords(int thisDir
, int otherDir
) const
688 { return wxGridCellCoords(thisDir
, otherDir
); }
690 virtual int CalcScrolledPosition(wxGrid
*grid
, int pos
) const
691 { return grid
->CalcScrolledPosition(wxPoint(pos
, 0)).x
; }
693 virtual int Select(const wxGridCellCoords
& c
) const { return c
.GetRow(); }
694 virtual int Select(const wxPoint
& pt
) const { return pt
.x
; }
695 virtual int Select(const wxSize
& sz
) const { return sz
.x
; }
696 virtual int Select(const wxRect
& r
) const { return r
.x
; }
697 virtual int& Select(wxRect
& r
) const { return r
.x
; }
698 virtual int& SelectSize(wxRect
& r
) const { return r
.width
; }
699 virtual wxSize
MakeSize(int first
, int second
) const
700 { return wxSize(first
, second
); }
701 virtual void Set(wxGridCellCoords
& coords
, int line
) const
702 { coords
.SetRow(line
); }
704 virtual void DrawParallelLine(wxDC
& dc
, int start
, int end
, int pos
) const
705 { dc
.DrawLine(start
, pos
, end
, pos
); }
707 virtual int PosToLine(const wxGrid
*grid
, int pos
, bool clip
= false) const
708 { return grid
->YToRow(pos
, clip
); }
709 virtual int GetLineStartPos(const wxGrid
*grid
, int line
) const
710 { return grid
->GetRowTop(line
); }
711 virtual int GetLineEndPos(const wxGrid
*grid
, int line
) const
712 { return grid
->GetRowBottom(line
); }
713 virtual int GetLineSize(const wxGrid
*grid
, int line
) const
714 { return grid
->GetRowHeight(line
); }
715 virtual const wxArrayInt
& GetLineEnds(const wxGrid
*grid
) const
716 { return grid
->m_rowBottoms
; }
717 virtual int GetDefaultLineSize(const wxGrid
*grid
) const
718 { return grid
->GetDefaultRowSize(); }
719 virtual int GetMinimalAcceptableLineSize(const wxGrid
*grid
) const
720 { return grid
->GetRowMinimalAcceptableHeight(); }
721 virtual int GetMinimalLineSize(const wxGrid
*grid
, int line
) const
722 { return grid
->GetRowMinimalHeight(line
); }
723 virtual void SetLineSize(wxGrid
*grid
, int line
, int size
) const
724 { grid
->SetRowSize(line
, size
); }
725 virtual bool CanResizeLines(const wxGrid
*grid
) const
726 { return grid
->CanDragRowSize(); }
728 virtual int GetLineAt(const wxGrid
* WXUNUSED(grid
), int line
) const
729 { return line
; } // TODO: implement row reordering
731 virtual wxWindow
*GetHeaderWindow(wxGrid
*grid
) const
732 { return grid
->GetGridRowLabelWindow(); }
733 virtual int GetHeaderWindowSize(wxGrid
*grid
) const
734 { return grid
->GetRowLabelSize(); }
737 class wxGridColumnOperations
: public wxGridOperations
740 virtual wxGridOperations
& Dual() const;
742 virtual int GetNumberOfLines(const wxGrid
*grid
) const
743 { return grid
->GetNumberCols(); }
745 virtual wxGrid::wxGridSelectionModes
GetSelectionMode() const
746 { return wxGrid::wxGridSelectColumns
; }
748 virtual wxGridCellCoords
MakeCoords(int thisDir
, int otherDir
) const
749 { return wxGridCellCoords(otherDir
, thisDir
); }
751 virtual int CalcScrolledPosition(wxGrid
*grid
, int pos
) const
752 { return grid
->CalcScrolledPosition(wxPoint(0, pos
)).y
; }
754 virtual int Select(const wxGridCellCoords
& c
) const { return c
.GetCol(); }
755 virtual int Select(const wxPoint
& pt
) const { return pt
.y
; }
756 virtual int Select(const wxSize
& sz
) const { return sz
.y
; }
757 virtual int Select(const wxRect
& r
) const { return r
.y
; }
758 virtual int& Select(wxRect
& r
) const { return r
.y
; }
759 virtual int& SelectSize(wxRect
& r
) const { return r
.height
; }
760 virtual wxSize
MakeSize(int first
, int second
) const
761 { return wxSize(second
, first
); }
762 virtual void Set(wxGridCellCoords
& coords
, int line
) const
763 { coords
.SetCol(line
); }
765 virtual void DrawParallelLine(wxDC
& dc
, int start
, int end
, int pos
) const
766 { dc
.DrawLine(pos
, start
, pos
, end
); }
768 virtual int PosToLine(const wxGrid
*grid
, int pos
, bool clip
= false) const
769 { return grid
->XToCol(pos
, clip
); }
770 virtual int GetLineStartPos(const wxGrid
*grid
, int line
) const
771 { return grid
->GetColLeft(line
); }
772 virtual int GetLineEndPos(const wxGrid
*grid
, int line
) const
773 { return grid
->GetColRight(line
); }
774 virtual int GetLineSize(const wxGrid
*grid
, int line
) const
775 { return grid
->GetColWidth(line
); }
776 virtual const wxArrayInt
& GetLineEnds(const wxGrid
*grid
) const
777 { return grid
->m_colRights
; }
778 virtual int GetDefaultLineSize(const wxGrid
*grid
) const
779 { return grid
->GetDefaultColSize(); }
780 virtual int GetMinimalAcceptableLineSize(const wxGrid
*grid
) const
781 { return grid
->GetColMinimalAcceptableWidth(); }
782 virtual int GetMinimalLineSize(const wxGrid
*grid
, int line
) const
783 { return grid
->GetColMinimalWidth(line
); }
784 virtual void SetLineSize(wxGrid
*grid
, int line
, int size
) const
785 { grid
->SetColSize(line
, size
); }
786 virtual bool CanResizeLines(const wxGrid
*grid
) const
787 { return grid
->CanDragColSize(); }
789 virtual int GetLineAt(const wxGrid
*grid
, int line
) const
790 { return grid
->GetColAt(line
); }
792 virtual wxWindow
*GetHeaderWindow(wxGrid
*grid
) const
793 { return grid
->GetGridColLabelWindow(); }
794 virtual int GetHeaderWindowSize(wxGrid
*grid
) const
795 { return grid
->GetColLabelSize(); }
798 wxGridOperations
& wxGridRowOperations::Dual() const
800 static wxGridColumnOperations s_colOper
;
805 wxGridOperations
& wxGridColumnOperations::Dual() const
807 static wxGridRowOperations s_rowOper
;
812 // This class abstracts the difference between operations going forward
813 // (down/right) and backward (up/left) and allows to use the same code for
814 // functions which differ only in the direction of grid traversal
816 // Like wxGridOperations it's an ABC with two concrete subclasses below. Unlike
817 // it, this is a normal object and not just a function dispatch table and has a
820 // Note: the explanation of this discrepancy is the existence of (very useful)
821 // Dual() method in wxGridOperations which forces us to make wxGridOperations a
822 // function dispatcher only.
823 class wxGridDirectionOperations
826 // The oper parameter to ctor selects whether we work with rows or columns
827 wxGridDirectionOperations(wxGrid
*grid
, const wxGridOperations
& oper
)
833 // Check if the component of this point in our direction is at the
834 // boundary, i.e. is the first/last row/column
835 virtual bool IsAtBoundary(const wxGridCellCoords
& coords
) const = 0;
837 // Increment the component of this point in our direction
838 virtual void Advance(wxGridCellCoords
& coords
) const = 0;
840 // Find the line at the given distance, in pixels, away from this one
841 // (this uses clipping, i.e. anything after the last line is counted as the
842 // last one and anything before the first one as 0)
843 virtual int MoveByPixelDistance(int line
, int distance
) const = 0;
845 // This class is never used polymorphically but give it a virtual dtor
846 // anyhow to suppress g++ complaints about it
847 virtual ~wxGridDirectionOperations() { }
850 wxGrid
* const m_grid
;
851 const wxGridOperations
& m_oper
;
854 class wxGridBackwardOperations
: public wxGridDirectionOperations
857 wxGridBackwardOperations(wxGrid
*grid
, const wxGridOperations
& oper
)
858 : wxGridDirectionOperations(grid
, oper
)
862 virtual bool IsAtBoundary(const wxGridCellCoords
& coords
) const
864 wxASSERT_MSG( m_oper
.Select(coords
) >= 0, "invalid row/column" );
866 return m_oper
.Select(coords
) == 0;
869 virtual void Advance(wxGridCellCoords
& coords
) const
871 wxASSERT( !IsAtBoundary(coords
) );
873 m_oper
.Set(coords
, m_oper
.Select(coords
) - 1);
876 virtual int MoveByPixelDistance(int line
, int distance
) const
878 int pos
= m_oper
.GetLineStartPos(m_grid
, line
);
879 return m_oper
.PosToLine(m_grid
, pos
- distance
+ 1, true);
883 class wxGridForwardOperations
: public wxGridDirectionOperations
886 wxGridForwardOperations(wxGrid
*grid
, const wxGridOperations
& oper
)
887 : wxGridDirectionOperations(grid
, oper
),
888 m_numLines(oper
.GetNumberOfLines(grid
))
892 virtual bool IsAtBoundary(const wxGridCellCoords
& coords
) const
894 wxASSERT_MSG( m_oper
.Select(coords
) < m_numLines
, "invalid row/column" );
896 return m_oper
.Select(coords
) == m_numLines
- 1;
899 virtual void Advance(wxGridCellCoords
& coords
) const
901 wxASSERT( !IsAtBoundary(coords
) );
903 m_oper
.Set(coords
, m_oper
.Select(coords
) + 1);
906 virtual int MoveByPixelDistance(int line
, int distance
) const
908 int pos
= m_oper
.GetLineStartPos(m_grid
, line
);
909 return m_oper
.PosToLine(m_grid
, pos
+ distance
, true);
913 const int m_numLines
;
916 // ----------------------------------------------------------------------------
918 // ----------------------------------------------------------------------------
920 //#define DEBUG_ATTR_CACHE
921 #ifdef DEBUG_ATTR_CACHE
922 static size_t gs_nAttrCacheHits
= 0;
923 static size_t gs_nAttrCacheMisses
= 0;
926 // ----------------------------------------------------------------------------
928 // ----------------------------------------------------------------------------
930 wxGridCellCoords
wxGridNoCellCoords( -1, -1 );
931 wxRect
wxGridNoCellRect( -1, -1, -1, -1 );
937 const size_t GRID_SCROLL_LINE_X
= 15;
938 const size_t GRID_SCROLL_LINE_Y
= GRID_SCROLL_LINE_X
;
940 // the size of hash tables used a bit everywhere (the max number of elements
941 // in these hash tables is the number of rows/columns)
942 const int GRID_HASH_SIZE
= 100;
944 // the minimal distance in pixels the mouse needs to move to start a drag
946 const int DRAG_SENSITIVITY
= 3;
948 } // anonymous namespace
950 // ----------------------------------------------------------------------------
952 // ----------------------------------------------------------------------------
957 // ensure that first is less or equal to second, swapping the values if
959 void EnsureFirstLessThanSecond(int& first
, int& second
)
961 if ( first
> second
)
962 wxSwap(first
, second
);
965 } // anonymous namespace
967 // ============================================================================
969 // ============================================================================
971 // ----------------------------------------------------------------------------
973 // ----------------------------------------------------------------------------
975 wxGridCellEditor::wxGridCellEditor()
981 wxGridCellEditor::~wxGridCellEditor()
986 void wxGridCellEditor::Create(wxWindow
* WXUNUSED(parent
),
987 wxWindowID
WXUNUSED(id
),
988 wxEvtHandler
* evtHandler
)
991 m_control
->PushEventHandler(evtHandler
);
994 void wxGridCellEditor::PaintBackground(const wxRect
& rectCell
,
995 wxGridCellAttr
*attr
)
997 // erase the background because we might not fill the cell
998 wxClientDC
dc(m_control
->GetParent());
999 wxGridWindow
* gridWindow
= wxDynamicCast(m_control
->GetParent(), wxGridWindow
);
1001 gridWindow
->GetOwner()->PrepareDC(dc
);
1003 dc
.SetPen(*wxTRANSPARENT_PEN
);
1004 dc
.SetBrush(wxBrush(attr
->GetBackgroundColour()));
1005 dc
.DrawRectangle(rectCell
);
1007 // redraw the control we just painted over
1008 m_control
->Refresh();
1011 void wxGridCellEditor::Destroy()
1015 m_control
->PopEventHandler( true /* delete it*/ );
1017 m_control
->Destroy();
1022 void wxGridCellEditor::Show(bool show
, wxGridCellAttr
*attr
)
1024 wxASSERT_MSG(m_control
, wxT("The wxGridCellEditor must be created first!"));
1026 m_control
->Show(show
);
1030 // set the colours/fonts if we have any
1033 m_colFgOld
= m_control
->GetForegroundColour();
1034 m_control
->SetForegroundColour(attr
->GetTextColour());
1036 m_colBgOld
= m_control
->GetBackgroundColour();
1037 m_control
->SetBackgroundColour(attr
->GetBackgroundColour());
1039 // Workaround for GTK+1 font setting problem on some platforms
1040 #if !defined(__WXGTK__) || defined(__WXGTK20__)
1041 m_fontOld
= m_control
->GetFont();
1042 m_control
->SetFont(attr
->GetFont());
1045 // can't do anything more in the base class version, the other
1046 // attributes may only be used by the derived classes
1051 // restore the standard colours fonts
1052 if ( m_colFgOld
.Ok() )
1054 m_control
->SetForegroundColour(m_colFgOld
);
1055 m_colFgOld
= wxNullColour
;
1058 if ( m_colBgOld
.Ok() )
1060 m_control
->SetBackgroundColour(m_colBgOld
);
1061 m_colBgOld
= wxNullColour
;
1064 // Workaround for GTK+1 font setting problem on some platforms
1065 #if !defined(__WXGTK__) || defined(__WXGTK20__)
1066 if ( m_fontOld
.Ok() )
1068 m_control
->SetFont(m_fontOld
);
1069 m_fontOld
= wxNullFont
;
1075 void wxGridCellEditor::SetSize(const wxRect
& rect
)
1077 wxASSERT_MSG(m_control
, wxT("The wxGridCellEditor must be created first!"));
1079 m_control
->SetSize(rect
, wxSIZE_ALLOW_MINUS_ONE
);
1082 void wxGridCellEditor::HandleReturn(wxKeyEvent
& event
)
1087 bool wxGridCellEditor::IsAcceptedKey(wxKeyEvent
& event
)
1089 bool ctrl
= event
.ControlDown();
1090 bool alt
= event
.AltDown();
1093 // On the Mac the Alt key is more like shift and is used for entry of
1094 // valid characters, so check for Ctrl and Meta instead.
1095 alt
= event
.MetaDown();
1098 // Assume it's not a valid char if ctrl or alt is down, but if both are
1099 // down then it may be because of an AltGr key combination, so let them
1100 // through in that case.
1101 if ((ctrl
|| alt
) && !(ctrl
&& alt
))
1105 // if the unicode key code is not really a unicode character (it may
1106 // be a function key or etc., the platforms appear to always give us a
1107 // small value in this case) then fallback to the ASCII key code but
1108 // don't do anything for function keys or etc.
1109 if ( event
.GetUnicodeKey() > 127 && event
.GetKeyCode() > 127 )
1112 if ( event
.GetKeyCode() > 255 )
1119 void wxGridCellEditor::StartingKey(wxKeyEvent
& event
)
1124 void wxGridCellEditor::StartingClick()
1130 // ----------------------------------------------------------------------------
1131 // wxGridCellTextEditor
1132 // ----------------------------------------------------------------------------
1134 wxGridCellTextEditor::wxGridCellTextEditor()
1139 void wxGridCellTextEditor::Create(wxWindow
* parent
,
1141 wxEvtHandler
* evtHandler
)
1143 DoCreate(parent
, id
, evtHandler
);
1146 void wxGridCellTextEditor::DoCreate(wxWindow
* parent
,
1148 wxEvtHandler
* evtHandler
,
1151 style
|= wxTE_PROCESS_ENTER
| wxTE_PROCESS_TAB
| wxNO_BORDER
;
1153 m_control
= new wxTextCtrl(parent
, id
, wxEmptyString
,
1154 wxDefaultPosition
, wxDefaultSize
,
1157 // set max length allowed in the textctrl, if the parameter was set
1158 if ( m_maxChars
!= 0 )
1160 Text()->SetMaxLength(m_maxChars
);
1163 wxGridCellEditor::Create(parent
, id
, evtHandler
);
1166 void wxGridCellTextEditor::PaintBackground(const wxRect
& WXUNUSED(rectCell
),
1167 wxGridCellAttr
* WXUNUSED(attr
))
1169 // as we fill the entire client area,
1170 // don't do anything here to minimize flicker
1173 void wxGridCellTextEditor::SetSize(const wxRect
& rectOrig
)
1175 wxRect
rect(rectOrig
);
1177 // Make the edit control large enough to allow for internal margins
1179 // TODO: remove this if the text ctrl sizing is improved esp. for unix
1181 #if defined(__WXGTK__)
1189 #elif defined(__WXMSW__)
1203 int extra_x
= ( rect
.x
> 2 ) ? 2 : 1;
1204 int extra_y
= ( rect
.y
> 2 ) ? 2 : 1;
1206 #if defined(__WXMOTIF__)
1211 rect
.SetLeft( wxMax(0, rect
.x
- extra_x
) );
1212 rect
.SetTop( wxMax(0, rect
.y
- extra_y
) );
1213 rect
.SetRight( rect
.GetRight() + 2 * extra_x
);
1214 rect
.SetBottom( rect
.GetBottom() + 2 * extra_y
);
1217 wxGridCellEditor::SetSize(rect
);
1220 void wxGridCellTextEditor::BeginEdit(int row
, int col
, wxGrid
* grid
)
1222 wxASSERT_MSG(m_control
, wxT("The wxGridCellEditor must be created first!"));
1224 m_startValue
= grid
->GetTable()->GetValue(row
, col
);
1226 DoBeginEdit(m_startValue
);
1229 void wxGridCellTextEditor::DoBeginEdit(const wxString
& startValue
)
1231 Text()->SetValue(startValue
);
1232 Text()->SetInsertionPointEnd();
1233 Text()->SetSelection(-1, -1);
1237 bool wxGridCellTextEditor::EndEdit(int row
, int col
, wxGrid
* grid
)
1239 wxASSERT_MSG(m_control
, wxT("The wxGridCellEditor must be created first!"));
1241 bool changed
= false;
1242 wxString value
= Text()->GetValue();
1243 if (value
!= m_startValue
)
1247 grid
->GetTable()->SetValue(row
, col
, value
);
1249 m_startValue
= wxEmptyString
;
1251 // No point in setting the text of the hidden control
1252 //Text()->SetValue(m_startValue);
1257 void wxGridCellTextEditor::Reset()
1259 wxASSERT_MSG(m_control
, wxT("The wxGridCellEditor must be created first!"));
1261 DoReset(m_startValue
);
1264 void wxGridCellTextEditor::DoReset(const wxString
& startValue
)
1266 Text()->SetValue(startValue
);
1267 Text()->SetInsertionPointEnd();
1270 bool wxGridCellTextEditor::IsAcceptedKey(wxKeyEvent
& event
)
1272 return wxGridCellEditor::IsAcceptedKey(event
);
1275 void wxGridCellTextEditor::StartingKey(wxKeyEvent
& event
)
1277 // Since this is now happening in the EVT_CHAR event EmulateKeyPress is no
1278 // longer an appropriate way to get the character into the text control.
1279 // Do it ourselves instead. We know that if we get this far that we have
1280 // a valid character, so not a whole lot of testing needs to be done.
1282 wxTextCtrl
* tc
= Text();
1287 ch
= event
.GetUnicodeKey();
1289 ch
= (wxChar
)event
.GetKeyCode();
1291 ch
= (wxChar
)event
.GetKeyCode();
1297 // delete the character at the cursor
1298 pos
= tc
->GetInsertionPoint();
1299 if (pos
< tc
->GetLastPosition())
1300 tc
->Remove(pos
, pos
+ 1);
1304 // delete the character before the cursor
1305 pos
= tc
->GetInsertionPoint();
1307 tc
->Remove(pos
- 1, pos
);
1316 void wxGridCellTextEditor::HandleReturn( wxKeyEvent
&
1317 WXUNUSED_GTK(WXUNUSED_MOTIF(event
)) )
1319 #if defined(__WXMOTIF__) || defined(__WXGTK__)
1320 // wxMotif needs a little extra help...
1321 size_t pos
= (size_t)( Text()->GetInsertionPoint() );
1322 wxString
s( Text()->GetValue() );
1323 s
= s
.Left(pos
) + wxT("\n") + s
.Mid(pos
);
1324 Text()->SetValue(s
);
1325 Text()->SetInsertionPoint( pos
);
1327 // the other ports can handle a Return key press
1333 void wxGridCellTextEditor::SetParameters(const wxString
& params
)
1343 if ( params
.ToLong(&tmp
) )
1345 m_maxChars
= (size_t)tmp
;
1349 wxLogDebug( _T("Invalid wxGridCellTextEditor parameter string '%s' ignored"), params
.c_str() );
1354 // return the value in the text control
1355 wxString
wxGridCellTextEditor::GetValue() const
1357 return Text()->GetValue();
1360 // ----------------------------------------------------------------------------
1361 // wxGridCellNumberEditor
1362 // ----------------------------------------------------------------------------
1364 wxGridCellNumberEditor::wxGridCellNumberEditor(int min
, int max
)
1370 void wxGridCellNumberEditor::Create(wxWindow
* parent
,
1372 wxEvtHandler
* evtHandler
)
1377 // create a spin ctrl
1378 m_control
= new wxSpinCtrl(parent
, wxID_ANY
, wxEmptyString
,
1379 wxDefaultPosition
, wxDefaultSize
,
1383 wxGridCellEditor::Create(parent
, id
, evtHandler
);
1388 // just a text control
1389 wxGridCellTextEditor::Create(parent
, id
, evtHandler
);
1391 #if wxUSE_VALIDATORS
1392 Text()->SetValidator(wxTextValidator(wxFILTER_NUMERIC
));
1397 void wxGridCellNumberEditor::BeginEdit(int row
, int col
, wxGrid
* grid
)
1399 // first get the value
1400 wxGridTableBase
*table
= grid
->GetTable();
1401 if ( table
->CanGetValueAs(row
, col
, wxGRID_VALUE_NUMBER
) )
1403 m_valueOld
= table
->GetValueAsLong(row
, col
);
1408 wxString sValue
= table
->GetValue(row
, col
);
1409 if (! sValue
.ToLong(&m_valueOld
) && ! sValue
.empty())
1411 wxFAIL_MSG( _T("this cell doesn't have numeric value") );
1419 Spin()->SetValue((int)m_valueOld
);
1425 DoBeginEdit(GetString());
1429 bool wxGridCellNumberEditor::EndEdit(int row
, int col
,
1438 value
= Spin()->GetValue();
1439 if ( value
== m_valueOld
)
1442 text
.Printf(wxT("%ld"), value
);
1444 else // using unconstrained input
1445 #endif // wxUSE_SPINCTRL
1447 const wxString
textOld(grid
->GetCellValue(row
, col
));
1448 text
= Text()->GetValue();
1451 if ( textOld
.empty() )
1454 else // non-empty text now (maybe 0)
1456 if ( !text
.ToLong(&value
) )
1459 // if value == m_valueOld == 0 but old text was "" and new one is
1460 // "0" something still did change
1461 if ( value
== m_valueOld
&& (value
|| !textOld
.empty()) )
1466 wxGridTableBase
* const table
= grid
->GetTable();
1467 if ( table
->CanSetValueAs(row
, col
, wxGRID_VALUE_NUMBER
) )
1468 table
->SetValueAsLong(row
, col
, value
);
1470 table
->SetValue(row
, col
, text
);
1475 void wxGridCellNumberEditor::Reset()
1480 Spin()->SetValue((int)m_valueOld
);
1485 DoReset(GetString());
1489 bool wxGridCellNumberEditor::IsAcceptedKey(wxKeyEvent
& event
)
1491 if ( wxGridCellEditor::IsAcceptedKey(event
) )
1493 int keycode
= event
.GetKeyCode();
1494 if ( (keycode
< 128) &&
1495 (wxIsdigit(keycode
) || keycode
== '+' || keycode
== '-'))
1504 void wxGridCellNumberEditor::StartingKey(wxKeyEvent
& event
)
1506 int keycode
= event
.GetKeyCode();
1509 if ( wxIsdigit(keycode
) || keycode
== '+' || keycode
== '-')
1511 wxGridCellTextEditor::StartingKey(event
);
1513 // skip Skip() below
1520 if ( wxIsdigit(keycode
) )
1522 wxSpinCtrl
* spin
= (wxSpinCtrl
*)m_control
;
1523 spin
->SetValue(keycode
- '0');
1524 spin
->SetSelection(1,1);
1533 void wxGridCellNumberEditor::SetParameters(const wxString
& params
)
1544 if ( params
.BeforeFirst(_T(',')).ToLong(&tmp
) )
1548 if ( params
.AfterFirst(_T(',')).ToLong(&tmp
) )
1552 // skip the error message below
1557 wxLogDebug(_T("Invalid wxGridCellNumberEditor parameter string '%s' ignored"), params
.c_str());
1561 // return the value in the spin control if it is there (the text control otherwise)
1562 wxString
wxGridCellNumberEditor::GetValue() const
1569 long value
= Spin()->GetValue();
1570 s
.Printf(wxT("%ld"), value
);
1575 s
= Text()->GetValue();
1581 // ----------------------------------------------------------------------------
1582 // wxGridCellFloatEditor
1583 // ----------------------------------------------------------------------------
1585 wxGridCellFloatEditor::wxGridCellFloatEditor(int width
, int precision
)
1588 m_precision
= precision
;
1591 void wxGridCellFloatEditor::Create(wxWindow
* parent
,
1593 wxEvtHandler
* evtHandler
)
1595 wxGridCellTextEditor::Create(parent
, id
, evtHandler
);
1597 #if wxUSE_VALIDATORS
1598 Text()->SetValidator(wxTextValidator(wxFILTER_NUMERIC
));
1602 void wxGridCellFloatEditor::BeginEdit(int row
, int col
, wxGrid
* grid
)
1604 // first get the value
1605 wxGridTableBase
* const table
= grid
->GetTable();
1606 if ( table
->CanGetValueAs(row
, col
, wxGRID_VALUE_FLOAT
) )
1608 m_valueOld
= table
->GetValueAsDouble(row
, col
);
1614 const wxString value
= table
->GetValue(row
, col
);
1615 if ( !value
.empty() )
1617 if ( !value
.ToDouble(&m_valueOld
) )
1619 wxFAIL_MSG( _T("this cell doesn't have float value") );
1625 DoBeginEdit(GetString());
1628 bool wxGridCellFloatEditor::EndEdit(int row
, int col
, wxGrid
* grid
)
1630 const wxString
text(Text()->GetValue()),
1631 textOld(grid
->GetCellValue(row
, col
));
1634 if ( !text
.empty() )
1636 if ( !text
.ToDouble(&value
) )
1639 else // new value is empty string
1641 if ( textOld
.empty() )
1642 return false; // nothing changed
1647 // the test for empty strings ensures that we don't skip the value setting
1648 // when "" is replaced by "0" or vice versa as "" numeric value is also 0.
1649 if ( wxIsSameDouble(value
, m_valueOld
) && !text
.empty() && !textOld
.empty() )
1650 return false; // nothing changed
1652 wxGridTableBase
* const table
= grid
->GetTable();
1654 if ( table
->CanSetValueAs(row
, col
, wxGRID_VALUE_FLOAT
) )
1655 table
->SetValueAsDouble(row
, col
, value
);
1657 table
->SetValue(row
, col
, text
);
1662 void wxGridCellFloatEditor::Reset()
1664 DoReset(GetString());
1667 void wxGridCellFloatEditor::StartingKey(wxKeyEvent
& event
)
1669 int keycode
= event
.GetKeyCode();
1671 tmpbuf
[0] = (char) keycode
;
1673 wxString
strbuf(tmpbuf
, *wxConvCurrent
);
1676 bool is_decimal_point
= ( strbuf
==
1677 wxLocale::GetInfo(wxLOCALE_DECIMAL_POINT
, wxLOCALE_CAT_NUMBER
) );
1679 bool is_decimal_point
= ( strbuf
== _T(".") );
1682 if ( wxIsdigit(keycode
) || keycode
== '+' || keycode
== '-'
1683 || is_decimal_point
)
1685 wxGridCellTextEditor::StartingKey(event
);
1687 // skip Skip() below
1694 void wxGridCellFloatEditor::SetParameters(const wxString
& params
)
1705 if ( params
.BeforeFirst(_T(',')).ToLong(&tmp
) )
1709 if ( params
.AfterFirst(_T(',')).ToLong(&tmp
) )
1711 m_precision
= (int)tmp
;
1713 // skip the error message below
1718 wxLogDebug(_T("Invalid wxGridCellFloatEditor parameter string '%s' ignored"), params
.c_str());
1722 wxString
wxGridCellFloatEditor::GetString() const
1725 if ( m_precision
== -1 && m_width
!= -1)
1727 // default precision
1728 fmt
.Printf(_T("%%%d.f"), m_width
);
1730 else if ( m_precision
!= -1 && m_width
== -1)
1733 fmt
.Printf(_T("%%.%df"), m_precision
);
1735 else if ( m_precision
!= -1 && m_width
!= -1 )
1737 fmt
.Printf(_T("%%%d.%df"), m_width
, m_precision
);
1741 // default width/precision
1745 return wxString::Format(fmt
, m_valueOld
);
1748 bool wxGridCellFloatEditor::IsAcceptedKey(wxKeyEvent
& event
)
1750 if ( wxGridCellEditor::IsAcceptedKey(event
) )
1752 const int keycode
= event
.GetKeyCode();
1753 if ( isascii(keycode
) )
1756 tmpbuf
[0] = (char) keycode
;
1758 wxString
strbuf(tmpbuf
, *wxConvCurrent
);
1761 const wxString decimalPoint
=
1762 wxLocale::GetInfo(wxLOCALE_DECIMAL_POINT
, wxLOCALE_CAT_NUMBER
);
1764 const wxString
decimalPoint(_T('.'));
1767 // accept digits, 'e' as in '1e+6', also '-', '+', and '.'
1768 if ( wxIsdigit(keycode
) ||
1769 tolower(keycode
) == 'e' ||
1770 keycode
== decimalPoint
||
1782 #endif // wxUSE_TEXTCTRL
1786 // ----------------------------------------------------------------------------
1787 // wxGridCellBoolEditor
1788 // ----------------------------------------------------------------------------
1790 // the default values for GetValue()
1791 wxString
wxGridCellBoolEditor::ms_stringValues
[2] = { _T(""), _T("1") };
1793 void wxGridCellBoolEditor::Create(wxWindow
* parent
,
1795 wxEvtHandler
* evtHandler
)
1797 m_control
= new wxCheckBox(parent
, id
, wxEmptyString
,
1798 wxDefaultPosition
, wxDefaultSize
,
1801 wxGridCellEditor::Create(parent
, id
, evtHandler
);
1804 void wxGridCellBoolEditor::SetSize(const wxRect
& r
)
1806 bool resize
= false;
1807 wxSize size
= m_control
->GetSize();
1808 wxCoord minSize
= wxMin(r
.width
, r
.height
);
1810 // check if the checkbox is not too big/small for this cell
1811 wxSize sizeBest
= m_control
->GetBestSize();
1812 if ( !(size
== sizeBest
) )
1814 // reset to default size if it had been made smaller
1820 if ( size
.x
>= minSize
|| size
.y
>= minSize
)
1822 // leave 1 pixel margin
1823 size
.x
= size
.y
= minSize
- 2;
1830 m_control
->SetSize(size
);
1833 // position it in the centre of the rectangle (TODO: support alignment?)
1835 #if defined(__WXGTK__) || defined (__WXMOTIF__)
1836 // the checkbox without label still has some space to the right in wxGTK,
1837 // so shift it to the right
1839 #elif defined(__WXMSW__)
1840 // here too, but in other way
1845 int hAlign
= wxALIGN_CENTRE
;
1846 int vAlign
= wxALIGN_CENTRE
;
1848 GetCellAttr()->GetAlignment(& hAlign
, & vAlign
);
1851 if (hAlign
== wxALIGN_LEFT
)
1859 y
= r
.y
+ r
.height
/ 2 - size
.y
/ 2;
1861 else if (hAlign
== wxALIGN_RIGHT
)
1863 x
= r
.x
+ r
.width
- size
.x
- 2;
1864 y
= r
.y
+ r
.height
/ 2 - size
.y
/ 2;
1866 else if (hAlign
== wxALIGN_CENTRE
)
1868 x
= r
.x
+ r
.width
/ 2 - size
.x
/ 2;
1869 y
= r
.y
+ r
.height
/ 2 - size
.y
/ 2;
1872 m_control
->Move(x
, y
);
1875 void wxGridCellBoolEditor::Show(bool show
, wxGridCellAttr
*attr
)
1877 m_control
->Show(show
);
1881 wxColour colBg
= attr
? attr
->GetBackgroundColour() : *wxLIGHT_GREY
;
1882 CBox()->SetBackgroundColour(colBg
);
1886 void wxGridCellBoolEditor::BeginEdit(int row
, int col
, wxGrid
* grid
)
1888 wxASSERT_MSG(m_control
,
1889 wxT("The wxGridCellEditor must be created first!"));
1891 if (grid
->GetTable()->CanGetValueAs(row
, col
, wxGRID_VALUE_BOOL
))
1893 m_startValue
= grid
->GetTable()->GetValueAsBool(row
, col
);
1897 wxString
cellval( grid
->GetTable()->GetValue(row
, col
) );
1899 if ( cellval
== ms_stringValues
[false] )
1900 m_startValue
= false;
1901 else if ( cellval
== ms_stringValues
[true] )
1902 m_startValue
= true;
1905 // do not try to be smart here and convert it to true or false
1906 // because we'll still overwrite it with something different and
1907 // this risks to be very surprising for the user code, let them
1909 wxFAIL_MSG( _T("invalid value for a cell with bool editor!") );
1913 CBox()->SetValue(m_startValue
);
1917 bool wxGridCellBoolEditor::EndEdit(int row
, int col
,
1920 wxASSERT_MSG(m_control
,
1921 wxT("The wxGridCellEditor must be created first!"));
1923 bool changed
= false;
1924 bool value
= CBox()->GetValue();
1925 if ( value
!= m_startValue
)
1930 wxGridTableBase
* const table
= grid
->GetTable();
1931 if ( table
->CanGetValueAs(row
, col
, wxGRID_VALUE_BOOL
) )
1932 table
->SetValueAsBool(row
, col
, value
);
1934 table
->SetValue(row
, col
, GetValue());
1940 void wxGridCellBoolEditor::Reset()
1942 wxASSERT_MSG(m_control
,
1943 wxT("The wxGridCellEditor must be created first!"));
1945 CBox()->SetValue(m_startValue
);
1948 void wxGridCellBoolEditor::StartingClick()
1950 CBox()->SetValue(!CBox()->GetValue());
1953 bool wxGridCellBoolEditor::IsAcceptedKey(wxKeyEvent
& event
)
1955 if ( wxGridCellEditor::IsAcceptedKey(event
) )
1957 int keycode
= event
.GetKeyCode();
1970 void wxGridCellBoolEditor::StartingKey(wxKeyEvent
& event
)
1972 int keycode
= event
.GetKeyCode();
1976 CBox()->SetValue(!CBox()->GetValue());
1980 CBox()->SetValue(true);
1984 CBox()->SetValue(false);
1989 wxString
wxGridCellBoolEditor::GetValue() const
1991 return ms_stringValues
[CBox()->GetValue()];
1995 wxGridCellBoolEditor::UseStringValues(const wxString
& valueTrue
,
1996 const wxString
& valueFalse
)
1998 ms_stringValues
[false] = valueFalse
;
1999 ms_stringValues
[true] = valueTrue
;
2003 wxGridCellBoolEditor::IsTrueValue(const wxString
& value
)
2005 return value
== ms_stringValues
[true];
2008 #endif // wxUSE_CHECKBOX
2012 // ----------------------------------------------------------------------------
2013 // wxGridCellChoiceEditor
2014 // ----------------------------------------------------------------------------
2016 wxGridCellChoiceEditor::wxGridCellChoiceEditor(const wxArrayString
& choices
,
2018 : m_choices(choices
),
2019 m_allowOthers(allowOthers
) { }
2021 wxGridCellChoiceEditor::wxGridCellChoiceEditor(size_t count
,
2022 const wxString choices
[],
2024 : m_allowOthers(allowOthers
)
2028 m_choices
.Alloc(count
);
2029 for ( size_t n
= 0; n
< count
; n
++ )
2031 m_choices
.Add(choices
[n
]);
2036 wxGridCellEditor
*wxGridCellChoiceEditor::Clone() const
2038 wxGridCellChoiceEditor
*editor
= new wxGridCellChoiceEditor
;
2039 editor
->m_allowOthers
= m_allowOthers
;
2040 editor
->m_choices
= m_choices
;
2045 void wxGridCellChoiceEditor::Create(wxWindow
* parent
,
2047 wxEvtHandler
* evtHandler
)
2049 int style
= wxTE_PROCESS_ENTER
|
2053 if ( !m_allowOthers
)
2054 style
|= wxCB_READONLY
;
2055 m_control
= new wxComboBox(parent
, id
, wxEmptyString
,
2056 wxDefaultPosition
, wxDefaultSize
,
2060 wxGridCellEditor::Create(parent
, id
, evtHandler
);
2063 void wxGridCellChoiceEditor::PaintBackground(const wxRect
& rectCell
,
2064 wxGridCellAttr
* attr
)
2066 // as we fill the entire client area, don't do anything here to minimize
2069 // TODO: It doesn't actually fill the client area since the height of a
2070 // combo always defaults to the standard. Until someone has time to
2071 // figure out the right rectangle to paint, just do it the normal way.
2072 wxGridCellEditor::PaintBackground(rectCell
, attr
);
2075 void wxGridCellChoiceEditor::BeginEdit(int row
, int col
, wxGrid
* grid
)
2077 wxASSERT_MSG(m_control
,
2078 wxT("The wxGridCellEditor must be created first!"));
2080 wxGridCellEditorEvtHandler
* evtHandler
= NULL
;
2082 evtHandler
= wxDynamicCast(m_control
->GetEventHandler(), wxGridCellEditorEvtHandler
);
2084 // Don't immediately end if we get a kill focus event within BeginEdit
2086 evtHandler
->SetInSetFocus(true);
2088 m_startValue
= grid
->GetTable()->GetValue(row
, col
);
2090 Reset(); // this updates combo box to correspond to m_startValue
2092 Combo()->SetFocus();
2096 // When dropping down the menu, a kill focus event
2097 // happens after this point, so we can't reset the flag yet.
2098 #if !defined(__WXGTK20__)
2099 evtHandler
->SetInSetFocus(false);
2104 bool wxGridCellChoiceEditor::EndEdit(int row
, int col
,
2107 wxString value
= Combo()->GetValue();
2108 if ( value
== m_startValue
)
2111 grid
->GetTable()->SetValue(row
, col
, value
);
2116 void wxGridCellChoiceEditor::Reset()
2120 Combo()->SetValue(m_startValue
);
2121 Combo()->SetInsertionPointEnd();
2123 else // the combobox is read-only
2125 // find the right position, or default to the first if not found
2126 int pos
= Combo()->FindString(m_startValue
);
2127 if (pos
== wxNOT_FOUND
)
2129 Combo()->SetSelection(pos
);
2133 void wxGridCellChoiceEditor::SetParameters(const wxString
& params
)
2143 wxStringTokenizer
tk(params
, _T(','));
2144 while ( tk
.HasMoreTokens() )
2146 m_choices
.Add(tk
.GetNextToken());
2150 // return the value in the text control
2151 wxString
wxGridCellChoiceEditor::GetValue() const
2153 return Combo()->GetValue();
2156 #endif // wxUSE_COMBOBOX
2158 // ----------------------------------------------------------------------------
2159 // wxGridCellEditorEvtHandler
2160 // ----------------------------------------------------------------------------
2162 void wxGridCellEditorEvtHandler::OnKillFocus(wxFocusEvent
& event
)
2164 // Don't disable the cell if we're just starting to edit it
2169 m_grid
->DisableCellEditControl();
2174 void wxGridCellEditorEvtHandler::OnKeyDown(wxKeyEvent
& event
)
2176 switch ( event
.GetKeyCode() )
2180 m_grid
->DisableCellEditControl();
2184 m_grid
->GetEventHandler()->ProcessEvent( event
);
2188 case WXK_NUMPAD_ENTER
:
2189 if (!m_grid
->GetEventHandler()->ProcessEvent(event
))
2190 m_editor
->HandleReturn(event
);
2199 void wxGridCellEditorEvtHandler::OnChar(wxKeyEvent
& event
)
2201 int row
= m_grid
->GetGridCursorRow();
2202 int col
= m_grid
->GetGridCursorCol();
2203 wxRect rect
= m_grid
->CellToRect( row
, col
);
2205 m_grid
->GetGridWindow()->GetClientSize( &cw
, &ch
);
2207 // if cell width is smaller than grid client area, cell is wholly visible
2208 bool wholeCellVisible
= (rect
.GetWidth() < cw
);
2210 switch ( event
.GetKeyCode() )
2215 case WXK_NUMPAD_ENTER
:
2220 if ( wholeCellVisible
)
2222 // no special processing needed...
2227 // do special processing for partly visible cell...
2229 // get the widths of all cells previous to this one
2231 for ( int i
= 0; i
< col
; i
++ )
2233 colXPos
+= m_grid
->GetColSize(i
);
2236 int xUnit
= 1, yUnit
= 1;
2237 m_grid
->GetScrollPixelsPerUnit(&xUnit
, &yUnit
);
2240 m_grid
->Scroll(colXPos
/ xUnit
- 1, m_grid
->GetScrollPos(wxVERTICAL
));
2244 m_grid
->Scroll(colXPos
/ xUnit
, m_grid
->GetScrollPos(wxVERTICAL
));
2252 if ( wholeCellVisible
)
2254 // no special processing needed...
2259 // do special processing for partly visible cell...
2262 wxString value
= m_grid
->GetCellValue(row
, col
);
2263 if ( wxEmptyString
!= value
)
2265 // get width of cell CONTENTS (text)
2267 wxFont font
= m_grid
->GetCellFont(row
, col
);
2268 m_grid
->GetTextExtent(value
, &textWidth
, &y
, NULL
, NULL
, &font
);
2270 // try to RIGHT align the text by scrolling
2271 int client_right
= m_grid
->GetGridWindow()->GetClientSize().GetWidth();
2273 // (m_grid->GetScrollLineX()*2) is a factor for not scrolling to far,
2274 // otherwise the last part of the cell content might be hidden below the scroll bar
2275 // FIXME: maybe there is a more suitable correction?
2276 textWidth
-= (client_right
- (m_grid
->GetScrollLineX() * 2));
2277 if ( textWidth
< 0 )
2283 // get the widths of all cells previous to this one
2285 for ( int i
= 0; i
< col
; i
++ )
2287 colXPos
+= m_grid
->GetColSize(i
);
2290 // and add the (modified) text width of the cell contents
2291 // as we'd like to see the last part of the cell contents
2292 colXPos
+= textWidth
;
2294 int xUnit
= 1, yUnit
= 1;
2295 m_grid
->GetScrollPixelsPerUnit(&xUnit
, &yUnit
);
2296 m_grid
->Scroll(colXPos
/ xUnit
- 1, m_grid
->GetScrollPos(wxVERTICAL
));
2307 // ----------------------------------------------------------------------------
2308 // wxGridCellWorker is an (almost) empty common base class for
2309 // wxGridCellRenderer and wxGridCellEditor managing ref counting
2310 // ----------------------------------------------------------------------------
2312 void wxGridCellWorker::SetParameters(const wxString
& WXUNUSED(params
))
2317 wxGridCellWorker::~wxGridCellWorker()
2321 // ============================================================================
2323 // ============================================================================
2325 // ----------------------------------------------------------------------------
2326 // wxGridCellRenderer
2327 // ----------------------------------------------------------------------------
2329 void wxGridCellRenderer::Draw(wxGrid
& grid
,
2330 wxGridCellAttr
& attr
,
2333 int WXUNUSED(row
), int WXUNUSED(col
),
2336 dc
.SetBackgroundMode( wxBRUSHSTYLE_SOLID
);
2339 if ( grid
.IsEnabled() )
2343 if ( grid
.HasFocus() )
2344 clr
= grid
.GetSelectionBackground();
2346 clr
= wxSystemSettings::GetColour(wxSYS_COLOUR_BTNSHADOW
);
2350 clr
= attr
.GetBackgroundColour();
2353 else // grey out fields if the grid is disabled
2355 clr
= wxSystemSettings::GetColour(wxSYS_COLOUR_BTNFACE
);
2359 dc
.SetPen( *wxTRANSPARENT_PEN
);
2360 dc
.DrawRectangle(rect
);
2363 // ----------------------------------------------------------------------------
2364 // wxGridCellStringRenderer
2365 // ----------------------------------------------------------------------------
2367 void wxGridCellStringRenderer::SetTextColoursAndFont(const wxGrid
& grid
,
2368 const wxGridCellAttr
& attr
,
2372 dc
.SetBackgroundMode( wxBRUSHSTYLE_TRANSPARENT
);
2374 // TODO some special colours for attr.IsReadOnly() case?
2376 // different coloured text when the grid is disabled
2377 if ( grid
.IsEnabled() )
2382 if ( grid
.HasFocus() )
2383 clr
= grid
.GetSelectionBackground();
2385 clr
= wxSystemSettings::GetColour(wxSYS_COLOUR_BTNSHADOW
);
2386 dc
.SetTextBackground( clr
);
2387 dc
.SetTextForeground( grid
.GetSelectionForeground() );
2391 dc
.SetTextBackground( attr
.GetBackgroundColour() );
2392 dc
.SetTextForeground( attr
.GetTextColour() );
2397 dc
.SetTextBackground(wxSystemSettings::GetColour(wxSYS_COLOUR_BTNFACE
));
2398 dc
.SetTextForeground(wxSystemSettings::GetColour(wxSYS_COLOUR_GRAYTEXT
));
2401 dc
.SetFont( attr
.GetFont() );
2404 wxSize
wxGridCellStringRenderer::DoGetBestSize(const wxGridCellAttr
& attr
,
2406 const wxString
& text
)
2408 wxCoord x
= 0, y
= 0, max_x
= 0;
2409 dc
.SetFont(attr
.GetFont());
2410 wxStringTokenizer
tk(text
, _T('\n'));
2411 while ( tk
.HasMoreTokens() )
2413 dc
.GetTextExtent(tk
.GetNextToken(), &x
, &y
);
2414 max_x
= wxMax(max_x
, x
);
2417 y
*= 1 + text
.Freq(wxT('\n')); // multiply by the number of lines.
2419 return wxSize(max_x
, y
);
2422 wxSize
wxGridCellStringRenderer::GetBestSize(wxGrid
& grid
,
2423 wxGridCellAttr
& attr
,
2427 return DoGetBestSize(attr
, dc
, grid
.GetCellValue(row
, col
));
2430 void wxGridCellStringRenderer::Draw(wxGrid
& grid
,
2431 wxGridCellAttr
& attr
,
2433 const wxRect
& rectCell
,
2437 wxRect rect
= rectCell
;
2440 // erase only this cells background, overflow cells should have been erased
2441 wxGridCellRenderer::Draw(grid
, attr
, dc
, rectCell
, row
, col
, isSelected
);
2444 attr
.GetAlignment(&hAlign
, &vAlign
);
2446 int overflowCols
= 0;
2448 if (attr
.GetOverflow())
2450 int cols
= grid
.GetNumberCols();
2451 int best_width
= GetBestSize(grid
,attr
,dc
,row
,col
).GetWidth();
2452 int cell_rows
, cell_cols
;
2453 attr
.GetSize( &cell_rows
, &cell_cols
); // shouldn't get here if <= 0
2454 if ((best_width
> rectCell
.width
) && (col
< cols
) && grid
.GetTable())
2456 int i
, c_cols
, c_rows
;
2457 for (i
= col
+cell_cols
; i
< cols
; i
++)
2459 bool is_empty
= true;
2460 for (int j
=row
; j
< row
+ cell_rows
; j
++)
2462 // check w/ anchor cell for multicell block
2463 grid
.GetCellSize(j
, i
, &c_rows
, &c_cols
);
2466 if (!grid
.GetTable()->IsEmptyCell(j
+ c_rows
, i
))
2475 rect
.width
+= grid
.GetColSize(i
);
2483 if (rect
.width
>= best_width
)
2487 overflowCols
= i
- col
- cell_cols
+ 1;
2488 if (overflowCols
>= cols
)
2489 overflowCols
= cols
- 1;
2492 if (overflowCols
> 0) // redraw overflow cells w/ proper hilight
2494 hAlign
= wxALIGN_LEFT
; // if oveflowed then it's left aligned
2496 clip
.x
+= rectCell
.width
;
2497 // draw each overflow cell individually
2498 int col_end
= col
+ cell_cols
+ overflowCols
;
2499 if (col_end
>= grid
.GetNumberCols())
2500 col_end
= grid
.GetNumberCols() - 1;
2501 for (int i
= col
+ cell_cols
; i
<= col_end
; i
++)
2503 clip
.width
= grid
.GetColSize(i
) - 1;
2504 dc
.DestroyClippingRegion();
2505 dc
.SetClippingRegion(clip
);
2507 SetTextColoursAndFont(grid
, attr
, dc
,
2508 grid
.IsInSelection(row
,i
));
2510 grid
.DrawTextRectangle(dc
, grid
.GetCellValue(row
, col
),
2511 rect
, hAlign
, vAlign
);
2512 clip
.x
+= grid
.GetColSize(i
) - 1;
2518 dc
.DestroyClippingRegion();
2522 // now we only have to draw the text
2523 SetTextColoursAndFont(grid
, attr
, dc
, isSelected
);
2525 grid
.DrawTextRectangle(dc
, grid
.GetCellValue(row
, col
),
2526 rect
, hAlign
, vAlign
);
2529 // ----------------------------------------------------------------------------
2530 // wxGridCellNumberRenderer
2531 // ----------------------------------------------------------------------------
2533 wxString
wxGridCellNumberRenderer::GetString(const wxGrid
& grid
, int row
, int col
)
2535 wxGridTableBase
*table
= grid
.GetTable();
2537 if ( table
->CanGetValueAs(row
, col
, wxGRID_VALUE_NUMBER
) )
2539 text
.Printf(_T("%ld"), table
->GetValueAsLong(row
, col
));
2543 text
= table
->GetValue(row
, col
);
2549 void wxGridCellNumberRenderer::Draw(wxGrid
& grid
,
2550 wxGridCellAttr
& attr
,
2552 const wxRect
& rectCell
,
2556 wxGridCellRenderer::Draw(grid
, attr
, dc
, rectCell
, row
, col
, isSelected
);
2558 SetTextColoursAndFont(grid
, attr
, dc
, isSelected
);
2560 // draw the text right aligned by default
2562 attr
.GetAlignment(&hAlign
, &vAlign
);
2563 hAlign
= wxALIGN_RIGHT
;
2565 wxRect rect
= rectCell
;
2568 grid
.DrawTextRectangle(dc
, GetString(grid
, row
, col
), rect
, hAlign
, vAlign
);
2571 wxSize
wxGridCellNumberRenderer::GetBestSize(wxGrid
& grid
,
2572 wxGridCellAttr
& attr
,
2576 return DoGetBestSize(attr
, dc
, GetString(grid
, row
, col
));
2579 // ----------------------------------------------------------------------------
2580 // wxGridCellFloatRenderer
2581 // ----------------------------------------------------------------------------
2583 wxGridCellFloatRenderer::wxGridCellFloatRenderer(int width
, int precision
)
2586 SetPrecision(precision
);
2589 wxGridCellRenderer
*wxGridCellFloatRenderer::Clone() const
2591 wxGridCellFloatRenderer
*renderer
= new wxGridCellFloatRenderer
;
2592 renderer
->m_width
= m_width
;
2593 renderer
->m_precision
= m_precision
;
2594 renderer
->m_format
= m_format
;
2599 wxString
wxGridCellFloatRenderer::GetString(const wxGrid
& grid
, int row
, int col
)
2601 wxGridTableBase
*table
= grid
.GetTable();
2606 if ( table
->CanGetValueAs(row
, col
, wxGRID_VALUE_FLOAT
) )
2608 val
= table
->GetValueAsDouble(row
, col
);
2613 text
= table
->GetValue(row
, col
);
2614 hasDouble
= text
.ToDouble(&val
);
2621 if ( m_width
== -1 )
2623 if ( m_precision
== -1 )
2625 // default width/precision
2626 m_format
= _T("%f");
2630 m_format
.Printf(_T("%%.%df"), m_precision
);
2633 else if ( m_precision
== -1 )
2635 // default precision
2636 m_format
.Printf(_T("%%%d.f"), m_width
);
2640 m_format
.Printf(_T("%%%d.%df"), m_width
, m_precision
);
2644 text
.Printf(m_format
, val
);
2647 //else: text already contains the string
2652 void wxGridCellFloatRenderer::Draw(wxGrid
& grid
,
2653 wxGridCellAttr
& attr
,
2655 const wxRect
& rectCell
,
2659 wxGridCellRenderer::Draw(grid
, attr
, dc
, rectCell
, row
, col
, isSelected
);
2661 SetTextColoursAndFont(grid
, attr
, dc
, isSelected
);
2663 // draw the text right aligned by default
2665 attr
.GetAlignment(&hAlign
, &vAlign
);
2666 hAlign
= wxALIGN_RIGHT
;
2668 wxRect rect
= rectCell
;
2671 grid
.DrawTextRectangle(dc
, GetString(grid
, row
, col
), rect
, hAlign
, vAlign
);
2674 wxSize
wxGridCellFloatRenderer::GetBestSize(wxGrid
& grid
,
2675 wxGridCellAttr
& attr
,
2679 return DoGetBestSize(attr
, dc
, GetString(grid
, row
, col
));
2682 void wxGridCellFloatRenderer::SetParameters(const wxString
& params
)
2686 // reset to defaults
2692 wxString tmp
= params
.BeforeFirst(_T(','));
2696 if ( tmp
.ToLong(&width
) )
2698 SetWidth((int)width
);
2702 wxLogDebug(_T("Invalid wxGridCellFloatRenderer width parameter string '%s ignored"), params
.c_str());
2706 tmp
= params
.AfterFirst(_T(','));
2710 if ( tmp
.ToLong(&precision
) )
2712 SetPrecision((int)precision
);
2716 wxLogDebug(_T("Invalid wxGridCellFloatRenderer precision parameter string '%s ignored"), params
.c_str());
2722 // ----------------------------------------------------------------------------
2723 // wxGridCellBoolRenderer
2724 // ----------------------------------------------------------------------------
2726 wxSize
wxGridCellBoolRenderer::ms_sizeCheckMark
;
2728 // FIXME these checkbox size calculations are really ugly...
2730 // between checkmark and box
2731 static const wxCoord wxGRID_CHECKMARK_MARGIN
= 2;
2733 wxSize
wxGridCellBoolRenderer::GetBestSize(wxGrid
& grid
,
2734 wxGridCellAttr
& WXUNUSED(attr
),
2739 // compute it only once (no locks for MT safeness in GUI thread...)
2740 if ( !ms_sizeCheckMark
.x
)
2742 // get checkbox size
2743 wxCheckBox
*checkbox
= new wxCheckBox(&grid
, wxID_ANY
, wxEmptyString
);
2744 wxSize size
= checkbox
->GetBestSize();
2745 wxCoord checkSize
= size
.y
+ 2 * wxGRID_CHECKMARK_MARGIN
;
2747 #if defined(__WXMOTIF__)
2748 checkSize
-= size
.y
/ 2;
2753 ms_sizeCheckMark
.x
= ms_sizeCheckMark
.y
= checkSize
;
2756 return ms_sizeCheckMark
;
2759 void wxGridCellBoolRenderer::Draw(wxGrid
& grid
,
2760 wxGridCellAttr
& attr
,
2766 wxGridCellRenderer::Draw(grid
, attr
, dc
, rect
, row
, col
, isSelected
);
2768 // draw a check mark in the centre (ignoring alignment - TODO)
2769 wxSize size
= GetBestSize(grid
, attr
, dc
, row
, col
);
2771 // don't draw outside the cell
2772 wxCoord minSize
= wxMin(rect
.width
, rect
.height
);
2773 if ( size
.x
>= minSize
|| size
.y
>= minSize
)
2775 // and even leave (at least) 1 pixel margin
2776 size
.x
= size
.y
= minSize
;
2779 // draw a border around checkmark
2781 attr
.GetAlignment(&hAlign
, &vAlign
);
2784 if (hAlign
== wxALIGN_CENTRE
)
2786 rectBorder
.x
= rect
.x
+ rect
.width
/ 2 - size
.x
/ 2;
2787 rectBorder
.y
= rect
.y
+ rect
.height
/ 2 - size
.y
/ 2;
2788 rectBorder
.width
= size
.x
;
2789 rectBorder
.height
= size
.y
;
2791 else if (hAlign
== wxALIGN_LEFT
)
2793 rectBorder
.x
= rect
.x
+ 2;
2794 rectBorder
.y
= rect
.y
+ rect
.height
/ 2 - size
.y
/ 2;
2795 rectBorder
.width
= size
.x
;
2796 rectBorder
.height
= size
.y
;
2798 else if (hAlign
== wxALIGN_RIGHT
)
2800 rectBorder
.x
= rect
.x
+ rect
.width
- size
.x
- 2;
2801 rectBorder
.y
= rect
.y
+ rect
.height
/ 2 - size
.y
/ 2;
2802 rectBorder
.width
= size
.x
;
2803 rectBorder
.height
= size
.y
;
2807 if ( grid
.GetTable()->CanGetValueAs(row
, col
, wxGRID_VALUE_BOOL
) )
2809 value
= grid
.GetTable()->GetValueAsBool(row
, col
);
2813 wxString
cellval( grid
.GetTable()->GetValue(row
, col
) );
2814 value
= wxGridCellBoolEditor::IsTrueValue(cellval
);
2819 flags
|= wxCONTROL_CHECKED
;
2821 wxRendererNative::Get().DrawCheckBox( &grid
, dc
, rectBorder
, flags
);
2824 // ----------------------------------------------------------------------------
2826 // ----------------------------------------------------------------------------
2828 void wxGridCellAttr::Init(wxGridCellAttr
*attrDefault
)
2832 m_isReadOnly
= Unset
;
2837 m_attrkind
= wxGridCellAttr::Cell
;
2839 m_sizeRows
= m_sizeCols
= 1;
2840 m_overflow
= UnsetOverflow
;
2842 SetDefAttr(attrDefault
);
2845 wxGridCellAttr
*wxGridCellAttr::Clone() const
2847 wxGridCellAttr
*attr
= new wxGridCellAttr(m_defGridAttr
);
2849 if ( HasTextColour() )
2850 attr
->SetTextColour(GetTextColour());
2851 if ( HasBackgroundColour() )
2852 attr
->SetBackgroundColour(GetBackgroundColour());
2854 attr
->SetFont(GetFont());
2855 if ( HasAlignment() )
2856 attr
->SetAlignment(m_hAlign
, m_vAlign
);
2858 attr
->SetSize( m_sizeRows
, m_sizeCols
);
2862 attr
->SetRenderer(m_renderer
);
2863 m_renderer
->IncRef();
2867 attr
->SetEditor(m_editor
);
2872 attr
->SetReadOnly();
2874 attr
->SetOverflow( m_overflow
== Overflow
);
2875 attr
->SetKind( m_attrkind
);
2880 void wxGridCellAttr::MergeWith(wxGridCellAttr
*mergefrom
)
2882 if ( !HasTextColour() && mergefrom
->HasTextColour() )
2883 SetTextColour(mergefrom
->GetTextColour());
2884 if ( !HasBackgroundColour() && mergefrom
->HasBackgroundColour() )
2885 SetBackgroundColour(mergefrom
->GetBackgroundColour());
2886 if ( !HasFont() && mergefrom
->HasFont() )
2887 SetFont(mergefrom
->GetFont());
2888 if ( !HasAlignment() && mergefrom
->HasAlignment() )
2891 mergefrom
->GetAlignment( &hAlign
, &vAlign
);
2892 SetAlignment(hAlign
, vAlign
);
2894 if ( !HasSize() && mergefrom
->HasSize() )
2895 mergefrom
->GetSize( &m_sizeRows
, &m_sizeCols
);
2897 // Directly access member functions as GetRender/Editor don't just return
2898 // m_renderer/m_editor
2900 // Maybe add support for merge of Render and Editor?
2901 if (!HasRenderer() && mergefrom
->HasRenderer() )
2903 m_renderer
= mergefrom
->m_renderer
;
2904 m_renderer
->IncRef();
2906 if ( !HasEditor() && mergefrom
->HasEditor() )
2908 m_editor
= mergefrom
->m_editor
;
2911 if ( !HasReadWriteMode() && mergefrom
->HasReadWriteMode() )
2912 SetReadOnly(mergefrom
->IsReadOnly());
2914 if (!HasOverflowMode() && mergefrom
->HasOverflowMode() )
2915 SetOverflow(mergefrom
->GetOverflow());
2917 SetDefAttr(mergefrom
->m_defGridAttr
);
2920 void wxGridCellAttr::SetSize(int num_rows
, int num_cols
)
2922 // The size of a cell is normally 1,1
2924 // If this cell is larger (2,2) then this is the top left cell
2925 // the other cells that will be covered (lower right cells) must be
2926 // set to negative or zero values such that
2927 // row + num_rows of the covered cell points to the larger cell (this cell)
2928 // same goes for the col + num_cols.
2930 // Size of 0,0 is NOT valid, neither is <=0 and any positive value
2932 wxASSERT_MSG( (!((num_rows
> 0) && (num_cols
<= 0)) ||
2933 !((num_rows
<= 0) && (num_cols
> 0)) ||
2934 !((num_rows
== 0) && (num_cols
== 0))),
2935 wxT("wxGridCellAttr::SetSize only takes two postive values or negative/zero values"));
2937 m_sizeRows
= num_rows
;
2938 m_sizeCols
= num_cols
;
2941 const wxColour
& wxGridCellAttr::GetTextColour() const
2943 if (HasTextColour())
2947 else if (m_defGridAttr
&& m_defGridAttr
!= this)
2949 return m_defGridAttr
->GetTextColour();
2953 wxFAIL_MSG(wxT("Missing default cell attribute"));
2954 return wxNullColour
;
2958 const wxColour
& wxGridCellAttr::GetBackgroundColour() const
2960 if (HasBackgroundColour())
2964 else if (m_defGridAttr
&& m_defGridAttr
!= this)
2966 return m_defGridAttr
->GetBackgroundColour();
2970 wxFAIL_MSG(wxT("Missing default cell attribute"));
2971 return wxNullColour
;
2975 const wxFont
& wxGridCellAttr::GetFont() const
2981 else if (m_defGridAttr
&& m_defGridAttr
!= this)
2983 return m_defGridAttr
->GetFont();
2987 wxFAIL_MSG(wxT("Missing default cell attribute"));
2992 void wxGridCellAttr::GetAlignment(int *hAlign
, int *vAlign
) const
3001 else if (m_defGridAttr
&& m_defGridAttr
!= this)
3003 m_defGridAttr
->GetAlignment(hAlign
, vAlign
);
3007 wxFAIL_MSG(wxT("Missing default cell attribute"));
3011 void wxGridCellAttr::GetSize( int *num_rows
, int *num_cols
) const
3014 *num_rows
= m_sizeRows
;
3016 *num_cols
= m_sizeCols
;
3019 // GetRenderer and GetEditor use a slightly different decision path about
3020 // which attribute to use. If a non-default attr object has one then it is
3021 // used, otherwise the default editor or renderer is fetched from the grid and
3022 // used. It should be the default for the data type of the cell. If it is
3023 // NULL (because the table has a type that the grid does not have in its
3024 // registry), then the grid's default editor or renderer is used.
3026 wxGridCellRenderer
* wxGridCellAttr::GetRenderer(const wxGrid
* grid
, int row
, int col
) const
3028 wxGridCellRenderer
*renderer
= NULL
;
3030 if ( m_renderer
&& this != m_defGridAttr
)
3032 // use the cells renderer if it has one
3033 renderer
= m_renderer
;
3036 else // no non-default cell renderer
3038 // get default renderer for the data type
3041 // GetDefaultRendererForCell() will do IncRef() for us
3042 renderer
= grid
->GetDefaultRendererForCell(row
, col
);
3045 if ( renderer
== NULL
)
3047 if ( (m_defGridAttr
!= NULL
) && (m_defGridAttr
!= this) )
3049 // if we still don't have one then use the grid default
3050 // (no need for IncRef() here neither)
3051 renderer
= m_defGridAttr
->GetRenderer(NULL
, 0, 0);
3053 else // default grid attr
3055 // use m_renderer which we had decided not to use initially
3056 renderer
= m_renderer
;
3063 // we're supposed to always find something
3064 wxASSERT_MSG(renderer
, wxT("Missing default cell renderer"));
3069 // same as above, except for s/renderer/editor/g
3070 wxGridCellEditor
* wxGridCellAttr::GetEditor(const wxGrid
* grid
, int row
, int col
) const
3072 wxGridCellEditor
*editor
= NULL
;
3074 if ( m_editor
&& this != m_defGridAttr
)
3076 // use the cells editor if it has one
3080 else // no non default cell editor
3082 // get default editor for the data type
3085 // GetDefaultEditorForCell() will do IncRef() for us
3086 editor
= grid
->GetDefaultEditorForCell(row
, col
);
3089 if ( editor
== NULL
)
3091 if ( (m_defGridAttr
!= NULL
) && (m_defGridAttr
!= this) )
3093 // if we still don't have one then use the grid default
3094 // (no need for IncRef() here neither)
3095 editor
= m_defGridAttr
->GetEditor(NULL
, 0, 0);
3097 else // default grid attr
3099 // use m_editor which we had decided not to use initially
3107 // we're supposed to always find something
3108 wxASSERT_MSG(editor
, wxT("Missing default cell editor"));
3113 // ----------------------------------------------------------------------------
3114 // wxGridCellAttrData
3115 // ----------------------------------------------------------------------------
3117 void wxGridCellAttrData::SetAttr(wxGridCellAttr
*attr
, int row
, int col
)
3119 // Note: contrary to wxGridRowOrColAttrData::SetAttr, we must not
3120 // touch attribute's reference counting explicitly, since this
3121 // is managed by class wxGridCellWithAttr
3122 int n
= FindIndex(row
, col
);
3123 if ( n
== wxNOT_FOUND
)
3127 // add the attribute
3128 m_attrs
.Add(new wxGridCellWithAttr(row
, col
, attr
));
3130 //else: nothing to do
3132 else // we already have an attribute for this cell
3136 // change the attribute
3137 m_attrs
[(size_t)n
].ChangeAttr(attr
);
3141 // remove this attribute
3142 m_attrs
.RemoveAt((size_t)n
);
3147 wxGridCellAttr
*wxGridCellAttrData::GetAttr(int row
, int col
) const
3149 wxGridCellAttr
*attr
= NULL
;
3151 int n
= FindIndex(row
, col
);
3152 if ( n
!= wxNOT_FOUND
)
3154 attr
= m_attrs
[(size_t)n
].attr
;
3161 void wxGridCellAttrData::UpdateAttrRows( size_t pos
, int numRows
)
3163 size_t count
= m_attrs
.GetCount();
3164 for ( size_t n
= 0; n
< count
; n
++ )
3166 wxGridCellCoords
& coords
= m_attrs
[n
].coords
;
3167 wxCoord row
= coords
.GetRow();
3168 if ((size_t)row
>= pos
)
3172 // If rows inserted, include row counter where necessary
3173 coords
.SetRow(row
+ numRows
);
3175 else if (numRows
< 0)
3177 // If rows deleted ...
3178 if ((size_t)row
>= pos
- numRows
)
3180 // ...either decrement row counter (if row still exists)...
3181 coords
.SetRow(row
+ numRows
);
3185 // ...or remove the attribute
3186 m_attrs
.RemoveAt(n
);
3195 void wxGridCellAttrData::UpdateAttrCols( size_t pos
, int numCols
)
3197 size_t count
= m_attrs
.GetCount();
3198 for ( size_t n
= 0; n
< count
; n
++ )
3200 wxGridCellCoords
& coords
= m_attrs
[n
].coords
;
3201 wxCoord col
= coords
.GetCol();
3202 if ( (size_t)col
>= pos
)
3206 // If rows inserted, include row counter where necessary
3207 coords
.SetCol(col
+ numCols
);
3209 else if (numCols
< 0)
3211 // If rows deleted ...
3212 if ((size_t)col
>= pos
- numCols
)
3214 // ...either decrement row counter (if row still exists)...
3215 coords
.SetCol(col
+ numCols
);
3219 // ...or remove the attribute
3220 m_attrs
.RemoveAt(n
);
3229 int wxGridCellAttrData::FindIndex(int row
, int col
) const
3231 size_t count
= m_attrs
.GetCount();
3232 for ( size_t n
= 0; n
< count
; n
++ )
3234 const wxGridCellCoords
& coords
= m_attrs
[n
].coords
;
3235 if ( (coords
.GetRow() == row
) && (coords
.GetCol() == col
) )
3244 // ----------------------------------------------------------------------------
3245 // wxGridRowOrColAttrData
3246 // ----------------------------------------------------------------------------
3248 wxGridRowOrColAttrData::~wxGridRowOrColAttrData()
3250 size_t count
= m_attrs
.GetCount();
3251 for ( size_t n
= 0; n
< count
; n
++ )
3253 m_attrs
[n
]->DecRef();
3257 wxGridCellAttr
*wxGridRowOrColAttrData::GetAttr(int rowOrCol
) const
3259 wxGridCellAttr
*attr
= NULL
;
3261 int n
= m_rowsOrCols
.Index(rowOrCol
);
3262 if ( n
!= wxNOT_FOUND
)
3264 attr
= m_attrs
[(size_t)n
];
3271 void wxGridRowOrColAttrData::SetAttr(wxGridCellAttr
*attr
, int rowOrCol
)
3273 int i
= m_rowsOrCols
.Index(rowOrCol
);
3274 if ( i
== wxNOT_FOUND
)
3278 // add the attribute - no need to do anything to reference count
3279 // since we take ownership of the attribute.
3280 m_rowsOrCols
.Add(rowOrCol
);
3283 // nothing to remove
3287 size_t n
= (size_t)i
;
3288 if ( m_attrs
[n
] == attr
)
3293 // change the attribute, handling reference count manually,
3294 // taking ownership of the new attribute.
3295 m_attrs
[n
]->DecRef();
3300 // remove this attribute, handling reference count manually
3301 m_attrs
[n
]->DecRef();
3302 m_rowsOrCols
.RemoveAt(n
);
3303 m_attrs
.RemoveAt(n
);
3308 void wxGridRowOrColAttrData::UpdateAttrRowsOrCols( size_t pos
, int numRowsOrCols
)
3310 size_t count
= m_attrs
.GetCount();
3311 for ( size_t n
= 0; n
< count
; n
++ )
3313 int & rowOrCol
= m_rowsOrCols
[n
];
3314 if ( (size_t)rowOrCol
>= pos
)
3316 if ( numRowsOrCols
> 0 )
3318 // If rows inserted, include row counter where necessary
3319 rowOrCol
+= numRowsOrCols
;
3321 else if ( numRowsOrCols
< 0)
3323 // If rows deleted, either decrement row counter (if row still exists)
3324 if ((size_t)rowOrCol
>= pos
- numRowsOrCols
)
3325 rowOrCol
+= numRowsOrCols
;
3328 m_rowsOrCols
.RemoveAt(n
);
3329 m_attrs
[n
]->DecRef();
3330 m_attrs
.RemoveAt(n
);
3339 // ----------------------------------------------------------------------------
3340 // wxGridCellAttrProvider
3341 // ----------------------------------------------------------------------------
3343 wxGridCellAttrProvider::wxGridCellAttrProvider()
3348 wxGridCellAttrProvider::~wxGridCellAttrProvider()
3353 void wxGridCellAttrProvider::InitData()
3355 m_data
= new wxGridCellAttrProviderData
;
3358 wxGridCellAttr
*wxGridCellAttrProvider::GetAttr(int row
, int col
,
3359 wxGridCellAttr::wxAttrKind kind
) const
3361 wxGridCellAttr
*attr
= NULL
;
3366 case (wxGridCellAttr::Any
):
3367 // Get cached merge attributes.
3368 // Currently not used as no cache implemented as not mutable
3369 // attr = m_data->m_mergeAttr.GetAttr(row, col);
3372 // Basically implement old version.
3373 // Also check merge cache, so we don't have to re-merge every time..
3374 wxGridCellAttr
*attrcell
= m_data
->m_cellAttrs
.GetAttr(row
, col
);
3375 wxGridCellAttr
*attrrow
= m_data
->m_rowAttrs
.GetAttr(row
);
3376 wxGridCellAttr
*attrcol
= m_data
->m_colAttrs
.GetAttr(col
);
3378 if ((attrcell
!= attrrow
) && (attrrow
!= attrcol
) && (attrcell
!= attrcol
))
3380 // Two or more are non NULL
3381 attr
= new wxGridCellAttr
;
3382 attr
->SetKind(wxGridCellAttr::Merged
);
3384 // Order is important..
3387 attr
->MergeWith(attrcell
);
3392 attr
->MergeWith(attrcol
);
3397 attr
->MergeWith(attrrow
);
3401 // store merge attr if cache implemented
3403 //m_data->m_mergeAttr.SetAttr(attr, row, col);
3407 // one or none is non null return it or null.
3426 case (wxGridCellAttr::Cell
):
3427 attr
= m_data
->m_cellAttrs
.GetAttr(row
, col
);
3430 case (wxGridCellAttr::Col
):
3431 attr
= m_data
->m_colAttrs
.GetAttr(col
);
3434 case (wxGridCellAttr::Row
):
3435 attr
= m_data
->m_rowAttrs
.GetAttr(row
);
3440 // (wxGridCellAttr::Default):
3441 // (wxGridCellAttr::Merged):
3449 void wxGridCellAttrProvider::SetAttr(wxGridCellAttr
*attr
,
3455 m_data
->m_cellAttrs
.SetAttr(attr
, row
, col
);
3458 void wxGridCellAttrProvider::SetRowAttr(wxGridCellAttr
*attr
, int row
)
3463 m_data
->m_rowAttrs
.SetAttr(attr
, row
);
3466 void wxGridCellAttrProvider::SetColAttr(wxGridCellAttr
*attr
, int col
)
3471 m_data
->m_colAttrs
.SetAttr(attr
, col
);
3474 void wxGridCellAttrProvider::UpdateAttrRows( size_t pos
, int numRows
)
3478 m_data
->m_cellAttrs
.UpdateAttrRows( pos
, numRows
);
3480 m_data
->m_rowAttrs
.UpdateAttrRowsOrCols( pos
, numRows
);
3484 void wxGridCellAttrProvider::UpdateAttrCols( size_t pos
, int numCols
)
3488 m_data
->m_cellAttrs
.UpdateAttrCols( pos
, numCols
);
3490 m_data
->m_colAttrs
.UpdateAttrRowsOrCols( pos
, numCols
);
3494 // ----------------------------------------------------------------------------
3495 // wxGridTypeRegistry
3496 // ----------------------------------------------------------------------------
3498 wxGridTypeRegistry::~wxGridTypeRegistry()
3500 size_t count
= m_typeinfo
.GetCount();
3501 for ( size_t i
= 0; i
< count
; i
++ )
3502 delete m_typeinfo
[i
];
3505 void wxGridTypeRegistry::RegisterDataType(const wxString
& typeName
,
3506 wxGridCellRenderer
* renderer
,
3507 wxGridCellEditor
* editor
)
3509 wxGridDataTypeInfo
* info
= new wxGridDataTypeInfo(typeName
, renderer
, editor
);
3511 // is it already registered?
3512 int loc
= FindRegisteredDataType(typeName
);
3513 if ( loc
!= wxNOT_FOUND
)
3515 delete m_typeinfo
[loc
];
3516 m_typeinfo
[loc
] = info
;
3520 m_typeinfo
.Add(info
);
3524 int wxGridTypeRegistry::FindRegisteredDataType(const wxString
& typeName
)
3526 size_t count
= m_typeinfo
.GetCount();
3527 for ( size_t i
= 0; i
< count
; i
++ )
3529 if ( typeName
== m_typeinfo
[i
]->m_typeName
)
3538 int wxGridTypeRegistry::FindDataType(const wxString
& typeName
)
3540 int index
= FindRegisteredDataType(typeName
);
3541 if ( index
== wxNOT_FOUND
)
3543 // check whether this is one of the standard ones, in which case
3544 // register it "on the fly"
3546 if ( typeName
== wxGRID_VALUE_STRING
)
3548 RegisterDataType(wxGRID_VALUE_STRING
,
3549 new wxGridCellStringRenderer
,
3550 new wxGridCellTextEditor
);
3553 #endif // wxUSE_TEXTCTRL
3555 if ( typeName
== wxGRID_VALUE_BOOL
)
3557 RegisterDataType(wxGRID_VALUE_BOOL
,
3558 new wxGridCellBoolRenderer
,
3559 new wxGridCellBoolEditor
);
3562 #endif // wxUSE_CHECKBOX
3564 if ( typeName
== wxGRID_VALUE_NUMBER
)
3566 RegisterDataType(wxGRID_VALUE_NUMBER
,
3567 new wxGridCellNumberRenderer
,
3568 new wxGridCellNumberEditor
);
3570 else if ( typeName
== wxGRID_VALUE_FLOAT
)
3572 RegisterDataType(wxGRID_VALUE_FLOAT
,
3573 new wxGridCellFloatRenderer
,
3574 new wxGridCellFloatEditor
);
3577 #endif // wxUSE_TEXTCTRL
3579 if ( typeName
== wxGRID_VALUE_CHOICE
)
3581 RegisterDataType(wxGRID_VALUE_CHOICE
,
3582 new wxGridCellStringRenderer
,
3583 new wxGridCellChoiceEditor
);
3586 #endif // wxUSE_COMBOBOX
3591 // we get here only if just added the entry for this type, so return
3593 index
= m_typeinfo
.GetCount() - 1;
3599 int wxGridTypeRegistry::FindOrCloneDataType(const wxString
& typeName
)
3601 int index
= FindDataType(typeName
);
3602 if ( index
== wxNOT_FOUND
)
3604 // the first part of the typename is the "real" type, anything after ':'
3605 // are the parameters for the renderer
3606 index
= FindDataType(typeName
.BeforeFirst(_T(':')));
3607 if ( index
== wxNOT_FOUND
)
3612 wxGridCellRenderer
*renderer
= GetRenderer(index
);
3613 wxGridCellRenderer
*rendererOld
= renderer
;
3614 renderer
= renderer
->Clone();
3615 rendererOld
->DecRef();
3617 wxGridCellEditor
*editor
= GetEditor(index
);
3618 wxGridCellEditor
*editorOld
= editor
;
3619 editor
= editor
->Clone();
3620 editorOld
->DecRef();
3622 // do it even if there are no parameters to reset them to defaults
3623 wxString params
= typeName
.AfterFirst(_T(':'));
3624 renderer
->SetParameters(params
);
3625 editor
->SetParameters(params
);
3627 // register the new typename
3628 RegisterDataType(typeName
, renderer
, editor
);
3630 // we just registered it, it's the last one
3631 index
= m_typeinfo
.GetCount() - 1;
3637 wxGridCellRenderer
* wxGridTypeRegistry::GetRenderer(int index
)
3639 wxGridCellRenderer
* renderer
= m_typeinfo
[index
]->m_renderer
;
3646 wxGridCellEditor
* wxGridTypeRegistry::GetEditor(int index
)
3648 wxGridCellEditor
* editor
= m_typeinfo
[index
]->m_editor
;
3655 // ----------------------------------------------------------------------------
3657 // ----------------------------------------------------------------------------
3659 IMPLEMENT_ABSTRACT_CLASS( wxGridTableBase
, wxObject
)
3661 wxGridTableBase::wxGridTableBase()
3664 m_attrProvider
= NULL
;
3667 wxGridTableBase::~wxGridTableBase()
3669 delete m_attrProvider
;
3672 void wxGridTableBase::SetAttrProvider(wxGridCellAttrProvider
*attrProvider
)
3674 delete m_attrProvider
;
3675 m_attrProvider
= attrProvider
;
3678 bool wxGridTableBase::CanHaveAttributes()
3680 if ( ! GetAttrProvider() )
3682 // use the default attr provider by default
3683 SetAttrProvider(new wxGridCellAttrProvider
);
3689 wxGridCellAttr
*wxGridTableBase::GetAttr(int row
, int col
, wxGridCellAttr::wxAttrKind kind
)
3691 if ( m_attrProvider
)
3692 return m_attrProvider
->GetAttr(row
, col
, kind
);
3697 void wxGridTableBase::SetAttr(wxGridCellAttr
* attr
, int row
, int col
)
3699 if ( m_attrProvider
)
3702 attr
->SetKind(wxGridCellAttr::Cell
);
3703 m_attrProvider
->SetAttr(attr
, row
, col
);
3707 // as we take ownership of the pointer and don't store it, we must
3713 void wxGridTableBase::SetRowAttr(wxGridCellAttr
*attr
, int row
)
3715 if ( m_attrProvider
)
3717 attr
->SetKind(wxGridCellAttr::Row
);
3718 m_attrProvider
->SetRowAttr(attr
, row
);
3722 // as we take ownership of the pointer and don't store it, we must
3728 void wxGridTableBase::SetColAttr(wxGridCellAttr
*attr
, int col
)
3730 if ( m_attrProvider
)
3732 attr
->SetKind(wxGridCellAttr::Col
);
3733 m_attrProvider
->SetColAttr(attr
, col
);
3737 // as we take ownership of the pointer and don't store it, we must
3743 bool wxGridTableBase::InsertRows( size_t WXUNUSED(pos
),
3744 size_t WXUNUSED(numRows
) )
3746 wxFAIL_MSG( wxT("Called grid table class function InsertRows\nbut your derived table class does not override this function") );
3751 bool wxGridTableBase::AppendRows( size_t WXUNUSED(numRows
) )
3753 wxFAIL_MSG( wxT("Called grid table class function AppendRows\nbut your derived table class does not override this function"));
3758 bool wxGridTableBase::DeleteRows( size_t WXUNUSED(pos
),
3759 size_t WXUNUSED(numRows
) )
3761 wxFAIL_MSG( wxT("Called grid table class function DeleteRows\nbut your derived table class does not override this function"));
3766 bool wxGridTableBase::InsertCols( size_t WXUNUSED(pos
),
3767 size_t WXUNUSED(numCols
) )
3769 wxFAIL_MSG( wxT("Called grid table class function InsertCols\nbut your derived table class does not override this function"));
3774 bool wxGridTableBase::AppendCols( size_t WXUNUSED(numCols
) )
3776 wxFAIL_MSG(wxT("Called grid table class function AppendCols\nbut your derived table class does not override this function"));
3781 bool wxGridTableBase::DeleteCols( size_t WXUNUSED(pos
),
3782 size_t WXUNUSED(numCols
) )
3784 wxFAIL_MSG( wxT("Called grid table class function DeleteCols\nbut your derived table class does not override this function"));
3789 wxString
wxGridTableBase::GetRowLabelValue( int row
)
3793 // RD: Starting the rows at zero confuses users,
3794 // no matter how much it makes sense to us geeks.
3800 wxString
wxGridTableBase::GetColLabelValue( int col
)
3802 // default col labels are:
3803 // cols 0 to 25 : A-Z
3804 // cols 26 to 675 : AA-ZZ
3809 for ( n
= 1; ; n
++ )
3811 s
+= (wxChar
) (_T('A') + (wxChar
)(col
% 26));
3817 // reverse the string...
3819 for ( i
= 0; i
< n
; i
++ )
3827 wxString
wxGridTableBase::GetTypeName( int WXUNUSED(row
), int WXUNUSED(col
) )
3829 return wxGRID_VALUE_STRING
;
3832 bool wxGridTableBase::CanGetValueAs( int WXUNUSED(row
), int WXUNUSED(col
),
3833 const wxString
& typeName
)
3835 return typeName
== wxGRID_VALUE_STRING
;
3838 bool wxGridTableBase::CanSetValueAs( int row
, int col
, const wxString
& typeName
)
3840 return CanGetValueAs(row
, col
, typeName
);
3843 long wxGridTableBase::GetValueAsLong( int WXUNUSED(row
), int WXUNUSED(col
) )
3848 double wxGridTableBase::GetValueAsDouble( int WXUNUSED(row
), int WXUNUSED(col
) )
3853 bool wxGridTableBase::GetValueAsBool( int WXUNUSED(row
), int WXUNUSED(col
) )
3858 void wxGridTableBase::SetValueAsLong( int WXUNUSED(row
), int WXUNUSED(col
),
3859 long WXUNUSED(value
) )
3863 void wxGridTableBase::SetValueAsDouble( int WXUNUSED(row
), int WXUNUSED(col
),
3864 double WXUNUSED(value
) )
3868 void wxGridTableBase::SetValueAsBool( int WXUNUSED(row
), int WXUNUSED(col
),
3869 bool WXUNUSED(value
) )
3873 void* wxGridTableBase::GetValueAsCustom( int WXUNUSED(row
), int WXUNUSED(col
),
3874 const wxString
& WXUNUSED(typeName
) )
3879 void wxGridTableBase::SetValueAsCustom( int WXUNUSED(row
), int WXUNUSED(col
),
3880 const wxString
& WXUNUSED(typeName
),
3881 void* WXUNUSED(value
) )
3885 //////////////////////////////////////////////////////////////////////
3887 // Message class for the grid table to send requests and notifications
3891 wxGridTableMessage::wxGridTableMessage()
3899 wxGridTableMessage::wxGridTableMessage( wxGridTableBase
*table
, int id
,
3900 int commandInt1
, int commandInt2
)
3904 m_comInt1
= commandInt1
;
3905 m_comInt2
= commandInt2
;
3908 //////////////////////////////////////////////////////////////////////
3910 // A basic grid table for string data. An object of this class will
3911 // created by wxGrid if you don't specify an alternative table class.
3914 WX_DEFINE_OBJARRAY(wxGridStringArray
)
3916 IMPLEMENT_DYNAMIC_CLASS( wxGridStringTable
, wxGridTableBase
)
3918 wxGridStringTable::wxGridStringTable()
3923 wxGridStringTable::wxGridStringTable( int numRows
, int numCols
)
3926 m_data
.Alloc( numRows
);
3929 sa
.Alloc( numCols
);
3930 sa
.Add( wxEmptyString
, numCols
);
3932 m_data
.Add( sa
, numRows
);
3935 wxGridStringTable::~wxGridStringTable()
3939 int wxGridStringTable::GetNumberRows()
3941 return m_data
.GetCount();
3944 int wxGridStringTable::GetNumberCols()
3946 if ( m_data
.GetCount() > 0 )
3947 return m_data
[0].GetCount();
3952 wxString
wxGridStringTable::GetValue( int row
, int col
)
3954 wxCHECK_MSG( (row
< GetNumberRows()) && (col
< GetNumberCols()),
3956 _T("invalid row or column index in wxGridStringTable") );
3958 return m_data
[row
][col
];
3961 void wxGridStringTable::SetValue( int row
, int col
, const wxString
& value
)
3963 wxCHECK_RET( (row
< GetNumberRows()) && (col
< GetNumberCols()),
3964 _T("invalid row or column index in wxGridStringTable") );
3966 m_data
[row
][col
] = value
;
3969 void wxGridStringTable::Clear()
3972 int numRows
, numCols
;
3974 numRows
= m_data
.GetCount();
3977 numCols
= m_data
[0].GetCount();
3979 for ( row
= 0; row
< numRows
; row
++ )
3981 for ( col
= 0; col
< numCols
; col
++ )
3983 m_data
[row
][col
] = wxEmptyString
;
3989 bool wxGridStringTable::InsertRows( size_t pos
, size_t numRows
)
3991 size_t curNumRows
= m_data
.GetCount();
3992 size_t curNumCols
= ( curNumRows
> 0 ? m_data
[0].GetCount() :
3993 ( GetView() ? GetView()->GetNumberCols() : 0 ) );
3995 if ( pos
>= curNumRows
)
3997 return AppendRows( numRows
);
4001 sa
.Alloc( curNumCols
);
4002 sa
.Add( wxEmptyString
, curNumCols
);
4003 m_data
.Insert( sa
, pos
, numRows
);
4007 wxGridTableMessage
msg( this,
4008 wxGRIDTABLE_NOTIFY_ROWS_INSERTED
,
4012 GetView()->ProcessTableMessage( msg
);
4018 bool wxGridStringTable::AppendRows( size_t numRows
)
4020 size_t curNumRows
= m_data
.GetCount();
4021 size_t curNumCols
= ( curNumRows
> 0
4022 ? m_data
[0].GetCount()
4023 : ( GetView() ? GetView()->GetNumberCols() : 0 ) );
4026 if ( curNumCols
> 0 )
4028 sa
.Alloc( curNumCols
);
4029 sa
.Add( wxEmptyString
, curNumCols
);
4032 m_data
.Add( sa
, numRows
);
4036 wxGridTableMessage
msg( this,
4037 wxGRIDTABLE_NOTIFY_ROWS_APPENDED
,
4040 GetView()->ProcessTableMessage( msg
);
4046 bool wxGridStringTable::DeleteRows( size_t pos
, size_t numRows
)
4048 size_t curNumRows
= m_data
.GetCount();
4050 if ( pos
>= curNumRows
)
4052 wxFAIL_MSG( wxString::Format
4054 wxT("Called wxGridStringTable::DeleteRows(pos=%lu, N=%lu)\nPos value is invalid for present table with %lu rows"),
4056 (unsigned long)numRows
,
4057 (unsigned long)curNumRows
4063 if ( numRows
> curNumRows
- pos
)
4065 numRows
= curNumRows
- pos
;
4068 if ( numRows
>= curNumRows
)
4074 m_data
.RemoveAt( pos
, numRows
);
4079 wxGridTableMessage
msg( this,
4080 wxGRIDTABLE_NOTIFY_ROWS_DELETED
,
4084 GetView()->ProcessTableMessage( msg
);
4090 bool wxGridStringTable::InsertCols( size_t pos
, size_t numCols
)
4094 size_t curNumRows
= m_data
.GetCount();
4095 size_t curNumCols
= ( curNumRows
> 0
4096 ? m_data
[0].GetCount()
4097 : ( GetView() ? GetView()->GetNumberCols() : 0 ) );
4099 if ( pos
>= curNumCols
)
4101 return AppendCols( numCols
);
4104 if ( !m_colLabels
.IsEmpty() )
4106 m_colLabels
.Insert( wxEmptyString
, pos
, numCols
);
4109 for ( i
= pos
; i
< pos
+ numCols
; i
++ )
4110 m_colLabels
[i
] = wxGridTableBase::GetColLabelValue( i
);
4113 for ( row
= 0; row
< curNumRows
; row
++ )
4115 for ( col
= pos
; col
< pos
+ numCols
; col
++ )
4117 m_data
[row
].Insert( wxEmptyString
, col
);
4123 wxGridTableMessage
msg( this,
4124 wxGRIDTABLE_NOTIFY_COLS_INSERTED
,
4128 GetView()->ProcessTableMessage( msg
);
4134 bool wxGridStringTable::AppendCols( size_t numCols
)
4138 size_t curNumRows
= m_data
.GetCount();
4140 for ( row
= 0; row
< curNumRows
; row
++ )
4142 m_data
[row
].Add( wxEmptyString
, numCols
);
4147 wxGridTableMessage
msg( this,
4148 wxGRIDTABLE_NOTIFY_COLS_APPENDED
,
4151 GetView()->ProcessTableMessage( msg
);
4157 bool wxGridStringTable::DeleteCols( size_t pos
, size_t numCols
)
4161 size_t curNumRows
= m_data
.GetCount();
4162 size_t curNumCols
= ( curNumRows
> 0 ? m_data
[0].GetCount() :
4163 ( GetView() ? GetView()->GetNumberCols() : 0 ) );
4165 if ( pos
>= curNumCols
)
4167 wxFAIL_MSG( wxString::Format
4169 wxT("Called wxGridStringTable::DeleteCols(pos=%lu, N=%lu)\nPos value is invalid for present table with %lu cols"),
4171 (unsigned long)numCols
,
4172 (unsigned long)curNumCols
4179 colID
= GetView()->GetColAt( pos
);
4183 if ( numCols
> curNumCols
- colID
)
4185 numCols
= curNumCols
- colID
;
4188 if ( !m_colLabels
.IsEmpty() )
4190 // m_colLabels stores just as many elements as it needs, e.g. if only
4191 // the label of the first column had been set it would have only one
4192 // element and not numCols, so account for it
4193 int nToRm
= m_colLabels
.size() - colID
;
4195 m_colLabels
.RemoveAt( colID
, nToRm
);
4198 for ( row
= 0; row
< curNumRows
; row
++ )
4200 if ( numCols
>= curNumCols
)
4202 m_data
[row
].Clear();
4206 m_data
[row
].RemoveAt( colID
, numCols
);
4212 wxGridTableMessage
msg( this,
4213 wxGRIDTABLE_NOTIFY_COLS_DELETED
,
4217 GetView()->ProcessTableMessage( msg
);
4223 wxString
wxGridStringTable::GetRowLabelValue( int row
)
4225 if ( row
> (int)(m_rowLabels
.GetCount()) - 1 )
4227 // using default label
4229 return wxGridTableBase::GetRowLabelValue( row
);
4233 return m_rowLabels
[row
];
4237 wxString
wxGridStringTable::GetColLabelValue( int col
)
4239 if ( col
> (int)(m_colLabels
.GetCount()) - 1 )
4241 // using default label
4243 return wxGridTableBase::GetColLabelValue( col
);
4247 return m_colLabels
[col
];
4251 void wxGridStringTable::SetRowLabelValue( int row
, const wxString
& value
)
4253 if ( row
> (int)(m_rowLabels
.GetCount()) - 1 )
4255 int n
= m_rowLabels
.GetCount();
4258 for ( i
= n
; i
<= row
; i
++ )
4260 m_rowLabels
.Add( wxGridTableBase::GetRowLabelValue(i
) );
4264 m_rowLabels
[row
] = value
;
4267 void wxGridStringTable::SetColLabelValue( int col
, const wxString
& value
)
4269 if ( col
> (int)(m_colLabels
.GetCount()) - 1 )
4271 int n
= m_colLabels
.GetCount();
4274 for ( i
= n
; i
<= col
; i
++ )
4276 m_colLabels
.Add( wxGridTableBase::GetColLabelValue(i
) );
4280 m_colLabels
[col
] = value
;
4284 //////////////////////////////////////////////////////////////////////
4285 //////////////////////////////////////////////////////////////////////
4287 BEGIN_EVENT_TABLE(wxGridSubwindow
, wxWindow
)
4288 EVT_MOUSE_CAPTURE_LOST(wxGridSubwindow::OnMouseCaptureLost
)
4291 void wxGridSubwindow::OnMouseCaptureLost(wxMouseCaptureLostEvent
& WXUNUSED(event
))
4293 m_owner
->CancelMouseCapture();
4296 BEGIN_EVENT_TABLE( wxGridRowLabelWindow
, wxGridSubwindow
)
4297 EVT_PAINT( wxGridRowLabelWindow::OnPaint
)
4298 EVT_MOUSEWHEEL( wxGridRowLabelWindow::OnMouseWheel
)
4299 EVT_MOUSE_EVENTS( wxGridRowLabelWindow::OnMouseEvent
)
4302 void wxGridRowLabelWindow::OnPaint( wxPaintEvent
& WXUNUSED(event
) )
4306 // NO - don't do this because it will set both the x and y origin
4307 // coords to match the parent scrolled window and we just want to
4308 // set the y coord - MB
4310 // m_owner->PrepareDC( dc );
4313 m_owner
->CalcUnscrolledPosition( 0, 0, &x
, &y
);
4314 wxPoint pt
= dc
.GetDeviceOrigin();
4315 dc
.SetDeviceOrigin( pt
.x
, pt
.y
-y
);
4317 wxArrayInt rows
= m_owner
->CalcRowLabelsExposed( GetUpdateRegion() );
4318 m_owner
->DrawRowLabels( dc
, rows
);
4321 void wxGridRowLabelWindow::OnMouseEvent( wxMouseEvent
& event
)
4323 m_owner
->ProcessRowLabelMouseEvent( event
);
4326 void wxGridRowLabelWindow::OnMouseWheel( wxMouseEvent
& event
)
4328 if (!m_owner
->GetEventHandler()->ProcessEvent( event
))
4332 //////////////////////////////////////////////////////////////////////
4334 BEGIN_EVENT_TABLE( wxGridColLabelWindow
, wxGridSubwindow
)
4335 EVT_PAINT( wxGridColLabelWindow::OnPaint
)
4336 EVT_MOUSEWHEEL( wxGridColLabelWindow::OnMouseWheel
)
4337 EVT_MOUSE_EVENTS( wxGridColLabelWindow::OnMouseEvent
)
4340 void wxGridColLabelWindow::OnPaint( wxPaintEvent
& WXUNUSED(event
) )
4344 // NO - don't do this because it will set both the x and y origin
4345 // coords to match the parent scrolled window and we just want to
4346 // set the x coord - MB
4348 // m_owner->PrepareDC( dc );
4351 m_owner
->CalcUnscrolledPosition( 0, 0, &x
, &y
);
4352 wxPoint pt
= dc
.GetDeviceOrigin();
4353 if (GetLayoutDirection() == wxLayout_RightToLeft
)
4354 dc
.SetDeviceOrigin( pt
.x
+x
, pt
.y
);
4356 dc
.SetDeviceOrigin( pt
.x
-x
, pt
.y
);
4358 wxArrayInt cols
= m_owner
->CalcColLabelsExposed( GetUpdateRegion() );
4359 m_owner
->DrawColLabels( dc
, cols
);
4362 void wxGridColLabelWindow::OnMouseEvent( wxMouseEvent
& event
)
4364 m_owner
->ProcessColLabelMouseEvent( event
);
4367 void wxGridColLabelWindow::OnMouseWheel( wxMouseEvent
& event
)
4369 if (!m_owner
->GetEventHandler()->ProcessEvent( event
))
4373 //////////////////////////////////////////////////////////////////////
4375 BEGIN_EVENT_TABLE( wxGridCornerLabelWindow
, wxGridSubwindow
)
4376 EVT_MOUSEWHEEL( wxGridCornerLabelWindow::OnMouseWheel
)
4377 EVT_MOUSE_EVENTS( wxGridCornerLabelWindow::OnMouseEvent
)
4378 EVT_PAINT( wxGridCornerLabelWindow::OnPaint
)
4381 void wxGridCornerLabelWindow::OnPaint( wxPaintEvent
& WXUNUSED(event
) )
4385 m_owner
->DrawCornerLabel(dc
);
4388 void wxGridCornerLabelWindow::OnMouseEvent( wxMouseEvent
& event
)
4390 m_owner
->ProcessCornerLabelMouseEvent( event
);
4393 void wxGridCornerLabelWindow::OnMouseWheel( wxMouseEvent
& event
)
4395 if (!m_owner
->GetEventHandler()->ProcessEvent(event
))
4399 //////////////////////////////////////////////////////////////////////
4401 BEGIN_EVENT_TABLE( wxGridWindow
, wxGridSubwindow
)
4402 EVT_PAINT( wxGridWindow::OnPaint
)
4403 EVT_MOUSEWHEEL( wxGridWindow::OnMouseWheel
)
4404 EVT_MOUSE_EVENTS( wxGridWindow::OnMouseEvent
)
4405 EVT_KEY_DOWN( wxGridWindow::OnKeyDown
)
4406 EVT_KEY_UP( wxGridWindow::OnKeyUp
)
4407 EVT_CHAR( wxGridWindow::OnChar
)
4408 EVT_SET_FOCUS( wxGridWindow::OnFocus
)
4409 EVT_KILL_FOCUS( wxGridWindow::OnFocus
)
4410 EVT_ERASE_BACKGROUND( wxGridWindow::OnEraseBackground
)
4413 void wxGridWindow::OnPaint( wxPaintEvent
&WXUNUSED(event
) )
4415 wxPaintDC
dc( this );
4416 m_owner
->PrepareDC( dc
);
4417 wxRegion reg
= GetUpdateRegion();
4418 wxGridCellCoordsArray dirtyCells
= m_owner
->CalcCellsExposed( reg
);
4419 m_owner
->DrawGridCellArea( dc
, dirtyCells
);
4421 m_owner
->DrawGridSpace( dc
);
4423 m_owner
->DrawAllGridLines( dc
, reg
);
4425 m_owner
->DrawHighlight( dc
, dirtyCells
);
4428 void wxGridWindow::ScrollWindow( int dx
, int dy
, const wxRect
*rect
)
4430 wxWindow::ScrollWindow( dx
, dy
, rect
);
4431 m_owner
->GetGridRowLabelWindow()->ScrollWindow( 0, dy
, rect
);
4432 m_owner
->GetGridColLabelWindow()->ScrollWindow( dx
, 0, rect
);
4435 void wxGridWindow::OnMouseEvent( wxMouseEvent
& event
)
4437 if (event
.ButtonDown(wxMOUSE_BTN_LEFT
) && FindFocus() != this)
4440 m_owner
->ProcessGridCellMouseEvent( event
);
4443 void wxGridWindow::OnMouseWheel( wxMouseEvent
& event
)
4445 if (!m_owner
->GetEventHandler()->ProcessEvent( event
))
4449 // This seems to be required for wxMotif/wxGTK otherwise the mouse
4450 // cursor must be in the cell edit control to get key events
4452 void wxGridWindow::OnKeyDown( wxKeyEvent
& event
)
4454 if ( !m_owner
->GetEventHandler()->ProcessEvent( event
) )
4458 void wxGridWindow::OnKeyUp( wxKeyEvent
& event
)
4460 if ( !m_owner
->GetEventHandler()->ProcessEvent( event
) )
4464 void wxGridWindow::OnChar( wxKeyEvent
& event
)
4466 if ( !m_owner
->GetEventHandler()->ProcessEvent( event
) )
4470 void wxGridWindow::OnEraseBackground( wxEraseEvent
& WXUNUSED(event
) )
4474 void wxGridWindow::OnFocus(wxFocusEvent
& event
)
4476 // and if we have any selection, it has to be repainted, because it
4477 // uses different colour when the grid is not focused:
4478 if ( m_owner
->IsSelection() )
4484 // NB: Note that this code is in "else" branch only because the other
4485 // branch refreshes everything and so there's no point in calling
4486 // Refresh() again, *not* because it should only be done if
4487 // !IsSelection(). If the above code is ever optimized to refresh
4488 // only selected area, this needs to be moved out of the "else"
4489 // branch so that it's always executed.
4491 // current cell cursor {dis,re}appears on focus change:
4492 const wxGridCellCoords
cursorCoords(m_owner
->GetGridCursorRow(),
4493 m_owner
->GetGridCursorCol());
4494 const wxRect cursor
=
4495 m_owner
->BlockToDeviceRect(cursorCoords
, cursorCoords
);
4496 Refresh(true, &cursor
);
4499 if ( !m_owner
->GetEventHandler()->ProcessEvent( event
) )
4503 #define internalXToCol(x) XToCol(x, true)
4504 #define internalYToRow(y) YToRow(y, true)
4506 /////////////////////////////////////////////////////////////////////
4508 #if wxUSE_EXTENDED_RTTI
4509 WX_DEFINE_FLAGS( wxGridStyle
)
4511 wxBEGIN_FLAGS( wxGridStyle
)
4512 // new style border flags, we put them first to
4513 // use them for streaming out
4514 wxFLAGS_MEMBER(wxBORDER_SIMPLE
)
4515 wxFLAGS_MEMBER(wxBORDER_SUNKEN
)
4516 wxFLAGS_MEMBER(wxBORDER_DOUBLE
)
4517 wxFLAGS_MEMBER(wxBORDER_RAISED
)
4518 wxFLAGS_MEMBER(wxBORDER_STATIC
)
4519 wxFLAGS_MEMBER(wxBORDER_NONE
)
4521 // old style border flags
4522 wxFLAGS_MEMBER(wxSIMPLE_BORDER
)
4523 wxFLAGS_MEMBER(wxSUNKEN_BORDER
)
4524 wxFLAGS_MEMBER(wxDOUBLE_BORDER
)
4525 wxFLAGS_MEMBER(wxRAISED_BORDER
)
4526 wxFLAGS_MEMBER(wxSTATIC_BORDER
)
4527 wxFLAGS_MEMBER(wxBORDER
)
4529 // standard window styles
4530 wxFLAGS_MEMBER(wxTAB_TRAVERSAL
)
4531 wxFLAGS_MEMBER(wxCLIP_CHILDREN
)
4532 wxFLAGS_MEMBER(wxTRANSPARENT_WINDOW
)
4533 wxFLAGS_MEMBER(wxWANTS_CHARS
)
4534 wxFLAGS_MEMBER(wxFULL_REPAINT_ON_RESIZE
)
4535 wxFLAGS_MEMBER(wxALWAYS_SHOW_SB
)
4536 wxFLAGS_MEMBER(wxVSCROLL
)
4537 wxFLAGS_MEMBER(wxHSCROLL
)
4539 wxEND_FLAGS( wxGridStyle
)
4541 IMPLEMENT_DYNAMIC_CLASS_XTI(wxGrid
, wxScrolledWindow
,"wx/grid.h")
4543 wxBEGIN_PROPERTIES_TABLE(wxGrid
)
4544 wxHIDE_PROPERTY( Children
)
4545 wxPROPERTY_FLAGS( WindowStyle
, wxGridStyle
, long , SetWindowStyleFlag
, GetWindowStyleFlag
, EMPTY_MACROVALUE
, 0 /*flags*/ , wxT("Helpstring") , wxT("group")) // style
4546 wxEND_PROPERTIES_TABLE()
4548 wxBEGIN_HANDLERS_TABLE(wxGrid
)
4549 wxEND_HANDLERS_TABLE()
4551 wxCONSTRUCTOR_5( wxGrid
, wxWindow
* , Parent
, wxWindowID
, Id
, wxPoint
, Position
, wxSize
, Size
, long , WindowStyle
)
4554 TODO : Expose more information of a list's layout, etc. via appropriate objects (e.g., NotebookPageInfo)
4557 IMPLEMENT_DYNAMIC_CLASS( wxGrid
, wxScrolledWindow
)
4560 BEGIN_EVENT_TABLE( wxGrid
, wxScrolledWindow
)
4561 EVT_PAINT( wxGrid::OnPaint
)
4562 EVT_SIZE( wxGrid::OnSize
)
4563 EVT_KEY_DOWN( wxGrid::OnKeyDown
)
4564 EVT_KEY_UP( wxGrid::OnKeyUp
)
4565 EVT_CHAR ( wxGrid::OnChar
)
4566 EVT_ERASE_BACKGROUND( wxGrid::OnEraseBackground
)
4569 bool wxGrid::Create(wxWindow
*parent
, wxWindowID id
,
4570 const wxPoint
& pos
, const wxSize
& size
,
4571 long style
, const wxString
& name
)
4573 if (!wxScrolledWindow::Create(parent
, id
, pos
, size
,
4574 style
| wxWANTS_CHARS
, name
))
4577 m_colMinWidths
= wxLongToLongHashMap(GRID_HASH_SIZE
);
4578 m_rowMinHeights
= wxLongToLongHashMap(GRID_HASH_SIZE
);
4581 SetInitialSize(size
);
4582 SetScrollRate(m_scrollLineX
, m_scrollLineY
);
4591 m_winCapture
->ReleaseMouse();
4593 // Ensure that the editor control is destroyed before the grid is,
4594 // otherwise we crash later when the editor tries to do something with the
4595 // half destroyed grid
4596 HideCellEditControl();
4598 // Must do this or ~wxScrollHelper will pop the wrong event handler
4599 SetTargetWindow(this);
4601 wxSafeDecRef(m_defaultCellAttr
);
4603 #ifdef DEBUG_ATTR_CACHE
4604 size_t total
= gs_nAttrCacheHits
+ gs_nAttrCacheMisses
;
4605 wxPrintf(_T("wxGrid attribute cache statistics: "
4606 "total: %u, hits: %u (%u%%)\n"),
4607 total
, gs_nAttrCacheHits
,
4608 total
? (gs_nAttrCacheHits
*100) / total
: 0);
4611 // if we own the table, just delete it, otherwise at least don't leave it
4612 // with dangling view pointer
4615 else if ( m_table
&& m_table
->GetView() == this )
4616 m_table
->SetView(NULL
);
4618 delete m_typeRegistry
;
4623 // ----- internal init and update functions
4626 // NOTE: If using the default visual attributes works everywhere then this can
4627 // be removed as well as the #else cases below.
4628 #define _USE_VISATTR 0
4630 void wxGrid::Create()
4632 // create the type registry
4633 m_typeRegistry
= new wxGridTypeRegistry
;
4635 m_cellEditCtrlEnabled
= false;
4637 m_defaultCellAttr
= new wxGridCellAttr();
4639 // Set default cell attributes
4640 m_defaultCellAttr
->SetDefAttr(m_defaultCellAttr
);
4641 m_defaultCellAttr
->SetKind(wxGridCellAttr::Default
);
4642 m_defaultCellAttr
->SetFont(GetFont());
4643 m_defaultCellAttr
->SetAlignment(wxALIGN_LEFT
, wxALIGN_TOP
);
4644 m_defaultCellAttr
->SetRenderer(new wxGridCellStringRenderer
);
4645 m_defaultCellAttr
->SetEditor(new wxGridCellTextEditor
);
4648 wxVisualAttributes gva
= wxListBox::GetClassDefaultAttributes();
4649 wxVisualAttributes lva
= wxPanel::GetClassDefaultAttributes();
4651 m_defaultCellAttr
->SetTextColour(gva
.colFg
);
4652 m_defaultCellAttr
->SetBackgroundColour(gva
.colBg
);
4655 m_defaultCellAttr
->SetTextColour(
4656 wxSystemSettings::GetColour(wxSYS_COLOUR_WINDOWTEXT
));
4657 m_defaultCellAttr
->SetBackgroundColour(
4658 wxSystemSettings::GetColour(wxSYS_COLOUR_WINDOW
));
4663 m_currentCellCoords
= wxGridNoCellCoords
;
4665 // subwindow components that make up the wxGrid
4666 m_rowLabelWin
= new wxGridRowLabelWindow(this);
4667 CreateColumnWindow();
4668 m_cornerLabelWin
= new wxGridCornerLabelWindow(this);
4669 m_gridWin
= new wxGridWindow( this );
4671 SetTargetWindow( m_gridWin
);
4674 wxColour gfg
= gva
.colFg
;
4675 wxColour gbg
= gva
.colBg
;
4676 wxColour lfg
= lva
.colFg
;
4677 wxColour lbg
= lva
.colBg
;
4679 wxColour gfg
= wxSystemSettings::GetColour( wxSYS_COLOUR_WINDOWTEXT
);
4680 wxColour gbg
= wxSystemSettings::GetColour( wxSYS_COLOUR_WINDOW
);
4681 wxColour lfg
= wxSystemSettings::GetColour( wxSYS_COLOUR_WINDOWTEXT
);
4682 wxColour lbg
= wxSystemSettings::GetColour( wxSYS_COLOUR_BTNFACE
);
4685 m_cornerLabelWin
->SetOwnForegroundColour(lfg
);
4686 m_cornerLabelWin
->SetOwnBackgroundColour(lbg
);
4687 m_rowLabelWin
->SetOwnForegroundColour(lfg
);
4688 m_rowLabelWin
->SetOwnBackgroundColour(lbg
);
4689 m_colWindow
->SetOwnForegroundColour(lfg
);
4690 m_colWindow
->SetOwnBackgroundColour(lbg
);
4692 m_gridWin
->SetOwnForegroundColour(gfg
);
4693 m_gridWin
->SetOwnBackgroundColour(gbg
);
4695 m_labelBackgroundColour
= m_rowLabelWin
->GetBackgroundColour();
4696 m_labelTextColour
= m_rowLabelWin
->GetForegroundColour();
4698 // now that we have the grid window, use its font to compute the default
4700 m_defaultRowHeight
= m_gridWin
->GetCharHeight();
4701 #if defined(__WXMOTIF__) || defined(__WXGTK__) // see also text ctrl sizing in ShowCellEditControl()
4702 m_defaultRowHeight
+= 8;
4704 m_defaultRowHeight
+= 4;
4709 void wxGrid::CreateColumnWindow()
4711 if ( m_useNativeHeader
)
4713 m_colWindow
= new wxGridHeaderCtrl(this);
4714 m_colLabelHeight
= m_colWindow
->GetBestSize().y
;
4716 else // draw labels ourselves
4718 m_colWindow
= new wxGridColLabelWindow(this);
4719 m_colLabelHeight
= WXGRID_DEFAULT_COL_LABEL_HEIGHT
;
4723 bool wxGrid::CreateGrid( int numRows
, int numCols
,
4724 wxGridSelectionModes selmode
)
4726 wxCHECK_MSG( !m_created
,
4728 wxT("wxGrid::CreateGrid or wxGrid::SetTable called more than once") );
4730 return SetTable(new wxGridStringTable(numRows
, numCols
), true, selmode
);
4733 void wxGrid::SetSelectionMode(wxGridSelectionModes selmode
)
4735 wxCHECK_RET( m_created
,
4736 wxT("Called wxGrid::SetSelectionMode() before calling CreateGrid()") );
4738 m_selection
->SetSelectionMode( selmode
);
4741 wxGrid::wxGridSelectionModes
wxGrid::GetSelectionMode() const
4743 wxCHECK_MSG( m_created
, wxGridSelectCells
,
4744 wxT("Called wxGrid::GetSelectionMode() before calling CreateGrid()") );
4746 return m_selection
->GetSelectionMode();
4750 wxGrid::SetTable(wxGridTableBase
*table
,
4752 wxGrid::wxGridSelectionModes selmode
)
4754 bool checkSelection
= false;
4757 // stop all processing
4762 m_table
->SetView(0);
4774 checkSelection
= true;
4776 // kill row and column size arrays
4777 m_colWidths
.Empty();
4778 m_colRights
.Empty();
4779 m_rowHeights
.Empty();
4780 m_rowBottoms
.Empty();
4785 m_numRows
= table
->GetNumberRows();
4786 m_numCols
= table
->GetNumberCols();
4788 if ( m_useNativeHeader
)
4789 GetColHeader()->SetColumnCount(m_numCols
);
4792 m_table
->SetView( this );
4793 m_ownTable
= takeOwnership
;
4794 m_selection
= new wxGridSelection( this, selmode
);
4797 // If the newly set table is smaller than the
4798 // original one current cell and selection regions
4799 // might be invalid,
4800 m_selectedBlockCorner
= wxGridNoCellCoords
;
4801 m_currentCellCoords
=
4802 wxGridCellCoords(wxMin(m_numRows
, m_currentCellCoords
.GetRow()),
4803 wxMin(m_numCols
, m_currentCellCoords
.GetCol()));
4804 if (m_selectedBlockTopLeft
.GetRow() >= m_numRows
||
4805 m_selectedBlockTopLeft
.GetCol() >= m_numCols
)
4807 m_selectedBlockTopLeft
= wxGridNoCellCoords
;
4808 m_selectedBlockBottomRight
= wxGridNoCellCoords
;
4811 m_selectedBlockBottomRight
=
4812 wxGridCellCoords(wxMin(m_numRows
,
4813 m_selectedBlockBottomRight
.GetRow()),
4815 m_selectedBlockBottomRight
.GetCol()));
4829 m_cornerLabelWin
= NULL
;
4830 m_rowLabelWin
= NULL
;
4838 m_defaultCellAttr
= NULL
;
4839 m_typeRegistry
= NULL
;
4840 m_winCapture
= NULL
;
4842 m_rowLabelWidth
= WXGRID_DEFAULT_ROW_LABEL_WIDTH
;
4843 m_colLabelHeight
= WXGRID_DEFAULT_COL_LABEL_HEIGHT
;
4846 m_attrCache
.row
= -1;
4847 m_attrCache
.col
= -1;
4848 m_attrCache
.attr
= NULL
;
4850 m_labelFont
= GetFont();
4851 m_labelFont
.SetWeight( wxBOLD
);
4853 m_rowLabelHorizAlign
= wxALIGN_CENTRE
;
4854 m_rowLabelVertAlign
= wxALIGN_CENTRE
;
4856 m_colLabelHorizAlign
= wxALIGN_CENTRE
;
4857 m_colLabelVertAlign
= wxALIGN_CENTRE
;
4858 m_colLabelTextOrientation
= wxHORIZONTAL
;
4860 m_defaultColWidth
= WXGRID_DEFAULT_COL_WIDTH
;
4861 m_defaultRowHeight
= 0; // this will be initialized after creation
4863 m_minAcceptableColWidth
= WXGRID_MIN_COL_WIDTH
;
4864 m_minAcceptableRowHeight
= WXGRID_MIN_ROW_HEIGHT
;
4866 m_gridLineColour
= wxColour( 192,192,192 );
4867 m_gridLinesEnabled
= true;
4868 m_gridLinesClipHorz
=
4869 m_gridLinesClipVert
= true;
4870 m_cellHighlightColour
= *wxBLACK
;
4871 m_cellHighlightPenWidth
= 2;
4872 m_cellHighlightROPenWidth
= 1;
4874 m_canDragColMove
= false;
4876 m_cursorMode
= WXGRID_CURSOR_SELECT_CELL
;
4877 m_winCapture
= NULL
;
4878 m_canDragRowSize
= true;
4879 m_canDragColSize
= true;
4880 m_canDragGridSize
= true;
4881 m_canDragCell
= false;
4883 m_dragRowOrCol
= -1;
4884 m_isDragging
= false;
4885 m_startDragPos
= wxDefaultPosition
;
4888 m_nativeColumnLabels
= false;
4890 m_waitForSlowClick
= false;
4892 m_rowResizeCursor
= wxCursor( wxCURSOR_SIZENS
);
4893 m_colResizeCursor
= wxCursor( wxCURSOR_SIZEWE
);
4895 m_currentCellCoords
= wxGridNoCellCoords
;
4897 m_selectedBlockTopLeft
=
4898 m_selectedBlockBottomRight
=
4899 m_selectedBlockCorner
= wxGridNoCellCoords
;
4901 m_selectionBackground
= wxSystemSettings::GetColour(wxSYS_COLOUR_HIGHLIGHT
);
4902 m_selectionForeground
= wxSystemSettings::GetColour(wxSYS_COLOUR_HIGHLIGHTTEXT
);
4904 m_editable
= true; // default for whole grid
4906 m_inOnKeyDown
= false;
4912 m_scrollLineX
= GRID_SCROLL_LINE_X
;
4913 m_scrollLineY
= GRID_SCROLL_LINE_Y
;
4916 // ----------------------------------------------------------------------------
4917 // the idea is to call these functions only when necessary because they create
4918 // quite big arrays which eat memory mostly unnecessary - in particular, if
4919 // default widths/heights are used for all rows/columns, we may not use these
4922 // with some extra code, it should be possible to only store the widths/heights
4923 // different from default ones (resulting in space savings for huge grids) but
4924 // this is not done currently
4925 // ----------------------------------------------------------------------------
4927 void wxGrid::InitRowHeights()
4929 m_rowHeights
.Empty();
4930 m_rowBottoms
.Empty();
4932 m_rowHeights
.Alloc( m_numRows
);
4933 m_rowBottoms
.Alloc( m_numRows
);
4935 m_rowHeights
.Add( m_defaultRowHeight
, m_numRows
);
4938 for ( int i
= 0; i
< m_numRows
; i
++ )
4940 rowBottom
+= m_defaultRowHeight
;
4941 m_rowBottoms
.Add( rowBottom
);
4945 void wxGrid::InitColWidths()
4947 m_colWidths
.Empty();
4948 m_colRights
.Empty();
4950 m_colWidths
.Alloc( m_numCols
);
4951 m_colRights
.Alloc( m_numCols
);
4953 m_colWidths
.Add( m_defaultColWidth
, m_numCols
);
4955 for ( int i
= 0; i
< m_numCols
; i
++ )
4957 int colRight
= ( GetColPos( i
) + 1 ) * m_defaultColWidth
;
4958 m_colRights
.Add( colRight
);
4962 int wxGrid::GetColWidth(int col
) const
4964 return m_colWidths
.IsEmpty() ? m_defaultColWidth
: m_colWidths
[col
];
4967 int wxGrid::GetColLeft(int col
) const
4969 return m_colRights
.IsEmpty() ? GetColPos( col
) * m_defaultColWidth
4970 : m_colRights
[col
] - m_colWidths
[col
];
4973 int wxGrid::GetColRight(int col
) const
4975 return m_colRights
.IsEmpty() ? (GetColPos( col
) + 1) * m_defaultColWidth
4979 int wxGrid::GetRowHeight(int row
) const
4981 return m_rowHeights
.IsEmpty() ? m_defaultRowHeight
: m_rowHeights
[row
];
4984 int wxGrid::GetRowTop(int row
) const
4986 return m_rowBottoms
.IsEmpty() ? row
* m_defaultRowHeight
4987 : m_rowBottoms
[row
] - m_rowHeights
[row
];
4990 int wxGrid::GetRowBottom(int row
) const
4992 return m_rowBottoms
.IsEmpty() ? (row
+ 1) * m_defaultRowHeight
4993 : m_rowBottoms
[row
];
4996 void wxGrid::CalcDimensions()
4998 // compute the size of the scrollable area
4999 int w
= m_numCols
> 0 ? GetColRight(GetColAt(m_numCols
- 1)) : 0;
5000 int h
= m_numRows
> 0 ? GetRowBottom(m_numRows
- 1) : 0;
5005 // take into account editor if shown
5006 if ( IsCellEditControlShown() )
5009 int r
= m_currentCellCoords
.GetRow();
5010 int c
= m_currentCellCoords
.GetCol();
5011 int x
= GetColLeft(c
);
5012 int y
= GetRowTop(r
);
5014 // how big is the editor
5015 wxGridCellAttr
* attr
= GetCellAttr(r
, c
);
5016 wxGridCellEditor
* editor
= attr
->GetEditor(this, r
, c
);
5017 editor
->GetControl()->GetSize(&w2
, &h2
);
5028 // preserve (more or less) the previous position
5030 GetViewStart( &x
, &y
);
5032 // ensure the position is valid for the new scroll ranges
5034 x
= wxMax( w
- 1, 0 );
5036 y
= wxMax( h
- 1, 0 );
5038 // update the virtual size and refresh the scrollbars to reflect it
5039 m_gridWin
->SetVirtualSize(w
, h
);
5043 // if our OnSize() hadn't been called (it would if we have scrollbars), we
5044 // still must reposition the children
5048 wxSize
wxGrid::GetSizeAvailableForScrollTarget(const wxSize
& size
)
5050 wxSize
sizeGridWin(size
);
5051 sizeGridWin
.x
-= m_rowLabelWidth
;
5052 sizeGridWin
.y
-= m_colLabelHeight
;
5057 void wxGrid::CalcWindowSizes()
5059 // escape if the window is has not been fully created yet
5061 if ( m_cornerLabelWin
== NULL
)
5065 GetClientSize( &cw
, &ch
);
5067 // the grid may be too small to have enough space for the labels yet, don't
5068 // size the windows to negative sizes in this case
5069 int gw
= cw
- m_rowLabelWidth
;
5070 int gh
= ch
- m_colLabelHeight
;
5076 if ( m_cornerLabelWin
&& m_cornerLabelWin
->IsShown() )
5077 m_cornerLabelWin
->SetSize( 0, 0, m_rowLabelWidth
, m_colLabelHeight
);
5079 if ( m_colWindow
&& m_colWindow
->IsShown() )
5080 m_colWindow
->SetSize( m_rowLabelWidth
, 0, gw
, m_colLabelHeight
);
5082 if ( m_rowLabelWin
&& m_rowLabelWin
->IsShown() )
5083 m_rowLabelWin
->SetSize( 0, m_colLabelHeight
, m_rowLabelWidth
, gh
);
5085 if ( m_gridWin
&& m_gridWin
->IsShown() )
5086 m_gridWin
->SetSize( m_rowLabelWidth
, m_colLabelHeight
, gw
, gh
);
5089 // this is called when the grid table sends a message
5090 // to indicate that it has been redimensioned
5092 bool wxGrid::Redimension( wxGridTableMessage
& msg
)
5095 bool result
= false;
5097 // Clear the attribute cache as the attribute might refer to a different
5098 // cell than stored in the cache after adding/removing rows/columns.
5101 // By the same reasoning, the editor should be dismissed if columns are
5102 // added or removed. And for consistency, it should IMHO always be
5103 // removed, not only if the cell "underneath" it actually changes.
5104 // For now, I intentionally do not save the editor's content as the
5105 // cell it might want to save that stuff to might no longer exist.
5106 HideCellEditControl();
5109 // if we were using the default widths/heights so far, we must change them
5111 if ( m_colWidths
.IsEmpty() )
5116 if ( m_rowHeights
.IsEmpty() )
5122 switch ( msg
.GetId() )
5124 case wxGRIDTABLE_NOTIFY_ROWS_INSERTED
:
5126 size_t pos
= msg
.GetCommandInt();
5127 int numRows
= msg
.GetCommandInt2();
5129 m_numRows
+= numRows
;
5131 if ( !m_rowHeights
.IsEmpty() )
5133 m_rowHeights
.Insert( m_defaultRowHeight
, pos
, numRows
);
5134 m_rowBottoms
.Insert( 0, pos
, numRows
);
5138 bottom
= m_rowBottoms
[pos
- 1];
5140 for ( i
= pos
; i
< m_numRows
; i
++ )
5142 bottom
+= m_rowHeights
[i
];
5143 m_rowBottoms
[i
] = bottom
;
5147 if ( m_currentCellCoords
== wxGridNoCellCoords
)
5149 // if we have just inserted cols into an empty grid the current
5150 // cell will be undefined...
5152 SetCurrentCell( 0, 0 );
5156 m_selection
->UpdateRows( pos
, numRows
);
5157 wxGridCellAttrProvider
* attrProvider
= m_table
->GetAttrProvider();
5159 attrProvider
->UpdateAttrRows( pos
, numRows
);
5161 if ( !GetBatchCount() )
5164 m_rowLabelWin
->Refresh();
5170 case wxGRIDTABLE_NOTIFY_ROWS_APPENDED
:
5172 int numRows
= msg
.GetCommandInt();
5173 int oldNumRows
= m_numRows
;
5174 m_numRows
+= numRows
;
5176 if ( !m_rowHeights
.IsEmpty() )
5178 m_rowHeights
.Add( m_defaultRowHeight
, numRows
);
5179 m_rowBottoms
.Add( 0, numRows
);
5182 if ( oldNumRows
> 0 )
5183 bottom
= m_rowBottoms
[oldNumRows
- 1];
5185 for ( i
= oldNumRows
; i
< m_numRows
; i
++ )
5187 bottom
+= m_rowHeights
[i
];
5188 m_rowBottoms
[i
] = bottom
;
5192 if ( m_currentCellCoords
== wxGridNoCellCoords
)
5194 // if we have just inserted cols into an empty grid the current
5195 // cell will be undefined...
5197 SetCurrentCell( 0, 0 );
5200 if ( !GetBatchCount() )
5203 m_rowLabelWin
->Refresh();
5209 case wxGRIDTABLE_NOTIFY_ROWS_DELETED
:
5211 size_t pos
= msg
.GetCommandInt();
5212 int numRows
= msg
.GetCommandInt2();
5213 m_numRows
-= numRows
;
5215 if ( !m_rowHeights
.IsEmpty() )
5217 m_rowHeights
.RemoveAt( pos
, numRows
);
5218 m_rowBottoms
.RemoveAt( pos
, numRows
);
5221 for ( i
= 0; i
< m_numRows
; i
++ )
5223 h
+= m_rowHeights
[i
];
5224 m_rowBottoms
[i
] = h
;
5230 m_currentCellCoords
= wxGridNoCellCoords
;
5234 if ( m_currentCellCoords
.GetRow() >= m_numRows
)
5235 m_currentCellCoords
.Set( 0, 0 );
5239 m_selection
->UpdateRows( pos
, -((int)numRows
) );
5240 wxGridCellAttrProvider
* attrProvider
= m_table
->GetAttrProvider();
5243 attrProvider
->UpdateAttrRows( pos
, -((int)numRows
) );
5245 // ifdef'd out following patch from Paul Gammans
5247 // No need to touch column attributes, unless we
5248 // removed _all_ rows, in this case, we remove
5249 // all column attributes.
5250 // I hate to do this here, but the
5251 // needed data is not available inside UpdateAttrRows.
5252 if ( !GetNumberRows() )
5253 attrProvider
->UpdateAttrCols( 0, -GetNumberCols() );
5257 if ( !GetBatchCount() )
5260 m_rowLabelWin
->Refresh();
5266 case wxGRIDTABLE_NOTIFY_COLS_INSERTED
:
5268 size_t pos
= msg
.GetCommandInt();
5269 int numCols
= msg
.GetCommandInt2();
5270 m_numCols
+= numCols
;
5272 if ( m_useNativeHeader
)
5273 GetColHeader()->SetColumnCount(m_numCols
);
5275 if ( !m_colAt
.IsEmpty() )
5277 //Shift the column IDs
5279 for ( i
= 0; i
< m_numCols
- numCols
; i
++ )
5281 if ( m_colAt
[i
] >= (int)pos
)
5282 m_colAt
[i
] += numCols
;
5285 m_colAt
.Insert( pos
, pos
, numCols
);
5287 //Set the new columns' positions
5288 for ( i
= pos
+ 1; i
< (int)pos
+ numCols
; i
++ )
5294 if ( !m_colWidths
.IsEmpty() )
5296 m_colWidths
.Insert( m_defaultColWidth
, pos
, numCols
);
5297 m_colRights
.Insert( 0, pos
, numCols
);
5301 right
= m_colRights
[GetColAt( pos
- 1 )];
5304 for ( colPos
= pos
; colPos
< m_numCols
; colPos
++ )
5306 i
= GetColAt( colPos
);
5308 right
+= m_colWidths
[i
];
5309 m_colRights
[i
] = right
;
5313 if ( m_currentCellCoords
== wxGridNoCellCoords
)
5315 // if we have just inserted cols into an empty grid the current
5316 // cell will be undefined...
5318 SetCurrentCell( 0, 0 );
5322 m_selection
->UpdateCols( pos
, numCols
);
5323 wxGridCellAttrProvider
* attrProvider
= m_table
->GetAttrProvider();
5325 attrProvider
->UpdateAttrCols( pos
, numCols
);
5326 if ( !GetBatchCount() )
5329 m_colWindow
->Refresh();
5335 case wxGRIDTABLE_NOTIFY_COLS_APPENDED
:
5337 int numCols
= msg
.GetCommandInt();
5338 int oldNumCols
= m_numCols
;
5339 m_numCols
+= numCols
;
5340 if ( m_useNativeHeader
)
5341 GetColHeader()->SetColumnCount(m_numCols
);
5343 if ( !m_colAt
.IsEmpty() )
5345 m_colAt
.Add( 0, numCols
);
5347 //Set the new columns' positions
5349 for ( i
= oldNumCols
; i
< m_numCols
; i
++ )
5355 if ( !m_colWidths
.IsEmpty() )
5357 m_colWidths
.Add( m_defaultColWidth
, numCols
);
5358 m_colRights
.Add( 0, numCols
);
5361 if ( oldNumCols
> 0 )
5362 right
= m_colRights
[GetColAt( oldNumCols
- 1 )];
5365 for ( colPos
= oldNumCols
; colPos
< m_numCols
; colPos
++ )
5367 i
= GetColAt( colPos
);
5369 right
+= m_colWidths
[i
];
5370 m_colRights
[i
] = right
;
5374 if ( m_currentCellCoords
== wxGridNoCellCoords
)
5376 // if we have just inserted cols into an empty grid the current
5377 // cell will be undefined...
5379 SetCurrentCell( 0, 0 );
5381 if ( !GetBatchCount() )
5384 m_colWindow
->Refresh();
5390 case wxGRIDTABLE_NOTIFY_COLS_DELETED
:
5392 size_t pos
= msg
.GetCommandInt();
5393 int numCols
= msg
.GetCommandInt2();
5394 m_numCols
-= numCols
;
5395 if ( m_useNativeHeader
)
5396 GetColHeader()->SetColumnCount(m_numCols
);
5398 if ( !m_colAt
.IsEmpty() )
5400 int colID
= GetColAt( pos
);
5402 m_colAt
.RemoveAt( pos
, numCols
);
5404 //Shift the column IDs
5406 for ( colPos
= 0; colPos
< m_numCols
; colPos
++ )
5408 if ( m_colAt
[colPos
] > colID
)
5409 m_colAt
[colPos
] -= numCols
;
5413 if ( !m_colWidths
.IsEmpty() )
5415 m_colWidths
.RemoveAt( pos
, numCols
);
5416 m_colRights
.RemoveAt( pos
, numCols
);
5420 for ( colPos
= 0; colPos
< m_numCols
; colPos
++ )
5422 i
= GetColAt( colPos
);
5424 w
+= m_colWidths
[i
];
5431 m_currentCellCoords
= wxGridNoCellCoords
;
5435 if ( m_currentCellCoords
.GetCol() >= m_numCols
)
5436 m_currentCellCoords
.Set( 0, 0 );
5440 m_selection
->UpdateCols( pos
, -((int)numCols
) );
5441 wxGridCellAttrProvider
* attrProvider
= m_table
->GetAttrProvider();
5444 attrProvider
->UpdateAttrCols( pos
, -((int)numCols
) );
5446 // ifdef'd out following patch from Paul Gammans
5448 // No need to touch row attributes, unless we
5449 // removed _all_ columns, in this case, we remove
5450 // all row attributes.
5451 // I hate to do this here, but the
5452 // needed data is not available inside UpdateAttrCols.
5453 if ( !GetNumberCols() )
5454 attrProvider
->UpdateAttrRows( 0, -GetNumberRows() );
5458 if ( !GetBatchCount() )
5461 m_colWindow
->Refresh();
5468 if (result
&& !GetBatchCount() )
5469 m_gridWin
->Refresh();
5474 wxArrayInt
wxGrid::CalcRowLabelsExposed( const wxRegion
& reg
) const
5476 wxRegionIterator
iter( reg
);
5479 wxArrayInt rowlabels
;
5486 // TODO: remove this when we can...
5487 // There is a bug in wxMotif that gives garbage update
5488 // rectangles if you jump-scroll a long way by clicking the
5489 // scrollbar with middle button. This is a work-around
5491 #if defined(__WXMOTIF__)
5493 m_gridWin
->GetClientSize( &cw
, &ch
);
5494 if ( r
.GetTop() > ch
)
5496 r
.SetBottom( wxMin( r
.GetBottom(), ch
) );
5499 // logical bounds of update region
5502 CalcUnscrolledPosition( 0, r
.GetTop(), &dummy
, &top
);
5503 CalcUnscrolledPosition( 0, r
.GetBottom(), &dummy
, &bottom
);
5505 // find the row labels within these bounds
5508 for ( row
= internalYToRow(top
); row
< m_numRows
; row
++ )
5510 if ( GetRowBottom(row
) < top
)
5513 if ( GetRowTop(row
) > bottom
)
5516 rowlabels
.Add( row
);
5525 wxArrayInt
wxGrid::CalcColLabelsExposed( const wxRegion
& reg
) const
5527 wxRegionIterator
iter( reg
);
5530 wxArrayInt colLabels
;
5537 // TODO: remove this when we can...
5538 // There is a bug in wxMotif that gives garbage update
5539 // rectangles if you jump-scroll a long way by clicking the
5540 // scrollbar with middle button. This is a work-around
5542 #if defined(__WXMOTIF__)
5544 m_gridWin
->GetClientSize( &cw
, &ch
);
5545 if ( r
.GetLeft() > cw
)
5547 r
.SetRight( wxMin( r
.GetRight(), cw
) );
5550 // logical bounds of update region
5553 CalcUnscrolledPosition( r
.GetLeft(), 0, &left
, &dummy
);
5554 CalcUnscrolledPosition( r
.GetRight(), 0, &right
, &dummy
);
5556 // find the cells within these bounds
5560 for ( colPos
= GetColPos( internalXToCol(left
) ); colPos
< m_numCols
; colPos
++ )
5562 col
= GetColAt( colPos
);
5564 if ( GetColRight(col
) < left
)
5567 if ( GetColLeft(col
) > right
)
5570 colLabels
.Add( col
);
5579 wxGridCellCoordsArray
wxGrid::CalcCellsExposed( const wxRegion
& reg
) const
5581 wxRegionIterator
iter( reg
);
5584 wxGridCellCoordsArray cellsExposed
;
5586 int left
, top
, right
, bottom
;
5591 // TODO: remove this when we can...
5592 // There is a bug in wxMotif that gives garbage update
5593 // rectangles if you jump-scroll a long way by clicking the
5594 // scrollbar with middle button. This is a work-around
5596 #if defined(__WXMOTIF__)
5598 m_gridWin
->GetClientSize( &cw
, &ch
);
5599 if ( r
.GetTop() > ch
) r
.SetTop( 0 );
5600 if ( r
.GetLeft() > cw
) r
.SetLeft( 0 );
5601 r
.SetRight( wxMin( r
.GetRight(), cw
) );
5602 r
.SetBottom( wxMin( r
.GetBottom(), ch
) );
5605 // logical bounds of update region
5607 CalcUnscrolledPosition( r
.GetLeft(), r
.GetTop(), &left
, &top
);
5608 CalcUnscrolledPosition( r
.GetRight(), r
.GetBottom(), &right
, &bottom
);
5610 // find the cells within these bounds
5612 for ( int row
= internalYToRow(top
); row
< m_numRows
; row
++ )
5614 if ( GetRowBottom(row
) <= top
)
5617 if ( GetRowTop(row
) > bottom
)
5620 // add all dirty cells in this row: notice that the columns which
5621 // are dirty don't depend on the row so we compute them only once
5622 // for the first dirty row and then reuse for all the next ones
5625 // do determine the dirty columns
5626 for ( int pos
= XToPos(left
); pos
<= XToPos(right
); pos
++ )
5627 cols
.push_back(GetColAt(pos
));
5629 // if there are no dirty columns at all, nothing to do
5634 const size_t count
= cols
.size();
5635 for ( size_t n
= 0; n
< count
; n
++ )
5636 cellsExposed
.Add(wxGridCellCoords(row
, cols
[n
]));
5642 return cellsExposed
;
5646 void wxGrid::ProcessRowLabelMouseEvent( wxMouseEvent
& event
)
5649 wxPoint
pos( event
.GetPosition() );
5650 CalcUnscrolledPosition( pos
.x
, pos
.y
, &x
, &y
);
5652 if ( event
.Dragging() )
5656 m_isDragging
= true;
5657 m_rowLabelWin
->CaptureMouse();
5660 if ( event
.LeftIsDown() )
5662 switch ( m_cursorMode
)
5664 case WXGRID_CURSOR_RESIZE_ROW
:
5666 int cw
, ch
, left
, dummy
;
5667 m_gridWin
->GetClientSize( &cw
, &ch
);
5668 CalcUnscrolledPosition( 0, 0, &left
, &dummy
);
5670 wxClientDC
dc( m_gridWin
);
5673 GetRowTop(m_dragRowOrCol
) +
5674 GetRowMinimalHeight(m_dragRowOrCol
) );
5675 dc
.SetLogicalFunction(wxINVERT
);
5676 if ( m_dragLastPos
>= 0 )
5678 dc
.DrawLine( left
, m_dragLastPos
, left
+cw
, m_dragLastPos
);
5680 dc
.DrawLine( left
, y
, left
+cw
, y
);
5685 case WXGRID_CURSOR_SELECT_ROW
:
5687 if ( (row
= YToRow( y
)) >= 0 )
5690 m_selection
->SelectRow(row
, event
);
5695 // default label to suppress warnings about "enumeration value
5696 // 'xxx' not handled in switch
5704 if ( m_isDragging
&& (event
.Entering() || event
.Leaving()) )
5709 if (m_rowLabelWin
->HasCapture())
5710 m_rowLabelWin
->ReleaseMouse();
5711 m_isDragging
= false;
5714 // ------------ Entering or leaving the window
5716 if ( event
.Entering() || event
.Leaving() )
5718 ChangeCursorMode(WXGRID_CURSOR_SELECT_CELL
, m_rowLabelWin
);
5721 // ------------ Left button pressed
5723 else if ( event
.LeftDown() )
5725 // don't send a label click event for a hit on the
5726 // edge of the row label - this is probably the user
5727 // wanting to resize the row
5729 if ( YToEdgeOfRow(y
) < 0 )
5733 !SendEvent( wxEVT_GRID_LABEL_LEFT_CLICK
, row
, -1, event
) )
5735 if ( !event
.ShiftDown() && !event
.CmdDown() )
5739 if ( event
.ShiftDown() )
5741 m_selection
->SelectBlock
5743 m_currentCellCoords
.GetRow(), 0,
5744 row
, GetNumberCols() - 1,
5750 m_selection
->SelectRow(row
, event
);
5754 ChangeCursorMode(WXGRID_CURSOR_SELECT_ROW
, m_rowLabelWin
);
5759 // starting to drag-resize a row
5760 if ( CanDragRowSize() )
5761 ChangeCursorMode(WXGRID_CURSOR_RESIZE_ROW
, m_rowLabelWin
);
5765 // ------------ Left double click
5767 else if (event
.LeftDClick() )
5769 row
= YToEdgeOfRow(y
);
5774 !SendEvent( wxEVT_GRID_LABEL_LEFT_DCLICK
, row
, -1, event
) )
5776 // no default action at the moment
5781 // adjust row height depending on label text
5782 AutoSizeRowLabelSize( row
);
5784 ChangeCursorMode(WXGRID_CURSOR_SELECT_CELL
, GetColLabelWindow());
5789 // ------------ Left button released
5791 else if ( event
.LeftUp() )
5793 if ( m_cursorMode
== WXGRID_CURSOR_RESIZE_ROW
)
5795 DoEndDragResizeRow();
5797 // Note: we are ending the event *after* doing
5798 // default processing in this case
5800 SendEvent( wxEVT_GRID_ROW_SIZE
, m_dragRowOrCol
, -1, event
);
5803 ChangeCursorMode(WXGRID_CURSOR_SELECT_CELL
, m_rowLabelWin
);
5807 // ------------ Right button down
5809 else if ( event
.RightDown() )
5813 !SendEvent( wxEVT_GRID_LABEL_RIGHT_CLICK
, row
, -1, event
) )
5815 // no default action at the moment
5819 // ------------ Right double click
5821 else if ( event
.RightDClick() )
5825 !SendEvent( wxEVT_GRID_LABEL_RIGHT_DCLICK
, row
, -1, event
) )
5827 // no default action at the moment
5831 // ------------ No buttons down and mouse moving
5833 else if ( event
.Moving() )
5835 m_dragRowOrCol
= YToEdgeOfRow( y
);
5836 if ( m_dragRowOrCol
>= 0 )
5838 if ( m_cursorMode
== WXGRID_CURSOR_SELECT_CELL
)
5840 // don't capture the mouse yet
5841 if ( CanDragRowSize() )
5842 ChangeCursorMode(WXGRID_CURSOR_RESIZE_ROW
, m_rowLabelWin
, false);
5845 else if ( m_cursorMode
!= WXGRID_CURSOR_SELECT_CELL
)
5847 ChangeCursorMode(WXGRID_CURSOR_SELECT_CELL
, m_rowLabelWin
, false);
5852 void wxGrid::DoStartResizeCol(int col
)
5854 m_dragRowOrCol
= col
;
5856 DoUpdateResizeColWidth(GetColWidth(m_dragRowOrCol
));
5859 void wxGrid::DoUpdateResizeCol(int x
)
5861 int cw
, ch
, dummy
, top
;
5862 m_gridWin
->GetClientSize( &cw
, &ch
);
5863 CalcUnscrolledPosition( 0, 0, &dummy
, &top
);
5865 wxClientDC
dc( m_gridWin
);
5868 x
= wxMax( x
, GetColLeft(m_dragRowOrCol
) + GetColMinimalWidth(m_dragRowOrCol
));
5869 dc
.SetLogicalFunction(wxINVERT
);
5870 if ( m_dragLastPos
>= 0 )
5872 dc
.DrawLine( m_dragLastPos
, top
, m_dragLastPos
, top
+ ch
);
5874 dc
.DrawLine( x
, top
, x
, top
+ ch
);
5878 void wxGrid::DoUpdateResizeColWidth(int w
)
5880 DoUpdateResizeCol(GetColLeft(m_dragRowOrCol
) + w
);
5883 void wxGrid::ProcessColLabelMouseEvent( wxMouseEvent
& event
)
5886 wxPoint
pos( event
.GetPosition() );
5887 CalcUnscrolledPosition( pos
.x
, pos
.y
, &x
, &y
);
5889 if ( event
.Dragging() )
5893 m_isDragging
= true;
5894 GetColLabelWindow()->CaptureMouse();
5896 if ( m_cursorMode
== WXGRID_CURSOR_MOVE_COL
)
5897 DoStartMoveCol(XToCol(x
));
5900 if ( event
.LeftIsDown() )
5902 switch ( m_cursorMode
)
5904 case WXGRID_CURSOR_RESIZE_COL
:
5905 DoUpdateResizeCol(x
);
5908 case WXGRID_CURSOR_SELECT_COL
:
5910 if ( (col
= XToCol( x
)) >= 0 )
5913 m_selection
->SelectCol(col
, event
);
5918 case WXGRID_CURSOR_MOVE_COL
:
5920 int posNew
= XToPos(x
);
5921 int colNew
= GetColAt(posNew
);
5923 // determine the position of the drop marker
5925 if ( x
>= GetColLeft(colNew
) + (GetColWidth(colNew
) / 2) )
5926 markerX
= GetColRight(colNew
);
5928 markerX
= GetColLeft(colNew
);
5930 if ( markerX
!= m_dragLastPos
)
5932 wxClientDC
dc( GetColLabelWindow() );
5936 GetColLabelWindow()->GetClientSize( &cw
, &ch
);
5940 //Clean up the last indicator
5941 if ( m_dragLastPos
>= 0 )
5943 wxPen
pen( GetColLabelWindow()->GetBackgroundColour(), 2 );
5945 dc
.DrawLine( m_dragLastPos
+ 1, 0, m_dragLastPos
+ 1, ch
);
5946 dc
.SetPen(wxNullPen
);
5948 if ( XToCol( m_dragLastPos
) != -1 )
5949 DrawColLabel( dc
, XToCol( m_dragLastPos
) );
5952 const wxColour
*color
;
5953 //Moving to the same place? Don't draw a marker
5954 if ( colNew
== m_dragRowOrCol
)
5955 color
= wxLIGHT_GREY
;
5960 wxPen
pen( *color
, 2 );
5963 dc
.DrawLine( markerX
, 0, markerX
, ch
);
5965 dc
.SetPen(wxNullPen
);
5967 m_dragLastPos
= markerX
- 1;
5972 // default label to suppress warnings about "enumeration value
5973 // 'xxx' not handled in switch
5981 if ( m_isDragging
&& (event
.Entering() || event
.Leaving()) )
5986 if (GetColLabelWindow()->HasCapture())
5987 GetColLabelWindow()->ReleaseMouse();
5988 m_isDragging
= false;
5991 // ------------ Entering or leaving the window
5993 if ( event
.Entering() || event
.Leaving() )
5995 ChangeCursorMode(WXGRID_CURSOR_SELECT_CELL
, GetColLabelWindow());
5998 // ------------ Left button pressed
6000 else if ( event
.LeftDown() )
6002 // don't send a label click event for a hit on the
6003 // edge of the col label - this is probably the user
6004 // wanting to resize the col
6006 if ( XToEdgeOfCol(x
) < 0 )
6010 !SendEvent( wxEVT_GRID_LABEL_LEFT_CLICK
, -1, col
, event
) )
6012 if ( m_canDragColMove
)
6014 //Show button as pressed
6015 wxClientDC
dc( GetColLabelWindow() );
6016 int colLeft
= GetColLeft( col
);
6017 int colRight
= GetColRight( col
) - 1;
6018 dc
.SetPen( wxPen( GetColLabelWindow()->GetBackgroundColour(), 1 ) );
6019 dc
.DrawLine( colLeft
, 1, colLeft
, m_colLabelHeight
-1 );
6020 dc
.DrawLine( colLeft
, 1, colRight
, 1 );
6022 ChangeCursorMode(WXGRID_CURSOR_MOVE_COL
, GetColLabelWindow());
6026 if ( !event
.ShiftDown() && !event
.CmdDown() )
6030 if ( event
.ShiftDown() )
6032 m_selection
->SelectBlock
6034 0, m_currentCellCoords
.GetCol(),
6035 GetNumberRows() - 1, col
,
6041 m_selection
->SelectCol(col
, event
);
6045 ChangeCursorMode(WXGRID_CURSOR_SELECT_COL
, GetColLabelWindow());
6051 // starting to drag-resize a col
6053 if ( CanDragColSize() )
6054 ChangeCursorMode(WXGRID_CURSOR_RESIZE_COL
, GetColLabelWindow());
6058 // ------------ Left double click
6060 if ( event
.LeftDClick() )
6062 col
= XToEdgeOfCol(x
);
6067 ! SendEvent( wxEVT_GRID_LABEL_LEFT_DCLICK
, -1, col
, event
) )
6069 // no default action at the moment
6074 // adjust column width depending on label text
6075 AutoSizeColLabelSize( col
);
6077 ChangeCursorMode(WXGRID_CURSOR_SELECT_CELL
, GetColLabelWindow());
6082 // ------------ Left button released
6084 else if ( event
.LeftUp() )
6086 switch ( m_cursorMode
)
6088 case WXGRID_CURSOR_RESIZE_COL
:
6089 DoEndDragResizeCol();
6092 case WXGRID_CURSOR_MOVE_COL
:
6093 if ( m_dragLastPos
== -1 )
6095 // The user clicked on the column but didn't actually drag
6096 m_colWindow
->Refresh(); // "unpress" the column
6100 DoEndMoveCol(XToPos(x
));
6104 case WXGRID_CURSOR_SELECT_COL
:
6105 case WXGRID_CURSOR_SELECT_CELL
:
6106 case WXGRID_CURSOR_RESIZE_ROW
:
6107 case WXGRID_CURSOR_SELECT_ROW
:
6108 // nothing to do (?)
6112 ChangeCursorMode(WXGRID_CURSOR_SELECT_CELL
, GetColLabelWindow());
6116 // ------------ Right button down
6118 else if ( event
.RightDown() )
6122 !SendEvent( wxEVT_GRID_LABEL_RIGHT_CLICK
, -1, col
, event
) )
6124 // no default action at the moment
6128 // ------------ Right double click
6130 else if ( event
.RightDClick() )
6134 !SendEvent( wxEVT_GRID_LABEL_RIGHT_DCLICK
, -1, col
, event
) )
6136 // no default action at the moment
6140 // ------------ No buttons down and mouse moving
6142 else if ( event
.Moving() )
6144 m_dragRowOrCol
= XToEdgeOfCol( x
);
6145 if ( m_dragRowOrCol
>= 0 )
6147 if ( m_cursorMode
== WXGRID_CURSOR_SELECT_CELL
)
6149 // don't capture the cursor yet
6150 if ( CanDragColSize() )
6151 ChangeCursorMode(WXGRID_CURSOR_RESIZE_COL
, GetColLabelWindow(), false);
6154 else if ( m_cursorMode
!= WXGRID_CURSOR_SELECT_CELL
)
6156 ChangeCursorMode(WXGRID_CURSOR_SELECT_CELL
, GetColLabelWindow(), false);
6161 void wxGrid::ProcessCornerLabelMouseEvent( wxMouseEvent
& event
)
6163 if ( event
.LeftDown() )
6165 // indicate corner label by having both row and
6168 if ( !SendEvent( wxEVT_GRID_LABEL_LEFT_CLICK
, -1, -1, event
) )
6173 else if ( event
.LeftDClick() )
6175 SendEvent( wxEVT_GRID_LABEL_LEFT_DCLICK
, -1, -1, event
);
6177 else if ( event
.RightDown() )
6179 if ( !SendEvent( wxEVT_GRID_LABEL_RIGHT_CLICK
, -1, -1, event
) )
6181 // no default action at the moment
6184 else if ( event
.RightDClick() )
6186 if ( !SendEvent( wxEVT_GRID_LABEL_RIGHT_DCLICK
, -1, -1, event
) )
6188 // no default action at the moment
6193 void wxGrid::CancelMouseCapture()
6195 // cancel operation currently in progress, whatever it is
6198 m_isDragging
= false;
6199 m_startDragPos
= wxDefaultPosition
;
6201 m_cursorMode
= WXGRID_CURSOR_SELECT_CELL
;
6202 m_winCapture
->SetCursor( *wxSTANDARD_CURSOR
);
6203 m_winCapture
= NULL
;
6205 // remove traces of whatever we drew on screen
6210 void wxGrid::ChangeCursorMode(CursorMode mode
,
6215 static const wxChar
*cursorModes
[] =
6225 wxLogTrace(_T("grid"),
6226 _T("wxGrid cursor mode (mouse capture for %s): %s -> %s"),
6227 win
== m_colWindow
? _T("colLabelWin")
6228 : win
? _T("rowLabelWin")
6230 cursorModes
[m_cursorMode
], cursorModes
[mode
]);
6233 if ( mode
== m_cursorMode
&&
6234 win
== m_winCapture
&&
6235 captureMouse
== (m_winCapture
!= NULL
))
6240 // by default use the grid itself
6246 m_winCapture
->ReleaseMouse();
6247 m_winCapture
= NULL
;
6250 m_cursorMode
= mode
;
6252 switch ( m_cursorMode
)
6254 case WXGRID_CURSOR_RESIZE_ROW
:
6255 win
->SetCursor( m_rowResizeCursor
);
6258 case WXGRID_CURSOR_RESIZE_COL
:
6259 win
->SetCursor( m_colResizeCursor
);
6262 case WXGRID_CURSOR_MOVE_COL
:
6263 win
->SetCursor( wxCursor(wxCURSOR_HAND
) );
6267 win
->SetCursor( *wxSTANDARD_CURSOR
);
6271 // we need to capture mouse when resizing
6272 bool resize
= m_cursorMode
== WXGRID_CURSOR_RESIZE_ROW
||
6273 m_cursorMode
== WXGRID_CURSOR_RESIZE_COL
;
6275 if ( captureMouse
&& resize
)
6277 win
->CaptureMouse();
6282 // ----------------------------------------------------------------------------
6283 // grid mouse event processing
6284 // ----------------------------------------------------------------------------
6287 wxGrid::DoGridCellDrag(wxMouseEvent
& event
,
6288 const wxGridCellCoords
& coords
,
6291 if ( coords
== wxGridNoCellCoords
)
6292 return; // we're outside any valid cell
6294 // Hide the edit control, so it won't interfere with drag-shrinking.
6295 if ( IsCellEditControlShown() )
6297 HideCellEditControl();
6298 SaveEditControlValue();
6301 switch ( event
.GetModifiers() )
6304 if ( m_selectedBlockCorner
== wxGridNoCellCoords
)
6305 m_selectedBlockCorner
= coords
;
6306 UpdateBlockBeingSelected(m_selectedBlockCorner
, coords
);
6310 if ( CanDragCell() )
6314 if ( m_selectedBlockCorner
== wxGridNoCellCoords
)
6315 m_selectedBlockCorner
= coords
;
6317 SendEvent(wxEVT_GRID_CELL_BEGIN_DRAG
, coords
, event
);
6322 UpdateBlockBeingSelected(m_currentCellCoords
, coords
);
6326 // we don't handle the other key modifiers
6331 void wxGrid::DoGridLineDrag(wxMouseEvent
& event
, const wxGridOperations
& oper
)
6333 wxClientDC
dc(m_gridWin
);
6335 dc
.SetLogicalFunction(wxINVERT
);
6337 const wxRect
rectWin(CalcUnscrolledPosition(wxPoint(0, 0)),
6338 m_gridWin
->GetClientSize());
6340 // erase the previously drawn line, if any
6341 if ( m_dragLastPos
>= 0 )
6342 oper
.DrawParallelLineInRect(dc
, rectWin
, m_dragLastPos
);
6344 // we need the vertical position for rows and horizontal for columns here
6345 m_dragLastPos
= oper
.Dual().Select(CalcUnscrolledPosition(event
.GetPosition()));
6347 // don't allow resizing beneath the minimal size
6348 const int posMin
= oper
.GetLineStartPos(this, m_dragRowOrCol
) +
6349 oper
.GetMinimalLineSize(this, m_dragRowOrCol
);
6350 if ( m_dragLastPos
< posMin
)
6351 m_dragLastPos
= posMin
;
6353 // and draw it at the new position
6354 oper
.DrawParallelLineInRect(dc
, rectWin
, m_dragLastPos
);
6357 void wxGrid::DoGridDragEvent(wxMouseEvent
& event
, const wxGridCellCoords
& coords
)
6359 if ( !m_isDragging
)
6361 // Don't start doing anything until the mouse has been dragged far
6363 const wxPoint
& pt
= event
.GetPosition();
6364 if ( m_startDragPos
== wxDefaultPosition
)
6366 m_startDragPos
= pt
;
6370 if ( abs(m_startDragPos
.x
- pt
.x
) <= DRAG_SENSITIVITY
&&
6371 abs(m_startDragPos
.y
- pt
.y
) <= DRAG_SENSITIVITY
)
6375 const bool isFirstDrag
= !m_isDragging
;
6376 m_isDragging
= true;
6378 switch ( m_cursorMode
)
6380 case WXGRID_CURSOR_SELECT_CELL
:
6381 DoGridCellDrag(event
, coords
, isFirstDrag
);
6384 case WXGRID_CURSOR_RESIZE_ROW
:
6385 DoGridLineDrag(event
, wxGridRowOperations());
6388 case WXGRID_CURSOR_RESIZE_COL
:
6389 DoGridLineDrag(event
, wxGridColumnOperations());
6398 m_winCapture
= m_gridWin
;
6399 m_winCapture
->CaptureMouse();
6404 wxGrid::DoGridCellLeftDown(wxMouseEvent
& event
,
6405 const wxGridCellCoords
& coords
,
6408 if ( SendEvent(wxEVT_GRID_CELL_LEFT_CLICK
, coords
, event
) )
6410 // event handled by user code, no need to do anything here
6414 if ( !event
.CmdDown() )
6417 if ( event
.ShiftDown() )
6421 m_selection
->SelectBlock(m_currentCellCoords
, coords
, event
);
6422 m_selectedBlockCorner
= coords
;
6425 else if ( XToEdgeOfCol(pos
.x
) < 0 && YToEdgeOfRow(pos
.y
) < 0 )
6427 DisableCellEditControl();
6428 MakeCellVisible( coords
);
6430 if ( event
.CmdDown() )
6434 m_selection
->ToggleCellSelection(coords
, event
);
6437 m_selectedBlockTopLeft
= wxGridNoCellCoords
;
6438 m_selectedBlockBottomRight
= wxGridNoCellCoords
;
6439 m_selectedBlockCorner
= coords
;
6443 m_waitForSlowClick
= m_currentCellCoords
== coords
&&
6444 coords
!= wxGridNoCellCoords
;
6445 SetCurrentCell( coords
);
6451 wxGrid::DoGridCellLeftDClick(wxMouseEvent
& event
,
6452 const wxGridCellCoords
& coords
,
6455 if ( XToEdgeOfCol(pos
.x
) < 0 && YToEdgeOfRow(pos
.y
) < 0 )
6457 if ( !SendEvent(wxEVT_GRID_CELL_LEFT_DCLICK
, coords
, event
) )
6459 // we want double click to select a cell and start editing
6460 // (i.e. to behave in same way as sequence of two slow clicks):
6461 m_waitForSlowClick
= true;
6467 wxGrid::DoGridCellLeftUp(wxMouseEvent
& event
, const wxGridCellCoords
& coords
)
6469 if ( m_cursorMode
== WXGRID_CURSOR_SELECT_CELL
)
6473 m_winCapture
->ReleaseMouse();
6474 m_winCapture
= NULL
;
6477 if ( coords
== m_currentCellCoords
&& m_waitForSlowClick
&& CanEnableCellControl() )
6480 EnableCellEditControl();
6482 wxGridCellAttr
*attr
= GetCellAttr(coords
);
6483 wxGridCellEditor
*editor
= attr
->GetEditor(this, coords
.GetRow(), coords
.GetCol());
6484 editor
->StartingClick();
6488 m_waitForSlowClick
= false;
6490 else if ( m_selectedBlockTopLeft
!= wxGridNoCellCoords
&&
6491 m_selectedBlockBottomRight
!= wxGridNoCellCoords
)
6495 m_selection
->SelectBlock( m_selectedBlockTopLeft
,
6496 m_selectedBlockBottomRight
,
6500 m_selectedBlockTopLeft
= wxGridNoCellCoords
;
6501 m_selectedBlockBottomRight
= wxGridNoCellCoords
;
6503 // Show the edit control, if it has been hidden for
6505 ShowCellEditControl();
6508 else if ( m_cursorMode
== WXGRID_CURSOR_RESIZE_ROW
)
6510 ChangeCursorMode(WXGRID_CURSOR_SELECT_CELL
);
6511 DoEndDragResizeRow();
6513 // Note: we are ending the event *after* doing
6514 // default processing in this case
6516 SendEvent( wxEVT_GRID_ROW_SIZE
, m_dragRowOrCol
, -1, event
);
6518 else if ( m_cursorMode
== WXGRID_CURSOR_RESIZE_COL
)
6520 ChangeCursorMode(WXGRID_CURSOR_SELECT_CELL
);
6521 DoEndDragResizeCol();
6528 wxGrid::DoGridMouseMoveEvent(wxMouseEvent
& WXUNUSED(event
),
6529 const wxGridCellCoords
& coords
,
6532 if ( coords
.GetRow() < 0 || coords
.GetCol() < 0 )
6534 // out of grid cell area
6535 ChangeCursorMode(WXGRID_CURSOR_SELECT_CELL
);
6539 int dragRow
= YToEdgeOfRow( pos
.y
);
6540 int dragCol
= XToEdgeOfCol( pos
.x
);
6542 // Dragging on the corner of a cell to resize in both
6543 // directions is not implemented yet...
6545 if ( dragRow
>= 0 && dragCol
>= 0 )
6547 ChangeCursorMode(WXGRID_CURSOR_SELECT_CELL
);
6553 m_dragRowOrCol
= dragRow
;
6555 if ( m_cursorMode
== WXGRID_CURSOR_SELECT_CELL
)
6557 if ( CanDragRowSize() && CanDragGridSize() )
6558 ChangeCursorMode(WXGRID_CURSOR_RESIZE_ROW
, NULL
, false);
6561 // When using the native header window we can only resize the columns by
6562 // dragging the dividers in it because we can't make it enter into the
6563 // column resizing mode programmatically
6564 else if ( dragCol
>= 0 && !m_useNativeHeader
)
6566 m_dragRowOrCol
= dragCol
;
6568 if ( m_cursorMode
== WXGRID_CURSOR_SELECT_CELL
)
6570 if ( CanDragColSize() && CanDragGridSize() )
6571 ChangeCursorMode(WXGRID_CURSOR_RESIZE_COL
, NULL
, false);
6574 else // Neither on a row or col edge
6576 if ( m_cursorMode
!= WXGRID_CURSOR_SELECT_CELL
)
6578 ChangeCursorMode(WXGRID_CURSOR_SELECT_CELL
);
6583 void wxGrid::ProcessGridCellMouseEvent(wxMouseEvent
& event
)
6585 const wxPoint pos
= CalcUnscrolledPosition(event
.GetPosition());
6587 // coordinates of the cell under mouse
6588 wxGridCellCoords coords
= XYToCell(pos
);
6590 int cell_rows
, cell_cols
;
6591 GetCellSize( coords
.GetRow(), coords
.GetCol(), &cell_rows
, &cell_cols
);
6592 if ( (cell_rows
< 0) || (cell_cols
< 0) )
6594 coords
.SetRow(coords
.GetRow() + cell_rows
);
6595 coords
.SetCol(coords
.GetCol() + cell_cols
);
6598 if ( event
.Dragging() )
6600 if ( event
.LeftIsDown() )
6601 DoGridDragEvent(event
, coords
);
6607 m_isDragging
= false;
6608 m_startDragPos
= wxDefaultPosition
;
6610 // VZ: if we do this, the mode is reset to WXGRID_CURSOR_SELECT_CELL
6611 // immediately after it becomes WXGRID_CURSOR_RESIZE_ROW/COL under
6614 if ( event
.Entering() || event
.Leaving() )
6616 ChangeCursorMode(WXGRID_CURSOR_SELECT_CELL
);
6617 m_gridWin
->SetCursor( *wxSTANDARD_CURSOR
);
6621 // deal with various button presses
6622 if ( event
.IsButton() )
6624 if ( coords
!= wxGridNoCellCoords
)
6626 DisableCellEditControl();
6628 if ( event
.LeftDown() )
6629 DoGridCellLeftDown(event
, coords
, pos
);
6630 else if ( event
.LeftDClick() )
6631 DoGridCellLeftDClick(event
, coords
, pos
);
6632 else if ( event
.RightDown() )
6633 SendEvent(wxEVT_GRID_CELL_RIGHT_CLICK
, coords
, event
);
6634 else if ( event
.RightDClick() )
6635 SendEvent(wxEVT_GRID_CELL_RIGHT_DCLICK
, coords
, event
);
6638 // this one should be called even if we're not over any cell
6639 if ( event
.LeftUp() )
6641 DoGridCellLeftUp(event
, coords
);
6644 else if ( event
.Moving() )
6646 DoGridMouseMoveEvent(event
, coords
, pos
);
6648 else // unknown mouse event?
6654 void wxGrid::DoEndDragResizeLine(const wxGridOperations
& oper
)
6656 if ( m_dragLastPos
== -1 )
6659 const wxGridOperations
& doper
= oper
.Dual();
6661 const wxSize size
= m_gridWin
->GetClientSize();
6663 const wxPoint ptOrigin
= CalcUnscrolledPosition(wxPoint(0, 0));
6665 // erase the last line we drew
6666 wxClientDC
dc(m_gridWin
);
6668 dc
.SetLogicalFunction(wxINVERT
);
6670 const int posLineStart
= oper
.Select(ptOrigin
);
6671 const int posLineEnd
= oper
.Select(ptOrigin
) + oper
.Select(size
);
6673 oper
.DrawParallelLine(dc
, posLineStart
, posLineEnd
, m_dragLastPos
);
6675 // temporarily hide the edit control before resizing
6676 HideCellEditControl();
6677 SaveEditControlValue();
6679 // do resize the line
6680 const int lineStart
= oper
.GetLineStartPos(this, m_dragRowOrCol
);
6681 oper
.SetLineSize(this, m_dragRowOrCol
,
6682 wxMax(m_dragLastPos
- lineStart
,
6683 oper
.GetMinimalLineSize(this, m_dragRowOrCol
)));
6687 // refresh now if we're not frozen
6688 if ( !GetBatchCount() )
6690 // we need to refresh everything beyond the resized line in the header
6693 // get the position from which to refresh in the other direction
6694 wxRect
rect(CellToRect(oper
.MakeCoords(m_dragRowOrCol
, 0)));
6695 rect
.SetPosition(CalcScrolledPosition(rect
.GetPosition()));
6697 // we only need the ordinate (for rows) or abscissa (for columns) here,
6698 // and need to cover the entire window in the other direction
6699 oper
.Select(rect
) = 0;
6701 wxRect
rectHeader(rect
.GetPosition(),
6704 oper
.GetHeaderWindowSize(this),
6705 doper
.Select(size
) - doper
.Select(rect
)
6708 oper
.GetHeaderWindow(this)->Refresh(true, &rectHeader
);
6711 // also refresh the grid window: extend the rectangle
6714 oper
.SelectSize(rect
) = oper
.Select(size
);
6716 int subtractLines
= 0;
6717 const int lineStart
= oper
.PosToLine(this, posLineStart
);
6718 if ( lineStart
>= 0 )
6720 // ensure that if we have a multi-cell block we redraw all of
6721 // it by increasing the refresh area to cover it entirely if a
6722 // part of it is affected
6723 const int lineEnd
= oper
.PosToLine(this, posLineEnd
, true);
6724 for ( int line
= lineStart
; line
< lineEnd
; line
++ )
6726 int cellLines
= oper
.Select(
6727 GetCellSize(oper
.MakeCoords(m_dragRowOrCol
, line
)));
6728 if ( cellLines
< subtractLines
)
6729 subtractLines
= cellLines
;
6734 oper
.GetLineStartPos(this, m_dragRowOrCol
+ subtractLines
);
6735 startPos
= doper
.CalcScrolledPosition(this, startPos
);
6737 doper
.Select(rect
) = startPos
;
6738 doper
.SelectSize(rect
) = doper
.Select(size
) - startPos
;
6740 m_gridWin
->Refresh(false, &rect
);
6744 // show the edit control back again
6745 ShowCellEditControl();
6748 void wxGrid::DoEndDragResizeRow()
6750 DoEndDragResizeLine(wxGridRowOperations());
6753 void wxGrid::DoEndDragResizeCol(wxMouseEvent
*event
)
6755 DoEndDragResizeLine(wxGridColumnOperations());
6757 // Note: we are ending the event *after* doing
6758 // default processing in this case
6761 SendEvent( wxEVT_GRID_COL_SIZE
, -1, m_dragRowOrCol
, *event
);
6763 SendEvent( wxEVT_GRID_COL_SIZE
, -1, m_dragRowOrCol
);
6766 void wxGrid::DoStartMoveCol(int col
)
6768 m_dragRowOrCol
= col
;
6771 void wxGrid::DoEndMoveCol(int pos
)
6773 wxASSERT_MSG( m_dragRowOrCol
!= -1, "no matching DoStartMoveCol?" );
6775 if ( SendEvent(wxEVT_GRID_COL_MOVE
, -1, m_dragRowOrCol
) != -1 )
6776 SetColPos(m_dragRowOrCol
, pos
);
6777 //else: vetoed by user
6779 m_dragRowOrCol
= -1;
6782 void wxGrid::SetColPos(int idx
, int pos
)
6784 // we're going to need m_colAt now, initialize it if needed
6785 if ( m_colAt
.empty() )
6787 m_colAt
.reserve(m_numCols
);
6788 for ( int i
= 0; i
< m_numCols
; i
++ )
6789 m_colAt
.push_back(i
);
6792 wxHeaderCtrl::MoveColumnInOrderArray(m_colAt
, idx
, pos
);
6794 // also recalculate the column rights
6795 if ( !m_colWidths
.IsEmpty() )
6799 for ( colPos
= 0; colPos
< m_numCols
; colPos
++ )
6801 int colID
= GetColAt( colPos
);
6803 colRight
+= m_colWidths
[colID
];
6804 m_colRights
[colID
] = colRight
;
6808 // and make the changes visible
6809 if ( m_useNativeHeader
)
6810 GetColHeader()->SetColumnsOrder(m_colAt
);
6812 m_colWindow
->Refresh();
6813 m_gridWin
->Refresh();
6818 void wxGrid::EnableDragColMove( bool enable
)
6820 if ( m_canDragColMove
== enable
)
6823 m_canDragColMove
= enable
;
6825 if ( !m_canDragColMove
)
6829 //Recalculate the column rights
6830 if ( !m_colWidths
.IsEmpty() )
6834 for ( colPos
= 0; colPos
< m_numCols
; colPos
++ )
6836 colRight
+= m_colWidths
[colPos
];
6837 m_colRights
[colPos
] = colRight
;
6841 m_colWindow
->Refresh();
6842 m_gridWin
->Refresh();
6848 // ------ interaction with data model
6850 bool wxGrid::ProcessTableMessage( wxGridTableMessage
& msg
)
6852 switch ( msg
.GetId() )
6854 case wxGRIDTABLE_REQUEST_VIEW_GET_VALUES
:
6855 return GetModelValues();
6857 case wxGRIDTABLE_REQUEST_VIEW_SEND_VALUES
:
6858 return SetModelValues();
6860 case wxGRIDTABLE_NOTIFY_ROWS_INSERTED
:
6861 case wxGRIDTABLE_NOTIFY_ROWS_APPENDED
:
6862 case wxGRIDTABLE_NOTIFY_ROWS_DELETED
:
6863 case wxGRIDTABLE_NOTIFY_COLS_INSERTED
:
6864 case wxGRIDTABLE_NOTIFY_COLS_APPENDED
:
6865 case wxGRIDTABLE_NOTIFY_COLS_DELETED
:
6866 return Redimension( msg
);
6873 // The behaviour of this function depends on the grid table class
6874 // Clear() function. For the default wxGridStringTable class the
6875 // behaviour is to replace all cell contents with wxEmptyString but
6876 // not to change the number of rows or cols.
6878 void wxGrid::ClearGrid()
6882 if (IsCellEditControlEnabled())
6883 DisableCellEditControl();
6886 if (!GetBatchCount())
6887 m_gridWin
->Refresh();
6892 wxGrid::DoModifyLines(bool (wxGridTableBase::*funcModify
)(size_t, size_t),
6893 int pos
, int num
, bool WXUNUSED(updateLabels
) )
6895 wxCHECK_MSG( m_created
, false, "must finish creating the grid first" );
6900 if ( IsCellEditControlEnabled() )
6901 DisableCellEditControl();
6903 return (m_table
->*funcModify
)(pos
, num
);
6905 // the table will have sent the results of the insert row
6906 // operation to this view object as a grid table message
6910 wxGrid::DoAppendLines(bool (wxGridTableBase::*funcAppend
)(size_t),
6911 int num
, bool WXUNUSED(updateLabels
))
6913 wxCHECK_MSG( m_created
, false, "must finish creating the grid first" );
6918 return (m_table
->*funcAppend
)(num
);
6922 // ----- event handlers
6925 // Generate a grid event based on a mouse event and return:
6926 // -1 if the event was vetoed
6927 // +1 if the event was processed (but not vetoed)
6928 // 0 if the event wasn't handled
6930 wxGrid::SendEvent(const wxEventType type
,
6932 wxMouseEvent
& mouseEv
)
6934 bool claimed
, vetoed
;
6936 if ( type
== wxEVT_GRID_ROW_SIZE
|| type
== wxEVT_GRID_COL_SIZE
)
6938 int rowOrCol
= (row
== -1 ? col
: row
);
6940 wxGridSizeEvent
gridEvt( GetId(),
6944 mouseEv
.GetX() + GetRowLabelSize(),
6945 mouseEv
.GetY() + GetColLabelSize(),
6948 claimed
= GetEventHandler()->ProcessEvent(gridEvt
);
6949 vetoed
= !gridEvt
.IsAllowed();
6951 else if ( type
== wxEVT_GRID_RANGE_SELECT
)
6953 // Right now, it should _never_ end up here!
6954 wxGridRangeSelectEvent
gridEvt( GetId(),
6957 m_selectedBlockTopLeft
,
6958 m_selectedBlockBottomRight
,
6962 claimed
= GetEventHandler()->ProcessEvent(gridEvt
);
6963 vetoed
= !gridEvt
.IsAllowed();
6965 else if ( type
== wxEVT_GRID_LABEL_LEFT_CLICK
||
6966 type
== wxEVT_GRID_LABEL_LEFT_DCLICK
||
6967 type
== wxEVT_GRID_LABEL_RIGHT_CLICK
||
6968 type
== wxEVT_GRID_LABEL_RIGHT_DCLICK
)
6970 wxPoint pos
= mouseEv
.GetPosition();
6972 if ( mouseEv
.GetEventObject() == GetGridRowLabelWindow() )
6973 pos
.y
+= GetColLabelSize();
6974 if ( mouseEv
.GetEventObject() == GetGridColLabelWindow() )
6975 pos
.x
+= GetRowLabelSize();
6977 wxGridEvent
gridEvt( GetId(),
6985 claimed
= GetEventHandler()->ProcessEvent(gridEvt
);
6986 vetoed
= !gridEvt
.IsAllowed();
6990 wxGridEvent
gridEvt( GetId(),
6994 mouseEv
.GetX() + GetRowLabelSize(),
6995 mouseEv
.GetY() + GetColLabelSize(),
6998 claimed
= GetEventHandler()->ProcessEvent(gridEvt
);
6999 vetoed
= !gridEvt
.IsAllowed();
7002 // A Veto'd event may not be `claimed' so test this first
7006 return claimed
? 1 : 0;
7009 // Generate a grid event of specified type, return value same as above
7011 int wxGrid::SendEvent(const wxEventType type
, int row
, int col
)
7013 bool claimed
, vetoed
;
7015 if ( type
== wxEVT_GRID_ROW_SIZE
|| type
== wxEVT_GRID_COL_SIZE
)
7017 int rowOrCol
= (row
== -1 ? col
: row
);
7019 wxGridSizeEvent
gridEvt( GetId(), type
, this, rowOrCol
);
7021 claimed
= GetEventHandler()->ProcessEvent(gridEvt
);
7022 vetoed
= !gridEvt
.IsAllowed();
7026 wxGridEvent
gridEvt( GetId(), type
, this, row
, col
);
7028 claimed
= GetEventHandler()->ProcessEvent(gridEvt
);
7029 vetoed
= !gridEvt
.IsAllowed();
7032 // A Veto'd event may not be `claimed' so test this first
7036 return claimed
? 1 : 0;
7039 void wxGrid::OnPaint( wxPaintEvent
& WXUNUSED(event
) )
7041 // needed to prevent zillions of paint events on MSW
7045 void wxGrid::Refresh(bool eraseb
, const wxRect
* rect
)
7047 // Don't do anything if between Begin/EndBatch...
7048 // EndBatch() will do all this on the last nested one anyway.
7049 if ( m_created
&& !GetBatchCount() )
7051 // Refresh to get correct scrolled position:
7052 wxScrolledWindow::Refresh(eraseb
, rect
);
7056 int rect_x
, rect_y
, rectWidth
, rectHeight
;
7057 int width_label
, width_cell
, height_label
, height_cell
;
7060 // Copy rectangle can get scroll offsets..
7061 rect_x
= rect
->GetX();
7062 rect_y
= rect
->GetY();
7063 rectWidth
= rect
->GetWidth();
7064 rectHeight
= rect
->GetHeight();
7066 width_label
= m_rowLabelWidth
- rect_x
;
7067 if (width_label
> rectWidth
)
7068 width_label
= rectWidth
;
7070 height_label
= m_colLabelHeight
- rect_y
;
7071 if (height_label
> rectHeight
)
7072 height_label
= rectHeight
;
7074 if (rect_x
> m_rowLabelWidth
)
7076 x
= rect_x
- m_rowLabelWidth
;
7077 width_cell
= rectWidth
;
7082 width_cell
= rectWidth
- (m_rowLabelWidth
- rect_x
);
7085 if (rect_y
> m_colLabelHeight
)
7087 y
= rect_y
- m_colLabelHeight
;
7088 height_cell
= rectHeight
;
7093 height_cell
= rectHeight
- (m_colLabelHeight
- rect_y
);
7096 // Paint corner label part intersecting rect.
7097 if ( width_label
> 0 && height_label
> 0 )
7099 wxRect
anotherrect(rect_x
, rect_y
, width_label
, height_label
);
7100 m_cornerLabelWin
->Refresh(eraseb
, &anotherrect
);
7103 // Paint col labels part intersecting rect.
7104 if ( width_cell
> 0 && height_label
> 0 )
7106 wxRect
anotherrect(x
, rect_y
, width_cell
, height_label
);
7107 m_colWindow
->Refresh(eraseb
, &anotherrect
);
7110 // Paint row labels part intersecting rect.
7111 if ( width_label
> 0 && height_cell
> 0 )
7113 wxRect
anotherrect(rect_x
, y
, width_label
, height_cell
);
7114 m_rowLabelWin
->Refresh(eraseb
, &anotherrect
);
7117 // Paint cell area part intersecting rect.
7118 if ( width_cell
> 0 && height_cell
> 0 )
7120 wxRect
anotherrect(x
, y
, width_cell
, height_cell
);
7121 m_gridWin
->Refresh(eraseb
, &anotherrect
);
7126 m_cornerLabelWin
->Refresh(eraseb
, NULL
);
7127 m_colWindow
->Refresh(eraseb
, NULL
);
7128 m_rowLabelWin
->Refresh(eraseb
, NULL
);
7129 m_gridWin
->Refresh(eraseb
, NULL
);
7134 void wxGrid::OnSize(wxSizeEvent
& WXUNUSED(event
))
7136 if (m_targetWindow
!= this) // check whether initialisation has been done
7138 // reposition our children windows
7143 void wxGrid::OnKeyDown( wxKeyEvent
& event
)
7145 if ( m_inOnKeyDown
)
7147 // shouldn't be here - we are going round in circles...
7149 wxFAIL_MSG( wxT("wxGrid::OnKeyDown called while already active") );
7152 m_inOnKeyDown
= true;
7154 // propagate the event up and see if it gets processed
7155 wxWindow
*parent
= GetParent();
7156 wxKeyEvent
keyEvt( event
);
7157 keyEvt
.SetEventObject( parent
);
7159 if ( !parent
->GetEventHandler()->ProcessEvent( keyEvt
) )
7161 if (GetLayoutDirection() == wxLayout_RightToLeft
)
7163 if (event
.GetKeyCode() == WXK_RIGHT
)
7164 event
.m_keyCode
= WXK_LEFT
;
7165 else if (event
.GetKeyCode() == WXK_LEFT
)
7166 event
.m_keyCode
= WXK_RIGHT
;
7169 // try local handlers
7170 switch ( event
.GetKeyCode() )
7173 if ( event
.ControlDown() )
7174 MoveCursorUpBlock( event
.ShiftDown() );
7176 MoveCursorUp( event
.ShiftDown() );
7180 if ( event
.ControlDown() )
7181 MoveCursorDownBlock( event
.ShiftDown() );
7183 MoveCursorDown( event
.ShiftDown() );
7187 if ( event
.ControlDown() )
7188 MoveCursorLeftBlock( event
.ShiftDown() );
7190 MoveCursorLeft( event
.ShiftDown() );
7194 if ( event
.ControlDown() )
7195 MoveCursorRightBlock( event
.ShiftDown() );
7197 MoveCursorRight( event
.ShiftDown() );
7201 case WXK_NUMPAD_ENTER
:
7202 if ( event
.ControlDown() )
7204 event
.Skip(); // to let the edit control have the return
7208 if ( GetGridCursorRow() < GetNumberRows()-1 )
7210 MoveCursorDown( event
.ShiftDown() );
7214 // at the bottom of a column
7215 DisableCellEditControl();
7225 if (event
.ShiftDown())
7227 if ( GetGridCursorCol() > 0 )
7229 MoveCursorLeft( false );
7234 DisableCellEditControl();
7239 if ( GetGridCursorCol() < GetNumberCols() - 1 )
7241 MoveCursorRight( false );
7246 DisableCellEditControl();
7252 if ( event
.ControlDown() )
7263 if ( event
.ControlDown() )
7265 GoToCell(m_numRows
- 1, m_numCols
- 1);
7282 // Ctrl-Space selects the current column, Shift-Space -- the
7283 // current row and Ctrl-Shift-Space -- everything
7284 switch ( m_selection
? event
.GetModifiers() : wxMOD_NONE
)
7287 m_selection
->SelectCol(m_currentCellCoords
.GetCol());
7291 m_selection
->SelectRow(m_currentCellCoords
.GetRow());
7294 case wxMOD_CONTROL
| wxMOD_SHIFT
:
7295 m_selection
->SelectBlock(0, 0,
7296 m_numRows
- 1, m_numCols
- 1);
7300 if ( !IsEditable() )
7302 MoveCursorRight(false);
7305 //else: fall through
7318 m_inOnKeyDown
= false;
7321 void wxGrid::OnKeyUp( wxKeyEvent
& event
)
7323 // try local handlers
7325 if ( event
.GetKeyCode() == WXK_SHIFT
)
7327 if ( m_selectedBlockTopLeft
!= wxGridNoCellCoords
&&
7328 m_selectedBlockBottomRight
!= wxGridNoCellCoords
)
7332 m_selection
->SelectBlock(
7333 m_selectedBlockTopLeft
,
7334 m_selectedBlockBottomRight
,
7339 m_selectedBlockTopLeft
= wxGridNoCellCoords
;
7340 m_selectedBlockBottomRight
= wxGridNoCellCoords
;
7341 m_selectedBlockCorner
= wxGridNoCellCoords
;
7345 void wxGrid::OnChar( wxKeyEvent
& event
)
7347 // is it possible to edit the current cell at all?
7348 if ( !IsCellEditControlEnabled() && CanEnableCellControl() )
7350 // yes, now check whether the cells editor accepts the key
7351 int row
= m_currentCellCoords
.GetRow();
7352 int col
= m_currentCellCoords
.GetCol();
7353 wxGridCellAttr
*attr
= GetCellAttr(row
, col
);
7354 wxGridCellEditor
*editor
= attr
->GetEditor(this, row
, col
);
7356 // <F2> is special and will always start editing, for
7357 // other keys - ask the editor itself
7358 if ( (event
.GetKeyCode() == WXK_F2
&& !event
.HasModifiers())
7359 || editor
->IsAcceptedKey(event
) )
7361 // ensure cell is visble
7362 MakeCellVisible(row
, col
);
7363 EnableCellEditControl();
7365 // a problem can arise if the cell is not completely
7366 // visible (even after calling MakeCellVisible the
7367 // control is not created and calling StartingKey will
7369 if ( event
.GetKeyCode() != WXK_F2
&& editor
->IsCreated() && m_cellEditCtrlEnabled
)
7370 editor
->StartingKey(event
);
7386 void wxGrid::OnEraseBackground(wxEraseEvent
&)
7390 bool wxGrid::SetCurrentCell( const wxGridCellCoords
& coords
)
7392 if ( SendEvent(wxEVT_GRID_SELECT_CELL
, coords
) == -1 )
7394 // the event has been vetoed - do nothing
7398 #if !defined(__WXMAC__)
7399 wxClientDC
dc( m_gridWin
);
7403 if ( m_currentCellCoords
!= wxGridNoCellCoords
)
7405 DisableCellEditControl();
7407 if ( IsVisible( m_currentCellCoords
, false ) )
7410 r
= BlockToDeviceRect( m_currentCellCoords
, m_currentCellCoords
);
7411 if ( !m_gridLinesEnabled
)
7419 wxGridCellCoordsArray cells
= CalcCellsExposed( r
);
7421 // Otherwise refresh redraws the highlight!
7422 m_currentCellCoords
= coords
;
7424 #if defined(__WXMAC__)
7425 m_gridWin
->Refresh(true /*, & r */);
7427 DrawGridCellArea( dc
, cells
);
7428 DrawAllGridLines( dc
, r
);
7433 m_currentCellCoords
= coords
;
7435 wxGridCellAttr
*attr
= GetCellAttr( coords
);
7436 #if !defined(__WXMAC__)
7437 DrawCellHighlight( dc
, attr
);
7445 wxGrid::UpdateBlockBeingSelected(int topRow
, int leftCol
,
7446 int bottomRow
, int rightCol
)
7450 switch ( m_selection
->GetSelectionMode() )
7453 wxFAIL_MSG( "unknown selection mode" );
7456 case wxGridSelectCells
:
7457 // arbitrary blocks selection allowed so just use the cell
7458 // coordinates as is
7461 case wxGridSelectRows
:
7462 // only full rows selection allowd, ensure that we do select
7465 rightCol
= GetNumberCols() - 1;
7468 case wxGridSelectColumns
:
7469 // same as above but for columns
7471 bottomRow
= GetNumberRows() - 1;
7474 case wxGridSelectRowsOrColumns
:
7475 // in this mode we can select only full rows or full columns so
7476 // it doesn't make sense to select blocks at all (and we can't
7477 // extend the block because there is no preferred direction, we
7478 // could only extend it to cover the entire grid but this is
7484 m_selectedBlockCorner
= wxGridCellCoords(bottomRow
, rightCol
);
7485 MakeCellVisible(m_selectedBlockCorner
);
7487 EnsureFirstLessThanSecond(topRow
, bottomRow
);
7488 EnsureFirstLessThanSecond(leftCol
, rightCol
);
7490 wxGridCellCoords updateTopLeft
= wxGridCellCoords(topRow
, leftCol
),
7491 updateBottomRight
= wxGridCellCoords(bottomRow
, rightCol
);
7493 // First the case that we selected a completely new area
7494 if ( m_selectedBlockTopLeft
== wxGridNoCellCoords
||
7495 m_selectedBlockBottomRight
== wxGridNoCellCoords
)
7498 rect
= BlockToDeviceRect( wxGridCellCoords ( topRow
, leftCol
),
7499 wxGridCellCoords ( bottomRow
, rightCol
) );
7500 m_gridWin
->Refresh( false, &rect
);
7503 // Now handle changing an existing selection area.
7504 else if ( m_selectedBlockTopLeft
!= updateTopLeft
||
7505 m_selectedBlockBottomRight
!= updateBottomRight
)
7507 // Compute two optimal update rectangles:
7508 // Either one rectangle is a real subset of the
7509 // other, or they are (almost) disjoint!
7511 bool need_refresh
[4];
7515 need_refresh
[3] = false;
7518 // Store intermediate values
7519 wxCoord oldLeft
= m_selectedBlockTopLeft
.GetCol();
7520 wxCoord oldTop
= m_selectedBlockTopLeft
.GetRow();
7521 wxCoord oldRight
= m_selectedBlockBottomRight
.GetCol();
7522 wxCoord oldBottom
= m_selectedBlockBottomRight
.GetRow();
7524 // Determine the outer/inner coordinates.
7525 EnsureFirstLessThanSecond(oldLeft
, leftCol
);
7526 EnsureFirstLessThanSecond(oldTop
, topRow
);
7527 EnsureFirstLessThanSecond(rightCol
, oldRight
);
7528 EnsureFirstLessThanSecond(bottomRow
, oldBottom
);
7530 // Now, either the stuff marked old is the outer
7531 // rectangle or we don't have a situation where one
7532 // is contained in the other.
7534 if ( oldLeft
< leftCol
)
7536 // Refresh the newly selected or deselected
7537 // area to the left of the old or new selection.
7538 need_refresh
[0] = true;
7539 rect
[0] = BlockToDeviceRect(
7540 wxGridCellCoords( oldTop
, oldLeft
),
7541 wxGridCellCoords( oldBottom
, leftCol
- 1 ) );
7544 if ( oldTop
< topRow
)
7546 // Refresh the newly selected or deselected
7547 // area above the old or new selection.
7548 need_refresh
[1] = true;
7549 rect
[1] = BlockToDeviceRect(
7550 wxGridCellCoords( oldTop
, leftCol
),
7551 wxGridCellCoords( topRow
- 1, rightCol
) );
7554 if ( oldRight
> rightCol
)
7556 // Refresh the newly selected or deselected
7557 // area to the right of the old or new selection.
7558 need_refresh
[2] = true;
7559 rect
[2] = BlockToDeviceRect(
7560 wxGridCellCoords( oldTop
, rightCol
+ 1 ),
7561 wxGridCellCoords( oldBottom
, oldRight
) );
7564 if ( oldBottom
> bottomRow
)
7566 // Refresh the newly selected or deselected
7567 // area below the old or new selection.
7568 need_refresh
[3] = true;
7569 rect
[3] = BlockToDeviceRect(
7570 wxGridCellCoords( bottomRow
+ 1, leftCol
),
7571 wxGridCellCoords( oldBottom
, rightCol
) );
7574 // various Refresh() calls
7575 for (i
= 0; i
< 4; i
++ )
7576 if ( need_refresh
[i
] && rect
[i
] != wxGridNoCellRect
)
7577 m_gridWin
->Refresh( false, &(rect
[i
]) );
7581 m_selectedBlockTopLeft
= updateTopLeft
;
7582 m_selectedBlockBottomRight
= updateBottomRight
;
7586 // ------ functions to get/send data (see also public functions)
7589 bool wxGrid::GetModelValues()
7591 // Hide the editor, so it won't hide a changed value.
7592 HideCellEditControl();
7596 // all we need to do is repaint the grid
7598 m_gridWin
->Refresh();
7605 bool wxGrid::SetModelValues()
7609 // Disable the editor, so it won't hide a changed value.
7610 // Do we also want to save the current value of the editor first?
7612 DisableCellEditControl();
7616 for ( row
= 0; row
< m_numRows
; row
++ )
7618 for ( col
= 0; col
< m_numCols
; col
++ )
7620 m_table
->SetValue( row
, col
, GetCellValue(row
, col
) );
7630 // Note - this function only draws cells that are in the list of
7631 // exposed cells (usually set from the update region by
7632 // CalcExposedCells)
7634 void wxGrid::DrawGridCellArea( wxDC
& dc
, const wxGridCellCoordsArray
& cells
)
7636 if ( !m_numRows
|| !m_numCols
)
7639 int i
, numCells
= cells
.GetCount();
7640 int row
, col
, cell_rows
, cell_cols
;
7641 wxGridCellCoordsArray redrawCells
;
7643 for ( i
= numCells
- 1; i
>= 0; i
-- )
7645 row
= cells
[i
].GetRow();
7646 col
= cells
[i
].GetCol();
7647 GetCellSize( row
, col
, &cell_rows
, &cell_cols
);
7649 // If this cell is part of a multicell block, find owner for repaint
7650 if ( cell_rows
<= 0 || cell_cols
<= 0 )
7652 wxGridCellCoords
cell( row
+ cell_rows
, col
+ cell_cols
);
7653 bool marked
= false;
7654 for ( int j
= 0; j
< numCells
; j
++ )
7656 if ( cell
== cells
[j
] )
7665 int count
= redrawCells
.GetCount();
7666 for (int j
= 0; j
< count
; j
++)
7668 if ( cell
== redrawCells
[j
] )
7676 redrawCells
.Add( cell
);
7679 // don't bother drawing this cell
7683 // If this cell is empty, find cell to left that might want to overflow
7684 if (m_table
&& m_table
->IsEmptyCell(row
, col
))
7686 for ( int l
= 0; l
< cell_rows
; l
++ )
7688 // find a cell in this row to leave already marked for repaint
7690 for (int k
= 0; k
< int(redrawCells
.GetCount()); k
++)
7691 if ((redrawCells
[k
].GetCol() < left
) &&
7692 (redrawCells
[k
].GetRow() == row
))
7694 left
= redrawCells
[k
].GetCol();
7698 left
= 0; // oh well
7700 for (int j
= col
- 1; j
>= left
; j
--)
7702 if (!m_table
->IsEmptyCell(row
+ l
, j
))
7704 if (GetCellOverflow(row
+ l
, j
))
7706 wxGridCellCoords
cell(row
+ l
, j
);
7707 bool marked
= false;
7709 for (int k
= 0; k
< numCells
; k
++)
7711 if ( cell
== cells
[k
] )
7720 int count
= redrawCells
.GetCount();
7721 for (int k
= 0; k
< count
; k
++)
7723 if ( cell
== redrawCells
[k
] )
7730 redrawCells
.Add( cell
);
7739 DrawCell( dc
, cells
[i
] );
7742 numCells
= redrawCells
.GetCount();
7744 for ( i
= numCells
- 1; i
>= 0; i
-- )
7746 DrawCell( dc
, redrawCells
[i
] );
7750 void wxGrid::DrawGridSpace( wxDC
& dc
)
7753 m_gridWin
->GetClientSize( &cw
, &ch
);
7756 CalcUnscrolledPosition( cw
, ch
, &right
, &bottom
);
7758 int rightCol
= m_numCols
> 0 ? GetColRight(GetColAt( m_numCols
- 1 )) : 0;
7759 int bottomRow
= m_numRows
> 0 ? GetRowBottom(m_numRows
- 1) : 0;
7761 if ( right
> rightCol
|| bottom
> bottomRow
)
7764 CalcUnscrolledPosition( 0, 0, &left
, &top
);
7766 dc
.SetBrush(GetDefaultCellBackgroundColour());
7767 dc
.SetPen( *wxTRANSPARENT_PEN
);
7769 if ( right
> rightCol
)
7771 dc
.DrawRectangle( rightCol
, top
, right
- rightCol
, ch
);
7774 if ( bottom
> bottomRow
)
7776 dc
.DrawRectangle( left
, bottomRow
, cw
, bottom
- bottomRow
);
7781 void wxGrid::DrawCell( wxDC
& dc
, const wxGridCellCoords
& coords
)
7783 int row
= coords
.GetRow();
7784 int col
= coords
.GetCol();
7786 if ( GetColWidth(col
) <= 0 || GetRowHeight(row
) <= 0 )
7789 // we draw the cell border ourselves
7790 wxGridCellAttr
* attr
= GetCellAttr(row
, col
);
7792 bool isCurrent
= coords
== m_currentCellCoords
;
7794 wxRect rect
= CellToRect( row
, col
);
7796 // if the editor is shown, we should use it and not the renderer
7797 // Note: However, only if it is really _shown_, i.e. not hidden!
7798 if ( isCurrent
&& IsCellEditControlShown() )
7800 // NB: this "#if..." is temporary and fixes a problem where the
7801 // edit control is erased by this code after being rendered.
7802 // On wxMac (QD build only), the cell editor is a wxTextCntl and is rendered
7803 // implicitly, causing this out-of order render.
7804 #if !defined(__WXMAC__)
7805 wxGridCellEditor
*editor
= attr
->GetEditor(this, row
, col
);
7806 editor
->PaintBackground(rect
, attr
);
7812 // but all the rest is drawn by the cell renderer and hence may be customized
7813 wxGridCellRenderer
*renderer
= attr
->GetRenderer(this, row
, col
);
7814 renderer
->Draw(*this, *attr
, dc
, rect
, row
, col
, IsInSelection(coords
));
7821 void wxGrid::DrawCellHighlight( wxDC
& dc
, const wxGridCellAttr
*attr
)
7823 // don't show highlight when the grid doesn't have focus
7827 int row
= m_currentCellCoords
.GetRow();
7828 int col
= m_currentCellCoords
.GetCol();
7830 if ( GetColWidth(col
) <= 0 || GetRowHeight(row
) <= 0 )
7833 wxRect rect
= CellToRect(row
, col
);
7835 // hmmm... what could we do here to show that the cell is disabled?
7836 // for now, I just draw a thinner border than for the other ones, but
7837 // it doesn't look really good
7839 int penWidth
= attr
->IsReadOnly() ? m_cellHighlightROPenWidth
: m_cellHighlightPenWidth
;
7843 // The center of the drawn line is where the position/width/height of
7844 // the rectangle is actually at (on wxMSW at least), so the
7845 // size of the rectangle is reduced to compensate for the thickness of
7846 // the line. If this is too strange on non-wxMSW platforms then
7847 // please #ifdef this appropriately.
7848 rect
.x
+= penWidth
/ 2;
7849 rect
.y
+= penWidth
/ 2;
7850 rect
.width
-= penWidth
- 1;
7851 rect
.height
-= penWidth
- 1;
7853 // Now draw the rectangle
7854 // use the cellHighlightColour if the cell is inside a selection, this
7855 // will ensure the cell is always visible.
7856 dc
.SetPen(wxPen(IsInSelection(row
,col
) ? m_selectionForeground
7857 : m_cellHighlightColour
,
7859 dc
.SetBrush(*wxTRANSPARENT_BRUSH
);
7860 dc
.DrawRectangle(rect
);
7864 wxPen
wxGrid::GetDefaultGridLinePen()
7866 return wxPen(GetGridLineColour());
7869 wxPen
wxGrid::GetRowGridLinePen(int WXUNUSED(row
))
7871 return GetDefaultGridLinePen();
7874 wxPen
wxGrid::GetColGridLinePen(int WXUNUSED(col
))
7876 return GetDefaultGridLinePen();
7879 void wxGrid::DrawCellBorder( wxDC
& dc
, const wxGridCellCoords
& coords
)
7881 int row
= coords
.GetRow();
7882 int col
= coords
.GetCol();
7883 if ( GetColWidth(col
) <= 0 || GetRowHeight(row
) <= 0 )
7887 wxRect rect
= CellToRect( row
, col
);
7889 // right hand border
7890 dc
.SetPen( GetColGridLinePen(col
) );
7891 dc
.DrawLine( rect
.x
+ rect
.width
, rect
.y
,
7892 rect
.x
+ rect
.width
, rect
.y
+ rect
.height
+ 1 );
7895 dc
.SetPen( GetRowGridLinePen(row
) );
7896 dc
.DrawLine( rect
.x
, rect
.y
+ rect
.height
,
7897 rect
.x
+ rect
.width
, rect
.y
+ rect
.height
);
7900 void wxGrid::DrawHighlight(wxDC
& dc
, const wxGridCellCoordsArray
& cells
)
7902 // This if block was previously in wxGrid::OnPaint but that doesn't
7903 // seem to get called under wxGTK - MB
7905 if ( m_currentCellCoords
== wxGridNoCellCoords
&&
7906 m_numRows
&& m_numCols
)
7908 m_currentCellCoords
.Set(0, 0);
7911 if ( IsCellEditControlShown() )
7913 // don't show highlight when the edit control is shown
7917 // if the active cell was repainted, repaint its highlight too because it
7918 // might have been damaged by the grid lines
7919 size_t count
= cells
.GetCount();
7920 for ( size_t n
= 0; n
< count
; n
++ )
7922 wxGridCellCoords cell
= cells
[n
];
7924 // If we are using attributes, then we may have just exposed another
7925 // cell in a partially-visible merged cluster of cells. If the "anchor"
7926 // (upper left) cell of this merged cluster is the cell indicated by
7927 // m_currentCellCoords, then we need to refresh the cell highlight even
7928 // though the "anchor" itself is not part of our update segment.
7929 if ( CanHaveAttributes() )
7933 GetCellSize(cell
.GetRow(), cell
.GetCol(), &rows
, &cols
);
7936 cell
.SetRow(cell
.GetRow() + rows
);
7939 cell
.SetCol(cell
.GetCol() + cols
);
7942 if ( cell
== m_currentCellCoords
)
7944 wxGridCellAttr
* attr
= GetCellAttr(m_currentCellCoords
);
7945 DrawCellHighlight(dc
, attr
);
7953 // This is used to redraw all grid lines e.g. when the grid line colour
7956 void wxGrid::DrawAllGridLines( wxDC
& dc
, const wxRegion
& WXUNUSED(reg
) )
7958 if ( !m_gridLinesEnabled
)
7961 int top
, bottom
, left
, right
;
7964 m_gridWin
->GetClientSize(&cw
, &ch
);
7965 CalcUnscrolledPosition( 0, 0, &left
, &top
);
7966 CalcUnscrolledPosition( cw
, ch
, &right
, &bottom
);
7968 // avoid drawing grid lines past the last row and col
7969 if ( m_gridLinesClipHorz
)
7974 const int lastColRight
= GetColRight(GetColAt(m_numCols
- 1));
7975 if ( right
> lastColRight
)
7976 right
= lastColRight
;
7979 if ( m_gridLinesClipVert
)
7984 const int lastRowBottom
= GetRowBottom(m_numRows
- 1);
7985 if ( bottom
> lastRowBottom
)
7986 bottom
= lastRowBottom
;
7989 // no gridlines inside multicells, clip them out
7990 int leftCol
= GetColPos( internalXToCol(left
) );
7991 int topRow
= internalYToRow(top
);
7992 int rightCol
= GetColPos( internalXToCol(right
) );
7993 int bottomRow
= internalYToRow(bottom
);
7995 wxRegion
clippedcells(0, 0, cw
, ch
);
7997 int cell_rows
, cell_cols
;
8000 for ( int j
= topRow
; j
<= bottomRow
; j
++ )
8002 for ( int colPos
= leftCol
; colPos
<= rightCol
; colPos
++ )
8004 int i
= GetColAt( colPos
);
8006 GetCellSize( j
, i
, &cell_rows
, &cell_cols
);
8007 if ((cell_rows
> 1) || (cell_cols
> 1))
8009 rect
= CellToRect(j
,i
);
8010 CalcScrolledPosition( rect
.x
, rect
.y
, &rect
.x
, &rect
.y
);
8011 clippedcells
.Subtract(rect
);
8013 else if ((cell_rows
< 0) || (cell_cols
< 0))
8015 rect
= CellToRect(j
+ cell_rows
, i
+ cell_cols
);
8016 CalcScrolledPosition( rect
.x
, rect
.y
, &rect
.x
, &rect
.y
);
8017 clippedcells
.Subtract(rect
);
8022 dc
.SetDeviceClippingRegion( clippedcells
);
8025 // horizontal grid lines
8026 for ( int i
= internalYToRow(top
); i
< m_numRows
; i
++ )
8028 int bot
= GetRowBottom(i
) - 1;
8035 dc
.SetPen( GetRowGridLinePen(i
) );
8036 dc
.DrawLine( left
, bot
, right
, bot
);
8040 // vertical grid lines
8041 for ( int colPos
= leftCol
; colPos
< m_numCols
; colPos
++ )
8043 int i
= GetColAt( colPos
);
8045 int colRight
= GetColRight(i
);
8047 if (GetLayoutDirection() != wxLayout_RightToLeft
)
8051 if ( colRight
> right
)
8054 if ( colRight
>= left
)
8056 dc
.SetPen( GetColGridLinePen(i
) );
8057 dc
.DrawLine( colRight
, top
, colRight
, bottom
);
8061 dc
.DestroyClippingRegion();
8064 void wxGrid::DrawRowLabels( wxDC
& dc
, const wxArrayInt
& rows
)
8069 const size_t numLabels
= rows
.GetCount();
8070 for ( size_t i
= 0; i
< numLabels
; i
++ )
8072 DrawRowLabel( dc
, rows
[i
] );
8076 void wxGrid::DrawRowLabel( wxDC
& dc
, int row
)
8078 if ( GetRowHeight(row
) <= 0 || m_rowLabelWidth
<= 0 )
8083 int rowTop
= GetRowTop(row
),
8084 rowBottom
= GetRowBottom(row
) - 1;
8086 dc
.SetPen( wxPen(wxSystemSettings::GetColour(wxSYS_COLOUR_3DSHADOW
)));
8087 dc
.DrawLine( m_rowLabelWidth
- 1, rowTop
, m_rowLabelWidth
- 1, rowBottom
);
8088 dc
.DrawLine( 0, rowTop
, 0, rowBottom
);
8089 dc
.DrawLine( 0, rowBottom
, m_rowLabelWidth
, rowBottom
);
8091 dc
.SetPen( *wxWHITE_PEN
);
8092 dc
.DrawLine( 1, rowTop
, 1, rowBottom
);
8093 dc
.DrawLine( 1, rowTop
, m_rowLabelWidth
- 1, rowTop
);
8095 dc
.SetBackgroundMode( wxBRUSHSTYLE_TRANSPARENT
);
8096 dc
.SetTextForeground( GetLabelTextColour() );
8097 dc
.SetFont( GetLabelFont() );
8100 GetRowLabelAlignment( &hAlign
, &vAlign
);
8103 rect
.SetY( GetRowTop(row
) + 2 );
8104 rect
.SetWidth( m_rowLabelWidth
- 4 );
8105 rect
.SetHeight( GetRowHeight(row
) - 4 );
8106 DrawTextRectangle( dc
, GetRowLabelValue( row
), rect
, hAlign
, vAlign
);
8109 void wxGrid::UseNativeColHeader(bool native
)
8111 if ( native
== m_useNativeHeader
)
8115 m_useNativeHeader
= native
;
8117 CreateColumnWindow();
8119 if ( m_useNativeHeader
)
8120 GetColHeader()->SetColumnCount(m_numCols
);
8124 void wxGrid::SetUseNativeColLabels( bool native
)
8126 wxASSERT_MSG( !m_useNativeHeader
,
8127 "doesn't make sense when using native header" );
8129 m_nativeColumnLabels
= native
;
8132 int height
= wxRendererNative::Get().GetHeaderButtonHeight( this );
8133 SetColLabelSize( height
);
8136 GetColLabelWindow()->Refresh();
8137 m_cornerLabelWin
->Refresh();
8140 void wxGrid::DrawColLabels( wxDC
& dc
,const wxArrayInt
& cols
)
8145 const size_t numLabels
= cols
.GetCount();
8146 for ( size_t i
= 0; i
< numLabels
; i
++ )
8148 DrawColLabel( dc
, cols
[i
] );
8152 void wxGrid::DrawCornerLabel(wxDC
& dc
)
8154 if ( m_nativeColumnLabels
)
8156 wxRect
rect(wxSize(m_rowLabelWidth
, m_colLabelHeight
));
8159 wxRendererNative::Get().DrawHeaderButton(m_cornerLabelWin
, dc
, rect
, 0);
8163 dc
.SetPen(wxPen(wxSystemSettings::GetColour(wxSYS_COLOUR_3DSHADOW
)));
8164 dc
.DrawLine( m_rowLabelWidth
- 1, m_colLabelHeight
- 1,
8165 m_rowLabelWidth
- 1, 0 );
8166 dc
.DrawLine( m_rowLabelWidth
- 1, m_colLabelHeight
- 1,
8167 0, m_colLabelHeight
- 1 );
8168 dc
.DrawLine( 0, 0, m_rowLabelWidth
, 0 );
8169 dc
.DrawLine( 0, 0, 0, m_colLabelHeight
);
8171 dc
.SetPen( *wxWHITE_PEN
);
8172 dc
.DrawLine( 1, 1, m_rowLabelWidth
- 1, 1 );
8173 dc
.DrawLine( 1, 1, 1, m_colLabelHeight
- 1 );
8177 void wxGrid::DrawColLabel(wxDC
& dc
, int col
)
8179 if ( GetColWidth(col
) <= 0 || m_colLabelHeight
<= 0 )
8182 int colLeft
= GetColLeft(col
);
8184 wxRect
rect(colLeft
, 0, GetColWidth(col
), m_colLabelHeight
);
8186 if ( m_nativeColumnLabels
)
8188 wxRendererNative::Get().DrawHeaderButton(GetColLabelWindow(), dc
, rect
, 0);
8192 int colRight
= GetColRight(col
) - 1;
8194 dc
.SetPen(wxPen(wxSystemSettings::GetColour(wxSYS_COLOUR_3DSHADOW
)));
8195 dc
.DrawLine( colRight
, 0,
8196 colRight
, m_colLabelHeight
- 1 );
8197 dc
.DrawLine( colLeft
, 0,
8199 dc
.DrawLine( colLeft
, m_colLabelHeight
- 1,
8200 colRight
+ 1, m_colLabelHeight
- 1 );
8202 dc
.SetPen( *wxWHITE_PEN
);
8203 dc
.DrawLine( colLeft
, 1, colLeft
, m_colLabelHeight
- 1 );
8204 dc
.DrawLine( colLeft
, 1, colRight
, 1 );
8207 dc
.SetBackgroundMode( wxBRUSHSTYLE_TRANSPARENT
);
8208 dc
.SetTextForeground( GetLabelTextColour() );
8209 dc
.SetFont( GetLabelFont() );
8212 GetColLabelAlignment( &hAlign
, &vAlign
);
8213 const int orient
= GetColLabelTextOrientation();
8216 DrawTextRectangle(dc
, GetColLabelValue(col
), rect
, hAlign
, vAlign
, orient
);
8219 // TODO: these 2 functions should be replaced with wxDC::DrawLabel() to which
8220 // we just have to add textOrientation support
8221 void wxGrid::DrawTextRectangle( wxDC
& dc
,
8222 const wxString
& value
,
8226 int textOrientation
)
8228 wxArrayString lines
;
8230 StringToLines( value
, lines
);
8232 DrawTextRectangle(dc
, lines
, rect
, horizAlign
, vertAlign
, textOrientation
);
8235 void wxGrid::DrawTextRectangle(wxDC
& dc
,
8236 const wxArrayString
& lines
,
8240 int textOrientation
)
8242 if ( lines
.empty() )
8245 wxDCClipper
clip(dc
, rect
);
8250 if ( textOrientation
== wxHORIZONTAL
)
8251 GetTextBoxSize( dc
, lines
, &textWidth
, &textHeight
);
8253 GetTextBoxSize( dc
, lines
, &textHeight
, &textWidth
);
8257 switch ( vertAlign
)
8259 case wxALIGN_BOTTOM
:
8260 if ( textOrientation
== wxHORIZONTAL
)
8261 y
= rect
.y
+ (rect
.height
- textHeight
- 1);
8263 x
= rect
.x
+ rect
.width
- textWidth
;
8266 case wxALIGN_CENTRE
:
8267 if ( textOrientation
== wxHORIZONTAL
)
8268 y
= rect
.y
+ ((rect
.height
- textHeight
) / 2);
8270 x
= rect
.x
+ ((rect
.width
- textWidth
) / 2);
8275 if ( textOrientation
== wxHORIZONTAL
)
8282 // Align each line of a multi-line label
8283 size_t nLines
= lines
.GetCount();
8284 for ( size_t l
= 0; l
< nLines
; l
++ )
8286 const wxString
& line
= lines
[l
];
8290 *(textOrientation
== wxHORIZONTAL
? &y
: &x
) += dc
.GetCharHeight();
8294 wxCoord lineWidth
= 0,
8296 dc
.GetTextExtent(line
, &lineWidth
, &lineHeight
);
8298 switch ( horizAlign
)
8301 if ( textOrientation
== wxHORIZONTAL
)
8302 x
= rect
.x
+ (rect
.width
- lineWidth
- 1);
8304 y
= rect
.y
+ lineWidth
+ 1;
8307 case wxALIGN_CENTRE
:
8308 if ( textOrientation
== wxHORIZONTAL
)
8309 x
= rect
.x
+ ((rect
.width
- lineWidth
) / 2);
8311 y
= rect
.y
+ rect
.height
- ((rect
.height
- lineWidth
) / 2);
8316 if ( textOrientation
== wxHORIZONTAL
)
8319 y
= rect
.y
+ rect
.height
- 1;
8323 if ( textOrientation
== wxHORIZONTAL
)
8325 dc
.DrawText( line
, x
, y
);
8330 dc
.DrawRotatedText( line
, x
, y
, 90.0 );
8336 // Split multi-line text up into an array of strings.
8337 // Any existing contents of the string array are preserved.
8339 // TODO: refactor wxTextFile::Read() and reuse the same code from here
8340 void wxGrid::StringToLines( const wxString
& value
, wxArrayString
& lines
) const
8344 wxString eol
= wxTextFile::GetEOL( wxTextFileType_Unix
);
8345 wxString tVal
= wxTextFile::Translate( value
, wxTextFileType_Unix
);
8347 while ( startPos
< (int)tVal
.length() )
8349 pos
= tVal
.Mid(startPos
).Find( eol
);
8354 else if ( pos
== 0 )
8356 lines
.Add( wxEmptyString
);
8360 lines
.Add( tVal
.Mid(startPos
, pos
) );
8363 startPos
+= pos
+ 1;
8366 if ( startPos
< (int)tVal
.length() )
8368 lines
.Add( tVal
.Mid( startPos
) );
8372 void wxGrid::GetTextBoxSize( const wxDC
& dc
,
8373 const wxArrayString
& lines
,
8374 long *width
, long *height
) const
8378 wxCoord lineW
= 0, lineH
= 0;
8381 for ( i
= 0; i
< lines
.GetCount(); i
++ )
8383 dc
.GetTextExtent( lines
[i
], &lineW
, &lineH
);
8384 w
= wxMax( w
, lineW
);
8393 // ------ Batch processing.
8395 void wxGrid::EndBatch()
8397 if ( m_batchCount
> 0 )
8400 if ( !m_batchCount
)
8403 m_rowLabelWin
->Refresh();
8404 m_colWindow
->Refresh();
8405 m_cornerLabelWin
->Refresh();
8406 m_gridWin
->Refresh();
8411 // Use this, rather than wxWindow::Refresh(), to force an immediate
8412 // repainting of the grid. Has no effect if you are already inside a
8413 // BeginBatch / EndBatch block.
8415 void wxGrid::ForceRefresh()
8421 bool wxGrid::Enable(bool enable
)
8423 if ( !wxScrolledWindow::Enable(enable
) )
8426 // redraw in the new state
8427 m_gridWin
->Refresh();
8433 // ------ Edit control functions
8436 void wxGrid::EnableEditing( bool edit
)
8438 if ( edit
!= m_editable
)
8441 EnableCellEditControl(edit
);
8446 void wxGrid::EnableCellEditControl( bool enable
)
8451 if ( enable
!= m_cellEditCtrlEnabled
)
8455 if ( SendEvent(wxEVT_GRID_EDITOR_SHOWN
) == -1 )
8458 // this should be checked by the caller!
8459 wxASSERT_MSG( CanEnableCellControl(), _T("can't enable editing for this cell!") );
8461 // do it before ShowCellEditControl()
8462 m_cellEditCtrlEnabled
= enable
;
8464 ShowCellEditControl();
8468 //FIXME:add veto support
8469 SendEvent(wxEVT_GRID_EDITOR_HIDDEN
);
8471 HideCellEditControl();
8472 SaveEditControlValue();
8474 // do it after HideCellEditControl()
8475 m_cellEditCtrlEnabled
= enable
;
8480 bool wxGrid::IsCurrentCellReadOnly() const
8483 wxGridCellAttr
* attr
= ((wxGrid
*)this)->GetCellAttr(m_currentCellCoords
);
8484 bool readonly
= attr
->IsReadOnly();
8490 bool wxGrid::CanEnableCellControl() const
8492 return m_editable
&& (m_currentCellCoords
!= wxGridNoCellCoords
) &&
8493 !IsCurrentCellReadOnly();
8496 bool wxGrid::IsCellEditControlEnabled() const
8498 // the cell edit control might be disable for all cells or just for the
8499 // current one if it's read only
8500 return m_cellEditCtrlEnabled
? !IsCurrentCellReadOnly() : false;
8503 bool wxGrid::IsCellEditControlShown() const
8505 bool isShown
= false;
8507 if ( m_cellEditCtrlEnabled
)
8509 int row
= m_currentCellCoords
.GetRow();
8510 int col
= m_currentCellCoords
.GetCol();
8511 wxGridCellAttr
* attr
= GetCellAttr(row
, col
);
8512 wxGridCellEditor
* editor
= attr
->GetEditor((wxGrid
*) this, row
, col
);
8517 if ( editor
->IsCreated() )
8519 isShown
= editor
->GetControl()->IsShown();
8529 void wxGrid::ShowCellEditControl()
8531 if ( IsCellEditControlEnabled() )
8533 if ( !IsVisible( m_currentCellCoords
, false ) )
8535 m_cellEditCtrlEnabled
= false;
8540 wxRect rect
= CellToRect( m_currentCellCoords
);
8541 int row
= m_currentCellCoords
.GetRow();
8542 int col
= m_currentCellCoords
.GetCol();
8544 // if this is part of a multicell, find owner (topleft)
8545 int cell_rows
, cell_cols
;
8546 GetCellSize( row
, col
, &cell_rows
, &cell_cols
);
8547 if ( cell_rows
<= 0 || cell_cols
<= 0 )
8551 m_currentCellCoords
.SetRow( row
);
8552 m_currentCellCoords
.SetCol( col
);
8555 // erase the highlight and the cell contents because the editor
8556 // might not cover the entire cell
8557 wxClientDC
dc( m_gridWin
);
8559 wxGridCellAttr
* attr
= GetCellAttr(row
, col
);
8560 dc
.SetBrush(wxBrush(attr
->GetBackgroundColour()));
8561 dc
.SetPen(*wxTRANSPARENT_PEN
);
8562 dc
.DrawRectangle(rect
);
8564 // convert to scrolled coords
8565 CalcScrolledPosition( rect
.x
, rect
.y
, &rect
.x
, &rect
.y
);
8571 // cell is shifted by one pixel
8572 // However, don't allow x or y to become negative
8573 // since the SetSize() method interprets that as
8580 wxGridCellEditor
* editor
= attr
->GetEditor(this, row
, col
);
8581 if ( !editor
->IsCreated() )
8583 editor
->Create(m_gridWin
, wxID_ANY
,
8584 new wxGridCellEditorEvtHandler(this, editor
));
8586 wxGridEditorCreatedEvent
evt(GetId(),
8587 wxEVT_GRID_EDITOR_CREATED
,
8591 editor
->GetControl());
8592 GetEventHandler()->ProcessEvent(evt
);
8595 // resize editor to overflow into righthand cells if allowed
8596 int maxWidth
= rect
.width
;
8597 wxString value
= GetCellValue(row
, col
);
8598 if ( (value
!= wxEmptyString
) && (attr
->GetOverflow()) )
8601 GetTextExtent(value
, &maxWidth
, &y
, NULL
, NULL
, &attr
->GetFont());
8602 if (maxWidth
< rect
.width
)
8603 maxWidth
= rect
.width
;
8606 int client_right
= m_gridWin
->GetClientSize().GetWidth();
8607 if (rect
.x
+ maxWidth
> client_right
)
8608 maxWidth
= client_right
- rect
.x
;
8610 if ((maxWidth
> rect
.width
) && (col
< m_numCols
) && m_table
)
8612 GetCellSize( row
, col
, &cell_rows
, &cell_cols
);
8613 // may have changed earlier
8614 for (int i
= col
+ cell_cols
; i
< m_numCols
; i
++)
8617 GetCellSize( row
, i
, &c_rows
, &c_cols
);
8619 // looks weird going over a multicell
8620 if (m_table
->IsEmptyCell( row
, i
) &&
8621 (rect
.width
< maxWidth
) && (c_rows
== 1))
8623 rect
.width
+= GetColWidth( i
);
8629 if (rect
.GetRight() > client_right
)
8630 rect
.SetRight( client_right
- 1 );
8633 editor
->SetCellAttr( attr
);
8634 editor
->SetSize( rect
);
8636 editor
->GetControl()->Move(
8637 editor
->GetControl()->GetPosition().x
+ nXMove
,
8638 editor
->GetControl()->GetPosition().y
);
8639 editor
->Show( true, attr
);
8641 // recalc dimensions in case we need to
8642 // expand the scrolled window to account for editor
8645 editor
->BeginEdit(row
, col
, this);
8646 editor
->SetCellAttr(NULL
);
8654 void wxGrid::HideCellEditControl()
8656 if ( IsCellEditControlEnabled() )
8658 int row
= m_currentCellCoords
.GetRow();
8659 int col
= m_currentCellCoords
.GetCol();
8661 wxGridCellAttr
*attr
= GetCellAttr(row
, col
);
8662 wxGridCellEditor
*editor
= attr
->GetEditor(this, row
, col
);
8663 const bool editorHadFocus
= editor
->GetControl()->HasFocus();
8664 editor
->Show( false );
8668 // return the focus to the grid itself if the editor had it
8670 // note that we must not do this unconditionally to avoid stealing
8671 // focus from the window which just received it if we are hiding the
8672 // editor precisely because we lost focus
8673 if ( editorHadFocus
)
8674 m_gridWin
->SetFocus();
8676 // refresh whole row to the right
8677 wxRect
rect( CellToRect(row
, col
) );
8678 CalcScrolledPosition(rect
.x
, rect
.y
, &rect
.x
, &rect
.y
);
8679 rect
.width
= m_gridWin
->GetClientSize().GetWidth() - rect
.x
;
8682 // ensure that the pixels under the focus ring get refreshed as well
8683 rect
.Inflate(10, 10);
8686 m_gridWin
->Refresh( false, &rect
);
8690 void wxGrid::SaveEditControlValue()
8692 if ( IsCellEditControlEnabled() )
8694 int row
= m_currentCellCoords
.GetRow();
8695 int col
= m_currentCellCoords
.GetCol();
8697 wxString oldval
= GetCellValue(row
, col
);
8699 wxGridCellAttr
* attr
= GetCellAttr(row
, col
);
8700 wxGridCellEditor
* editor
= attr
->GetEditor(this, row
, col
);
8701 bool changed
= editor
->EndEdit(row
, col
, this);
8708 if ( SendEvent(wxEVT_GRID_CELL_CHANGE
) == -1 )
8710 // Event has been vetoed, set the data back.
8711 SetCellValue(row
, col
, oldval
);
8718 // ------ Grid location functions
8719 // Note that all of these functions work with the logical coordinates of
8720 // grid cells and labels so you will need to convert from device
8721 // coordinates for mouse events etc.
8724 wxGridCellCoords
wxGrid::XYToCell(int x
, int y
) const
8726 int row
= YToRow(y
);
8727 int col
= XToCol(x
);
8729 return row
== -1 || col
== -1 ? wxGridNoCellCoords
8730 : wxGridCellCoords(row
, col
);
8733 // compute row or column from some (unscrolled) coordinate value, using either
8734 // m_defaultRowHeight/m_defaultColWidth or binary search on array of
8735 // m_rowBottoms/m_colRights to do it quickly (linear search shouldn't be used
8737 int wxGrid::PosToLinePos(int coord
,
8739 const wxGridOperations
& oper
) const
8741 const int numLines
= oper
.GetNumberOfLines(this);
8744 return clipToMinMax
&& numLines
> 0 ? 0 : wxNOT_FOUND
;
8746 const int defaultLineSize
= oper
.GetDefaultLineSize(this);
8747 wxCHECK_MSG( defaultLineSize
, -1, "can't have 0 default line size" );
8749 int maxPos
= coord
/ defaultLineSize
,
8752 // check for the simplest case: if we have no explicit line sizes
8753 // configured, then we already know the line this position falls in
8754 const wxArrayInt
& lineEnds
= oper
.GetLineEnds(this);
8755 if ( lineEnds
.empty() )
8757 if ( maxPos
< numLines
)
8760 return clipToMinMax
? numLines
- 1 : -1;
8764 // adjust maxPos before starting the binary search
8765 if ( maxPos
>= numLines
)
8767 maxPos
= numLines
- 1;
8771 if ( coord
>= lineEnds
[oper
.GetLineAt(this, maxPos
)])
8774 const int minDist
= oper
.GetMinimalAcceptableLineSize(this);
8776 maxPos
= coord
/ minDist
;
8778 maxPos
= numLines
- 1;
8781 if ( maxPos
>= numLines
)
8782 maxPos
= numLines
- 1;
8785 // check if the position is beyond the last column
8786 const int lineAtMaxPos
= oper
.GetLineAt(this, maxPos
);
8787 if ( coord
>= lineEnds
[lineAtMaxPos
] )
8788 return clipToMinMax
? maxPos
: -1;
8790 // or before the first one
8791 const int lineAt0
= oper
.GetLineAt(this, 0);
8792 if ( coord
< lineEnds
[lineAt0
] )
8796 // finally do perform the binary search
8797 while ( minPos
< maxPos
)
8799 wxCHECK_MSG( lineEnds
[oper
.GetLineAt(this, minPos
)] <= coord
&&
8800 coord
< lineEnds
[oper
.GetLineAt(this, maxPos
)],
8802 "wxGrid: internal error in PosToLinePos()" );
8804 if ( coord
>= lineEnds
[oper
.GetLineAt(this, maxPos
- 1)] )
8809 const int median
= minPos
+ (maxPos
- minPos
+ 1) / 2;
8810 if ( coord
< lineEnds
[oper
.GetLineAt(this, median
)] )
8820 wxGrid::PosToLine(int coord
,
8822 const wxGridOperations
& oper
) const
8824 int pos
= PosToLinePos(coord
, clipToMinMax
, oper
);
8826 return pos
== wxNOT_FOUND
? wxNOT_FOUND
: oper
.GetLineAt(this, pos
);
8829 int wxGrid::YToRow(int y
, bool clipToMinMax
) const
8831 return PosToLine(y
, clipToMinMax
, wxGridRowOperations());
8834 int wxGrid::XToCol(int x
, bool clipToMinMax
) const
8836 return PosToLine(x
, clipToMinMax
, wxGridColumnOperations());
8839 int wxGrid::XToPos(int x
) const
8841 return PosToLinePos(x
, true /* clip */, wxGridColumnOperations());
8844 // return the row number that that the y coord is near the edge of, or -1 if
8845 // not near an edge.
8847 // coords can only possibly be near an edge if
8848 // (a) the row/column is large enough to still allow for an "inner" area
8849 // that is _not_ near the edge (i.e., if the height/width is smaller
8850 // than WXGRID_LABEL_EDGE_ZONE, coords are _never_ considered to be
8853 // (b) resizing rows/columns (the thing for which edge detection is
8854 // relevant at all) is enabled.
8856 int wxGrid::PosToEdgeOfLine(int pos
, const wxGridOperations
& oper
) const
8858 if ( !oper
.CanResizeLines(this) )
8861 const int line
= oper
.PosToLine(this, pos
, true);
8863 if ( oper
.GetLineSize(this, line
) > WXGRID_LABEL_EDGE_ZONE
)
8865 // We know that we are in this line, test whether we are close enough
8866 // to start or end border, respectively.
8867 if ( abs(oper
.GetLineEndPos(this, line
) - pos
) < WXGRID_LABEL_EDGE_ZONE
)
8869 else if ( line
> 0 &&
8870 pos
- oper
.GetLineStartPos(this,
8871 line
) < WXGRID_LABEL_EDGE_ZONE
)
8878 int wxGrid::YToEdgeOfRow(int y
) const
8880 return PosToEdgeOfLine(y
, wxGridRowOperations());
8883 int wxGrid::XToEdgeOfCol(int x
) const
8885 return PosToEdgeOfLine(x
, wxGridColumnOperations());
8888 wxRect
wxGrid::CellToRect( int row
, int col
) const
8890 wxRect
rect( -1, -1, -1, -1 );
8892 if ( row
>= 0 && row
< m_numRows
&&
8893 col
>= 0 && col
< m_numCols
)
8895 int i
, cell_rows
, cell_cols
;
8896 rect
.width
= rect
.height
= 0;
8897 GetCellSize( row
, col
, &cell_rows
, &cell_cols
);
8898 // if negative then find multicell owner
8903 GetCellSize( row
, col
, &cell_rows
, &cell_cols
);
8905 rect
.x
= GetColLeft(col
);
8906 rect
.y
= GetRowTop(row
);
8907 for (i
=col
; i
< col
+ cell_cols
; i
++)
8908 rect
.width
+= GetColWidth(i
);
8909 for (i
=row
; i
< row
+ cell_rows
; i
++)
8910 rect
.height
+= GetRowHeight(i
);
8913 // if grid lines are enabled, then the area of the cell is a bit smaller
8914 if (m_gridLinesEnabled
)
8923 bool wxGrid::IsVisible( int row
, int col
, bool wholeCellVisible
) const
8925 // get the cell rectangle in logical coords
8927 wxRect
r( CellToRect( row
, col
) );
8929 // convert to device coords
8931 int left
, top
, right
, bottom
;
8932 CalcScrolledPosition( r
.GetLeft(), r
.GetTop(), &left
, &top
);
8933 CalcScrolledPosition( r
.GetRight(), r
.GetBottom(), &right
, &bottom
);
8935 // check against the client area of the grid window
8937 m_gridWin
->GetClientSize( &cw
, &ch
);
8939 if ( wholeCellVisible
)
8941 // is the cell wholly visible ?
8942 return ( left
>= 0 && right
<= cw
&&
8943 top
>= 0 && bottom
<= ch
);
8947 // is the cell partly visible ?
8949 return ( ((left
>= 0 && left
< cw
) || (right
> 0 && right
<= cw
)) &&
8950 ((top
>= 0 && top
< ch
) || (bottom
> 0 && bottom
<= ch
)) );
8954 // make the specified cell location visible by doing a minimal amount
8957 void wxGrid::MakeCellVisible( int row
, int col
)
8960 int xpos
= -1, ypos
= -1;
8962 if ( row
>= 0 && row
< m_numRows
&&
8963 col
>= 0 && col
< m_numCols
)
8965 // get the cell rectangle in logical coords
8966 wxRect
r( CellToRect( row
, col
) );
8968 // convert to device coords
8969 int left
, top
, right
, bottom
;
8970 CalcScrolledPosition( r
.GetLeft(), r
.GetTop(), &left
, &top
);
8971 CalcScrolledPosition( r
.GetRight(), r
.GetBottom(), &right
, &bottom
);
8974 m_gridWin
->GetClientSize( &cw
, &ch
);
8980 else if ( bottom
> ch
)
8982 int h
= r
.GetHeight();
8984 for ( i
= row
- 1; i
>= 0; i
-- )
8986 int rowHeight
= GetRowHeight(i
);
8987 if ( h
+ rowHeight
> ch
)
8994 // we divide it later by GRID_SCROLL_LINE, make sure that we don't
8995 // have rounding errors (this is important, because if we do,
8996 // we might not scroll at all and some cells won't be redrawn)
8998 // Sometimes GRID_SCROLL_LINE / 2 is not enough,
8999 // so just add a full scroll unit...
9000 ypos
+= m_scrollLineY
;
9003 // special handling for wide cells - show always left part of the cell!
9004 // Otherwise, e.g. when stepping from row to row, it would jump between
9005 // left and right part of the cell on every step!
9007 if ( left
< 0 || (right
- left
) >= cw
)
9011 else if ( right
> cw
)
9013 // position the view so that the cell is on the right
9015 CalcUnscrolledPosition(0, 0, &x0
, &y0
);
9016 xpos
= x0
+ (right
- cw
);
9018 // see comment for ypos above
9019 xpos
+= m_scrollLineX
;
9022 if ( xpos
!= -1 || ypos
!= -1 )
9025 xpos
/= m_scrollLineX
;
9027 ypos
/= m_scrollLineY
;
9028 Scroll( xpos
, ypos
);
9035 // ------ Grid cursor movement functions
9039 wxGrid::DoMoveCursor(bool expandSelection
,
9040 const wxGridDirectionOperations
& diroper
)
9042 if ( m_currentCellCoords
== wxGridNoCellCoords
)
9045 if ( expandSelection
)
9047 wxGridCellCoords coords
= m_selectedBlockCorner
;
9048 if ( coords
== wxGridNoCellCoords
)
9049 coords
= m_currentCellCoords
;
9051 if ( diroper
.IsAtBoundary(coords
) )
9054 diroper
.Advance(coords
);
9056 UpdateBlockBeingSelected(m_currentCellCoords
, coords
);
9058 else // don't expand selection
9062 if ( diroper
.IsAtBoundary(m_currentCellCoords
) )
9065 wxGridCellCoords coords
= m_currentCellCoords
;
9066 diroper
.Advance(coords
);
9074 bool wxGrid::MoveCursorUp(bool expandSelection
)
9076 return DoMoveCursor(expandSelection
,
9077 wxGridBackwardOperations(this, wxGridRowOperations()));
9080 bool wxGrid::MoveCursorDown(bool expandSelection
)
9082 return DoMoveCursor(expandSelection
,
9083 wxGridForwardOperations(this, wxGridRowOperations()));
9086 bool wxGrid::MoveCursorLeft(bool expandSelection
)
9088 return DoMoveCursor(expandSelection
,
9089 wxGridBackwardOperations(this, wxGridColumnOperations()));
9092 bool wxGrid::MoveCursorRight(bool expandSelection
)
9094 return DoMoveCursor(expandSelection
,
9095 wxGridForwardOperations(this, wxGridColumnOperations()));
9098 bool wxGrid::DoMoveCursorByPage(const wxGridDirectionOperations
& diroper
)
9100 if ( m_currentCellCoords
== wxGridNoCellCoords
)
9103 if ( diroper
.IsAtBoundary(m_currentCellCoords
) )
9106 const int oldRow
= m_currentCellCoords
.GetRow();
9107 int newRow
= diroper
.MoveByPixelDistance(oldRow
, m_gridWin
->GetClientSize().y
);
9108 if ( newRow
== oldRow
)
9110 wxGridCellCoords
coords(m_currentCellCoords
);
9111 diroper
.Advance(coords
);
9112 newRow
= coords
.GetRow();
9115 GoToCell(newRow
, m_currentCellCoords
.GetCol());
9120 bool wxGrid::MovePageUp()
9122 return DoMoveCursorByPage(
9123 wxGridBackwardOperations(this, wxGridRowOperations()));
9126 bool wxGrid::MovePageDown()
9128 return DoMoveCursorByPage(
9129 wxGridForwardOperations(this, wxGridRowOperations()));
9132 // helper of DoMoveCursorByBlock(): advance the cell coordinates using diroper
9133 // until we find a non-empty cell or reach the grid end
9135 wxGrid::AdvanceToNextNonEmpty(wxGridCellCoords
& coords
,
9136 const wxGridDirectionOperations
& diroper
)
9138 while ( !diroper
.IsAtBoundary(coords
) )
9140 diroper
.Advance(coords
);
9141 if ( !m_table
->IsEmpty(coords
) )
9147 wxGrid::DoMoveCursorByBlock(bool expandSelection
,
9148 const wxGridDirectionOperations
& diroper
)
9150 if ( !m_table
|| m_currentCellCoords
== wxGridNoCellCoords
)
9153 if ( diroper
.IsAtBoundary(m_currentCellCoords
) )
9156 wxGridCellCoords
coords(m_currentCellCoords
);
9157 if ( m_table
->IsEmpty(coords
) )
9159 // we are in an empty cell: find the next block of non-empty cells
9160 AdvanceToNextNonEmpty(coords
, diroper
);
9162 else // current cell is not empty
9164 diroper
.Advance(coords
);
9165 if ( m_table
->IsEmpty(coords
) )
9167 // we started at the end of a block, find the next one
9168 AdvanceToNextNonEmpty(coords
, diroper
);
9170 else // we're in a middle of a block
9172 // go to the end of it, i.e. find the last cell before the next
9174 while ( !diroper
.IsAtBoundary(coords
) )
9176 wxGridCellCoords
coordsNext(coords
);
9177 diroper
.Advance(coordsNext
);
9178 if ( m_table
->IsEmpty(coordsNext
) )
9181 coords
= coordsNext
;
9186 if ( expandSelection
)
9188 UpdateBlockBeingSelected(m_currentCellCoords
, coords
);
9199 bool wxGrid::MoveCursorUpBlock(bool expandSelection
)
9201 return DoMoveCursorByBlock(
9203 wxGridBackwardOperations(this, wxGridRowOperations())
9207 bool wxGrid::MoveCursorDownBlock( bool expandSelection
)
9209 return DoMoveCursorByBlock(
9211 wxGridForwardOperations(this, wxGridRowOperations())
9215 bool wxGrid::MoveCursorLeftBlock( bool expandSelection
)
9217 return DoMoveCursorByBlock(
9219 wxGridBackwardOperations(this, wxGridColumnOperations())
9223 bool wxGrid::MoveCursorRightBlock( bool expandSelection
)
9225 return DoMoveCursorByBlock(
9227 wxGridForwardOperations(this, wxGridColumnOperations())
9232 // ------ Label values and formatting
9235 void wxGrid::GetRowLabelAlignment( int *horiz
, int *vert
) const
9238 *horiz
= m_rowLabelHorizAlign
;
9240 *vert
= m_rowLabelVertAlign
;
9243 void wxGrid::GetColLabelAlignment( int *horiz
, int *vert
) const
9246 *horiz
= m_colLabelHorizAlign
;
9248 *vert
= m_colLabelVertAlign
;
9251 int wxGrid::GetColLabelTextOrientation() const
9253 return m_colLabelTextOrientation
;
9256 wxString
wxGrid::GetRowLabelValue( int row
) const
9260 return m_table
->GetRowLabelValue( row
);
9270 wxString
wxGrid::GetColLabelValue( int col
) const
9274 return m_table
->GetColLabelValue( col
);
9284 void wxGrid::SetRowLabelSize( int width
)
9286 wxASSERT( width
>= 0 || width
== wxGRID_AUTOSIZE
);
9288 if ( width
== wxGRID_AUTOSIZE
)
9290 width
= CalcColOrRowLabelAreaMinSize(wxGRID_ROW
);
9293 if ( width
!= m_rowLabelWidth
)
9297 m_rowLabelWin
->Show( false );
9298 m_cornerLabelWin
->Show( false );
9300 else if ( m_rowLabelWidth
== 0 )
9302 m_rowLabelWin
->Show( true );
9303 if ( m_colLabelHeight
> 0 )
9304 m_cornerLabelWin
->Show( true );
9307 m_rowLabelWidth
= width
;
9309 wxScrolledWindow::Refresh( true );
9313 void wxGrid::SetColLabelSize( int height
)
9315 wxASSERT( height
>=0 || height
== wxGRID_AUTOSIZE
);
9317 if ( height
== wxGRID_AUTOSIZE
)
9319 height
= CalcColOrRowLabelAreaMinSize(wxGRID_COLUMN
);
9322 if ( height
!= m_colLabelHeight
)
9326 m_colWindow
->Show( false );
9327 m_cornerLabelWin
->Show( false );
9329 else if ( m_colLabelHeight
== 0 )
9331 m_colWindow
->Show( true );
9332 if ( m_rowLabelWidth
> 0 )
9333 m_cornerLabelWin
->Show( true );
9336 m_colLabelHeight
= height
;
9338 wxScrolledWindow::Refresh( true );
9342 void wxGrid::SetLabelBackgroundColour( const wxColour
& colour
)
9344 if ( m_labelBackgroundColour
!= colour
)
9346 m_labelBackgroundColour
= colour
;
9347 m_rowLabelWin
->SetBackgroundColour( colour
);
9348 m_colWindow
->SetBackgroundColour( colour
);
9349 m_cornerLabelWin
->SetBackgroundColour( colour
);
9351 if ( !GetBatchCount() )
9353 m_rowLabelWin
->Refresh();
9354 m_colWindow
->Refresh();
9355 m_cornerLabelWin
->Refresh();
9360 void wxGrid::SetLabelTextColour( const wxColour
& colour
)
9362 if ( m_labelTextColour
!= colour
)
9364 m_labelTextColour
= colour
;
9365 if ( !GetBatchCount() )
9367 m_rowLabelWin
->Refresh();
9368 m_colWindow
->Refresh();
9373 void wxGrid::SetLabelFont( const wxFont
& font
)
9376 if ( !GetBatchCount() )
9378 m_rowLabelWin
->Refresh();
9379 m_colWindow
->Refresh();
9383 void wxGrid::SetRowLabelAlignment( int horiz
, int vert
)
9385 // allow old (incorrect) defs to be used
9388 case wxLEFT
: horiz
= wxALIGN_LEFT
; break;
9389 case wxRIGHT
: horiz
= wxALIGN_RIGHT
; break;
9390 case wxCENTRE
: horiz
= wxALIGN_CENTRE
; break;
9395 case wxTOP
: vert
= wxALIGN_TOP
; break;
9396 case wxBOTTOM
: vert
= wxALIGN_BOTTOM
; break;
9397 case wxCENTRE
: vert
= wxALIGN_CENTRE
; break;
9400 if ( horiz
== wxALIGN_LEFT
|| horiz
== wxALIGN_CENTRE
|| horiz
== wxALIGN_RIGHT
)
9402 m_rowLabelHorizAlign
= horiz
;
9405 if ( vert
== wxALIGN_TOP
|| vert
== wxALIGN_CENTRE
|| vert
== wxALIGN_BOTTOM
)
9407 m_rowLabelVertAlign
= vert
;
9410 if ( !GetBatchCount() )
9412 m_rowLabelWin
->Refresh();
9416 void wxGrid::SetColLabelAlignment( int horiz
, int vert
)
9418 // allow old (incorrect) defs to be used
9421 case wxLEFT
: horiz
= wxALIGN_LEFT
; break;
9422 case wxRIGHT
: horiz
= wxALIGN_RIGHT
; break;
9423 case wxCENTRE
: horiz
= wxALIGN_CENTRE
; break;
9428 case wxTOP
: vert
= wxALIGN_TOP
; break;
9429 case wxBOTTOM
: vert
= wxALIGN_BOTTOM
; break;
9430 case wxCENTRE
: vert
= wxALIGN_CENTRE
; break;
9433 if ( horiz
== wxALIGN_LEFT
|| horiz
== wxALIGN_CENTRE
|| horiz
== wxALIGN_RIGHT
)
9435 m_colLabelHorizAlign
= horiz
;
9438 if ( vert
== wxALIGN_TOP
|| vert
== wxALIGN_CENTRE
|| vert
== wxALIGN_BOTTOM
)
9440 m_colLabelVertAlign
= vert
;
9443 if ( !GetBatchCount() )
9445 m_colWindow
->Refresh();
9449 // Note: under MSW, the default column label font must be changed because it
9450 // does not support vertical printing
9452 // Example: wxFont font(9, wxSWISS, wxNORMAL, wxBOLD);
9453 // pGrid->SetLabelFont(font);
9454 // pGrid->SetColLabelTextOrientation(wxVERTICAL);
9456 void wxGrid::SetColLabelTextOrientation( int textOrientation
)
9458 if ( textOrientation
== wxHORIZONTAL
|| textOrientation
== wxVERTICAL
)
9459 m_colLabelTextOrientation
= textOrientation
;
9461 if ( !GetBatchCount() )
9462 m_colWindow
->Refresh();
9465 void wxGrid::SetRowLabelValue( int row
, const wxString
& s
)
9469 m_table
->SetRowLabelValue( row
, s
);
9470 if ( !GetBatchCount() )
9472 wxRect rect
= CellToRect( row
, 0 );
9473 if ( rect
.height
> 0 )
9475 CalcScrolledPosition(0, rect
.y
, &rect
.x
, &rect
.y
);
9477 rect
.width
= m_rowLabelWidth
;
9478 m_rowLabelWin
->Refresh( true, &rect
);
9484 void wxGrid::SetColLabelValue( int col
, const wxString
& s
)
9488 m_table
->SetColLabelValue( col
, s
);
9489 if ( !GetBatchCount() )
9491 if ( m_useNativeHeader
)
9493 GetColHeader()->UpdateColumn(col
);
9497 wxRect rect
= CellToRect( 0, col
);
9498 if ( rect
.width
> 0 )
9500 CalcScrolledPosition(rect
.x
, 0, &rect
.x
, &rect
.y
);
9502 rect
.height
= m_colLabelHeight
;
9503 GetColLabelWindow()->Refresh( true, &rect
);
9510 void wxGrid::SetGridLineColour( const wxColour
& colour
)
9512 if ( m_gridLineColour
!= colour
)
9514 m_gridLineColour
= colour
;
9516 if ( GridLinesEnabled() )
9521 void wxGrid::SetCellHighlightColour( const wxColour
& colour
)
9523 if ( m_cellHighlightColour
!= colour
)
9525 m_cellHighlightColour
= colour
;
9527 wxClientDC
dc( m_gridWin
);
9529 wxGridCellAttr
* attr
= GetCellAttr(m_currentCellCoords
);
9530 DrawCellHighlight(dc
, attr
);
9535 void wxGrid::SetCellHighlightPenWidth(int width
)
9537 if (m_cellHighlightPenWidth
!= width
)
9539 m_cellHighlightPenWidth
= width
;
9541 // Just redrawing the cell highlight is not enough since that won't
9542 // make any visible change if the the thickness is getting smaller.
9543 int row
= m_currentCellCoords
.GetRow();
9544 int col
= m_currentCellCoords
.GetCol();
9545 if ( row
== -1 || col
== -1 || GetColWidth(col
) <= 0 || GetRowHeight(row
) <= 0 )
9548 wxRect rect
= CellToRect(row
, col
);
9549 m_gridWin
->Refresh(true, &rect
);
9553 void wxGrid::SetCellHighlightROPenWidth(int width
)
9555 if (m_cellHighlightROPenWidth
!= width
)
9557 m_cellHighlightROPenWidth
= width
;
9559 // Just redrawing the cell highlight is not enough since that won't
9560 // make any visible change if the the thickness is getting smaller.
9561 int row
= m_currentCellCoords
.GetRow();
9562 int col
= m_currentCellCoords
.GetCol();
9563 if ( row
== -1 || col
== -1 ||
9564 GetColWidth(col
) <= 0 || GetRowHeight(row
) <= 0 )
9567 wxRect rect
= CellToRect(row
, col
);
9568 m_gridWin
->Refresh(true, &rect
);
9572 void wxGrid::RedrawGridLines()
9574 // the lines will be redrawn when the window is thawn
9575 if ( GetBatchCount() )
9578 if ( GridLinesEnabled() )
9580 wxClientDC
dc( m_gridWin
);
9582 DrawAllGridLines( dc
, wxRegion() );
9584 else // remove the grid lines
9586 m_gridWin
->Refresh();
9590 void wxGrid::EnableGridLines( bool enable
)
9592 if ( enable
!= m_gridLinesEnabled
)
9594 m_gridLinesEnabled
= enable
;
9600 void wxGrid::DoClipGridLines(bool& var
, bool clip
)
9606 if ( GridLinesEnabled() )
9611 int wxGrid::GetDefaultRowSize() const
9613 return m_defaultRowHeight
;
9616 int wxGrid::GetRowSize( int row
) const
9618 wxCHECK_MSG( row
>= 0 && row
< m_numRows
, 0, _T("invalid row index") );
9620 return GetRowHeight(row
);
9623 int wxGrid::GetDefaultColSize() const
9625 return m_defaultColWidth
;
9628 int wxGrid::GetColSize( int col
) const
9630 wxCHECK_MSG( col
>= 0 && col
< m_numCols
, 0, _T("invalid column index") );
9632 return GetColWidth(col
);
9635 // ============================================================================
9636 // access to the grid attributes: each of them has a default value in the grid
9637 // itself and may be overidden on a per-cell basis
9638 // ============================================================================
9640 // ----------------------------------------------------------------------------
9641 // setting default attributes
9642 // ----------------------------------------------------------------------------
9644 void wxGrid::SetDefaultCellBackgroundColour( const wxColour
& col
)
9646 m_defaultCellAttr
->SetBackgroundColour(col
);
9648 m_gridWin
->SetBackgroundColour(col
);
9652 void wxGrid::SetDefaultCellTextColour( const wxColour
& col
)
9654 m_defaultCellAttr
->SetTextColour(col
);
9657 void wxGrid::SetDefaultCellAlignment( int horiz
, int vert
)
9659 m_defaultCellAttr
->SetAlignment(horiz
, vert
);
9662 void wxGrid::SetDefaultCellOverflow( bool allow
)
9664 m_defaultCellAttr
->SetOverflow(allow
);
9667 void wxGrid::SetDefaultCellFont( const wxFont
& font
)
9669 m_defaultCellAttr
->SetFont(font
);
9672 // For editors and renderers the type registry takes precedence over the
9673 // default attr, so we need to register the new editor/renderer for the string
9674 // data type in order to make setting a default editor/renderer appear to
9677 void wxGrid::SetDefaultRenderer(wxGridCellRenderer
*renderer
)
9679 RegisterDataType(wxGRID_VALUE_STRING
,
9681 GetDefaultEditorForType(wxGRID_VALUE_STRING
));
9684 void wxGrid::SetDefaultEditor(wxGridCellEditor
*editor
)
9686 RegisterDataType(wxGRID_VALUE_STRING
,
9687 GetDefaultRendererForType(wxGRID_VALUE_STRING
),
9691 // ----------------------------------------------------------------------------
9692 // access to the default attributes
9693 // ----------------------------------------------------------------------------
9695 wxColour
wxGrid::GetDefaultCellBackgroundColour() const
9697 return m_defaultCellAttr
->GetBackgroundColour();
9700 wxColour
wxGrid::GetDefaultCellTextColour() const
9702 return m_defaultCellAttr
->GetTextColour();
9705 wxFont
wxGrid::GetDefaultCellFont() const
9707 return m_defaultCellAttr
->GetFont();
9710 void wxGrid::GetDefaultCellAlignment( int *horiz
, int *vert
) const
9712 m_defaultCellAttr
->GetAlignment(horiz
, vert
);
9715 bool wxGrid::GetDefaultCellOverflow() const
9717 return m_defaultCellAttr
->GetOverflow();
9720 wxGridCellRenderer
*wxGrid::GetDefaultRenderer() const
9722 return m_defaultCellAttr
->GetRenderer(NULL
, 0, 0);
9725 wxGridCellEditor
*wxGrid::GetDefaultEditor() const
9727 return m_defaultCellAttr
->GetEditor(NULL
, 0, 0);
9730 // ----------------------------------------------------------------------------
9731 // access to cell attributes
9732 // ----------------------------------------------------------------------------
9734 wxColour
wxGrid::GetCellBackgroundColour(int row
, int col
) const
9736 wxGridCellAttr
*attr
= GetCellAttr(row
, col
);
9737 wxColour colour
= attr
->GetBackgroundColour();
9743 wxColour
wxGrid::GetCellTextColour( int row
, int col
) const
9745 wxGridCellAttr
*attr
= GetCellAttr(row
, col
);
9746 wxColour colour
= attr
->GetTextColour();
9752 wxFont
wxGrid::GetCellFont( int row
, int col
) const
9754 wxGridCellAttr
*attr
= GetCellAttr(row
, col
);
9755 wxFont font
= attr
->GetFont();
9761 void wxGrid::GetCellAlignment( int row
, int col
, int *horiz
, int *vert
) const
9763 wxGridCellAttr
*attr
= GetCellAttr(row
, col
);
9764 attr
->GetAlignment(horiz
, vert
);
9768 bool wxGrid::GetCellOverflow( int row
, int col
) const
9770 wxGridCellAttr
*attr
= GetCellAttr(row
, col
);
9771 bool allow
= attr
->GetOverflow();
9777 void wxGrid::GetCellSize( int row
, int col
, int *num_rows
, int *num_cols
) const
9779 wxGridCellAttr
*attr
= GetCellAttr(row
, col
);
9780 attr
->GetSize( num_rows
, num_cols
);
9784 wxGridCellRenderer
* wxGrid::GetCellRenderer(int row
, int col
) const
9786 wxGridCellAttr
* attr
= GetCellAttr(row
, col
);
9787 wxGridCellRenderer
* renderer
= attr
->GetRenderer(this, row
, col
);
9793 wxGridCellEditor
* wxGrid::GetCellEditor(int row
, int col
) const
9795 wxGridCellAttr
* attr
= GetCellAttr(row
, col
);
9796 wxGridCellEditor
* editor
= attr
->GetEditor(this, row
, col
);
9802 bool wxGrid::IsReadOnly(int row
, int col
) const
9804 wxGridCellAttr
* attr
= GetCellAttr(row
, col
);
9805 bool isReadOnly
= attr
->IsReadOnly();
9811 // ----------------------------------------------------------------------------
9812 // attribute support: cache, automatic provider creation, ...
9813 // ----------------------------------------------------------------------------
9815 bool wxGrid::CanHaveAttributes() const
9822 return m_table
->CanHaveAttributes();
9825 void wxGrid::ClearAttrCache()
9827 if ( m_attrCache
.row
!= -1 )
9829 wxGridCellAttr
*oldAttr
= m_attrCache
.attr
;
9830 m_attrCache
.attr
= NULL
;
9831 m_attrCache
.row
= -1;
9832 // wxSafeDecRec(...) might cause event processing that accesses
9833 // the cached attribute, if one exists (e.g. by deleting the
9834 // editor stored within the attribute). Therefore it is important
9835 // to invalidate the cache before calling wxSafeDecRef!
9836 wxSafeDecRef(oldAttr
);
9840 void wxGrid::CacheAttr(int row
, int col
, wxGridCellAttr
*attr
) const
9844 wxGrid
*self
= (wxGrid
*)this; // const_cast
9846 self
->ClearAttrCache();
9847 self
->m_attrCache
.row
= row
;
9848 self
->m_attrCache
.col
= col
;
9849 self
->m_attrCache
.attr
= attr
;
9854 bool wxGrid::LookupAttr(int row
, int col
, wxGridCellAttr
**attr
) const
9856 if ( row
== m_attrCache
.row
&& col
== m_attrCache
.col
)
9858 *attr
= m_attrCache
.attr
;
9859 wxSafeIncRef(m_attrCache
.attr
);
9861 #ifdef DEBUG_ATTR_CACHE
9862 gs_nAttrCacheHits
++;
9869 #ifdef DEBUG_ATTR_CACHE
9870 gs_nAttrCacheMisses
++;
9877 wxGridCellAttr
*wxGrid::GetCellAttr(int row
, int col
) const
9879 wxGridCellAttr
*attr
= NULL
;
9880 // Additional test to avoid looking at the cache e.g. for
9881 // wxNoCellCoords, as this will confuse memory management.
9884 if ( !LookupAttr(row
, col
, &attr
) )
9886 attr
= m_table
? m_table
->GetAttr(row
, col
, wxGridCellAttr::Any
)
9888 CacheAttr(row
, col
, attr
);
9894 attr
->SetDefAttr(m_defaultCellAttr
);
9898 attr
= m_defaultCellAttr
;
9905 wxGridCellAttr
*wxGrid::GetOrCreateCellAttr(int row
, int col
) const
9907 wxGridCellAttr
*attr
= NULL
;
9908 bool canHave
= ((wxGrid
*)this)->CanHaveAttributes();
9910 wxCHECK_MSG( canHave
, attr
, _T("Cell attributes not allowed"));
9911 wxCHECK_MSG( m_table
, attr
, _T("must have a table") );
9913 attr
= m_table
->GetAttr(row
, col
, wxGridCellAttr::Cell
);
9916 attr
= new wxGridCellAttr(m_defaultCellAttr
);
9918 // artificially inc the ref count to match DecRef() in caller
9920 m_table
->SetAttr(attr
, row
, col
);
9926 // ----------------------------------------------------------------------------
9927 // setting column attributes (wrappers around SetColAttr)
9928 // ----------------------------------------------------------------------------
9930 void wxGrid::SetColFormatBool(int col
)
9932 SetColFormatCustom(col
, wxGRID_VALUE_BOOL
);
9935 void wxGrid::SetColFormatNumber(int col
)
9937 SetColFormatCustom(col
, wxGRID_VALUE_NUMBER
);
9940 void wxGrid::SetColFormatFloat(int col
, int width
, int precision
)
9942 wxString typeName
= wxGRID_VALUE_FLOAT
;
9943 if ( (width
!= -1) || (precision
!= -1) )
9945 typeName
<< _T(':') << width
<< _T(',') << precision
;
9948 SetColFormatCustom(col
, typeName
);
9951 void wxGrid::SetColFormatCustom(int col
, const wxString
& typeName
)
9953 wxGridCellAttr
*attr
= m_table
->GetAttr(-1, col
, wxGridCellAttr::Col
);
9955 attr
= new wxGridCellAttr
;
9956 wxGridCellRenderer
*renderer
= GetDefaultRendererForType(typeName
);
9957 attr
->SetRenderer(renderer
);
9958 wxGridCellEditor
*editor
= GetDefaultEditorForType(typeName
);
9959 attr
->SetEditor(editor
);
9961 SetColAttr(col
, attr
);
9965 // ----------------------------------------------------------------------------
9966 // setting cell attributes: this is forwarded to the table
9967 // ----------------------------------------------------------------------------
9969 void wxGrid::SetAttr(int row
, int col
, wxGridCellAttr
*attr
)
9971 if ( CanHaveAttributes() )
9973 m_table
->SetAttr(attr
, row
, col
);
9982 void wxGrid::SetRowAttr(int row
, wxGridCellAttr
*attr
)
9984 if ( CanHaveAttributes() )
9986 m_table
->SetRowAttr(attr
, row
);
9995 void wxGrid::SetColAttr(int col
, wxGridCellAttr
*attr
)
9997 if ( CanHaveAttributes() )
9999 m_table
->SetColAttr(attr
, col
);
10004 wxSafeDecRef(attr
);
10008 void wxGrid::SetCellBackgroundColour( int row
, int col
, const wxColour
& colour
)
10010 if ( CanHaveAttributes() )
10012 wxGridCellAttr
*attr
= GetOrCreateCellAttr(row
, col
);
10013 attr
->SetBackgroundColour(colour
);
10018 void wxGrid::SetCellTextColour( int row
, int col
, const wxColour
& colour
)
10020 if ( CanHaveAttributes() )
10022 wxGridCellAttr
*attr
= GetOrCreateCellAttr(row
, col
);
10023 attr
->SetTextColour(colour
);
10028 void wxGrid::SetCellFont( int row
, int col
, const wxFont
& font
)
10030 if ( CanHaveAttributes() )
10032 wxGridCellAttr
*attr
= GetOrCreateCellAttr(row
, col
);
10033 attr
->SetFont(font
);
10038 void wxGrid::SetCellAlignment( int row
, int col
, int horiz
, int vert
)
10040 if ( CanHaveAttributes() )
10042 wxGridCellAttr
*attr
= GetOrCreateCellAttr(row
, col
);
10043 attr
->SetAlignment(horiz
, vert
);
10048 void wxGrid::SetCellOverflow( int row
, int col
, bool allow
)
10050 if ( CanHaveAttributes() )
10052 wxGridCellAttr
*attr
= GetOrCreateCellAttr(row
, col
);
10053 attr
->SetOverflow(allow
);
10058 void wxGrid::SetCellSize( int row
, int col
, int num_rows
, int num_cols
)
10060 if ( CanHaveAttributes() )
10062 int cell_rows
, cell_cols
;
10064 wxGridCellAttr
*attr
= GetOrCreateCellAttr(row
, col
);
10065 attr
->GetSize(&cell_rows
, &cell_cols
);
10066 attr
->SetSize(num_rows
, num_cols
);
10069 // Cannot set the size of a cell to 0 or negative values
10070 // While it is perfectly legal to do that, this function cannot
10071 // handle all the possibilies, do it by hand by getting the CellAttr.
10072 // You can only set the size of a cell to 1,1 or greater with this fn
10073 wxASSERT_MSG( !((cell_rows
< 1) || (cell_cols
< 1)),
10074 wxT("wxGrid::SetCellSize setting cell size that is already part of another cell"));
10075 wxASSERT_MSG( !((num_rows
< 1) || (num_cols
< 1)),
10076 wxT("wxGrid::SetCellSize setting cell size to < 1"));
10078 // if this was already a multicell then "turn off" the other cells first
10079 if ((cell_rows
> 1) || (cell_cols
> 1))
10082 for (j
=row
; j
< row
+ cell_rows
; j
++)
10084 for (i
=col
; i
< col
+ cell_cols
; i
++)
10086 if ((i
!= col
) || (j
!= row
))
10088 wxGridCellAttr
*attr_stub
= GetOrCreateCellAttr(j
, i
);
10089 attr_stub
->SetSize( 1, 1 );
10090 attr_stub
->DecRef();
10096 // mark the cells that will be covered by this cell to
10097 // negative or zero values to point back at this cell
10098 if (((num_rows
> 1) || (num_cols
> 1)) && (num_rows
>= 1) && (num_cols
>= 1))
10101 for (j
=row
; j
< row
+ num_rows
; j
++)
10103 for (i
=col
; i
< col
+ num_cols
; i
++)
10105 if ((i
!= col
) || (j
!= row
))
10107 wxGridCellAttr
*attr_stub
= GetOrCreateCellAttr(j
, i
);
10108 attr_stub
->SetSize( row
- j
, col
- i
);
10109 attr_stub
->DecRef();
10117 void wxGrid::SetCellRenderer(int row
, int col
, wxGridCellRenderer
*renderer
)
10119 if ( CanHaveAttributes() )
10121 wxGridCellAttr
*attr
= GetOrCreateCellAttr(row
, col
);
10122 attr
->SetRenderer(renderer
);
10127 void wxGrid::SetCellEditor(int row
, int col
, wxGridCellEditor
* editor
)
10129 if ( CanHaveAttributes() )
10131 wxGridCellAttr
*attr
= GetOrCreateCellAttr(row
, col
);
10132 attr
->SetEditor(editor
);
10137 void wxGrid::SetReadOnly(int row
, int col
, bool isReadOnly
)
10139 if ( CanHaveAttributes() )
10141 wxGridCellAttr
*attr
= GetOrCreateCellAttr(row
, col
);
10142 attr
->SetReadOnly(isReadOnly
);
10147 // ----------------------------------------------------------------------------
10148 // Data type registration
10149 // ----------------------------------------------------------------------------
10151 void wxGrid::RegisterDataType(const wxString
& typeName
,
10152 wxGridCellRenderer
* renderer
,
10153 wxGridCellEditor
* editor
)
10155 m_typeRegistry
->RegisterDataType(typeName
, renderer
, editor
);
10159 wxGridCellEditor
* wxGrid::GetDefaultEditorForCell(int row
, int col
) const
10161 wxString typeName
= m_table
->GetTypeName(row
, col
);
10162 return GetDefaultEditorForType(typeName
);
10165 wxGridCellRenderer
* wxGrid::GetDefaultRendererForCell(int row
, int col
) const
10167 wxString typeName
= m_table
->GetTypeName(row
, col
);
10168 return GetDefaultRendererForType(typeName
);
10171 wxGridCellEditor
* wxGrid::GetDefaultEditorForType(const wxString
& typeName
) const
10173 int index
= m_typeRegistry
->FindOrCloneDataType(typeName
);
10174 if ( index
== wxNOT_FOUND
)
10176 wxFAIL_MSG(wxString::Format(wxT("Unknown data type name [%s]"), typeName
.c_str()));
10181 return m_typeRegistry
->GetEditor(index
);
10184 wxGridCellRenderer
* wxGrid::GetDefaultRendererForType(const wxString
& typeName
) const
10186 int index
= m_typeRegistry
->FindOrCloneDataType(typeName
);
10187 if ( index
== wxNOT_FOUND
)
10189 wxFAIL_MSG(wxString::Format(wxT("Unknown data type name [%s]"), typeName
.c_str()));
10194 return m_typeRegistry
->GetRenderer(index
);
10197 // ----------------------------------------------------------------------------
10199 // ----------------------------------------------------------------------------
10201 void wxGrid::EnableDragRowSize( bool enable
)
10203 m_canDragRowSize
= enable
;
10206 void wxGrid::EnableDragColSize( bool enable
)
10208 m_canDragColSize
= enable
;
10211 void wxGrid::EnableDragGridSize( bool enable
)
10213 m_canDragGridSize
= enable
;
10216 void wxGrid::EnableDragCell( bool enable
)
10218 m_canDragCell
= enable
;
10221 void wxGrid::SetDefaultRowSize( int height
, bool resizeExistingRows
)
10223 m_defaultRowHeight
= wxMax( height
, m_minAcceptableRowHeight
);
10225 if ( resizeExistingRows
)
10227 // since we are resizing all rows to the default row size,
10228 // we can simply clear the row heights and row bottoms
10229 // arrays (which also allows us to take advantage of
10230 // some speed optimisations)
10231 m_rowHeights
.Empty();
10232 m_rowBottoms
.Empty();
10233 if ( !GetBatchCount() )
10238 void wxGrid::SetRowSize( int row
, int height
)
10240 wxCHECK_RET( row
>= 0 && row
< m_numRows
, _T("invalid row index") );
10242 // if < 0 then calculate new height from label
10246 wxArrayString lines
;
10247 wxClientDC
dc(m_rowLabelWin
);
10248 dc
.SetFont(GetLabelFont());
10249 StringToLines(GetRowLabelValue( row
), lines
);
10250 GetTextBoxSize( dc
, lines
, &w
, &h
);
10251 //check that it is not less than the minimal height
10252 height
= wxMax(h
, GetRowMinimalAcceptableHeight());
10255 // See comment in SetColSize
10256 if ( height
< GetRowMinimalAcceptableHeight())
10259 if ( m_rowHeights
.IsEmpty() )
10261 // need to really create the array
10265 int h
= wxMax( 0, height
);
10266 int diff
= h
- m_rowHeights
[row
];
10268 m_rowHeights
[row
] = h
;
10269 for ( int i
= row
; i
< m_numRows
; i
++ )
10271 m_rowBottoms
[i
] += diff
;
10274 if ( !GetBatchCount() )
10278 void wxGrid::SetDefaultColSize( int width
, bool resizeExistingCols
)
10280 // we dont allow zero default column width
10281 m_defaultColWidth
= wxMax( wxMax( width
, m_minAcceptableColWidth
), 1 );
10283 if ( resizeExistingCols
)
10285 // since we are resizing all columns to the default column size,
10286 // we can simply clear the col widths and col rights
10287 // arrays (which also allows us to take advantage of
10288 // some speed optimisations)
10289 m_colWidths
.Empty();
10290 m_colRights
.Empty();
10291 if ( !GetBatchCount() )
10296 void wxGrid::SetColSize( int col
, int width
)
10298 wxCHECK_RET( col
>= 0 && col
< m_numCols
, _T("invalid column index") );
10300 // if < 0 then calculate new width from label
10304 wxArrayString lines
;
10305 wxClientDC
dc(m_colWindow
);
10306 dc
.SetFont(GetLabelFont());
10307 StringToLines(GetColLabelValue(col
), lines
);
10308 if ( GetColLabelTextOrientation() == wxHORIZONTAL
)
10309 GetTextBoxSize( dc
, lines
, &w
, &h
);
10311 GetTextBoxSize( dc
, lines
, &h
, &w
);
10313 //check that it is not less than the minimal width
10314 width
= wxMax(width
, GetColMinimalAcceptableWidth());
10317 // should we check that it's bigger than GetColMinimalWidth(col) here?
10319 // No, because it is reasonable to assume the library user know's
10320 // what he is doing. However we should test against the weaker
10321 // constraint of minimalAcceptableWidth, as this breaks rendering
10323 // This test then fixes sf.net bug #645734
10325 if ( width
< GetColMinimalAcceptableWidth() )
10328 if ( m_colWidths
.IsEmpty() )
10330 // need to really create the array
10334 int w
= wxMax( 0, width
);
10335 int diff
= w
- m_colWidths
[col
];
10336 m_colWidths
[col
] = w
;
10338 for ( int colPos
= GetColPos(col
); colPos
< m_numCols
; colPos
++ )
10340 m_colRights
[GetColAt(colPos
)] += diff
;
10343 if ( !GetBatchCount() )
10350 void wxGrid::SetColMinimalWidth( int col
, int width
)
10352 if (width
> GetColMinimalAcceptableWidth())
10354 wxLongToLongHashMap::key_type key
= (wxLongToLongHashMap::key_type
)col
;
10355 m_colMinWidths
[key
] = width
;
10359 void wxGrid::SetRowMinimalHeight( int row
, int width
)
10361 if (width
> GetRowMinimalAcceptableHeight())
10363 wxLongToLongHashMap::key_type key
= (wxLongToLongHashMap::key_type
)row
;
10364 m_rowMinHeights
[key
] = width
;
10368 int wxGrid::GetColMinimalWidth(int col
) const
10370 wxLongToLongHashMap::key_type key
= (wxLongToLongHashMap::key_type
)col
;
10371 wxLongToLongHashMap::const_iterator it
= m_colMinWidths
.find(key
);
10373 return it
!= m_colMinWidths
.end() ? (int)it
->second
: m_minAcceptableColWidth
;
10376 int wxGrid::GetRowMinimalHeight(int row
) const
10378 wxLongToLongHashMap::key_type key
= (wxLongToLongHashMap::key_type
)row
;
10379 wxLongToLongHashMap::const_iterator it
= m_rowMinHeights
.find(key
);
10381 return it
!= m_rowMinHeights
.end() ? (int)it
->second
: m_minAcceptableRowHeight
;
10384 void wxGrid::SetColMinimalAcceptableWidth( int width
)
10386 // We do allow a width of 0 since this gives us
10387 // an easy way to temporarily hiding columns.
10389 m_minAcceptableColWidth
= width
;
10392 void wxGrid::SetRowMinimalAcceptableHeight( int height
)
10394 // We do allow a height of 0 since this gives us
10395 // an easy way to temporarily hiding rows.
10397 m_minAcceptableRowHeight
= height
;
10400 int wxGrid::GetColMinimalAcceptableWidth() const
10402 return m_minAcceptableColWidth
;
10405 int wxGrid::GetRowMinimalAcceptableHeight() const
10407 return m_minAcceptableRowHeight
;
10410 // ----------------------------------------------------------------------------
10412 // ----------------------------------------------------------------------------
10415 wxGrid::AutoSizeColOrRow(int colOrRow
, bool setAsMin
, wxGridDirection direction
)
10417 const bool column
= direction
== wxGRID_COLUMN
;
10419 wxClientDC
dc(m_gridWin
);
10421 // cancel editing of cell
10422 HideCellEditControl();
10423 SaveEditControlValue();
10425 // init both of them to avoid compiler warnings, even if we only need one
10433 wxCoord extent
, extentMax
= 0;
10434 int max
= column
? m_numRows
: m_numCols
;
10435 for ( int rowOrCol
= 0; rowOrCol
< max
; rowOrCol
++ )
10442 wxGridCellAttr
*attr
= GetCellAttr(row
, col
);
10443 wxGridCellRenderer
*renderer
= attr
->GetRenderer(this, row
, col
);
10446 wxSize size
= renderer
->GetBestSize(*this, *attr
, dc
, row
, col
);
10447 extent
= column
? size
.x
: size
.y
;
10448 if ( extent
> extentMax
)
10449 extentMax
= extent
;
10451 renderer
->DecRef();
10457 // now also compare with the column label extent
10459 dc
.SetFont( GetLabelFont() );
10463 dc
.GetMultiLineTextExtent( GetColLabelValue(col
), &w
, &h
);
10464 if ( GetColLabelTextOrientation() == wxVERTICAL
)
10468 dc
.GetMultiLineTextExtent( GetRowLabelValue(row
), &w
, &h
);
10470 extent
= column
? w
: h
;
10471 if ( extent
> extentMax
)
10472 extentMax
= extent
;
10476 // empty column - give default extent (notice that if extentMax is less
10477 // than default extent but != 0, it's OK)
10478 extentMax
= column
? m_defaultColWidth
: m_defaultRowHeight
;
10483 // leave some space around text
10491 // Ensure automatic width is not less than minimal width. See the
10492 // comment in SetColSize() for explanation of why this isn't done
10493 // in SetColSize().
10495 extentMax
= wxMax(extentMax
, GetColMinimalWidth(col
));
10497 SetColSize( col
, extentMax
);
10498 if ( !GetBatchCount() )
10500 if ( m_useNativeHeader
)
10502 GetColHeader()->UpdateColumn(col
);
10507 m_gridWin
->GetClientSize( &cw
, &ch
);
10508 wxRect
rect ( CellToRect( 0, col
) );
10510 CalcScrolledPosition(rect
.x
, 0, &rect
.x
, &dummy
);
10511 rect
.width
= cw
- rect
.x
;
10512 rect
.height
= m_colLabelHeight
;
10513 GetColLabelWindow()->Refresh( true, &rect
);
10519 // Ensure automatic width is not less than minimal height. See the
10520 // comment in SetColSize() for explanation of why this isn't done
10521 // in SetRowSize().
10523 extentMax
= wxMax(extentMax
, GetRowMinimalHeight(row
));
10525 SetRowSize(row
, extentMax
);
10526 if ( !GetBatchCount() )
10529 m_gridWin
->GetClientSize( &cw
, &ch
);
10530 wxRect
rect( CellToRect( row
, 0 ) );
10532 CalcScrolledPosition(0, rect
.y
, &dummy
, &rect
.y
);
10533 rect
.width
= m_rowLabelWidth
;
10534 rect
.height
= ch
- rect
.y
;
10535 m_rowLabelWin
->Refresh( true, &rect
);
10542 SetColMinimalWidth(col
, extentMax
);
10544 SetRowMinimalHeight(row
, extentMax
);
10548 wxCoord
wxGrid::CalcColOrRowLabelAreaMinSize(wxGridDirection direction
)
10550 // calculate size for the rows or columns?
10551 const bool calcRows
= direction
== wxGRID_ROW
;
10553 wxClientDC
dc(calcRows
? GetGridRowLabelWindow()
10554 : GetGridColLabelWindow());
10555 dc
.SetFont(GetLabelFont());
10557 // which dimension should we take into account for calculations?
10559 // for columns, the text can be only horizontal so it's easy but for rows
10560 // we also have to take into account the text orientation
10562 useWidth
= calcRows
|| (GetColLabelTextOrientation() == wxVERTICAL
);
10564 wxArrayString lines
;
10565 wxCoord extentMax
= 0;
10567 const int numRowsOrCols
= calcRows
? m_numRows
: m_numCols
;
10568 for ( int rowOrCol
= 0; rowOrCol
< numRowsOrCols
; rowOrCol
++ )
10572 wxString label
= calcRows
? GetRowLabelValue(rowOrCol
)
10573 : GetColLabelValue(rowOrCol
);
10574 StringToLines(label
, lines
);
10577 GetTextBoxSize(dc
, lines
, &w
, &h
);
10579 const wxCoord extent
= useWidth
? w
: h
;
10580 if ( extent
> extentMax
)
10581 extentMax
= extent
;
10586 // empty column - give default extent (notice that if extentMax is less
10587 // than default extent but != 0, it's OK)
10588 extentMax
= calcRows
? GetDefaultRowLabelSize()
10589 : GetDefaultColLabelSize();
10592 // leave some space around text (taken from AutoSizeColOrRow)
10601 int wxGrid::SetOrCalcColumnSizes(bool calcOnly
, bool setAsMin
)
10603 int width
= m_rowLabelWidth
;
10605 wxGridUpdateLocker locker
;
10607 locker
.Create(this);
10609 for ( int col
= 0; col
< m_numCols
; col
++ )
10612 AutoSizeColumn(col
, setAsMin
);
10614 width
+= GetColWidth(col
);
10620 int wxGrid::SetOrCalcRowSizes(bool calcOnly
, bool setAsMin
)
10622 int height
= m_colLabelHeight
;
10624 wxGridUpdateLocker locker
;
10626 locker
.Create(this);
10628 for ( int row
= 0; row
< m_numRows
; row
++ )
10631 AutoSizeRow(row
, setAsMin
);
10633 height
+= GetRowHeight(row
);
10639 void wxGrid::AutoSize()
10641 wxGridUpdateLocker
locker(this);
10643 wxSize
size(SetOrCalcColumnSizes(false) - m_rowLabelWidth
+ m_extraWidth
,
10644 SetOrCalcRowSizes(false) - m_colLabelHeight
+ m_extraHeight
);
10646 // we know that we're not going to have scrollbars so disable them now to
10647 // avoid trouble in SetClientSize() which can otherwise set the correct
10648 // client size but also leave space for (not needed any more) scrollbars
10649 SetScrollbars(0, 0, 0, 0, 0, 0, true);
10651 // restore the scroll rate parameters overwritten by SetScrollbars()
10652 SetScrollRate(m_scrollLineX
, m_scrollLineY
);
10654 SetClientSize(size
.x
+ m_rowLabelWidth
, size
.y
+ m_colLabelHeight
);
10657 void wxGrid::AutoSizeRowLabelSize( int row
)
10659 // Hide the edit control, so it
10660 // won't interfere with drag-shrinking.
10661 if ( IsCellEditControlShown() )
10663 HideCellEditControl();
10664 SaveEditControlValue();
10667 // autosize row height depending on label text
10668 SetRowSize(row
, -1);
10672 void wxGrid::AutoSizeColLabelSize( int col
)
10674 // Hide the edit control, so it
10675 // won't interfere with drag-shrinking.
10676 if ( IsCellEditControlShown() )
10678 HideCellEditControl();
10679 SaveEditControlValue();
10682 // autosize column width depending on label text
10683 SetColSize(col
, -1);
10687 wxSize
wxGrid::DoGetBestSize() const
10689 wxGrid
*self
= (wxGrid
*)this; // const_cast
10691 // we do the same as in AutoSize() here with the exception that we don't
10692 // change the column/row sizes, only calculate them
10693 wxSize
size(self
->SetOrCalcColumnSizes(true) - m_rowLabelWidth
+ m_extraWidth
,
10694 self
->SetOrCalcRowSizes(true) - m_colLabelHeight
+ m_extraHeight
);
10696 // NOTE: This size should be cached, but first we need to add calls to
10697 // InvalidateBestSize everywhere that could change the results of this
10699 // CacheBestSize(size);
10701 return wxSize(size
.x
+ m_rowLabelWidth
, size
.y
+ m_colLabelHeight
)
10702 + GetWindowBorderSize();
10710 wxPen
& wxGrid::GetDividerPen() const
10715 // ----------------------------------------------------------------------------
10716 // cell value accessor functions
10717 // ----------------------------------------------------------------------------
10719 void wxGrid::SetCellValue( int row
, int col
, const wxString
& s
)
10723 m_table
->SetValue( row
, col
, s
);
10724 if ( !GetBatchCount() )
10727 wxRect
rect( CellToRect( row
, col
) );
10729 rect
.width
= m_gridWin
->GetClientSize().GetWidth();
10730 CalcScrolledPosition(0, rect
.y
, &dummy
, &rect
.y
);
10731 m_gridWin
->Refresh( false, &rect
);
10734 if ( m_currentCellCoords
.GetRow() == row
&&
10735 m_currentCellCoords
.GetCol() == col
&&
10736 IsCellEditControlShown())
10737 // Note: If we are using IsCellEditControlEnabled,
10738 // this interacts badly with calling SetCellValue from
10739 // an EVT_GRID_CELL_CHANGE handler.
10741 HideCellEditControl();
10742 ShowCellEditControl(); // will reread data from table
10747 // ----------------------------------------------------------------------------
10748 // block, row and column selection
10749 // ----------------------------------------------------------------------------
10751 void wxGrid::SelectRow( int row
, bool addToSelected
)
10753 if ( !m_selection
)
10756 if ( !addToSelected
)
10759 m_selection
->SelectRow(row
);
10762 void wxGrid::SelectCol( int col
, bool addToSelected
)
10764 if ( !m_selection
)
10767 if ( !addToSelected
)
10770 m_selection
->SelectCol(col
);
10773 void wxGrid::SelectBlock(int topRow
, int leftCol
, int bottomRow
, int rightCol
,
10774 bool addToSelected
)
10776 if ( !m_selection
)
10779 if ( !addToSelected
)
10782 m_selection
->SelectBlock(topRow
, leftCol
, bottomRow
, rightCol
);
10785 void wxGrid::SelectAll()
10787 if ( m_numRows
> 0 && m_numCols
> 0 )
10790 m_selection
->SelectBlock( 0, 0, m_numRows
- 1, m_numCols
- 1 );
10794 // ----------------------------------------------------------------------------
10795 // cell, row and col deselection
10796 // ----------------------------------------------------------------------------
10798 void wxGrid::DeselectLine(int line
, const wxGridOperations
& oper
)
10800 if ( !m_selection
)
10803 const wxGridSelectionModes mode
= m_selection
->GetSelectionMode();
10804 if ( mode
== oper
.GetSelectionMode() )
10806 const wxGridCellCoords
c(oper
.MakeCoords(line
, 0));
10807 if ( m_selection
->IsInSelection(c
) )
10808 m_selection
->ToggleCellSelection(c
);
10810 else if ( mode
!= oper
.Dual().GetSelectionMode() )
10812 const int nOther
= oper
.Dual().GetNumberOfLines(this);
10813 for ( int i
= 0; i
< nOther
; i
++ )
10815 const wxGridCellCoords
c(oper
.MakeCoords(line
, i
));
10816 if ( m_selection
->IsInSelection(c
) )
10817 m_selection
->ToggleCellSelection(c
);
10820 //else: can only select orthogonal lines so no lines in this direction
10821 // could have been selected anyhow
10824 void wxGrid::DeselectRow(int row
)
10826 DeselectLine(row
, wxGridRowOperations());
10829 void wxGrid::DeselectCol(int col
)
10831 DeselectLine(col
, wxGridColumnOperations());
10834 void wxGrid::DeselectCell( int row
, int col
)
10836 if ( m_selection
&& m_selection
->IsInSelection(row
, col
) )
10837 m_selection
->ToggleCellSelection(row
, col
);
10840 bool wxGrid::IsSelection() const
10842 return ( m_selection
&& (m_selection
->IsSelection() ||
10843 ( m_selectedBlockTopLeft
!= wxGridNoCellCoords
&&
10844 m_selectedBlockBottomRight
!= wxGridNoCellCoords
) ) );
10847 bool wxGrid::IsInSelection( int row
, int col
) const
10849 return ( m_selection
&& (m_selection
->IsInSelection( row
, col
) ||
10850 ( row
>= m_selectedBlockTopLeft
.GetRow() &&
10851 col
>= m_selectedBlockTopLeft
.GetCol() &&
10852 row
<= m_selectedBlockBottomRight
.GetRow() &&
10853 col
<= m_selectedBlockBottomRight
.GetCol() )) );
10856 wxGridCellCoordsArray
wxGrid::GetSelectedCells() const
10860 wxGridCellCoordsArray a
;
10864 return m_selection
->m_cellSelection
;
10867 wxGridCellCoordsArray
wxGrid::GetSelectionBlockTopLeft() const
10871 wxGridCellCoordsArray a
;
10875 return m_selection
->m_blockSelectionTopLeft
;
10878 wxGridCellCoordsArray
wxGrid::GetSelectionBlockBottomRight() const
10882 wxGridCellCoordsArray a
;
10886 return m_selection
->m_blockSelectionBottomRight
;
10889 wxArrayInt
wxGrid::GetSelectedRows() const
10897 return m_selection
->m_rowSelection
;
10900 wxArrayInt
wxGrid::GetSelectedCols() const
10908 return m_selection
->m_colSelection
;
10911 void wxGrid::ClearSelection()
10913 wxRect r1
= BlockToDeviceRect(m_selectedBlockTopLeft
,
10914 m_selectedBlockBottomRight
);
10915 wxRect r2
= BlockToDeviceRect(m_currentCellCoords
,
10916 m_selectedBlockCorner
);
10918 m_selectedBlockTopLeft
=
10919 m_selectedBlockBottomRight
=
10920 m_selectedBlockCorner
= wxGridNoCellCoords
;
10922 Refresh( false, &r1
);
10923 Refresh( false, &r2
);
10926 m_selection
->ClearSelection();
10929 // This function returns the rectangle that encloses the given block
10930 // in device coords clipped to the client size of the grid window.
10932 wxRect
wxGrid::BlockToDeviceRect( const wxGridCellCoords
& topLeft
,
10933 const wxGridCellCoords
& bottomRight
) const
10936 wxRect tempCellRect
= CellToRect(topLeft
);
10937 if ( tempCellRect
!= wxGridNoCellRect
)
10939 resultRect
= tempCellRect
;
10943 resultRect
= wxRect(0, 0, 0, 0);
10946 tempCellRect
= CellToRect(bottomRight
);
10947 if ( tempCellRect
!= wxGridNoCellRect
)
10949 resultRect
+= tempCellRect
;
10953 // If both inputs were "wxGridNoCellRect," then there's nothing to do.
10954 return wxGridNoCellRect
;
10957 // Ensure that left/right and top/bottom pairs are in order.
10958 int left
= resultRect
.GetLeft();
10959 int top
= resultRect
.GetTop();
10960 int right
= resultRect
.GetRight();
10961 int bottom
= resultRect
.GetBottom();
10963 int leftCol
= topLeft
.GetCol();
10964 int topRow
= topLeft
.GetRow();
10965 int rightCol
= bottomRight
.GetCol();
10966 int bottomRow
= bottomRight
.GetRow();
10975 leftCol
= rightCol
;
10986 topRow
= bottomRow
;
10990 // The following loop is ONLY necessary to detect and handle merged cells.
10992 m_gridWin
->GetClientSize( &cw
, &ch
);
10994 // Get the origin coordinates: notice that they will be negative if the
10995 // grid is scrolled downwards/to the right.
10996 int gridOriginX
= 0;
10997 int gridOriginY
= 0;
10998 CalcScrolledPosition(gridOriginX
, gridOriginY
, &gridOriginX
, &gridOriginY
);
11000 int onScreenLeftmostCol
= internalXToCol(-gridOriginX
);
11001 int onScreenUppermostRow
= internalYToRow(-gridOriginY
);
11003 int onScreenRightmostCol
= internalXToCol(-gridOriginX
+ cw
);
11004 int onScreenBottommostRow
= internalYToRow(-gridOriginY
+ ch
);
11006 // Bound our loop so that we only examine the portion of the selected block
11007 // that is shown on screen. Therefore, we compare the Top-Left block values
11008 // to the Top-Left screen values, and the Bottom-Right block values to the
11009 // Bottom-Right screen values, choosing appropriately.
11010 const int visibleTopRow
= wxMax(topRow
, onScreenUppermostRow
);
11011 const int visibleBottomRow
= wxMin(bottomRow
, onScreenBottommostRow
);
11012 const int visibleLeftCol
= wxMax(leftCol
, onScreenLeftmostCol
);
11013 const int visibleRightCol
= wxMin(rightCol
, onScreenRightmostCol
);
11015 for ( int j
= visibleTopRow
; j
<= visibleBottomRow
; j
++ )
11017 for ( int i
= visibleLeftCol
; i
<= visibleRightCol
; i
++ )
11019 if ( (j
== visibleTopRow
) || (j
== visibleBottomRow
) ||
11020 (i
== visibleLeftCol
) || (i
== visibleRightCol
) )
11022 tempCellRect
= CellToRect( j
, i
);
11024 if (tempCellRect
.x
< left
)
11025 left
= tempCellRect
.x
;
11026 if (tempCellRect
.y
< top
)
11027 top
= tempCellRect
.y
;
11028 if (tempCellRect
.x
+ tempCellRect
.width
> right
)
11029 right
= tempCellRect
.x
+ tempCellRect
.width
;
11030 if (tempCellRect
.y
+ tempCellRect
.height
> bottom
)
11031 bottom
= tempCellRect
.y
+ tempCellRect
.height
;
11035 i
= visibleRightCol
; // jump over inner cells.
11040 // Convert to scrolled coords
11041 CalcScrolledPosition( left
, top
, &left
, &top
);
11042 CalcScrolledPosition( right
, bottom
, &right
, &bottom
);
11044 if (right
< 0 || bottom
< 0 || left
> cw
|| top
> ch
)
11045 return wxRect(0,0,0,0);
11047 resultRect
.SetLeft( wxMax(0, left
) );
11048 resultRect
.SetTop( wxMax(0, top
) );
11049 resultRect
.SetRight( wxMin(cw
, right
) );
11050 resultRect
.SetBottom( wxMin(ch
, bottom
) );
11055 // ----------------------------------------------------------------------------
11057 // ----------------------------------------------------------------------------
11059 #if wxUSE_DRAG_AND_DROP
11061 // this allow setting drop target directly on wxGrid
11062 void wxGrid::SetDropTarget(wxDropTarget
*dropTarget
)
11064 GetGridWindow()->SetDropTarget(dropTarget
);
11067 #endif // wxUSE_DRAG_AND_DROP
11069 // ----------------------------------------------------------------------------
11070 // grid event classes
11071 // ----------------------------------------------------------------------------
11073 IMPLEMENT_DYNAMIC_CLASS( wxGridEvent
, wxNotifyEvent
)
11075 wxGridEvent::wxGridEvent( int id
, wxEventType type
, wxObject
* obj
,
11076 int row
, int col
, int x
, int y
, bool sel
,
11077 bool control
, bool shift
, bool alt
, bool meta
)
11078 : wxNotifyEvent( type
, id
),
11079 wxKeyboardState(control
, shift
, alt
, meta
)
11081 Init(row
, col
, x
, y
, sel
);
11083 SetEventObject(obj
);
11086 IMPLEMENT_DYNAMIC_CLASS( wxGridSizeEvent
, wxNotifyEvent
)
11088 wxGridSizeEvent::wxGridSizeEvent( int id
, wxEventType type
, wxObject
* obj
,
11089 int rowOrCol
, int x
, int y
,
11090 bool control
, bool shift
, bool alt
, bool meta
)
11091 : wxNotifyEvent( type
, id
),
11092 wxKeyboardState(control
, shift
, alt
, meta
)
11094 Init(rowOrCol
, x
, y
);
11096 SetEventObject(obj
);
11100 IMPLEMENT_DYNAMIC_CLASS( wxGridRangeSelectEvent
, wxNotifyEvent
)
11102 wxGridRangeSelectEvent::wxGridRangeSelectEvent(int id
, wxEventType type
, wxObject
* obj
,
11103 const wxGridCellCoords
& topLeft
,
11104 const wxGridCellCoords
& bottomRight
,
11105 bool sel
, bool control
,
11106 bool shift
, bool alt
, bool meta
)
11107 : wxNotifyEvent( type
, id
),
11108 wxKeyboardState(control
, shift
, alt
, meta
)
11110 Init(topLeft
, bottomRight
, sel
);
11112 SetEventObject(obj
);
11116 IMPLEMENT_DYNAMIC_CLASS(wxGridEditorCreatedEvent
, wxCommandEvent
)
11118 wxGridEditorCreatedEvent::wxGridEditorCreatedEvent(int id
, wxEventType type
,
11119 wxObject
* obj
, int row
,
11120 int col
, wxControl
* ctrl
)
11121 : wxCommandEvent(type
, id
)
11123 SetEventObject(obj
);
11129 #endif // wxUSE_GRID