]> git.saurik.com Git - wxWidgets.git/blob - include/wx/generic/grid.h
added HTML printing
[wxWidgets.git] / include / wx / generic / grid.h
1 /////////////////////////////////////////////////////////////////////////////
2 // Name: grid.h
3 // Purpose: wxGrid and related classes
4 // Author: Michael Bedward (based on code by Julian Smart, Robin Dunn)
5 // Modified by:
6 // Created: 1/08/1999
7 // RCS-ID: $Id$
8 // Copyright: (c) Michael Bedward
9 // Licence: wxWindows licence
10 /////////////////////////////////////////////////////////////////////////////
11
12
13 #include "wx/defs.h"
14
15 #if !defined(wxUSE_NEW_GRID) || !(wxUSE_NEW_GRID)
16 #include "gridg.h"
17 #else
18
19 #ifndef __WXGRID_H__
20 #define __WXGRID_H__
21
22 #ifdef __GNUG__
23 #pragma interface "grid.h"
24 #endif
25
26 #include "wx/panel.h"
27 #include "wx/string.h"
28 #include "wx/scrolbar.h"
29 #include "wx/event.h"
30 #include "wx/textctrl.h"
31 #include "wx/combobox.h"
32 #include "wx/dynarray.h"
33
34
35 // Default parameters for wxGrid
36 //
37 #define WXGRID_DEFAULT_NUMBER_ROWS 10
38 #define WXGRID_DEFAULT_NUMBER_COLS 10
39 #ifdef __WXMSW__
40 #define WXGRID_DEFAULT_ROW_HEIGHT 25
41 #else
42 #define WXGRID_DEFAULT_ROW_HEIGHT 30
43 #endif // __WXMSW__
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
53
54
55 class wxGrid;
56
57
58 //////////////////////////////////////////////////////////////////////
59 //
60 // Grid table classes
61 //
62 //////////////////////////////////////////////////////////////////////
63
64
65 class wxGridTableBase : public wxObject
66 {
67 wxGrid * m_view;
68
69 public:
70 wxGridTableBase();
71 virtual ~wxGridTableBase();
72
73 // You must override these functions in a derived table class
74 //
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;
80
81 // Overriding these is optional
82 //
83 virtual void SetView( wxGrid *grid ) { m_view = grid; }
84 virtual wxGrid * GetView() const { return m_view; }
85
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 );
93
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& ) {}
98
99 DECLARE_ABSTRACT_CLASS( wxGridTableBase );
100 };
101
102
103
104 // IDs for messages sent from grid table to view
105 //
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
115 };
116
117 class wxGridTableMessage
118 {
119 wxGridTableBase *m_table;
120 int m_id;
121 int m_comInt1;
122 int m_comInt2;
123
124 public:
125 wxGridTableMessage();
126 wxGridTableMessage( wxGridTableBase *table, int id,
127 int comInt1 = -1,
128 int comInt2 = -1 );
129
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; }
138 };
139
140
141
142 // ------ wxGridStringArray
143 // A 2-dimensional array of strings for data values
144 //
145
146 WX_DECLARE_OBJARRAY(wxArrayString, wxGridStringArray);
147
148
149 // ------ wxGridStringTable
150 //
151 // Simplest type of data table for a grid for small tables of strings
152 // that are stored in memory
153 //
154
155 class wxGridStringTable : public wxGridTableBase
156 {
157 wxGridStringArray m_data;
158
159 // These only get used if you set your own labels, otherwise the
160 // GetRow/ColLabelValue functions return wxGridTableBase defaults
161 //
162 wxArrayString m_rowLabels;
163 wxArrayString m_colLabels;
164
165 public:
166 wxGridStringTable();
167 wxGridStringTable( int numRows, int numCols );
168 ~wxGridStringTable();
169
170 // these are pure virtual in wxGridTableBase
171 //
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 );
177
178 // overridden functions from wxGridTableBase
179 //
180 void Clear();
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 );
187
188 void SetRowLabelValue( int row, const wxString& );
189 void SetColLabelValue( int col, const wxString& );
190 wxString GetRowLabelValue( int row );
191 wxString GetColLabelValue( int col );
192
193 DECLARE_DYNAMIC_CLASS( wxGridStringTable )
194 };
195
196
197
198 #if 0
199
200 // ------ sketchy experimental code to create a grid table for a given type
201 //
202 // This doesn't work at the moment !!
203 //
204
205 #define _WX_DECLARE_GRIDTABLE( T, name ) \
206 \
207 \
208 WX_DECLARE_ARRAY( T, T##Row ) \
209 WX_DECLARE_OBJARRAY( T##Row, T##Array ) \
210 \
211 class WXDLLEXPORT name : public wxGridTableBase \
212 { \
213 T##Array m_data; \
214 int m_numRows; \
215 int m_numCols; \
216 \
217 public: \
218 name() { } \
219 name( int numRows, int numCols ); \
220 ~name(); \
221 \
222 wxString GetValue( int row, int col ); \
223 wxString SetValue( int row, int col, const wxString& s ); \
224 \
225 DECLARE_DYNAMIC_CLASS( name ) \
226 }
227
228
229 #define WX_DECLARE_GRIDTABLE(T, name) \
230 typedef T name##var; \
231 _WX_DECLARE_GRIDTABLE(name##var, name)
232
233
234 #endif // if 0
235
236
237
238 //////////////////////////////////////////////////////////////////////
239 //
240 // Grid view classes
241 //
242 //////////////////////////////////////////////////////////////////////
243
244 class wxGridCellCoords
245 {
246 long m_row;
247 long m_col;
248
249 public:
250 wxGridCellCoords() { m_row = m_col = -1; }
251 wxGridCellCoords( int r, int c ) { m_row = r; m_col = c; }
252
253 // default copy ctor is ok
254
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; }
260
261 wxGridCellCoords& operator=( const wxGridCellCoords& other )
262 {
263 if ( &other != this )
264 {
265 m_row=other.m_row;
266 m_col=other.m_col;
267 }
268 return *this;
269 }
270
271 bool operator==( const wxGridCellCoords& other )
272 {
273 return (m_row == other.m_row && m_col == other.m_col);
274 }
275
276 bool operator!=( const wxGridCellCoords& other )
277 {
278 return (m_row != other.m_row || m_col != other.m_col);
279 }
280
281 bool operator!()
282 {
283 return (m_row == -1 && m_col == -1 );
284 }
285 };
286
287
288 // For comparisons...
289 //
290 extern wxGridCellCoords wxGridNoCellCoords;
291 extern wxRect wxGridNoCellRect;
292
293
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
297
298 class wxGridTextCtrl : public wxTextCtrl
299 {
300 // TRUE for controls placed over cells,
301 // FALSE for a control on a grid control panel
302 bool m_isCellControl;
303
304 wxString startValue;
305
306 void OnKeyDown( wxKeyEvent& );
307
308 public:
309 wxGridTextCtrl() {}
310 wxGridTextCtrl( wxWindow *,
311 bool isCellControl,
312 wxWindowID id,
313 const wxString& value = wxEmptyString,
314 const wxPoint& pos = wxDefaultPosition,
315 const wxSize& size = wxDefaultSize,
316 long style = 0 );
317
318 void SetStartValue( const wxString& );
319 wxString GetStartValue() { return startValue; }
320
321 DECLARE_DYNAMIC_CLASS( wxGridTextCtrl )
322 DECLARE_EVENT_TABLE()
323 };
324
325
326 class wxGrid : public wxPanel
327 {
328 DECLARE_DYNAMIC_CLASS( wxGrid )
329
330 private:
331 bool m_created;
332
333 wxGridTableBase *m_table;
334
335 int m_left;
336 int m_top;
337 int m_right;
338 int m_bottom;
339
340 int m_numRows;
341 int m_numCols;
342
343 wxGridCellCoords m_currentCellCoords;
344 bool m_currentCellHighlighted;
345
346 wxGridCellCoords m_selectedTopLeft;
347 wxGridCellCoords m_selectedBottomRight;
348
349 int m_defaultRowHeight;
350 wxArrayInt m_rowHeights;
351 wxArrayInt m_rowBottoms;
352
353 int m_defaultColWidth;
354 wxArrayInt m_colWidths;
355 wxArrayInt m_colRights;
356
357 int m_rowLabelWidth;
358 int m_colLabelHeight;
359
360 wxColour m_labelBackgroundColour;
361 wxColour m_labelTextColour;
362 wxFont m_labelFont;
363
364 int m_rowLabelHorizAlign;
365 int m_rowLabelVertAlign;
366 int m_colLabelHorizAlign;
367 int m_colLabelVertAlign;
368
369 bool m_defaultRowLabelValues;
370 bool m_defaultColLabelValues;
371
372 wxColour m_gridLineColour;
373 bool m_gridLinesEnabled;
374
375 wxFont m_defaultCellFont;
376
377 wxScrollBar * m_horizScrollBar;
378 wxScrollBar * m_vertScrollBar;
379 int m_scrollBarWidth;
380 int m_scrollPosX;
381 int m_scrollPosY;
382 int m_wholeColsVisible;
383 int m_wholeRowsVisible;
384
385 bool m_inOnKeyDown;
386 bool m_inOnText;
387 bool m_firstPaint;
388 int m_batchCount;
389
390 int m_cursorMode;
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
397 };
398
399 int m_dragLastPos;
400 int m_dragRowOrCol;
401 bool m_isDragging;
402
403 wxGridCellCoords m_selectionStart;
404
405 wxCursor m_rowResizeCursor;
406 wxCursor m_colResizeCursor;
407
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;
414
415
416 // ------ internal init and update functions
417 //
418 void Create();
419 void Init();
420 void CalcDimensions();
421 bool IsOnScreen();
422 bool Redimension( wxGridTableMessage& );
423
424 // ------ event processing
425 //
426 bool SendEvent( const wxEventType,
427 int row, int col,
428 wxMouseEvent& );
429
430 bool SendEvent( const wxEventType,
431 int row, int col );
432
433 void OnPaint( wxPaintEvent& );
434 void OnSize( wxSizeEvent& );
435 void OnMouse( wxMouseEvent& );
436 void OnKeyDown( wxKeyEvent& );
437 void OnText( wxKeyEvent& );
438 void OnGridScroll( wxScrollEvent& );
439
440 void SelectCell( const wxGridCellCoords& coords );
441 void SelectCell( int row, int col )
442 { SelectCell( wxGridCellCoords(row, col) ); }
443
444
445 // ------ edit controls
446 //
447 void ShowCellEditControl();
448 void HideCellEditControl();
449 void SaveEditControlValue();
450
451
452 // ------ grid location functions
453 //
454 int XYToArea( int x, int y ); // returns one of the following...
455 enum { WXGRID_NOAREA,
456 WXGRID_ROWLABEL,
457 WXGRID_ROWLABEL_EDGE,
458 WXGRID_COLLABEL,
459 WXGRID_COLLABEL_EDGE,
460 WXGRID_CORNERLABEL,
461 WXGRID_CELL };
462
463 void XYToCell( int x, int y, wxGridCellCoords& );
464 int YToRow( int y );
465 int XToCol( int x );
466
467 int YToEdgeOfRow( int y );
468 int XToEdgeOfCol( int x );
469
470 wxRect CellToRect( int row, int col );
471 wxRect CellToRect( const wxGridCellCoords& coords )
472 { return CellToRect( coords.GetRow(), coords.GetCol() ); }
473
474 bool MoveCursorUp();
475 bool MoveCursorDown();
476 bool MoveCursorLeft();
477 bool MoveCursorRight();
478 bool MovePageDown();
479 bool MovePageUp();
480 bool MoveCursorUpBlock();
481 bool MoveCursorDownBlock();
482 bool MoveCursorLeftBlock();
483 bool MoveCursorRightBlock();
484
485
486 // ------ label drawing functions
487 //
488 void DrawLabelAreas( wxDC& dc );
489 void DrawColLabelBorders( wxDC& dc );
490 void DrawColLabels( wxDC& dc );
491 void DrawColLabel( wxDC& dc, const wxRect&, int col );
492 void DrawRowLabelBorders( wxDC& dc );
493 void DrawRowLabels( wxDC& dc );
494 void DrawRowLabel( wxDC& dc, const wxRect&, int col );
495
496
497 // ------ cell drawing functions
498 //
499 void DrawCellArea( wxDC& dc );
500 void DrawGridLines( wxDC& dc );
501 void DrawCells( wxDC& dc );
502 void DrawCellBackground( wxDC& dc, const wxRect&, int row, int col );
503 void DrawCellValue( wxDC& dc, const wxRect&, int row, int col );
504
505 // this one is useful when you just need to draw one or a few
506 // cells
507 void DrawCell( int row, int col );
508 void DrawCell( const wxGridCellCoords& coords )
509 { DrawCell( coords.GetRow(), coords.GetCol() ); }
510
511 void DrawCellHighlight( wxDC& dc, int row, int col );
512 void DrawCellHighlight( wxDC& dc, wxGridCellCoords& coords )
513 { DrawCellHighlight( dc, coords.GetRow(), coords.GetCol() ); }
514 void ShowCurrentCellHighlight( wxDC& dc );
515 void HideCurrentCellHighlight( wxDC& dc );
516
517
518 // ------ generic drawing functions
519 //
520 void DrawTextRectangle( wxDC& dc, const wxString&, const wxRect&,
521 int horizontalAlignment = wxLEFT,
522 int verticalAlignment = wxTOP );
523
524 // Split a string containing newline chararcters into an array of
525 // strings and return the number of lines
526 //
527 void StringToLines( const wxString& value, wxArrayString& lines );
528
529 void GetTextBoxSize( wxDC& dc,
530 wxArrayString& lines,
531 long *width, long *height );
532
533
534 // ------ functions to get/send data (see also public functions)
535 //
536 bool GetModelValues();
537 bool SetModelValues();
538
539
540 ////////////////////// Public section ////////////////////
541
542 public:
543 wxGrid()
544 { Create(); }
545
546 wxGrid( wxWindow *parent,
547 wxWindowID id,
548 const wxPoint& pos = wxDefaultPosition,
549 const wxSize& size = wxDefaultSize,
550 long style = 0,
551 const wxString& name = wxPanelNameStr )
552 : wxPanel( parent, id, pos, size, style, name )
553 {
554 Create();
555 }
556
557 ~wxGrid();
558
559 bool CreateGrid( int numRows = WXGRID_DEFAULT_NUMBER_ROWS,
560 int numCols = WXGRID_DEFAULT_NUMBER_COLS );
561
562 wxGridTableBase * GetTable() const { return m_table; }
563 void SetTable( wxGridTableBase *table ) { m_table = table; }
564
565 void ClearGrid();
566 bool InsertRows( int pos = 0, int numRows = 1, bool updateLabels=TRUE );
567 bool AppendRows( int numRows = 1, bool updateLabels=TRUE );
568 bool DeleteRows( int pos = 0, int numRows = 1, bool updateLabels=TRUE );
569 bool InsertCols( int pos = 0, int numCols = 1, bool updateLabels=TRUE );
570 bool AppendCols( int numCols = 1, bool updateLabels=TRUE );
571 bool DeleteCols( int pos = 0, int numCols = 1, bool updateLabels=TRUE );
572
573 // ------ editing and edit controls
574 //
575 bool IsEditable() { return m_editable; }
576 void EnableEditing( bool edit );
577
578 void EnableTopEditControl( bool enable );
579 bool IsTopEditControlEnabled()
580 { return (m_topEditCtrl && m_topEditCtrlEnabled); }
581 void EnableCellEditControl( bool enable );
582 bool IsCellEditControlEnabled()
583 { return (m_cellEditCtrl && m_cellEditCtrlEnabled); }
584 void SetEditControlValue( const wxString& s = wxEmptyString );
585
586
587 // ------ grid dimensions
588 //
589 int GetNumberRows() { return m_numRows; }
590 int GetNumberCols() { return m_numCols; }
591 int GetNumberVisibleRows() { return m_wholeRowsVisible; }
592 int GetNumberVisibleCols() { return m_wholeColsVisible; }
593
594
595 // ------
596 // Code that does a lot of grid modification can be enclosed
597 // between BeginBatch() and EndBatch() calls to avoid screen
598 // flicker
599 //
600 void BeginBatch() { m_batchCount++; }
601 void EndBatch() { if ( m_batchCount > 0 ) m_batchCount--; }
602 int GetBatchCount() { return m_batchCount; }
603
604
605 // ------ label and gridline formatting
606 //
607 int GetDefaultRowLabelSize() { return WXGRID_DEFAULT_ROW_LABEL_WIDTH; }
608 int GetRowLabelSize() { return m_rowLabelWidth; }
609 int GetDefaultColLabelSize() { return WXGRID_DEFAULT_COL_LABEL_HEIGHT; }
610 int GetColLabelSize() { return m_colLabelHeight; }
611 wxColour GetLabelBackgroundColour() { return m_labelBackgroundColour; }
612 wxColour GetLabelTextColour() { return m_labelTextColour; }
613 wxFont GetLabelFont() { return m_labelFont; }
614 void GetRowLabelAlignment( int *horiz, int *vert );
615 void GetColLabelAlignment( int *horiz, int *vert );
616 wxString GetRowLabelValue( int row );
617 wxString GetColLabelValue( int col );
618 wxColour GetGridLineColour() { return m_gridLineColour; }
619
620 void SetRowLabelSize( int width );
621 void SetColLabelSize( int height );
622 void SetLabelBackgroundColour( const wxColour& );
623 void SetLabelTextColour( const wxColour& );
624 void SetLabelFont( const wxFont& );
625 void SetRowLabelAlignment( int horiz, int vert );
626 void SetColLabelAlignment( int horiz, int vert );
627 void SetRowLabelValue( int row, const wxString& );
628 void SetColLabelValue( int col, const wxString& );
629 void SetGridLineColour( const wxColour& );
630
631 void EnableGridLines( bool enable = TRUE );
632 bool GridLinesEnabled() { return m_gridLinesEnabled; }
633
634
635 // ------ row and col formatting
636 //
637 int GetDefaultRowSize();
638 int GetRowSize( int row );
639 int GetDefaultColSize();
640 int GetColSize( int col );
641 wxColour GetDefaultCellBackgroundColour();
642 wxColour GetCellBackgroundColour( int row, int col );
643 wxColour GetDefaultCellTextColour();
644 wxColour GetCellTextColour( int row, int col );
645 wxColour GetCellHighlightColour();
646 wxFont GetDefaultCellFont();
647 wxFont GetCellFont( int row, int col );
648 void GetDefaultCellAlignment( int *horiz, int *vert );
649 void GetCellAlignment( int row, int col, int *horiz, int *vert );
650
651 void SetDefaultRowSize( int height, bool resizeExistingRows = FALSE );
652 void SetRowSize( int row, int height );
653 void SetDefaultColSize( int width, bool resizeExistingCols = FALSE );
654 void SetColSize( int col, int width );
655 void SetDefaultCellBackgroundColour( const wxColour& );
656 void SetCellBackgroundColour( int row, int col, const wxColour& );
657 void SetDefaultCellTextColour( const wxColour& );
658 void SetCellTextColour( int row, int col, const wxColour& );
659 void SetCellHighlightColour( const wxColour& );
660 void SetDefaultCellFont( const wxFont& );
661 void SetCellFont( int row, int col, const wxFont& );
662 void SetDefaultCellAlignment( int horiz, int vert );
663 void SetCellAlignment( int row, int col, int horiz, int vert );
664
665
666 // ------ cell value accessors
667 //
668 wxString GetCellValue( int row, int col )
669 {
670 if ( m_table )
671 {
672 return m_table->GetValue( row, col );
673 }
674 else
675 {
676 return wxEmptyString;
677 }
678 }
679
680 wxString GetCellValue( const wxGridCellCoords& coords )
681 { return GetCellValue( coords.GetRow(), coords.GetCol() ); }
682
683 void SetCellValue( int row, int col, const wxString& s );
684 void SetCellValue( const wxGridCellCoords& coords, const wxString& s )
685 { SetCellValue( coords.GetRow(), coords.GetCol(), s ); }
686
687
688 // ------ interaction with data model
689 //
690 bool ProcessTableMessage( wxGridTableMessage& );
691
692
693
694 // ------ grid location functions
695 //
696
697 int GetGridCursorRow() { return m_currentCellCoords.GetRow(); }
698 int GetGridCursorCol() { return m_currentCellCoords.GetCol(); }
699 int GetHorizontalScrollPos() { return m_scrollPosX; }
700 int GetVerticalScrollPos() { return m_scrollPosY; }
701
702 bool IsVisible( const wxGridCellCoords& );
703 void MakeCellVisible( int row, int col );
704 void MakeCellVisible( const wxGridCellCoords& coords )
705 { MakeCellVisible( coords.GetRow(), coords.GetCol() ); }
706
707 void SetGridCursor( int row, int col )
708 { SelectCell( wxGridCellCoords(row, col) ); }
709
710 void SetHorizontalScrollPos( int leftMostCol );
711 void SetVerticalScrollPos( int topMostRow );
712
713
714 // ------ selections of blocks of cells
715 //
716 void SelectRow( int row, bool addToSelected = FALSE );
717 void SelectCol( int col, bool addToSelected = FALSE );
718
719 void SelectBlock( int topRow, int leftCol, int bottomRow, int rightCol );
720
721 void SelectBlock( const wxGridCellCoords& topLeft,
722 const wxGridCellCoords& bottomRight )
723 { SelectBlock( topLeft.GetRow(), topLeft.GetCol(),
724 bottomRight.GetRow(), bottomRight.GetCol() ); }
725
726 void SelectAll();
727
728 bool IsSelection()
729 { return ( m_selectedTopLeft != wxGridNoCellCoords &&
730 m_selectedBottomRight != wxGridNoCellCoords );
731 }
732
733 void ClearSelection();
734
735 bool IsInSelection( int row, int col )
736 { return ( IsSelection() &&
737 row >= m_selectedTopLeft.GetRow() &&
738 col >= m_selectedTopLeft.GetCol() &&
739 row <= m_selectedBottomRight.GetRow() &&
740 col <= m_selectedBottomRight.GetCol() );
741 }
742
743 bool IsInSelection( const wxGridCellCoords& coords )
744 { return IsInSelection( coords.GetRow(), coords.GetCol() ); }
745
746 void GetSelection( int* topRow, int* leftCol, int* bottomRow, int* rightCol )
747 {
748 // these will all be -1 if there is no selected block
749 //
750 *topRow = m_selectedTopLeft.GetRow();
751 *leftCol = m_selectedTopLeft.GetCol();
752 *bottomRow = m_selectedBottomRight.GetRow();
753 *rightCol = m_selectedBottomRight.GetCol();
754 }
755
756 // get coordinates of selected block edges for repainting etc.
757 //
758 wxRect SelectionToRect();
759
760
761 // ------ For compatibility with previous wxGrid only...
762 //
763 // ************************************************
764 // ** Don't use these in new code because they **
765 // ** are liable to disappear in a future **
766 // ** revision **
767 // ************************************************
768 //
769
770 wxGrid( wxWindow *parent,
771 int x = -1, int y = -1, int w = -1, int h = -1,
772 long style = 0,
773 const wxString& name = wxPanelNameStr )
774 : wxPanel( parent, -1, wxPoint(x,y), wxSize(w,h), style, name )
775 {
776 Create();
777 }
778
779 void SetCellValue( const wxString& val, int row, int col )
780 { SetCellValue( row, col, val ); }
781
782 void AdjustScrollbars()
783 { CalcDimensions(); }
784
785 void UpdateDimensions()
786 { CalcDimensions(); }
787
788 int GetRows() { return GetNumberRows(); }
789 int GetCols() { return GetNumberCols(); }
790 int GetCursorRow() { return GetGridCursorRow(); }
791 int GetCursorColumn() { return GetGridCursorCol(); }
792 int GetScrollPosX() { return GetHorizontalScrollPos(); }
793 int GetScrollPosY() { return GetVerticalScrollPos(); }
794
795 void SetScrollX( int x ) { SetHorizontalScrollPos( x ); }
796 void SetScrollY( int y ) { SetVerticalScrollPos( y ); }
797
798 void SetColumnWidth( int col, int width )
799 { SetColSize( col, width ); }
800
801 int GetColumnWidth( int col )
802 { return GetColSize( col ); }
803
804 void SetRowHeight( int row, int height )
805 { SetRowSize( row, height ); }
806
807 int GetRowHeight( int row )
808 { return GetRowSize( row ); }
809
810 int GetViewHeight()
811 { return m_wholeRowsVisible; }
812
813 int GetViewWidth()
814 { return m_wholeColsVisible; }
815
816 void SetLabelSize( int orientation, int sz )
817 {
818 if ( orientation == wxHORIZONTAL )
819 SetColLabelSize( sz );
820 else
821 SetRowLabelSize( sz );
822 }
823
824 int GetLabelSize( int orientation )
825 {
826 if ( orientation == wxHORIZONTAL )
827 return GetColLabelSize();
828 else
829 return GetRowLabelSize();
830 }
831
832 void SetLabelAlignment( int orientation, int align )
833 {
834 if ( orientation == wxHORIZONTAL )
835 SetColLabelAlignment( align, -1 );
836 else
837 SetRowLabelAlignment( align, -1 );
838 }
839
840 int GetLabelAlignment( int orientation, int align )
841 {
842 int h, v;
843 if ( orientation == wxHORIZONTAL )
844 {
845 GetColLabelAlignment( &h, &v );
846 return h;
847 }
848 else
849 {
850 GetRowLabelAlignment( &h, &v );
851 return h;
852 }
853 }
854
855 void SetLabelValue( int orientation, const wxString& val, int pos )
856 {
857 if ( orientation == wxHORIZONTAL )
858 SetColLabelValue( pos, val );
859 else
860 SetRowLabelValue( pos, val );
861 }
862
863 wxString GetLabelValue( int orientation, int pos)
864 {
865 if ( orientation == wxHORIZONTAL )
866 return GetColLabelValue( pos );
867 else
868 return GetRowLabelValue( pos );
869 }
870
871 wxFont GetCellTextFont() const
872 { return m_defaultCellFont; }
873
874 wxFont GetCellTextFont(int row, int col) const
875 { return m_defaultCellFont; }
876
877 void SetCellTextFont(const wxFont& fnt)
878 { SetDefaultCellFont( fnt ); }
879
880 void SetCellTextFont(const wxFont& fnt, int row, int col)
881 { SetCellFont( row, col, fnt ); }
882
883 void SetCellTextColour(const wxColour& val, int row, int col)
884 { SetCellTextColour( row, col, val ); }
885
886 void SetCellTextColour(const wxColour& col)
887 { SetDefaultCellTextColour( col ); }
888
889 void SetCellBackgroundColour(const wxColour& col)
890 { SetDefaultCellBackgroundColour( col ); }
891
892 void SetCellBackgroundColour(const wxColour& colour, int row, int col)
893 { SetCellBackgroundColour( row, col, colour ); }
894
895 bool GetEditable() { return IsEditable(); }
896 void SetEditable( bool edit = TRUE ) { EnableEditing( edit ); }
897 bool GetEditInPlace() { return IsCellEditControlEnabled(); }
898 void SetEditInPlace(bool edit = TRUE) { EnableCellEditControl( edit ); }
899
900
901 // ******** End of compatibility functions **********
902
903
904 // ------ control IDs
905 enum { wxGRID_HORIZSCROLL = 2000,
906 wxGRID_VERTSCROLL,
907 wxGRID_CELLCTRL,
908 wxGRID_TOPCTRL };
909
910 // ------ control types
911 enum { wxGRID_TEXTCTRL = 100,
912 wxGRID_CHECKBOX,
913 wxGRID_CHOICE,
914 wxGRID_COMBOBOX };
915
916
917 DECLARE_EVENT_TABLE()
918 };
919
920
921
922
923
924 //
925 // ------ Grid event class and event types
926 //
927
928 class WXDLLEXPORT wxGridEvent : public wxNotifyEvent
929 {
930 DECLARE_DYNAMIC_CLASS(wxGridEvent)
931
932 private:
933 int m_row;
934 int m_col;
935 int m_x;
936 int m_y;
937 bool m_control;
938 bool m_meta;
939 bool m_shift;
940 bool m_alt;
941
942 public:
943 wxGridEvent()
944 : wxNotifyEvent(), m_row(-1), m_col(-1), m_x(-1), m_y(-1),
945 m_control(0), m_meta(0), m_shift(0), m_alt(0)
946 {
947 }
948
949 wxGridEvent(int id, wxEventType type, wxObject* obj,
950 int row=-1, int col=-1, int x=-1, int y=-1,
951 bool control=FALSE, bool shift=FALSE, bool alt=FALSE, bool meta=FALSE);
952
953 virtual int GetRow() { return m_row; }
954 virtual int GetCol() { return m_col; }
955 wxPoint GetPosition() { return wxPoint( m_x, m_y ); }
956 bool ControlDown() { return m_control; }
957 bool MetaDown() { return m_meta; }
958 bool ShiftDown() { return m_shift; }
959 bool AltDown() { return m_alt; }
960 };
961
962
963 class WXDLLEXPORT wxGridSizeEvent : public wxNotifyEvent
964 {
965 DECLARE_DYNAMIC_CLASS(wxGridSizeEvent)
966
967 private:
968 int m_rowOrCol;
969 int m_x;
970 int m_y;
971 bool m_control;
972 bool m_meta;
973 bool m_shift;
974 bool m_alt;
975
976 public:
977 wxGridSizeEvent()
978 : wxNotifyEvent(), m_rowOrCol(-1), m_x(-1), m_y(-1),
979 m_control(0), m_meta(0), m_shift(0), m_alt(0)
980 {
981 }
982
983 wxGridSizeEvent(int id, wxEventType type, wxObject* obj,
984 int rowOrCol=-1, int x=-1, int y=-1,
985 bool control=FALSE, bool shift=FALSE, bool alt=FALSE, bool meta=FALSE);
986
987 int GetRowOrCol() { return m_rowOrCol; }
988 wxPoint GetPosition() { return wxPoint( m_x, m_y ); }
989 bool ControlDown() { return m_control; }
990 bool MetaDown() { return m_meta; }
991 bool ShiftDown() { return m_shift; }
992 bool AltDown() { return m_alt; }
993 };
994
995
996 class WXDLLEXPORT wxGridRangeSelectEvent : public wxNotifyEvent
997 {
998 DECLARE_DYNAMIC_CLASS(wxGridRangeSelectEvent)
999
1000 private:
1001 wxGridCellCoords m_topLeft;
1002 wxGridCellCoords m_bottomRight;
1003 bool m_control;
1004 bool m_meta;
1005 bool m_shift;
1006 bool m_alt;
1007
1008 public:
1009 wxGridRangeSelectEvent()
1010 : wxNotifyEvent()
1011 {
1012 m_topLeft = wxGridNoCellCoords;
1013 m_bottomRight = wxGridNoCellCoords;
1014 m_control = FALSE;
1015 m_meta = FALSE;
1016 m_shift = FALSE;
1017 m_alt = FALSE;
1018 }
1019
1020 wxGridRangeSelectEvent(int id, wxEventType type, wxObject* obj,
1021 const wxGridCellCoords& topLeft,
1022 const wxGridCellCoords& bottomRight,
1023 bool control=FALSE, bool shift=FALSE,
1024 bool alt=FALSE, bool meta=FALSE);
1025
1026 wxGridCellCoords GetTopLeftCoords() { return m_topLeft; }
1027 wxGridCellCoords GetBottomRightCoords() { return m_bottomRight; }
1028 int GetTopRow() { return m_topLeft.GetRow(); }
1029 int GetBottomRow() { return m_bottomRight.GetRow(); }
1030 int GetLeftCol() { return m_topLeft.GetCol(); }
1031 int GetRightCol() { return m_bottomRight.GetCol(); }
1032 bool ControlDown() { return m_control; }
1033 bool MetaDown() { return m_meta; }
1034 bool ShiftDown() { return m_shift; }
1035 bool AltDown() { return m_alt; }
1036 };
1037
1038
1039 const wxEventType EVT_GRID_CELL_LEFT_CLICK = wxEVT_FIRST + 1580;
1040 const wxEventType EVT_GRID_CELL_RIGHT_CLICK = wxEVT_FIRST + 1581;
1041 const wxEventType EVT_GRID_CELL_LEFT_DCLICK = wxEVT_FIRST + 1582;
1042 const wxEventType EVT_GRID_CELL_RIGHT_DCLICK = wxEVT_FIRST + 1583;
1043 const wxEventType EVT_GRID_LABEL_LEFT_CLICK = wxEVT_FIRST + 1584;
1044 const wxEventType EVT_GRID_LABEL_RIGHT_CLICK = wxEVT_FIRST + 1585;
1045 const wxEventType EVT_GRID_LABEL_LEFT_DCLICK = wxEVT_FIRST + 1586;
1046 const wxEventType EVT_GRID_LABEL_RIGHT_DCLICK = wxEVT_FIRST + 1587;
1047 const wxEventType EVT_GRID_ROW_SIZE = wxEVT_FIRST + 1588;
1048 const wxEventType EVT_GRID_COL_SIZE = wxEVT_FIRST + 1589;
1049 const wxEventType EVT_GRID_RANGE_SELECT = wxEVT_FIRST + 1590;
1050 const wxEventType EVT_GRID_CELL_CHANGE = wxEVT_FIRST + 1591;
1051
1052 typedef void (wxEvtHandler::*wxGridEventFunction)(wxGridEvent&);
1053 typedef void (wxEvtHandler::*wxGridSizeEventFunction)(wxGridSizeEvent&);
1054 typedef void (wxEvtHandler::*wxGridRangeSelectEventFunction)(wxGridRangeSelectEvent&);
1055
1056 #define EVT_GRID_CELL_LEFT_CLICK(fn) { EVT_GRID_CELL_LEFT_CLICK, -1, -1, (wxObjectEventFunction) (wxEventFunction) (wxGridEventFunction) &fn, NULL },
1057 #define EVT_GRID_CELL_RIGHT_CLICK(fn) { EVT_GRID_CELL_RIGHT_CLICK, -1, -1, (wxObjectEventFunction) (wxEventFunction) (wxGridEventFunction) &fn, NULL },
1058 #define EVT_GRID_CELL_LEFT_DCLICK(fn) { EVT_GRID_CELL_LEFT_DCLICK, -1, -1, (wxObjectEventFunction) (wxEventFunction) (wxGridEventFunction) &fn, NULL },
1059 #define EVT_GRID_CELL_RIGHT_DCLICK(fn) { EVT_GRID_CELL_RIGHT_DCLICK, -1, -1, (wxObjectEventFunction) (wxEventFunction) (wxGridEventFunction) &fn, NULL },
1060 #define EVT_GRID_LABEL_LEFT_CLICK(fn) { EVT_GRID_LABEL_LEFT_CLICK, -1, -1, (wxObjectEventFunction) (wxEventFunction) (wxGridEventFunction) &fn, NULL },
1061 #define EVT_GRID_LABEL_RIGHT_CLICK(fn) { EVT_GRID_LABEL_RIGHT_CLICK, -1, -1, (wxObjectEventFunction) (wxEventFunction) (wxGridEventFunction) &fn, NULL },
1062 #define EVT_GRID_LABEL_LEFT_DCLICK(fn) { EVT_GRID_LABEL_LEFT_DCLICK, -1, -1, (wxObjectEventFunction) (wxEventFunction) (wxGridEventFunction) &fn, NULL },
1063 #define EVT_GRID_LABEL_RIGHT_DCLICK(fn) { EVT_GRID_LABEL_RIGHT_DCLICK, -1, -1, (wxObjectEventFunction) (wxEventFunction) (wxGridEventFunction) &fn, NULL },
1064 #define EVT_GRID_ROW_SIZE(fn) { EVT_GRID_ROW_SIZE, -1, -1, (wxObjectEventFunction) (wxEventFunction) (wxGridSizeEventFunction) &fn, NULL },
1065 #define EVT_GRID_COL_SIZE(fn) { EVT_GRID_COL_SIZE, -1, -1, (wxObjectEventFunction) (wxEventFunction) (wxGridSizeEventFunction) &fn, NULL },
1066 #define EVT_GRID_RANGE_SELECT(fn) { EVT_GRID_RANGE_SELECT, -1, -1, (wxObjectEventFunction) (wxEventFunction) (wxGridRangeSelectEventFunction) &fn, NULL },
1067 #define EVT_GRID_CELL_CHANGE(fn) { EVT_GRID_CELL_CHANGE, -1, -1, (wxObjectEventFunction) (wxEventFunction) (wxGridEventFunction) &fn, NULL },
1068
1069
1070 #if 0 // TODO: implement these ? others ?
1071
1072 const wxEventType EVT_GRID_SELECT_CELL = wxEVT_FIRST + 1575;
1073 const wxEventType EVT_GRID_CREATE_CELL = wxEVT_FIRST + 1576;
1074 const wxEventType EVT_GRID_CHANGE_LABELS = wxEVT_FIRST + 1577;
1075 const wxEventType EVT_GRID_CHANGE_SEL_LABEL = wxEVT_FIRST + 1578;
1076
1077 #define EVT_GRID_SELECT_CELL(fn) { EVT_GRID_SELECT_CELL, -1, -1, (wxObjectEventFunction) (wxEventFunction) (wxGridEventFunction) &fn, NULL },
1078 #define EVT_GRID_CREATE_CELL(fn) { EVT_GRID_CREATE_CELL, -1, -1, (wxObjectEventFunction) (wxEventFunction) (wxGridEventFunction) &fn, NULL },
1079 #define EVT_GRID_CHANGE_LABELS(fn) { EVT_GRID_CHANGE_LABELS, -1, -1, (wxObjectEventFunction) (wxEventFunction) (wxGridEventFunction) &fn, NULL },
1080 #define EVT_GRID_CHANGE_SEL_LABEL(fn) { EVT_GRID_CHANGE_SEL_LABEL, -1, -1, (wxObjectEventFunction) (wxEventFunction) (wxGridEventFunction) &fn, NULL },
1081
1082 #endif
1083
1084 #endif // #ifndef __WXGRID_H__
1085
1086 #endif // ifndef wxUSE_NEW_GRID