]> git.saurik.com Git - wxWidgets.git/blob - wxPython/src/grid.i
in unicode mode the return value of gridtable.GetValue must be a
[wxWidgets.git] / wxPython / src / grid.i
1 ////////////////////////////////////////////////////////////////////////////
2 // Name: grid.i
3 // Purpose: SWIG definitions for the new wxGrid and related classes
4 //
5 // Author: Robin Dunn
6 //
7 // Created: 17-March-2000
8 // RCS-ID: $Id$
9 // Copyright: (c) 2000 by Total Control Software
10 // Licence: wxWindows license
11 /////////////////////////////////////////////////////////////////////////////
12
13 %define DOCSTRING
14 "Classes for implementing a spreadsheet-like control."
15 %enddef
16
17 %module(package="wx", docstring=DOCSTRING) grid
18
19
20 %{
21 #include "wx/wxPython/wxPython.h"
22 #include "wx/wxPython/pyclasses.h"
23 #include "wx/wxPython/printfw.h"
24
25 #include <wx/grid.h>
26 #include <wx/generic/gridctrl.h>
27
28 %}
29
30
31 //---------------------------------------------------------------------------
32
33 %import windows.i
34 %pythoncode { wx = _core }
35 %pythoncode { __docfilter__ = wx.__DocFilter(globals()) }
36
37
38 %include _grid_rename.i
39
40 MAKE_CONST_WXSTRING_NOSWIG(EmptyString);
41 MAKE_CONST_WXSTRING_NOSWIG(PanelNameStr);
42 MAKE_CONST_WXSTRING2(DateTimeFormatStr, wxT("%c"));
43
44
45 //---------------------------------------------------------------------------
46 // OOR related typemaps and helper functions
47
48 %typemap(out) wxGridCellRenderer* { $result = wxPyMake_wxGridCellRenderer($1); }
49 %typemap(out) wxGridCellEditor* { $result = wxPyMake_wxGridCellEditor($1); }
50 %typemap(out) wxGridCellAttr* { $result = wxPyMake_wxGridCellAttr($1); }
51 %typemap(out) wxGridCellAttrProvider* { $result = wxPyMake_wxGridCellAttrProvider($1); }
52 %typemap(out) wxGridTableBase* { $result = wxPyMake_wxGridTableBase($1); }
53
54
55 %{
56
57 #define wxPyMake_TEMPLATE(TYPE) \
58 PyObject* wxPyMake_##TYPE(TYPE* source) { \
59 PyObject* target = NULL; \
60 if (source) { \
61 /* Check if there is already a pointer to a Python object in the \
62 OOR data that we can use. */ \
63 wxPyOORClientData* data = (wxPyOORClientData*)source->GetClientObject(); \
64 if (data) { \
65 target = data->m_obj; \
66 Py_INCREF(target); \
67 } \
68 /* Otherwise make a new wrapper for it the old fashioned way and \
69 give it the OOR treatment */ \
70 if (! target) { \
71 target = wxPyConstructObject(source, wxT(#TYPE), False); \
72 if (target) \
73 source->SetClientObject(new wxPyOORClientData(target)); \
74 } \
75 } else { /* source was NULL so return None. */ \
76 Py_INCREF(Py_None); target = Py_None; \
77 } \
78 return target; \
79 } \
80
81
82 wxPyMake_TEMPLATE(wxGridCellRenderer)
83 wxPyMake_TEMPLATE(wxGridCellEditor)
84 wxPyMake_TEMPLATE(wxGridCellAttr)
85 wxPyMake_TEMPLATE(wxGridCellAttrProvider)
86 wxPyMake_TEMPLATE(wxGridTableBase)
87
88 %}
89
90 //---------------------------------------------------------------------------
91 // Macros, similar to what's in helpers.h, to aid in the creation of
92 // virtual methods that are able to make callbacks to Python. Many of these
93 // are specific to wxGrid and so are kept here to reduce the mess in helpers.h
94 // a bit.
95
96
97 %{
98 #define PYCALLBACK_GCA_INTINTKIND(PCLASS, CBNAME) \
99 wxGridCellAttr* CBNAME(int a, int b, wxGridCellAttr::wxAttrKind c) { \
100 wxGridCellAttr* rval = NULL; \
101 bool found; \
102 bool blocked = wxPyBeginBlockThreads(); \
103 if ((found = wxPyCBH_findCallback(m_myInst, #CBNAME))) { \
104 PyObject* ro; \
105 wxGridCellAttr* ptr; \
106 ro = wxPyCBH_callCallbackObj(m_myInst, Py_BuildValue("(iii)", a, b, c)); \
107 if (ro) { \
108 if (wxPyConvertSwigPtr(ro, (void **)&ptr, wxT("wxGridCellAttr"))) \
109 rval = ptr; \
110 Py_DECREF(ro); \
111 } \
112 } \
113 wxPyEndBlockThreads(blocked); \
114 if (! found) \
115 rval = PCLASS::CBNAME(a, b, c); \
116 return rval; \
117 } \
118 wxGridCellAttr *base_##CBNAME(int a, int b, wxGridCellAttr::wxAttrKind c) { \
119 return PCLASS::CBNAME(a, b, c); \
120 }
121
122
123
124 #define PYCALLBACK__GCAINTINT(PCLASS, CBNAME) \
125 void CBNAME(wxGridCellAttr *attr, int a, int b) { \
126 bool blocked = wxPyBeginBlockThreads(); \
127 bool found; \
128 if ((found = wxPyCBH_findCallback(m_myInst, #CBNAME))) { \
129 PyObject* obj = wxPyMake_wxGridCellAttr(attr); \
130 wxPyCBH_callCallback(m_myInst, Py_BuildValue("(Oii)", obj, a, b)); \
131 Py_DECREF(obj); \
132 } \
133 wxPyEndBlockThreads(blocked); \
134 if (! found) \
135 PCLASS::CBNAME(attr, a, b); \
136 } \
137 void base_##CBNAME(wxGridCellAttr *attr, int a, int b) { \
138 PCLASS::CBNAME(attr, a, b); \
139 }
140
141
142
143 #define PYCALLBACK__GCAINT(PCLASS, CBNAME) \
144 void CBNAME(wxGridCellAttr *attr, int val) { \
145 bool blocked = wxPyBeginBlockThreads(); \
146 bool found; \
147 if ((found = wxPyCBH_findCallback(m_myInst, #CBNAME))) { \
148 PyObject* obj = wxPyMake_wxGridCellAttr(attr); \
149 wxPyCBH_callCallback(m_myInst, Py_BuildValue("(Oi)", obj, val)); \
150 Py_DECREF(obj); \
151 } \
152 wxPyEndBlockThreads(blocked); \
153 if (! found) \
154 PCLASS::CBNAME(attr, val); \
155 } \
156 void base_##CBNAME(wxGridCellAttr *attr, int val) { \
157 PCLASS::CBNAME(attr, val); \
158 }
159
160
161
162 #define PYCALLBACK_INT__pure(CBNAME) \
163 int CBNAME() { \
164 bool blocked = wxPyBeginBlockThreads(); \
165 int rval = 0; \
166 if (wxPyCBH_findCallback(m_myInst, #CBNAME)) \
167 rval = wxPyCBH_callCallback(m_myInst, Py_BuildValue("()")); \
168 wxPyEndBlockThreads(blocked); \
169 return rval; \
170 }
171
172
173
174 #define PYCALLBACK_BOOL_INTINT_pure(CBNAME) \
175 bool CBNAME(int a, int b) { \
176 bool blocked = wxPyBeginBlockThreads(); \
177 bool rval = 0; \
178 if (wxPyCBH_findCallback(m_myInst, #CBNAME)) \
179 rval = wxPyCBH_callCallback(m_myInst, Py_BuildValue("(ii)",a,b)); \
180 wxPyEndBlockThreads(blocked); \
181 return rval; \
182 }
183
184
185 #define PYCALLBACK_STRING_INTINT_pure(CBNAME) \
186 wxString CBNAME(int a, int b) { \
187 bool blocked = wxPyBeginBlockThreads(); \
188 wxString rval; \
189 if (wxPyCBH_findCallback(m_myInst, #CBNAME)) { \
190 PyObject* ro; \
191 ro = wxPyCBH_callCallbackObj(m_myInst, Py_BuildValue("(ii)",a,b)); \
192 if (ro) { \
193 rval = Py2wxString(ro); \
194 Py_DECREF(ro); \
195 } \
196 } \
197 wxPyEndBlockThreads(blocked); \
198 return rval; \
199 }
200
201
202 #define PYCALLBACK__INTINTSTRING_pure(CBNAME) \
203 void CBNAME(int a, int b, const wxString& c) { \
204 bool blocked = wxPyBeginBlockThreads(); \
205 if (wxPyCBH_findCallback(m_myInst, #CBNAME)) { \
206 PyObject* s = wx2PyString(c); \
207 rval = wxPyCBH_callCallback(m_myInst, Py_BuildValue("(iiO)",a,b,s));\
208 Py_DECREF(s); \
209 } \
210 wxPyEndBlockThreads(blocked); \
211 }
212
213
214 #define PYCALLBACK_STRING_INTINT(PCLASS, CBNAME) \
215 wxString CBNAME(int a, int b) { \
216 bool found; \
217 bool blocked = wxPyBeginBlockThreads(); \
218 wxString rval; \
219 if ((found = wxPyCBH_findCallback(m_myInst, #CBNAME))) { \
220 PyObject* ro; \
221 ro = wxPyCBH_callCallbackObj(m_myInst, Py_BuildValue("(ii)",a,b)); \
222 if (ro) { \
223 rval = Py2wxString(ro); \
224 Py_DECREF(ro); \
225 } \
226 } \
227 wxPyEndBlockThreads(blocked); \
228 if (! found) \
229 rval = PCLASS::CBNAME(a, b); \
230 return rval; \
231 } \
232 wxString base_##CBNAME(int a, int b) { \
233 return PCLASS::CBNAME(a, b); \
234 }
235
236
237 #define PYCALLBACK_BOOL_INTINTSTRING(PCLASS, CBNAME) \
238 bool CBNAME(int a, int b, const wxString& c) { \
239 bool rval = 0; \
240 bool found; \
241 bool blocked = wxPyBeginBlockThreads(); \
242 if ((found = wxPyCBH_findCallback(m_myInst, #CBNAME))) { \
243 PyObject* s = wx2PyString(c); \
244 rval = wxPyCBH_callCallback(m_myInst, Py_BuildValue("(iiO)",a,b,s));\
245 Py_DECREF(s); \
246 } \
247 wxPyEndBlockThreads(blocked); \
248 if (! found) \
249 rval = PCLASS::CBNAME(a,b,c); \
250 return rval; \
251 } \
252 bool base_##CBNAME(int a, int b, const wxString& c) { \
253 return PCLASS::CBNAME(a,b,c); \
254 }
255
256
257
258
259 #define PYCALLBACK_LONG_INTINT(PCLASS, CBNAME) \
260 long CBNAME(int a, int b) { \
261 long rval; \
262 bool found; \
263 bool blocked = wxPyBeginBlockThreads(); \
264 if ((found = wxPyCBH_findCallback(m_myInst, #CBNAME))) \
265 rval = wxPyCBH_callCallback(m_myInst, Py_BuildValue("(ii)", a,b)); \
266 wxPyEndBlockThreads(blocked); \
267 if (! found) \
268 rval = PCLASS::CBNAME(a,b); \
269 return rval; \
270 } \
271 long base_##CBNAME(int a, int b) { \
272 return PCLASS::CBNAME(a,b); \
273 }
274
275
276
277 #define PYCALLBACK_BOOL_INTINT(PCLASS, CBNAME) \
278 bool CBNAME(int a, int b) { \
279 bool rval = 0; \
280 bool found; \
281 bool blocked = wxPyBeginBlockThreads(); \
282 if ((found = wxPyCBH_findCallback(m_myInst, #CBNAME))) \
283 rval = wxPyCBH_callCallback(m_myInst, Py_BuildValue("(ii)", a,b)); \
284 wxPyEndBlockThreads(blocked); \
285 if (! found) \
286 rval = PCLASS::CBNAME(a,b); \
287 return rval; \
288 } \
289 bool base_##CBNAME(int a, int b) { \
290 return PCLASS::CBNAME(a,b); \
291 }
292
293
294
295 #define PYCALLBACK_DOUBLE_INTINT(PCLASS, CBNAME) \
296 double CBNAME(int a, int b) { \
297 bool found; \
298 bool blocked = wxPyBeginBlockThreads(); \
299 double rval; \
300 if ((found = wxPyCBH_findCallback(m_myInst, #CBNAME))) { \
301 PyObject* ro; \
302 ro = wxPyCBH_callCallbackObj(m_myInst, Py_BuildValue("(ii)",a,b)); \
303 if (ro) { \
304 PyObject* str = PyObject_Str(ro); \
305 rval = PyFloat_AsDouble(str); \
306 Py_DECREF(ro); Py_DECREF(str); \
307 } \
308 } \
309 wxPyEndBlockThreads(blocked); \
310 if (! found) \
311 rval = PCLASS::CBNAME(a, b); \
312 return rval; \
313 } \
314 double base_##CBNAME(int a, int b) { \
315 return PCLASS::CBNAME(a, b); \
316 }
317
318
319
320 #define PYCALLBACK__(PCLASS, CBNAME) \
321 void CBNAME() { \
322 bool found; \
323 bool blocked = wxPyBeginBlockThreads(); \
324 if ((found = wxPyCBH_findCallback(m_myInst, #CBNAME))) \
325 wxPyCBH_callCallback(m_myInst, Py_BuildValue("()")); \
326 wxPyEndBlockThreads(blocked); \
327 if (! found) \
328 PCLASS::CBNAME(); \
329 } \
330 void base_##CBNAME() { \
331 PCLASS::CBNAME(); \
332 }
333
334
335
336
337 #define PYCALLBACK_BOOL_SIZETSIZET(PCLASS, CBNAME) \
338 bool CBNAME(size_t a, size_t b) { \
339 bool rval = 0; \
340 bool found; \
341 bool blocked = wxPyBeginBlockThreads(); \
342 if ((found = wxPyCBH_findCallback(m_myInst, #CBNAME))) \
343 rval = wxPyCBH_callCallback(m_myInst, Py_BuildValue("(ii)", a,b)); \
344 wxPyEndBlockThreads(blocked); \
345 if (! found) \
346 rval = PCLASS::CBNAME(a,b); \
347 return rval; \
348 } \
349 bool base_##CBNAME(size_t a, size_t b) { \
350 return PCLASS::CBNAME(a,b); \
351 }
352
353
354
355 #define PYCALLBACK_BOOL_SIZET(PCLASS, CBNAME) \
356 bool CBNAME(size_t a) { \
357 bool rval = 0; \
358 bool found; \
359 bool blocked = wxPyBeginBlockThreads(); \
360 if ((found = wxPyCBH_findCallback(m_myInst, #CBNAME))) \
361 rval = wxPyCBH_callCallback(m_myInst, Py_BuildValue("(i)", a)); \
362 wxPyEndBlockThreads(blocked); \
363 if (! found) \
364 rval = PCLASS::CBNAME(a); \
365 return rval; \
366 } \
367 bool base_##CBNAME(size_t a) { \
368 return PCLASS::CBNAME(a); \
369 }
370
371
372 #define PYCALLBACK_STRING_INT(PCLASS, CBNAME) \
373 wxString CBNAME(int a) { \
374 bool found; \
375 bool blocked = wxPyBeginBlockThreads(); \
376 wxString rval; \
377 if ((found = wxPyCBH_findCallback(m_myInst, #CBNAME))) { \
378 PyObject* ro; \
379 ro = wxPyCBH_callCallbackObj(m_myInst, Py_BuildValue("(i)",a)); \
380 if (ro) { \
381 rval = Py2wxString(ro); \
382 Py_DECREF(ro); \
383 } \
384 } \
385 wxPyEndBlockThreads(blocked); \
386 if (! found) \
387 rval = PCLASS::CBNAME(a); \
388 return rval; \
389 } \
390 wxString base_##CBNAME(int a) { \
391 return PCLASS::CBNAME(a); \
392 }
393
394
395 #define PYCALLBACK__INTSTRING(PCLASS, CBNAME) \
396 void CBNAME(int a, const wxString& c) { \
397 bool found; \
398 bool blocked = wxPyBeginBlockThreads(); \
399 if ((found = wxPyCBH_findCallback(m_myInst, #CBNAME))) { \
400 PyObject* s = wx2PyString(c); \
401 wxPyCBH_callCallback(m_myInst, Py_BuildValue("(iO)",a,s)); \
402 Py_DECREF(s); \
403 } \
404 wxPyEndBlockThreads(blocked); \
405 if (! found) \
406 PCLASS::CBNAME(a,c); \
407 } \
408 void base_##CBNAME(int a, const wxString& c) { \
409 PCLASS::CBNAME(a,c); \
410 }
411
412
413
414
415 #define PYCALLBACK_BOOL_(PCLASS, CBNAME) \
416 bool CBNAME() { \
417 bool rval = 0; \
418 bool found; \
419 bool blocked = wxPyBeginBlockThreads(); \
420 if ((found = wxPyCBH_findCallback(m_myInst, #CBNAME))) \
421 rval = wxPyCBH_callCallback(m_myInst, Py_BuildValue("()")); \
422 wxPyEndBlockThreads(blocked); \
423 if (! found) \
424 rval = PCLASS::CBNAME(); \
425 return rval; \
426 } \
427 bool base_##CBNAME() { \
428 return PCLASS::CBNAME(); \
429 }
430
431
432
433 #define PYCALLBACK__SIZETINT(PCLASS, CBNAME) \
434 void CBNAME(size_t a, int b) { \
435 bool found; \
436 bool blocked = wxPyBeginBlockThreads(); \
437 if ((found = wxPyCBH_findCallback(m_myInst, #CBNAME))) \
438 wxPyCBH_callCallback(m_myInst, Py_BuildValue("(ii)", a,b)); \
439 wxPyEndBlockThreads(blocked); \
440 if (! found) \
441 PCLASS::CBNAME(a,b); \
442 } \
443 void base_##CBNAME(size_t a, int b) { \
444 PCLASS::CBNAME(a,b); \
445 }
446
447
448
449
450 #define PYCALLBACK__INTINTLONG(PCLASS, CBNAME) \
451 void CBNAME(int a, int b, long c) { \
452 bool found; \
453 bool blocked = wxPyBeginBlockThreads(); \
454 if ((found = wxPyCBH_findCallback(m_myInst, #CBNAME))) \
455 wxPyCBH_callCallback(m_myInst, Py_BuildValue("(iii)", a,b,c)); \
456 wxPyEndBlockThreads(blocked); \
457 if (! found) \
458 PCLASS::CBNAME(a,b,c); \
459 } \
460 void base_##CBNAME(int a, int b, long c) { \
461 PCLASS::CBNAME(a,b,c); \
462 }
463
464
465
466
467 #define PYCALLBACK__INTINTDOUBLE(PCLASS, CBNAME) \
468 void CBNAME(int a, int b, double c) { \
469 bool found; \
470 bool blocked = wxPyBeginBlockThreads(); \
471 if ((found = wxPyCBH_findCallback(m_myInst, #CBNAME))) \
472 wxPyCBH_callCallback(m_myInst, Py_BuildValue("(iif)", a,b,c)); \
473 wxPyEndBlockThreads(blocked); \
474 if (! found) \
475 PCLASS::CBNAME(a,b,c); \
476 } \
477 void base_##CBNAME(int a, int b, double c) { \
478 PCLASS::CBNAME(a,b,c); \
479 }
480
481
482
483 #define PYCALLBACK__INTINTBOOL(PCLASS, CBNAME) \
484 void CBNAME(int a, int b, bool c) { \
485 bool found; \
486 bool blocked = wxPyBeginBlockThreads(); \
487 if ((found = wxPyCBH_findCallback(m_myInst, #CBNAME))) \
488 wxPyCBH_callCallback(m_myInst, Py_BuildValue("(iii)", a,b,c)); \
489 wxPyEndBlockThreads(blocked); \
490 if (! found) \
491 PCLASS::CBNAME(a,b,c); \
492 } \
493 void base_##CBNAME(int a, int b, bool c) { \
494 PCLASS::CBNAME(a,b,c); \
495 }
496
497
498
499
500 %}
501
502 //---------------------------------------------------------------------------
503
504 class wxGridCellCoords;
505 class wxGridCellAttr;
506
507 #define wxGRID_VALUE_STRING "string"
508 #define wxGRID_VALUE_BOOL "bool"
509 #define wxGRID_VALUE_NUMBER "long"
510 #define wxGRID_VALUE_FLOAT "double"
511 #define wxGRID_VALUE_CHOICE "choice"
512 #define wxGRID_VALUE_TEXT "string"
513 #define wxGRID_VALUE_LONG "long"
514 #define wxGRID_VALUE_CHOICEINT "choiceint"
515 #define wxGRID_VALUE_DATETIME "datetime"
516
517
518 %immutable;
519 const wxGridCellCoords wxGridNoCellCoords;
520 const wxRect wxGridNoCellRect;
521 %mutable;
522
523
524 //---------------------------------------------------------------------------
525 // wxGridCellRenderer is an ABC, and several derived classes are available.
526 // Classes implemented in Python should be derived from wxPyGridCellRenderer.
527
528
529 class wxGridCellRenderer
530 {
531 public:
532 %extend {
533 void _setOORInfo(PyObject* _self) {
534 self->SetClientObject(new wxPyOORClientData(_self));
535 }
536 }
537
538 void SetParameters(const wxString& params);
539 void IncRef();
540 void DecRef();
541
542 virtual void Draw(wxGrid& grid,
543 wxGridCellAttr& attr,
544 wxDC& dc,
545 const wxRect& rect,
546 int row, int col,
547 bool isSelected);
548 virtual wxSize GetBestSize(wxGrid& grid,
549 wxGridCellAttr& attr,
550 wxDC& dc,
551 int row, int col);
552 virtual wxGridCellRenderer *Clone() const;
553 };
554
555
556 // The C++ version of wxPyGridCellRenderer
557 %{
558 class wxPyGridCellRenderer : public wxGridCellRenderer
559 {
560 public:
561 wxPyGridCellRenderer() : wxGridCellRenderer() {};
562
563 // Implement Python callback aware virtual methods
564 void Draw(wxGrid& grid, wxGridCellAttr& attr,
565 wxDC& dc, const wxRect& rect,
566 int row, int col, bool isSelected) {
567 bool blocked = wxPyBeginBlockThreads();
568 if (wxPyCBH_findCallback(m_myInst, "Draw")) {
569 PyObject* go = wxPyMake_wxObject(&grid);
570 PyObject* dco = wxPyMake_wxObject(&dc);
571 PyObject* ao = wxPyMake_wxGridCellAttr(&attr);
572 PyObject* ro = wxPyConstructObject((void*)&rect, wxT("wxRect"), 0);
573
574 wxPyCBH_callCallback(m_myInst, Py_BuildValue("(OOOOiii)", go, ao, dco, ro,
575 row, col, isSelected));
576 Py_DECREF(go);
577 Py_DECREF(ao);
578 Py_DECREF(dco);
579 Py_DECREF(ro);
580 }
581 wxPyEndBlockThreads(blocked);
582 }
583
584 wxSize GetBestSize(wxGrid& grid, wxGridCellAttr& attr, wxDC& dc,
585 int row, int col) {
586 wxSize rval;
587 bool blocked = wxPyBeginBlockThreads();
588 if (wxPyCBH_findCallback(m_myInst, "GetBestSize")) {
589 PyObject* ro;
590 wxSize* ptr;
591 PyObject* go = wxPyMake_wxObject(&grid);
592 PyObject* dco = wxPyMake_wxObject(&dc);
593 PyObject* ao = wxPyMake_wxGridCellAttr(&attr);
594
595 ro = wxPyCBH_callCallbackObj(m_myInst, Py_BuildValue("(OOOii)",
596 go, ao, dco,
597 row, col));
598 Py_DECREF(go);
599 Py_DECREF(ao);
600 Py_DECREF(dco);
601
602 if (ro) {
603 const char* errmsg = "GetBestSize should return a 2-tuple of integers or a wxSize object.";
604 if (wxPyConvertSwigPtr(ro, (void **)&ptr, wxT("wxSize"))) {
605 rval = *ptr;
606 }
607 else if (PySequence_Check(ro) && PyObject_Length(ro) == 2) {
608 PyObject* o1 = PySequence_GetItem(ro, 0);
609 PyObject* o2 = PySequence_GetItem(ro, 1);
610 if (PyNumber_Check(o1) && PyNumber_Check(o2))
611 rval = wxSize(PyInt_AsLong(o1), PyInt_AsLong(o2));
612 else
613 PyErr_SetString(PyExc_TypeError, errmsg);
614 Py_DECREF(o1);
615 Py_DECREF(o2);
616 }
617 else {
618 PyErr_SetString(PyExc_TypeError, errmsg);
619 }
620 Py_DECREF(ro);
621 }
622 }
623 wxPyEndBlockThreads(blocked);
624 return rval;
625 }
626
627
628 wxGridCellRenderer *Clone() const {
629 wxGridCellRenderer* rval = NULL;
630 bool blocked = wxPyBeginBlockThreads();
631 if (wxPyCBH_findCallback(m_myInst, "Clone")) {
632 PyObject* ro;
633 wxGridCellRenderer* ptr;
634 ro = wxPyCBH_callCallbackObj(m_myInst, Py_BuildValue("()"));
635 if (ro) {
636 if (wxPyConvertSwigPtr(ro, (void **)&ptr, wxT("wxGridCellRenderer")))
637 rval = ptr;
638 Py_DECREF(ro);
639 }
640 }
641 wxPyEndBlockThreads(blocked);
642 return rval;
643 }
644
645 DEC_PYCALLBACK__STRING(SetParameters);
646
647 PYPRIVATE;
648 };
649
650 IMP_PYCALLBACK__STRING( wxPyGridCellRenderer, wxGridCellRenderer, SetParameters);
651
652 %}
653
654
655 // Let SWIG know about it so it can create the Python version
656 class wxPyGridCellRenderer : public wxGridCellRenderer {
657 public:
658 %pythonAppend wxPyGridCellRenderer "self._setCallbackInfo(self, PyGridCellRenderer);self._setOORInfo(self)"
659
660 wxPyGridCellRenderer();
661 void _setCallbackInfo(PyObject* self, PyObject* _class);
662
663 void base_SetParameters(const wxString& params);
664 };
665
666 //---------------------------------------------------------------------------
667 // Predefined Renderers
668
669 class wxGridCellStringRenderer : public wxGridCellRenderer
670 {
671 public:
672 %pythonAppend wxGridCellStringRenderer "self._setOORInfo(self)"
673 wxGridCellStringRenderer();
674 };
675
676
677 class wxGridCellNumberRenderer : public wxGridCellStringRenderer
678 {
679 public:
680 %pythonAppend wxGridCellNumberRenderer "self._setOORInfo(self)"
681 wxGridCellNumberRenderer();
682 };
683
684
685 class wxGridCellFloatRenderer : public wxGridCellStringRenderer
686 {
687 public:
688 %pythonAppend wxGridCellFloatRenderer "self._setOORInfo(self)"
689 wxGridCellFloatRenderer(int width = -1, int precision = -1);
690
691 int GetWidth() const;
692 void SetWidth(int width);
693 int GetPrecision() const;
694 void SetPrecision(int precision);
695 };
696
697
698 class wxGridCellBoolRenderer : public wxGridCellRenderer
699 {
700 public:
701 %pythonAppend wxGridCellBoolRenderer "self._setOORInfo(self)"
702 wxGridCellBoolRenderer();
703 };
704
705
706 class wxGridCellDateTimeRenderer : public wxGridCellStringRenderer
707 {
708 public:
709 %pythonAppend wxGridCellDateTimeRenderer "self._setOORInfo(self)"
710 wxGridCellDateTimeRenderer(wxString outformat = wxPyDateTimeFormatStr,
711 wxString informat = wxPyDateTimeFormatStr);
712 };
713
714
715 class wxGridCellEnumRenderer : public wxGridCellStringRenderer
716 {
717 public:
718 %pythonAppend wxGridCellEnumRenderer "self._setOORInfo(self)"
719 wxGridCellEnumRenderer( const wxString& choices = wxPyEmptyString );
720 };
721
722
723 class wxGridCellAutoWrapStringRenderer : public wxGridCellStringRenderer
724 {
725 public:
726 %pythonAppend wxGridCellAutoWrapStringRenderer "self._setOORInfo(self)"
727 wxGridCellAutoWrapStringRenderer();
728 };
729
730
731 //---------------------------------------------------------------------------
732 // wxGridCellEditor is an ABC, and several derived classes are available.
733 // Classes implemented in Python should be derived from wxPyGridCellEditor.
734
735 class wxGridCellEditor
736 {
737 public:
738 %extend {
739 void _setOORInfo(PyObject* _self) {
740 self->SetClientObject(new wxPyOORClientData(_self));
741 }
742 }
743
744 bool IsCreated();
745 wxControl* GetControl();
746 void SetControl(wxControl* control);
747
748 wxGridCellAttr* GetCellAttr();
749 void SetCellAttr(wxGridCellAttr* attr);
750
751 void SetParameters(const wxString& params);
752 void IncRef();
753 void DecRef();
754
755 virtual void Create(wxWindow* parent,
756 wxWindowID id,
757 wxEvtHandler* evtHandler);
758 virtual void BeginEdit(int row, int col, wxGrid* grid);
759 virtual bool EndEdit(int row, int col, wxGrid* grid);
760 virtual void Reset();
761 virtual wxGridCellEditor *Clone() const;
762
763 virtual void SetSize(const wxRect& rect);
764 virtual void Show(bool show, wxGridCellAttr *attr = NULL);
765 virtual void PaintBackground(const wxRect& rectCell, wxGridCellAttr *attr);
766 virtual bool IsAcceptedKey(wxKeyEvent& event);
767 virtual void StartingKey(wxKeyEvent& event);
768 virtual void StartingClick();
769 virtual void HandleReturn(wxKeyEvent& event);
770 virtual void Destroy();
771
772 };
773
774
775 // The C++ version of wxPyGridCellEditor
776 %{
777 class wxPyGridCellEditor : public wxGridCellEditor
778 {
779 public:
780 wxPyGridCellEditor() : wxGridCellEditor() {}
781
782 void Create(wxWindow* parent, wxWindowID id, wxEvtHandler* evtHandler) {
783 bool blocked = wxPyBeginBlockThreads();
784 if (wxPyCBH_findCallback(m_myInst, "Create")) {
785 PyObject* po = wxPyMake_wxObject(parent);
786 PyObject* eo = wxPyMake_wxObject(evtHandler);
787
788 wxPyCBH_callCallback(m_myInst, Py_BuildValue("(OiO)", po, id, eo));
789 Py_DECREF(po);
790 Py_DECREF(eo);
791 }
792 wxPyEndBlockThreads(blocked);
793 }
794
795
796 void BeginEdit(int row, int col, wxGrid* grid) {
797 bool blocked = wxPyBeginBlockThreads();
798 if (wxPyCBH_findCallback(m_myInst, "BeginEdit")) {
799 PyObject* go = wxPyMake_wxObject(grid);
800 wxPyCBH_callCallback(m_myInst, Py_BuildValue("(iiO)", row, col, go));
801 Py_DECREF(go);
802 }
803 wxPyEndBlockThreads(blocked);
804 }
805
806
807 bool EndEdit(int row, int col, wxGrid* grid) {
808 bool rv = False;
809 bool blocked = wxPyBeginBlockThreads();
810 if (wxPyCBH_findCallback(m_myInst, "EndEdit")) {
811 PyObject* go = wxPyMake_wxObject(grid);
812 rv = wxPyCBH_callCallback(m_myInst, Py_BuildValue("(iiO)", row, col, go));
813 Py_DECREF(go);
814 }
815 wxPyEndBlockThreads(blocked);
816 return rv;
817 }
818
819
820 wxGridCellEditor* Clone() const {
821 wxGridCellEditor* rval = NULL;
822 bool blocked = wxPyBeginBlockThreads();
823 if (wxPyCBH_findCallback(m_myInst, "Clone")) {
824 PyObject* ro;
825 wxGridCellEditor* ptr;
826 ro = wxPyCBH_callCallbackObj(m_myInst, Py_BuildValue("()"));
827 if (ro) {
828 if (wxPyConvertSwigPtr(ro, (void **)&ptr, wxT("wxGridCellEditor")))
829 rval = ptr;
830 Py_DECREF(ro);
831 }
832 }
833 wxPyEndBlockThreads(blocked);
834 return rval;
835 }
836
837
838 void Show(bool show, wxGridCellAttr *attr) {
839 bool found;
840 bool blocked = wxPyBeginBlockThreads();
841 if ((found = wxPyCBH_findCallback(m_myInst, "Show"))) {
842 PyObject* ao = wxPyMake_wxGridCellAttr(attr);
843 wxPyCBH_callCallback(m_myInst, Py_BuildValue("(iO)", show, ao));
844 Py_DECREF(ao);
845 }
846 wxPyEndBlockThreads(blocked);
847 if (! found)
848 wxGridCellEditor::Show(show, attr);
849 }
850 void base_Show(bool show, wxGridCellAttr *attr) {
851 wxGridCellEditor::Show(show, attr);
852 }
853
854
855 void PaintBackground(const wxRect& rectCell, wxGridCellAttr *attr) {
856 bool found;
857 bool blocked = wxPyBeginBlockThreads();
858 if ((found = wxPyCBH_findCallback(m_myInst, "PaintBackground)"))) {
859 PyObject* ao = wxPyMake_wxGridCellAttr(attr);
860 PyObject* ro = wxPyConstructObject((void*)&rectCell, wxT("wxRect"), 0);
861
862 wxPyCBH_callCallback(m_myInst, Py_BuildValue("(OO)", ro, ao));
863
864 Py_DECREF(ro);
865 Py_DECREF(ao);
866 }
867 wxPyEndBlockThreads(blocked);
868 if (! found)
869 wxGridCellEditor::PaintBackground(rectCell, attr);
870 }
871 void base_PaintBackground(const wxRect& rectCell, wxGridCellAttr *attr) {
872 wxGridCellEditor::PaintBackground(rectCell, attr);
873 }
874
875
876 DEC_PYCALLBACK___pure(Reset);
877 DEC_PYCALLBACK__constany(SetSize, wxRect);
878 DEC_PYCALLBACK_bool_any(IsAcceptedKey, wxKeyEvent);
879 DEC_PYCALLBACK__any(StartingKey, wxKeyEvent);
880 DEC_PYCALLBACK__any(HandleReturn, wxKeyEvent);
881 DEC_PYCALLBACK__(StartingClick);
882 DEC_PYCALLBACK__(Destroy);
883 DEC_PYCALLBACK__STRING(SetParameters);
884 DEC_PYCALLBACK_STRING__constpure(GetValue);
885
886 PYPRIVATE;
887 };
888
889
890 IMP_PYCALLBACK__STRING( wxPyGridCellEditor, wxGridCellEditor, SetParameters);
891 IMP_PYCALLBACK___pure(wxPyGridCellEditor, wxGridCellEditor, Reset);
892 IMP_PYCALLBACK__constany(wxPyGridCellEditor, wxGridCellEditor, SetSize, wxRect);
893 IMP_PYCALLBACK_bool_any(wxPyGridCellEditor, wxGridCellEditor, IsAcceptedKey, wxKeyEvent);
894 IMP_PYCALLBACK__any(wxPyGridCellEditor, wxGridCellEditor, StartingKey, wxKeyEvent);
895 IMP_PYCALLBACK__any(wxPyGridCellEditor, wxGridCellEditor, HandleReturn, wxKeyEvent);
896 IMP_PYCALLBACK__(wxPyGridCellEditor, wxGridCellEditor, StartingClick);
897 IMP_PYCALLBACK__(wxPyGridCellEditor, wxGridCellEditor, Destroy);
898 IMP_PYCALLBACK_STRING__constpure(wxPyGridCellEditor, wxGridCellEditor, GetValue);
899
900 %}
901
902
903 // Let SWIG know about it so it can create the Python version
904 class wxPyGridCellEditor : public wxGridCellEditor {
905 public:
906 %pythonAppend wxPyGridCellEditor "self._setCallbackInfo(self, PyGridCellEditor);self._setOORInfo(self)"
907
908 wxPyGridCellEditor();
909 void _setCallbackInfo(PyObject* self, PyObject* _class);
910
911 void base_SetSize(const wxRect& rect);
912 void base_Show(bool show, wxGridCellAttr *attr = NULL);
913 void base_PaintBackground(const wxRect& rectCell, wxGridCellAttr *attr);
914 bool base_IsAcceptedKey(wxKeyEvent& event);
915 void base_StartingKey(wxKeyEvent& event);
916 void base_StartingClick();
917 void base_HandleReturn(wxKeyEvent& event);
918 void base_Destroy();
919 void base_SetParameters(const wxString& params);
920 };
921
922 //---------------------------------------------------------------------------
923 // Predefined Editors
924
925 class wxGridCellTextEditor : public wxGridCellEditor
926 {
927 public:
928 %pythonAppend wxGridCellTextEditor "self._setOORInfo(self)"
929 wxGridCellTextEditor();
930 virtual wxString GetValue();
931 };
932
933
934 class wxGridCellNumberEditor : public wxGridCellTextEditor
935 {
936 public:
937 %pythonAppend wxGridCellNumberEditor "self._setOORInfo(self)"
938 wxGridCellNumberEditor(int min = -1, int max = -1);
939 virtual wxString GetValue();
940 };
941
942
943 class wxGridCellFloatEditor : public wxGridCellTextEditor
944 {
945 public:
946 %pythonAppend wxGridCellFloatEditor "self._setOORInfo(self)"
947 wxGridCellFloatEditor(int width = -1, int precision = -1);
948 virtual wxString GetValue();
949 };
950
951
952 class wxGridCellBoolEditor : public wxGridCellEditor
953 {
954 public:
955 %pythonAppend wxGridCellBoolEditor "self._setOORInfo(self)"
956 wxGridCellBoolEditor();
957 virtual wxString GetValue();
958 };
959
960 class wxGridCellChoiceEditor : public wxGridCellEditor
961 {
962 public:
963 %pythonAppend wxGridCellChoiceEditor "self._setOORInfo(self)"
964 wxGridCellChoiceEditor(int choices = 0,
965 const wxString* choices_array = NULL,
966 bool allowOthers = False);
967 virtual wxString GetValue();
968 };
969
970
971 class wxGridCellEnumEditor : public wxGridCellChoiceEditor
972 {
973 public:
974 %pythonAppend wxGridCellEnumEditor "self._setOORInfo(self)"
975 wxGridCellEnumEditor( const wxString& choices = wxPyEmptyString );
976 virtual wxString GetValue();
977 };
978
979
980 class wxGridCellAutoWrapStringEditor : public wxGridCellTextEditor
981 {
982 public:
983 %pythonAppend wxGridCellAutoWrapStringEditor "self._setOORInfo(self)"
984 wxGridCellAutoWrapStringEditor();
985 virtual wxString GetValue();
986 };
987
988
989
990 //---------------------------------------------------------------------------
991
992
993 class wxGridCellAttr
994 {
995 public:
996 enum wxAttrKind
997 {
998 Any,
999 Default,
1000 Cell,
1001 Row,
1002 Col,
1003 Merged
1004 };
1005
1006 %extend {
1007 void _setOORInfo(PyObject* _self) {
1008 self->SetClientObject(new wxPyOORClientData(_self));
1009 }
1010 }
1011
1012 %pythonAppend wxGridCellAttr "self._setOORInfo(self)"
1013
1014 wxGridCellAttr(wxGridCellAttr *attrDefault = NULL);
1015
1016 wxGridCellAttr *Clone() const;
1017 void MergeWith(wxGridCellAttr *mergefrom);
1018 void IncRef();
1019 void DecRef();
1020 void SetTextColour(const wxColour& colText);
1021 void SetBackgroundColour(const wxColour& colBack);
1022 void SetFont(const wxFont& font);
1023 void SetAlignment(int hAlign, int vAlign);
1024 void SetSize(int num_rows, int num_cols);
1025 void SetOverflow( bool allow = True );
1026 void SetReadOnly(bool isReadOnly = True);
1027
1028 void SetRenderer(wxGridCellRenderer *renderer);
1029 void SetEditor(wxGridCellEditor* editor);
1030 void SetKind(wxAttrKind kind);
1031
1032 bool HasTextColour() const;
1033 bool HasBackgroundColour() const;
1034 bool HasFont() const;
1035 bool HasAlignment() const;
1036 bool HasRenderer() const;
1037 bool HasEditor() const;
1038 bool HasReadWriteMode() const;
1039 bool HasOverflowMode() const;
1040
1041 wxColour GetTextColour() const;
1042 wxColour GetBackgroundColour() const;
1043 wxFont GetFont() const;
1044
1045 DocDeclA(
1046 void, GetAlignment(int *OUTPUT, int *OUTPUT) const,
1047 "GetAlignment() -> (hAlign, vAlign)");
1048
1049 DocDeclA(
1050 void, GetSize(int *OUTPUT, int *OUTPUT) const,
1051 "GetSize() -> (num_rows, num_cols)");
1052
1053 bool GetOverflow() const;
1054 wxGridCellRenderer *GetRenderer(wxGrid* grid, int row, int col) const;
1055 wxGridCellEditor *GetEditor(wxGrid* grid, int row, int col) const;
1056
1057 bool IsReadOnly() const;
1058 wxAttrKind GetKind();
1059 void SetDefAttr(wxGridCellAttr* defAttr);
1060 };
1061
1062 //---------------------------------------------------------------------------
1063
1064 class wxGridCellAttrProvider
1065 {
1066 public:
1067 %pythonAppend wxGridCellAttrProvider "self._setOORInfo(self)"
1068 wxGridCellAttrProvider();
1069 // ???? virtual ~wxGridCellAttrProvider();
1070
1071 %extend {
1072 void _setOORInfo(PyObject* _self) {
1073 self->SetClientObject(new wxPyOORClientData(_self));
1074 }
1075 }
1076
1077 wxGridCellAttr *GetAttr(int row, int col,
1078 wxGridCellAttr::wxAttrKind kind) const;
1079 void SetAttr(wxGridCellAttr *attr, int row, int col);
1080 void SetRowAttr(wxGridCellAttr *attr, int row);
1081 void SetColAttr(wxGridCellAttr *attr, int col);
1082
1083 void UpdateAttrRows( size_t pos, int numRows );
1084 void UpdateAttrCols( size_t pos, int numCols );
1085
1086 };
1087
1088
1089 // A Python-aware version
1090 %{
1091 class wxPyGridCellAttrProvider : public wxGridCellAttrProvider
1092 {
1093 public:
1094 wxPyGridCellAttrProvider() : wxGridCellAttrProvider() {};
1095
1096 PYCALLBACK_GCA_INTINTKIND(wxGridCellAttrProvider, GetAttr);
1097 PYCALLBACK__GCAINTINT(wxGridCellAttrProvider, SetAttr);
1098 PYCALLBACK__GCAINT(wxGridCellAttrProvider, SetRowAttr);
1099 PYCALLBACK__GCAINT(wxGridCellAttrProvider, SetColAttr);
1100
1101 PYPRIVATE;
1102 };
1103 %}
1104
1105
1106 // The python-aware version get's SWIGified
1107 class wxPyGridCellAttrProvider : public wxGridCellAttrProvider
1108 {
1109 public:
1110 %pythonAppend wxPyGridCellAttrProvider "self._setCallbackInfo(self, PyGridCellAttrProvider)"
1111 wxPyGridCellAttrProvider();
1112 void _setCallbackInfo(PyObject* self, PyObject* _class);
1113
1114 wxGridCellAttr *base_GetAttr(int row, int col,
1115 wxGridCellAttr::wxAttrKind kind);
1116 void base_SetAttr(wxGridCellAttr *attr, int row, int col);
1117 void base_SetRowAttr(wxGridCellAttr *attr, int row);
1118 void base_SetColAttr(wxGridCellAttr *attr, int col);
1119 };
1120
1121
1122 //---------------------------------------------------------------------------
1123 // Grid Table Base class and Python aware version
1124
1125
1126 class wxGridTableBase : public wxObject
1127 {
1128 public:
1129 // wxGridTableBase(); This is an ABC
1130 //~wxGridTableBase();
1131
1132 %extend {
1133 void _setOORInfo(PyObject* _self) {
1134 self->SetClientObject(new wxPyOORClientData(_self));
1135 }
1136 }
1137
1138 void SetAttrProvider(wxGridCellAttrProvider *attrProvider);
1139 wxGridCellAttrProvider *GetAttrProvider() const;
1140 void SetView( wxGrid *grid );
1141 wxGrid * GetView() const;
1142
1143
1144 // pure virtuals
1145 virtual int GetNumberRows();
1146 virtual int GetNumberCols();
1147 virtual bool IsEmptyCell( int row, int col );
1148 virtual wxString GetValue( int row, int col );
1149 virtual void SetValue( int row, int col, const wxString& value );
1150
1151 // virtuals overridable in wxPyGridTableBase
1152 virtual wxString GetTypeName( int row, int col );
1153 virtual bool CanGetValueAs( int row, int col, const wxString& typeName );
1154 virtual bool CanSetValueAs( int row, int col, const wxString& typeName );
1155 virtual long GetValueAsLong( int row, int col );
1156 virtual double GetValueAsDouble( int row, int col );
1157 virtual bool GetValueAsBool( int row, int col );
1158 virtual void SetValueAsLong( int row, int col, long value );
1159 virtual void SetValueAsDouble( int row, int col, double value );
1160 virtual void SetValueAsBool( int row, int col, bool value );
1161
1162 //virtual void* GetValueAsCustom( int row, int col, const wxString& typeName );
1163 //virtual void SetValueAsCustom( int row, int col, const wxString& typeName, void* value );
1164
1165
1166 virtual void Clear();
1167 virtual bool InsertRows( size_t pos = 0, size_t numRows = 1 );
1168 virtual bool AppendRows( size_t numRows = 1 );
1169 virtual bool DeleteRows( size_t pos = 0, size_t numRows = 1 );
1170 virtual bool InsertCols( size_t pos = 0, size_t numCols = 1 );
1171 virtual bool AppendCols( size_t numCols = 1 );
1172 virtual bool DeleteCols( size_t pos = 0, size_t numCols = 1 );
1173
1174 virtual wxString GetRowLabelValue( int row );
1175 virtual wxString GetColLabelValue( int col );
1176 virtual void SetRowLabelValue( int row, const wxString& value );
1177 virtual void SetColLabelValue( int col, const wxString& value );
1178
1179 virtual bool CanHaveAttributes();
1180
1181 virtual wxGridCellAttr *GetAttr( int row, int col,
1182 wxGridCellAttr::wxAttrKind kind);
1183 virtual void SetAttr(wxGridCellAttr* attr, int row, int col);
1184 virtual void SetRowAttr(wxGridCellAttr *attr, int row);
1185 virtual void SetColAttr(wxGridCellAttr *attr, int col);
1186
1187 };
1188
1189
1190
1191 // Python-aware version
1192 %{
1193 class wxPyGridTableBase : public wxGridTableBase
1194 {
1195 public:
1196 wxPyGridTableBase() : wxGridTableBase() {}
1197
1198 PYCALLBACK_INT__pure(GetNumberRows);
1199 PYCALLBACK_INT__pure(GetNumberCols);
1200 PYCALLBACK_BOOL_INTINT_pure(IsEmptyCell);
1201 PYCALLBACK_STRING_INTINT(wxGridTableBase, GetTypeName);
1202 PYCALLBACK_BOOL_INTINTSTRING(wxGridTableBase, CanGetValueAs);
1203 PYCALLBACK_BOOL_INTINTSTRING(wxGridTableBase, CanSetValueAs);
1204 PYCALLBACK__(wxGridTableBase, Clear);
1205 PYCALLBACK_BOOL_SIZETSIZET(wxGridTableBase, InsertRows);
1206 PYCALLBACK_BOOL_SIZETSIZET(wxGridTableBase, DeleteRows);
1207 PYCALLBACK_BOOL_SIZETSIZET(wxGridTableBase, InsertCols);
1208 PYCALLBACK_BOOL_SIZETSIZET(wxGridTableBase, DeleteCols);
1209 PYCALLBACK_BOOL_SIZET(wxGridTableBase, AppendRows);
1210 PYCALLBACK_BOOL_SIZET(wxGridTableBase, AppendCols);
1211 PYCALLBACK_STRING_INT(wxGridTableBase, GetRowLabelValue);
1212 PYCALLBACK_STRING_INT(wxGridTableBase, GetColLabelValue);
1213 PYCALLBACK__INTSTRING(wxGridTableBase, SetRowLabelValue);
1214 PYCALLBACK__INTSTRING(wxGridTableBase, SetColLabelValue);
1215 PYCALLBACK_BOOL_(wxGridTableBase, CanHaveAttributes);
1216 PYCALLBACK_GCA_INTINTKIND(wxGridTableBase, GetAttr);
1217 PYCALLBACK__GCAINTINT(wxGridTableBase, SetAttr);
1218 PYCALLBACK__GCAINT(wxGridTableBase, SetRowAttr);
1219 PYCALLBACK__GCAINT(wxGridTableBase, SetColAttr);
1220
1221
1222 wxString GetValue(int row, int col) {
1223 bool blocked = wxPyBeginBlockThreads();
1224 wxString rval;
1225 if (wxPyCBH_findCallback(m_myInst, "GetValue")) {
1226 PyObject* ro;
1227 ro = wxPyCBH_callCallbackObj(m_myInst, Py_BuildValue("(ii)",row,col));
1228 if (ro) {
1229 if (!PyString_Check(ro) && !PyUnicode_Check(ro)) {
1230 PyObject* old = ro;
1231 ro = PyObject_Str(ro);
1232 Py_DECREF(old);
1233 }
1234 rval = Py2wxString(ro);
1235 Py_DECREF(ro);
1236 }
1237 }
1238 wxPyEndBlockThreads(blocked);
1239 return rval;
1240 }
1241
1242 void SetValue(int row, int col, const wxString& val) {
1243 bool blocked = wxPyBeginBlockThreads();
1244 if (wxPyCBH_findCallback(m_myInst, "SetValue")) {
1245 PyObject* s = wx2PyString(val);
1246 wxPyCBH_callCallback(m_myInst, Py_BuildValue("(iiO)",row,col,s));
1247 Py_DECREF(s);
1248 }
1249 wxPyEndBlockThreads(blocked);
1250 }
1251
1252
1253 // Map the Get/Set methods for the standard non-string types to
1254 // the GetValue and SetValue python methods.
1255 long GetValueAsLong( int row, int col ) {
1256 long rval = 0;
1257 bool blocked = wxPyBeginBlockThreads();
1258 if (wxPyCBH_findCallback(m_myInst, "GetValue")) {
1259 PyObject* ro;
1260 PyObject* num;
1261 ro = wxPyCBH_callCallbackObj(m_myInst, Py_BuildValue("(ii)", row, col));
1262 if (ro && PyNumber_Check(ro)) {
1263 num = PyNumber_Int(ro);
1264 if (num) {
1265 rval = PyInt_AsLong(num);
1266 Py_DECREF(num);
1267 }
1268 Py_DECREF(ro);
1269 }
1270 }
1271 wxPyEndBlockThreads(blocked);
1272 return rval;
1273 }
1274
1275 double GetValueAsDouble( int row, int col ) {
1276 double rval = 0.0;
1277 bool blocked = wxPyBeginBlockThreads();
1278 if (wxPyCBH_findCallback(m_myInst, "GetValue")) {
1279 PyObject* ro;
1280 PyObject* num;
1281 ro = wxPyCBH_callCallbackObj(m_myInst, Py_BuildValue("(ii)", row, col));
1282 if (ro && PyNumber_Check(ro)) {
1283 num = PyNumber_Float(ro);
1284 if (num) {
1285 rval = PyFloat_AsDouble(num);
1286 Py_DECREF(num);
1287 }
1288 Py_DECREF(ro);
1289 }
1290 }
1291 wxPyEndBlockThreads(blocked);
1292 return rval;
1293 }
1294
1295 bool GetValueAsBool( int row, int col ) {
1296 return (bool)GetValueAsLong(row, col);
1297 }
1298
1299 void SetValueAsLong( int row, int col, long value ) {
1300 bool blocked = wxPyBeginBlockThreads();
1301 if (wxPyCBH_findCallback(m_myInst, "SetValue")) {
1302 wxPyCBH_callCallback(m_myInst, Py_BuildValue("(iii)", row, col, value));
1303 }
1304 wxPyEndBlockThreads(blocked);
1305 }
1306
1307 void SetValueAsDouble( int row, int col, double value ) {
1308 bool blocked = wxPyBeginBlockThreads();
1309 if (wxPyCBH_findCallback(m_myInst, "SetValue")) {
1310 wxPyCBH_callCallback(m_myInst, Py_BuildValue("(iid)", row, col, value));
1311 }
1312 wxPyEndBlockThreads(blocked);
1313 }
1314
1315 void SetValueAsBool( int row, int col, bool value ) {
1316 SetValueAsLong( row, col, (long)value );
1317 }
1318
1319
1320 PYPRIVATE;
1321 };
1322 %}
1323
1324
1325 // The python-aware version get's SWIGified
1326 class wxPyGridTableBase : public wxGridTableBase
1327 {
1328 public:
1329 %pythonAppend wxPyGridTableBase "self._setCallbackInfo(self, PyGridTableBase);self._setOORInfo(self)"
1330 wxPyGridTableBase();
1331 void _setCallbackInfo(PyObject* self, PyObject* _class);
1332
1333 %extend { void Destroy() { delete self; } }
1334
1335 wxString base_GetTypeName( int row, int col );
1336 bool base_CanGetValueAs( int row, int col, const wxString& typeName );
1337 bool base_CanSetValueAs( int row, int col, const wxString& typeName );
1338 void base_Clear();
1339 bool base_InsertRows( size_t pos = 0, size_t numRows = 1 );
1340 bool base_AppendRows( size_t numRows = 1 );
1341 bool base_DeleteRows( size_t pos = 0, size_t numRows = 1 );
1342 bool base_InsertCols( size_t pos = 0, size_t numCols = 1 );
1343 bool base_AppendCols( size_t numCols = 1 );
1344 bool base_DeleteCols( size_t pos = 0, size_t numCols = 1 );
1345 wxString base_GetRowLabelValue( int row );
1346 wxString base_GetColLabelValue( int col );
1347 void base_SetRowLabelValue( int row, const wxString& value );
1348 void base_SetColLabelValue( int col, const wxString& value );
1349 bool base_CanHaveAttributes();
1350 wxGridCellAttr *base_GetAttr( int row, int col,
1351 wxGridCellAttr::wxAttrKind kind );
1352 void base_SetAttr(wxGridCellAttr* attr, int row, int col);
1353 void base_SetRowAttr(wxGridCellAttr *attr, int row);
1354 void base_SetColAttr(wxGridCellAttr *attr, int col);
1355 };
1356
1357
1358 //---------------------------------------------------------------------------
1359 // Predefined Tables
1360
1361 class wxGridStringTable : public wxGridTableBase
1362 {
1363 public:
1364 %pythonAppend wxGridStringTable "self._setOORInfo(self)"
1365 wxGridStringTable( int numRows=0, int numCols=0 );
1366 };
1367
1368 //---------------------------------------------------------------------------
1369 // The Table can pass messages to the grid to tell it to update itself if
1370 // something has changed.
1371
1372 enum wxGridTableRequest
1373 {
1374 wxGRIDTABLE_REQUEST_VIEW_GET_VALUES = 2000,
1375 wxGRIDTABLE_REQUEST_VIEW_SEND_VALUES,
1376 wxGRIDTABLE_NOTIFY_ROWS_INSERTED,
1377 wxGRIDTABLE_NOTIFY_ROWS_APPENDED,
1378 wxGRIDTABLE_NOTIFY_ROWS_DELETED,
1379 wxGRIDTABLE_NOTIFY_COLS_INSERTED,
1380 wxGRIDTABLE_NOTIFY_COLS_APPENDED,
1381 wxGRIDTABLE_NOTIFY_COLS_DELETED
1382 };
1383
1384
1385 class wxGridTableMessage
1386 {
1387 public:
1388 wxGridTableMessage( wxGridTableBase *table, int id,
1389 int comInt1 = -1,
1390 int comInt2 = -1 );
1391 ~wxGridTableMessage();
1392
1393 void SetTableObject( wxGridTableBase *table );
1394 wxGridTableBase * GetTableObject() const;
1395 void SetId( int id );
1396 int GetId();
1397 void SetCommandInt( int comInt1 );
1398 int GetCommandInt();
1399 void SetCommandInt2( int comInt2 );
1400 int GetCommandInt2();
1401 };
1402
1403
1404 //---------------------------------------------------------------------------
1405
1406
1407 // Typemap to allow conversion of sequence objects to wxGridCellCoords...
1408 %typemap(in) wxGridCellCoords& (wxGridCellCoords temp) {
1409 $1 = &temp;
1410 if (! wxGridCellCoords_helper($input, &$1)) SWIG_fail;
1411 }
1412 %typemap(typecheck, precedence=SWIG_TYPECHECK_POINTER) wxGridCellCoords& {
1413 $1 = wxGridCellCoords_typecheck($input);
1414 }
1415
1416
1417 // ...and here is the associated helper.
1418 %{
1419 bool wxGridCellCoords_helper(PyObject* source, wxGridCellCoords** obj) {
1420
1421 if (source == Py_None) {
1422 **obj = wxGridCellCoords(-1,-1);
1423 return True;
1424 }
1425
1426 // If source is an object instance then it may already be the right type
1427 if (wxPySwigInstance_Check(source)) {
1428 wxGridCellCoords* ptr;
1429 if (! wxPyConvertSwigPtr(source, (void **)&ptr, wxT("wxGridCellCoords")))
1430 goto error;
1431 *obj = ptr;
1432 return True;
1433 }
1434 // otherwise a 2-tuple of integers is expected
1435 else if (PySequence_Check(source) && PyObject_Length(source) == 2) {
1436 PyObject* o1 = PySequence_GetItem(source, 0);
1437 PyObject* o2 = PySequence_GetItem(source, 1);
1438 if (!PyNumber_Check(o1) || !PyNumber_Check(o2)) {
1439 Py_DECREF(o1);
1440 Py_DECREF(o2);
1441 goto error;
1442 }
1443 **obj = wxGridCellCoords(PyInt_AsLong(o1), PyInt_AsLong(o2));
1444 Py_DECREF(o1);
1445 Py_DECREF(o2);
1446 return True;
1447 }
1448
1449 error:
1450 PyErr_SetString(PyExc_TypeError, "Expected a 2-tuple of integers or a wxGridCellCoords object.");
1451 return False;
1452 }
1453
1454
1455 bool wxGridCellCoords_typecheck(PyObject* source) {
1456 void* ptr;
1457
1458 if (wxPySwigInstance_Check(source) &&
1459 wxPyConvertSwigPtr(source, (void **)&ptr, wxT("wxGridCellCoords")))
1460 return True;
1461
1462 PyErr_Clear();
1463 if (PySequence_Check(source) && PySequence_Length(source) == 2)
1464 return True;
1465
1466 return False;
1467 }
1468 %}
1469
1470
1471 // Typemap to convert an array of cells coords to a list of tuples...
1472 %typemap(out) wxGridCellCoordsArray {
1473 $result = wxGridCellCoordsArray_helper($1);
1474 }
1475
1476 // %typemap(ret) wxGridCellCoordsArray {
1477 // delete $1;
1478 // }
1479
1480
1481 // ...and the helper function for the above typemap.
1482 %{
1483 PyObject* wxGridCellCoordsArray_helper(const wxGridCellCoordsArray& source)
1484 {
1485 PyObject* list = PyList_New(0);
1486 size_t idx;
1487 for (idx = 0; idx < source.GetCount(); idx += 1) {
1488 wxGridCellCoords& coord = source.Item(idx);
1489 PyObject* tup = PyTuple_New(2);
1490 PyTuple_SET_ITEM(tup, 0, PyInt_FromLong(coord.GetRow()));
1491 PyTuple_SET_ITEM(tup, 1, PyInt_FromLong(coord.GetCol()));
1492 PyList_Append(list, tup);
1493 Py_DECREF(tup);
1494 }
1495 return list;
1496 }
1497 %}
1498
1499
1500
1501
1502
1503 class wxGridCellCoords
1504 {
1505 public:
1506 wxGridCellCoords( int r=-1, int c=-1 );
1507 ~wxGridCellCoords();
1508
1509 int GetRow() const;
1510 void SetRow( int n );
1511 int GetCol() const;
1512 void SetCol( int n );
1513 void Set( int row, int col );
1514
1515 bool operator==( const wxGridCellCoords& other ) const;
1516 bool operator!=( const wxGridCellCoords& other ) const;
1517
1518 %extend {
1519 PyObject* Get() {
1520 PyObject* tup = PyTuple_New(2);
1521 PyTuple_SET_ITEM(tup, 0, PyInt_FromLong(self->GetRow()));
1522 PyTuple_SET_ITEM(tup, 1, PyInt_FromLong(self->GetCol()));
1523 return tup;
1524 }
1525 }
1526 %pythoncode {
1527 asTuple = wx._deprecated(Get, "asTuple is deprecated, use `Get` instead")
1528 def __str__(self): return str(self.Get())
1529 def __repr__(self): return 'wxGridCellCoords'+str(self.Get())
1530 def __len__(self): return len(self.Get())
1531 def __getitem__(self, index): return self.asTuple()[index]
1532 def __setitem__(self, index, val):
1533 if index == 0: self.SetRow(val)
1534 elif index == 1: self.SetCol(val)
1535 else: raise IndexError
1536 }
1537
1538 };
1539
1540
1541 //---------------------------------------------------------------------------
1542 //---------------------------------------------------------------------------
1543 // The grid itself
1544
1545
1546 // Fool SWIG into treating this enum as an int
1547 typedef int WXGRIDSELECTIONMODES;
1548
1549 // but let the C++ code know what it really is.
1550 %{
1551 typedef wxGrid::wxGridSelectionModes WXGRIDSELECTIONMODES;
1552 %}
1553
1554
1555
1556 MustHaveApp(wxGrid);
1557
1558 class wxGrid : public wxScrolledWindow
1559 {
1560 public:
1561 %pythonAppend wxGrid "self._setOORInfo(self)"
1562
1563 wxGrid( wxWindow *parent,
1564 wxWindowID id=-1,
1565 const wxPoint& pos = wxDefaultPosition,
1566 const wxSize& size = wxDefaultSize,
1567 long style = wxWANTS_CHARS,
1568 const wxString& name = wxPyPanelNameStr);
1569
1570 %name(PreGrid) wxGrid();
1571
1572
1573 bool Create( wxWindow *parent,
1574 wxWindowID id=-1,
1575 const wxPoint& pos = wxDefaultPosition,
1576 const wxSize& size = wxDefaultSize,
1577 long style = wxWANTS_CHARS,
1578 const wxString& name = wxPyPanelNameStr );
1579
1580
1581 enum wxGridSelectionModes {
1582 wxGridSelectCells,
1583 wxGridSelectRows,
1584 wxGridSelectColumns
1585 };
1586 %pythoncode {
1587 SelectCells = wxGridSelectCells
1588 SelectRows = wxGridSelectRows
1589 SelectColumns = wxGridSelectColumns
1590 }
1591
1592 bool CreateGrid( int numRows, int numCols,
1593 WXGRIDSELECTIONMODES selmode = wxGrid::wxGridSelectCells );
1594 void SetSelectionMode(WXGRIDSELECTIONMODES selmode);
1595 WXGRIDSELECTIONMODES GetSelectionMode();
1596
1597
1598 // ------ grid dimensions
1599 //
1600 int GetNumberRows();
1601 int GetNumberCols();
1602
1603
1604 bool ProcessTableMessage( wxGridTableMessage& );
1605
1606
1607 wxGridTableBase * GetTable() const;
1608 bool SetTable( wxGridTableBase *table, bool takeOwnership=False,
1609 WXGRIDSELECTIONMODES selmode =
1610 wxGrid::wxGridSelectCells );
1611
1612 void ClearGrid();
1613 bool InsertRows( int pos = 0, int numRows = 1, bool updateLabels=True );
1614 bool AppendRows( int numRows = 1, bool updateLabels=True );
1615 bool DeleteRows( int pos = 0, int numRows = 1, bool updateLabels=True );
1616 bool InsertCols( int pos = 0, int numCols = 1, bool updateLabels=True );
1617 bool AppendCols( int numCols = 1, bool updateLabels=True );
1618 bool DeleteCols( int pos = 0, int numCols = 1, bool updateLabels=True );
1619
1620
1621 // this function is called when the current cell highlight must be redrawn
1622 // and may be overridden by the user
1623 virtual void DrawCellHighlight( wxDC& dc, const wxGridCellAttr *attr );
1624
1625
1626 // ------ Cell text drawing functions
1627 //
1628 void DrawTextRectangle( wxDC& dc, const wxString&, const wxRect&,
1629 int horizontalAlignment = wxLEFT,
1630 int verticalAlignment = wxTOP,
1631 int textOrientation = wxHORIZONTAL );
1632
1633 // // Split a string containing newline chararcters into an array of
1634 // // strings and return the number of lines
1635 // //
1636 // void StringToLines( const wxString& value, wxArrayString& lines );
1637
1638 DocDeclA(
1639 void, GetTextBoxSize( wxDC& dc, wxArrayString& lines,
1640 long *OUTPUT, long *OUTPUT ),
1641 "GetTextBoxSize(DC dc, list lines) -> (width, height)");
1642
1643
1644 // ------
1645 // Code that does a lot of grid modification can be enclosed
1646 // between BeginBatch() and EndBatch() calls to avoid screen
1647 // flicker
1648 //
1649 void BeginBatch();
1650 void EndBatch();
1651 int GetBatchCount();
1652 void ForceRefresh();
1653
1654
1655 // ------ edit control functions
1656 //
1657 bool IsEditable();
1658 void EnableEditing( bool edit );
1659
1660 void EnableCellEditControl( bool enable = True );
1661 void DisableCellEditControl();
1662 bool CanEnableCellControl() const;
1663 bool IsCellEditControlEnabled() const;
1664 bool IsCellEditControlShown() const;
1665
1666 bool IsCurrentCellReadOnly() const;
1667
1668 void ShowCellEditControl();
1669 void HideCellEditControl();
1670 void SaveEditControlValue();
1671
1672
1673 // ------ grid location functions
1674 // Note that all of these functions work with the logical coordinates of
1675 // grid cells and labels so you will need to convert from device
1676 // coordinates for mouse events etc.
1677 //
1678
1679 //void XYToCell( int x, int y, wxGridCellCoords& );
1680 %extend {
1681 wxGridCellCoords XYToCell(int x, int y) {
1682 wxGridCellCoords rv;
1683 self->XYToCell(x, y, rv);
1684 return rv;
1685 }
1686 }
1687
1688 int YToRow( int y );
1689 int XToCol( int x );
1690
1691 int YToEdgeOfRow( int y );
1692 int XToEdgeOfCol( int x );
1693
1694 wxRect CellToRect( int row, int col );
1695 // TODO: ??? wxRect CellToRect( const wxGridCellCoords& coords );
1696
1697
1698 int GetGridCursorRow();
1699 int GetGridCursorCol();
1700
1701 // check to see if a cell is either wholly visible (the default arg) or
1702 // at least partially visible in the grid window
1703 //
1704 bool IsVisible( int row, int col, bool wholeCellVisible = True );
1705 // TODO: ??? bool IsVisible( const wxGridCellCoords& coords, bool wholeCellVisible = True );
1706 void MakeCellVisible( int row, int col );
1707 // TODO: ??? void MakeCellVisible( const wxGridCellCoords& coords );
1708
1709
1710 // ------ grid cursor movement functions
1711 //
1712 void SetGridCursor( int row, int col );
1713 bool MoveCursorUp( bool expandSelection );
1714 bool MoveCursorDown( bool expandSelection );
1715 bool MoveCursorLeft( bool expandSelection );
1716 bool MoveCursorRight( bool expandSelection );
1717 bool MovePageDown();
1718 bool MovePageUp();
1719 bool MoveCursorUpBlock( bool expandSelection );
1720 bool MoveCursorDownBlock( bool expandSelection );
1721 bool MoveCursorLeftBlock( bool expandSelection );
1722 bool MoveCursorRightBlock( bool expandSelection );
1723
1724
1725 // ------ label and gridline formatting
1726 //
1727 int GetDefaultRowLabelSize();
1728 int GetRowLabelSize();
1729 int GetDefaultColLabelSize();
1730 int GetColLabelSize();
1731 wxColour GetLabelBackgroundColour();
1732 wxColour GetLabelTextColour();
1733 wxFont GetLabelFont();
1734
1735 DocDeclA(
1736 void, GetRowLabelAlignment( int *OUTPUT, int *OUTPUT ),
1737 "GetRowLabelAlignment() -> (horiz, vert)");
1738
1739 DocDeclA(
1740 void, GetColLabelAlignment( int *OUTPUT, int *OUTPUT ),
1741 "GetColLabelAlignment() -> (horiz, vert)");
1742
1743 int GetColLabelTextOrientation();
1744 wxString GetRowLabelValue( int row );
1745 wxString GetColLabelValue( int col );
1746 wxColour GetGridLineColour();
1747 wxColour GetCellHighlightColour();
1748 int GetCellHighlightPenWidth();
1749 int GetCellHighlightROPenWidth();
1750
1751 void SetRowLabelSize( int width );
1752 void SetColLabelSize( int height );
1753 void SetLabelBackgroundColour( const wxColour& );
1754 void SetLabelTextColour( const wxColour& );
1755 void SetLabelFont( const wxFont& );
1756 void SetRowLabelAlignment( int horiz, int vert );
1757 void SetColLabelAlignment( int horiz, int vert );
1758 void SetColLabelTextOrientation( int textOrientation );
1759 void SetRowLabelValue( int row, const wxString& );
1760 void SetColLabelValue( int col, const wxString& );
1761 void SetGridLineColour( const wxColour& );
1762 void SetCellHighlightColour( const wxColour& );
1763 void SetCellHighlightPenWidth(int width);
1764 void SetCellHighlightROPenWidth(int width);
1765
1766 void EnableDragRowSize( bool enable = True );
1767 void DisableDragRowSize();
1768 bool CanDragRowSize();
1769 void EnableDragColSize( bool enable = True );
1770 void DisableDragColSize();
1771 bool CanDragColSize();
1772 void EnableDragGridSize(bool enable = True);
1773 void DisableDragGridSize();
1774 bool CanDragGridSize();
1775
1776 // this sets the specified attribute for all cells in this row/col
1777 void SetAttr(int row, int col, wxGridCellAttr *attr);
1778 void SetRowAttr(int row, wxGridCellAttr *attr);
1779 void SetColAttr(int col, wxGridCellAttr *attr);
1780
1781 // shortcuts for setting the column parameters
1782
1783 // set the format for the data in the column: default is string
1784 void SetColFormatBool(int col);
1785 void SetColFormatNumber(int col);
1786 void SetColFormatFloat(int col, int width = -1, int precision = -1);
1787 void SetColFormatCustom(int col, const wxString& typeName);
1788
1789 void EnableGridLines( bool enable = True );
1790 bool GridLinesEnabled();
1791
1792 // ------ row and col formatting
1793 //
1794 int GetDefaultRowSize();
1795 int GetRowSize( int row );
1796 int GetDefaultColSize();
1797 int GetColSize( int col );
1798 wxColour GetDefaultCellBackgroundColour();
1799 wxColour GetCellBackgroundColour( int row, int col );
1800 wxColour GetDefaultCellTextColour();
1801 wxColour GetCellTextColour( int row, int col );
1802 wxFont GetDefaultCellFont();
1803 wxFont GetCellFont( int row, int col );
1804
1805 DocDeclA(
1806 void, GetDefaultCellAlignment( int *OUTPUT, int *OUTPUT ),
1807 "GetDefaultCellAlignment() -> (horiz, vert)");
1808
1809 DocDeclA(
1810 void, GetCellAlignment( int row, int col, int *OUTPUT, int *OUTPUT ),
1811 "GetCellAlignment() -> (horiz, vert)");
1812
1813 bool GetDefaultCellOverflow();
1814 bool GetCellOverflow( int row, int col );
1815
1816 DocDeclA(
1817 void, GetCellSize( int row, int col, int *OUTPUT, int *OUTPUT ),
1818 "GetCellSize(int row, int col) -> (num_rows, num_cols)");
1819
1820 void SetDefaultRowSize( int height, bool resizeExistingRows = False );
1821 void SetRowSize( int row, int height );
1822 void SetDefaultColSize( int width, bool resizeExistingCols = False );
1823
1824 void SetColSize( int col, int width );
1825
1826 // automatically size the column or row to fit to its contents, if
1827 // setAsMin is True, this optimal width will also be set as minimal width
1828 // for this column
1829 void AutoSizeColumn( int col, bool setAsMin = True );
1830 void AutoSizeRow( int row, bool setAsMin = True );
1831
1832
1833 // auto size all columns (very ineffective for big grids!)
1834 void AutoSizeColumns( bool setAsMin = True );
1835 void AutoSizeRows( bool setAsMin = True );
1836
1837 // auto size the grid, that is make the columns/rows of the "right" size
1838 // and also set the grid size to just fit its contents
1839 void AutoSize();
1840
1841 // autosize row height depending on label text
1842 void AutoSizeRowLabelSize( int row );
1843
1844 // autosize column width depending on label text
1845 void AutoSizeColLabelSize( int col );
1846
1847
1848 // column won't be resized to be lesser width - this must be called during
1849 // the grid creation because it won't resize the column if it's already
1850 // narrower than the minimal width
1851 void SetColMinimalWidth( int col, int width );
1852 void SetRowMinimalHeight( int row, int width );
1853
1854 void SetColMinimalAcceptableWidth( int width );
1855 void SetRowMinimalAcceptableHeight( int width );
1856 int GetColMinimalAcceptableWidth() const;
1857 int GetRowMinimalAcceptableHeight() const;
1858
1859 void SetDefaultCellBackgroundColour( const wxColour& );
1860 void SetCellBackgroundColour( int row, int col, const wxColour& );
1861 void SetDefaultCellTextColour( const wxColour& );
1862
1863 void SetCellTextColour( int row, int col, const wxColour& );
1864 void SetDefaultCellFont( const wxFont& );
1865 void SetCellFont( int row, int col, const wxFont& );
1866 void SetDefaultCellAlignment( int horiz, int vert );
1867 void SetCellAlignment( int row, int col, int horiz, int vert );
1868 void SetDefaultCellOverflow( bool allow );
1869 void SetCellOverflow( int row, int col, bool allow );
1870 void SetCellSize( int row, int col, int num_rows, int num_cols );
1871
1872 // takes ownership of the pointer
1873 void SetDefaultRenderer(wxGridCellRenderer *renderer);
1874 void SetCellRenderer(int row, int col, wxGridCellRenderer *renderer);
1875 wxGridCellRenderer *GetDefaultRenderer() const;
1876 wxGridCellRenderer* GetCellRenderer(int row, int col);
1877
1878 // takes ownership of the pointer
1879 void SetDefaultEditor(wxGridCellEditor *editor);
1880 void SetCellEditor(int row, int col, wxGridCellEditor *editor);
1881 wxGridCellEditor *GetDefaultEditor() const;
1882 wxGridCellEditor* GetCellEditor(int row, int col);
1883
1884
1885
1886 // ------ cell value accessors
1887 //
1888 wxString GetCellValue( int row, int col );
1889 // TODO: ??? wxString GetCellValue( const wxGridCellCoords& coords )
1890
1891 void SetCellValue( int row, int col, const wxString& s );
1892 // TODO: ??? void SetCellValue( const wxGridCellCoords& coords, const wxString& s )
1893
1894 // returns True if the cell can't be edited
1895 bool IsReadOnly(int row, int col) const;
1896
1897 // make the cell editable/readonly
1898 void SetReadOnly(int row, int col, bool isReadOnly = True);
1899
1900 // ------ selections of blocks of cells
1901 //
1902 void SelectRow( int row, bool addToSelected = False );
1903 void SelectCol( int col, bool addToSelected = False );
1904
1905 void SelectBlock( int topRow, int leftCol, int bottomRow, int rightCol,
1906 bool addToSelected = False );
1907 // TODO: ??? void SelectBlock( const wxGridCellCoords& topLeft,
1908 // TODO: ??? const wxGridCellCoords& bottomRight )
1909
1910 void SelectAll();
1911 bool IsSelection();
1912 void ClearSelection();
1913 bool IsInSelection( int row, int col );
1914 // TODO: ??? bool IsInSelection( const wxGridCellCoords& coords )
1915
1916 const wxGridCellCoordsArray GetSelectedCells() const;
1917 const wxGridCellCoordsArray GetSelectionBlockTopLeft() const;
1918 const wxGridCellCoordsArray GetSelectionBlockBottomRight() const;
1919 const wxArrayInt GetSelectedRows() const;
1920 const wxArrayInt GetSelectedCols() const;
1921
1922 void DeselectRow( int row );
1923 void DeselectCol( int col );
1924 void DeselectCell( int row, int col );
1925
1926
1927 // This function returns the rectangle that encloses the block of cells
1928 // limited by TopLeft and BottomRight cell in device coords and clipped
1929 // to the client size of the grid window.
1930 //
1931 wxRect BlockToDeviceRect( const wxGridCellCoords & topLeft,
1932 const wxGridCellCoords & bottomRight );
1933
1934
1935 // Access or update the selection fore/back colours
1936 wxColour GetSelectionBackground() const;
1937 wxColour GetSelectionForeground() const;
1938
1939 void SetSelectionBackground(const wxColour& c);
1940 void SetSelectionForeground(const wxColour& c);
1941
1942
1943 // Methods for a registry for mapping data types to Renderers/Editors
1944 void RegisterDataType(const wxString& typeName,
1945 wxGridCellRenderer* renderer,
1946 wxGridCellEditor* editor);
1947 wxGridCellEditor* GetDefaultEditorForCell(int row, int col) const;
1948 // TODO: ??? wxGridCellEditor* GetDefaultEditorForCell(const wxGridCellCoords& c) const
1949 wxGridCellRenderer* GetDefaultRendererForCell(int row, int col) const;
1950 wxGridCellEditor* GetDefaultEditorForType(const wxString& typeName) const;
1951 wxGridCellRenderer* GetDefaultRendererForType(const wxString& typeName) const;
1952
1953 // grid may occupy more space than needed for its rows/columns, this
1954 // function allows to set how big this extra space is
1955 void SetMargins(int extraWidth, int extraHeight);
1956
1957
1958 // Accessors for component windows
1959 wxWindow* GetGridWindow();
1960 wxWindow* GetGridRowLabelWindow();
1961 wxWindow* GetGridColLabelWindow();
1962 wxWindow* GetGridCornerLabelWindow();
1963
1964
1965 static wxVisualAttributes
1966 GetClassDefaultAttributes(wxWindowVariant variant = wxWINDOW_VARIANT_NORMAL);
1967 };
1968
1969
1970 //---------------------------------------------------------------------------
1971 //---------------------------------------------------------------------------
1972 // Grid events and stuff
1973
1974
1975
1976 class wxGridEvent : public wxNotifyEvent
1977 {
1978 public:
1979 wxGridEvent(int id, wxEventType type, wxGrid* obj,
1980 int row=-1, int col=-1, int x=-1, int y=-1, bool sel = True,
1981 bool control=False, bool shift=False, bool alt=False, bool meta=False);
1982
1983 virtual int GetRow();
1984 virtual int GetCol();
1985 wxPoint GetPosition();
1986 bool Selecting();
1987 bool ControlDown();
1988 bool MetaDown();
1989 bool ShiftDown();
1990 bool AltDown();
1991
1992 };
1993
1994
1995 class wxGridSizeEvent : public wxNotifyEvent
1996 {
1997 public:
1998 wxGridSizeEvent(int id, wxEventType type, wxGrid* obj,
1999 int rowOrCol=-1, int x=-1, int y=-1,
2000 bool control=False, bool shift=False, bool alt=False, bool meta=False);
2001
2002 int GetRowOrCol();
2003 wxPoint GetPosition();
2004 bool ControlDown();
2005 bool MetaDown();
2006 bool ShiftDown();
2007 bool AltDown();
2008
2009 };
2010
2011
2012 class wxGridRangeSelectEvent : public wxNotifyEvent
2013 {
2014 public:
2015 wxGridRangeSelectEvent(int id, wxEventType type, wxGrid* obj,
2016 const wxGridCellCoords& topLeft,
2017 const wxGridCellCoords& bottomRight,
2018 bool sel = True,
2019 bool control=False, bool shift=False,
2020 bool alt=False, bool meta=False);
2021
2022 wxGridCellCoords GetTopLeftCoords();
2023 wxGridCellCoords GetBottomRightCoords();
2024 int GetTopRow();
2025 int GetBottomRow();
2026 int GetLeftCol();
2027 int GetRightCol();
2028 bool Selecting();
2029 bool ControlDown();
2030 bool MetaDown();
2031 bool ShiftDown();
2032 bool AltDown();
2033 };
2034
2035
2036 class wxGridEditorCreatedEvent : public wxCommandEvent {
2037 public:
2038 wxGridEditorCreatedEvent(int id, wxEventType type, wxObject* obj,
2039 int row, int col, wxControl* ctrl);
2040
2041 int GetRow();
2042 int GetCol();
2043 wxControl* GetControl();
2044 void SetRow(int row);
2045 void SetCol(int col);
2046 void SetControl(wxControl* ctrl);
2047 };
2048
2049
2050
2051 %constant wxEventType wxEVT_GRID_CELL_LEFT_CLICK;
2052 %constant wxEventType wxEVT_GRID_CELL_RIGHT_CLICK;
2053 %constant wxEventType wxEVT_GRID_CELL_LEFT_DCLICK;
2054 %constant wxEventType wxEVT_GRID_CELL_RIGHT_DCLICK;
2055 %constant wxEventType wxEVT_GRID_LABEL_LEFT_CLICK;
2056 %constant wxEventType wxEVT_GRID_LABEL_RIGHT_CLICK;
2057 %constant wxEventType wxEVT_GRID_LABEL_LEFT_DCLICK;
2058 %constant wxEventType wxEVT_GRID_LABEL_RIGHT_DCLICK;
2059 %constant wxEventType wxEVT_GRID_ROW_SIZE;
2060 %constant wxEventType wxEVT_GRID_COL_SIZE;
2061 %constant wxEventType wxEVT_GRID_RANGE_SELECT;
2062 %constant wxEventType wxEVT_GRID_CELL_CHANGE;
2063 %constant wxEventType wxEVT_GRID_SELECT_CELL;
2064 %constant wxEventType wxEVT_GRID_EDITOR_SHOWN;
2065 %constant wxEventType wxEVT_GRID_EDITOR_HIDDEN;
2066 %constant wxEventType wxEVT_GRID_EDITOR_CREATED;
2067
2068
2069
2070 %pythoncode {
2071 EVT_GRID_CELL_LEFT_CLICK = wx.PyEventBinder( wxEVT_GRID_CELL_LEFT_CLICK )
2072 EVT_GRID_CELL_RIGHT_CLICK = wx.PyEventBinder( wxEVT_GRID_CELL_RIGHT_CLICK )
2073 EVT_GRID_CELL_LEFT_DCLICK = wx.PyEventBinder( wxEVT_GRID_CELL_LEFT_DCLICK )
2074 EVT_GRID_CELL_RIGHT_DCLICK = wx.PyEventBinder( wxEVT_GRID_CELL_RIGHT_DCLICK )
2075 EVT_GRID_LABEL_LEFT_CLICK = wx.PyEventBinder( wxEVT_GRID_LABEL_LEFT_CLICK )
2076 EVT_GRID_LABEL_RIGHT_CLICK = wx.PyEventBinder( wxEVT_GRID_LABEL_RIGHT_CLICK )
2077 EVT_GRID_LABEL_LEFT_DCLICK = wx.PyEventBinder( wxEVT_GRID_LABEL_LEFT_DCLICK )
2078 EVT_GRID_LABEL_RIGHT_DCLICK = wx.PyEventBinder( wxEVT_GRID_LABEL_RIGHT_DCLICK )
2079 EVT_GRID_ROW_SIZE = wx.PyEventBinder( wxEVT_GRID_ROW_SIZE )
2080 EVT_GRID_COL_SIZE = wx.PyEventBinder( wxEVT_GRID_COL_SIZE )
2081 EVT_GRID_RANGE_SELECT = wx.PyEventBinder( wxEVT_GRID_RANGE_SELECT )
2082 EVT_GRID_CELL_CHANGE = wx.PyEventBinder( wxEVT_GRID_CELL_CHANGE )
2083 EVT_GRID_SELECT_CELL = wx.PyEventBinder( wxEVT_GRID_SELECT_CELL )
2084 EVT_GRID_EDITOR_SHOWN = wx.PyEventBinder( wxEVT_GRID_EDITOR_SHOWN )
2085 EVT_GRID_EDITOR_HIDDEN = wx.PyEventBinder( wxEVT_GRID_EDITOR_HIDDEN )
2086 EVT_GRID_EDITOR_CREATED = wx.PyEventBinder( wxEVT_GRID_EDITOR_CREATED )
2087
2088
2089 %# The same as above but with the ability to specify an identifier
2090 EVT_GRID_CMD_CELL_LEFT_CLICK = wx.PyEventBinder( wxEVT_GRID_CELL_LEFT_CLICK, 1 )
2091 EVT_GRID_CMD_CELL_RIGHT_CLICK = wx.PyEventBinder( wxEVT_GRID_CELL_RIGHT_CLICK, 1 )
2092 EVT_GRID_CMD_CELL_LEFT_DCLICK = wx.PyEventBinder( wxEVT_GRID_CELL_LEFT_DCLICK, 1 )
2093 EVT_GRID_CMD_CELL_RIGHT_DCLICK = wx.PyEventBinder( wxEVT_GRID_CELL_RIGHT_DCLICK, 1 )
2094 EVT_GRID_CMD_LABEL_LEFT_CLICK = wx.PyEventBinder( wxEVT_GRID_LABEL_LEFT_CLICK, 1 )
2095 EVT_GRID_CMD_LABEL_RIGHT_CLICK = wx.PyEventBinder( wxEVT_GRID_LABEL_RIGHT_CLICK, 1 )
2096 EVT_GRID_CMD_LABEL_LEFT_DCLICK = wx.PyEventBinder( wxEVT_GRID_LABEL_LEFT_DCLICK, 1 )
2097 EVT_GRID_CMD_LABEL_RIGHT_DCLICK = wx.PyEventBinder( wxEVT_GRID_LABEL_RIGHT_DCLICK, 1 )
2098 EVT_GRID_CMD_ROW_SIZE = wx.PyEventBinder( wxEVT_GRID_ROW_SIZE, 1 )
2099 EVT_GRID_CMD_COL_SIZE = wx.PyEventBinder( wxEVT_GRID_COL_SIZE, 1 )
2100 EVT_GRID_CMD_RANGE_SELECT = wx.PyEventBinder( wxEVT_GRID_RANGE_SELECT, 1 )
2101 EVT_GRID_CMD_CELL_CHANGE = wx.PyEventBinder( wxEVT_GRID_CELL_CHANGE, 1 )
2102 EVT_GRID_CMD_SELECT_CELL = wx.PyEventBinder( wxEVT_GRID_SELECT_CELL, 1 )
2103 EVT_GRID_CMD_EDITOR_SHOWN = wx.PyEventBinder( wxEVT_GRID_EDITOR_SHOWN, 1 )
2104 EVT_GRID_CMD_EDITOR_HIDDEN = wx.PyEventBinder( wxEVT_GRID_EDITOR_HIDDEN, 1 )
2105 EVT_GRID_CMD_EDITOR_CREATED = wx.PyEventBinder( wxEVT_GRID_EDITOR_CREATED, 1 )
2106 }
2107
2108 //---------------------------------------------------------------------------
2109
2110 %init %{
2111 %}
2112
2113 //---------------------------------------------------------------------------
2114 //---------------------------------------------------------------------------
2115