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