1 ////////////////////////////////////////////////////////////////////////////
3 // Purpose: SWIG definitions for the new wxGrid and related classes
7 // Created: 17-March-2000
9 // Copyright: (c) 2000 by Total Control Software
10 // Licence: wxWindows license
11 /////////////////////////////////////////////////////////////////////////////
14 "Classes for implementing a spreadsheet-like control."
17 %module(package="wx", docstring=DOCSTRING) grid
21 #include "wx/wxPython/wxPython.h"
22 #include "wx/wxPython/pyclasses.h"
23 #include "wx/wxPython/printfw.h"
26 #include <wx/generic/gridctrl.h>
31 //---------------------------------------------------------------------------
34 %pythoncode { wx = _core }
35 %pythoncode { __docfilter__ = wx.__DocFilter(globals()) }
38 %include _grid_rename.i
40 MAKE_CONST_WXSTRING_NOSWIG(EmptyString);
41 MAKE_CONST_WXSTRING_NOSWIG(PanelNameStr);
42 MAKE_CONST_WXSTRING2(DateTimeFormatStr, wxT("%c"));
45 //---------------------------------------------------------------------------
46 // OOR related typemaps and helper functions
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); }
57 #define wxPyMake_TEMPLATE(TYPE) \
58 PyObject* wxPyMake_##TYPE(TYPE* source) { \
59 PyObject* target = NULL; \
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(); \
65 target = data->m_obj; \
68 /* Otherwise make a new wrapper for it the old fashioned way and \
69 give it the OOR treatment */ \
71 target = wxPyConstructObject(source, wxT(#TYPE), False); \
73 source->SetClientObject(new wxPyOORClientData(target)); \
75 } else { /* source was NULL so return None. */ \
76 Py_INCREF(Py_None); target = Py_None; \
82 wxPyMake_TEMPLATE(wxGridCellRenderer)
83 wxPyMake_TEMPLATE(wxGridCellEditor)
84 wxPyMake_TEMPLATE(wxGridCellAttr)
85 wxPyMake_TEMPLATE(wxGridCellAttrProvider)
86 wxPyMake_TEMPLATE(wxGridTableBase)
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
98 #define PYCALLBACK_GCA_INTINTKIND(PCLASS, CBNAME) \
99 wxGridCellAttr* CBNAME(int a, int b, wxGridCellAttr::wxAttrKind c) { \
100 wxGridCellAttr* rval = NULL; \
102 bool blocked = wxPyBeginBlockThreads(); \
103 if ((found = wxPyCBH_findCallback(m_myInst, #CBNAME))) { \
105 wxGridCellAttr* ptr; \
106 ro = wxPyCBH_callCallbackObj(m_myInst, Py_BuildValue("(iii)", a, b, c)); \
108 if (wxPyConvertSwigPtr(ro, (void **)&ptr, wxT("wxGridCellAttr"))) \
113 wxPyEndBlockThreads(blocked); \
115 rval = PCLASS::CBNAME(a, b, c); \
118 wxGridCellAttr *base_##CBNAME(int a, int b, wxGridCellAttr::wxAttrKind c) { \
119 return PCLASS::CBNAME(a, b, c); \
124 #define PYCALLBACK__GCAINTINT(PCLASS, CBNAME) \
125 void CBNAME(wxGridCellAttr *attr, int a, int b) { \
126 bool blocked = wxPyBeginBlockThreads(); \
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)); \
133 wxPyEndBlockThreads(blocked); \
135 PCLASS::CBNAME(attr, a, b); \
137 void base_##CBNAME(wxGridCellAttr *attr, int a, int b) { \
138 PCLASS::CBNAME(attr, a, b); \
143 #define PYCALLBACK__GCAINT(PCLASS, CBNAME) \
144 void CBNAME(wxGridCellAttr *attr, int val) { \
145 bool blocked = wxPyBeginBlockThreads(); \
147 if ((found = wxPyCBH_findCallback(m_myInst, #CBNAME))) { \
148 PyObject* obj = wxPyMake_wxGridCellAttr(attr); \
149 wxPyCBH_callCallback(m_myInst, Py_BuildValue("(Oi)", obj, val)); \
152 wxPyEndBlockThreads(blocked); \
154 PCLASS::CBNAME(attr, val); \
156 void base_##CBNAME(wxGridCellAttr *attr, int val) { \
157 PCLASS::CBNAME(attr, val); \
162 #define PYCALLBACK_INT__pure(CBNAME) \
164 bool blocked = wxPyBeginBlockThreads(); \
166 if (wxPyCBH_findCallback(m_myInst, #CBNAME)) \
167 rval = wxPyCBH_callCallback(m_myInst, Py_BuildValue("()")); \
168 wxPyEndBlockThreads(blocked); \
174 #define PYCALLBACK_BOOL_INTINT_pure(CBNAME) \
175 bool CBNAME(int a, int b) { \
176 bool blocked = wxPyBeginBlockThreads(); \
178 if (wxPyCBH_findCallback(m_myInst, #CBNAME)) \
179 rval = wxPyCBH_callCallback(m_myInst, Py_BuildValue("(ii)",a,b)); \
180 wxPyEndBlockThreads(blocked); \
185 #define PYCALLBACK_STRING_INTINT_pure(CBNAME) \
186 wxString CBNAME(int a, int b) { \
187 bool blocked = wxPyBeginBlockThreads(); \
189 if (wxPyCBH_findCallback(m_myInst, #CBNAME)) { \
191 ro = wxPyCBH_callCallbackObj(m_myInst, Py_BuildValue("(ii)",a,b)); \
193 rval = Py2wxString(ro); \
197 wxPyEndBlockThreads(blocked); \
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));\
210 wxPyEndBlockThreads(blocked); \
214 #define PYCALLBACK_STRING_INTINT(PCLASS, CBNAME) \
215 wxString CBNAME(int a, int b) { \
217 bool blocked = wxPyBeginBlockThreads(); \
219 if ((found = wxPyCBH_findCallback(m_myInst, #CBNAME))) { \
221 ro = wxPyCBH_callCallbackObj(m_myInst, Py_BuildValue("(ii)",a,b)); \
223 rval = Py2wxString(ro); \
227 wxPyEndBlockThreads(blocked); \
229 rval = PCLASS::CBNAME(a, b); \
232 wxString base_##CBNAME(int a, int b) { \
233 return PCLASS::CBNAME(a, b); \
237 #define PYCALLBACK_BOOL_INTINTSTRING(PCLASS, CBNAME) \
238 bool CBNAME(int a, int b, const wxString& c) { \
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));\
247 wxPyEndBlockThreads(blocked); \
249 rval = PCLASS::CBNAME(a,b,c); \
252 bool base_##CBNAME(int a, int b, const wxString& c) { \
253 return PCLASS::CBNAME(a,b,c); \
259 #define PYCALLBACK_LONG_INTINT(PCLASS, CBNAME) \
260 long CBNAME(int a, int b) { \
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); \
268 rval = PCLASS::CBNAME(a,b); \
271 long base_##CBNAME(int a, int b) { \
272 return PCLASS::CBNAME(a,b); \
277 #define PYCALLBACK_BOOL_INTINT(PCLASS, CBNAME) \
278 bool CBNAME(int a, int b) { \
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); \
286 rval = PCLASS::CBNAME(a,b); \
289 bool base_##CBNAME(int a, int b) { \
290 return PCLASS::CBNAME(a,b); \
295 #define PYCALLBACK_DOUBLE_INTINT(PCLASS, CBNAME) \
296 double CBNAME(int a, int b) { \
298 bool blocked = wxPyBeginBlockThreads(); \
300 if ((found = wxPyCBH_findCallback(m_myInst, #CBNAME))) { \
302 ro = wxPyCBH_callCallbackObj(m_myInst, Py_BuildValue("(ii)",a,b)); \
304 PyObject* str = PyObject_Str(ro); \
305 rval = PyFloat_AsDouble(str); \
306 Py_DECREF(ro); Py_DECREF(str); \
309 wxPyEndBlockThreads(blocked); \
311 rval = PCLASS::CBNAME(a, b); \
314 double base_##CBNAME(int a, int b) { \
315 return PCLASS::CBNAME(a, b); \
320 #define PYCALLBACK__(PCLASS, CBNAME) \
323 bool blocked = wxPyBeginBlockThreads(); \
324 if ((found = wxPyCBH_findCallback(m_myInst, #CBNAME))) \
325 wxPyCBH_callCallback(m_myInst, Py_BuildValue("()")); \
326 wxPyEndBlockThreads(blocked); \
330 void base_##CBNAME() { \
337 #define PYCALLBACK_BOOL_SIZETSIZET(PCLASS, CBNAME) \
338 bool CBNAME(size_t a, size_t b) { \
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); \
346 rval = PCLASS::CBNAME(a,b); \
349 bool base_##CBNAME(size_t a, size_t b) { \
350 return PCLASS::CBNAME(a,b); \
355 #define PYCALLBACK_BOOL_SIZET(PCLASS, CBNAME) \
356 bool CBNAME(size_t a) { \
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); \
364 rval = PCLASS::CBNAME(a); \
367 bool base_##CBNAME(size_t a) { \
368 return PCLASS::CBNAME(a); \
372 #define PYCALLBACK_STRING_INT(PCLASS, CBNAME) \
373 wxString CBNAME(int a) { \
375 bool blocked = wxPyBeginBlockThreads(); \
377 if ((found = wxPyCBH_findCallback(m_myInst, #CBNAME))) { \
379 ro = wxPyCBH_callCallbackObj(m_myInst, Py_BuildValue("(i)",a)); \
381 rval = Py2wxString(ro); \
385 wxPyEndBlockThreads(blocked); \
387 rval = PCLASS::CBNAME(a); \
390 wxString base_##CBNAME(int a) { \
391 return PCLASS::CBNAME(a); \
395 #define PYCALLBACK__INTSTRING(PCLASS, CBNAME) \
396 void CBNAME(int a, const wxString& c) { \
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)); \
404 wxPyEndBlockThreads(blocked); \
406 PCLASS::CBNAME(a,c); \
408 void base_##CBNAME(int a, const wxString& c) { \
409 PCLASS::CBNAME(a,c); \
415 #define PYCALLBACK_BOOL_(PCLASS, CBNAME) \
419 bool blocked = wxPyBeginBlockThreads(); \
420 if ((found = wxPyCBH_findCallback(m_myInst, #CBNAME))) \
421 rval = wxPyCBH_callCallback(m_myInst, Py_BuildValue("()")); \
422 wxPyEndBlockThreads(blocked); \
424 rval = PCLASS::CBNAME(); \
427 bool base_##CBNAME() { \
428 return PCLASS::CBNAME(); \
433 #define PYCALLBACK__SIZETINT(PCLASS, CBNAME) \
434 void CBNAME(size_t a, int b) { \
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); \
441 PCLASS::CBNAME(a,b); \
443 void base_##CBNAME(size_t a, int b) { \
444 PCLASS::CBNAME(a,b); \
450 #define PYCALLBACK__INTINTLONG(PCLASS, CBNAME) \
451 void CBNAME(int a, int b, long c) { \
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); \
458 PCLASS::CBNAME(a,b,c); \
460 void base_##CBNAME(int a, int b, long c) { \
461 PCLASS::CBNAME(a,b,c); \
467 #define PYCALLBACK__INTINTDOUBLE(PCLASS, CBNAME) \
468 void CBNAME(int a, int b, double c) { \
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); \
475 PCLASS::CBNAME(a,b,c); \
477 void base_##CBNAME(int a, int b, double c) { \
478 PCLASS::CBNAME(a,b,c); \
483 #define PYCALLBACK__INTINTBOOL(PCLASS, CBNAME) \
484 void CBNAME(int a, int b, bool c) { \
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); \
491 PCLASS::CBNAME(a,b,c); \
493 void base_##CBNAME(int a, int b, bool c) { \
494 PCLASS::CBNAME(a,b,c); \
502 //---------------------------------------------------------------------------
504 class wxGridCellCoords;
505 class wxGridCellAttr;
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"
519 const wxGridCellCoords wxGridNoCellCoords;
520 const wxRect wxGridNoCellRect;
524 //---------------------------------------------------------------------------
525 // wxGridCellRenderer is an ABC, and several derived classes are available.
526 // Classes implemented in Python should be derived from wxPyGridCellRenderer.
529 class wxGridCellRenderer
533 void _setOORInfo(PyObject* _self) {
534 self->SetClientObject(new wxPyOORClientData(_self));
538 void SetParameters(const wxString& params);
542 virtual void Draw(wxGrid& grid,
543 wxGridCellAttr& attr,
548 virtual wxSize GetBestSize(wxGrid& grid,
549 wxGridCellAttr& attr,
552 virtual wxGridCellRenderer *Clone() const;
556 // The C++ version of wxPyGridCellRenderer
558 class wxPyGridCellRenderer : public wxGridCellRenderer
561 wxPyGridCellRenderer() : wxGridCellRenderer() {};
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);
574 wxPyCBH_callCallback(m_myInst, Py_BuildValue("(OOOOiii)", go, ao, dco, ro,
575 row, col, isSelected));
581 wxPyEndBlockThreads(blocked);
584 wxSize GetBestSize(wxGrid& grid, wxGridCellAttr& attr, wxDC& dc,
587 bool blocked = wxPyBeginBlockThreads();
588 if (wxPyCBH_findCallback(m_myInst, "GetBestSize")) {
591 PyObject* go = wxPyMake_wxObject(&grid);
592 PyObject* dco = wxPyMake_wxObject(&dc);
593 PyObject* ao = wxPyMake_wxGridCellAttr(&attr);
595 ro = wxPyCBH_callCallbackObj(m_myInst, Py_BuildValue("(OOOii)",
603 const char* errmsg = "GetBestSize should return a 2-tuple of integers or a wxSize object.";
604 if (wxPyConvertSwigPtr(ro, (void **)&ptr, wxT("wxSize"))) {
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));
613 PyErr_SetString(PyExc_TypeError, errmsg);
618 PyErr_SetString(PyExc_TypeError, errmsg);
623 wxPyEndBlockThreads(blocked);
628 wxGridCellRenderer *Clone() const {
629 wxGridCellRenderer* rval = NULL;
630 bool blocked = wxPyBeginBlockThreads();
631 if (wxPyCBH_findCallback(m_myInst, "Clone")) {
633 wxGridCellRenderer* ptr;
634 ro = wxPyCBH_callCallbackObj(m_myInst, Py_BuildValue("()"));
636 if (wxPyConvertSwigPtr(ro, (void **)&ptr, wxT("wxGridCellRenderer")))
641 wxPyEndBlockThreads(blocked);
645 DEC_PYCALLBACK__STRING(SetParameters);
650 IMP_PYCALLBACK__STRING( wxPyGridCellRenderer, wxGridCellRenderer, SetParameters);
655 // Let SWIG know about it so it can create the Python version
656 class wxPyGridCellRenderer : public wxGridCellRenderer {
658 %pythonAppend wxPyGridCellRenderer "self._setCallbackInfo(self, PyGridCellRenderer);self._setOORInfo(self)"
660 wxPyGridCellRenderer();
661 void _setCallbackInfo(PyObject* self, PyObject* _class);
663 void base_SetParameters(const wxString& params);
666 //---------------------------------------------------------------------------
667 // Predefined Renderers
669 class wxGridCellStringRenderer : public wxGridCellRenderer
672 %pythonAppend wxGridCellStringRenderer "self._setOORInfo(self)"
673 wxGridCellStringRenderer();
677 class wxGridCellNumberRenderer : public wxGridCellStringRenderer
680 %pythonAppend wxGridCellNumberRenderer "self._setOORInfo(self)"
681 wxGridCellNumberRenderer();
685 class wxGridCellFloatRenderer : public wxGridCellStringRenderer
688 %pythonAppend wxGridCellFloatRenderer "self._setOORInfo(self)"
689 wxGridCellFloatRenderer(int width = -1, int precision = -1);
691 int GetWidth() const;
692 void SetWidth(int width);
693 int GetPrecision() const;
694 void SetPrecision(int precision);
698 class wxGridCellBoolRenderer : public wxGridCellRenderer
701 %pythonAppend wxGridCellBoolRenderer "self._setOORInfo(self)"
702 wxGridCellBoolRenderer();
706 class wxGridCellDateTimeRenderer : public wxGridCellStringRenderer
709 %pythonAppend wxGridCellDateTimeRenderer "self._setOORInfo(self)"
710 wxGridCellDateTimeRenderer(wxString outformat = wxPyDateTimeFormatStr,
711 wxString informat = wxPyDateTimeFormatStr);
715 class wxGridCellEnumRenderer : public wxGridCellStringRenderer
718 %pythonAppend wxGridCellEnumRenderer "self._setOORInfo(self)"
719 wxGridCellEnumRenderer( const wxString& choices = wxPyEmptyString );
723 class wxGridCellAutoWrapStringRenderer : public wxGridCellStringRenderer
726 %pythonAppend wxGridCellAutoWrapStringRenderer "self._setOORInfo(self)"
727 wxGridCellAutoWrapStringRenderer();
731 //---------------------------------------------------------------------------
732 // wxGridCellEditor is an ABC, and several derived classes are available.
733 // Classes implemented in Python should be derived from wxPyGridCellEditor.
735 class wxGridCellEditor
739 void _setOORInfo(PyObject* _self) {
740 self->SetClientObject(new wxPyOORClientData(_self));
745 wxControl* GetControl();
746 void SetControl(wxControl* control);
748 wxGridCellAttr* GetCellAttr();
749 void SetCellAttr(wxGridCellAttr* attr);
751 void SetParameters(const wxString& params);
755 virtual void Create(wxWindow* parent,
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;
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();
775 // The C++ version of wxPyGridCellEditor
777 class wxPyGridCellEditor : public wxGridCellEditor
780 wxPyGridCellEditor() : wxGridCellEditor() {}
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);
788 wxPyCBH_callCallback(m_myInst, Py_BuildValue("(OiO)", po, id, eo));
792 wxPyEndBlockThreads(blocked);
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));
803 wxPyEndBlockThreads(blocked);
807 bool EndEdit(int row, int col, wxGrid* grid) {
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));
815 wxPyEndBlockThreads(blocked);
820 wxGridCellEditor* Clone() const {
821 wxGridCellEditor* rval = NULL;
822 bool blocked = wxPyBeginBlockThreads();
823 if (wxPyCBH_findCallback(m_myInst, "Clone")) {
825 wxGridCellEditor* ptr;
826 ro = wxPyCBH_callCallbackObj(m_myInst, Py_BuildValue("()"));
828 if (wxPyConvertSwigPtr(ro, (void **)&ptr, wxT("wxGridCellEditor")))
833 wxPyEndBlockThreads(blocked);
838 void Show(bool show, wxGridCellAttr *attr) {
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));
846 wxPyEndBlockThreads(blocked);
848 wxGridCellEditor::Show(show, attr);
850 void base_Show(bool show, wxGridCellAttr *attr) {
851 wxGridCellEditor::Show(show, attr);
855 void PaintBackground(const wxRect& rectCell, wxGridCellAttr *attr) {
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);
862 wxPyCBH_callCallback(m_myInst, Py_BuildValue("(OO)", ro, ao));
867 wxPyEndBlockThreads(blocked);
869 wxGridCellEditor::PaintBackground(rectCell, attr);
871 void base_PaintBackground(const wxRect& rectCell, wxGridCellAttr *attr) {
872 wxGridCellEditor::PaintBackground(rectCell, attr);
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);
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);
903 // Let SWIG know about it so it can create the Python version
904 class wxPyGridCellEditor : public wxGridCellEditor {
906 %pythonAppend wxPyGridCellEditor "self._setCallbackInfo(self, PyGridCellEditor);self._setOORInfo(self)"
908 wxPyGridCellEditor();
909 void _setCallbackInfo(PyObject* self, PyObject* _class);
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);
919 void base_SetParameters(const wxString& params);
922 //---------------------------------------------------------------------------
923 // Predefined Editors
925 class wxGridCellTextEditor : public wxGridCellEditor
928 %pythonAppend wxGridCellTextEditor "self._setOORInfo(self)"
929 wxGridCellTextEditor();
930 virtual wxString GetValue();
934 class wxGridCellNumberEditor : public wxGridCellTextEditor
937 %pythonAppend wxGridCellNumberEditor "self._setOORInfo(self)"
938 wxGridCellNumberEditor(int min = -1, int max = -1);
939 virtual wxString GetValue();
943 class wxGridCellFloatEditor : public wxGridCellTextEditor
946 %pythonAppend wxGridCellFloatEditor "self._setOORInfo(self)"
947 wxGridCellFloatEditor(int width = -1, int precision = -1);
948 virtual wxString GetValue();
952 class wxGridCellBoolEditor : public wxGridCellEditor
955 %pythonAppend wxGridCellBoolEditor "self._setOORInfo(self)"
956 wxGridCellBoolEditor();
957 virtual wxString GetValue();
960 class wxGridCellChoiceEditor : public wxGridCellEditor
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();
971 class wxGridCellEnumEditor : public wxGridCellChoiceEditor
974 %pythonAppend wxGridCellEnumEditor "self._setOORInfo(self)"
975 wxGridCellEnumEditor( const wxString& choices = wxPyEmptyString );
976 virtual wxString GetValue();
980 class wxGridCellAutoWrapStringEditor : public wxGridCellTextEditor
983 %pythonAppend wxGridCellAutoWrapStringEditor "self._setOORInfo(self)"
984 wxGridCellAutoWrapStringEditor();
985 virtual wxString GetValue();
990 //---------------------------------------------------------------------------
1007 void _setOORInfo(PyObject* _self) {
1008 self->SetClientObject(new wxPyOORClientData(_self));
1012 %pythonAppend wxGridCellAttr "self._setOORInfo(self)"
1014 wxGridCellAttr(wxGridCellAttr *attrDefault = NULL);
1016 wxGridCellAttr *Clone() const;
1017 void MergeWith(wxGridCellAttr *mergefrom);
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);
1028 void SetRenderer(wxGridCellRenderer *renderer);
1029 void SetEditor(wxGridCellEditor* editor);
1030 void SetKind(wxAttrKind kind);
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;
1041 wxColour GetTextColour() const;
1042 wxColour GetBackgroundColour() const;
1043 wxFont GetFont() const;
1046 void, GetAlignment(int *OUTPUT, int *OUTPUT) const,
1047 "GetAlignment() -> (hAlign, vAlign)");
1050 void, GetSize(int *OUTPUT, int *OUTPUT) const,
1051 "GetSize() -> (num_rows, num_cols)");
1053 bool GetOverflow() const;
1054 wxGridCellRenderer *GetRenderer(wxGrid* grid, int row, int col) const;
1055 wxGridCellEditor *GetEditor(wxGrid* grid, int row, int col) const;
1057 bool IsReadOnly() const;
1058 wxAttrKind GetKind();
1059 void SetDefAttr(wxGridCellAttr* defAttr);
1062 //---------------------------------------------------------------------------
1064 class wxGridCellAttrProvider
1067 %pythonAppend wxGridCellAttrProvider "self._setOORInfo(self)"
1068 wxGridCellAttrProvider();
1069 // ???? virtual ~wxGridCellAttrProvider();
1072 void _setOORInfo(PyObject* _self) {
1073 self->SetClientObject(new wxPyOORClientData(_self));
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);
1083 void UpdateAttrRows( size_t pos, int numRows );
1084 void UpdateAttrCols( size_t pos, int numCols );
1089 // A Python-aware version
1091 class wxPyGridCellAttrProvider : public wxGridCellAttrProvider
1094 wxPyGridCellAttrProvider() : wxGridCellAttrProvider() {};
1096 PYCALLBACK_GCA_INTINTKIND(wxGridCellAttrProvider, GetAttr);
1097 PYCALLBACK__GCAINTINT(wxGridCellAttrProvider, SetAttr);
1098 PYCALLBACK__GCAINT(wxGridCellAttrProvider, SetRowAttr);
1099 PYCALLBACK__GCAINT(wxGridCellAttrProvider, SetColAttr);
1106 // The python-aware version get's SWIGified
1107 class wxPyGridCellAttrProvider : public wxGridCellAttrProvider
1110 %pythonAppend wxPyGridCellAttrProvider "self._setCallbackInfo(self, PyGridCellAttrProvider)"
1111 wxPyGridCellAttrProvider();
1112 void _setCallbackInfo(PyObject* self, PyObject* _class);
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);
1122 //---------------------------------------------------------------------------
1123 // Grid Table Base class and Python aware version
1126 class wxGridTableBase : public wxObject
1129 // wxGridTableBase(); This is an ABC
1130 //~wxGridTableBase();
1133 void _setOORInfo(PyObject* _self) {
1134 self->SetClientObject(new wxPyOORClientData(_self));
1138 void SetAttrProvider(wxGridCellAttrProvider *attrProvider);
1139 wxGridCellAttrProvider *GetAttrProvider() const;
1140 void SetView( wxGrid *grid );
1141 wxGrid * GetView() const;
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 );
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 );
1162 //virtual void* GetValueAsCustom( int row, int col, const wxString& typeName );
1163 //virtual void SetValueAsCustom( int row, int col, const wxString& typeName, void* value );
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 );
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 );
1179 virtual bool CanHaveAttributes();
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);
1191 // Python-aware version
1193 class wxPyGridTableBase : public wxGridTableBase
1196 wxPyGridTableBase() : wxGridTableBase() {}
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);
1222 wxString GetValue(int row, int col) {
1223 bool blocked = wxPyBeginBlockThreads();
1225 if (wxPyCBH_findCallback(m_myInst, "GetValue")) {
1227 ro = wxPyCBH_callCallbackObj(m_myInst, Py_BuildValue("(ii)",row,col));
1229 rval = Py2wxString(ro);
1233 wxPyEndBlockThreads(blocked);
1237 void SetValue(int row, int col, const wxString& val) {
1238 bool blocked = wxPyBeginBlockThreads();
1239 if (wxPyCBH_findCallback(m_myInst, "SetValue")) {
1240 PyObject* s = wx2PyString(val);
1241 wxPyCBH_callCallback(m_myInst, Py_BuildValue("(iiO)",row,col,s));
1244 wxPyEndBlockThreads(blocked);
1248 // Map the Get/Set methods for the standard non-string types to
1249 // the GetValue and SetValue python methods.
1250 long GetValueAsLong( int row, int col ) {
1252 bool blocked = wxPyBeginBlockThreads();
1253 if (wxPyCBH_findCallback(m_myInst, "GetValue")) {
1256 ro = wxPyCBH_callCallbackObj(m_myInst, Py_BuildValue("(ii)", row, col));
1257 if (ro && PyNumber_Check(ro)) {
1258 num = PyNumber_Int(ro);
1260 rval = PyInt_AsLong(num);
1266 wxPyEndBlockThreads(blocked);
1270 double GetValueAsDouble( int row, int col ) {
1272 bool blocked = wxPyBeginBlockThreads();
1273 if (wxPyCBH_findCallback(m_myInst, "GetValue")) {
1276 ro = wxPyCBH_callCallbackObj(m_myInst, Py_BuildValue("(ii)", row, col));
1277 if (ro && PyNumber_Check(ro)) {
1278 num = PyNumber_Float(ro);
1280 rval = PyFloat_AsDouble(num);
1286 wxPyEndBlockThreads(blocked);
1290 bool GetValueAsBool( int row, int col ) {
1291 return (bool)GetValueAsLong(row, col);
1294 void SetValueAsLong( int row, int col, long value ) {
1295 bool blocked = wxPyBeginBlockThreads();
1296 if (wxPyCBH_findCallback(m_myInst, "SetValue")) {
1297 wxPyCBH_callCallback(m_myInst, Py_BuildValue("(iii)", row, col, value));
1299 wxPyEndBlockThreads(blocked);
1302 void SetValueAsDouble( int row, int col, double value ) {
1303 bool blocked = wxPyBeginBlockThreads();
1304 if (wxPyCBH_findCallback(m_myInst, "SetValue")) {
1305 wxPyCBH_callCallback(m_myInst, Py_BuildValue("(iid)", row, col, value));
1307 wxPyEndBlockThreads(blocked);
1310 void SetValueAsBool( int row, int col, bool value ) {
1311 SetValueAsLong( row, col, (long)value );
1320 // The python-aware version get's SWIGified
1321 class wxPyGridTableBase : public wxGridTableBase
1324 %pythonAppend wxPyGridTableBase "self._setCallbackInfo(self, PyGridTableBase);self._setOORInfo(self)"
1325 wxPyGridTableBase();
1326 void _setCallbackInfo(PyObject* self, PyObject* _class);
1328 %extend { void Destroy() { delete self; } }
1330 wxString base_GetTypeName( int row, int col );
1331 bool base_CanGetValueAs( int row, int col, const wxString& typeName );
1332 bool base_CanSetValueAs( int row, int col, const wxString& typeName );
1334 bool base_InsertRows( size_t pos = 0, size_t numRows = 1 );
1335 bool base_AppendRows( size_t numRows = 1 );
1336 bool base_DeleteRows( size_t pos = 0, size_t numRows = 1 );
1337 bool base_InsertCols( size_t pos = 0, size_t numCols = 1 );
1338 bool base_AppendCols( size_t numCols = 1 );
1339 bool base_DeleteCols( size_t pos = 0, size_t numCols = 1 );
1340 wxString base_GetRowLabelValue( int row );
1341 wxString base_GetColLabelValue( int col );
1342 void base_SetRowLabelValue( int row, const wxString& value );
1343 void base_SetColLabelValue( int col, const wxString& value );
1344 bool base_CanHaveAttributes();
1345 wxGridCellAttr *base_GetAttr( int row, int col,
1346 wxGridCellAttr::wxAttrKind kind );
1347 void base_SetAttr(wxGridCellAttr* attr, int row, int col);
1348 void base_SetRowAttr(wxGridCellAttr *attr, int row);
1349 void base_SetColAttr(wxGridCellAttr *attr, int col);
1353 //---------------------------------------------------------------------------
1354 // Predefined Tables
1356 class wxGridStringTable : public wxGridTableBase
1359 %pythonAppend wxGridStringTable "self._setOORInfo(self)"
1360 wxGridStringTable( int numRows=0, int numCols=0 );
1363 //---------------------------------------------------------------------------
1364 // The Table can pass messages to the grid to tell it to update itself if
1365 // something has changed.
1367 enum wxGridTableRequest
1369 wxGRIDTABLE_REQUEST_VIEW_GET_VALUES = 2000,
1370 wxGRIDTABLE_REQUEST_VIEW_SEND_VALUES,
1371 wxGRIDTABLE_NOTIFY_ROWS_INSERTED,
1372 wxGRIDTABLE_NOTIFY_ROWS_APPENDED,
1373 wxGRIDTABLE_NOTIFY_ROWS_DELETED,
1374 wxGRIDTABLE_NOTIFY_COLS_INSERTED,
1375 wxGRIDTABLE_NOTIFY_COLS_APPENDED,
1376 wxGRIDTABLE_NOTIFY_COLS_DELETED
1380 class wxGridTableMessage
1383 wxGridTableMessage( wxGridTableBase *table, int id,
1386 ~wxGridTableMessage();
1388 void SetTableObject( wxGridTableBase *table );
1389 wxGridTableBase * GetTableObject() const;
1390 void SetId( int id );
1392 void SetCommandInt( int comInt1 );
1393 int GetCommandInt();
1394 void SetCommandInt2( int comInt2 );
1395 int GetCommandInt2();
1399 //---------------------------------------------------------------------------
1402 // Typemap to allow conversion of sequence objects to wxGridCellCoords...
1403 %typemap(in) wxGridCellCoords& (wxGridCellCoords temp) {
1405 if (! wxGridCellCoords_helper($input, &$1)) SWIG_fail;
1407 %typemap(typecheck, precedence=SWIG_TYPECHECK_POINTER) wxGridCellCoords& {
1408 $1 = wxGridCellCoords_typecheck($input);
1412 // ...and here is the associated helper.
1414 bool wxGridCellCoords_helper(PyObject* source, wxGridCellCoords** obj) {
1416 if (source == Py_None) {
1417 **obj = wxGridCellCoords(-1,-1);
1421 // If source is an object instance then it may already be the right type
1422 if (wxPySwigInstance_Check(source)) {
1423 wxGridCellCoords* ptr;
1424 if (! wxPyConvertSwigPtr(source, (void **)&ptr, wxT("wxGridCellCoords")))
1429 // otherwise a 2-tuple of integers is expected
1430 else if (PySequence_Check(source) && PyObject_Length(source) == 2) {
1431 PyObject* o1 = PySequence_GetItem(source, 0);
1432 PyObject* o2 = PySequence_GetItem(source, 1);
1433 if (!PyNumber_Check(o1) || !PyNumber_Check(o2)) {
1438 **obj = wxGridCellCoords(PyInt_AsLong(o1), PyInt_AsLong(o2));
1445 PyErr_SetString(PyExc_TypeError, "Expected a 2-tuple of integers or a wxGridCellCoords object.");
1450 bool wxGridCellCoords_typecheck(PyObject* source) {
1453 if (wxPySwigInstance_Check(source) &&
1454 wxPyConvertSwigPtr(source, (void **)&ptr, wxT("wxGridCellCoords")))
1458 if (PySequence_Check(source) && PySequence_Length(source) == 2)
1466 // Typemap to convert an array of cells coords to a list of tuples...
1467 %typemap(out) wxGridCellCoordsArray {
1468 $result = wxGridCellCoordsArray_helper($1);
1471 // %typemap(ret) wxGridCellCoordsArray {
1476 // ...and the helper function for the above typemap.
1478 PyObject* wxGridCellCoordsArray_helper(const wxGridCellCoordsArray& source)
1480 PyObject* list = PyList_New(0);
1482 for (idx = 0; idx < source.GetCount(); idx += 1) {
1483 wxGridCellCoords& coord = source.Item(idx);
1484 PyObject* tup = PyTuple_New(2);
1485 PyTuple_SET_ITEM(tup, 0, PyInt_FromLong(coord.GetRow()));
1486 PyTuple_SET_ITEM(tup, 1, PyInt_FromLong(coord.GetCol()));
1487 PyList_Append(list, tup);
1498 class wxGridCellCoords
1501 wxGridCellCoords( int r=-1, int c=-1 );
1502 ~wxGridCellCoords();
1505 void SetRow( int n );
1507 void SetCol( int n );
1508 void Set( int row, int col );
1510 bool operator==( const wxGridCellCoords& other ) const;
1511 bool operator!=( const wxGridCellCoords& other ) const;
1515 PyObject* tup = PyTuple_New(2);
1516 PyTuple_SET_ITEM(tup, 0, PyInt_FromLong(self->GetRow()));
1517 PyTuple_SET_ITEM(tup, 1, PyInt_FromLong(self->GetCol()));
1522 asTuple = wx._deprecated(Get, "asTuple is deprecated, use `Get` instead")
1523 def __str__(self): return str(self.Get())
1524 def __repr__(self): return 'wxGridCellCoords'+str(self.Get())
1525 def __len__(self): return len(self.Get())
1526 def __getitem__(self, index): return self.asTuple()[index]
1527 def __setitem__(self, index, val):
1528 if index == 0: self.SetRow(val)
1529 elif index == 1: self.SetCol(val)
1530 else: raise IndexError
1536 //---------------------------------------------------------------------------
1537 //---------------------------------------------------------------------------
1541 // Fool SWIG into treating this enum as an int
1542 typedef int WXGRIDSELECTIONMODES;
1544 // but let the C++ code know what it really is.
1546 typedef wxGrid::wxGridSelectionModes WXGRIDSELECTIONMODES;
1551 MustHaveApp(wxGrid);
1553 class wxGrid : public wxScrolledWindow
1556 %pythonAppend wxGrid "self._setOORInfo(self)"
1558 wxGrid( wxWindow *parent,
1560 const wxPoint& pos = wxDefaultPosition,
1561 const wxSize& size = wxDefaultSize,
1562 long style = wxWANTS_CHARS,
1563 const wxString& name = wxPyPanelNameStr);
1565 %name(PreGrid) wxGrid();
1568 bool Create( wxWindow *parent,
1570 const wxPoint& pos = wxDefaultPosition,
1571 const wxSize& size = wxDefaultSize,
1572 long style = wxWANTS_CHARS,
1573 const wxString& name = wxPyPanelNameStr );
1576 enum wxGridSelectionModes {
1582 SelectCells = wxGridSelectCells
1583 SelectRows = wxGridSelectRows
1584 SelectColumns = wxGridSelectColumns
1587 bool CreateGrid( int numRows, int numCols,
1588 WXGRIDSELECTIONMODES selmode = wxGrid::wxGridSelectCells );
1589 void SetSelectionMode(WXGRIDSELECTIONMODES selmode);
1590 WXGRIDSELECTIONMODES GetSelectionMode();
1593 // ------ grid dimensions
1595 int GetNumberRows();
1596 int GetNumberCols();
1599 bool ProcessTableMessage( wxGridTableMessage& );
1602 wxGridTableBase * GetTable() const;
1603 bool SetTable( wxGridTableBase *table, bool takeOwnership=False,
1604 WXGRIDSELECTIONMODES selmode =
1605 wxGrid::wxGridSelectCells );
1608 bool InsertRows( int pos = 0, int numRows = 1, bool updateLabels=True );
1609 bool AppendRows( int numRows = 1, bool updateLabels=True );
1610 bool DeleteRows( int pos = 0, int numRows = 1, bool updateLabels=True );
1611 bool InsertCols( int pos = 0, int numCols = 1, bool updateLabels=True );
1612 bool AppendCols( int numCols = 1, bool updateLabels=True );
1613 bool DeleteCols( int pos = 0, int numCols = 1, bool updateLabels=True );
1616 // this function is called when the current cell highlight must be redrawn
1617 // and may be overridden by the user
1618 virtual void DrawCellHighlight( wxDC& dc, const wxGridCellAttr *attr );
1621 // ------ Cell text drawing functions
1623 void DrawTextRectangle( wxDC& dc, const wxString&, const wxRect&,
1624 int horizontalAlignment = wxLEFT,
1625 int verticalAlignment = wxTOP,
1626 int textOrientation = wxHORIZONTAL );
1628 // // Split a string containing newline chararcters into an array of
1629 // // strings and return the number of lines
1631 // void StringToLines( const wxString& value, wxArrayString& lines );
1634 void, GetTextBoxSize( wxDC& dc, wxArrayString& lines,
1635 long *OUTPUT, long *OUTPUT ),
1636 "GetTextBoxSize(DC dc, list lines) -> (width, height)");
1640 // Code that does a lot of grid modification can be enclosed
1641 // between BeginBatch() and EndBatch() calls to avoid screen
1646 int GetBatchCount();
1647 void ForceRefresh();
1650 // ------ edit control functions
1653 void EnableEditing( bool edit );
1655 void EnableCellEditControl( bool enable = True );
1656 void DisableCellEditControl();
1657 bool CanEnableCellControl() const;
1658 bool IsCellEditControlEnabled() const;
1659 bool IsCellEditControlShown() const;
1661 bool IsCurrentCellReadOnly() const;
1663 void ShowCellEditControl();
1664 void HideCellEditControl();
1665 void SaveEditControlValue();
1668 // ------ grid location functions
1669 // Note that all of these functions work with the logical coordinates of
1670 // grid cells and labels so you will need to convert from device
1671 // coordinates for mouse events etc.
1674 //void XYToCell( int x, int y, wxGridCellCoords& );
1676 wxGridCellCoords XYToCell(int x, int y) {
1677 wxGridCellCoords rv;
1678 self->XYToCell(x, y, rv);
1683 int YToRow( int y );
1684 int XToCol( int x );
1686 int YToEdgeOfRow( int y );
1687 int XToEdgeOfCol( int x );
1689 wxRect CellToRect( int row, int col );
1690 // TODO: ??? wxRect CellToRect( const wxGridCellCoords& coords );
1693 int GetGridCursorRow();
1694 int GetGridCursorCol();
1696 // check to see if a cell is either wholly visible (the default arg) or
1697 // at least partially visible in the grid window
1699 bool IsVisible( int row, int col, bool wholeCellVisible = True );
1700 // TODO: ??? bool IsVisible( const wxGridCellCoords& coords, bool wholeCellVisible = True );
1701 void MakeCellVisible( int row, int col );
1702 // TODO: ??? void MakeCellVisible( const wxGridCellCoords& coords );
1705 // ------ grid cursor movement functions
1707 void SetGridCursor( int row, int col );
1708 bool MoveCursorUp( bool expandSelection );
1709 bool MoveCursorDown( bool expandSelection );
1710 bool MoveCursorLeft( bool expandSelection );
1711 bool MoveCursorRight( bool expandSelection );
1712 bool MovePageDown();
1714 bool MoveCursorUpBlock( bool expandSelection );
1715 bool MoveCursorDownBlock( bool expandSelection );
1716 bool MoveCursorLeftBlock( bool expandSelection );
1717 bool MoveCursorRightBlock( bool expandSelection );
1720 // ------ label and gridline formatting
1722 int GetDefaultRowLabelSize();
1723 int GetRowLabelSize();
1724 int GetDefaultColLabelSize();
1725 int GetColLabelSize();
1726 wxColour GetLabelBackgroundColour();
1727 wxColour GetLabelTextColour();
1728 wxFont GetLabelFont();
1731 void, GetRowLabelAlignment( int *OUTPUT, int *OUTPUT ),
1732 "GetRowLabelAlignment() -> (horiz, vert)");
1735 void, GetColLabelAlignment( int *OUTPUT, int *OUTPUT ),
1736 "GetColLabelAlignment() -> (horiz, vert)");
1738 int GetColLabelTextOrientation();
1739 wxString GetRowLabelValue( int row );
1740 wxString GetColLabelValue( int col );
1741 wxColour GetGridLineColour();
1742 wxColour GetCellHighlightColour();
1743 int GetCellHighlightPenWidth();
1744 int GetCellHighlightROPenWidth();
1746 void SetRowLabelSize( int width );
1747 void SetColLabelSize( int height );
1748 void SetLabelBackgroundColour( const wxColour& );
1749 void SetLabelTextColour( const wxColour& );
1750 void SetLabelFont( const wxFont& );
1751 void SetRowLabelAlignment( int horiz, int vert );
1752 void SetColLabelAlignment( int horiz, int vert );
1753 void SetColLabelTextOrientation( int textOrientation );
1754 void SetRowLabelValue( int row, const wxString& );
1755 void SetColLabelValue( int col, const wxString& );
1756 void SetGridLineColour( const wxColour& );
1757 void SetCellHighlightColour( const wxColour& );
1758 void SetCellHighlightPenWidth(int width);
1759 void SetCellHighlightROPenWidth(int width);
1761 void EnableDragRowSize( bool enable = True );
1762 void DisableDragRowSize();
1763 bool CanDragRowSize();
1764 void EnableDragColSize( bool enable = True );
1765 void DisableDragColSize();
1766 bool CanDragColSize();
1767 void EnableDragGridSize(bool enable = True);
1768 void DisableDragGridSize();
1769 bool CanDragGridSize();
1771 // this sets the specified attribute for all cells in this row/col
1772 void SetAttr(int row, int col, wxGridCellAttr *attr);
1773 void SetRowAttr(int row, wxGridCellAttr *attr);
1774 void SetColAttr(int col, wxGridCellAttr *attr);
1776 // shortcuts for setting the column parameters
1778 // set the format for the data in the column: default is string
1779 void SetColFormatBool(int col);
1780 void SetColFormatNumber(int col);
1781 void SetColFormatFloat(int col, int width = -1, int precision = -1);
1782 void SetColFormatCustom(int col, const wxString& typeName);
1784 void EnableGridLines( bool enable = True );
1785 bool GridLinesEnabled();
1787 // ------ row and col formatting
1789 int GetDefaultRowSize();
1790 int GetRowSize( int row );
1791 int GetDefaultColSize();
1792 int GetColSize( int col );
1793 wxColour GetDefaultCellBackgroundColour();
1794 wxColour GetCellBackgroundColour( int row, int col );
1795 wxColour GetDefaultCellTextColour();
1796 wxColour GetCellTextColour( int row, int col );
1797 wxFont GetDefaultCellFont();
1798 wxFont GetCellFont( int row, int col );
1801 void, GetDefaultCellAlignment( int *OUTPUT, int *OUTPUT ),
1802 "GetDefaultCellAlignment() -> (horiz, vert)");
1805 void, GetCellAlignment( int row, int col, int *OUTPUT, int *OUTPUT ),
1806 "GetCellAlignment() -> (horiz, vert)");
1808 bool GetDefaultCellOverflow();
1809 bool GetCellOverflow( int row, int col );
1812 void, GetCellSize( int row, int col, int *OUTPUT, int *OUTPUT ),
1813 "GetCellSize(int row, int col) -> (num_rows, num_cols)");
1815 void SetDefaultRowSize( int height, bool resizeExistingRows = False );
1816 void SetRowSize( int row, int height );
1817 void SetDefaultColSize( int width, bool resizeExistingCols = False );
1819 void SetColSize( int col, int width );
1821 // automatically size the column or row to fit to its contents, if
1822 // setAsMin is True, this optimal width will also be set as minimal width
1824 void AutoSizeColumn( int col, bool setAsMin = True );
1825 void AutoSizeRow( int row, bool setAsMin = True );
1828 // auto size all columns (very ineffective for big grids!)
1829 void AutoSizeColumns( bool setAsMin = True );
1830 void AutoSizeRows( bool setAsMin = True );
1832 // auto size the grid, that is make the columns/rows of the "right" size
1833 // and also set the grid size to just fit its contents
1836 // autosize row height depending on label text
1837 void AutoSizeRowLabelSize( int row );
1839 // autosize column width depending on label text
1840 void AutoSizeColLabelSize( int col );
1843 // column won't be resized to be lesser width - this must be called during
1844 // the grid creation because it won't resize the column if it's already
1845 // narrower than the minimal width
1846 void SetColMinimalWidth( int col, int width );
1847 void SetRowMinimalHeight( int row, int width );
1849 void SetColMinimalAcceptableWidth( int width );
1850 void SetRowMinimalAcceptableHeight( int width );
1851 int GetColMinimalAcceptableWidth() const;
1852 int GetRowMinimalAcceptableHeight() const;
1854 void SetDefaultCellBackgroundColour( const wxColour& );
1855 void SetCellBackgroundColour( int row, int col, const wxColour& );
1856 void SetDefaultCellTextColour( const wxColour& );
1858 void SetCellTextColour( int row, int col, const wxColour& );
1859 void SetDefaultCellFont( const wxFont& );
1860 void SetCellFont( int row, int col, const wxFont& );
1861 void SetDefaultCellAlignment( int horiz, int vert );
1862 void SetCellAlignment( int row, int col, int horiz, int vert );
1863 void SetDefaultCellOverflow( bool allow );
1864 void SetCellOverflow( int row, int col, bool allow );
1865 void SetCellSize( int row, int col, int num_rows, int num_cols );
1867 // takes ownership of the pointer
1868 void SetDefaultRenderer(wxGridCellRenderer *renderer);
1869 void SetCellRenderer(int row, int col, wxGridCellRenderer *renderer);
1870 wxGridCellRenderer *GetDefaultRenderer() const;
1871 wxGridCellRenderer* GetCellRenderer(int row, int col);
1873 // takes ownership of the pointer
1874 void SetDefaultEditor(wxGridCellEditor *editor);
1875 void SetCellEditor(int row, int col, wxGridCellEditor *editor);
1876 wxGridCellEditor *GetDefaultEditor() const;
1877 wxGridCellEditor* GetCellEditor(int row, int col);
1881 // ------ cell value accessors
1883 wxString GetCellValue( int row, int col );
1884 // TODO: ??? wxString GetCellValue( const wxGridCellCoords& coords )
1886 void SetCellValue( int row, int col, const wxString& s );
1887 // TODO: ??? void SetCellValue( const wxGridCellCoords& coords, const wxString& s )
1889 // returns True if the cell can't be edited
1890 bool IsReadOnly(int row, int col) const;
1892 // make the cell editable/readonly
1893 void SetReadOnly(int row, int col, bool isReadOnly = True);
1895 // ------ selections of blocks of cells
1897 void SelectRow( int row, bool addToSelected = False );
1898 void SelectCol( int col, bool addToSelected = False );
1900 void SelectBlock( int topRow, int leftCol, int bottomRow, int rightCol,
1901 bool addToSelected = False );
1902 // TODO: ??? void SelectBlock( const wxGridCellCoords& topLeft,
1903 // TODO: ??? const wxGridCellCoords& bottomRight )
1907 void ClearSelection();
1908 bool IsInSelection( int row, int col );
1909 // TODO: ??? bool IsInSelection( const wxGridCellCoords& coords )
1911 const wxGridCellCoordsArray GetSelectedCells() const;
1912 const wxGridCellCoordsArray GetSelectionBlockTopLeft() const;
1913 const wxGridCellCoordsArray GetSelectionBlockBottomRight() const;
1914 const wxArrayInt GetSelectedRows() const;
1915 const wxArrayInt GetSelectedCols() const;
1917 void DeselectRow( int row );
1918 void DeselectCol( int col );
1919 void DeselectCell( int row, int col );
1922 // This function returns the rectangle that encloses the block of cells
1923 // limited by TopLeft and BottomRight cell in device coords and clipped
1924 // to the client size of the grid window.
1926 wxRect BlockToDeviceRect( const wxGridCellCoords & topLeft,
1927 const wxGridCellCoords & bottomRight );
1930 // Access or update the selection fore/back colours
1931 wxColour GetSelectionBackground() const;
1932 wxColour GetSelectionForeground() const;
1934 void SetSelectionBackground(const wxColour& c);
1935 void SetSelectionForeground(const wxColour& c);
1938 // Methods for a registry for mapping data types to Renderers/Editors
1939 void RegisterDataType(const wxString& typeName,
1940 wxGridCellRenderer* renderer,
1941 wxGridCellEditor* editor);
1942 wxGridCellEditor* GetDefaultEditorForCell(int row, int col) const;
1943 // TODO: ??? wxGridCellEditor* GetDefaultEditorForCell(const wxGridCellCoords& c) const
1944 wxGridCellRenderer* GetDefaultRendererForCell(int row, int col) const;
1945 wxGridCellEditor* GetDefaultEditorForType(const wxString& typeName) const;
1946 wxGridCellRenderer* GetDefaultRendererForType(const wxString& typeName) const;
1948 // grid may occupy more space than needed for its rows/columns, this
1949 // function allows to set how big this extra space is
1950 void SetMargins(int extraWidth, int extraHeight);
1953 // Accessors for component windows
1954 wxWindow* GetGridWindow();
1955 wxWindow* GetGridRowLabelWindow();
1956 wxWindow* GetGridColLabelWindow();
1957 wxWindow* GetGridCornerLabelWindow();
1960 static wxVisualAttributes
1961 GetClassDefaultAttributes(wxWindowVariant variant = wxWINDOW_VARIANT_NORMAL);
1965 //---------------------------------------------------------------------------
1966 //---------------------------------------------------------------------------
1967 // Grid events and stuff
1971 class wxGridEvent : public wxNotifyEvent
1974 wxGridEvent(int id, wxEventType type, wxGrid* obj,
1975 int row=-1, int col=-1, int x=-1, int y=-1, bool sel = True,
1976 bool control=False, bool shift=False, bool alt=False, bool meta=False);
1978 virtual int GetRow();
1979 virtual int GetCol();
1980 wxPoint GetPosition();
1990 class wxGridSizeEvent : public wxNotifyEvent
1993 wxGridSizeEvent(int id, wxEventType type, wxGrid* obj,
1994 int rowOrCol=-1, int x=-1, int y=-1,
1995 bool control=False, bool shift=False, bool alt=False, bool meta=False);
1998 wxPoint GetPosition();
2007 class wxGridRangeSelectEvent : public wxNotifyEvent
2010 wxGridRangeSelectEvent(int id, wxEventType type, wxGrid* obj,
2011 const wxGridCellCoords& topLeft,
2012 const wxGridCellCoords& bottomRight,
2014 bool control=False, bool shift=False,
2015 bool alt=False, bool meta=False);
2017 wxGridCellCoords GetTopLeftCoords();
2018 wxGridCellCoords GetBottomRightCoords();
2031 class wxGridEditorCreatedEvent : public wxCommandEvent {
2033 wxGridEditorCreatedEvent(int id, wxEventType type, wxObject* obj,
2034 int row, int col, wxControl* ctrl);
2038 wxControl* GetControl();
2039 void SetRow(int row);
2040 void SetCol(int col);
2041 void SetControl(wxControl* ctrl);
2046 %constant wxEventType wxEVT_GRID_CELL_LEFT_CLICK;
2047 %constant wxEventType wxEVT_GRID_CELL_RIGHT_CLICK;
2048 %constant wxEventType wxEVT_GRID_CELL_LEFT_DCLICK;
2049 %constant wxEventType wxEVT_GRID_CELL_RIGHT_DCLICK;
2050 %constant wxEventType wxEVT_GRID_LABEL_LEFT_CLICK;
2051 %constant wxEventType wxEVT_GRID_LABEL_RIGHT_CLICK;
2052 %constant wxEventType wxEVT_GRID_LABEL_LEFT_DCLICK;
2053 %constant wxEventType wxEVT_GRID_LABEL_RIGHT_DCLICK;
2054 %constant wxEventType wxEVT_GRID_ROW_SIZE;
2055 %constant wxEventType wxEVT_GRID_COL_SIZE;
2056 %constant wxEventType wxEVT_GRID_RANGE_SELECT;
2057 %constant wxEventType wxEVT_GRID_CELL_CHANGE;
2058 %constant wxEventType wxEVT_GRID_SELECT_CELL;
2059 %constant wxEventType wxEVT_GRID_EDITOR_SHOWN;
2060 %constant wxEventType wxEVT_GRID_EDITOR_HIDDEN;
2061 %constant wxEventType wxEVT_GRID_EDITOR_CREATED;
2066 EVT_GRID_CELL_LEFT_CLICK = wx.PyEventBinder( wxEVT_GRID_CELL_LEFT_CLICK )
2067 EVT_GRID_CELL_RIGHT_CLICK = wx.PyEventBinder( wxEVT_GRID_CELL_RIGHT_CLICK )
2068 EVT_GRID_CELL_LEFT_DCLICK = wx.PyEventBinder( wxEVT_GRID_CELL_LEFT_DCLICK )
2069 EVT_GRID_CELL_RIGHT_DCLICK = wx.PyEventBinder( wxEVT_GRID_CELL_RIGHT_DCLICK )
2070 EVT_GRID_LABEL_LEFT_CLICK = wx.PyEventBinder( wxEVT_GRID_LABEL_LEFT_CLICK )
2071 EVT_GRID_LABEL_RIGHT_CLICK = wx.PyEventBinder( wxEVT_GRID_LABEL_RIGHT_CLICK )
2072 EVT_GRID_LABEL_LEFT_DCLICK = wx.PyEventBinder( wxEVT_GRID_LABEL_LEFT_DCLICK )
2073 EVT_GRID_LABEL_RIGHT_DCLICK = wx.PyEventBinder( wxEVT_GRID_LABEL_RIGHT_DCLICK )
2074 EVT_GRID_ROW_SIZE = wx.PyEventBinder( wxEVT_GRID_ROW_SIZE )
2075 EVT_GRID_COL_SIZE = wx.PyEventBinder( wxEVT_GRID_COL_SIZE )
2076 EVT_GRID_RANGE_SELECT = wx.PyEventBinder( wxEVT_GRID_RANGE_SELECT )
2077 EVT_GRID_CELL_CHANGE = wx.PyEventBinder( wxEVT_GRID_CELL_CHANGE )
2078 EVT_GRID_SELECT_CELL = wx.PyEventBinder( wxEVT_GRID_SELECT_CELL )
2079 EVT_GRID_EDITOR_SHOWN = wx.PyEventBinder( wxEVT_GRID_EDITOR_SHOWN )
2080 EVT_GRID_EDITOR_HIDDEN = wx.PyEventBinder( wxEVT_GRID_EDITOR_HIDDEN )
2081 EVT_GRID_EDITOR_CREATED = wx.PyEventBinder( wxEVT_GRID_EDITOR_CREATED )
2084 %# The same as above but with the ability to specify an identifier
2085 EVT_GRID_CMD_CELL_LEFT_CLICK = wx.PyEventBinder( wxEVT_GRID_CELL_LEFT_CLICK, 1 )
2086 EVT_GRID_CMD_CELL_RIGHT_CLICK = wx.PyEventBinder( wxEVT_GRID_CELL_RIGHT_CLICK, 1 )
2087 EVT_GRID_CMD_CELL_LEFT_DCLICK = wx.PyEventBinder( wxEVT_GRID_CELL_LEFT_DCLICK, 1 )
2088 EVT_GRID_CMD_CELL_RIGHT_DCLICK = wx.PyEventBinder( wxEVT_GRID_CELL_RIGHT_DCLICK, 1 )
2089 EVT_GRID_CMD_LABEL_LEFT_CLICK = wx.PyEventBinder( wxEVT_GRID_LABEL_LEFT_CLICK, 1 )
2090 EVT_GRID_CMD_LABEL_RIGHT_CLICK = wx.PyEventBinder( wxEVT_GRID_LABEL_RIGHT_CLICK, 1 )
2091 EVT_GRID_CMD_LABEL_LEFT_DCLICK = wx.PyEventBinder( wxEVT_GRID_LABEL_LEFT_DCLICK, 1 )
2092 EVT_GRID_CMD_LABEL_RIGHT_DCLICK = wx.PyEventBinder( wxEVT_GRID_LABEL_RIGHT_DCLICK, 1 )
2093 EVT_GRID_CMD_ROW_SIZE = wx.PyEventBinder( wxEVT_GRID_ROW_SIZE, 1 )
2094 EVT_GRID_CMD_COL_SIZE = wx.PyEventBinder( wxEVT_GRID_COL_SIZE, 1 )
2095 EVT_GRID_CMD_RANGE_SELECT = wx.PyEventBinder( wxEVT_GRID_RANGE_SELECT, 1 )
2096 EVT_GRID_CMD_CELL_CHANGE = wx.PyEventBinder( wxEVT_GRID_CELL_CHANGE, 1 )
2097 EVT_GRID_CMD_SELECT_CELL = wx.PyEventBinder( wxEVT_GRID_SELECT_CELL, 1 )
2098 EVT_GRID_CMD_EDITOR_SHOWN = wx.PyEventBinder( wxEVT_GRID_EDITOR_SHOWN, 1 )
2099 EVT_GRID_CMD_EDITOR_HIDDEN = wx.PyEventBinder( wxEVT_GRID_EDITOR_HIDDEN, 1 )
2100 EVT_GRID_CMD_EDITOR_CREATED = wx.PyEventBinder( wxEVT_GRID_EDITOR_CREATED, 1 )
2103 //---------------------------------------------------------------------------
2108 //---------------------------------------------------------------------------
2109 //---------------------------------------------------------------------------