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/string.h"
28 #include "wx/scrolbar.h"
30 #include "wx/textctrl.h"
31 #include "wx/combobox.h"
32 #include "wx/dynarray.h"
35 // Default parameters for wxGrid
37 #define WXGRID_DEFAULT_NUMBER_ROWS 10
38 #define WXGRID_DEFAULT_NUMBER_COLS 10
40 #define WXGRID_DEFAULT_ROW_HEIGHT 25
42 #define WXGRID_DEFAULT_ROW_HEIGHT 30
44 #define WXGRID_DEFAULT_COL_WIDTH 80
45 #define WXGRID_DEFAULT_COL_LABEL_HEIGHT 32
46 #define WXGRID_DEFAULT_ROW_LABEL_WIDTH 82
47 #define WXGRID_LABEL_EDGE_ZONE 5
48 #define WXGRID_MIN_ROW_HEIGHT 15
49 #define WXGRID_MIN_COL_WIDTH 15
50 #define WXGRID_DEFAULT_SCROLLBAR_WIDTH 16
51 #define WXGRID_DEFAULT_TOPEDIT_WIDTH 300
52 #define WXGRID_DEFAULT_TOPEDIT_HEIGHT 60
58 //////////////////////////////////////////////////////////////////////
62 //////////////////////////////////////////////////////////////////////
65 class wxGridTableBase
: public wxObject
71 virtual ~wxGridTableBase();
73 // You must override these functions in a derived table class
75 virtual long GetNumberRows() = 0;
76 virtual long GetNumberCols() = 0;
77 virtual wxString
GetValue( int row
, int col
) = 0;
78 virtual void SetValue( int row
, int col
, const wxString
& s
) = 0;
79 virtual bool IsEmptyCell( int row
, int col
) = 0;
81 // Overriding these is optional
83 virtual void SetView( wxGrid
*grid
) { m_view
= grid
; }
84 virtual wxGrid
* GetView() const { return m_view
; }
86 virtual void Clear() {}
87 virtual bool InsertRows( size_t pos
= 0, size_t numRows
= 1 );
88 virtual bool AppendRows( size_t numRows
= 1 );
89 virtual bool DeleteRows( size_t pos
= 0, size_t numRows
= 1 );
90 virtual bool InsertCols( size_t pos
= 0, size_t numCols
= 1 );
91 virtual bool AppendCols( size_t numCols
= 1 );
92 virtual bool DeleteCols( size_t pos
= 0, size_t numCols
= 1 );
94 virtual wxString
GetRowLabelValue( int row
);
95 virtual wxString
GetColLabelValue( int col
);
96 virtual void SetRowLabelValue( int row
, const wxString
& ) {}
97 virtual void SetColLabelValue( int col
, const wxString
& ) {}
99 DECLARE_ABSTRACT_CLASS( wxGridTableBase
);
104 // IDs for messages sent from grid table to view
106 enum wxGridTableRequest
{
107 wxGRIDTABLE_REQUEST_VIEW_GET_VALUES
= 2000,
108 wxGRIDTABLE_REQUEST_VIEW_SEND_VALUES
,
109 wxGRIDTABLE_NOTIFY_ROWS_INSERTED
,
110 wxGRIDTABLE_NOTIFY_ROWS_APPENDED
,
111 wxGRIDTABLE_NOTIFY_ROWS_DELETED
,
112 wxGRIDTABLE_NOTIFY_COLS_INSERTED
,
113 wxGRIDTABLE_NOTIFY_COLS_APPENDED
,
114 wxGRIDTABLE_NOTIFY_COLS_DELETED
117 class wxGridTableMessage
119 wxGridTableBase
*m_table
;
125 wxGridTableMessage();
126 wxGridTableMessage( wxGridTableBase
*table
, int id
,
130 void SetTableObject( wxGridTableBase
*table
) { m_table
= table
; }
131 wxGridTableBase
* GetTableObject() const { return m_table
; }
132 void SetId( int id
) { m_id
= id
; }
133 int GetId() { return m_id
; }
134 void SetCommandInt( int comInt1
) { m_comInt1
= comInt1
; }
135 int GetCommandInt() { return m_comInt1
; }
136 void SetCommandInt2( int comInt2
) { m_comInt2
= comInt2
; }
137 int GetCommandInt2() { return m_comInt2
; }
142 // ------ wxGridStringArray
143 // A 2-dimensional array of strings for data values
146 WX_DECLARE_OBJARRAY(wxArrayString
, wxGridStringArray
);
149 // ------ wxGridStringTable
151 // Simplest type of data table for a grid for small tables of strings
152 // that are stored in memory
155 class wxGridStringTable
: public wxGridTableBase
157 wxGridStringArray m_data
;
159 // These only get used if you set your own labels, otherwise the
160 // GetRow/ColLabelValue functions return wxGridTableBase defaults
162 wxArrayString m_rowLabels
;
163 wxArrayString m_colLabels
;
167 wxGridStringTable( int numRows
, int numCols
);
168 ~wxGridStringTable();
170 // these are pure virtual in wxGridTableBase
172 long GetNumberRows();
173 long GetNumberCols();
174 wxString
GetValue( int row
, int col
);
175 void SetValue( int row
, int col
, const wxString
& s
);
176 bool IsEmptyCell( int row
, int col
);
178 // overridden functions from wxGridTableBase
181 bool InsertRows( size_t pos
= 0, size_t numRows
= 1 );
182 bool AppendRows( size_t numRows
= 1 );
183 bool DeleteRows( size_t pos
= 0, size_t numRows
= 1 );
184 bool InsertCols( size_t pos
= 0, size_t numCols
= 1 );
185 bool AppendCols( size_t numCols
= 1 );
186 bool DeleteCols( size_t pos
= 0, size_t numCols
= 1 );
188 void SetRowLabelValue( int row
, const wxString
& );
189 void SetColLabelValue( int col
, const wxString
& );
190 wxString
GetRowLabelValue( int row
);
191 wxString
GetColLabelValue( int col
);
193 DECLARE_DYNAMIC_CLASS( wxGridStringTable
)
200 // ------ sketchy experimental code to create a grid table for a given type
202 // This doesn't work at the moment !!
205 #define _WX_DECLARE_GRIDTABLE( T, name ) \
208 WX_DECLARE_ARRAY( T, T##Row ) \
209 WX_DECLARE_OBJARRAY( T##Row, T##Array ) \
211 class WXDLLEXPORT name : public wxGridTableBase \
219 name( int numRows, int numCols ); \
222 wxString GetValue( int row, int col ); \
223 wxString SetValue( int row, int col, const wxString& s ); \
225 DECLARE_DYNAMIC_CLASS( name ) \
229 #define WX_DECLARE_GRIDTABLE(T, name) \
230 typedef T name##var; \
231 _WX_DECLARE_GRIDTABLE(name##var, name)
238 //////////////////////////////////////////////////////////////////////
242 //////////////////////////////////////////////////////////////////////
244 class wxGridCellCoords
250 wxGridCellCoords() { m_row
= m_col
= -1; }
251 wxGridCellCoords( int r
, int c
) { m_row
= r
; m_col
= c
; }
253 // default copy ctor is ok
255 long GetRow() const { return m_row
; }
256 void SetRow( long n
) { m_row
= n
; }
257 long GetCol() const { return m_col
; }
258 void SetCol( long n
) { m_col
= n
; }
259 void Set( long row
, long col
) { m_row
= row
; m_col
= col
; }
261 wxGridCellCoords
& operator=( const wxGridCellCoords
& other
)
263 if ( &other
!= this )
271 bool operator==( const wxGridCellCoords
& other
)
273 return (m_row
== other
.m_row
&& m_col
== other
.m_col
);
276 bool operator!=( const wxGridCellCoords
& other
)
278 return (m_row
!= other
.m_row
|| m_col
!= other
.m_col
);
283 return (m_row
== -1 && m_col
== -1 );
288 // For comparisons...
290 extern wxGridCellCoords wxGridNoCellCoords
;
291 extern wxRect wxGridNoCellRect
;
294 // This set of classes is to provide for the use of different types of
295 // cell edit controls in the grid while avoiding the wx class info
296 // system in deference to wxPython
298 class wxGridTextCtrl
: public wxTextCtrl
300 // TRUE for controls placed over cells,
301 // FALSE for a control on a grid control panel
302 bool m_isCellControl
;
306 void OnKeyDown( wxKeyEvent
& );
310 wxGridTextCtrl( wxWindow
*,
313 const wxString
& value
= wxEmptyString
,
314 const wxPoint
& pos
= wxDefaultPosition
,
315 const wxSize
& size
= wxDefaultSize
,
318 void SetStartValue( const wxString
& );
319 wxString
GetStartValue() { return startValue
; }
321 DECLARE_DYNAMIC_CLASS( wxGridTextCtrl
)
322 DECLARE_EVENT_TABLE()
326 class wxGrid
: public wxPanel
328 DECLARE_DYNAMIC_CLASS( wxGrid
)
333 wxGridTableBase
*m_table
;
343 wxGridCellCoords m_currentCellCoords
;
344 bool m_currentCellHighlighted
;
346 wxGridCellCoords m_selectedTopLeft
;
347 wxGridCellCoords m_selectedBottomRight
;
349 int m_defaultRowHeight
;
350 wxArrayInt m_rowHeights
;
351 wxArrayInt m_rowBottoms
;
353 int m_defaultColWidth
;
354 wxArrayInt m_colWidths
;
355 wxArrayInt m_colRights
;
358 int m_colLabelHeight
;
360 wxColour m_labelBackgroundColour
;
361 wxColour m_labelTextColour
;
364 int m_rowLabelHorizAlign
;
365 int m_rowLabelVertAlign
;
366 int m_colLabelHorizAlign
;
367 int m_colLabelVertAlign
;
369 bool m_defaultRowLabelValues
;
370 bool m_defaultColLabelValues
;
372 wxColour m_gridLineColour
;
373 bool m_gridLinesEnabled
;
375 wxFont m_defaultCellFont
;
377 wxScrollBar
* m_horizScrollBar
;
378 wxScrollBar
* m_vertScrollBar
;
379 int m_scrollBarWidth
;
382 int m_wholeColsVisible
;
383 int m_wholeRowsVisible
;
391 enum { WXGRID_CURSOR_DEFAULT
,
392 WXGRID_CURSOR_SELECT_CELL
,
393 WXGRID_CURSOR_RESIZE_ROW
,
394 WXGRID_CURSOR_RESIZE_COL
,
395 WXGRID_CURSOR_SELECT_ROW
,
396 WXGRID_CURSOR_SELECT_COL
403 wxGridCellCoords m_selectionStart
;
405 wxCursor m_rowResizeCursor
;
406 wxCursor m_colResizeCursor
;
408 bool m_editable
; // applies to whole grid
409 int m_editCtrlType
; // for current cell
410 wxWindow
* m_cellEditCtrl
;
411 bool m_cellEditCtrlEnabled
;
412 wxWindow
* m_topEditCtrl
;
413 bool m_topEditCtrlEnabled
;
416 // ------ internal init and update functions
420 void CalcDimensions();
422 bool Redimension( wxGridTableMessage
& );
424 // ------ event processing
426 bool SendEvent( const wxEventType
,
430 bool SendEvent( const wxEventType
,
433 void OnPaint( wxPaintEvent
& );
434 void OnSize( wxSizeEvent
& );
435 void OnMouse( wxMouseEvent
& );
436 void OnKeyDown( wxKeyEvent
& );
437 void OnText( wxKeyEvent
& );
438 void OnGridScroll( wxScrollEvent
& );
440 void SelectCell( const wxGridCellCoords
& coords
);
441 void SelectCell( int row
, int col
)
442 { SelectCell( wxGridCellCoords(row
, col
) ); }
445 // ------ edit controls
447 void ShowCellEditControl();
448 void HideCellEditControl();
449 void SaveEditControlValue();
452 // ------ grid location functions
454 int XYToArea( int x
, int y
); // returns one of the following...
455 enum { WXGRID_NOAREA
,
457 WXGRID_ROWLABEL_EDGE
,
459 WXGRID_COLLABEL_EDGE
,
463 void XYToCell( int x
, int y
, wxGridCellCoords
& );
467 int YToEdgeOfRow( int y
);
468 int XToEdgeOfCol( int x
);
470 wxRect
CellToRect( int row
, int col
);
471 wxRect
CellToRect( const wxGridCellCoords
& coords
)
472 { return CellToRect( coords
.GetRow(), coords
.GetCol() ); }
475 bool MoveCursorDown();
476 bool MoveCursorLeft();
477 bool MoveCursorRight();
478 bool MoveCursorUpBlock();
479 bool MoveCursorDownBlock();
480 bool MoveCursorLeftBlock();
481 bool MoveCursorRightBlock();
484 // ------ label drawing functions
486 void DrawLabelAreas( wxDC
& dc
);
487 void DrawColLabelBorders( wxDC
& dc
);
488 void DrawColLabels( wxDC
& dc
);
489 void DrawColLabel( wxDC
& dc
, const wxRect
&, int col
);
490 void DrawRowLabelBorders( wxDC
& dc
);
491 void DrawRowLabels( wxDC
& dc
);
492 void DrawRowLabel( wxDC
& dc
, const wxRect
&, int col
);
495 // ------ cell drawing functions
497 void DrawCellArea( wxDC
& dc
);
498 void DrawGridLines( wxDC
& dc
);
499 void DrawCells( wxDC
& dc
);
500 void DrawCellBackground( wxDC
& dc
, const wxRect
&, int row
, int col
);
501 void DrawCellValue( wxDC
& dc
, const wxRect
&, int row
, int col
);
503 // this one is useful when you just need to draw one or a few
505 void DrawCell( int row
, int col
);
506 void DrawCell( const wxGridCellCoords
& coords
)
507 { DrawCell( coords
.GetRow(), coords
.GetCol() ); }
509 void DrawCellHighlight( wxDC
& dc
, int row
, int col
);
510 void DrawCellHighlight( wxDC
& dc
, wxGridCellCoords
& coords
)
511 { DrawCellHighlight( dc
, coords
.GetRow(), coords
.GetCol() ); }
512 void ShowCurrentCellHighlight( wxDC
& dc
);
513 void HideCurrentCellHighlight( wxDC
& dc
);
516 // ------ generic drawing functions
518 void DrawTextRectangle( wxDC
& dc
, const wxString
&, const wxRect
&,
519 int horizontalAlignment
= wxLEFT
,
520 int verticalAlignment
= wxTOP
);
522 // Split a string containing newline chararcters into an array of
523 // strings and return the number of lines
525 void StringToLines( const wxString
& value
, wxArrayString
& lines
);
527 void GetTextBoxSize( wxDC
& dc
,
528 wxArrayString
& lines
,
529 long *width
, long *height
);
532 // ------ functions to get/send data (see also public functions)
534 bool GetModelValues();
535 bool SetModelValues();
538 ////////////////////// Public section ////////////////////
544 wxGrid( wxWindow
*parent
,
546 const wxPoint
& pos
= wxDefaultPosition
,
547 const wxSize
& size
= wxDefaultSize
,
549 const wxString
& name
= wxPanelNameStr
)
550 : wxPanel( parent
, id
, pos
, size
, style
, name
)
557 bool CreateGrid( int numRows
= WXGRID_DEFAULT_NUMBER_ROWS
,
558 int numCols
= WXGRID_DEFAULT_NUMBER_COLS
);
560 wxGridTableBase
* GetTable() const { return m_table
; }
561 void SetTable( wxGridTableBase
*table
) { m_table
= table
; }
564 bool InsertRows( int pos
= 0, int numRows
= 1, bool updateLabels
=TRUE
);
565 bool AppendRows( int numRows
= 1, bool updateLabels
=TRUE
);
566 bool DeleteRows( int pos
= 0, int numRows
= 1, bool updateLabels
=TRUE
);
567 bool InsertCols( int pos
= 0, int numCols
= 1, bool updateLabels
=TRUE
);
568 bool AppendCols( int numCols
= 1, bool updateLabels
=TRUE
);
569 bool DeleteCols( int pos
= 0, int numCols
= 1, bool updateLabels
=TRUE
);
571 // ------ editing and edit controls
573 bool IsEditable() { return m_editable
; }
574 void EnableEditing( bool edit
);
576 void EnableTopEditControl( bool enable
);
577 bool IsTopEditControlEnabled()
578 { return (m_topEditCtrl
&& m_topEditCtrlEnabled
); }
579 void EnableCellEditControl( bool enable
);
580 bool IsCellEditControlEnabled()
581 { return (m_cellEditCtrl
&& m_cellEditCtrlEnabled
); }
582 void SetEditControlValue( const wxString
& s
= wxEmptyString
);
585 // ------ grid dimensions
587 int GetNumberRows() { return m_numRows
; }
588 int GetNumberCols() { return m_numCols
; }
589 int GetNumberVisibleRows() { return m_wholeRowsVisible
; }
590 int GetNumberVisibleCols() { return m_wholeColsVisible
; }
594 // Code that does a lot of grid modification can be enclosed
595 // between BeginBatch() and EndBatch() calls to avoid screen
598 void BeginBatch() { m_batchCount
++; }
599 void EndBatch() { if ( m_batchCount
> 0 ) m_batchCount
--; }
600 int GetBatchCount() { return m_batchCount
; }
603 // ------ label and gridline formatting
605 int GetDefaultRowLabelSize() { return WXGRID_DEFAULT_ROW_LABEL_WIDTH
; }
606 int GetRowLabelSize() { return m_rowLabelWidth
; }
607 int GetDefaultColLabelSize() { return WXGRID_DEFAULT_COL_LABEL_HEIGHT
; }
608 int GetColLabelSize() { return m_colLabelHeight
; }
609 wxColour
GetLabelBackgroundColour() { return m_labelBackgroundColour
; }
610 wxColour
GetLabelTextColour() { return m_labelTextColour
; }
611 wxFont
GetLabelFont() { return m_labelFont
; }
612 void GetRowLabelAlignment( int *horiz
, int *vert
);
613 void GetColLabelAlignment( int *horiz
, int *vert
);
614 wxString
GetRowLabelValue( int row
);
615 wxString
GetColLabelValue( int col
);
616 wxColour
GetGridLineColour() { return m_gridLineColour
; }
618 void SetRowLabelSize( int width
);
619 void SetColLabelSize( int height
);
620 void SetLabelBackgroundColour( const wxColour
& );
621 void SetLabelTextColour( const wxColour
& );
622 void SetLabelFont( const wxFont
& );
623 void SetRowLabelAlignment( int horiz
, int vert
);
624 void SetColLabelAlignment( int horiz
, int vert
);
625 void SetRowLabelValue( int row
, const wxString
& );
626 void SetColLabelValue( int col
, const wxString
& );
627 void SetGridLineColour( const wxColour
& );
629 void EnableGridLines( bool enable
= TRUE
);
630 bool GridLinesEnabled() { return m_gridLinesEnabled
; }
633 // ------ row and col formatting
635 int GetDefaultRowSize();
636 int GetRowSize( int row
);
637 int GetDefaultColSize();
638 int GetColSize( int col
);
639 wxColour
GetDefaultCellBackgroundColour();
640 wxColour
GetCellBackgroundColour( int row
, int col
);
641 wxColour
GetDefaultCellTextColour();
642 wxColour
GetCellTextColour( int row
, int col
);
643 wxColour
GetCellHighlightColour();
644 wxFont
GetDefaultCellFont();
645 wxFont
GetCellFont( int row
, int col
);
646 void GetDefaultCellAlignment( int *horiz
, int *vert
);
647 void GetCellAlignment( int row
, int col
, int *horiz
, int *vert
);
649 void SetDefaultRowSize( int height
, bool resizeExistingRows
= FALSE
);
650 void SetRowSize( int row
, int height
);
651 void SetDefaultColSize( int width
, bool resizeExistingCols
= FALSE
);
652 void SetColSize( int col
, int width
);
653 void SetDefaultCellBackgroundColour( const wxColour
& );
654 void SetCellBackgroundColour( int row
, int col
, const wxColour
& );
655 void SetDefaultCellTextColour( const wxColour
& );
656 void SetCellTextColour( int row
, int col
, const wxColour
& );
657 void SetCellHighlightColour( const wxColour
& );
658 void SetDefaultCellFont( const wxFont
& );
659 void SetCellFont( int row
, int col
, const wxFont
& );
660 void SetDefaultCellAlignment( int horiz
, int vert
);
661 void SetCellAlignment( int row
, int col
, int horiz
, int vert
);
664 // ------ cell value accessors
666 wxString
GetCellValue( int row
, int col
)
670 return m_table
->GetValue( row
, col
);
674 return wxEmptyString
;
678 wxString
GetCellValue( const wxGridCellCoords
& coords
)
679 { return GetCellValue( coords
.GetRow(), coords
.GetCol() ); }
681 void SetCellValue( int row
, int col
, const wxString
& s
);
682 void SetCellValue( const wxGridCellCoords
& coords
, const wxString
& s
)
683 { SetCellValue( coords
.GetRow(), coords
.GetCol(), s
); }
686 // ------ interaction with data model
688 bool ProcessTableMessage( wxGridTableMessage
& );
692 // ------ grid location functions
695 int GetGridCursorRow() { return m_currentCellCoords
.GetRow(); }
696 int GetGridCursorCol() { return m_currentCellCoords
.GetCol(); }
697 int GetHorizontalScrollPos() { return m_scrollPosX
; }
698 int GetVerticalScrollPos() { return m_scrollPosY
; }
700 bool IsVisible( const wxGridCellCoords
& );
701 void MakeCellVisible( int row
, int col
);
702 void MakeCellVisible( const wxGridCellCoords
& coords
)
703 { MakeCellVisible( coords
.GetRow(), coords
.GetCol() ); }
705 void SetGridCursor( int row
, int col
)
706 { SelectCell( wxGridCellCoords(row
, col
) ); }
708 void SetHorizontalScrollPos( int leftMostCol
);
709 void SetVerticalScrollPos( int topMostRow
);
712 // ------ selections of blocks of cells
714 void SelectRow( int row
, bool addToSelected
= FALSE
);
715 void SelectCol( int col
, bool addToSelected
= FALSE
);
717 void SelectBlock( int topRow
, int leftCol
, int bottomRow
, int rightCol
);
719 void SelectBlock( const wxGridCellCoords
& topLeft
,
720 const wxGridCellCoords
& bottomRight
)
721 { SelectBlock( topLeft
.GetRow(), topLeft
.GetCol(),
722 bottomRight
.GetRow(), bottomRight
.GetCol() ); }
727 { return ( m_selectedTopLeft
!= wxGridNoCellCoords
&&
728 m_selectedBottomRight
!= wxGridNoCellCoords
);
731 void ClearSelection();
733 bool IsInSelection( int row
, int col
)
734 { return ( IsSelection() &&
735 row
>= m_selectedTopLeft
.GetRow() &&
736 col
>= m_selectedTopLeft
.GetCol() &&
737 row
<= m_selectedBottomRight
.GetRow() &&
738 col
<= m_selectedBottomRight
.GetCol() );
741 bool IsInSelection( const wxGridCellCoords
& coords
)
742 { return IsInSelection( coords
.GetRow(), coords
.GetCol() ); }
744 void GetSelection( int* topRow
, int* leftCol
, int* bottomRow
, int* rightCol
)
746 // these will all be -1 if there is no selected block
748 *topRow
= m_selectedTopLeft
.GetRow();
749 *leftCol
= m_selectedTopLeft
.GetCol();
750 *bottomRow
= m_selectedBottomRight
.GetRow();
751 *rightCol
= m_selectedBottomRight
.GetCol();
754 // get coordinates of selected block edges for repainting etc.
756 wxRect
SelectionToRect();
759 // ------ For compatibility with previous wxGrid only...
761 // ************************************************
762 // ** Don't use these in new code because they **
763 // ** are liable to disappear in a future **
765 // ************************************************
768 wxGrid( wxWindow
*parent
,
769 int x
= -1, int y
= -1, int w
= -1, int h
= -1,
771 const wxString
& name
= wxPanelNameStr
)
772 : wxPanel( parent
, -1, wxPoint(x
,y
), wxSize(w
,h
), style
, name
)
777 void SetCellValue( const wxString
& val
, int row
, int col
)
778 { SetCellValue( row
, col
, val
); }
780 void AdjustScrollbars()
781 { CalcDimensions(); }
783 void UpdateDimensions()
784 { CalcDimensions(); }
786 int GetRows() { return GetNumberRows(); }
787 int GetCols() { return GetNumberCols(); }
788 int GetCursorRow() { return GetGridCursorRow(); }
789 int GetCursorColumn() { return GetGridCursorCol(); }
790 int GetScrollPosX() { return GetHorizontalScrollPos(); }
791 int GetScrollPosY() { return GetVerticalScrollPos(); }
793 void SetScrollX( int x
) { SetHorizontalScrollPos( x
); }
794 void SetScrollY( int y
) { SetVerticalScrollPos( y
); }
796 void SetColumnWidth( int col
, int width
)
797 { SetColSize( col
, width
); }
799 int GetColumnWidth( int col
)
800 { return GetColSize( col
); }
802 void SetRowHeight( int row
, int height
)
803 { SetRowSize( row
, height
); }
805 int GetRowHeight( int row
)
806 { return GetRowSize( row
); }
809 { return m_wholeRowsVisible
; }
812 { return m_wholeColsVisible
; }
814 void SetLabelSize( int orientation
, int sz
)
816 if ( orientation
== wxHORIZONTAL
)
817 SetColLabelSize( sz
);
819 SetRowLabelSize( sz
);
822 int GetLabelSize( int orientation
)
824 if ( orientation
== wxHORIZONTAL
)
825 return GetColLabelSize();
827 return GetRowLabelSize();
830 void SetLabelAlignment( int orientation
, int align
)
832 if ( orientation
== wxHORIZONTAL
)
833 SetColLabelAlignment( align
, -1 );
835 SetRowLabelAlignment( align
, -1 );
838 int GetLabelAlignment( int orientation
, int align
)
841 if ( orientation
== wxHORIZONTAL
)
843 GetColLabelAlignment( &h
, &v
);
848 GetRowLabelAlignment( &h
, &v
);
853 void SetLabelValue( int orientation
, const wxString
& val
, int pos
)
855 if ( orientation
== wxHORIZONTAL
)
856 SetColLabelValue( pos
, val
);
858 SetRowLabelValue( pos
, val
);
861 wxString
GetLabelValue( int orientation
, int pos
)
863 if ( orientation
== wxHORIZONTAL
)
864 return GetColLabelValue( pos
);
866 return GetRowLabelValue( pos
);
869 wxFont
GetCellTextFont() const
870 { return m_defaultCellFont
; }
872 wxFont
GetCellTextFont(int row
, int col
) const
873 { return m_defaultCellFont
; }
875 void SetCellTextFont(const wxFont
& fnt
)
876 { SetDefaultCellFont( fnt
); }
878 void SetCellTextFont(const wxFont
& fnt
, int row
, int col
)
879 { SetCellFont( row
, col
, fnt
); }
881 void SetCellTextColour(const wxColour
& val
, int row
, int col
)
882 { SetCellTextColour( row
, col
, val
); }
884 void SetCellTextColour(const wxColour
& col
)
885 { SetDefaultCellTextColour( col
); }
887 void SetCellBackgroundColour(const wxColour
& col
)
888 { SetDefaultCellBackgroundColour( col
); }
890 void SetCellBackgroundColour(const wxColour
& colour
, int row
, int col
)
891 { SetCellBackgroundColour( row
, col
, colour
); }
893 bool GetEditable() { return IsEditable(); }
894 void SetEditable( bool edit
= TRUE
) { EnableEditing( edit
); }
895 bool GetEditInPlace() { return IsCellEditControlEnabled(); }
896 void SetEditInPlace(bool edit
= TRUE
) { EnableCellEditControl( edit
); }
899 // ******** End of compatibility functions **********
902 // ------ control IDs
903 enum { wxGRID_HORIZSCROLL
= 2000,
908 // ------ control types
909 enum { wxGRID_TEXTCTRL
= 100,
915 DECLARE_EVENT_TABLE()
923 // ------ Grid event class and event types
926 class WXDLLEXPORT wxGridEvent
: public wxNotifyEvent
928 DECLARE_DYNAMIC_CLASS(wxGridEvent
)
942 : wxNotifyEvent(), m_row(-1), m_col(-1), m_x(-1), m_y(-1),
943 m_control(0), m_meta(0), m_shift(0), m_alt(0)
947 wxGridEvent(int id
, wxEventType type
, wxObject
* obj
,
948 int row
=-1, int col
=-1, int x
=-1, int y
=-1,
949 bool control
=FALSE
, bool shift
=FALSE
, bool alt
=FALSE
, bool meta
=FALSE
);
951 virtual int GetRow() { return m_row
; }
952 virtual int GetCol() { return m_col
; }
953 wxPoint
GetPosition() { return wxPoint( m_x
, m_y
); }
954 bool ControlDown() { return m_control
; }
955 bool MetaDown() { return m_meta
; }
956 bool ShiftDown() { return m_shift
; }
957 bool AltDown() { return m_alt
; }
961 class WXDLLEXPORT wxGridSizeEvent
: public wxNotifyEvent
963 DECLARE_DYNAMIC_CLASS(wxGridSizeEvent
)
976 : wxNotifyEvent(), m_rowOrCol(-1), m_x(-1), m_y(-1),
977 m_control(0), m_meta(0), m_shift(0), m_alt(0)
981 wxGridSizeEvent(int id
, wxEventType type
, wxObject
* obj
,
982 int rowOrCol
=-1, int x
=-1, int y
=-1,
983 bool control
=FALSE
, bool shift
=FALSE
, bool alt
=FALSE
, bool meta
=FALSE
);
985 int GetRowOrCol() { return m_rowOrCol
; }
986 wxPoint
GetPosition() { return wxPoint( m_x
, m_y
); }
987 bool ControlDown() { return m_control
; }
988 bool MetaDown() { return m_meta
; }
989 bool ShiftDown() { return m_shift
; }
990 bool AltDown() { return m_alt
; }
994 class WXDLLEXPORT wxGridRangeSelectEvent
: public wxNotifyEvent
996 DECLARE_DYNAMIC_CLASS(wxGridRangeSelectEvent
)
999 wxGridCellCoords m_topLeft
;
1000 wxGridCellCoords m_bottomRight
;
1007 wxGridRangeSelectEvent()
1010 m_topLeft
= wxGridNoCellCoords
;
1011 m_bottomRight
= wxGridNoCellCoords
;
1018 wxGridRangeSelectEvent(int id
, wxEventType type
, wxObject
* obj
,
1019 const wxGridCellCoords
& topLeft
,
1020 const wxGridCellCoords
& bottomRight
,
1021 bool control
=FALSE
, bool shift
=FALSE
,
1022 bool alt
=FALSE
, bool meta
=FALSE
);
1024 wxGridCellCoords
GetTopLeftCoords() { return m_topLeft
; }
1025 wxGridCellCoords
GetBottomRightCoords() { return m_bottomRight
; }
1026 int GetTopRow() { return m_topLeft
.GetRow(); }
1027 int GetBottomRow() { return m_bottomRight
.GetRow(); }
1028 int GetLeftCol() { return m_topLeft
.GetCol(); }
1029 int GetRightCol() { return m_bottomRight
.GetCol(); }
1030 bool ControlDown() { return m_control
; }
1031 bool MetaDown() { return m_meta
; }
1032 bool ShiftDown() { return m_shift
; }
1033 bool AltDown() { return m_alt
; }
1037 const wxEventType EVT_WXGRID_CELL_LEFT_CLICK
= wxEVT_FIRST
+ 1580;
1038 const wxEventType EVT_WXGRID_CELL_RIGHT_CLICK
= wxEVT_FIRST
+ 1581;
1039 const wxEventType EVT_WXGRID_CELL_LEFT_DCLICK
= wxEVT_FIRST
+ 1582;
1040 const wxEventType EVT_WXGRID_CELL_RIGHT_DCLICK
= wxEVT_FIRST
+ 1583;
1041 const wxEventType EVT_WXGRID_LABEL_LEFT_CLICK
= wxEVT_FIRST
+ 1584;
1042 const wxEventType EVT_WXGRID_LABEL_RIGHT_CLICK
= wxEVT_FIRST
+ 1585;
1043 const wxEventType EVT_WXGRID_LABEL_LEFT_DCLICK
= wxEVT_FIRST
+ 1586;
1044 const wxEventType EVT_WXGRID_LABEL_RIGHT_DCLICK
= wxEVT_FIRST
+ 1587;
1045 const wxEventType EVT_WXGRID_ROW_SIZE
= wxEVT_FIRST
+ 1588;
1046 const wxEventType EVT_WXGRID_COL_SIZE
= wxEVT_FIRST
+ 1589;
1047 const wxEventType EVT_WXGRID_RANGE_SELECT
= wxEVT_FIRST
+ 1590;
1048 const wxEventType EVT_WXGRID_CELL_CHANGE
= wxEVT_FIRST
+ 1591;
1050 typedef void (wxEvtHandler::*wxGridEventFunction
)(wxGridEvent
&);
1051 typedef void (wxEvtHandler::*wxGridSizeEventFunction
)(wxGridSizeEvent
&);
1052 typedef void (wxEvtHandler::*wxGridRangeSelectEventFunction
)(wxGridRangeSelectEvent
&);
1054 #define EVT_WXGRID_CELL_LEFT_CLICK(fn) { EVT_WXGRID_CELL_LEFT_CLICK, -1, -1, (wxObjectEventFunction) (wxEventFunction) (wxGridEventFunction) &fn, NULL },
1055 #define EVT_WXGRID_CELL_RIGHT_CLICK(fn) { EVT_WXGRID_CELL_RIGHT_CLICK, -1, -1, (wxObjectEventFunction) (wxEventFunction) (wxGridEventFunction) &fn, NULL },
1056 #define EVT_WXGRID_CELL_LEFT_DCLICK(fn) { EVT_WXGRID_CELL_LEFT_DCLICK, -1, -1, (wxObjectEventFunction) (wxEventFunction) (wxGridEventFunction) &fn, NULL },
1057 #define EVT_WXGRID_CELL_RIGHT_DCLICK(fn) { EVT_WXGRID_CELL_RIGHT_DCLICK, -1, -1, (wxObjectEventFunction) (wxEventFunction) (wxGridEventFunction) &fn, NULL },
1058 #define EVT_WXGRID_LABEL_LEFT_CLICK(fn) { EVT_WXGRID_LABEL_LEFT_CLICK, -1, -1, (wxObjectEventFunction) (wxEventFunction) (wxGridEventFunction) &fn, NULL },
1059 #define EVT_WXGRID_LABEL_RIGHT_CLICK(fn) { EVT_WXGRID_LABEL_RIGHT_CLICK, -1, -1, (wxObjectEventFunction) (wxEventFunction) (wxGridEventFunction) &fn, NULL },
1060 #define EVT_WXGRID_LABEL_LEFT_DCLICK(fn) { EVT_WXGRID_LABEL_LEFT_DCLICK, -1, -1, (wxObjectEventFunction) (wxEventFunction) (wxGridEventFunction) &fn, NULL },
1061 #define EVT_WXGRID_LABEL_RIGHT_DCLICK(fn) { EVT_WXGRID_LABEL_RIGHT_DCLICK, -1, -1, (wxObjectEventFunction) (wxEventFunction) (wxGridEventFunction) &fn, NULL },
1062 #define EVT_WXGRID_ROW_SIZE(fn) { EVT_WXGRID_ROW_SIZE, -1, -1, (wxObjectEventFunction) (wxEventFunction) (wxGridSizeEventFunction) &fn, NULL },
1063 #define EVT_WXGRID_COL_SIZE(fn) { EVT_WXGRID_COL_SIZE, -1, -1, (wxObjectEventFunction) (wxEventFunction) (wxGridSizeEventFunction) &fn, NULL },
1064 #define EVT_WXGRID_RANGE_SELECT(fn) { EVT_WXGRID_RANGE_SELECT, -1, -1, (wxObjectEventFunction) (wxEventFunction) (wxGridRangeSelectEventFunction) &fn, NULL },
1065 #define EVT_WXGRID_CELL_CHANGE(fn) { EVT_WXGRID_CELL_CHANGE, -1, -1, (wxObjectEventFunction) (wxEventFunction) (wxGridEventFunction) &fn, NULL },
1068 #if 0 // TODO: implement these ? others ?
1070 const wxEventType EVT_WXGRID_SELECT_CELL
= wxEVT_FIRST
+ 1575;
1071 const wxEventType EVT_WXGRID_CREATE_CELL
= wxEVT_FIRST
+ 1576;
1072 const wxEventType EVT_WXGRID_CHANGE_LABELS
= wxEVT_FIRST
+ 1577;
1073 const wxEventType EVT_WXGRID_CHANGE_SEL_LABEL
= wxEVT_FIRST
+ 1578;
1075 #define EVT_WXGRID_SELECT_CELL(fn) { EVT_WXGRID_SELECT_CELL, -1, -1, (wxObjectEventFunction) (wxEventFunction) (wxGridEventFunction) &fn, NULL },
1076 #define EVT_WXGRID_CREATE_CELL(fn) { EVT_WXGRID_CREATE_CELL, -1, -1, (wxObjectEventFunction) (wxEventFunction) (wxGridEventFunction) &fn, NULL },
1077 #define EVT_WXGRID_CHANGE_LABELS(fn) { EVT_WXGRID_CHANGE_LABELS, -1, -1, (wxObjectEventFunction) (wxEventFunction) (wxGridEventFunction) &fn, NULL },
1078 #define EVT_WXGRID_CHANGE_SEL_LABEL(fn) { EVT_WXGRID_CHANGE_SEL_LABEL, -1, -1, (wxObjectEventFunction) (wxEventFunction) (wxGridEventFunction) &fn, NULL },
1082 #endif // #ifndef __WXGRID_H__
1084 #endif // ifndef wxUSE_NEW_GRID