]> git.saurik.com Git - wxWidgets.git/blame - include/wx/generic/grid.h
Fixed thread state problem in wxTreeCtrl.GetBoundingBox
[wxWidgets.git] / include / wx / generic / grid.h
CommitLineData
f85afd4e
MB
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"
2d66e025 27#include "wx/scrolwin.h"
f85afd4e
MB
28#include "wx/string.h"
29#include "wx/scrolbar.h"
30#include "wx/event.h"
31#include "wx/textctrl.h"
32#include "wx/combobox.h"
33#include "wx/dynarray.h"
34
35
36// Default parameters for wxGrid
37//
38#define WXGRID_DEFAULT_NUMBER_ROWS 10
39#define WXGRID_DEFAULT_NUMBER_COLS 10
40#ifdef __WXMSW__
41#define WXGRID_DEFAULT_ROW_HEIGHT 25
42#else
43#define WXGRID_DEFAULT_ROW_HEIGHT 30
44#endif // __WXMSW__
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
f85afd4e 52
b99be8fb
VZ
53// ----------------------------------------------------------------------------
54// forward declarations
55// ----------------------------------------------------------------------------
56
ab79958a
VZ
57class WXDLLEXPORT wxGrid;
58class WXDLLEXPORT wxGridCellAttr;
b99be8fb 59class WXDLLEXPORT wxGridCellAttrProviderData;
b99be8fb
VZ
60class WXDLLEXPORT wxGridColLabelWindow;
61class WXDLLEXPORT wxGridCornerLabelWindow;
ab79958a
VZ
62class WXDLLEXPORT wxGridRowLabelWindow;
63class WXDLLEXPORT wxGridTableBase;
b99be8fb 64class WXDLLEXPORT wxGridWindow;
ab79958a
VZ
65
66// ----------------------------------------------------------------------------
67// wxGridCellRenderer: this class is responsible for actually drawing the cell
68// in the grid. You may pass it to the wxGridCellAttr (below) to change the
69// format of one given cell or to wxGrid::SetDefaultRenderer() to change the
70// view of all cells. This is an ABC, you will normally use one of the
71// predefined derived classes or derive oyur own class from it.
72// ----------------------------------------------------------------------------
73
74class WXDLLEXPORT wxGridCellRenderer
75{
76public:
77 // draw the given cell on the provided DC inside the given rectangle
78 // using the style specified by the attribute and the default or selected
79 // state corresponding to the isSelected value.
80 //
81 // this pure virtual function has a default implementation which will
82 // prepare the DC using the given attribute: it will draw the rectangle
83 // with the bg colour from attr and set the text colour and font
84 virtual void Draw(wxGrid& grid,
85 wxDC& dc,
86 const wxRect& rect,
87 int row, int col,
88 bool isSelected) = 0;
89};
90
91// the default renderer for the cells containing string data
92class WXDLLEXPORT wxGridCellStringRenderer : public wxGridCellRenderer
93{
94public:
95 // draw the string
96 virtual void Draw(wxGrid& grid,
97 wxDC& dc,
98 const wxRect& rect,
99 int row, int col,
100 bool isSelected);
101};
f85afd4e 102
b99be8fb
VZ
103// ----------------------------------------------------------------------------
104// wxGridCellAttr: this class can be used to alter the cells appearance in
105// the grid by changing their colour/font/... from default. An object of this
106// class may be returned by wxGridTable::GetAttr().
107// ----------------------------------------------------------------------------
108
109class WXDLLEXPORT wxGridCellAttr
110{
111public:
112 // ctors
113 wxGridCellAttr()
114 {
2e9a6788 115 Init();
b99be8fb
VZ
116 SetAlignment(0, 0);
117 }
118
119 wxGridCellAttr(const wxColour& colText,
120 const wxColour& colBack,
121 const wxFont& font,
122 int hAlign,
123 int vAlign)
124 : m_colText(colText), m_colBack(colBack), m_font(font)
125 {
2e9a6788 126 Init();
b99be8fb
VZ
127 SetAlignment(hAlign, vAlign);
128 }
129
130 // default copy ctor ok
131
2e9a6788
VZ
132 // this class is ref counted: it is created with ref count of 1, so
133 // calling DecRef() once will delete it. Calling IncRef() allows to lock
134 // it until the matching DecRef() is called
135 void IncRef() { m_nRef++; }
136 void DecRef() { if ( !--m_nRef ) delete this; }
0a976765 137 void SafeIncRef() { if ( this ) IncRef(); }
2e9a6788
VZ
138 void SafeDecRef() { if ( this ) DecRef(); }
139
b99be8fb
VZ
140 // setters
141 void SetTextColour(const wxColour& colText) { m_colText = colText; }
142 void SetBackgroundColour(const wxColour& colBack) { m_colBack = colBack; }
143 void SetFont(const wxFont& font) { m_font = font; }
144 void SetAlignment(int hAlign, int vAlign)
145 {
146 m_hAlign = hAlign;
147 m_vAlign = vAlign;
148 }
149
ab79958a
VZ
150 // takes ownership of the pointer
151 void SetRenderer(wxGridCellRenderer *renderer)
152 { delete m_renderer; m_renderer = renderer; }
153
b99be8fb
VZ
154 // accessors
155 bool HasTextColour() const { return m_colText.Ok(); }
156 bool HasBackgroundColour() const { return m_colBack.Ok(); }
157 bool HasFont() const { return m_font.Ok(); }
158 bool HasAlignment() const { return m_hAlign || m_vAlign; }
159
160 const wxColour& GetTextColour() const { return m_colText; }
161 const wxColour& GetBackgroundColour() const { return m_colBack; }
162 const wxFont& GetFont() const { return m_font; }
163 void GetAlignment(int *hAlign, int *vAlign)
164 {
165 if ( hAlign ) *hAlign = m_hAlign;
166 if ( vAlign ) *vAlign = m_vAlign;
167 }
168
ab79958a
VZ
169 wxGridCellRenderer *GetRenderer() const { return m_renderer; }
170
b99be8fb 171private:
2e9a6788 172 // the common part of all ctors
ab79958a 173 void Init() { m_nRef = 1; m_renderer = (wxGridCellRenderer *)NULL; }
2e9a6788
VZ
174
175 // the dtor is private because only DecRef() can delete us
ab79958a 176 ~wxGridCellAttr() { delete m_renderer; }
2e9a6788
VZ
177
178 // the ref count - when it goes to 0, we die
179 size_t m_nRef;
180
b99be8fb
VZ
181 wxColour m_colText,
182 m_colBack;
183 wxFont m_font;
184 int m_hAlign,
185 m_vAlign;
2e9a6788 186
ab79958a
VZ
187 wxGridCellRenderer *m_renderer;
188
2e9a6788
VZ
189 // suppress the stupid gcc warning about the class having private dtor and
190 // no friends
191 friend class wxGridCellAttrDummyFriend;
b99be8fb
VZ
192};
193
194// ----------------------------------------------------------------------------
195// wxGridCellAttrProvider: class used by wxGridTableBase to retrieve/store the
196// cell attributes.
197// ----------------------------------------------------------------------------
198
199// implementation note: we separate it from wxGridTableBase because we wish to
200// avoid deriving a new table class if possible, and sometimes it will be
201// enough to just derive another wxGridCellAttrProvider instead
758cbedf
VZ
202//
203// the default implementation is reasonably efficient for the generic case,
204// but you might still wish to implement your own for some specific situations
205// if you have performance problems with the stock one
b99be8fb
VZ
206class WXDLLEXPORT wxGridCellAttrProvider
207{
208public:
209 wxGridCellAttrProvider();
210 virtual ~wxGridCellAttrProvider();
211
2e9a6788 212 // DecRef() must be called on the returned pointer
b99be8fb 213 virtual wxGridCellAttr *GetAttr(int row, int col) const;
2e9a6788 214
758cbedf
VZ
215 // all these functions take ownership of the pointer, don't call DecRef()
216 // on it
2e9a6788 217 virtual void SetAttr(wxGridCellAttr *attr, int row, int col);
758cbedf
VZ
218 virtual void SetRowAttr(wxGridCellAttr *attr, int row);
219 virtual void SetColAttr(wxGridCellAttr *attr, int col);
b99be8fb
VZ
220
221private:
222 void InitData();
223
224 wxGridCellAttrProviderData *m_data;
225};
f85afd4e
MB
226
227//////////////////////////////////////////////////////////////////////
228//
229// Grid table classes
230//
231//////////////////////////////////////////////////////////////////////
232
233
2d66e025 234class WXDLLEXPORT wxGridTableBase : public wxObject
f85afd4e 235{
60ff3b99 236public:
f85afd4e
MB
237 wxGridTableBase();
238 virtual ~wxGridTableBase();
239
240 // You must override these functions in a derived table class
241 //
242 virtual long GetNumberRows() = 0;
243 virtual long GetNumberCols() = 0;
244 virtual wxString GetValue( int row, int col ) = 0;
245 virtual void SetValue( int row, int col, const wxString& s ) = 0;
246 virtual bool IsEmptyCell( int row, int col ) = 0;
60ff3b99 247
f85afd4e
MB
248 // Overriding these is optional
249 //
250 virtual void SetView( wxGrid *grid ) { m_view = grid; }
251 virtual wxGrid * GetView() const { return m_view; }
252
253 virtual void Clear() {}
254 virtual bool InsertRows( size_t pos = 0, size_t numRows = 1 );
255 virtual bool AppendRows( size_t numRows = 1 );
256 virtual bool DeleteRows( size_t pos = 0, size_t numRows = 1 );
257 virtual bool InsertCols( size_t pos = 0, size_t numCols = 1 );
258 virtual bool AppendCols( size_t numCols = 1 );
259 virtual bool DeleteCols( size_t pos = 0, size_t numCols = 1 );
260
261 virtual wxString GetRowLabelValue( int row );
262 virtual wxString GetColLabelValue( int col );
af111fc3
JS
263 virtual void SetRowLabelValue( int WXUNUSED(row), const wxString& ) {}
264 virtual void SetColLabelValue( int WXUNUSED(col), const wxString& ) {}
60ff3b99 265
b99be8fb
VZ
266 // Attribute handling
267 //
268
269 // give us the attr provider to use - we take ownership of the pointer
270 void SetAttrProvider(wxGridCellAttrProvider *attrProvider);
271
272 // get the currently used attr provider (may be NULL)
273 wxGridCellAttrProvider *GetAttrProvider() const { return m_attrProvider; }
274
275 // by default forwarded to wxGridCellAttrProvider if any. May be
276 // overridden to handle attributes directly in this class.
277 virtual wxGridCellAttr *GetAttr( int row, int col );
278
758cbedf
VZ
279 // these functions take ownership of the pointer
280 virtual void SetAttr(wxGridCellAttr* attr, int row, int col);
281 virtual void SetRowAttr(wxGridCellAttr *attr, int row);
282 virtual void SetColAttr(wxGridCellAttr *attr, int col);
b99be8fb 283
60ff3b99
VZ
284private:
285 wxGrid * m_view;
b99be8fb 286 wxGridCellAttrProvider *m_attrProvider;
60ff3b99 287
f85afd4e
MB
288 DECLARE_ABSTRACT_CLASS( wxGridTableBase );
289};
290
291
b99be8fb
VZ
292// ----------------------------------------------------------------------------
293// wxGridTableMessage
294// ----------------------------------------------------------------------------
f85afd4e
MB
295
296// IDs for messages sent from grid table to view
297//
60ff3b99
VZ
298enum wxGridTableRequest
299{
f85afd4e
MB
300 wxGRIDTABLE_REQUEST_VIEW_GET_VALUES = 2000,
301 wxGRIDTABLE_REQUEST_VIEW_SEND_VALUES,
302 wxGRIDTABLE_NOTIFY_ROWS_INSERTED,
303 wxGRIDTABLE_NOTIFY_ROWS_APPENDED,
304 wxGRIDTABLE_NOTIFY_ROWS_DELETED,
305 wxGRIDTABLE_NOTIFY_COLS_INSERTED,
306 wxGRIDTABLE_NOTIFY_COLS_APPENDED,
307 wxGRIDTABLE_NOTIFY_COLS_DELETED
308};
309
2d66e025 310class WXDLLEXPORT wxGridTableMessage
f85afd4e 311{
60ff3b99 312public:
f85afd4e
MB
313 wxGridTableMessage();
314 wxGridTableMessage( wxGridTableBase *table, int id,
315 int comInt1 = -1,
316 int comInt2 = -1 );
317
318 void SetTableObject( wxGridTableBase *table ) { m_table = table; }
319 wxGridTableBase * GetTableObject() const { return m_table; }
320 void SetId( int id ) { m_id = id; }
321 int GetId() { return m_id; }
322 void SetCommandInt( int comInt1 ) { m_comInt1 = comInt1; }
323 int GetCommandInt() { return m_comInt1; }
324 void SetCommandInt2( int comInt2 ) { m_comInt2 = comInt2; }
60ff3b99
VZ
325 int GetCommandInt2() { return m_comInt2; }
326
327private:
328 wxGridTableBase *m_table;
329 int m_id;
330 int m_comInt1;
331 int m_comInt2;
f85afd4e
MB
332};
333
334
335
336// ------ wxGridStringArray
337// A 2-dimensional array of strings for data values
338//
339
2d66e025
MB
340WX_DECLARE_EXPORTED_OBJARRAY(wxArrayString, wxGridStringArray);
341
f85afd4e
MB
342
343
344// ------ wxGridStringTable
345//
346// Simplest type of data table for a grid for small tables of strings
347// that are stored in memory
348//
349
2d66e025 350class WXDLLEXPORT wxGridStringTable : public wxGridTableBase
f85afd4e 351{
60ff3b99 352public:
f85afd4e
MB
353 wxGridStringTable();
354 wxGridStringTable( int numRows, int numCols );
355 ~wxGridStringTable();
356
357 // these are pure virtual in wxGridTableBase
358 //
359 long GetNumberRows();
360 long GetNumberCols();
361 wxString GetValue( int row, int col );
362 void SetValue( int row, int col, const wxString& s );
363 bool IsEmptyCell( int row, int col );
60ff3b99 364
f85afd4e
MB
365 // overridden functions from wxGridTableBase
366 //
367 void Clear();
368 bool InsertRows( size_t pos = 0, size_t numRows = 1 );
369 bool AppendRows( size_t numRows = 1 );
370 bool DeleteRows( size_t pos = 0, size_t numRows = 1 );
371 bool InsertCols( size_t pos = 0, size_t numCols = 1 );
372 bool AppendCols( size_t numCols = 1 );
373 bool DeleteCols( size_t pos = 0, size_t numCols = 1 );
374
375 void SetRowLabelValue( int row, const wxString& );
376 void SetColLabelValue( int col, const wxString& );
377 wxString GetRowLabelValue( int row );
378 wxString GetColLabelValue( int col );
60ff3b99
VZ
379
380private:
381 wxGridStringArray m_data;
382
383 // These only get used if you set your own labels, otherwise the
384 // GetRow/ColLabelValue functions return wxGridTableBase defaults
385 //
386 wxArrayString m_rowLabels;
387 wxArrayString m_colLabels;
388
f85afd4e
MB
389 DECLARE_DYNAMIC_CLASS( wxGridStringTable )
390};
391
392
393
f85afd4e
MB
394//////////////////////////////////////////////////////////////////////
395//
396// Grid view classes
397//
398//////////////////////////////////////////////////////////////////////
399
2d66e025 400class WXDLLEXPORT wxGridCellCoords
f85afd4e 401{
60ff3b99 402public:
f85afd4e
MB
403 wxGridCellCoords() { m_row = m_col = -1; }
404 wxGridCellCoords( int r, int c ) { m_row = r; m_col = c; }
405
406 // default copy ctor is ok
407
408 long GetRow() const { return m_row; }
409 void SetRow( long n ) { m_row = n; }
410 long GetCol() const { return m_col; }
411 void SetCol( long n ) { m_col = n; }
412 void Set( long row, long col ) { m_row = row; m_col = col; }
60ff3b99 413
f85afd4e
MB
414 wxGridCellCoords& operator=( const wxGridCellCoords& other )
415 {
416 if ( &other != this )
417 {
418 m_row=other.m_row;
419 m_col=other.m_col;
420 }
421 return *this;
422 }
423
424 bool operator==( const wxGridCellCoords& other )
425 {
426 return (m_row == other.m_row && m_col == other.m_col);
427 }
428
429 bool operator!=( const wxGridCellCoords& other )
430 {
431 return (m_row != other.m_row || m_col != other.m_col);
432 }
433
434 bool operator!()
435 {
436 return (m_row == -1 && m_col == -1 );
437 }
60ff3b99
VZ
438
439private:
440 long m_row;
441 long m_col;
f85afd4e
MB
442};
443
444
445// For comparisons...
446//
447extern wxGridCellCoords wxGridNoCellCoords;
448extern wxRect wxGridNoCellRect;
449
2d66e025
MB
450// An array of cell coords...
451//
452WX_DECLARE_EXPORTED_OBJARRAY(wxGridCellCoords, wxGridCellCoordsArray);
453
454
f85afd4e
MB
455
456// This set of classes is to provide for the use of different types of
60ff3b99 457// cell edit controls in the grid while avoiding the wx class info
f85afd4e
MB
458// system in deference to wxPython
459
2d66e025 460class WXDLLEXPORT wxGridTextCtrl : public wxTextCtrl
f85afd4e 461{
60ff3b99 462public:
f85afd4e
MB
463 wxGridTextCtrl() {}
464 wxGridTextCtrl( wxWindow *,
2d66e025 465 wxGrid *,
f85afd4e
MB
466 bool isCellControl,
467 wxWindowID id,
468 const wxString& value = wxEmptyString,
469 const wxPoint& pos = wxDefaultPosition,
470 const wxSize& size = wxDefaultSize,
471 long style = 0 );
472
473 void SetStartValue( const wxString& );
474 wxString GetStartValue() { return startValue; }
60ff3b99
VZ
475
476private:
477 wxGrid *m_grid;
478
479 // TRUE for controls placed over cells,
480 // FALSE for a control on a grid control panel
481 bool m_isCellControl;
482
483 wxString startValue;
484
485 void OnKeyDown( wxKeyEvent& );
486
f85afd4e
MB
487 DECLARE_DYNAMIC_CLASS( wxGridTextCtrl )
488 DECLARE_EVENT_TABLE()
489};
490
b99be8fb
VZ
491// ----------------------------------------------------------------------------
492// wxGrid
493// ----------------------------------------------------------------------------
f85afd4e 494
60ff3b99
VZ
495class WXDLLEXPORT wxGrid : public wxScrolledWindow
496{
497public:
f85afd4e 498 wxGrid()
b99be8fb 499 {
58dd5b3b
MB
500 m_table = (wxGridTableBase *) NULL;
501 m_gridWin = (wxGridWindow *) NULL;
502 m_rowLabelWin = (wxGridRowLabelWindow *) NULL;
503 m_colLabelWin = (wxGridColLabelWindow *) NULL;
504 m_cornerLabelWin = (wxGridCornerLabelWindow *) NULL;
505 m_cellEditCtrl = (wxWindow *) NULL;
506 }
60ff3b99 507
f85afd4e
MB
508 wxGrid( wxWindow *parent,
509 wxWindowID id,
510 const wxPoint& pos = wxDefaultPosition,
511 const wxSize& size = wxDefaultSize,
512 long style = 0,
2d66e025
MB
513 const wxString& name = wxPanelNameStr );
514
60ff3b99 515 ~wxGrid();
f85afd4e 516
2d66e025
MB
517 bool CreateGrid( int numRows, int numCols );
518
60ff3b99 519
2d66e025
MB
520 // ------ grid dimensions
521 //
522 int GetNumberRows() { return m_numRows; }
523 int GetNumberCols() { return m_numCols; }
524
60ff3b99 525
2d66e025
MB
526 // ------ display update functions
527 //
60ff3b99 528 void CalcRowLabelsExposed( wxRegion& reg );
8fb66724 529
60ff3b99
VZ
530 void CalcColLabelsExposed( wxRegion& reg );
531 void CalcCellsExposed( wxRegion& reg );
532
2d66e025 533
2d66e025
MB
534 // ------ event handlers
535 //
536 void ProcessRowLabelMouseEvent( wxMouseEvent& event );
537 void ProcessColLabelMouseEvent( wxMouseEvent& event );
538 void ProcessCornerLabelMouseEvent( wxMouseEvent& event );
60ff3b99 539 void ProcessGridCellMouseEvent( wxMouseEvent& event );
2d66e025 540 bool ProcessTableMessage( wxGridTableMessage& );
f85afd4e 541
6d004f67
MB
542 void DoEndDragResizeRow();
543 void DoEndDragResizeCol();
60ff3b99 544
f85afd4e
MB
545 wxGridTableBase * GetTable() const { return m_table; }
546 void SetTable( wxGridTableBase *table ) { m_table = table; }
547
548 void ClearGrid();
549 bool InsertRows( int pos = 0, int numRows = 1, bool updateLabels=TRUE );
550 bool AppendRows( int numRows = 1, bool updateLabels=TRUE );
551 bool DeleteRows( int pos = 0, int numRows = 1, bool updateLabels=TRUE );
552 bool InsertCols( int pos = 0, int numCols = 1, bool updateLabels=TRUE );
553 bool AppendCols( int numCols = 1, bool updateLabels=TRUE );
60ff3b99 554 bool DeleteCols( int pos = 0, int numCols = 1, bool updateLabels=TRUE );
f85afd4e 555
2d66e025
MB
556 void DrawGridCellArea( wxDC& dc );
557 void DrawCellBorder( wxDC& dc, const wxGridCellCoords& );
4634a5d6 558 void DrawAllGridLines( wxDC& dc, const wxRegion & reg );
2d66e025 559 void DrawCell( wxDC& dc, const wxGridCellCoords& );
1f1ce288 560
2d66e025
MB
561 void DrawRowLabels( wxDC& dc );
562 void DrawRowLabel( wxDC& dc, int row );
8fb66724 563
2d66e025
MB
564 void DrawColLabels( wxDC& dc );
565 void DrawColLabel( wxDC& dc, int col );
60ff3b99 566
f85afd4e 567
2d66e025 568 // ------ Cell text drawing functions
f85afd4e 569 //
2d66e025
MB
570 void DrawTextRectangle( wxDC& dc, const wxString&, const wxRect&,
571 int horizontalAlignment = wxLEFT,
572 int verticalAlignment = wxTOP );
f85afd4e 573
2d66e025
MB
574 // Split a string containing newline chararcters into an array of
575 // strings and return the number of lines
576 //
577 void StringToLines( const wxString& value, wxArrayString& lines );
60ff3b99 578
2d66e025
MB
579 void GetTextBoxSize( wxDC& dc,
580 wxArrayString& lines,
581 long *width, long *height );
60ff3b99 582
2d66e025 583
f85afd4e
MB
584 // ------
585 // Code that does a lot of grid modification can be enclosed
586 // between BeginBatch() and EndBatch() calls to avoid screen
587 // flicker
588 //
589 void BeginBatch() { m_batchCount++; }
590 void EndBatch() { if ( m_batchCount > 0 ) m_batchCount--; }
591 int GetBatchCount() { return m_batchCount; }
592
2d66e025
MB
593
594 // ------ edit control functions
595 //
596 bool IsEditable() { return m_editable; }
597 void EnableEditing( bool edit );
598
60ff3b99 599#if 0 // at the moment the cell edit control is always active
2d66e025 600 void EnableCellEditControl( bool enable );
1f1ce288 601#endif
2d66e025
MB
602
603 bool IsCellEditControlEnabled()
604 { return (m_cellEditCtrl && m_cellEditCtrlEnabled); }
605
2d66e025
MB
606 void ShowCellEditControl();
607 void HideCellEditControl();
608 void SetEditControlValue( const wxString& s = wxEmptyString );
609 void SaveEditControlValue();
610
60ff3b99 611
2d66e025 612 // ------ grid location functions
60ff3b99 613 // Note that all of these functions work with the logical coordinates of
2d66e025
MB
614 // grid cells and labels so you will need to convert from device
615 // coordinates for mouse events etc.
616 //
617 void XYToCell( int x, int y, wxGridCellCoords& );
618 int YToRow( int y );
619 int XToCol( int x );
620
621 int YToEdgeOfRow( int y );
622 int XToEdgeOfCol( int x );
623
624 wxRect CellToRect( int row, int col );
625 wxRect CellToRect( const wxGridCellCoords& coords )
626 { return CellToRect( coords.GetRow(), coords.GetCol() ); }
627
628 int GetGridCursorRow() { return m_currentCellCoords.GetRow(); }
629 int GetGridCursorCol() { return m_currentCellCoords.GetCol(); }
60ff3b99 630
2d66e025
MB
631 // check to see if a cell is either wholly visible (the default arg) or
632 // at least partially visible in the grid window
633 //
634 bool IsVisible( int row, int col, bool wholeCellVisible = TRUE );
635 bool IsVisible( const wxGridCellCoords& coords, bool wholeCellVisible = TRUE )
636 { return IsVisible( coords.GetRow(), coords.GetCol(), wholeCellVisible ); }
637 void MakeCellVisible( int row, int col );
638 void MakeCellVisible( const wxGridCellCoords& coords )
639 { MakeCellVisible( coords.GetRow(), coords.GetCol() ); }
640
60ff3b99 641
2d66e025
MB
642 // ------ grid cursor movement functions
643 //
dfaf42d2 644 void SetGridCursor( int row, int col )
b27f2615 645 { SetCurrentCell( wxGridCellCoords(row, col) ); }
dfaf42d2 646
2d66e025
MB
647 bool MoveCursorUp();
648 bool MoveCursorDown();
649 bool MoveCursorLeft();
650 bool MoveCursorRight();
651 bool MovePageDown();
652 bool MovePageUp();
653 bool MoveCursorUpBlock();
654 bool MoveCursorDownBlock();
655 bool MoveCursorLeftBlock();
656 bool MoveCursorRightBlock();
657
60ff3b99 658
f85afd4e
MB
659 // ------ label and gridline formatting
660 //
661 int GetDefaultRowLabelSize() { return WXGRID_DEFAULT_ROW_LABEL_WIDTH; }
662 int GetRowLabelSize() { return m_rowLabelWidth; }
60ff3b99 663 int GetDefaultColLabelSize() { return WXGRID_DEFAULT_COL_LABEL_HEIGHT; }
f85afd4e
MB
664 int GetColLabelSize() { return m_colLabelHeight; }
665 wxColour GetLabelBackgroundColour() { return m_labelBackgroundColour; }
666 wxColour GetLabelTextColour() { return m_labelTextColour; }
667 wxFont GetLabelFont() { return m_labelFont; }
668 void GetRowLabelAlignment( int *horiz, int *vert );
669 void GetColLabelAlignment( int *horiz, int *vert );
670 wxString GetRowLabelValue( int row );
671 wxString GetColLabelValue( int col );
672 wxColour GetGridLineColour() { return m_gridLineColour; }
673
ab79958a 674 void SetRowLabelSize( int width );
f85afd4e
MB
675 void SetColLabelSize( int height );
676 void SetLabelBackgroundColour( const wxColour& );
677 void SetLabelTextColour( const wxColour& );
678 void SetLabelFont( const wxFont& );
679 void SetRowLabelAlignment( int horiz, int vert );
680 void SetColLabelAlignment( int horiz, int vert );
681 void SetRowLabelValue( int row, const wxString& );
682 void SetColLabelValue( int col, const wxString& );
683 void SetGridLineColour( const wxColour& );
684
758cbedf
VZ
685 // this sets the specified attribute for all cells in this row/col
686 void SetRowAttr(int row, wxGridCellAttr *attr);
687 void SetColAttr(int col, wxGridCellAttr *attr);
688
f85afd4e
MB
689 void EnableGridLines( bool enable = TRUE );
690 bool GridLinesEnabled() { return m_gridLinesEnabled; }
691
f85afd4e
MB
692 // ------ row and col formatting
693 //
694 int GetDefaultRowSize();
695 int GetRowSize( int row );
696 int GetDefaultColSize();
697 int GetColSize( int col );
698 wxColour GetDefaultCellBackgroundColour();
699 wxColour GetCellBackgroundColour( int row, int col );
700 wxColour GetDefaultCellTextColour();
701 wxColour GetCellTextColour( int row, int col );
f85afd4e
MB
702 wxFont GetDefaultCellFont();
703 wxFont GetCellFont( int row, int col );
704 void GetDefaultCellAlignment( int *horiz, int *vert );
705 void GetCellAlignment( int row, int col, int *horiz, int *vert );
60ff3b99 706
f85afd4e
MB
707 void SetDefaultRowSize( int height, bool resizeExistingRows = FALSE );
708 void SetRowSize( int row, int height );
709 void SetDefaultColSize( int width, bool resizeExistingCols = FALSE );
8fb66724 710
f85afd4e
MB
711 void SetColSize( int col, int width );
712 void SetDefaultCellBackgroundColour( const wxColour& );
713 void SetCellBackgroundColour( int row, int col, const wxColour& );
714 void SetDefaultCellTextColour( const wxColour& );
8fb66724 715
f85afd4e 716 void SetCellTextColour( int row, int col, const wxColour& );
f85afd4e
MB
717 void SetDefaultCellFont( const wxFont& );
718 void SetCellFont( int row, int col, const wxFont& );
719 void SetDefaultCellAlignment( int horiz, int vert );
720 void SetCellAlignment( int row, int col, int horiz, int vert );
721
ab79958a
VZ
722 // takes ownership of the pointer
723 void SetDefaultRenderer(wxGridCellRenderer *renderer)
724 { delete m_defaultRenderer; m_defaultRenderer = renderer; }
725 wxGridCellRenderer *GetDefaultRenderer() const
726 { return m_defaultRenderer; }
727
728 void SetCellRenderer(int row, int col, wxGridCellRenderer *renderer);
60a67569 729
f85afd4e
MB
730 // ------ cell value accessors
731 //
732 wxString GetCellValue( int row, int col )
733 {
734 if ( m_table )
735 {
736 return m_table->GetValue( row, col );
737 }
738 else
739 {
740 return wxEmptyString;
741 }
742 }
743
744 wxString GetCellValue( const wxGridCellCoords& coords )
745 { return GetCellValue( coords.GetRow(), coords.GetCol() ); }
60ff3b99 746
f85afd4e
MB
747 void SetCellValue( int row, int col, const wxString& s );
748 void SetCellValue( const wxGridCellCoords& coords, const wxString& s )
749 { SetCellValue( coords.GetRow(), coords.GetCol(), s ); }
f85afd4e 750
60ff3b99 751
f85afd4e
MB
752
753 // ------ selections of blocks of cells
754 //
755 void SelectRow( int row, bool addToSelected = FALSE );
756 void SelectCol( int col, bool addToSelected = FALSE );
60ff3b99 757
f85afd4e
MB
758 void SelectBlock( int topRow, int leftCol, int bottomRow, int rightCol );
759
760 void SelectBlock( const wxGridCellCoords& topLeft,
761 const wxGridCellCoords& bottomRight )
762 { SelectBlock( topLeft.GetRow(), topLeft.GetCol(),
763 bottomRight.GetRow(), bottomRight.GetCol() ); }
764
765 void SelectAll();
60ff3b99 766
f85afd4e
MB
767 bool IsSelection()
768 { return ( m_selectedTopLeft != wxGridNoCellCoords &&
769 m_selectedBottomRight != wxGridNoCellCoords );
770 }
771
772 void ClearSelection();
773
774 bool IsInSelection( int row, int col )
775 { return ( IsSelection() &&
776 row >= m_selectedTopLeft.GetRow() &&
777 col >= m_selectedTopLeft.GetCol() &&
778 row <= m_selectedBottomRight.GetRow() &&
779 col <= m_selectedBottomRight.GetCol() );
780 }
781
782 bool IsInSelection( const wxGridCellCoords& coords )
783 { return IsInSelection( coords.GetRow(), coords.GetCol() ); }
784
785 void GetSelection( int* topRow, int* leftCol, int* bottomRow, int* rightCol )
786 {
787 // these will all be -1 if there is no selected block
788 //
789 *topRow = m_selectedTopLeft.GetRow();
790 *leftCol = m_selectedTopLeft.GetCol();
791 *bottomRow = m_selectedBottomRight.GetRow();
792 *rightCol = m_selectedBottomRight.GetCol();
793 }
794
c3baf426
SN
795
796 // This function returns the rectangle that encloses the block of cells
797 // limited by TopLeft and BottomRight cell in device coords and clipped
798 // to the client size of the grid window.
799 //
58dd5b3b 800 wxRect BlockToDeviceRect( const wxGridCellCoords & topLeft,
b99be8fb 801 const wxGridCellCoords & bottomRight );
c3baf426 802
2d66e025
MB
803 // This function returns the rectangle that encloses the selected cells
804 // in device coords and clipped to the client size of the grid window.
f85afd4e 805 //
c3baf426
SN
806 wxRect SelectionToDeviceRect()
807 {
b99be8fb
VZ
808 return BlockToDeviceRect( m_selectedTopLeft,
809 m_selectedBottomRight );
810 }
60ff3b99 811
f85afd4e
MB
812
813 // ------ For compatibility with previous wxGrid only...
814 //
815 // ************************************************
816 // ** Don't use these in new code because they **
817 // ** are liable to disappear in a future **
818 // ** revision **
819 // ************************************************
820 //
821
822 wxGrid( wxWindow *parent,
823 int x = -1, int y = -1, int w = -1, int h = -1,
824 long style = 0,
825 const wxString& name = wxPanelNameStr )
2d66e025 826 : wxScrolledWindow( parent, -1, wxPoint(x,y), wxSize(w,h), style, name )
60ff3b99 827 {
f85afd4e 828 Create();
60ff3b99 829 }
f85afd4e
MB
830
831 void SetCellValue( const wxString& val, int row, int col )
832 { SetCellValue( row, col, val ); }
60ff3b99 833
f85afd4e
MB
834 void UpdateDimensions()
835 { CalcDimensions(); }
836
837 int GetRows() { return GetNumberRows(); }
838 int GetCols() { return GetNumberCols(); }
839 int GetCursorRow() { return GetGridCursorRow(); }
840 int GetCursorColumn() { return GetGridCursorCol(); }
60ff3b99 841
2d66e025
MB
842 int GetScrollPosX() { return 0; }
843 int GetScrollPosY() { return 0; }
60ff3b99 844
2d66e025
MB
845 void SetScrollX( int x ) { }
846 void SetScrollY( int y ) { }
f85afd4e
MB
847
848 void SetColumnWidth( int col, int width )
849 { SetColSize( col, width ); }
60ff3b99 850
f85afd4e
MB
851 int GetColumnWidth( int col )
852 { return GetColSize( col ); }
60ff3b99 853
f85afd4e
MB
854 void SetRowHeight( int row, int height )
855 { SetRowSize( row, height ); }
60ff3b99 856
f85afd4e
MB
857 int GetRowHeight( int row )
858 { return GetRowSize( row ); }
60ff3b99 859
2d66e025
MB
860 int GetViewHeight() // returned num whole rows visible
861 { return 0; }
60ff3b99 862
2d66e025
MB
863 int GetViewWidth() // returned num whole cols visible
864 { return 0; }
f85afd4e
MB
865
866 void SetLabelSize( int orientation, int sz )
867 {
868 if ( orientation == wxHORIZONTAL )
869 SetColLabelSize( sz );
870 else
871 SetRowLabelSize( sz );
872 }
873
874 int GetLabelSize( int orientation )
875 {
876 if ( orientation == wxHORIZONTAL )
877 return GetColLabelSize();
878 else
879 return GetRowLabelSize();
880 }
881
882 void SetLabelAlignment( int orientation, int align )
883 {
884 if ( orientation == wxHORIZONTAL )
885 SetColLabelAlignment( align, -1 );
886 else
887 SetRowLabelAlignment( align, -1 );
888 }
889
af111fc3 890 int GetLabelAlignment( int orientation, int WXUNUSED(align) )
f85afd4e
MB
891 {
892 int h, v;
893 if ( orientation == wxHORIZONTAL )
894 {
895 GetColLabelAlignment( &h, &v );
896 return h;
897 }
898 else
899 {
900 GetRowLabelAlignment( &h, &v );
901 return h;
902 }
903 }
904
905 void SetLabelValue( int orientation, const wxString& val, int pos )
906 {
907 if ( orientation == wxHORIZONTAL )
908 SetColLabelValue( pos, val );
909 else
910 SetRowLabelValue( pos, val );
911 }
60ff3b99 912
f85afd4e
MB
913 wxString GetLabelValue( int orientation, int pos)
914 {
915 if ( orientation == wxHORIZONTAL )
916 return GetColLabelValue( pos );
917 else
918 return GetRowLabelValue( pos );
919 }
920
60ff3b99 921 wxFont GetCellTextFont() const
f85afd4e 922 { return m_defaultCellFont; }
60ff3b99 923
af111fc3 924 wxFont GetCellTextFont(int WXUNUSED(row), int WXUNUSED(col)) const
f85afd4e 925 { return m_defaultCellFont; }
60ff3b99 926
f85afd4e
MB
927 void SetCellTextFont(const wxFont& fnt)
928 { SetDefaultCellFont( fnt ); }
60ff3b99 929
f85afd4e
MB
930 void SetCellTextFont(const wxFont& fnt, int row, int col)
931 { SetCellFont( row, col, fnt ); }
60ff3b99 932
f85afd4e
MB
933 void SetCellTextColour(const wxColour& val, int row, int col)
934 { SetCellTextColour( row, col, val ); }
60ff3b99 935
f85afd4e
MB
936 void SetCellTextColour(const wxColour& col)
937 { SetDefaultCellTextColour( col ); }
60ff3b99 938
f85afd4e
MB
939 void SetCellBackgroundColour(const wxColour& col)
940 { SetDefaultCellBackgroundColour( col ); }
60ff3b99 941
f85afd4e
MB
942 void SetCellBackgroundColour(const wxColour& colour, int row, int col)
943 { SetCellBackgroundColour( row, col, colour ); }
60ff3b99 944
f85afd4e
MB
945 bool GetEditable() { return IsEditable(); }
946 void SetEditable( bool edit = TRUE ) { EnableEditing( edit ); }
947 bool GetEditInPlace() { return IsCellEditControlEnabled(); }
8fb66724 948
1f1ce288 949 void SetEditInPlace(bool edit = TRUE) { }
f85afd4e 950
60a67569
JS
951 void SetCellAlignment( int align, int row, int col)
952 { SetCellAlignment(row, col, align, wxCENTER); }
953 void SetCellAlignment( int WXUNUSED(align) ) {}
954 void SetCellBitmap(wxBitmap *WXUNUSED(bitmap), int WXUNUSED(row), int WXUNUSED(col))
955 { }
956 void SetDividerPen(const wxPen& WXUNUSED(pen)) { }
957 wxPen& GetDividerPen() const { return wxNullPen; }
958 void OnActivate(bool WXUNUSED(active)) {}
60ff3b99 959
f85afd4e
MB
960 // ******** End of compatibility functions **********
961
2d66e025
MB
962
963
f85afd4e 964 // ------ control IDs
2d66e025 965 enum { wxGRID_CELLCTRL = 2000,
f85afd4e
MB
966 wxGRID_TOPCTRL };
967
968 // ------ control types
2d66e025 969 enum { wxGRID_TEXTCTRL = 2100,
f85afd4e
MB
970 wxGRID_CHECKBOX,
971 wxGRID_CHOICE,
972 wxGRID_COMBOBOX };
973
60ff3b99
VZ
974protected:
975 bool m_created;
4634a5d6 976 bool m_displayed;
60ff3b99
VZ
977
978 wxGridWindow *m_gridWin;
979 wxGridRowLabelWindow *m_rowLabelWin;
980 wxGridColLabelWindow *m_colLabelWin;
981 wxGridCornerLabelWindow *m_cornerLabelWin;
982
60ff3b99
VZ
983 wxGridTableBase *m_table;
984
985 int m_left;
986 int m_top;
987 int m_right;
988 int m_bottom;
989
990 int m_numRows;
991 int m_numCols;
992
993 wxGridCellCoords m_currentCellCoords;
994
995 wxGridCellCoords m_selectedTopLeft;
996 wxGridCellCoords m_selectedBottomRight;
997
998 int m_defaultRowHeight;
999 wxArrayInt m_rowHeights;
1000 wxArrayInt m_rowBottoms;
1001
1002 int m_defaultColWidth;
1003 wxArrayInt m_colWidths;
1004 wxArrayInt m_colRights;
1005
1006 int m_rowLabelWidth;
1007 int m_colLabelHeight;
1008
1009 wxColour m_labelBackgroundColour;
1010 wxColour m_labelTextColour;
1011 wxFont m_labelFont;
1012
1013 int m_rowLabelHorizAlign;
1014 int m_rowLabelVertAlign;
1015 int m_colLabelHorizAlign;
1016 int m_colLabelVertAlign;
1017
1018 bool m_defaultRowLabelValues;
1019 bool m_defaultColLabelValues;
1020
1021 wxColour m_gridLineColour;
1022 bool m_gridLinesEnabled;
1023
ab79958a
VZ
1024 // get the renderer for the given cell - if it has no special one, the
1025 // default one will be returned, never NULL
1026 wxGridCellRenderer *GetCellRenderer(int row, int col);
1027
1028 wxGridCellRenderer *m_defaultRenderer;
1029
b99be8fb 1030 // default cell attributes
60ff3b99 1031 wxFont m_defaultCellFont;
b99be8fb
VZ
1032 int m_defaultCellHAlign,
1033 m_defaultCellVAlign;
1034
1035 // do we have some place to store attributes in?
1036 bool CanHaveAttributes();
60ff3b99 1037
2e9a6788
VZ
1038 // returns the attribute we may modify in place: a new one if this cell
1039 // doesn't have any yet or the existing one if it does
1040 //
1041 // DecRef() must be called on the returned pointer, as usual
0a976765
VZ
1042 wxGridCellAttr *GetOrCreateCellAttr(int row, int col) const;
1043
1044 // cell attribute cache (currently we only cache 1, may be will do
1045 // more/better later)
1046 struct CachedAttr
1047 {
1048 int row, col;
1049 wxGridCellAttr *attr;
1050 } m_attrCache;
1051
1052 // invalidates the attribute cache
1053 void ClearAttrCache();
1054
1055 // adds an attribute to cache
1056 void CacheAttr(int row, int col, wxGridCellAttr *attr) const;
1057
1058 // looks for an attr in cache, returns TRUE if found
1059 bool LookupAttr(int row, int col, wxGridCellAttr **attr) const;
1060
1061 // looks for the attr in cache, if not found asks the table and caches the
1062 // result
2e9a6788
VZ
1063 wxGridCellAttr *GetCellAttr(int row, int col) const;
1064
60ff3b99
VZ
1065 wxGridCellCoordsArray m_cellsExposed;
1066 wxArrayInt m_rowsExposed;
1067 wxArrayInt m_colsExposed;
1068 wxArrayInt m_rowLabelsExposed;
1069 wxArrayInt m_colLabelsExposed;
1070
1071 bool m_inOnKeyDown;
1072 int m_batchCount;
1073
e2b42eeb
VZ
1074 enum CursorMode
1075 {
1076 WXGRID_CURSOR_SELECT_CELL,
1077 WXGRID_CURSOR_RESIZE_ROW,
1078 WXGRID_CURSOR_RESIZE_COL,
1079 WXGRID_CURSOR_SELECT_ROW,
1080 WXGRID_CURSOR_SELECT_COL
60ff3b99
VZ
1081 };
1082
e2b42eeb
VZ
1083 // this method not only sets m_cursorMode but also sets the correct cursor
1084 // for the given mode and, if captureMouse is not FALSE releases the mouse
1085 // if it was captured and captures it if it must be captured
1086 //
1087 // for this to work, you should always use it and not set m_cursorMode
1088 // directly!
1089 void ChangeCursorMode(CursorMode mode,
1090 wxWindow *win = (wxWindow *)NULL,
1091 bool captureMouse = TRUE);
1092
1093 wxWindow *m_winCapture; // the window which captured the mouse
1094 CursorMode m_cursorMode;
1095
60ff3b99
VZ
1096 int m_dragLastPos;
1097 int m_dragRowOrCol;
1098 bool m_isDragging;
1099
1100 wxGridCellCoords m_selectionStart;
1101
1102 wxCursor m_rowResizeCursor;
1103 wxCursor m_colResizeCursor;
1104
1105 bool m_editable; // applies to whole grid
1106 int m_editCtrlType; // for current cell
1107 wxWindow* m_cellEditCtrl;
1108 bool m_cellEditCtrlEnabled;
1109
1110
1111 void Create();
1112 void Init();
1113 void CalcDimensions();
7807d81c 1114 void CalcWindowSizes();
60ff3b99
VZ
1115 bool Redimension( wxGridTableMessage& );
1116
1117
1118 bool SendEvent( const wxEventType,
1119 int row, int col,
1120 wxMouseEvent& );
1121
1122 bool SendEvent( const wxEventType,
1123 int row, int col );
1124
1125
1126 void OnPaint( wxPaintEvent& );
1127 void OnSize( wxSizeEvent& );
1128 void OnKeyDown( wxKeyEvent& );
1129
1130
1131 void SetCurrentCell( const wxGridCellCoords& coords );
1132 void SetCurrentCell( int row, int col )
1133 { SetCurrentCell( wxGridCellCoords(row, col) ); }
1134
1135
1136 // ------ functions to get/send data (see also public functions)
1137 //
1138 bool GetModelValues();
1139 bool SetModelValues();
1140
1141
2d66e025 1142 DECLARE_DYNAMIC_CLASS( wxGrid )
f85afd4e
MB
1143 DECLARE_EVENT_TABLE()
1144};
1145
1146
1147
1148
1149
1150//
1151// ------ Grid event class and event types
1152//
1153
1154class WXDLLEXPORT wxGridEvent : public wxNotifyEvent
1155{
60ff3b99 1156public:
f85afd4e
MB
1157 wxGridEvent()
1158 : wxNotifyEvent(), m_row(-1), m_col(-1), m_x(-1), m_y(-1),
1159 m_control(0), m_meta(0), m_shift(0), m_alt(0)
1160 {
1161 }
1162
1163 wxGridEvent(int id, wxEventType type, wxObject* obj,
1164 int row=-1, int col=-1, int x=-1, int y=-1,
1165 bool control=FALSE, bool shift=FALSE, bool alt=FALSE, bool meta=FALSE);
1166
1167 virtual int GetRow() { return m_row; }
1168 virtual int GetCol() { return m_col; }
1169 wxPoint GetPosition() { return wxPoint( m_x, m_y ); }
1170 bool ControlDown() { return m_control; }
1171 bool MetaDown() { return m_meta; }
1172 bool ShiftDown() { return m_shift; }
1173 bool AltDown() { return m_alt; }
2d66e025 1174
60ff3b99
VZ
1175protected:
1176 int m_row;
1177 int m_col;
f85afd4e
MB
1178 int m_x;
1179 int m_y;
1180 bool m_control;
1181 bool m_meta;
1182 bool m_shift;
1183 bool m_alt;
60ff3b99
VZ
1184
1185 DECLARE_DYNAMIC_CLASS(wxGridEvent)
1186};
1187
1188
1189class WXDLLEXPORT wxGridSizeEvent : public wxNotifyEvent
1190{
1191public:
f85afd4e
MB
1192 wxGridSizeEvent()
1193 : wxNotifyEvent(), m_rowOrCol(-1), m_x(-1), m_y(-1),
1194 m_control(0), m_meta(0), m_shift(0), m_alt(0)
1195 {
1196 }
1197
1198 wxGridSizeEvent(int id, wxEventType type, wxObject* obj,
1199 int rowOrCol=-1, int x=-1, int y=-1,
1200 bool control=FALSE, bool shift=FALSE, bool alt=FALSE, bool meta=FALSE);
1201
1202 int GetRowOrCol() { return m_rowOrCol; }
1203 wxPoint GetPosition() { return wxPoint( m_x, m_y ); }
1204 bool ControlDown() { return m_control; }
1205 bool MetaDown() { return m_meta; }
1206 bool ShiftDown() { return m_shift; }
1207 bool AltDown() { return m_alt; }
2d66e025 1208
60ff3b99
VZ
1209protected:
1210 int m_rowOrCol;
1211 int m_x;
1212 int m_y;
1213 bool m_control;
1214 bool m_meta;
1215 bool m_shift;
1216 bool m_alt;
1217
2d66e025 1218 DECLARE_DYNAMIC_CLASS(wxGridSizeEvent)
f85afd4e
MB
1219};
1220
1221
1222class WXDLLEXPORT wxGridRangeSelectEvent : public wxNotifyEvent
1223{
60ff3b99 1224public:
f85afd4e 1225 wxGridRangeSelectEvent()
60ff3b99
VZ
1226 : wxNotifyEvent()
1227 {
1228 m_topLeft = wxGridNoCellCoords;
1229 m_bottomRight = wxGridNoCellCoords;
1230 m_control = FALSE;
1231 m_meta = FALSE;
1232 m_shift = FALSE;
1233 m_alt = FALSE;
1234 }
f85afd4e
MB
1235
1236 wxGridRangeSelectEvent(int id, wxEventType type, wxObject* obj,
60ff3b99
VZ
1237 const wxGridCellCoords& topLeft,
1238 const wxGridCellCoords& bottomRight,
1239 bool control=FALSE, bool shift=FALSE,
1240 bool alt=FALSE, bool meta=FALSE);
f85afd4e
MB
1241
1242 wxGridCellCoords GetTopLeftCoords() { return m_topLeft; }
1243 wxGridCellCoords GetBottomRightCoords() { return m_bottomRight; }
1244 int GetTopRow() { return m_topLeft.GetRow(); }
1245 int GetBottomRow() { return m_bottomRight.GetRow(); }
1246 int GetLeftCol() { return m_topLeft.GetCol(); }
1247 int GetRightCol() { return m_bottomRight.GetCol(); }
1248 bool ControlDown() { return m_control; }
1249 bool MetaDown() { return m_meta; }
1250 bool ShiftDown() { return m_shift; }
1251 bool AltDown() { return m_alt; }
2d66e025 1252
60ff3b99
VZ
1253protected:
1254 wxGridCellCoords m_topLeft;
1255 wxGridCellCoords m_bottomRight;
1256 bool m_control;
1257 bool m_meta;
1258 bool m_shift;
1259 bool m_alt;
1260
2d66e025 1261 DECLARE_DYNAMIC_CLASS(wxGridRangeSelectEvent)
f85afd4e
MB
1262};
1263
1264
b5f788a5
MB
1265const wxEventType EVT_GRID_CELL_LEFT_CLICK = wxEVT_FIRST + 1580;
1266const wxEventType EVT_GRID_CELL_RIGHT_CLICK = wxEVT_FIRST + 1581;
1267const wxEventType EVT_GRID_CELL_LEFT_DCLICK = wxEVT_FIRST + 1582;
1268const wxEventType EVT_GRID_CELL_RIGHT_DCLICK = wxEVT_FIRST + 1583;
1269const wxEventType EVT_GRID_LABEL_LEFT_CLICK = wxEVT_FIRST + 1584;
1270const wxEventType EVT_GRID_LABEL_RIGHT_CLICK = wxEVT_FIRST + 1585;
1271const wxEventType EVT_GRID_LABEL_LEFT_DCLICK = wxEVT_FIRST + 1586;
1272const wxEventType EVT_GRID_LABEL_RIGHT_DCLICK = wxEVT_FIRST + 1587;
1273const wxEventType EVT_GRID_ROW_SIZE = wxEVT_FIRST + 1588;
1274const wxEventType EVT_GRID_COL_SIZE = wxEVT_FIRST + 1589;
1275const wxEventType EVT_GRID_RANGE_SELECT = wxEVT_FIRST + 1590;
1276const wxEventType EVT_GRID_CELL_CHANGE = wxEVT_FIRST + 1591;
749692cc
MB
1277const wxEventType EVT_GRID_SELECT_CELL = wxEVT_FIRST + 1592;
1278
f85afd4e
MB
1279
1280typedef void (wxEvtHandler::*wxGridEventFunction)(wxGridEvent&);
1281typedef void (wxEvtHandler::*wxGridSizeEventFunction)(wxGridSizeEvent&);
1282typedef void (wxEvtHandler::*wxGridRangeSelectEventFunction)(wxGridRangeSelectEvent&);
1283
b5f788a5
MB
1284#define EVT_GRID_CELL_LEFT_CLICK(fn) { EVT_GRID_CELL_LEFT_CLICK, -1, -1, (wxObjectEventFunction) (wxEventFunction) (wxGridEventFunction) &fn, NULL },
1285#define EVT_GRID_CELL_RIGHT_CLICK(fn) { EVT_GRID_CELL_RIGHT_CLICK, -1, -1, (wxObjectEventFunction) (wxEventFunction) (wxGridEventFunction) &fn, NULL },
1286#define EVT_GRID_CELL_LEFT_DCLICK(fn) { EVT_GRID_CELL_LEFT_DCLICK, -1, -1, (wxObjectEventFunction) (wxEventFunction) (wxGridEventFunction) &fn, NULL },
1287#define EVT_GRID_CELL_RIGHT_DCLICK(fn) { EVT_GRID_CELL_RIGHT_DCLICK, -1, -1, (wxObjectEventFunction) (wxEventFunction) (wxGridEventFunction) &fn, NULL },
1288#define EVT_GRID_LABEL_LEFT_CLICK(fn) { EVT_GRID_LABEL_LEFT_CLICK, -1, -1, (wxObjectEventFunction) (wxEventFunction) (wxGridEventFunction) &fn, NULL },
1289#define EVT_GRID_LABEL_RIGHT_CLICK(fn) { EVT_GRID_LABEL_RIGHT_CLICK, -1, -1, (wxObjectEventFunction) (wxEventFunction) (wxGridEventFunction) &fn, NULL },
1290#define EVT_GRID_LABEL_LEFT_DCLICK(fn) { EVT_GRID_LABEL_LEFT_DCLICK, -1, -1, (wxObjectEventFunction) (wxEventFunction) (wxGridEventFunction) &fn, NULL },
1291#define EVT_GRID_LABEL_RIGHT_DCLICK(fn) { EVT_GRID_LABEL_RIGHT_DCLICK, -1, -1, (wxObjectEventFunction) (wxEventFunction) (wxGridEventFunction) &fn, NULL },
1292#define EVT_GRID_ROW_SIZE(fn) { EVT_GRID_ROW_SIZE, -1, -1, (wxObjectEventFunction) (wxEventFunction) (wxGridSizeEventFunction) &fn, NULL },
1293#define EVT_GRID_COL_SIZE(fn) { EVT_GRID_COL_SIZE, -1, -1, (wxObjectEventFunction) (wxEventFunction) (wxGridSizeEventFunction) &fn, NULL },
1294#define EVT_GRID_RANGE_SELECT(fn) { EVT_GRID_RANGE_SELECT, -1, -1, (wxObjectEventFunction) (wxEventFunction) (wxGridRangeSelectEventFunction) &fn, NULL },
60ff3b99 1295#define EVT_GRID_CELL_CHANGE(fn) { EVT_GRID_CELL_CHANGE, -1, -1, (wxObjectEventFunction) (wxEventFunction) (wxGridEventFunction) &fn, NULL },
749692cc 1296#define EVT_GRID_SELECT_CELL(fn) { EVT_GRID_SELECT_CELL, -1, -1, (wxObjectEventFunction) (wxEventFunction) (wxGridEventFunction) &fn, NULL },
f85afd4e
MB
1297
1298
1299#if 0 // TODO: implement these ? others ?
1300
b5f788a5
MB
1301const wxEventType EVT_GRID_CREATE_CELL = wxEVT_FIRST + 1576;
1302const wxEventType EVT_GRID_CHANGE_LABELS = wxEVT_FIRST + 1577;
1303const wxEventType EVT_GRID_CHANGE_SEL_LABEL = wxEVT_FIRST + 1578;
f85afd4e 1304
b5f788a5
MB
1305#define EVT_GRID_CREATE_CELL(fn) { EVT_GRID_CREATE_CELL, -1, -1, (wxObjectEventFunction) (wxEventFunction) (wxGridEventFunction) &fn, NULL },
1306#define EVT_GRID_CHANGE_LABELS(fn) { EVT_GRID_CHANGE_LABELS, -1, -1, (wxObjectEventFunction) (wxEventFunction) (wxGridEventFunction) &fn, NULL },
1307#define EVT_GRID_CHANGE_SEL_LABEL(fn) { EVT_GRID_CHANGE_SEL_LABEL, -1, -1, (wxObjectEventFunction) (wxEventFunction) (wxGridEventFunction) &fn, NULL },
f85afd4e
MB
1308
1309#endif
1310
1311#endif // #ifndef __WXGRID_H__
1312
1313#endif // ifndef wxUSE_NEW_GRID
8fb66724 1314