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