]> git.saurik.com Git - wxWidgets.git/blame - include/wx/generic/grid.h
Fix scrolling bug where client size was reported wrong
[wxWidgets.git] / include / wx / generic / grid.h
CommitLineData
f85afd4e 1/////////////////////////////////////////////////////////////////////////////
43947979 2// Name: wx/generic/grid.h
f85afd4e
MB
3// Purpose: wxGrid and related classes
4// Author: Michael Bedward (based on code by Julian Smart, Robin Dunn)
d4175745 5// Modified by: Santiago Palacios
f85afd4e
MB
6// Created: 1/08/1999
7// RCS-ID: $Id$
8// Copyright: (c) Michael Bedward
65571936 9// Licence: wxWindows licence
f85afd4e
MB
10/////////////////////////////////////////////////////////////////////////////
11
f85afd4e
MB
12#ifndef __WXGRID_H__
13#define __WXGRID_H__
14
ba8c1601 15#include "wx/hashmap.h"
f85afd4e 16#include "wx/panel.h"
2d66e025 17#include "wx/scrolwin.h"
f85afd4e 18#include "wx/string.h"
2da2f941 19#include "wx/arrstr.h"
f85afd4e
MB
20#include "wx/scrolbar.h"
21#include "wx/event.h"
f85afd4e
MB
22#include "wx/combobox.h"
23#include "wx/dynarray.h"
025562fe 24#include "wx/timer.h"
afbd598c 25#include "wx/clntdata.h"
f85afd4e 26
816be743
VZ
27// ----------------------------------------------------------------------------
28// constants
29// ----------------------------------------------------------------------------
30
f85afd4e
MB
31// Default parameters for wxGrid
32//
33#define WXGRID_DEFAULT_NUMBER_ROWS 10
34#define WXGRID_DEFAULT_NUMBER_COLS 10
35#ifdef __WXMSW__
36#define WXGRID_DEFAULT_ROW_HEIGHT 25
37#else
38#define WXGRID_DEFAULT_ROW_HEIGHT 30
39#endif // __WXMSW__
40#define WXGRID_DEFAULT_COL_WIDTH 80
41#define WXGRID_DEFAULT_COL_LABEL_HEIGHT 32
42#define WXGRID_DEFAULT_ROW_LABEL_WIDTH 82
f1567cdd 43#define WXGRID_LABEL_EDGE_ZONE 2
f85afd4e
MB
44#define WXGRID_MIN_ROW_HEIGHT 15
45#define WXGRID_MIN_COL_WIDTH 15
46#define WXGRID_DEFAULT_SCROLLBAR_WIDTH 16
f85afd4e 47
816be743
VZ
48// type names for grid table values
49#define wxGRID_VALUE_STRING _T("string")
50#define wxGRID_VALUE_BOOL _T("bool")
51#define wxGRID_VALUE_NUMBER _T("long")
52#define wxGRID_VALUE_FLOAT _T("double")
c4608a8a 53#define wxGRID_VALUE_CHOICE _T("choice")
816be743
VZ
54
55#define wxGRID_VALUE_TEXT wxGRID_VALUE_STRING
56#define wxGRID_VALUE_LONG wxGRID_VALUE_NUMBER
57
b99be8fb
VZ
58// ----------------------------------------------------------------------------
59// forward declarations
60// ----------------------------------------------------------------------------
61
12f190b0
VS
62class WXDLLIMPEXP_ADV wxGrid;
63class WXDLLIMPEXP_ADV wxGridCellAttr;
64class WXDLLIMPEXP_ADV wxGridCellAttrProviderData;
65class WXDLLIMPEXP_ADV wxGridColLabelWindow;
66class WXDLLIMPEXP_ADV wxGridCornerLabelWindow;
67class WXDLLIMPEXP_ADV wxGridRowLabelWindow;
68class WXDLLIMPEXP_ADV wxGridTableBase;
69class WXDLLIMPEXP_ADV wxGridWindow;
70class WXDLLIMPEXP_ADV wxGridTypeRegistry;
71class WXDLLIMPEXP_ADV wxGridSelection;
ab79958a 72
508011ce 73class WXDLLEXPORT wxCheckBox;
4ee5fc9c 74class WXDLLEXPORT wxComboBox;
508011ce 75class WXDLLEXPORT wxTextCtrl;
0e871ad0 76#if wxUSE_SPINCTRL
816be743 77class WXDLLEXPORT wxSpinCtrl;
0e871ad0 78#endif
508011ce 79
39bcce60
VZ
80// ----------------------------------------------------------------------------
81// macros
82// ----------------------------------------------------------------------------
83
84#define wxSafeIncRef(p) if ( p ) (p)->IncRef()
85#define wxSafeDecRef(p) if ( p ) (p)->DecRef()
86
ab79958a 87// ----------------------------------------------------------------------------
c4608a8a
VZ
88// wxGridCellWorker: common base class for wxGridCellRenderer and
89// wxGridCellEditor
90//
91// NB: this is more an implementation convenience than a design issue, so this
92// class is not documented and is not public at all
ab79958a
VZ
93// ----------------------------------------------------------------------------
94
12f190b0 95class WXDLLIMPEXP_ADV wxGridCellWorker : public wxClientDataContainer
ab79958a
VZ
96{
97public:
c4608a8a 98 wxGridCellWorker() { m_nRef = 1; }
39bcce60
VZ
99
100 // this class is ref counted: it is created with ref count of 1, so
101 // calling DecRef() once will delete it. Calling IncRef() allows to lock
102 // it until the matching DecRef() is called
103 void IncRef() { m_nRef++; }
8d7eaf91 104 void DecRef() { if ( --m_nRef == 0 ) delete this; }
39bcce60 105
c4608a8a
VZ
106 // interpret renderer parameters: arbitrary string whose interpretatin is
107 // left to the derived classes
108 virtual void SetParameters(const wxString& params);
109
110protected:
111 // virtual dtor for any base class - private because only DecRef() can
112 // delete us
113 virtual ~wxGridCellWorker();
114
115private:
116 size_t m_nRef;
117
118 // suppress the stupid gcc warning about the class having private dtor and
119 // no friends
120 friend class wxGridCellWorkerDummyFriend;
121};
122
123// ----------------------------------------------------------------------------
124// wxGridCellRenderer: this class is responsible for actually drawing the cell
125// in the grid. You may pass it to the wxGridCellAttr (below) to change the
126// format of one given cell or to wxGrid::SetDefaultRenderer() to change the
127// view of all cells. This is an ABC, you will normally use one of the
128// predefined derived classes or derive your own class from it.
129// ----------------------------------------------------------------------------
130
12f190b0 131class WXDLLIMPEXP_ADV wxGridCellRenderer : public wxGridCellWorker
c4608a8a
VZ
132{
133public:
ab79958a
VZ
134 // draw the given cell on the provided DC inside the given rectangle
135 // using the style specified by the attribute and the default or selected
136 // state corresponding to the isSelected value.
137 //
138 // this pure virtual function has a default implementation which will
139 // prepare the DC using the given attribute: it will draw the rectangle
140 // with the bg colour from attr and set the text colour and font
141 virtual void Draw(wxGrid& grid,
2796cce3 142 wxGridCellAttr& attr,
ab79958a
VZ
143 wxDC& dc,
144 const wxRect& rect,
145 int row, int col,
146 bool isSelected) = 0;
816be743 147
65e4e78e
VZ
148 // get the preferred size of the cell for its contents
149 virtual wxSize GetBestSize(wxGrid& grid,
150 wxGridCellAttr& attr,
151 wxDC& dc,
152 int row, int col) = 0;
153
e72b4213
VZ
154 // create a new object which is the copy of this one
155 virtual wxGridCellRenderer *Clone() const = 0;
ab79958a
VZ
156};
157
158// the default renderer for the cells containing string data
12f190b0 159class WXDLLIMPEXP_ADV wxGridCellStringRenderer : public wxGridCellRenderer
ab79958a
VZ
160{
161public:
162 // draw the string
163 virtual void Draw(wxGrid& grid,
2796cce3 164 wxGridCellAttr& attr,
ab79958a
VZ
165 wxDC& dc,
166 const wxRect& rect,
167 int row, int col,
168 bool isSelected);
816be743 169
65e4e78e
VZ
170 // return the string extent
171 virtual wxSize GetBestSize(wxGrid& grid,
172 wxGridCellAttr& attr,
173 wxDC& dc,
174 int row, int col);
175
e72b4213
VZ
176 virtual wxGridCellRenderer *Clone() const
177 { return new wxGridCellStringRenderer; }
178
816be743
VZ
179protected:
180 // set the text colours before drawing
fbfb8bcc
VZ
181 void SetTextColoursAndFont(const wxGrid& grid,
182 const wxGridCellAttr& attr,
816be743
VZ
183 wxDC& dc,
184 bool isSelected);
65e4e78e
VZ
185
186 // calc the string extent for given string/font
fbfb8bcc 187 wxSize DoGetBestSize(const wxGridCellAttr& attr,
65e4e78e
VZ
188 wxDC& dc,
189 const wxString& text);
816be743
VZ
190};
191
192// the default renderer for the cells containing numeric (long) data
12f190b0 193class WXDLLIMPEXP_ADV wxGridCellNumberRenderer : public wxGridCellStringRenderer
816be743
VZ
194{
195public:
196 // draw the string right aligned
197 virtual void Draw(wxGrid& grid,
198 wxGridCellAttr& attr,
199 wxDC& dc,
200 const wxRect& rect,
201 int row, int col,
202 bool isSelected);
65e4e78e
VZ
203
204 virtual wxSize GetBestSize(wxGrid& grid,
205 wxGridCellAttr& attr,
206 wxDC& dc,
207 int row, int col);
208
e72b4213
VZ
209 virtual wxGridCellRenderer *Clone() const
210 { return new wxGridCellNumberRenderer; }
211
65e4e78e 212protected:
fbfb8bcc 213 wxString GetString(const wxGrid& grid, int row, int col);
816be743
VZ
214};
215
12f190b0 216class WXDLLIMPEXP_ADV wxGridCellFloatRenderer : public wxGridCellStringRenderer
816be743
VZ
217{
218public:
0b190b0f 219 wxGridCellFloatRenderer(int width = -1, int precision = -1);
816be743
VZ
220
221 // get/change formatting parameters
222 int GetWidth() const { return m_width; }
0b190b0f 223 void SetWidth(int width) { m_width = width; m_format.clear(); }
816be743 224 int GetPrecision() const { return m_precision; }
0b190b0f 225 void SetPrecision(int precision) { m_precision = precision; m_format.clear(); }
816be743
VZ
226
227 // draw the string right aligned with given width/precision
228 virtual void Draw(wxGrid& grid,
229 wxGridCellAttr& attr,
230 wxDC& dc,
231 const wxRect& rect,
232 int row, int col,
233 bool isSelected);
234
65e4e78e
VZ
235 virtual wxSize GetBestSize(wxGrid& grid,
236 wxGridCellAttr& attr,
237 wxDC& dc,
238 int row, int col);
0b190b0f
VZ
239
240 // parameters string format is "width[,precision]"
241 virtual void SetParameters(const wxString& params);
242
e72b4213
VZ
243 virtual wxGridCellRenderer *Clone() const;
244
65e4e78e 245protected:
fbfb8bcc 246 wxString GetString(const wxGrid& grid, int row, int col);
65e4e78e 247
816be743
VZ
248private:
249 // formatting parameters
250 int m_width,
0b190b0f 251 m_precision;
816be743
VZ
252
253 wxString m_format;
ab79958a 254};
f85afd4e 255
508011ce 256// renderer for boolean fields
12f190b0 257class WXDLLIMPEXP_ADV wxGridCellBoolRenderer : public wxGridCellRenderer
508011ce
VZ
258{
259public:
508011ce
VZ
260 // draw a check mark or nothing
261 virtual void Draw(wxGrid& grid,
262 wxGridCellAttr& attr,
263 wxDC& dc,
264 const wxRect& rect,
265 int row, int col,
266 bool isSelected);
65e4e78e
VZ
267
268 // return the checkmark size
269 virtual wxSize GetBestSize(wxGrid& grid,
270 wxGridCellAttr& attr,
271 wxDC& dc,
272 int row, int col);
273
e72b4213
VZ
274 virtual wxGridCellRenderer *Clone() const
275 { return new wxGridCellBoolRenderer; }
276
65e4e78e
VZ
277private:
278 static wxSize ms_sizeCheckMark;
508011ce 279};
2796cce3
RD
280
281// ----------------------------------------------------------------------------
282// wxGridCellEditor: This class is responsible for providing and manipulating
283// the in-place edit controls for the grid. Instances of wxGridCellEditor
284// (actually, instances of derived classes since it is an ABC) can be
285// associated with the cell attributes for individual cells, rows, columns, or
286// even for the entire grid.
287// ----------------------------------------------------------------------------
288
12f190b0 289class WXDLLIMPEXP_ADV wxGridCellEditor : public wxGridCellWorker
2796cce3
RD
290{
291public:
292 wxGridCellEditor();
39bcce60 293
2796cce3 294 bool IsCreated() { return m_control != NULL; }
f6bcfd97
BP
295 wxControl* GetControl() { return m_control; }
296 void SetControl(wxControl* control) { m_control = control; }
2796cce3 297
1bd71df9
JS
298 wxGridCellAttr* GetCellAttr() { return m_attr; }
299 void SetCellAttr(wxGridCellAttr* attr) { m_attr = attr; }
300
2796cce3
RD
301 // Creates the actual edit control
302 virtual void Create(wxWindow* parent,
303 wxWindowID id,
2796cce3
RD
304 wxEvtHandler* evtHandler) = 0;
305
306 // Size and position the edit control
307 virtual void SetSize(const wxRect& rect);
308
3da93aae
VZ
309 // Show or hide the edit control, use the specified attributes to set
310 // colours/fonts for it
311 virtual void Show(bool show, wxGridCellAttr *attr = (wxGridCellAttr *)NULL);
2796cce3 312
189d0213
VZ
313 // Draws the part of the cell not occupied by the control: the base class
314 // version just fills it with background colour from the attribute
315 virtual void PaintBackground(const wxRect& rectCell, wxGridCellAttr *attr);
316
2796cce3
RD
317 // Fetch the value from the table and prepare the edit control
318 // to begin editing. Set the focus to the edit control.
3da93aae 319 virtual void BeginEdit(int row, int col, wxGrid* grid) = 0;
2796cce3 320
3324d5f5
VZ
321 // Complete the editing of the current cell. Returns true if the value has
322 // changed. If necessary, the control may be destroyed.
323 virtual bool EndEdit(int row, int col, wxGrid* grid) = 0;
2796cce3
RD
324
325 // Reset the value in the control back to its starting value
326 virtual void Reset() = 0;
327
ca65c044 328 // return true to allow the given key to start editing: the base class
f6bcfd97
BP
329 // version only checks that the event has no modifiers. The derived
330 // classes are supposed to do "if ( base::IsAcceptedKey() && ... )" in
331 // their IsAcceptedKey() implementation, although, of course, it is not a
332 // mandatory requirment.
333 //
334 // NB: if the key is F2 (special), editing will always start and this
335 // method will not be called at all (but StartingKey() will)
336 virtual bool IsAcceptedKey(wxKeyEvent& event);
337
338 // If the editor is enabled by pressing keys on the grid, this will be
339 // called to let the editor do something about that first key if desired
2c9a89e0
RD
340 virtual void StartingKey(wxKeyEvent& event);
341
e195a54c
VZ
342 // if the editor is enabled by clicking on the cell, this method will be
343 // called
344 virtual void StartingClick();
345
2796cce3
RD
346 // Some types of controls on some platforms may need some help
347 // with the Return key.
348 virtual void HandleReturn(wxKeyEvent& event);
349
350 // Final cleanup
351 virtual void Destroy();
352
c4608a8a
VZ
353 // create a new object which is the copy of this one
354 virtual wxGridCellEditor *Clone() const = 0;
355
73145b0e
JS
356 // DJC MAPTEK
357 // added GetValue so we can get the value which is in the control
358 virtual wxString GetValue() const = 0;
359
2796cce3 360protected:
39bcce60
VZ
361 // the dtor is private because only DecRef() can delete us
362 virtual ~wxGridCellEditor();
363
3da93aae 364 // the control we show on screen
2796cce3 365 wxControl* m_control;
3da93aae 366
1bd71df9
JS
367 // a temporary pointer to the attribute being edited
368 wxGridCellAttr* m_attr;
369
3da93aae
VZ
370 // if we change the colours/font of the control from the default ones, we
371 // must restore the default later and we save them here between calls to
ca65c044 372 // Show(true) and Show(false)
3da93aae
VZ
373 wxColour m_colFgOld,
374 m_colBgOld;
375 wxFont m_fontOld;
39bcce60
VZ
376
377 // suppress the stupid gcc warning about the class having private dtor and
378 // no friends
379 friend class wxGridCellEditorDummyFriend;
22f3361e
VZ
380
381 DECLARE_NO_COPY_CLASS(wxGridCellEditor)
2796cce3
RD
382};
383
3379ed37
VZ
384#if wxUSE_TEXTCTRL
385
508011ce 386// the editor for string/text data
12f190b0 387class WXDLLIMPEXP_ADV wxGridCellTextEditor : public wxGridCellEditor
2796cce3
RD
388{
389public:
390 wxGridCellTextEditor();
391
392 virtual void Create(wxWindow* parent,
393 wxWindowID id,
2796cce3 394 wxEvtHandler* evtHandler);
99306db2 395 virtual void SetSize(const wxRect& rect);
2796cce3 396
189d0213
VZ
397 virtual void PaintBackground(const wxRect& rectCell, wxGridCellAttr *attr);
398
f6bcfd97 399 virtual bool IsAcceptedKey(wxKeyEvent& event);
3da93aae 400 virtual void BeginEdit(int row, int col, wxGrid* grid);
3324d5f5 401 virtual bool EndEdit(int row, int col, wxGrid* grid);
2796cce3
RD
402
403 virtual void Reset();
2c9a89e0 404 virtual void StartingKey(wxKeyEvent& event);
2796cce3
RD
405 virtual void HandleReturn(wxKeyEvent& event);
406
c4608a8a
VZ
407 // parameters string format is "max_width"
408 virtual void SetParameters(const wxString& params);
409
410 virtual wxGridCellEditor *Clone() const
411 { return new wxGridCellTextEditor; }
412
73145b0e
JS
413 // DJC MAPTEK
414 // added GetValue so we can get the value which is in the control
415 virtual wxString GetValue() const;
b54ba671
VZ
416protected:
417 wxTextCtrl *Text() const { return (wxTextCtrl *)m_control; }
2796cce3 418
816be743
VZ
419 // parts of our virtual functions reused by the derived classes
420 void DoBeginEdit(const wxString& startValue);
421 void DoReset(const wxString& startValue);
422
2796cce3 423private:
c4608a8a 424 size_t m_maxChars; // max number of chars allowed
2796cce3 425 wxString m_startValue;
fc7a2a60
VZ
426
427 DECLARE_NO_COPY_CLASS(wxGridCellTextEditor)
2796cce3
RD
428};
429
816be743 430// the editor for numeric (long) data
12f190b0 431class WXDLLIMPEXP_ADV wxGridCellNumberEditor : public wxGridCellTextEditor
816be743
VZ
432{
433public:
434 // allows to specify the range - if min == max == -1, no range checking is
435 // done
436 wxGridCellNumberEditor(int min = -1, int max = -1);
437
438 virtual void Create(wxWindow* parent,
439 wxWindowID id,
440 wxEvtHandler* evtHandler);
441
f6bcfd97 442 virtual bool IsAcceptedKey(wxKeyEvent& event);
816be743 443 virtual void BeginEdit(int row, int col, wxGrid* grid);
3324d5f5 444 virtual bool EndEdit(int row, int col, wxGrid* grid);
816be743
VZ
445
446 virtual void Reset();
447 virtual void StartingKey(wxKeyEvent& event);
448
c4608a8a
VZ
449 // parameters string format is "min,max"
450 virtual void SetParameters(const wxString& params);
451
452 virtual wxGridCellEditor *Clone() const
453 { return new wxGridCellNumberEditor(m_min, m_max); }
73145b0e
JS
454 // DJC MAPTEK
455 // added GetValue so we can get the value which is in the control
456 virtual wxString GetValue() const;
c4608a8a 457
816be743 458protected:
0e871ad0 459#if wxUSE_SPINCTRL
816be743 460 wxSpinCtrl *Spin() const { return (wxSpinCtrl *)m_control; }
0e871ad0 461#endif
816be743
VZ
462
463 // if HasRange(), we use wxSpinCtrl - otherwise wxTextCtrl
0e871ad0
WS
464 bool HasRange() const
465 {
466#if wxUSE_SPINCTRL
467 return m_min != m_max;
468#else
469 return false;
470#endif
471 }
816be743
VZ
472
473 // string representation of m_valueOld
474 wxString GetString() const
475 { return wxString::Format(_T("%ld"), m_valueOld); }
476
477private:
478 int m_min,
479 m_max;
480
481 long m_valueOld;
fc7a2a60
VZ
482
483 DECLARE_NO_COPY_CLASS(wxGridCellNumberEditor)
816be743
VZ
484};
485
486// the editor for floating point numbers (double) data
12f190b0 487class WXDLLIMPEXP_ADV wxGridCellFloatEditor : public wxGridCellTextEditor
816be743
VZ
488{
489public:
f6bcfd97
BP
490 wxGridCellFloatEditor(int width = -1, int precision = -1);
491
816be743
VZ
492 virtual void Create(wxWindow* parent,
493 wxWindowID id,
494 wxEvtHandler* evtHandler);
495
f6bcfd97 496 virtual bool IsAcceptedKey(wxKeyEvent& event);
816be743 497 virtual void BeginEdit(int row, int col, wxGrid* grid);
3324d5f5 498 virtual bool EndEdit(int row, int col, wxGrid* grid);
816be743
VZ
499
500 virtual void Reset();
501 virtual void StartingKey(wxKeyEvent& event);
502
c4608a8a 503 virtual wxGridCellEditor *Clone() const
ec53826c 504 { return new wxGridCellFloatEditor(m_width, m_precision); }
c4608a8a 505
f6bcfd97
BP
506 // parameters string format is "width,precision"
507 virtual void SetParameters(const wxString& params);
508
816be743
VZ
509protected:
510 // string representation of m_valueOld
f6bcfd97 511 wxString GetString() const;
816be743
VZ
512
513private:
f6bcfd97
BP
514 int m_width,
515 m_precision;
816be743 516 double m_valueOld;
fc7a2a60
VZ
517
518 DECLARE_NO_COPY_CLASS(wxGridCellFloatEditor)
816be743
VZ
519};
520
3379ed37
VZ
521#endif // wxUSE_TEXTCTRL
522
523#if wxUSE_CHECKBOX
524
508011ce 525// the editor for boolean data
12f190b0 526class WXDLLIMPEXP_ADV wxGridCellBoolEditor : public wxGridCellEditor
508011ce
VZ
527{
528public:
fc7a2a60
VZ
529 wxGridCellBoolEditor() { }
530
508011ce
VZ
531 virtual void Create(wxWindow* parent,
532 wxWindowID id,
533 wxEvtHandler* evtHandler);
534
535 virtual void SetSize(const wxRect& rect);
536 virtual void Show(bool show, wxGridCellAttr *attr = (wxGridCellAttr *)NULL);
537
f6bcfd97 538 virtual bool IsAcceptedKey(wxKeyEvent& event);
508011ce 539 virtual void BeginEdit(int row, int col, wxGrid* grid);
3324d5f5 540 virtual bool EndEdit(int row, int col, wxGrid* grid);
508011ce
VZ
541
542 virtual void Reset();
e195a54c 543 virtual void StartingClick();
63e2147c 544 virtual void StartingKey(wxKeyEvent& event);
508011ce 545
c4608a8a
VZ
546 virtual wxGridCellEditor *Clone() const
547 { return new wxGridCellBoolEditor; }
73145b0e
JS
548 // DJC MAPTEK
549 // added GetValue so we can get the value which is in the control
550 virtual wxString GetValue() const;
c4608a8a 551
508011ce
VZ
552protected:
553 wxCheckBox *CBox() const { return (wxCheckBox *)m_control; }
554
555private:
556 bool m_startValue;
fc7a2a60
VZ
557
558 DECLARE_NO_COPY_CLASS(wxGridCellBoolEditor)
508011ce
VZ
559};
560
3379ed37
VZ
561#endif // wxUSE_CHECKBOX
562
563#if wxUSE_COMBOBOX
564
4ee5fc9c 565// the editor for string data allowing to choose from the list of strings
12f190b0 566class WXDLLIMPEXP_ADV wxGridCellChoiceEditor : public wxGridCellEditor
4ee5fc9c
VZ
567{
568public:
569 // if !allowOthers, user can't type a string not in choices array
c4608a8a 570 wxGridCellChoiceEditor(size_t count = 0,
f6bcfd97 571 const wxString choices[] = NULL,
ca65c044 572 bool allowOthers = false);
7db33cc3 573 wxGridCellChoiceEditor(const wxArrayString& choices,
ca65c044 574 bool allowOthers = false);
4ee5fc9c
VZ
575
576 virtual void Create(wxWindow* parent,
577 wxWindowID id,
578 wxEvtHandler* evtHandler);
579
580 virtual void PaintBackground(const wxRect& rectCell, wxGridCellAttr *attr);
581
582 virtual void BeginEdit(int row, int col, wxGrid* grid);
3324d5f5 583 virtual bool EndEdit(int row, int col, wxGrid* grid);
4ee5fc9c
VZ
584
585 virtual void Reset();
586
c4608a8a
VZ
587 // parameters string format is "item1[,item2[...,itemN]]"
588 virtual void SetParameters(const wxString& params);
589
590 virtual wxGridCellEditor *Clone() const;
73145b0e
JS
591 // DJC MAPTEK
592 // added GetValue so we can get the value which is in the control
593 virtual wxString GetValue() const;
c4608a8a 594
4ee5fc9c
VZ
595protected:
596 wxComboBox *Combo() const { return (wxComboBox *)m_control; }
597
73145b0e
JS
598// DJC - (MAPTEK) you at least need access to m_choices if you
599// wish to override this class
600protected:
4ee5fc9c
VZ
601 wxString m_startValue;
602 wxArrayString m_choices;
603 bool m_allowOthers;
fc7a2a60
VZ
604
605 DECLARE_NO_COPY_CLASS(wxGridCellChoiceEditor)
4ee5fc9c 606};
a68c1246 607
3379ed37
VZ
608#endif // wxUSE_COMBOBOX
609
b99be8fb
VZ
610// ----------------------------------------------------------------------------
611// wxGridCellAttr: this class can be used to alter the cells appearance in
612// the grid by changing their colour/font/... from default. An object of this
613// class may be returned by wxGridTable::GetAttr().
614// ----------------------------------------------------------------------------
615
12f190b0 616class WXDLLIMPEXP_ADV wxGridCellAttr : public wxClientDataContainer
b99be8fb
VZ
617{
618public:
19d7140e
VZ
619 enum wxAttrKind
620 {
621 Any,
622 Default,
623 Cell,
624 Row,
625 Col,
626 Merged
627 };
628
b99be8fb 629 // ctors
1df4050d 630 wxGridCellAttr(wxGridCellAttr *attrDefault = NULL)
b99be8fb 631 {
1df4050d
VZ
632 Init(attrDefault);
633
0767cb6f
MB
634 // MB: args used to be 0,0 here but wxALIGN_LEFT is 0
635 SetAlignment(-1, -1);
b99be8fb
VZ
636 }
637
283b7808
VZ
638 // VZ: considering the number of members wxGridCellAttr has now, this ctor
639 // seems to be pretty useless... may be we should just remove it?
b99be8fb
VZ
640 wxGridCellAttr(const wxColour& colText,
641 const wxColour& colBack,
642 const wxFont& font,
643 int hAlign,
644 int vAlign)
645 : m_colText(colText), m_colBack(colBack), m_font(font)
646 {
2e9a6788 647 Init();
b99be8fb
VZ
648 SetAlignment(hAlign, vAlign);
649 }
650
39bcce60
VZ
651 // creates a new copy of this object
652 wxGridCellAttr *Clone() const;
19d7140e 653 void MergeWith(wxGridCellAttr *mergefrom);
b99be8fb 654
2e9a6788
VZ
655 // this class is ref counted: it is created with ref count of 1, so
656 // calling DecRef() once will delete it. Calling IncRef() allows to lock
657 // it until the matching DecRef() is called
658 void IncRef() { m_nRef++; }
8d7eaf91 659 void DecRef() { if ( --m_nRef == 0 ) delete this; }
2e9a6788 660
b99be8fb
VZ
661 // setters
662 void SetTextColour(const wxColour& colText) { m_colText = colText; }
663 void SetBackgroundColour(const wxColour& colBack) { m_colBack = colBack; }
664 void SetFont(const wxFont& font) { m_font = font; }
665 void SetAlignment(int hAlign, int vAlign)
666 {
667 m_hAlign = hAlign;
668 m_vAlign = vAlign;
669 }
27f35b66 670 void SetSize(int num_rows, int num_cols);
ca65c044 671 void SetOverflow(bool allow = true)
ef5df12b 672 { m_overflow = allow ? Overflow : SingleCell; }
ca65c044 673 void SetReadOnly(bool isReadOnly = true)
19d7140e 674 { m_isReadOnly = isReadOnly ? ReadOnly : ReadWrite; }
b99be8fb 675
ab79958a
VZ
676 // takes ownership of the pointer
677 void SetRenderer(wxGridCellRenderer *renderer)
39bcce60 678 { wxSafeDecRef(m_renderer); m_renderer = renderer; }
07296f0b 679 void SetEditor(wxGridCellEditor* editor)
39bcce60 680 { wxSafeDecRef(m_editor); m_editor = editor; }
ab79958a 681
19d7140e
VZ
682 void SetKind(wxAttrKind kind) { m_attrkind = kind; }
683
b99be8fb
VZ
684 // accessors
685 bool HasTextColour() const { return m_colText.Ok(); }
686 bool HasBackgroundColour() const { return m_colBack.Ok(); }
687 bool HasFont() const { return m_font.Ok(); }
0767cb6f 688 bool HasAlignment() const { return (m_hAlign != -1 || m_vAlign != -1); }
2796cce3 689 bool HasRenderer() const { return m_renderer != NULL; }
07296f0b 690 bool HasEditor() const { return m_editor != NULL; }
19d7140e 691 bool HasReadWriteMode() const { return m_isReadOnly != Unset; }
b63fce94 692 bool HasOverflowMode() const { return m_overflow != UnsetOverflow; }
3100c3db 693 bool HasSize() const { return m_sizeRows != 1 || m_sizeCols != 1; }
b99be8fb 694
2796cce3
RD
695 const wxColour& GetTextColour() const;
696 const wxColour& GetBackgroundColour() const;
697 const wxFont& GetFont() const;
698 void GetAlignment(int *hAlign, int *vAlign) const;
27f35b66 699 void GetSize(int *num_rows, int *num_cols) const;
ef5df12b 700 bool GetOverflow() const
b63fce94 701 { return m_overflow != SingleCell; }
28a77bc4
RD
702 wxGridCellRenderer *GetRenderer(wxGrid* grid, int row, int col) const;
703 wxGridCellEditor *GetEditor(wxGrid* grid, int row, int col) const;
b99be8fb 704
19d7140e
VZ
705 bool IsReadOnly() const { return m_isReadOnly == wxGridCellAttr::ReadOnly; }
706
707 wxAttrKind GetKind() { return m_attrkind; }
283b7808 708
2796cce3 709 void SetDefAttr(wxGridCellAttr* defAttr) { m_defGridAttr = defAttr; }
ab79958a 710
338d1deb
VZ
711protected:
712 // the dtor is private because only DecRef() can delete us
713 virtual ~wxGridCellAttr()
714 {
715 wxSafeDecRef(m_renderer);
716 wxSafeDecRef(m_editor);
717 }
718
b99be8fb 719private:
19d7140e
VZ
720 enum wxAttrReadMode
721 {
722 Unset = -1,
723 ReadWrite,
724 ReadOnly
30bc4a8f 725 };
19d7140e 726
b63fce94
RD
727 enum wxAttrOverflowMode
728 {
729 UnsetOverflow = -1,
730 Overflow,
731 SingleCell
732 };
733
2e9a6788 734 // the common part of all ctors
1df4050d 735 void Init(wxGridCellAttr *attrDefault = NULL);
2e9a6788 736
2e9a6788
VZ
737
738 // the ref count - when it goes to 0, we die
739 size_t m_nRef;
740
b99be8fb
VZ
741 wxColour m_colText,
742 m_colBack;
743 wxFont m_font;
744 int m_hAlign,
745 m_vAlign;
27f35b66
SN
746 int m_sizeRows,
747 m_sizeCols;
ef5df12b
RD
748
749 wxAttrOverflowMode m_overflow;
2e9a6788 750
07296f0b
RD
751 wxGridCellRenderer* m_renderer;
752 wxGridCellEditor* m_editor;
753 wxGridCellAttr* m_defGridAttr;
ab79958a 754
19d7140e
VZ
755 wxAttrReadMode m_isReadOnly;
756
757 wxAttrKind m_attrkind;
283b7808 758
a68c1246 759 // use Clone() instead
7ef4c90b 760 DECLARE_NO_COPY_CLASS(wxGridCellAttr)
a68c1246 761
2e9a6788
VZ
762 // suppress the stupid gcc warning about the class having private dtor and
763 // no friends
764 friend class wxGridCellAttrDummyFriend;
b99be8fb
VZ
765};
766
767// ----------------------------------------------------------------------------
768// wxGridCellAttrProvider: class used by wxGridTableBase to retrieve/store the
769// cell attributes.
770// ----------------------------------------------------------------------------
771
772// implementation note: we separate it from wxGridTableBase because we wish to
773// avoid deriving a new table class if possible, and sometimes it will be
774// enough to just derive another wxGridCellAttrProvider instead
758cbedf
VZ
775//
776// the default implementation is reasonably efficient for the generic case,
777// but you might still wish to implement your own for some specific situations
778// if you have performance problems with the stock one
12f190b0 779class WXDLLIMPEXP_ADV wxGridCellAttrProvider : public wxClientDataContainer
b99be8fb
VZ
780{
781public:
782 wxGridCellAttrProvider();
783 virtual ~wxGridCellAttrProvider();
784
2e9a6788 785 // DecRef() must be called on the returned pointer
19d7140e
VZ
786 virtual wxGridCellAttr *GetAttr(int row, int col,
787 wxGridCellAttr::wxAttrKind kind ) const;
2e9a6788 788
758cbedf
VZ
789 // all these functions take ownership of the pointer, don't call DecRef()
790 // on it
2e9a6788 791 virtual void SetAttr(wxGridCellAttr *attr, int row, int col);
758cbedf
VZ
792 virtual void SetRowAttr(wxGridCellAttr *attr, int row);
793 virtual void SetColAttr(wxGridCellAttr *attr, int col);
d1c0b4f9
VZ
794
795 // these functions must be called whenever some rows/cols are deleted
796 // because the internal data must be updated then
4d60017a
SN
797 void UpdateAttrRows( size_t pos, int numRows );
798 void UpdateAttrCols( size_t pos, int numCols );
b99be8fb
VZ
799
800private:
801 void InitData();
802
803 wxGridCellAttrProviderData *m_data;
22f3361e
VZ
804
805 DECLARE_NO_COPY_CLASS(wxGridCellAttrProvider)
b99be8fb 806};
f85afd4e
MB
807
808//////////////////////////////////////////////////////////////////////
809//
810// Grid table classes
811//
812//////////////////////////////////////////////////////////////////////
813
814
12f190b0 815class WXDLLIMPEXP_ADV wxGridTableBase : public wxObject, public wxClientDataContainer
f85afd4e 816{
60ff3b99 817public:
f85afd4e
MB
818 wxGridTableBase();
819 virtual ~wxGridTableBase();
820
821 // You must override these functions in a derived table class
822 //
e32352cf
SN
823 virtual int GetNumberRows() = 0;
824 virtual int GetNumberCols() = 0;
f85afd4e 825 virtual bool IsEmptyCell( int row, int col ) = 0;
f2d76237
RD
826 virtual wxString GetValue( int row, int col ) = 0;
827 virtual void SetValue( int row, int col, const wxString& value ) = 0;
828
829 // Data type determination and value access
830 virtual wxString GetTypeName( int row, int col );
831 virtual bool CanGetValueAs( int row, int col, const wxString& typeName );
832 virtual bool CanSetValueAs( int row, int col, const wxString& typeName );
833
834 virtual long GetValueAsLong( int row, int col );
835 virtual double GetValueAsDouble( int row, int col );
836 virtual bool GetValueAsBool( int row, int col );
837
838 virtual void SetValueAsLong( int row, int col, long value );
839 virtual void SetValueAsDouble( int row, int col, double value );
840 virtual void SetValueAsBool( int row, int col, bool value );
841
842 // For user defined types
843 virtual void* GetValueAsCustom( int row, int col, const wxString& typeName );
844 virtual void SetValueAsCustom( int row, int col, const wxString& typeName, void* value );
845
60ff3b99 846
f85afd4e
MB
847 // Overriding these is optional
848 //
849 virtual void SetView( wxGrid *grid ) { m_view = grid; }
850 virtual wxGrid * GetView() const { return m_view; }
851
852 virtual void Clear() {}
853 virtual bool InsertRows( size_t pos = 0, size_t numRows = 1 );
854 virtual bool AppendRows( size_t numRows = 1 );
855 virtual bool DeleteRows( size_t pos = 0, size_t numRows = 1 );
856 virtual bool InsertCols( size_t pos = 0, size_t numCols = 1 );
857 virtual bool AppendCols( size_t numCols = 1 );
858 virtual bool DeleteCols( size_t pos = 0, size_t numCols = 1 );
859
860 virtual wxString GetRowLabelValue( int row );
861 virtual wxString GetColLabelValue( int col );
af111fc3
JS
862 virtual void SetRowLabelValue( int WXUNUSED(row), const wxString& ) {}
863 virtual void SetColLabelValue( int WXUNUSED(col), const wxString& ) {}
60ff3b99 864
b99be8fb
VZ
865 // Attribute handling
866 //
867
868 // give us the attr provider to use - we take ownership of the pointer
869 void SetAttrProvider(wxGridCellAttrProvider *attrProvider);
870
871 // get the currently used attr provider (may be NULL)
872 wxGridCellAttrProvider *GetAttrProvider() const { return m_attrProvider; }
873
f2d76237
RD
874 // Does this table allow attributes? Default implementation creates
875 // a wxGridCellAttrProvider if necessary.
876 virtual bool CanHaveAttributes();
877
b99be8fb 878 // by default forwarded to wxGridCellAttrProvider if any. May be
f2d76237 879 // overridden to handle attributes directly in the table.
19d7140e
VZ
880 virtual wxGridCellAttr *GetAttr( int row, int col,
881 wxGridCellAttr::wxAttrKind kind );
882
b99be8fb 883
758cbedf
VZ
884 // these functions take ownership of the pointer
885 virtual void SetAttr(wxGridCellAttr* attr, int row, int col);
886 virtual void SetRowAttr(wxGridCellAttr *attr, int row);
887 virtual void SetColAttr(wxGridCellAttr *attr, int col);
b99be8fb 888
60ff3b99
VZ
889private:
890 wxGrid * m_view;
b99be8fb 891 wxGridCellAttrProvider *m_attrProvider;
60ff3b99 892
3839f37e 893 DECLARE_ABSTRACT_CLASS(wxGridTableBase)
22f3361e 894 DECLARE_NO_COPY_CLASS(wxGridTableBase)
f85afd4e
MB
895};
896
897
b99be8fb
VZ
898// ----------------------------------------------------------------------------
899// wxGridTableMessage
900// ----------------------------------------------------------------------------
f85afd4e
MB
901
902// IDs for messages sent from grid table to view
903//
60ff3b99
VZ
904enum wxGridTableRequest
905{
f85afd4e
MB
906 wxGRIDTABLE_REQUEST_VIEW_GET_VALUES = 2000,
907 wxGRIDTABLE_REQUEST_VIEW_SEND_VALUES,
908 wxGRIDTABLE_NOTIFY_ROWS_INSERTED,
909 wxGRIDTABLE_NOTIFY_ROWS_APPENDED,
910 wxGRIDTABLE_NOTIFY_ROWS_DELETED,
911 wxGRIDTABLE_NOTIFY_COLS_INSERTED,
912 wxGRIDTABLE_NOTIFY_COLS_APPENDED,
913 wxGRIDTABLE_NOTIFY_COLS_DELETED
914};
915
12f190b0 916class WXDLLIMPEXP_ADV wxGridTableMessage
f85afd4e 917{
60ff3b99 918public:
f85afd4e
MB
919 wxGridTableMessage();
920 wxGridTableMessage( wxGridTableBase *table, int id,
921 int comInt1 = -1,
922 int comInt2 = -1 );
923
924 void SetTableObject( wxGridTableBase *table ) { m_table = table; }
925 wxGridTableBase * GetTableObject() const { return m_table; }
926 void SetId( int id ) { m_id = id; }
927 int GetId() { return m_id; }
928 void SetCommandInt( int comInt1 ) { m_comInt1 = comInt1; }
929 int GetCommandInt() { return m_comInt1; }
930 void SetCommandInt2( int comInt2 ) { m_comInt2 = comInt2; }
60ff3b99
VZ
931 int GetCommandInt2() { return m_comInt2; }
932
933private:
934 wxGridTableBase *m_table;
935 int m_id;
936 int m_comInt1;
937 int m_comInt2;
22f3361e
VZ
938
939 DECLARE_NO_COPY_CLASS(wxGridTableMessage)
f85afd4e
MB
940};
941
942
943
944// ------ wxGridStringArray
945// A 2-dimensional array of strings for data values
946//
947
160ba750
VS
948WX_DECLARE_OBJARRAY_WITH_DECL(wxArrayString, wxGridStringArray,
949 class WXDLLIMPEXP_ADV);
2d66e025 950
f85afd4e
MB
951
952
953// ------ wxGridStringTable
954//
955// Simplest type of data table for a grid for small tables of strings
956// that are stored in memory
957//
958
12f190b0 959class WXDLLIMPEXP_ADV wxGridStringTable : public wxGridTableBase
f85afd4e 960{
60ff3b99 961public:
f85afd4e
MB
962 wxGridStringTable();
963 wxGridStringTable( int numRows, int numCols );
e669d97a 964 virtual ~wxGridStringTable();
f85afd4e
MB
965
966 // these are pure virtual in wxGridTableBase
967 //
e32352cf
SN
968 int GetNumberRows();
969 int GetNumberCols();
f85afd4e
MB
970 wxString GetValue( int row, int col );
971 void SetValue( int row, int col, const wxString& s );
972 bool IsEmptyCell( int row, int col );
60ff3b99 973
f85afd4e
MB
974 // overridden functions from wxGridTableBase
975 //
976 void Clear();
977 bool InsertRows( size_t pos = 0, size_t numRows = 1 );
978 bool AppendRows( size_t numRows = 1 );
979 bool DeleteRows( size_t pos = 0, size_t numRows = 1 );
980 bool InsertCols( size_t pos = 0, size_t numCols = 1 );
981 bool AppendCols( size_t numCols = 1 );
982 bool DeleteCols( size_t pos = 0, size_t numCols = 1 );
983
984 void SetRowLabelValue( int row, const wxString& );
985 void SetColLabelValue( int col, const wxString& );
986 wxString GetRowLabelValue( int row );
987 wxString GetColLabelValue( int col );
60ff3b99
VZ
988
989private:
990 wxGridStringArray m_data;
991
992 // These only get used if you set your own labels, otherwise the
993 // GetRow/ColLabelValue functions return wxGridTableBase defaults
994 //
995 wxArrayString m_rowLabels;
996 wxArrayString m_colLabels;
997
fc7a2a60 998 DECLARE_DYNAMIC_CLASS_NO_COPY( wxGridStringTable )
f85afd4e
MB
999};
1000
1001
1002
43947979 1003// ============================================================================
f85afd4e 1004// Grid view classes
43947979
VZ
1005// ============================================================================
1006
1007// ----------------------------------------------------------------------------
1008// wxGridCellCoords: location of a cell in the grid
1009// ----------------------------------------------------------------------------
f85afd4e 1010
12f190b0 1011class WXDLLIMPEXP_ADV wxGridCellCoords
f85afd4e 1012{
60ff3b99 1013public:
f85afd4e
MB
1014 wxGridCellCoords() { m_row = m_col = -1; }
1015 wxGridCellCoords( int r, int c ) { m_row = r; m_col = c; }
1016
1017 // default copy ctor is ok
1018
e32352cf
SN
1019 int GetRow() const { return m_row; }
1020 void SetRow( int n ) { m_row = n; }
1021 int GetCol() const { return m_col; }
1022 void SetCol( int n ) { m_col = n; }
1023 void Set( int row, int col ) { m_row = row; m_col = col; }
60ff3b99 1024
f85afd4e
MB
1025 wxGridCellCoords& operator=( const wxGridCellCoords& other )
1026 {
1027 if ( &other != this )
1028 {
1029 m_row=other.m_row;
1030 m_col=other.m_col;
1031 }
1032 return *this;
1033 }
1034
508011ce 1035 bool operator==( const wxGridCellCoords& other ) const
f85afd4e
MB
1036 {
1037 return (m_row == other.m_row && m_col == other.m_col);
1038 }
1039
508011ce 1040 bool operator!=( const wxGridCellCoords& other ) const
f85afd4e
MB
1041 {
1042 return (m_row != other.m_row || m_col != other.m_col);
1043 }
1044
508011ce 1045 bool operator!() const
f85afd4e
MB
1046 {
1047 return (m_row == -1 && m_col == -1 );
1048 }
60ff3b99
VZ
1049
1050private:
e32352cf
SN
1051 int m_row;
1052 int m_col;
f85afd4e
MB
1053};
1054
1055
1056// For comparisons...
1057//
12f190b0
VS
1058extern WXDLLIMPEXP_ADV wxGridCellCoords wxGridNoCellCoords;
1059extern WXDLLIMPEXP_ADV wxRect wxGridNoCellRect;
f85afd4e 1060
2d66e025
MB
1061// An array of cell coords...
1062//
160ba750
VS
1063WX_DECLARE_OBJARRAY_WITH_DECL(wxGridCellCoords, wxGridCellCoordsArray,
1064 class WXDLLIMPEXP_ADV);
2d66e025 1065
b99be8fb
VZ
1066// ----------------------------------------------------------------------------
1067// wxGrid
1068// ----------------------------------------------------------------------------
f85afd4e 1069
12f190b0 1070class WXDLLIMPEXP_ADV wxGrid : public wxScrolledWindow
60ff3b99
VZ
1071{
1072public:
986a98c6
SC
1073 wxGrid() ;
1074
1075 wxGrid( wxWindow *parent,
1076 wxWindowID id,
1077 const wxPoint& pos = wxDefaultPosition,
1078 const wxSize& size = wxDefaultSize,
1079 long style = wxWANTS_CHARS,
1080 const wxString& name = wxPanelNameStr );
60ff3b99 1081
986a98c6 1082 bool Create( wxWindow *parent,
f85afd4e
MB
1083 wxWindowID id,
1084 const wxPoint& pos = wxDefaultPosition,
1085 const wxSize& size = wxDefaultSize,
ebd773c6 1086 long style = wxWANTS_CHARS,
2d66e025
MB
1087 const wxString& name = wxPanelNameStr );
1088
e669d97a 1089 virtual ~wxGrid();
f85afd4e 1090
b5808881
SN
1091 enum wxGridSelectionModes {wxGridSelectCells,
1092 wxGridSelectRows,
1093 wxGridSelectColumns};
1094
1095 bool CreateGrid( int numRows, int numCols,
1096 wxGrid::wxGridSelectionModes selmode =
1097 wxGrid::wxGridSelectCells );
2d66e025 1098
f1567cdd 1099 void SetSelectionMode(wxGrid::wxGridSelectionModes selmode);
aa5b8857 1100 wxGrid::wxGridSelectionModes GetSelectionMode() const;
60ff3b99 1101
2d66e025
MB
1102 // ------ grid dimensions
1103 //
1104 int GetNumberRows() { return m_numRows; }
1105 int GetNumberCols() { return m_numCols; }
1106
60ff3b99 1107
2d66e025
MB
1108 // ------ display update functions
1109 //
d10f4bf9 1110 wxArrayInt CalcRowLabelsExposed( const wxRegion& reg );
8fb66724 1111
d10f4bf9
VZ
1112 wxArrayInt CalcColLabelsExposed( const wxRegion& reg );
1113 wxGridCellCoordsArray CalcCellsExposed( const wxRegion& reg );
60ff3b99 1114
2d66e025 1115
2d66e025
MB
1116 // ------ event handlers
1117 //
1118 void ProcessRowLabelMouseEvent( wxMouseEvent& event );
1119 void ProcessColLabelMouseEvent( wxMouseEvent& event );
1120 void ProcessCornerLabelMouseEvent( wxMouseEvent& event );
60ff3b99 1121 void ProcessGridCellMouseEvent( wxMouseEvent& event );
2d66e025 1122 bool ProcessTableMessage( wxGridTableMessage& );
f85afd4e 1123
6d004f67
MB
1124 void DoEndDragResizeRow();
1125 void DoEndDragResizeCol();
d4175745 1126 void DoEndDragMoveCol();
60ff3b99 1127
f85afd4e 1128 wxGridTableBase * GetTable() const { return m_table; }
ca65c044 1129 bool SetTable( wxGridTableBase *table, bool takeOwnership = false,
5c8fc7c1
SN
1130 wxGrid::wxGridSelectionModes selmode =
1131 wxGrid::wxGridSelectCells );
f85afd4e
MB
1132
1133 void ClearGrid();
ca65c044
WS
1134 bool InsertRows( int pos = 0, int numRows = 1, bool updateLabels = true );
1135 bool AppendRows( int numRows = 1, bool updateLabels = true );
1136 bool DeleteRows( int pos = 0, int numRows = 1, bool updateLabels = true );
1137 bool InsertCols( int pos = 0, int numCols = 1, bool updateLabels = true );
1138 bool AppendCols( int numCols = 1, bool updateLabels = true );
1139 bool DeleteCols( int pos = 0, int numCols = 1, bool updateLabels = true );
f85afd4e 1140
d10f4bf9 1141 void DrawGridCellArea( wxDC& dc , const wxGridCellCoordsArray& cells );
7c8a8ad5 1142 void DrawGridSpace( wxDC& dc );
2d66e025 1143 void DrawCellBorder( wxDC& dc, const wxGridCellCoords& );
4634a5d6 1144 void DrawAllGridLines( wxDC& dc, const wxRegion & reg );
2d66e025 1145 void DrawCell( wxDC& dc, const wxGridCellCoords& );
d10f4bf9 1146 void DrawHighlight(wxDC& dc, const wxGridCellCoordsArray& cells);
d16c04bb
VZ
1147
1148 // this function is called when the current cell highlight must be redrawn
1149 // and may be overridden by the user
1150 virtual void DrawCellHighlight( wxDC& dc, const wxGridCellAttr *attr );
1f1ce288 1151
6914b57a
JS
1152 virtual void DrawRowLabels( wxDC& dc, const wxArrayInt& rows );
1153 virtual void DrawRowLabel( wxDC& dc, int row );
8fb66724 1154
6914b57a
JS
1155 virtual void DrawColLabels( wxDC& dc, const wxArrayInt& cols );
1156 virtual void DrawColLabel( wxDC& dc, int col );
60ff3b99 1157
f85afd4e 1158
2d66e025 1159 // ------ Cell text drawing functions
f85afd4e 1160 //
2d66e025 1161 void DrawTextRectangle( wxDC& dc, const wxString&, const wxRect&,
4c7277db 1162 int horizontalAlignment = wxALIGN_LEFT,
d43851f7
JS
1163 int verticalAlignment = wxALIGN_TOP,
1164 int textOrientation = wxHORIZONTAL );
30bc4a8f 1165
d10f4bf9
VZ
1166 void DrawTextRectangle( wxDC& dc, const wxArrayString& lines, const wxRect&,
1167 int horizontalAlignment = wxALIGN_LEFT,
d43851f7
JS
1168 int verticalAlignment = wxALIGN_TOP,
1169 int textOrientation = wxHORIZONTAL );
d10f4bf9 1170
f85afd4e 1171
2d66e025
MB
1172 // Split a string containing newline chararcters into an array of
1173 // strings and return the number of lines
1174 //
1175 void StringToLines( const wxString& value, wxArrayString& lines );
60ff3b99 1176
fbfb8bcc 1177 void GetTextBoxSize( const wxDC& dc,
d10f4bf9 1178 const wxArrayString& lines,
2d66e025 1179 long *width, long *height );
60ff3b99 1180
2d66e025 1181
f85afd4e
MB
1182 // ------
1183 // Code that does a lot of grid modification can be enclosed
1184 // between BeginBatch() and EndBatch() calls to avoid screen
1185 // flicker
1186 //
1187 void BeginBatch() { m_batchCount++; }
f6bcfd97
BP
1188 void EndBatch();
1189
f85afd4e
MB
1190 int GetBatchCount() { return m_batchCount; }
1191
ca65c044 1192 virtual void Refresh(bool eraseb = true,
b7282ad2 1193 const wxRect* rect = (const wxRect *) NULL);
27f35b66 1194
d8232393
MB
1195 // Use this, rather than wxWindow::Refresh(), to force an
1196 // immediate repainting of the grid. Has no effect if you are
1197 // already inside a BeginBatch / EndBatch block.
1198 //
1199 // This function is necessary because wxGrid has a minimal OnPaint()
1200 // handler to reduce screen flicker.
1201 //
1202 void ForceRefresh();
d2520c85 1203
2d66e025
MB
1204
1205 // ------ edit control functions
1206 //
84035150 1207 bool IsEditable() const { return m_editable; }
2d66e025
MB
1208 void EnableEditing( bool edit );
1209
ca65c044
WS
1210 void EnableCellEditControl( bool enable = true );
1211 void DisableCellEditControl() { EnableCellEditControl(false); }
b54ba671
VZ
1212 bool CanEnableCellControl() const;
1213 bool IsCellEditControlEnabled() const;
f6bcfd97 1214 bool IsCellEditControlShown() const;
2d66e025 1215
b54ba671 1216 bool IsCurrentCellReadOnly() const;
2d66e025 1217
2d66e025
MB
1218 void ShowCellEditControl();
1219 void HideCellEditControl();
2d66e025
MB
1220 void SaveEditControlValue();
1221
60ff3b99 1222
2d66e025 1223 // ------ grid location functions
60ff3b99 1224 // Note that all of these functions work with the logical coordinates of
2d66e025
MB
1225 // grid cells and labels so you will need to convert from device
1226 // coordinates for mouse events etc.
1227 //
1228 void XYToCell( int x, int y, wxGridCellCoords& );
1229 int YToRow( int y );
d4175745 1230 int XToCol( int x, bool clipToMinMax = false );
2d66e025
MB
1231
1232 int YToEdgeOfRow( int y );
1233 int XToEdgeOfCol( int x );
1234
1235 wxRect CellToRect( int row, int col );
1236 wxRect CellToRect( const wxGridCellCoords& coords )
1237 { return CellToRect( coords.GetRow(), coords.GetCol() ); }
1238
1239 int GetGridCursorRow() { return m_currentCellCoords.GetRow(); }
1240 int GetGridCursorCol() { return m_currentCellCoords.GetCol(); }
60ff3b99 1241
2d66e025
MB
1242 // check to see if a cell is either wholly visible (the default arg) or
1243 // at least partially visible in the grid window
1244 //
ca65c044
WS
1245 bool IsVisible( int row, int col, bool wholeCellVisible = true );
1246 bool IsVisible( const wxGridCellCoords& coords, bool wholeCellVisible = true )
2d66e025
MB
1247 { return IsVisible( coords.GetRow(), coords.GetCol(), wholeCellVisible ); }
1248 void MakeCellVisible( int row, int col );
1249 void MakeCellVisible( const wxGridCellCoords& coords )
1250 { MakeCellVisible( coords.GetRow(), coords.GetCol() ); }
1251
60ff3b99 1252
2d66e025
MB
1253 // ------ grid cursor movement functions
1254 //
dfaf42d2 1255 void SetGridCursor( int row, int col )
b27f2615 1256 { SetCurrentCell( wxGridCellCoords(row, col) ); }
dfaf42d2 1257
5c8fc7c1
SN
1258 bool MoveCursorUp( bool expandSelection );
1259 bool MoveCursorDown( bool expandSelection );
1260 bool MoveCursorLeft( bool expandSelection );
1261 bool MoveCursorRight( bool expandSelection );
2d66e025
MB
1262 bool MovePageDown();
1263 bool MovePageUp();
5c8fc7c1
SN
1264 bool MoveCursorUpBlock( bool expandSelection );
1265 bool MoveCursorDownBlock( bool expandSelection );
1266 bool MoveCursorLeftBlock( bool expandSelection );
1267 bool MoveCursorRightBlock( bool expandSelection );
2d66e025 1268
60ff3b99 1269
f85afd4e
MB
1270 // ------ label and gridline formatting
1271 //
1272 int GetDefaultRowLabelSize() { return WXGRID_DEFAULT_ROW_LABEL_WIDTH; }
1273 int GetRowLabelSize() { return m_rowLabelWidth; }
60ff3b99 1274 int GetDefaultColLabelSize() { return WXGRID_DEFAULT_COL_LABEL_HEIGHT; }
f85afd4e
MB
1275 int GetColLabelSize() { return m_colLabelHeight; }
1276 wxColour GetLabelBackgroundColour() { return m_labelBackgroundColour; }
1277 wxColour GetLabelTextColour() { return m_labelTextColour; }
1278 wxFont GetLabelFont() { return m_labelFont; }
1279 void GetRowLabelAlignment( int *horiz, int *vert );
1280 void GetColLabelAlignment( int *horiz, int *vert );
d43851f7 1281 int GetColLabelTextOrientation();
f85afd4e
MB
1282 wxString GetRowLabelValue( int row );
1283 wxString GetColLabelValue( int col );
1284 wxColour GetGridLineColour() { return m_gridLineColour; }
3d3f3e37
VZ
1285
1286 // these methods may be overridden to customize individual grid lines
1287 // appearance
1288 virtual wxPen GetDefaultGridLinePen();
1289 virtual wxPen GetRowGridLinePen(int row);
1290 virtual wxPen GetColGridLinePen(int col);
f6bcfd97 1291 wxColour GetCellHighlightColour() { return m_cellHighlightColour; }
d2520c85
RD
1292 int GetCellHighlightPenWidth() { return m_cellHighlightPenWidth; }
1293 int GetCellHighlightROPenWidth() { return m_cellHighlightROPenWidth; }
f85afd4e 1294
ab79958a 1295 void SetRowLabelSize( int width );
f85afd4e
MB
1296 void SetColLabelSize( int height );
1297 void SetLabelBackgroundColour( const wxColour& );
1298 void SetLabelTextColour( const wxColour& );
1299 void SetLabelFont( const wxFont& );
1300 void SetRowLabelAlignment( int horiz, int vert );
1301 void SetColLabelAlignment( int horiz, int vert );
d43851f7 1302 void SetColLabelTextOrientation( int textOrientation );
f85afd4e
MB
1303 void SetRowLabelValue( int row, const wxString& );
1304 void SetColLabelValue( int col, const wxString& );
1305 void SetGridLineColour( const wxColour& );
f6bcfd97 1306 void SetCellHighlightColour( const wxColour& );
d2520c85
RD
1307 void SetCellHighlightPenWidth(int width);
1308 void SetCellHighlightROPenWidth(int width);
28a77bc4 1309
ca65c044
WS
1310 void EnableDragRowSize( bool enable = true );
1311 void DisableDragRowSize() { EnableDragRowSize( false ); }
6e8524b1 1312 bool CanDragRowSize() { return m_canDragRowSize; }
ca65c044
WS
1313 void EnableDragColSize( bool enable = true );
1314 void DisableDragColSize() { EnableDragColSize( false ); }
6e8524b1 1315 bool CanDragColSize() { return m_canDragColSize; }
d4175745
VZ
1316 void EnableDragColMove( bool enable = true );
1317 void DisableDragColMove() { EnableDragColMove( false ); }
1318 bool CanDragColMove() { return m_canDragColMove; }
ca65c044
WS
1319 void EnableDragGridSize(bool enable = true);
1320 void DisableDragGridSize() { EnableDragGridSize(false); }
4cfa5de6
RD
1321 bool CanDragGridSize() { return m_canDragGridSize; }
1322
79dbea21
RD
1323 void EnableDragCell( bool enable = true );
1324 void DisableDragCell() { EnableDragCell( false ); }
1325 bool CanDragCell() { return m_canDragCell; }
1326
27f35b66
SN
1327 // this sets the specified attribute for this cell or in this row/col
1328 void SetAttr(int row, int col, wxGridCellAttr *attr);
758cbedf
VZ
1329 void SetRowAttr(int row, wxGridCellAttr *attr);
1330 void SetColAttr(int col, wxGridCellAttr *attr);
1331
71e60f70
RD
1332 // returns the attribute we may modify in place: a new one if this cell
1333 // doesn't have any yet or the existing one if it does
1334 //
1335 // DecRef() must be called on the returned pointer, as usual
1336 wxGridCellAttr *GetOrCreateCellAttr(int row, int col) const;
1337
d94c09cd 1338
0b190b0f
VZ
1339 // shortcuts for setting the column parameters
1340
1341 // set the format for the data in the column: default is string
1342 void SetColFormatBool(int col);
1343 void SetColFormatNumber(int col);
1344 void SetColFormatFloat(int col, int width = -1, int precision = -1);
1345 void SetColFormatCustom(int col, const wxString& typeName);
1346
ca65c044 1347 void EnableGridLines( bool enable = true );
f85afd4e
MB
1348 bool GridLinesEnabled() { return m_gridLinesEnabled; }
1349
f85afd4e
MB
1350 // ------ row and col formatting
1351 //
1352 int GetDefaultRowSize();
1353 int GetRowSize( int row );
1354 int GetDefaultColSize();
1355 int GetColSize( int col );
1356 wxColour GetDefaultCellBackgroundColour();
1357 wxColour GetCellBackgroundColour( int row, int col );
1358 wxColour GetDefaultCellTextColour();
1359 wxColour GetCellTextColour( int row, int col );
f85afd4e
MB
1360 wxFont GetDefaultCellFont();
1361 wxFont GetCellFont( int row, int col );
1362 void GetDefaultCellAlignment( int *horiz, int *vert );
1363 void GetCellAlignment( int row, int col, int *horiz, int *vert );
27f35b66
SN
1364 bool GetDefaultCellOverflow();
1365 bool GetCellOverflow( int row, int col );
1366 void GetCellSize( int row, int col, int *num_rows, int *num_cols );
60ff3b99 1367
ca65c044 1368 void SetDefaultRowSize( int height, bool resizeExistingRows = false );
f85afd4e 1369 void SetRowSize( int row, int height );
ca65c044 1370 void SetDefaultColSize( int width, bool resizeExistingCols = false );
8fb66724 1371
f85afd4e 1372 void SetColSize( int col, int width );
43947979 1373
d4175745
VZ
1374 //Column positions
1375 int GetColAt( int colPos ) const
1376 {
1377 if ( m_colAt.IsEmpty() )
1378 return colPos;
1379 else
1380 return m_colAt[colPos];
1381 }
1382
1383 void SetColPos( int colID, int newPos );
1384
1385 int GetColPos( int colID ) const
1386 {
1387 if ( m_colAt.IsEmpty() )
1388 return colID;
1389 else
1390 {
1391 for ( int i = 0; i < m_numCols; i++ )
1392 {
1393 if ( m_colAt[i] == colID )
1394 return i;
1395 }
1396 }
1397
1398 return -1;
1399 }
1400
af547d51 1401 // automatically size the column or row to fit to its contents, if
ca65c044 1402 // setAsMin is true, this optimal width will also be set as minimal width
af547d51 1403 // for this column
ca65c044
WS
1404 void AutoSizeColumn( int col, bool setAsMin = true )
1405 { AutoSizeColOrRow(col, setAsMin, true); }
1406 void AutoSizeRow( int row, bool setAsMin = true )
1407 { AutoSizeColOrRow(row, setAsMin, false); }
65e4e78e
VZ
1408
1409 // auto size all columns (very ineffective for big grids!)
ca65c044
WS
1410 void AutoSizeColumns( bool setAsMin = true )
1411 { (void)SetOrCalcColumnSizes(false, setAsMin); }
65e4e78e 1412
ca65c044
WS
1413 void AutoSizeRows( bool setAsMin = true )
1414 { (void)SetOrCalcRowSizes(false, setAsMin); }
57c086ef
VZ
1415
1416 // auto size the grid, that is make the columns/rows of the "right" size
1417 // and also set the grid size to just fit its contents
1418 void AutoSize();
1419
d43851f7
JS
1420 // autosize row height depending on label text
1421 void AutoSizeRowLabelSize( int row );
1422
1423 // autosize column width depending on label text
1424 void AutoSizeColLabelSize( int col );
1425
43947979
VZ
1426 // column won't be resized to be lesser width - this must be called during
1427 // the grid creation because it won't resize the column if it's already
1428 // narrower than the minimal width
1429 void SetColMinimalWidth( int col, int width );
af547d51 1430 void SetRowMinimalHeight( int row, int width );
43947979 1431
b8d24d4e
RG
1432 /* These members can be used to query and modify the minimal
1433 * acceptable size of grid rows and columns. Call this function in
1434 * your code which creates the grid if you want to display cells
1435 * with a size smaller than the default acceptable minimum size.
1436 * Like the members SetColMinimalWidth and SetRowMinimalWidth,
1437 * the existing rows or columns will not be checked/resized.
1438 */
1439 void SetColMinimalAcceptableWidth( int width );
1440 void SetRowMinimalAcceptableHeight( int width );
1441 int GetColMinimalAcceptableWidth() const;
1442 int GetRowMinimalAcceptableHeight() const;
1443
f85afd4e
MB
1444 void SetDefaultCellBackgroundColour( const wxColour& );
1445 void SetCellBackgroundColour( int row, int col, const wxColour& );
1446 void SetDefaultCellTextColour( const wxColour& );
8fb66724 1447
f85afd4e 1448 void SetCellTextColour( int row, int col, const wxColour& );
f85afd4e
MB
1449 void SetDefaultCellFont( const wxFont& );
1450 void SetCellFont( int row, int col, const wxFont& );
1451 void SetDefaultCellAlignment( int horiz, int vert );
1452 void SetCellAlignment( int row, int col, int horiz, int vert );
27f35b66
SN
1453 void SetDefaultCellOverflow( bool allow );
1454 void SetCellOverflow( int row, int col, bool allow );
1455 void SetCellSize( int row, int col, int num_rows, int num_cols );
f85afd4e 1456
ab79958a 1457 // takes ownership of the pointer
2796cce3 1458 void SetDefaultRenderer(wxGridCellRenderer *renderer);
ab79958a 1459 void SetCellRenderer(int row, int col, wxGridCellRenderer *renderer);
2796cce3
RD
1460 wxGridCellRenderer *GetDefaultRenderer() const;
1461 wxGridCellRenderer* GetCellRenderer(int row, int col);
1462
283b7808 1463 // takes ownership of the pointer
0ba143c9 1464 void SetDefaultEditor(wxGridCellEditor *editor);
9b4aede2 1465 void SetCellEditor(int row, int col, wxGridCellEditor *editor);
0ba143c9 1466 wxGridCellEditor *GetDefaultEditor() const;
9b4aede2
RD
1467 wxGridCellEditor* GetCellEditor(int row, int col);
1468
60a67569 1469
f2d76237 1470
f85afd4e
MB
1471 // ------ cell value accessors
1472 //
1473 wxString GetCellValue( int row, int col )
1474 {
1475 if ( m_table )
1476 {
1477 return m_table->GetValue( row, col );
1478 }
1479 else
1480 {
1481 return wxEmptyString;
1482 }
1483 }
1484
1485 wxString GetCellValue( const wxGridCellCoords& coords )
1486 { return GetCellValue( coords.GetRow(), coords.GetCol() ); }
60ff3b99 1487
f85afd4e
MB
1488 void SetCellValue( int row, int col, const wxString& s );
1489 void SetCellValue( const wxGridCellCoords& coords, const wxString& s )
1490 { SetCellValue( coords.GetRow(), coords.GetCol(), s ); }
f85afd4e 1491
ca65c044 1492 // returns true if the cell can't be edited
283b7808 1493 bool IsReadOnly(int row, int col) const;
60ff3b99 1494
283b7808 1495 // make the cell editable/readonly
ca65c044 1496 void SetReadOnly(int row, int col, bool isReadOnly = true);
f85afd4e 1497
aa5b8857 1498 // ------ select blocks of cells
f85afd4e 1499 //
ca65c044
WS
1500 void SelectRow( int row, bool addToSelected = false );
1501 void SelectCol( int col, bool addToSelected = false );
60ff3b99 1502
c9097836 1503 void SelectBlock( int topRow, int leftCol, int bottomRow, int rightCol,
ca65c044 1504 bool addToSelected = false );
f85afd4e
MB
1505
1506 void SelectBlock( const wxGridCellCoords& topLeft,
c9097836 1507 const wxGridCellCoords& bottomRight,
ca65c044 1508 bool addToSelected = false )
f85afd4e 1509 { SelectBlock( topLeft.GetRow(), topLeft.GetCol(),
c9097836
MB
1510 bottomRight.GetRow(), bottomRight.GetCol(),
1511 addToSelected ); }
f85afd4e
MB
1512
1513 void SelectAll();
60ff3b99 1514
b5808881 1515 bool IsSelection();
f85afd4e 1516
aa5b8857 1517 // ------ deselect blocks or cells
f7b4b343
VZ
1518 //
1519 void DeselectRow( int row );
1520 void DeselectCol( int col );
1521 void DeselectCell( int row, int col );
1522
f85afd4e
MB
1523 void ClearSelection();
1524
84035150 1525 bool IsInSelection( int row, int col ) const;
f85afd4e 1526
84035150 1527 bool IsInSelection( const wxGridCellCoords& coords ) const
f85afd4e
MB
1528 { return IsInSelection( coords.GetRow(), coords.GetCol() ); }
1529
aa5b8857
SN
1530 wxGridCellCoordsArray GetSelectedCells() const;
1531 wxGridCellCoordsArray GetSelectionBlockTopLeft() const;
1532 wxGridCellCoordsArray GetSelectionBlockBottomRight() const;
1533 wxArrayInt GetSelectedRows() const;
1534 wxArrayInt GetSelectedCols() const;
c3baf426
SN
1535
1536 // This function returns the rectangle that encloses the block of cells
1537 // limited by TopLeft and BottomRight cell in device coords and clipped
1538 // to the client size of the grid window.
1539 //
58dd5b3b 1540 wxRect BlockToDeviceRect( const wxGridCellCoords & topLeft,
b99be8fb 1541 const wxGridCellCoords & bottomRight );
c3baf426 1542
2796cce3
RD
1543 // Access or update the selection fore/back colours
1544 wxColour GetSelectionBackground() const
1545 { return m_selectionBackground; }
1546 wxColour GetSelectionForeground() const
1547 { return m_selectionForeground; }
1548
1549 void SetSelectionBackground(const wxColour& c) { m_selectionBackground = c; }
1550 void SetSelectionForeground(const wxColour& c) { m_selectionForeground = c; }
1551
1552
f2d76237
RD
1553 // Methods for a registry for mapping data types to Renderers/Editors
1554 void RegisterDataType(const wxString& typeName,
1555 wxGridCellRenderer* renderer,
1556 wxGridCellEditor* editor);
73145b0e
JS
1557 // DJC MAPTEK
1558 virtual wxGridCellEditor* GetDefaultEditorForCell(int row, int col) const;
99306db2
VZ
1559 wxGridCellEditor* GetDefaultEditorForCell(const wxGridCellCoords& c) const
1560 { return GetDefaultEditorForCell(c.GetRow(), c.GetCol()); }
73145b0e
JS
1561 virtual wxGridCellRenderer* GetDefaultRendererForCell(int row, int col) const;
1562 virtual wxGridCellEditor* GetDefaultEditorForType(const wxString& typeName) const;
1563 virtual wxGridCellRenderer* GetDefaultRendererForType(const wxString& typeName) const;
f2d76237 1564
266e8367
VZ
1565 // grid may occupy more space than needed for its rows/columns, this
1566 // function allows to set how big this extra space is
1567 void SetMargins(int extraWidth, int extraHeight)
1568 {
1569 m_extraWidth = extraWidth;
1570 m_extraHeight = extraHeight;
b8125adf
VZ
1571
1572 CalcDimensions();
266e8367 1573 }
f85afd4e 1574
d2520c85
RD
1575 // Accessors for component windows
1576 wxWindow* GetGridWindow() { return (wxWindow*)m_gridWin; }
1577 wxWindow* GetGridRowLabelWindow() { return (wxWindow*)m_rowLabelWin; }
1578 wxWindow* GetGridColLabelWindow() { return (wxWindow*)m_colLabelWin; }
1579 wxWindow* GetGridCornerLabelWindow() { return (wxWindow*)m_cornerLabelWin; }
1580
608754c4
JS
1581 // Allow adjustment of scroll increment. The default is (15, 15).
1582 void SetScrollLineX(int x) { m_scrollLineX = x; }
1583 void SetScrollLineY(int y) { m_scrollLineY = y; }
1584 int GetScrollLineX() const { return m_scrollLineX; }
1585 int GetScrollLineY() const { return m_scrollLineY; }
1586
1587 // Implementation
1588 int GetScrollX(int x) const
1589 {
1590 return (x + GetScrollLineX() - 1) / GetScrollLineX();
1591 }
1592
1593 int GetScrollY(int y) const
1594 {
1595 return (y + GetScrollLineY() - 1) / GetScrollLineY();
1596 }
d2520c85
RD
1597
1598
bf646121
VZ
1599 // override some base class functions
1600 virtual bool Enable(bool enable = true);
1601
1602
f85afd4e
MB
1603 // ------ For compatibility with previous wxGrid only...
1604 //
1605 // ************************************************
1606 // ** Don't use these in new code because they **
1607 // ** are liable to disappear in a future **
1608 // ** revision **
1609 // ************************************************
1610 //
1611
1612 wxGrid( wxWindow *parent,
422d0ff0 1613 int x, int y, int w = wxDefaultCoord, int h = wxDefaultCoord,
ebd773c6 1614 long style = wxWANTS_CHARS,
f85afd4e 1615 const wxString& name = wxPanelNameStr )
ca65c044 1616 : wxScrolledWindow( parent, wxID_ANY, wxPoint(x,y), wxSize(w,h),
ebd773c6 1617 (style|wxWANTS_CHARS), name )
60ff3b99 1618 {
f85afd4e 1619 Create();
60ff3b99 1620 }
f85afd4e
MB
1621
1622 void SetCellValue( const wxString& val, int row, int col )
1623 { SetCellValue( row, col, val ); }
60ff3b99 1624
f85afd4e
MB
1625 void UpdateDimensions()
1626 { CalcDimensions(); }
1627
1628 int GetRows() { return GetNumberRows(); }
1629 int GetCols() { return GetNumberCols(); }
1630 int GetCursorRow() { return GetGridCursorRow(); }
1631 int GetCursorColumn() { return GetGridCursorCol(); }
60ff3b99 1632
2d66e025
MB
1633 int GetScrollPosX() { return 0; }
1634 int GetScrollPosY() { return 0; }
60ff3b99 1635
aa5e1f75
SN
1636 void SetScrollX( int WXUNUSED(x) ) { }
1637 void SetScrollY( int WXUNUSED(y) ) { }
f85afd4e
MB
1638
1639 void SetColumnWidth( int col, int width )
1640 { SetColSize( col, width ); }
60ff3b99 1641
f85afd4e
MB
1642 int GetColumnWidth( int col )
1643 { return GetColSize( col ); }
60ff3b99 1644
f85afd4e
MB
1645 void SetRowHeight( int row, int height )
1646 { SetRowSize( row, height ); }
60ff3b99 1647
7c1cb261 1648 // GetRowHeight() is below
60ff3b99 1649
2d66e025
MB
1650 int GetViewHeight() // returned num whole rows visible
1651 { return 0; }
60ff3b99 1652
2d66e025
MB
1653 int GetViewWidth() // returned num whole cols visible
1654 { return 0; }
f85afd4e
MB
1655
1656 void SetLabelSize( int orientation, int sz )
1657 {
1658 if ( orientation == wxHORIZONTAL )
1659 SetColLabelSize( sz );
1660 else
1661 SetRowLabelSize( sz );
1662 }
1663
1664 int GetLabelSize( int orientation )
1665 {
1666 if ( orientation == wxHORIZONTAL )
1667 return GetColLabelSize();
1668 else
1669 return GetRowLabelSize();
1670 }
1671
1672 void SetLabelAlignment( int orientation, int align )
1673 {
1674 if ( orientation == wxHORIZONTAL )
1675 SetColLabelAlignment( align, -1 );
1676 else
1677 SetRowLabelAlignment( align, -1 );
1678 }
1679
af111fc3 1680 int GetLabelAlignment( int orientation, int WXUNUSED(align) )
f85afd4e
MB
1681 {
1682 int h, v;
1683 if ( orientation == wxHORIZONTAL )
1684 {
1685 GetColLabelAlignment( &h, &v );
1686 return h;
1687 }
1688 else
1689 {
1690 GetRowLabelAlignment( &h, &v );
1691 return h;
1692 }
1693 }
1694
1695 void SetLabelValue( int orientation, const wxString& val, int pos )
1696 {
1697 if ( orientation == wxHORIZONTAL )
1698 SetColLabelValue( pos, val );
1699 else
1700 SetRowLabelValue( pos, val );
1701 }
60ff3b99 1702
f85afd4e
MB
1703 wxString GetLabelValue( int orientation, int pos)
1704 {
1705 if ( orientation == wxHORIZONTAL )
1706 return GetColLabelValue( pos );
1707 else
1708 return GetRowLabelValue( pos );
1709 }
1710
60ff3b99 1711 wxFont GetCellTextFont() const
2796cce3 1712 { return m_defaultCellAttr->GetFont(); }
60ff3b99 1713
af111fc3 1714 wxFont GetCellTextFont(int WXUNUSED(row), int WXUNUSED(col)) const
2796cce3 1715 { return m_defaultCellAttr->GetFont(); }
60ff3b99 1716
f85afd4e
MB
1717 void SetCellTextFont(const wxFont& fnt)
1718 { SetDefaultCellFont( fnt ); }
60ff3b99 1719
f85afd4e
MB
1720 void SetCellTextFont(const wxFont& fnt, int row, int col)
1721 { SetCellFont( row, col, fnt ); }
60ff3b99 1722
f85afd4e
MB
1723 void SetCellTextColour(const wxColour& val, int row, int col)
1724 { SetCellTextColour( row, col, val ); }
60ff3b99 1725
f85afd4e
MB
1726 void SetCellTextColour(const wxColour& col)
1727 { SetDefaultCellTextColour( col ); }
60ff3b99 1728
f85afd4e
MB
1729 void SetCellBackgroundColour(const wxColour& col)
1730 { SetDefaultCellBackgroundColour( col ); }
60ff3b99 1731
f85afd4e
MB
1732 void SetCellBackgroundColour(const wxColour& colour, int row, int col)
1733 { SetCellBackgroundColour( row, col, colour ); }
60ff3b99 1734
f85afd4e 1735 bool GetEditable() { return IsEditable(); }
ca65c044 1736 void SetEditable( bool edit = true ) { EnableEditing( edit ); }
f85afd4e 1737 bool GetEditInPlace() { return IsCellEditControlEnabled(); }
8fb66724 1738
ca65c044 1739 void SetEditInPlace(bool WXUNUSED(edit) = true) { }
f85afd4e 1740
60a67569 1741 void SetCellAlignment( int align, int row, int col)
4c7277db 1742 { SetCellAlignment(row, col, align, wxALIGN_CENTER); }
60a67569
JS
1743 void SetCellAlignment( int WXUNUSED(align) ) {}
1744 void SetCellBitmap(wxBitmap *WXUNUSED(bitmap), int WXUNUSED(row), int WXUNUSED(col))
1745 { }
1746 void SetDividerPen(const wxPen& WXUNUSED(pen)) { }
6fc0f38f 1747 wxPen& GetDividerPen() const;
60a67569 1748 void OnActivate(bool WXUNUSED(active)) {}
60ff3b99 1749
f85afd4e
MB
1750 // ******** End of compatibility functions **********
1751
2d66e025
MB
1752
1753
f85afd4e 1754 // ------ control IDs
2d66e025 1755 enum { wxGRID_CELLCTRL = 2000,
f85afd4e
MB
1756 wxGRID_TOPCTRL };
1757
1758 // ------ control types
2d66e025 1759 enum { wxGRID_TEXTCTRL = 2100,
f85afd4e
MB
1760 wxGRID_CHECKBOX,
1761 wxGRID_CHOICE,
1762 wxGRID_COMBOBOX };
1763
266e8367
VZ
1764 // overridden wxWindow methods
1765 virtual void Fit();
1766
60ff3b99 1767protected:
266e8367
VZ
1768 virtual wxSize DoGetBestSize() const;
1769
60ff3b99
VZ
1770 bool m_created;
1771
1772 wxGridWindow *m_gridWin;
1773 wxGridRowLabelWindow *m_rowLabelWin;
1774 wxGridColLabelWindow *m_colLabelWin;
1775 wxGridCornerLabelWindow *m_cornerLabelWin;
1776
60ff3b99 1777 wxGridTableBase *m_table;
2796cce3 1778 bool m_ownTable;
60ff3b99 1779
60ff3b99
VZ
1780 int m_numRows;
1781 int m_numCols;
1782
1783 wxGridCellCoords m_currentCellCoords;
1784
b5808881
SN
1785 wxGridCellCoords m_selectingTopLeft;
1786 wxGridCellCoords m_selectingBottomRight;
d95b0c2b 1787 wxGridCellCoords m_selectingKeyboard;
b5808881 1788 wxGridSelection *m_selection;
2796cce3
RD
1789 wxColour m_selectionBackground;
1790 wxColour m_selectionForeground;
60ff3b99 1791
7c1cb261
VZ
1792 // NB: *never* access m_row/col arrays directly because they are created
1793 // on demand, *always* use accessor functions instead!
1794
1795 // init the m_rowHeights/Bottoms arrays with default values
1796 void InitRowHeights();
1797
60ff3b99 1798 int m_defaultRowHeight;
b8d24d4e 1799 int m_minAcceptableRowHeight;
60ff3b99
VZ
1800 wxArrayInt m_rowHeights;
1801 wxArrayInt m_rowBottoms;
1802
7c1cb261
VZ
1803 // init the m_colWidths/Rights arrays
1804 void InitColWidths();
1805
60ff3b99 1806 int m_defaultColWidth;
b8d24d4e 1807 int m_minAcceptableColWidth;
60ff3b99
VZ
1808 wxArrayInt m_colWidths;
1809 wxArrayInt m_colRights;
7c1cb261
VZ
1810
1811 // get the col/row coords
1812 int GetColWidth(int col) const;
1813 int GetColLeft(int col) const;
1814 int GetColRight(int col) const;
1815
1816 // this function must be public for compatibility...
1817public:
1818 int GetRowHeight(int row) const;
1819protected:
1820
1821 int GetRowTop(int row) const;
1822 int GetRowBottom(int row) const;
1823
60ff3b99
VZ
1824 int m_rowLabelWidth;
1825 int m_colLabelHeight;
1826
266e8367
VZ
1827 // the size of the margin left to the right and bottom of the cell area
1828 int m_extraWidth,
1829 m_extraHeight;
1830
60ff3b99
VZ
1831 wxColour m_labelBackgroundColour;
1832 wxColour m_labelTextColour;
1833 wxFont m_labelFont;
1834
1835 int m_rowLabelHorizAlign;
1836 int m_rowLabelVertAlign;
1837 int m_colLabelHorizAlign;
1838 int m_colLabelVertAlign;
d43851f7 1839 int m_colLabelTextOrientation;
60ff3b99
VZ
1840
1841 bool m_defaultRowLabelValues;
1842 bool m_defaultColLabelValues;
1843
1844 wxColour m_gridLineColour;
1845 bool m_gridLinesEnabled;
f6bcfd97 1846 wxColour m_cellHighlightColour;
d2520c85
RD
1847 int m_cellHighlightPenWidth;
1848 int m_cellHighlightROPenWidth;
1849
60ff3b99 1850
266e8367 1851 // common part of AutoSizeColumn/Row() and GetBestSize()
ca65c044
WS
1852 int SetOrCalcColumnSizes(bool calcOnly, bool setAsMin = true);
1853 int SetOrCalcRowSizes(bool calcOnly, bool setAsMin = true);
266e8367 1854
af547d51
VZ
1855 // common part of AutoSizeColumn/Row()
1856 void AutoSizeColOrRow(int n, bool setAsMin, bool column /* or row? */);
1857
43947979
VZ
1858 // if a column has a minimal width, it will be the value for it in this
1859 // hash table
ba8c1601
MB
1860 wxLongToLongHashMap m_colMinWidths,
1861 m_rowMinHeights;
43947979 1862
af547d51
VZ
1863 // get the minimal width of the given column/row
1864 int GetColMinimalWidth(int col) const;
1865 int GetRowMinimalHeight(int col) const;
b99be8fb
VZ
1866
1867 // do we have some place to store attributes in?
1868 bool CanHaveAttributes();
60ff3b99 1869
0a976765
VZ
1870 // cell attribute cache (currently we only cache 1, may be will do
1871 // more/better later)
1872 struct CachedAttr
1873 {
1874 int row, col;
1875 wxGridCellAttr *attr;
1876 } m_attrCache;
1877
1878 // invalidates the attribute cache
1879 void ClearAttrCache();
1880
1881 // adds an attribute to cache
1882 void CacheAttr(int row, int col, wxGridCellAttr *attr) const;
1883
ca65c044 1884 // looks for an attr in cache, returns true if found
0a976765
VZ
1885 bool LookupAttr(int row, int col, wxGridCellAttr **attr) const;
1886
1887 // looks for the attr in cache, if not found asks the table and caches the
1888 // result
2e9a6788 1889 wxGridCellAttr *GetCellAttr(int row, int col) const;
2c9a89e0
RD
1890 wxGridCellAttr *GetCellAttr(const wxGridCellCoords& coords )
1891 { return GetCellAttr( coords.GetRow(), coords.GetCol() ); }
2e9a6788 1892
2796cce3
RD
1893 // the default cell attr object for cells that don't have their own
1894 wxGridCellAttr* m_defaultCellAttr;
1895
1896
60ff3b99
VZ
1897 bool m_inOnKeyDown;
1898 int m_batchCount;
1899
f2d76237
RD
1900
1901 wxGridTypeRegistry* m_typeRegistry;
1902
e2b42eeb
VZ
1903 enum CursorMode
1904 {
1905 WXGRID_CURSOR_SELECT_CELL,
1906 WXGRID_CURSOR_RESIZE_ROW,
1907 WXGRID_CURSOR_RESIZE_COL,
1908 WXGRID_CURSOR_SELECT_ROW,
d4175745
VZ
1909 WXGRID_CURSOR_SELECT_COL,
1910 WXGRID_CURSOR_MOVE_COL
60ff3b99
VZ
1911 };
1912
e2b42eeb 1913 // this method not only sets m_cursorMode but also sets the correct cursor
ca65c044 1914 // for the given mode and, if captureMouse is not false releases the mouse
e2b42eeb
VZ
1915 // if it was captured and captures it if it must be captured
1916 //
1917 // for this to work, you should always use it and not set m_cursorMode
1918 // directly!
1919 void ChangeCursorMode(CursorMode mode,
1920 wxWindow *win = (wxWindow *)NULL,
ca65c044 1921 bool captureMouse = true);
e2b42eeb
VZ
1922
1923 wxWindow *m_winCapture; // the window which captured the mouse
1924 CursorMode m_cursorMode;
1925
d4175745
VZ
1926 //Column positions
1927 wxArrayInt m_colAt;
1928 int m_moveToCol;
1929
6e8524b1
MB
1930 bool m_canDragRowSize;
1931 bool m_canDragColSize;
d4175745 1932 bool m_canDragColMove;
4cfa5de6 1933 bool m_canDragGridSize;
79dbea21 1934 bool m_canDragCell;
07296f0b
RD
1935 int m_dragLastPos;
1936 int m_dragRowOrCol;
1937 bool m_isDragging;
1938 wxPoint m_startDragPos;
60ff3b99 1939
75ecbe45 1940 bool m_waitForSlowClick;
025562fe 1941
60ff3b99
VZ
1942 wxGridCellCoords m_selectionStart;
1943
1944 wxCursor m_rowResizeCursor;
1945 wxCursor m_colResizeCursor;
1946
b54ba671
VZ
1947 bool m_editable; // applies to whole grid
1948 bool m_cellEditCtrlEnabled; // is in-place edit currently shown?
60ff3b99 1949
608754c4
JS
1950 int m_scrollLineX; // X scroll increment
1951 int m_scrollLineY; // Y scroll increment
60ff3b99
VZ
1952
1953 void Create();
1954 void Init();
1955 void CalcDimensions();
7807d81c 1956 void CalcWindowSizes();
60ff3b99
VZ
1957 bool Redimension( wxGridTableMessage& );
1958
1959
fe7b9ed6
VZ
1960 int SendEvent( const wxEventType, int row, int col, wxMouseEvent& );
1961 int SendEvent( const wxEventType, int row, int col );
1962 int SendEvent( const wxEventType type)
b54ba671
VZ
1963 {
1964 return SendEvent(type,
1965 m_currentCellCoords.GetRow(),
1966 m_currentCellCoords.GetCol());
1967 }
60ff3b99
VZ
1968
1969 void OnPaint( wxPaintEvent& );
1970 void OnSize( wxSizeEvent& );
1971 void OnKeyDown( wxKeyEvent& );
f6bcfd97 1972 void OnKeyUp( wxKeyEvent& );
63e2147c 1973 void OnChar( wxKeyEvent& );
2796cce3 1974 void OnEraseBackground( wxEraseEvent& );
60ff3b99
VZ
1975
1976
1977 void SetCurrentCell( const wxGridCellCoords& coords );
1978 void SetCurrentCell( int row, int col )
1979 { SetCurrentCell( wxGridCellCoords(row, col) ); }
1980
c9097836
MB
1981 void HighlightBlock( int topRow, int leftCol, int bottomRow, int rightCol );
1982
1983 void HighlightBlock( const wxGridCellCoords& topLeft,
d2520c85 1984 const wxGridCellCoords& bottomRight )
c9097836
MB
1985 { HighlightBlock( topLeft.GetRow(), topLeft.GetCol(),
1986 bottomRight.GetRow(), bottomRight.GetCol() ); }
60ff3b99
VZ
1987
1988 // ------ functions to get/send data (see also public functions)
1989 //
1990 bool GetModelValues();
1991 bool SetModelValues();
1992
12f190b0 1993 friend class WXDLLIMPEXP_ADV wxGridSelection;
60ff3b99 1994
2d66e025 1995 DECLARE_DYNAMIC_CLASS( wxGrid )
f85afd4e 1996 DECLARE_EVENT_TABLE()
22f3361e 1997 DECLARE_NO_COPY_CLASS(wxGrid)
f85afd4e
MB
1998};
1999
b8d24d4e 2000
43947979
VZ
2001// ----------------------------------------------------------------------------
2002// Grid event class and event types
2003// ----------------------------------------------------------------------------
f85afd4e 2004
12f190b0 2005class WXDLLIMPEXP_ADV wxGridEvent : public wxNotifyEvent
f85afd4e 2006{
60ff3b99 2007public:
f85afd4e
MB
2008 wxGridEvent()
2009 : wxNotifyEvent(), m_row(-1), m_col(-1), m_x(-1), m_y(-1),
5c8fc7c1 2010 m_selecting(0), m_control(0), m_meta(0), m_shift(0), m_alt(0)
f85afd4e
MB
2011 {
2012 }
2013
2014 wxGridEvent(int id, wxEventType type, wxObject* obj,
ca65c044
WS
2015 int row=-1, int col=-1, int x=-1, int y=-1, bool sel = true,
2016 bool control = false, bool shift = false, bool alt = false, bool meta = false);
f85afd4e
MB
2017
2018 virtual int GetRow() { return m_row; }
2019 virtual int GetCol() { return m_col; }
2020 wxPoint GetPosition() { return wxPoint( m_x, m_y ); }
5c8fc7c1 2021 bool Selecting() { return m_selecting; }
f85afd4e
MB
2022 bool ControlDown() { return m_control; }
2023 bool MetaDown() { return m_meta; }
2024 bool ShiftDown() { return m_shift; }
2025 bool AltDown() { return m_alt; }
d4175745 2026 bool CmdDown()
2b01fd49
RD
2027 {
2028#if defined(__WXMAC__) || defined(__WXCOCOA__)
2029 return MetaDown();
2030#else
2031 return ControlDown();
2032#endif
2033 }
2d66e025 2034
60ff3b99
VZ
2035protected:
2036 int m_row;
2037 int m_col;
f85afd4e
MB
2038 int m_x;
2039 int m_y;
5c8fc7c1 2040 bool m_selecting;
f85afd4e
MB
2041 bool m_control;
2042 bool m_meta;
2043 bool m_shift;
2044 bool m_alt;
60ff3b99 2045
fc7a2a60 2046 DECLARE_DYNAMIC_CLASS_NO_COPY(wxGridEvent)
60ff3b99
VZ
2047};
2048
12f190b0 2049class WXDLLIMPEXP_ADV wxGridSizeEvent : public wxNotifyEvent
60ff3b99
VZ
2050{
2051public:
f85afd4e
MB
2052 wxGridSizeEvent()
2053 : wxNotifyEvent(), m_rowOrCol(-1), m_x(-1), m_y(-1),
2054 m_control(0), m_meta(0), m_shift(0), m_alt(0)
2055 {
2056 }
2057
2058 wxGridSizeEvent(int id, wxEventType type, wxObject* obj,
2059 int rowOrCol=-1, int x=-1, int y=-1,
ca65c044 2060 bool control = false, bool shift = false, bool alt = false, bool meta = false);
f85afd4e
MB
2061
2062 int GetRowOrCol() { return m_rowOrCol; }
2063 wxPoint GetPosition() { return wxPoint( m_x, m_y ); }
2064 bool ControlDown() { return m_control; }
2065 bool MetaDown() { return m_meta; }
2066 bool ShiftDown() { return m_shift; }
2067 bool AltDown() { return m_alt; }
d4175745 2068 bool CmdDown()
2b01fd49
RD
2069 {
2070#if defined(__WXMAC__) || defined(__WXCOCOA__)
2071 return MetaDown();
2072#else
2073 return ControlDown();
2074#endif
2075 }
2d66e025 2076
60ff3b99
VZ
2077protected:
2078 int m_rowOrCol;
2079 int m_x;
2080 int m_y;
2081 bool m_control;
2082 bool m_meta;
2083 bool m_shift;
2084 bool m_alt;
2085
fc7a2a60 2086 DECLARE_DYNAMIC_CLASS_NO_COPY(wxGridSizeEvent)
f85afd4e
MB
2087};
2088
2089
12f190b0 2090class WXDLLIMPEXP_ADV wxGridRangeSelectEvent : public wxNotifyEvent
f85afd4e 2091{
60ff3b99 2092public:
f85afd4e 2093 wxGridRangeSelectEvent()
60ff3b99
VZ
2094 : wxNotifyEvent()
2095 {
2096 m_topLeft = wxGridNoCellCoords;
2097 m_bottomRight = wxGridNoCellCoords;
ca65c044
WS
2098 m_selecting = false;
2099 m_control = false;
2100 m_meta = false;
2101 m_shift = false;
2102 m_alt = false;
60ff3b99 2103 }
f85afd4e
MB
2104
2105 wxGridRangeSelectEvent(int id, wxEventType type, wxObject* obj,
60ff3b99
VZ
2106 const wxGridCellCoords& topLeft,
2107 const wxGridCellCoords& bottomRight,
ca65c044
WS
2108 bool sel = true,
2109 bool control = false, bool shift = false,
2110 bool alt = false, bool meta = false);
f85afd4e
MB
2111
2112 wxGridCellCoords GetTopLeftCoords() { return m_topLeft; }
2113 wxGridCellCoords GetBottomRightCoords() { return m_bottomRight; }
2114 int GetTopRow() { return m_topLeft.GetRow(); }
2115 int GetBottomRow() { return m_bottomRight.GetRow(); }
2116 int GetLeftCol() { return m_topLeft.GetCol(); }
2117 int GetRightCol() { return m_bottomRight.GetCol(); }
5c8fc7c1 2118 bool Selecting() { return m_selecting; }
f85afd4e
MB
2119 bool ControlDown() { return m_control; }
2120 bool MetaDown() { return m_meta; }
2121 bool ShiftDown() { return m_shift; }
2122 bool AltDown() { return m_alt; }
d4175745 2123 bool CmdDown()
2b01fd49
RD
2124 {
2125#if defined(__WXMAC__) || defined(__WXCOCOA__)
2126 return MetaDown();
2127#else
2128 return ControlDown();
2129#endif
2130 }
2d66e025 2131
60ff3b99
VZ
2132protected:
2133 wxGridCellCoords m_topLeft;
2134 wxGridCellCoords m_bottomRight;
5c8fc7c1 2135 bool m_selecting;
60ff3b99
VZ
2136 bool m_control;
2137 bool m_meta;
2138 bool m_shift;
2139 bool m_alt;
2140
fc7a2a60 2141 DECLARE_DYNAMIC_CLASS_NO_COPY(wxGridRangeSelectEvent)
f85afd4e
MB
2142};
2143
bf7945ce 2144
12f190b0 2145class WXDLLIMPEXP_ADV wxGridEditorCreatedEvent : public wxCommandEvent {
bf7945ce
RD
2146public:
2147 wxGridEditorCreatedEvent()
2148 : wxCommandEvent()
2149 {
2150 m_row = 0;
2151 m_col = 0;
2152 m_ctrl = NULL;
2153 }
2154
2155 wxGridEditorCreatedEvent(int id, wxEventType type, wxObject* obj,
2156 int row, int col, wxControl* ctrl);
2157
2158 int GetRow() { return m_row; }
2159 int GetCol() { return m_col; }
2160 wxControl* GetControl() { return m_ctrl; }
2161 void SetRow(int row) { m_row = row; }
2162 void SetCol(int col) { m_col = col; }
2163 void SetControl(wxControl* ctrl) { m_ctrl = ctrl; }
2164
2165private:
2166 int m_row;
2167 int m_col;
2168 wxControl* m_ctrl;
2169
2170 DECLARE_DYNAMIC_CLASS(wxGridEditorCreatedEvent)
22f3361e 2171 DECLARE_NO_COPY_CLASS(wxGridEditorCreatedEvent)
bf7945ce
RD
2172};
2173
2174
2e4df4bf 2175BEGIN_DECLARE_EVENT_TYPES()
12f190b0
VS
2176 DECLARE_EXPORTED_EVENT_TYPE(WXDLLIMPEXP_ADV, wxEVT_GRID_CELL_LEFT_CLICK, 1580)
2177 DECLARE_EXPORTED_EVENT_TYPE(WXDLLIMPEXP_ADV, wxEVT_GRID_CELL_RIGHT_CLICK, 1581)
2178 DECLARE_EXPORTED_EVENT_TYPE(WXDLLIMPEXP_ADV, wxEVT_GRID_CELL_LEFT_DCLICK, 1582)
2179 DECLARE_EXPORTED_EVENT_TYPE(WXDLLIMPEXP_ADV, wxEVT_GRID_CELL_RIGHT_DCLICK, 1583)
2180 DECLARE_EXPORTED_EVENT_TYPE(WXDLLIMPEXP_ADV, wxEVT_GRID_LABEL_LEFT_CLICK, 1584)
2181 DECLARE_EXPORTED_EVENT_TYPE(WXDLLIMPEXP_ADV, wxEVT_GRID_LABEL_RIGHT_CLICK, 1585)
2182 DECLARE_EXPORTED_EVENT_TYPE(WXDLLIMPEXP_ADV, wxEVT_GRID_LABEL_LEFT_DCLICK, 1586)
2183 DECLARE_EXPORTED_EVENT_TYPE(WXDLLIMPEXP_ADV, wxEVT_GRID_LABEL_RIGHT_DCLICK, 1587)
2184 DECLARE_EXPORTED_EVENT_TYPE(WXDLLIMPEXP_ADV, wxEVT_GRID_ROW_SIZE, 1588)
2185 DECLARE_EXPORTED_EVENT_TYPE(WXDLLIMPEXP_ADV, wxEVT_GRID_COL_SIZE, 1589)
2186 DECLARE_EXPORTED_EVENT_TYPE(WXDLLIMPEXP_ADV, wxEVT_GRID_RANGE_SELECT, 1590)
2187 DECLARE_EXPORTED_EVENT_TYPE(WXDLLIMPEXP_ADV, wxEVT_GRID_CELL_CHANGE, 1591)
2188 DECLARE_EXPORTED_EVENT_TYPE(WXDLLIMPEXP_ADV, wxEVT_GRID_SELECT_CELL, 1592)
2189 DECLARE_EXPORTED_EVENT_TYPE(WXDLLIMPEXP_ADV, wxEVT_GRID_EDITOR_SHOWN, 1593)
2190 DECLARE_EXPORTED_EVENT_TYPE(WXDLLIMPEXP_ADV, wxEVT_GRID_EDITOR_HIDDEN, 1594)
2191 DECLARE_EXPORTED_EVENT_TYPE(WXDLLIMPEXP_ADV, wxEVT_GRID_EDITOR_CREATED, 1595)
79dbea21 2192 DECLARE_EXPORTED_EVENT_TYPE(WXDLLIMPEXP_ADV, wxEVT_GRID_CELL_BEGIN_DRAG, 1596)
2e4df4bf 2193END_DECLARE_EVENT_TYPES()
749692cc 2194
f85afd4e
MB
2195
2196typedef void (wxEvtHandler::*wxGridEventFunction)(wxGridEvent&);
2197typedef void (wxEvtHandler::*wxGridSizeEventFunction)(wxGridSizeEvent&);
2198typedef void (wxEvtHandler::*wxGridRangeSelectEventFunction)(wxGridRangeSelectEvent&);
bf7945ce 2199typedef void (wxEvtHandler::*wxGridEditorCreatedEventFunction)(wxGridEditorCreatedEvent&);
f85afd4e 2200
7fa03f04 2201#define wxGridEventHandler(func) \
d94c09cd 2202 (wxObjectEventFunction)(wxEventFunction)wxStaticCastEvent(wxGridEventFunction, &func)
7fa03f04
VZ
2203
2204#define wxGridSizeEventHandler(func) \
d94c09cd 2205 (wxObjectEventFunction)(wxEventFunction)wxStaticCastEvent(wxGridSizeEventFunction, &func)
7fa03f04
VZ
2206
2207#define wxGridRangeSelectEventHandler(func) \
d94c09cd 2208 (wxObjectEventFunction)(wxEventFunction)wxStaticCastEvent(wxGridRangeSelectEventFunction, &func)
7fa03f04
VZ
2209
2210#define wxGridEditorCreatedEventHandler(func) \
d94c09cd 2211 (wxObjectEventFunction)(wxEventFunction)wxStaticCastEvent(wxGridEditorCreatedEventFunction, &func)
7fa03f04
VZ
2212
2213#define wx__DECLARE_GRIDEVT(evt, id, fn) \
2214 wx__DECLARE_EVT1(wxEVT_GRID_ ## evt, id, wxGridEventHandler(fn))
2215
2216#define wx__DECLARE_GRIDSIZEEVT(evt, id, fn) \
2217 wx__DECLARE_EVT1(wxEVT_GRID_ ## evt, id, wxGridSizeEventHandler(fn))
2218
2219#define wx__DECLARE_GRIDRANGESELEVT(evt, id, fn) \
2220 wx__DECLARE_EVT1(wxEVT_GRID_ ## evt, id, wxGridRangeSelectEventHandler(fn))
2221
2222#define wx__DECLARE_GRIDEDITOREVT(evt, id, fn) \
2223 wx__DECLARE_EVT1(wxEVT_GRID_ ## evt, id, wxGridEditorCreatedEventHandler(fn))
2224
2225#define EVT_GRID_CMD_CELL_LEFT_CLICK(id, fn) wx__DECLARE_GRIDEVT(CELL_LEFT_CLICK, id, fn)
2226#define EVT_GRID_CMD_CELL_RIGHT_CLICK(id, fn) wx__DECLARE_GRIDEVT(CELL_RIGHT_CLICK, id, fn)
2227#define EVT_GRID_CMD_CELL_LEFT_DCLICK(id, fn) wx__DECLARE_GRIDEVT(CELL_LEFT_DCLICK, id, fn)
2228#define EVT_GRID_CMD_CELL_RIGHT_DCLICK(id, fn) wx__DECLARE_GRIDEVT(CELL_RIGHT_DCLICK, id, fn)
2229#define EVT_GRID_CMD_LABEL_LEFT_CLICK(id, fn) wx__DECLARE_GRIDEVT(LABEL_LEFT_CLICK, id, fn)
2230#define EVT_GRID_CMD_LABEL_RIGHT_CLICK(id, fn) wx__DECLARE_GRIDEVT(LABEL_RIGHT_CLICK, id, fn)
2231#define EVT_GRID_CMD_LABEL_LEFT_DCLICK(id, fn) wx__DECLARE_GRIDEVT(LABEL_LEFT_DCLICK, id, fn)
2232#define EVT_GRID_CMD_LABEL_RIGHT_DCLICK(id, fn) wx__DECLARE_GRIDEVT(LABEL_RIGHT_DCLICK, id, fn)
2233#define EVT_GRID_CMD_ROW_SIZE(id, fn) wx__DECLARE_GRIDSIZEEVT(ROW_SIZE, id, fn)
2234#define EVT_GRID_CMD_COL_SIZE(id, fn) wx__DECLARE_GRIDSIZEEVT(COL_SIZE, id, fn)
2235#define EVT_GRID_CMD_RANGE_SELECT(id, fn) wx__DECLARE_GRIDRANGESELEVT(RANGE_SELECT, id, fn)
2236#define EVT_GRID_CMD_CELL_CHANGE(id, fn) wx__DECLARE_GRIDEVT(CELL_CHANGE, id, fn)
2237#define EVT_GRID_CMD_SELECT_CELL(id, fn) wx__DECLARE_GRIDEVT(SELECT_CELL, id, fn)
2238#define EVT_GRID_CMD_EDITOR_SHOWN(id, fn) wx__DECLARE_GRIDEVT(EDITOR_SHOWN, id, fn)
2239#define EVT_GRID_CMD_EDITOR_HIDDEN(id, fn) wx__DECLARE_GRIDEVT(EDITOR_HIDDEN, id, fn)
2240#define EVT_GRID_CMD_EDITOR_CREATED(id, fn) wx__DECLARE_GRIDEDITOREVT(EDITOR_CREATED, id, fn)
2241#define EVT_GRID_CMD_CELL_BEGIN_DRAG(id, fn) wx__DECLARE_GRIDEVT(CELL_BEGIN_DRAG, id, fn)
2242
2243// same as above but for any id (exists mainly for backwards compatibility but
2244// then it's also true that you rarely have multiple grid in the same window)
2245#define EVT_GRID_CELL_LEFT_CLICK(fn) EVT_GRID_CMD_CELL_LEFT_CLICK(wxID_ANY, fn)
2246#define EVT_GRID_CELL_RIGHT_CLICK(fn) EVT_GRID_CMD_CELL_RIGHT_CLICK(wxID_ANY, fn)
2247#define EVT_GRID_CELL_LEFT_DCLICK(fn) EVT_GRID_CMD_CELL_LEFT_DCLICK(wxID_ANY, fn)
2248#define EVT_GRID_CELL_RIGHT_DCLICK(fn) EVT_GRID_CMD_CELL_RIGHT_DCLICK(wxID_ANY, fn)
2249#define EVT_GRID_LABEL_LEFT_CLICK(fn) EVT_GRID_CMD_LABEL_LEFT_CLICK(wxID_ANY, fn)
2250#define EVT_GRID_LABEL_RIGHT_CLICK(fn) EVT_GRID_CMD_LABEL_RIGHT_CLICK(wxID_ANY, fn)
2251#define EVT_GRID_LABEL_LEFT_DCLICK(fn) EVT_GRID_CMD_LABEL_LEFT_DCLICK(wxID_ANY, fn)
2252#define EVT_GRID_LABEL_RIGHT_DCLICK(fn) EVT_GRID_CMD_LABEL_RIGHT_DCLICK(wxID_ANY, fn)
2253#define EVT_GRID_ROW_SIZE(fn) EVT_GRID_CMD_ROW_SIZE(wxID_ANY, fn)
2254#define EVT_GRID_COL_SIZE(fn) EVT_GRID_CMD_COL_SIZE(wxID_ANY, fn)
2255#define EVT_GRID_RANGE_SELECT(fn) EVT_GRID_CMD_RANGE_SELECT(wxID_ANY, fn)
2256#define EVT_GRID_CELL_CHANGE(fn) EVT_GRID_CMD_CELL_CHANGE(wxID_ANY, fn)
2257#define EVT_GRID_SELECT_CELL(fn) EVT_GRID_CMD_SELECT_CELL(wxID_ANY, fn)
2258#define EVT_GRID_EDITOR_SHOWN(fn) EVT_GRID_CMD_EDITOR_SHOWN(wxID_ANY, fn)
2259#define EVT_GRID_EDITOR_HIDDEN(fn) EVT_GRID_CMD_EDITOR_HIDDEN(wxID_ANY, fn)
2260#define EVT_GRID_EDITOR_CREATED(fn) EVT_GRID_CMD_EDITOR_CREATED(wxID_ANY, fn)
2261#define EVT_GRID_CELL_BEGIN_DRAG(fn) EVT_GRID_CMD_CELL_BEGIN_DRAG(wxID_ANY, fn)
f85afd4e
MB
2262
2263#if 0 // TODO: implement these ? others ?
2264
77d4384e
RR
2265extern const int wxEVT_GRID_CREATE_CELL;
2266extern const int wxEVT_GRID_CHANGE_LABELS;
2267extern const int wxEVT_GRID_CHANGE_SEL_LABEL;
f85afd4e 2268
ca65c044
WS
2269#define EVT_GRID_CREATE_CELL(fn) DECLARE_EVENT_TABLE_ENTRY( wxEVT_GRID_CREATE_CELL, wxID_ANY, wxID_ANY, (wxObjectEventFunction) (wxEventFunction) wxStaticCastEvent( wxGridEventFunction, &fn ), NULL ),
2270#define EVT_GRID_CHANGE_LABELS(fn) DECLARE_EVENT_TABLE_ENTRY( wxEVT_GRID_CHANGE_LABELS, wxID_ANY, wxID_ANY, (wxObjectEventFunction) (wxEventFunction) wxStaticCastEvent( wxGridEventFunction, &fn ), NULL ),
2271#define EVT_GRID_CHANGE_SEL_LABEL(fn) DECLARE_EVENT_TABLE_ENTRY( wxEVT_GRID_CHANGE_SEL_LABEL, wxID_ANY, wxID_ANY, (wxObjectEventFunction) (wxEventFunction) wxStaticCastEvent( wxGridEventFunction, &fn ), NULL ),
f85afd4e
MB
2272
2273#endif
2274
f7556ff0 2275#endif // ifndef wxUSE_GRID
f85afd4e 2276