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