1 /////////////////////////////////////////////////////////////////////////////
3 // Purpose: wxGrid and related classes
4 // Author: Michael Bedward (based on code by Julian Smart, Robin Dunn)
8 // Copyright: (c) Michael Bedward
9 // Licence: wxWindows licence
10 /////////////////////////////////////////////////////////////////////////////
15 #if !defined(wxUSE_NEW_GRID) || !(wxUSE_NEW_GRID)
23 #pragma interface "grid.h"
27 #include "wx/scrolwin.h"
28 #include "wx/string.h"
29 #include "wx/scrolbar.h"
31 #include "wx/textctrl.h"
32 #include "wx/combobox.h"
33 #include "wx/dynarray.h"
36 // Default parameters for wxGrid
38 #define WXGRID_DEFAULT_NUMBER_ROWS 10
39 #define WXGRID_DEFAULT_NUMBER_COLS 10
41 #define WXGRID_DEFAULT_ROW_HEIGHT 25
43 #define WXGRID_DEFAULT_ROW_HEIGHT 30
45 #define WXGRID_DEFAULT_COL_WIDTH 80
46 #define WXGRID_DEFAULT_COL_LABEL_HEIGHT 32
47 #define WXGRID_DEFAULT_ROW_LABEL_WIDTH 82
48 #define WXGRID_LABEL_EDGE_ZONE 5
49 #define WXGRID_MIN_ROW_HEIGHT 15
50 #define WXGRID_MIN_COL_WIDTH 15
51 #define WXGRID_DEFAULT_SCROLLBAR_WIDTH 16
54 class WXDLLEXPORT wxGrid
;
57 //////////////////////////////////////////////////////////////////////
61 //////////////////////////////////////////////////////////////////////
64 class WXDLLEXPORT wxGridTableBase
: public wxObject
68 virtual ~wxGridTableBase();
70 // You must override these functions in a derived table class
72 virtual long GetNumberRows() = 0;
73 virtual long GetNumberCols() = 0;
74 virtual wxString
GetValue( int row
, int col
) = 0;
75 virtual void SetValue( int row
, int col
, const wxString
& s
) = 0;
76 virtual bool IsEmptyCell( int row
, int col
) = 0;
78 // Overriding these is optional
80 virtual void SetView( wxGrid
*grid
) { m_view
= grid
; }
81 virtual wxGrid
* GetView() const { return m_view
; }
83 virtual void Clear() {}
84 virtual bool InsertRows( size_t pos
= 0, size_t numRows
= 1 );
85 virtual bool AppendRows( size_t numRows
= 1 );
86 virtual bool DeleteRows( size_t pos
= 0, size_t numRows
= 1 );
87 virtual bool InsertCols( size_t pos
= 0, size_t numCols
= 1 );
88 virtual bool AppendCols( size_t numCols
= 1 );
89 virtual bool DeleteCols( size_t pos
= 0, size_t numCols
= 1 );
91 virtual wxString
GetRowLabelValue( int row
);
92 virtual wxString
GetColLabelValue( int col
);
93 virtual void SetRowLabelValue( int WXUNUSED(row
), const wxString
& ) {}
94 virtual void SetColLabelValue( int WXUNUSED(col
), const wxString
& ) {}
99 DECLARE_ABSTRACT_CLASS( wxGridTableBase
);
104 // IDs for messages sent from grid table to view
106 enum wxGridTableRequest
108 wxGRIDTABLE_REQUEST_VIEW_GET_VALUES
= 2000,
109 wxGRIDTABLE_REQUEST_VIEW_SEND_VALUES
,
110 wxGRIDTABLE_NOTIFY_ROWS_INSERTED
,
111 wxGRIDTABLE_NOTIFY_ROWS_APPENDED
,
112 wxGRIDTABLE_NOTIFY_ROWS_DELETED
,
113 wxGRIDTABLE_NOTIFY_COLS_INSERTED
,
114 wxGRIDTABLE_NOTIFY_COLS_APPENDED
,
115 wxGRIDTABLE_NOTIFY_COLS_DELETED
118 class WXDLLEXPORT wxGridTableMessage
121 wxGridTableMessage();
122 wxGridTableMessage( wxGridTableBase
*table
, int id
,
126 void SetTableObject( wxGridTableBase
*table
) { m_table
= table
; }
127 wxGridTableBase
* GetTableObject() const { return m_table
; }
128 void SetId( int id
) { m_id
= id
; }
129 int GetId() { return m_id
; }
130 void SetCommandInt( int comInt1
) { m_comInt1
= comInt1
; }
131 int GetCommandInt() { return m_comInt1
; }
132 void SetCommandInt2( int comInt2
) { m_comInt2
= comInt2
; }
133 int GetCommandInt2() { return m_comInt2
; }
136 wxGridTableBase
*m_table
;
144 // ------ wxGridStringArray
145 // A 2-dimensional array of strings for data values
148 WX_DECLARE_EXPORTED_OBJARRAY(wxArrayString
, wxGridStringArray
);
152 // ------ wxGridStringTable
154 // Simplest type of data table for a grid for small tables of strings
155 // that are stored in memory
158 class WXDLLEXPORT wxGridStringTable
: public wxGridTableBase
162 wxGridStringTable( int numRows
, int numCols
);
163 ~wxGridStringTable();
165 // these are pure virtual in wxGridTableBase
167 long GetNumberRows();
168 long GetNumberCols();
169 wxString
GetValue( int row
, int col
);
170 void SetValue( int row
, int col
, const wxString
& s
);
171 bool IsEmptyCell( int row
, int col
);
173 // overridden functions from wxGridTableBase
176 bool InsertRows( size_t pos
= 0, size_t numRows
= 1 );
177 bool AppendRows( size_t numRows
= 1 );
178 bool DeleteRows( size_t pos
= 0, size_t numRows
= 1 );
179 bool InsertCols( size_t pos
= 0, size_t numCols
= 1 );
180 bool AppendCols( size_t numCols
= 1 );
181 bool DeleteCols( size_t pos
= 0, size_t numCols
= 1 );
183 void SetRowLabelValue( int row
, const wxString
& );
184 void SetColLabelValue( int col
, const wxString
& );
185 wxString
GetRowLabelValue( int row
);
186 wxString
GetColLabelValue( int col
);
189 wxGridStringArray m_data
;
191 // These only get used if you set your own labels, otherwise the
192 // GetRow/ColLabelValue functions return wxGridTableBase defaults
194 wxArrayString m_rowLabels
;
195 wxArrayString m_colLabels
;
197 DECLARE_DYNAMIC_CLASS( wxGridStringTable
)
202 //////////////////////////////////////////////////////////////////////
206 //////////////////////////////////////////////////////////////////////
208 class WXDLLEXPORT wxGridCellCoords
211 wxGridCellCoords() { m_row
= m_col
= -1; }
212 wxGridCellCoords( int r
, int c
) { m_row
= r
; m_col
= c
; }
214 // default copy ctor is ok
216 long GetRow() const { return m_row
; }
217 void SetRow( long n
) { m_row
= n
; }
218 long GetCol() const { return m_col
; }
219 void SetCol( long n
) { m_col
= n
; }
220 void Set( long row
, long col
) { m_row
= row
; m_col
= col
; }
222 wxGridCellCoords
& operator=( const wxGridCellCoords
& other
)
224 if ( &other
!= this )
232 bool operator==( const wxGridCellCoords
& other
)
234 return (m_row
== other
.m_row
&& m_col
== other
.m_col
);
237 bool operator!=( const wxGridCellCoords
& other
)
239 return (m_row
!= other
.m_row
|| m_col
!= other
.m_col
);
244 return (m_row
== -1 && m_col
== -1 );
253 // For comparisons...
255 extern wxGridCellCoords wxGridNoCellCoords
;
256 extern wxRect wxGridNoCellRect
;
258 // An array of cell coords...
260 WX_DECLARE_EXPORTED_OBJARRAY(wxGridCellCoords
, wxGridCellCoordsArray
);
264 // This set of classes is to provide for the use of different types of
265 // cell edit controls in the grid while avoiding the wx class info
266 // system in deference to wxPython
268 class WXDLLEXPORT wxGridTextCtrl
: public wxTextCtrl
272 wxGridTextCtrl( wxWindow
*,
276 const wxString
& value
= wxEmptyString
,
277 const wxPoint
& pos
= wxDefaultPosition
,
278 const wxSize
& size
= wxDefaultSize
,
281 void SetStartValue( const wxString
& );
282 wxString
GetStartValue() { return startValue
; }
287 // TRUE for controls placed over cells,
288 // FALSE for a control on a grid control panel
289 bool m_isCellControl
;
293 void OnKeyDown( wxKeyEvent
& );
295 DECLARE_DYNAMIC_CLASS( wxGridTextCtrl
)
296 DECLARE_EVENT_TABLE()
300 class WXDLLEXPORT wxGridRowLabelWindow
: public wxWindow
303 wxGridRowLabelWindow() { m_owner
= (wxGrid
*)NULL
; }
304 wxGridRowLabelWindow( wxGrid
*parent
, wxWindowID id
,
305 const wxPoint
&pos
, const wxSize
&size
);
310 void OnPaint( wxPaintEvent
& event
);
311 void OnMouseEvent( wxMouseEvent
& event
);
312 void OnKeyDown( wxKeyEvent
& event
);
314 DECLARE_DYNAMIC_CLASS(wxGridRowLabelWindow
)
315 DECLARE_EVENT_TABLE()
319 class WXDLLEXPORT wxGridColLabelWindow
: public wxWindow
322 wxGridColLabelWindow() { m_owner
= (wxGrid
*)NULL
; }
323 wxGridColLabelWindow( wxGrid
*parent
, wxWindowID id
,
324 const wxPoint
&pos
, const wxSize
&size
);
329 void OnPaint( wxPaintEvent
&event
);
330 void OnMouseEvent( wxMouseEvent
& event
);
331 void OnKeyDown( wxKeyEvent
& event
);
333 DECLARE_DYNAMIC_CLASS(wxGridColLabelWindow
)
334 DECLARE_EVENT_TABLE()
338 class WXDLLEXPORT wxGridCornerLabelWindow
: public wxWindow
341 wxGridCornerLabelWindow() { m_owner
= (wxGrid
*)NULL
; }
342 wxGridCornerLabelWindow( wxGrid
*parent
, wxWindowID id
,
343 const wxPoint
&pos
, const wxSize
&size
);
348 void OnMouseEvent( wxMouseEvent
& event
);
349 void OnKeyDown( wxKeyEvent
& event
);
351 DECLARE_DYNAMIC_CLASS(wxGridCornerLabelWindow
)
352 DECLARE_EVENT_TABLE()
357 class WXDLLEXPORT wxGridWindow
: public wxPanel
362 m_owner
= (wxGrid
*)NULL
;
363 m_rowLabelWin
= (wxGridRowLabelWindow
*)NULL
;
364 m_colLabelWin
= (wxGridColLabelWindow
*)NULL
;
367 wxGridWindow( wxGrid
*parent
,
368 wxGridRowLabelWindow
*rowLblWin
,
369 wxGridColLabelWindow
*colLblWin
,
370 wxWindowID id
, const wxPoint
&pos
, const wxSize
&size
);
373 void ScrollWindow( int dx
, int dy
, const wxRect
*rect
);
377 wxGridRowLabelWindow
*m_rowLabelWin
;
378 wxGridColLabelWindow
*m_colLabelWin
;
380 void OnPaint( wxPaintEvent
&event
);
381 void OnMouseEvent( wxMouseEvent
& event
);
382 void OnKeyDown( wxKeyEvent
& );
384 DECLARE_DYNAMIC_CLASS(wxGridWindow
)
385 DECLARE_EVENT_TABLE()
390 class WXDLLEXPORT wxGrid
: public wxScrolledWindow
396 wxGrid( wxWindow
*parent
,
398 const wxPoint
& pos
= wxDefaultPosition
,
399 const wxSize
& size
= wxDefaultSize
,
401 const wxString
& name
= wxPanelNameStr
);
405 bool CreateGrid( int numRows
, int numCols
);
408 // ------ grid dimensions
410 int GetNumberRows() { return m_numRows
; }
411 int GetNumberCols() { return m_numCols
; }
414 // ------ display update functions
416 void CalcRowLabelsExposed( wxRegion
& reg
);
417 void CalcColLabelsExposed( wxRegion
& reg
);
418 void CalcCellsExposed( wxRegion
& reg
);
421 // ------ event handlers
423 void ProcessRowLabelMouseEvent( wxMouseEvent
& event
);
424 void ProcessColLabelMouseEvent( wxMouseEvent
& event
);
425 void ProcessCornerLabelMouseEvent( wxMouseEvent
& event
);
426 void ProcessGridCellMouseEvent( wxMouseEvent
& event
);
427 bool ProcessTableMessage( wxGridTableMessage
& );
430 wxGridTableBase
* GetTable() const { return m_table
; }
431 void SetTable( wxGridTableBase
*table
) { m_table
= table
; }
434 bool InsertRows( int pos
= 0, int numRows
= 1, bool updateLabels
=TRUE
);
435 bool AppendRows( int numRows
= 1, bool updateLabels
=TRUE
);
436 bool DeleteRows( int pos
= 0, int numRows
= 1, bool updateLabels
=TRUE
);
437 bool InsertCols( int pos
= 0, int numCols
= 1, bool updateLabels
=TRUE
);
438 bool AppendCols( int numCols
= 1, bool updateLabels
=TRUE
);
439 bool DeleteCols( int pos
= 0, int numCols
= 1, bool updateLabels
=TRUE
);
441 void DrawGridCellArea( wxDC
& dc
);
442 void DrawCellBorder( wxDC
& dc
, const wxGridCellCoords
& );
443 void DrawAllGridLines( wxDC
& dc
); // TODO - delete this ?
444 void DrawCell( wxDC
& dc
, const wxGridCellCoords
& );
445 void DrawCellBackground( wxDC
& dc
, const wxGridCellCoords
& );
446 void DrawCellValue( wxDC
& dc
, const wxGridCellCoords
& );
448 void DrawRowLabels( wxDC
& dc
);
449 void DrawRowLabel( wxDC
& dc
, int row
);
450 void DrawColLabels( wxDC
& dc
);
451 void DrawColLabel( wxDC
& dc
, int col
);
454 // ------ Cell text drawing functions
456 void DrawTextRectangle( wxDC
& dc
, const wxString
&, const wxRect
&,
457 int horizontalAlignment
= wxLEFT
,
458 int verticalAlignment
= wxTOP
);
460 // Split a string containing newline chararcters into an array of
461 // strings and return the number of lines
463 void StringToLines( const wxString
& value
, wxArrayString
& lines
);
465 void GetTextBoxSize( wxDC
& dc
,
466 wxArrayString
& lines
,
467 long *width
, long *height
);
471 // Code that does a lot of grid modification can be enclosed
472 // between BeginBatch() and EndBatch() calls to avoid screen
475 void BeginBatch() { m_batchCount
++; }
476 void EndBatch() { if ( m_batchCount
> 0 ) m_batchCount
--; }
477 int GetBatchCount() { return m_batchCount
; }
480 // ------ edit control functions
482 bool IsEditable() { return m_editable
; }
483 void EnableEditing( bool edit
);
485 #if 0 // at the moment the cell edit control is always active
486 void EnableCellEditControl( bool enable
);
489 bool IsCellEditControlEnabled()
490 { return (m_cellEditCtrl
&& m_cellEditCtrlEnabled
); }
492 void ShowCellEditControl();
493 void HideCellEditControl();
494 void SetEditControlValue( const wxString
& s
= wxEmptyString
);
495 void SaveEditControlValue();
498 // ------ grid location functions
499 // Note that all of these functions work with the logical coordinates of
500 // grid cells and labels so you will need to convert from device
501 // coordinates for mouse events etc.
503 void XYToCell( int x
, int y
, wxGridCellCoords
& );
507 int YToEdgeOfRow( int y
);
508 int XToEdgeOfCol( int x
);
510 wxRect
CellToRect( int row
, int col
);
511 wxRect
CellToRect( const wxGridCellCoords
& coords
)
512 { return CellToRect( coords
.GetRow(), coords
.GetCol() ); }
514 int GetGridCursorRow() { return m_currentCellCoords
.GetRow(); }
515 int GetGridCursorCol() { return m_currentCellCoords
.GetCol(); }
517 // check to see if a cell is either wholly visible (the default arg) or
518 // at least partially visible in the grid window
520 bool IsVisible( int row
, int col
, bool wholeCellVisible
= TRUE
);
521 bool IsVisible( const wxGridCellCoords
& coords
, bool wholeCellVisible
= TRUE
)
522 { return IsVisible( coords
.GetRow(), coords
.GetCol(), wholeCellVisible
); }
523 void MakeCellVisible( int row
, int col
);
524 void MakeCellVisible( const wxGridCellCoords
& coords
)
525 { MakeCellVisible( coords
.GetRow(), coords
.GetCol() ); }
528 // ------ grid cursor movement functions
530 void SetGridCursor( int row
, int col
)
531 { SetCurrentCell( wxGridCellCoords(row
, col
) ); }
534 bool MoveCursorDown();
535 bool MoveCursorLeft();
536 bool MoveCursorRight();
539 bool MoveCursorUpBlock();
540 bool MoveCursorDownBlock();
541 bool MoveCursorLeftBlock();
542 bool MoveCursorRightBlock();
545 // ------ label and gridline formatting
547 int GetDefaultRowLabelSize() { return WXGRID_DEFAULT_ROW_LABEL_WIDTH
; }
548 int GetRowLabelSize() { return m_rowLabelWidth
; }
549 int GetDefaultColLabelSize() { return WXGRID_DEFAULT_COL_LABEL_HEIGHT
; }
550 int GetColLabelSize() { return m_colLabelHeight
; }
551 wxColour
GetLabelBackgroundColour() { return m_labelBackgroundColour
; }
552 wxColour
GetLabelTextColour() { return m_labelTextColour
; }
553 wxFont
GetLabelFont() { return m_labelFont
; }
554 void GetRowLabelAlignment( int *horiz
, int *vert
);
555 void GetColLabelAlignment( int *horiz
, int *vert
);
556 wxString
GetRowLabelValue( int row
);
557 wxString
GetColLabelValue( int col
);
558 wxColour
GetGridLineColour() { return m_gridLineColour
; }
560 void SetRowLabelSize( int width
);
561 void SetColLabelSize( int height
);
562 void SetLabelBackgroundColour( const wxColour
& );
563 void SetLabelTextColour( const wxColour
& );
564 void SetLabelFont( const wxFont
& );
565 void SetRowLabelAlignment( int horiz
, int vert
);
566 void SetColLabelAlignment( int horiz
, int vert
);
567 void SetRowLabelValue( int row
, const wxString
& );
568 void SetColLabelValue( int col
, const wxString
& );
569 void SetGridLineColour( const wxColour
& );
571 void EnableGridLines( bool enable
= TRUE
);
572 bool GridLinesEnabled() { return m_gridLinesEnabled
; }
575 // ------ row and col formatting
577 int GetDefaultRowSize();
578 int GetRowSize( int row
);
579 int GetDefaultColSize();
580 int GetColSize( int col
);
581 wxColour
GetDefaultCellBackgroundColour();
582 wxColour
GetCellBackgroundColour( int row
, int col
);
583 wxColour
GetDefaultCellTextColour();
584 wxColour
GetCellTextColour( int row
, int col
);
585 wxFont
GetDefaultCellFont();
586 wxFont
GetCellFont( int row
, int col
);
587 void GetDefaultCellAlignment( int *horiz
, int *vert
);
588 void GetCellAlignment( int row
, int col
, int *horiz
, int *vert
);
590 void SetDefaultRowSize( int height
, bool resizeExistingRows
= FALSE
);
591 void SetRowSize( int row
, int height
);
592 void SetDefaultColSize( int width
, bool resizeExistingCols
= FALSE
);
593 void SetColSize( int col
, int width
);
594 void SetDefaultCellBackgroundColour( const wxColour
& );
595 void SetCellBackgroundColour( int row
, int col
, const wxColour
& );
596 void SetDefaultCellTextColour( const wxColour
& );
597 void SetCellTextColour( int row
, int col
, const wxColour
& );
598 void SetDefaultCellFont( const wxFont
& );
599 void SetCellFont( int row
, int col
, const wxFont
& );
600 void SetDefaultCellAlignment( int horiz
, int vert
);
601 void SetCellAlignment( int row
, int col
, int horiz
, int vert
);
604 // ------ cell value accessors
606 wxString
GetCellValue( int row
, int col
)
610 return m_table
->GetValue( row
, col
);
614 return wxEmptyString
;
618 wxString
GetCellValue( const wxGridCellCoords
& coords
)
619 { return GetCellValue( coords
.GetRow(), coords
.GetCol() ); }
621 void SetCellValue( int row
, int col
, const wxString
& s
);
622 void SetCellValue( const wxGridCellCoords
& coords
, const wxString
& s
)
623 { SetCellValue( coords
.GetRow(), coords
.GetCol(), s
); }
627 // ------ selections of blocks of cells
629 void SelectRow( int row
, bool addToSelected
= FALSE
);
630 void SelectCol( int col
, bool addToSelected
= FALSE
);
632 void SelectBlock( int topRow
, int leftCol
, int bottomRow
, int rightCol
);
634 void SelectBlock( const wxGridCellCoords
& topLeft
,
635 const wxGridCellCoords
& bottomRight
)
636 { SelectBlock( topLeft
.GetRow(), topLeft
.GetCol(),
637 bottomRight
.GetRow(), bottomRight
.GetCol() ); }
642 { return ( m_selectedTopLeft
!= wxGridNoCellCoords
&&
643 m_selectedBottomRight
!= wxGridNoCellCoords
);
646 void ClearSelection();
648 bool IsInSelection( int row
, int col
)
649 { return ( IsSelection() &&
650 row
>= m_selectedTopLeft
.GetRow() &&
651 col
>= m_selectedTopLeft
.GetCol() &&
652 row
<= m_selectedBottomRight
.GetRow() &&
653 col
<= m_selectedBottomRight
.GetCol() );
656 bool IsInSelection( const wxGridCellCoords
& coords
)
657 { return IsInSelection( coords
.GetRow(), coords
.GetCol() ); }
659 void GetSelection( int* topRow
, int* leftCol
, int* bottomRow
, int* rightCol
)
661 // these will all be -1 if there is no selected block
663 *topRow
= m_selectedTopLeft
.GetRow();
664 *leftCol
= m_selectedTopLeft
.GetCol();
665 *bottomRow
= m_selectedBottomRight
.GetRow();
666 *rightCol
= m_selectedBottomRight
.GetCol();
669 // This function returns the rectangle that encloses the selected cells
670 // in device coords and clipped to the client size of the grid window.
672 wxRect
SelectionToDeviceRect();
676 // ------ For compatibility with previous wxGrid only...
678 // ************************************************
679 // ** Don't use these in new code because they **
680 // ** are liable to disappear in a future **
682 // ************************************************
685 wxGrid( wxWindow
*parent
,
686 int x
= -1, int y
= -1, int w
= -1, int h
= -1,
688 const wxString
& name
= wxPanelNameStr
)
689 : wxScrolledWindow( parent
, -1, wxPoint(x
,y
), wxSize(w
,h
), style
, name
)
694 void SetCellValue( const wxString
& val
, int row
, int col
)
695 { SetCellValue( row
, col
, val
); }
697 void UpdateDimensions()
698 { CalcDimensions(); }
700 int GetRows() { return GetNumberRows(); }
701 int GetCols() { return GetNumberCols(); }
702 int GetCursorRow() { return GetGridCursorRow(); }
703 int GetCursorColumn() { return GetGridCursorCol(); }
705 int GetScrollPosX() { return 0; }
706 int GetScrollPosY() { return 0; }
708 void SetScrollX( int x
) { }
709 void SetScrollY( int y
) { }
711 void SetColumnWidth( int col
, int width
)
712 { SetColSize( col
, width
); }
714 int GetColumnWidth( int col
)
715 { return GetColSize( col
); }
717 void SetRowHeight( int row
, int height
)
718 { SetRowSize( row
, height
); }
720 int GetRowHeight( int row
)
721 { return GetRowSize( row
); }
723 int GetViewHeight() // returned num whole rows visible
726 int GetViewWidth() // returned num whole cols visible
729 void SetLabelSize( int orientation
, int sz
)
731 if ( orientation
== wxHORIZONTAL
)
732 SetColLabelSize( sz
);
734 SetRowLabelSize( sz
);
737 int GetLabelSize( int orientation
)
739 if ( orientation
== wxHORIZONTAL
)
740 return GetColLabelSize();
742 return GetRowLabelSize();
745 void SetLabelAlignment( int orientation
, int align
)
747 if ( orientation
== wxHORIZONTAL
)
748 SetColLabelAlignment( align
, -1 );
750 SetRowLabelAlignment( align
, -1 );
753 int GetLabelAlignment( int orientation
, int WXUNUSED(align
) )
756 if ( orientation
== wxHORIZONTAL
)
758 GetColLabelAlignment( &h
, &v
);
763 GetRowLabelAlignment( &h
, &v
);
768 void SetLabelValue( int orientation
, const wxString
& val
, int pos
)
770 if ( orientation
== wxHORIZONTAL
)
771 SetColLabelValue( pos
, val
);
773 SetRowLabelValue( pos
, val
);
776 wxString
GetLabelValue( int orientation
, int pos
)
778 if ( orientation
== wxHORIZONTAL
)
779 return GetColLabelValue( pos
);
781 return GetRowLabelValue( pos
);
784 wxFont
GetCellTextFont() const
785 { return m_defaultCellFont
; }
787 wxFont
GetCellTextFont(int WXUNUSED(row
), int WXUNUSED(col
)) const
788 { return m_defaultCellFont
; }
790 void SetCellTextFont(const wxFont
& fnt
)
791 { SetDefaultCellFont( fnt
); }
793 void SetCellTextFont(const wxFont
& fnt
, int row
, int col
)
794 { SetCellFont( row
, col
, fnt
); }
796 void SetCellTextColour(const wxColour
& val
, int row
, int col
)
797 { SetCellTextColour( row
, col
, val
); }
799 void SetCellTextColour(const wxColour
& col
)
800 { SetDefaultCellTextColour( col
); }
802 void SetCellBackgroundColour(const wxColour
& col
)
803 { SetDefaultCellBackgroundColour( col
); }
805 void SetCellBackgroundColour(const wxColour
& colour
, int row
, int col
)
806 { SetCellBackgroundColour( row
, col
, colour
); }
808 bool GetEditable() { return IsEditable(); }
809 void SetEditable( bool edit
= TRUE
) { EnableEditing( edit
); }
810 bool GetEditInPlace() { return IsCellEditControlEnabled(); }
811 void SetEditInPlace(bool edit
= TRUE
) { }
813 void SetCellAlignment( int align
, int row
, int col
)
814 { SetCellAlignment(row
, col
, align
, wxCENTER
); }
815 void SetCellAlignment( int WXUNUSED(align
) ) {}
816 void SetCellBitmap(wxBitmap
*WXUNUSED(bitmap
), int WXUNUSED(row
), int WXUNUSED(col
))
818 void SetDividerPen(const wxPen
& WXUNUSED(pen
)) { }
819 wxPen
& GetDividerPen() const { return wxNullPen
; }
820 void OnActivate(bool WXUNUSED(active
)) {}
822 // ******** End of compatibility functions **********
826 // ------ control IDs
827 enum { wxGRID_CELLCTRL
= 2000,
830 // ------ control types
831 enum { wxGRID_TEXTCTRL
= 2100,
839 wxGridWindow
*m_gridWin
;
840 wxGridRowLabelWindow
*m_rowLabelWin
;
841 wxGridColLabelWindow
*m_colLabelWin
;
842 wxGridCornerLabelWindow
*m_cornerLabelWin
;
844 wxBoxSizer
*m_mainSizer
;
845 wxBoxSizer
*m_topSizer
;
846 wxBoxSizer
*m_middleSizer
;
848 wxGridTableBase
*m_table
;
858 wxGridCellCoords m_currentCellCoords
;
860 wxGridCellCoords m_selectedTopLeft
;
861 wxGridCellCoords m_selectedBottomRight
;
863 int m_defaultRowHeight
;
864 wxArrayInt m_rowHeights
;
865 wxArrayInt m_rowBottoms
;
867 int m_defaultColWidth
;
868 wxArrayInt m_colWidths
;
869 wxArrayInt m_colRights
;
872 int m_colLabelHeight
;
874 wxColour m_labelBackgroundColour
;
875 wxColour m_labelTextColour
;
878 int m_rowLabelHorizAlign
;
879 int m_rowLabelVertAlign
;
880 int m_colLabelHorizAlign
;
881 int m_colLabelVertAlign
;
883 bool m_defaultRowLabelValues
;
884 bool m_defaultColLabelValues
;
886 wxColour m_gridLineColour
;
887 bool m_gridLinesEnabled
;
889 wxFont m_defaultCellFont
;
891 wxGridCellCoordsArray m_cellsExposed
;
892 wxArrayInt m_rowsExposed
;
893 wxArrayInt m_colsExposed
;
894 wxArrayInt m_rowLabelsExposed
;
895 wxArrayInt m_colLabelsExposed
;
901 enum { WXGRID_CURSOR_DEFAULT
,
902 WXGRID_CURSOR_SELECT_CELL
,
903 WXGRID_CURSOR_RESIZE_ROW
,
904 WXGRID_CURSOR_RESIZE_COL
,
905 WXGRID_CURSOR_SELECT_ROW
,
906 WXGRID_CURSOR_SELECT_COL
913 wxGridCellCoords m_selectionStart
;
915 wxCursor m_rowResizeCursor
;
916 wxCursor m_colResizeCursor
;
918 bool m_editable
; // applies to whole grid
919 int m_editCtrlType
; // for current cell
920 wxWindow
* m_cellEditCtrl
;
921 bool m_cellEditCtrlEnabled
;
926 void CalcDimensions();
927 bool Redimension( wxGridTableMessage
& );
930 bool SendEvent( const wxEventType
,
934 bool SendEvent( const wxEventType
,
938 void OnPaint( wxPaintEvent
& );
939 void OnSize( wxSizeEvent
& );
940 void OnKeyDown( wxKeyEvent
& );
943 void SetCurrentCell( const wxGridCellCoords
& coords
);
944 void SetCurrentCell( int row
, int col
)
945 { SetCurrentCell( wxGridCellCoords(row
, col
) ); }
948 // ------ functions to get/send data (see also public functions)
950 bool GetModelValues();
951 bool SetModelValues();
954 ////////////////////// Public section ////////////////////
957 DECLARE_DYNAMIC_CLASS( wxGrid
)
958 DECLARE_EVENT_TABLE()
966 // ------ Grid event class and event types
969 class WXDLLEXPORT wxGridEvent
: public wxNotifyEvent
973 : wxNotifyEvent(), m_row(-1), m_col(-1), m_x(-1), m_y(-1),
974 m_control(0), m_meta(0), m_shift(0), m_alt(0)
978 wxGridEvent(int id
, wxEventType type
, wxObject
* obj
,
979 int row
=-1, int col
=-1, int x
=-1, int y
=-1,
980 bool control
=FALSE
, bool shift
=FALSE
, bool alt
=FALSE
, bool meta
=FALSE
);
982 virtual int GetRow() { return m_row
; }
983 virtual int GetCol() { return m_col
; }
984 wxPoint
GetPosition() { return wxPoint( m_x
, m_y
); }
985 bool ControlDown() { return m_control
; }
986 bool MetaDown() { return m_meta
; }
987 bool ShiftDown() { return m_shift
; }
988 bool AltDown() { return m_alt
; }
1000 DECLARE_DYNAMIC_CLASS(wxGridEvent
)
1004 class WXDLLEXPORT wxGridSizeEvent
: public wxNotifyEvent
1008 : wxNotifyEvent(), m_rowOrCol(-1), m_x(-1), m_y(-1),
1009 m_control(0), m_meta(0), m_shift(0), m_alt(0)
1013 wxGridSizeEvent(int id
, wxEventType type
, wxObject
* obj
,
1014 int rowOrCol
=-1, int x
=-1, int y
=-1,
1015 bool control
=FALSE
, bool shift
=FALSE
, bool alt
=FALSE
, bool meta
=FALSE
);
1017 int GetRowOrCol() { return m_rowOrCol
; }
1018 wxPoint
GetPosition() { return wxPoint( m_x
, m_y
); }
1019 bool ControlDown() { return m_control
; }
1020 bool MetaDown() { return m_meta
; }
1021 bool ShiftDown() { return m_shift
; }
1022 bool AltDown() { return m_alt
; }
1033 DECLARE_DYNAMIC_CLASS(wxGridSizeEvent
)
1037 class WXDLLEXPORT wxGridRangeSelectEvent
: public wxNotifyEvent
1040 wxGridRangeSelectEvent()
1043 m_topLeft
= wxGridNoCellCoords
;
1044 m_bottomRight
= wxGridNoCellCoords
;
1051 wxGridRangeSelectEvent(int id
, wxEventType type
, wxObject
* obj
,
1052 const wxGridCellCoords
& topLeft
,
1053 const wxGridCellCoords
& bottomRight
,
1054 bool control
=FALSE
, bool shift
=FALSE
,
1055 bool alt
=FALSE
, bool meta
=FALSE
);
1057 wxGridCellCoords
GetTopLeftCoords() { return m_topLeft
; }
1058 wxGridCellCoords
GetBottomRightCoords() { return m_bottomRight
; }
1059 int GetTopRow() { return m_topLeft
.GetRow(); }
1060 int GetBottomRow() { return m_bottomRight
.GetRow(); }
1061 int GetLeftCol() { return m_topLeft
.GetCol(); }
1062 int GetRightCol() { return m_bottomRight
.GetCol(); }
1063 bool ControlDown() { return m_control
; }
1064 bool MetaDown() { return m_meta
; }
1065 bool ShiftDown() { return m_shift
; }
1066 bool AltDown() { return m_alt
; }
1069 wxGridCellCoords m_topLeft
;
1070 wxGridCellCoords m_bottomRight
;
1076 DECLARE_DYNAMIC_CLASS(wxGridRangeSelectEvent
)
1080 const wxEventType EVT_GRID_CELL_LEFT_CLICK
= wxEVT_FIRST
+ 1580;
1081 const wxEventType EVT_GRID_CELL_RIGHT_CLICK
= wxEVT_FIRST
+ 1581;
1082 const wxEventType EVT_GRID_CELL_LEFT_DCLICK
= wxEVT_FIRST
+ 1582;
1083 const wxEventType EVT_GRID_CELL_RIGHT_DCLICK
= wxEVT_FIRST
+ 1583;
1084 const wxEventType EVT_GRID_LABEL_LEFT_CLICK
= wxEVT_FIRST
+ 1584;
1085 const wxEventType EVT_GRID_LABEL_RIGHT_CLICK
= wxEVT_FIRST
+ 1585;
1086 const wxEventType EVT_GRID_LABEL_LEFT_DCLICK
= wxEVT_FIRST
+ 1586;
1087 const wxEventType EVT_GRID_LABEL_RIGHT_DCLICK
= wxEVT_FIRST
+ 1587;
1088 const wxEventType EVT_GRID_ROW_SIZE
= wxEVT_FIRST
+ 1588;
1089 const wxEventType EVT_GRID_COL_SIZE
= wxEVT_FIRST
+ 1589;
1090 const wxEventType EVT_GRID_RANGE_SELECT
= wxEVT_FIRST
+ 1590;
1091 const wxEventType EVT_GRID_CELL_CHANGE
= wxEVT_FIRST
+ 1591;
1092 const wxEventType EVT_GRID_SELECT_CELL
= wxEVT_FIRST
+ 1592;
1095 typedef void (wxEvtHandler::*wxGridEventFunction
)(wxGridEvent
&);
1096 typedef void (wxEvtHandler::*wxGridSizeEventFunction
)(wxGridSizeEvent
&);
1097 typedef void (wxEvtHandler::*wxGridRangeSelectEventFunction
)(wxGridRangeSelectEvent
&);
1099 #define EVT_GRID_CELL_LEFT_CLICK(fn) { EVT_GRID_CELL_LEFT_CLICK, -1, -1, (wxObjectEventFunction) (wxEventFunction) (wxGridEventFunction) &fn, NULL },
1100 #define EVT_GRID_CELL_RIGHT_CLICK(fn) { EVT_GRID_CELL_RIGHT_CLICK, -1, -1, (wxObjectEventFunction) (wxEventFunction) (wxGridEventFunction) &fn, NULL },
1101 #define EVT_GRID_CELL_LEFT_DCLICK(fn) { EVT_GRID_CELL_LEFT_DCLICK, -1, -1, (wxObjectEventFunction) (wxEventFunction) (wxGridEventFunction) &fn, NULL },
1102 #define EVT_GRID_CELL_RIGHT_DCLICK(fn) { EVT_GRID_CELL_RIGHT_DCLICK, -1, -1, (wxObjectEventFunction) (wxEventFunction) (wxGridEventFunction) &fn, NULL },
1103 #define EVT_GRID_LABEL_LEFT_CLICK(fn) { EVT_GRID_LABEL_LEFT_CLICK, -1, -1, (wxObjectEventFunction) (wxEventFunction) (wxGridEventFunction) &fn, NULL },
1104 #define EVT_GRID_LABEL_RIGHT_CLICK(fn) { EVT_GRID_LABEL_RIGHT_CLICK, -1, -1, (wxObjectEventFunction) (wxEventFunction) (wxGridEventFunction) &fn, NULL },
1105 #define EVT_GRID_LABEL_LEFT_DCLICK(fn) { EVT_GRID_LABEL_LEFT_DCLICK, -1, -1, (wxObjectEventFunction) (wxEventFunction) (wxGridEventFunction) &fn, NULL },
1106 #define EVT_GRID_LABEL_RIGHT_DCLICK(fn) { EVT_GRID_LABEL_RIGHT_DCLICK, -1, -1, (wxObjectEventFunction) (wxEventFunction) (wxGridEventFunction) &fn, NULL },
1107 #define EVT_GRID_ROW_SIZE(fn) { EVT_GRID_ROW_SIZE, -1, -1, (wxObjectEventFunction) (wxEventFunction) (wxGridSizeEventFunction) &fn, NULL },
1108 #define EVT_GRID_COL_SIZE(fn) { EVT_GRID_COL_SIZE, -1, -1, (wxObjectEventFunction) (wxEventFunction) (wxGridSizeEventFunction) &fn, NULL },
1109 #define EVT_GRID_RANGE_SELECT(fn) { EVT_GRID_RANGE_SELECT, -1, -1, (wxObjectEventFunction) (wxEventFunction) (wxGridRangeSelectEventFunction) &fn, NULL },
1110 #define EVT_GRID_CELL_CHANGE(fn) { EVT_GRID_CELL_CHANGE, -1, -1, (wxObjectEventFunction) (wxEventFunction) (wxGridEventFunction) &fn, NULL },
1111 #define EVT_GRID_SELECT_CELL(fn) { EVT_GRID_SELECT_CELL, -1, -1, (wxObjectEventFunction) (wxEventFunction) (wxGridEventFunction) &fn, NULL },
1114 #if 0 // TODO: implement these ? others ?
1116 const wxEventType EVT_GRID_CREATE_CELL
= wxEVT_FIRST
+ 1576;
1117 const wxEventType EVT_GRID_CHANGE_LABELS
= wxEVT_FIRST
+ 1577;
1118 const wxEventType EVT_GRID_CHANGE_SEL_LABEL
= wxEVT_FIRST
+ 1578;
1120 #define EVT_GRID_CREATE_CELL(fn) { EVT_GRID_CREATE_CELL, -1, -1, (wxObjectEventFunction) (wxEventFunction) (wxGridEventFunction) &fn, NULL },
1121 #define EVT_GRID_CHANGE_LABELS(fn) { EVT_GRID_CHANGE_LABELS, -1, -1, (wxObjectEventFunction) (wxEventFunction) (wxGridEventFunction) &fn, NULL },
1122 #define EVT_GRID_CHANGE_SEL_LABEL(fn) { EVT_GRID_CHANGE_SEL_LABEL, -1, -1, (wxObjectEventFunction) (wxEventFunction) (wxGridEventFunction) &fn, NULL },
1126 #endif // #ifndef __WXGRID_H__
1128 #endif // ifndef wxUSE_NEW_GRID