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, $owner); }
49 %typemap(out) wxGridCellEditor* { $result = wxPyMake_wxGridCellEditor($1, $owner); }
50 %typemap(out) wxGridCellAttr* { $result = wxPyMake_wxGridCellAttr($1, $owner); }
51 %typemap(out) wxGridCellAttrProvider* { $result = wxPyMake_wxGridCellAttrProvider($1, $owner); }
52 %typemap(out) wxGridTableBase* { $result = wxPyMake_wxGridTableBase($1, $owner); }
57 #define wxPyMake_TEMPLATE(TYPE) \
58 PyObject* wxPyMake_##TYPE(TYPE* source, bool setThisOwn) { \
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; \
69 /* Otherwise make a new wrapper for it the old fashioned way and \
70 give it the OOR treatment */ \
72 target = wxPyConstructObject(source, wxT(#TYPE), setThisOwn); \
74 source->SetClientObject(new wxPyOORClientData(target)); \
76 } else { /* source was NULL so return None. */ \
77 Py_INCREF(Py_None); target = Py_None; \
83 wxPyMake_TEMPLATE(wxGridCellRenderer)
84 wxPyMake_TEMPLATE(wxGridCellEditor)
85 wxPyMake_TEMPLATE(wxGridCellAttr)
86 wxPyMake_TEMPLATE(wxGridCellAttrProvider)
87 wxPyMake_TEMPLATE(wxGridTableBase)
91 //---------------------------------------------------------------------------
92 // Macros, similar to what's in helpers.h, to aid in the creation of
93 // virtual methods that are able to make callbacks to Python. Many of these
94 // are specific to wxGrid and so are kept here to reduce the mess in helpers.h
99 #define PYCALLBACK_GCA_INTINTKIND(PCLASS, CBNAME) \
100 wxGridCellAttr* CBNAME(int a, int b, wxGridCellAttr::wxAttrKind c) { \
101 wxGridCellAttr* rval = NULL; \
103 bool blocked = wxPyBeginBlockThreads(); \
104 if ((found = wxPyCBH_findCallback(m_myInst, #CBNAME))) { \
106 wxGridCellAttr* ptr; \
107 ro = wxPyCBH_callCallbackObj(m_myInst, Py_BuildValue("(iii)", a, b, c)); \
109 if (wxPyConvertSwigPtr(ro, (void **)&ptr, wxT("wxGridCellAttr"))) \
114 wxPyEndBlockThreads(blocked); \
116 rval = PCLASS::CBNAME(a, b, c); \
119 wxGridCellAttr *base_##CBNAME(int a, int b, wxGridCellAttr::wxAttrKind c) { \
120 return PCLASS::CBNAME(a, b, c); \
125 #define PYCALLBACK__GCAINTINT(PCLASS, CBNAME) \
126 void CBNAME(wxGridCellAttr *attr, int a, int b) { \
127 bool blocked = wxPyBeginBlockThreads(); \
129 if ((found = wxPyCBH_findCallback(m_myInst, #CBNAME))) { \
130 PyObject* obj = wxPyMake_wxGridCellAttr(attr,false); \
131 wxPyCBH_callCallback(m_myInst, Py_BuildValue("(Oii)", obj, a, b)); \
134 wxPyEndBlockThreads(blocked); \
136 PCLASS::CBNAME(attr, a, b); \
138 void base_##CBNAME(wxGridCellAttr *attr, int a, int b) { \
139 PCLASS::CBNAME(attr, a, b); \
144 #define PYCALLBACK__GCAINT(PCLASS, CBNAME) \
145 void CBNAME(wxGridCellAttr *attr, int val) { \
146 bool blocked = wxPyBeginBlockThreads(); \
148 if ((found = wxPyCBH_findCallback(m_myInst, #CBNAME))) { \
149 PyObject* obj = wxPyMake_wxGridCellAttr(attr,false); \
150 wxPyCBH_callCallback(m_myInst, Py_BuildValue("(Oi)", obj, val)); \
153 wxPyEndBlockThreads(blocked); \
155 PCLASS::CBNAME(attr, val); \
157 void base_##CBNAME(wxGridCellAttr *attr, int val) { \
158 PCLASS::CBNAME(attr, val); \
163 #define PYCALLBACK_INT__pure(CBNAME) \
165 bool blocked = wxPyBeginBlockThreads(); \
167 if (wxPyCBH_findCallback(m_myInst, #CBNAME)) \
168 rval = wxPyCBH_callCallback(m_myInst, Py_BuildValue("()")); \
169 wxPyEndBlockThreads(blocked); \
175 #define PYCALLBACK_BOOL_INTINT_pure(CBNAME) \
176 bool CBNAME(int a, int b) { \
177 bool blocked = wxPyBeginBlockThreads(); \
179 if (wxPyCBH_findCallback(m_myInst, #CBNAME)) \
180 rval = wxPyCBH_callCallback(m_myInst, Py_BuildValue("(ii)",a,b)); \
181 wxPyEndBlockThreads(blocked); \
186 #define PYCALLBACK_STRING_INTINT_pure(CBNAME) \
187 wxString CBNAME(int a, int b) { \
188 bool blocked = wxPyBeginBlockThreads(); \
190 if (wxPyCBH_findCallback(m_myInst, #CBNAME)) { \
192 ro = wxPyCBH_callCallbackObj(m_myInst, Py_BuildValue("(ii)",a,b)); \
194 rval = Py2wxString(ro); \
198 wxPyEndBlockThreads(blocked); \
203 #define PYCALLBACK__INTINTSTRING_pure(CBNAME) \
204 void CBNAME(int a, int b, const wxString& c) { \
205 bool blocked = wxPyBeginBlockThreads(); \
206 if (wxPyCBH_findCallback(m_myInst, #CBNAME)) { \
207 PyObject* s = wx2PyString(c); \
208 rval = wxPyCBH_callCallback(m_myInst, Py_BuildValue("(iiO)",a,b,s));\
211 wxPyEndBlockThreads(blocked); \
215 #define PYCALLBACK_STRING_INTINT(PCLASS, CBNAME) \
216 wxString CBNAME(int a, int b) { \
218 bool blocked = wxPyBeginBlockThreads(); \
220 if ((found = wxPyCBH_findCallback(m_myInst, #CBNAME))) { \
222 ro = wxPyCBH_callCallbackObj(m_myInst, Py_BuildValue("(ii)",a,b)); \
224 rval = Py2wxString(ro); \
228 wxPyEndBlockThreads(blocked); \
230 rval = PCLASS::CBNAME(a, b); \
233 wxString base_##CBNAME(int a, int b) { \
234 return PCLASS::CBNAME(a, b); \
238 #define PYCALLBACK_BOOL_INTINTSTRING(PCLASS, CBNAME) \
239 bool CBNAME(int a, int b, const wxString& c) { \
242 bool blocked = wxPyBeginBlockThreads(); \
243 if ((found = wxPyCBH_findCallback(m_myInst, #CBNAME))) { \
244 PyObject* s = wx2PyString(c); \
245 rval = wxPyCBH_callCallback(m_myInst, Py_BuildValue("(iiO)",a,b,s));\
248 wxPyEndBlockThreads(blocked); \
250 rval = PCLASS::CBNAME(a,b,c); \
253 bool base_##CBNAME(int a, int b, const wxString& c) { \
254 return PCLASS::CBNAME(a,b,c); \
260 #define PYCALLBACK_LONG_INTINT(PCLASS, CBNAME) \
261 long CBNAME(int a, int b) { \
264 bool blocked = wxPyBeginBlockThreads(); \
265 if ((found = wxPyCBH_findCallback(m_myInst, #CBNAME))) \
266 rval = wxPyCBH_callCallback(m_myInst, Py_BuildValue("(ii)", a,b)); \
267 wxPyEndBlockThreads(blocked); \
269 rval = PCLASS::CBNAME(a,b); \
272 long base_##CBNAME(int a, int b) { \
273 return PCLASS::CBNAME(a,b); \
278 #define PYCALLBACK_BOOL_INTINT(PCLASS, CBNAME) \
279 bool CBNAME(int a, int b) { \
282 bool blocked = wxPyBeginBlockThreads(); \
283 if ((found = wxPyCBH_findCallback(m_myInst, #CBNAME))) \
284 rval = wxPyCBH_callCallback(m_myInst, Py_BuildValue("(ii)", a,b)); \
285 wxPyEndBlockThreads(blocked); \
287 rval = PCLASS::CBNAME(a,b); \
290 bool base_##CBNAME(int a, int b) { \
291 return PCLASS::CBNAME(a,b); \
296 #define PYCALLBACK_DOUBLE_INTINT(PCLASS, CBNAME) \
297 double CBNAME(int a, int b) { \
299 bool blocked = wxPyBeginBlockThreads(); \
301 if ((found = wxPyCBH_findCallback(m_myInst, #CBNAME))) { \
303 ro = wxPyCBH_callCallbackObj(m_myInst, Py_BuildValue("(ii)",a,b)); \
305 PyObject* str = PyObject_Str(ro); \
306 rval = PyFloat_AsDouble(str); \
307 Py_DECREF(ro); Py_DECREF(str); \
310 wxPyEndBlockThreads(blocked); \
312 rval = PCLASS::CBNAME(a, b); \
315 double base_##CBNAME(int a, int b) { \
316 return PCLASS::CBNAME(a, b); \
321 #define PYCALLBACK__(PCLASS, CBNAME) \
324 bool blocked = wxPyBeginBlockThreads(); \
325 if ((found = wxPyCBH_findCallback(m_myInst, #CBNAME))) \
326 wxPyCBH_callCallback(m_myInst, Py_BuildValue("()")); \
327 wxPyEndBlockThreads(blocked); \
331 void base_##CBNAME() { \
338 #define PYCALLBACK_BOOL_SIZETSIZET(PCLASS, CBNAME) \
339 bool CBNAME(size_t a, size_t b) { \
342 bool blocked = wxPyBeginBlockThreads(); \
343 if ((found = wxPyCBH_findCallback(m_myInst, #CBNAME))) \
344 rval = wxPyCBH_callCallback(m_myInst, Py_BuildValue("(ii)", a,b)); \
345 wxPyEndBlockThreads(blocked); \
347 rval = PCLASS::CBNAME(a,b); \
350 bool base_##CBNAME(size_t a, size_t b) { \
351 return PCLASS::CBNAME(a,b); \
356 #define PYCALLBACK_BOOL_SIZET(PCLASS, CBNAME) \
357 bool CBNAME(size_t a) { \
360 bool blocked = wxPyBeginBlockThreads(); \
361 if ((found = wxPyCBH_findCallback(m_myInst, #CBNAME))) \
362 rval = wxPyCBH_callCallback(m_myInst, Py_BuildValue("(i)", a)); \
363 wxPyEndBlockThreads(blocked); \
365 rval = PCLASS::CBNAME(a); \
368 bool base_##CBNAME(size_t a) { \
369 return PCLASS::CBNAME(a); \
373 #define PYCALLBACK_STRING_INT(PCLASS, CBNAME) \
374 wxString CBNAME(int a) { \
376 bool blocked = wxPyBeginBlockThreads(); \
378 if ((found = wxPyCBH_findCallback(m_myInst, #CBNAME))) { \
380 ro = wxPyCBH_callCallbackObj(m_myInst, Py_BuildValue("(i)",a)); \
382 rval = Py2wxString(ro); \
386 wxPyEndBlockThreads(blocked); \
388 rval = PCLASS::CBNAME(a); \
391 wxString base_##CBNAME(int a) { \
392 return PCLASS::CBNAME(a); \
396 #define PYCALLBACK__INTSTRING(PCLASS, CBNAME) \
397 void CBNAME(int a, const wxString& c) { \
399 bool blocked = wxPyBeginBlockThreads(); \
400 if ((found = wxPyCBH_findCallback(m_myInst, #CBNAME))) { \
401 PyObject* s = wx2PyString(c); \
402 wxPyCBH_callCallback(m_myInst, Py_BuildValue("(iO)",a,s)); \
405 wxPyEndBlockThreads(blocked); \
407 PCLASS::CBNAME(a,c); \
409 void base_##CBNAME(int a, const wxString& c) { \
410 PCLASS::CBNAME(a,c); \
416 #define PYCALLBACK_BOOL_(PCLASS, CBNAME) \
420 bool blocked = wxPyBeginBlockThreads(); \
421 if ((found = wxPyCBH_findCallback(m_myInst, #CBNAME))) \
422 rval = wxPyCBH_callCallback(m_myInst, Py_BuildValue("()")); \
423 wxPyEndBlockThreads(blocked); \
425 rval = PCLASS::CBNAME(); \
428 bool base_##CBNAME() { \
429 return PCLASS::CBNAME(); \
434 #define PYCALLBACK__SIZETINT(PCLASS, CBNAME) \
435 void CBNAME(size_t a, int b) { \
437 bool blocked = wxPyBeginBlockThreads(); \
438 if ((found = wxPyCBH_findCallback(m_myInst, #CBNAME))) \
439 wxPyCBH_callCallback(m_myInst, Py_BuildValue("(ii)", a,b)); \
440 wxPyEndBlockThreads(blocked); \
442 PCLASS::CBNAME(a,b); \
444 void base_##CBNAME(size_t a, int b) { \
445 PCLASS::CBNAME(a,b); \
451 #define PYCALLBACK__INTINTLONG(PCLASS, CBNAME) \
452 void CBNAME(int a, int b, long c) { \
454 bool blocked = wxPyBeginBlockThreads(); \
455 if ((found = wxPyCBH_findCallback(m_myInst, #CBNAME))) \
456 wxPyCBH_callCallback(m_myInst, Py_BuildValue("(iii)", a,b,c)); \
457 wxPyEndBlockThreads(blocked); \
459 PCLASS::CBNAME(a,b,c); \
461 void base_##CBNAME(int a, int b, long c) { \
462 PCLASS::CBNAME(a,b,c); \
468 #define PYCALLBACK__INTINTDOUBLE(PCLASS, CBNAME) \
469 void CBNAME(int a, int b, double c) { \
471 bool blocked = wxPyBeginBlockThreads(); \
472 if ((found = wxPyCBH_findCallback(m_myInst, #CBNAME))) \
473 wxPyCBH_callCallback(m_myInst, Py_BuildValue("(iif)", a,b,c)); \
474 wxPyEndBlockThreads(blocked); \
476 PCLASS::CBNAME(a,b,c); \
478 void base_##CBNAME(int a, int b, double c) { \
479 PCLASS::CBNAME(a,b,c); \
484 #define PYCALLBACK__INTINTBOOL(PCLASS, CBNAME) \
485 void CBNAME(int a, int b, bool c) { \
487 bool blocked = wxPyBeginBlockThreads(); \
488 if ((found = wxPyCBH_findCallback(m_myInst, #CBNAME))) \
489 wxPyCBH_callCallback(m_myInst, Py_BuildValue("(iii)", a,b,c)); \
490 wxPyEndBlockThreads(blocked); \
492 PCLASS::CBNAME(a,b,c); \
494 void base_##CBNAME(int a, int b, bool c) { \
495 PCLASS::CBNAME(a,b,c); \
503 //---------------------------------------------------------------------------
505 class wxGridCellCoords;
506 class wxGridCellAttr;
508 #define wxGRID_VALUE_STRING "string"
509 #define wxGRID_VALUE_BOOL "bool"
510 #define wxGRID_VALUE_NUMBER "long"
511 #define wxGRID_VALUE_FLOAT "double"
512 #define wxGRID_VALUE_CHOICE "choice"
513 #define wxGRID_VALUE_TEXT "string"
514 #define wxGRID_VALUE_LONG "long"
515 #define wxGRID_VALUE_CHOICEINT "choiceint"
516 #define wxGRID_VALUE_DATETIME "datetime"
520 const wxGridCellCoords wxGridNoCellCoords;
521 const wxRect wxGridNoCellRect;
526 #define wxGRID_DEFAULT_NUMBER_ROWS WXGRID_DEFAULT_NUMBER_ROWS
527 #define wxGRID_DEFAULT_NUMBER_COLS WXGRID_DEFAULT_NUMBER_COLS
528 #define wxGRID_DEFAULT_ROW_HEIGHT WXGRID_DEFAULT_ROW_HEIGHT
529 #define wxGRID_DEFAULT_COL_WIDTH WXGRID_DEFAULT_COL_WIDTH
530 #define wxGRID_DEFAULT_COL_LABEL_HEIGHT WXGRID_DEFAULT_COL_LABEL_HEIGHT
531 #define wxGRID_DEFAULT_ROW_LABEL_WIDTH WXGRID_DEFAULT_ROW_LABEL_WIDTH
532 #define wxGRID_LABEL_EDGE_ZONE WXGRID_LABEL_EDGE_ZONE
533 #define wxGRID_MIN_ROW_HEIGHT WXGRID_MIN_ROW_HEIGHT
534 #define wxGRID_MIN_COL_WIDTH WXGRID_MIN_COL_WIDTH
535 #define wxGRID_DEFAULT_SCROLLBAR_WIDTH WXGRID_DEFAULT_SCROLLBAR_WIDTH
539 wxGRID_DEFAULT_NUMBER_ROWS,
540 wxGRID_DEFAULT_NUMBER_COLS,
541 wxGRID_DEFAULT_ROW_HEIGHT,
542 wxGRID_DEFAULT_COL_WIDTH,
543 wxGRID_DEFAULT_COL_LABEL_HEIGHT,
544 wxGRID_DEFAULT_ROW_LABEL_WIDTH,
545 wxGRID_LABEL_EDGE_ZONE,
546 wxGRID_MIN_ROW_HEIGHT,
547 wxGRID_MIN_COL_WIDTH,
548 wxGRID_DEFAULT_SCROLLBAR_WIDTH
552 //---------------------------------------------------------------------------
553 // wxGridCellRenderer is an ABC, and several derived classes are available.
554 // Classes implemented in Python should be derived from wxPyGridCellRenderer.
557 class wxGridCellRenderer
561 void _setOORInfo(PyObject* _self) {
562 if (!self->GetClientObject())
563 self->SetClientObject(new wxPyOORClientData(_self));
567 void SetParameters(const wxString& params);
571 virtual void Draw(wxGrid& grid,
572 wxGridCellAttr& attr,
577 virtual wxSize GetBestSize(wxGrid& grid,
578 wxGridCellAttr& attr,
581 virtual wxGridCellRenderer *Clone() const;
585 // The C++ version of wxPyGridCellRenderer
587 class wxPyGridCellRenderer : public wxGridCellRenderer
590 wxPyGridCellRenderer() : wxGridCellRenderer() {};
592 // Implement Python callback aware virtual methods
593 void Draw(wxGrid& grid, wxGridCellAttr& attr,
594 wxDC& dc, const wxRect& rect,
595 int row, int col, bool isSelected) {
596 bool blocked = wxPyBeginBlockThreads();
597 if (wxPyCBH_findCallback(m_myInst, "Draw")) {
598 PyObject* go = wxPyMake_wxObject(&grid,false);
599 PyObject* dco = wxPyMake_wxObject(&dc,false);
600 PyObject* ao = wxPyMake_wxGridCellAttr(&attr,false);
601 PyObject* ro = wxPyConstructObject((void*)&rect, wxT("wxRect"), 0);
603 wxPyCBH_callCallback(m_myInst, Py_BuildValue("(OOOOiii)", go, ao, dco, ro,
604 row, col, isSelected));
610 wxPyEndBlockThreads(blocked);
613 wxSize GetBestSize(wxGrid& grid, wxGridCellAttr& attr, wxDC& dc,
616 bool blocked = wxPyBeginBlockThreads();
617 if (wxPyCBH_findCallback(m_myInst, "GetBestSize")) {
620 PyObject* go = wxPyMake_wxObject(&grid,false);
621 PyObject* dco = wxPyMake_wxObject(&dc,false);
622 PyObject* ao = wxPyMake_wxGridCellAttr(&attr,false);
624 ro = wxPyCBH_callCallbackObj(m_myInst, Py_BuildValue("(OOOii)",
632 const char* errmsg = "GetBestSize should return a 2-tuple of integers or a wxSize object.";
633 if (wxPyConvertSwigPtr(ro, (void **)&ptr, wxT("wxSize"))) {
636 else if (PySequence_Check(ro) && PyObject_Length(ro) == 2) {
637 PyObject* o1 = PySequence_GetItem(ro, 0);
638 PyObject* o2 = PySequence_GetItem(ro, 1);
639 if (PyNumber_Check(o1) && PyNumber_Check(o2))
640 rval = wxSize(PyInt_AsLong(o1), PyInt_AsLong(o2));
642 PyErr_SetString(PyExc_TypeError, errmsg);
647 PyErr_SetString(PyExc_TypeError, errmsg);
652 wxPyEndBlockThreads(blocked);
657 wxGridCellRenderer *Clone() const {
658 wxGridCellRenderer* rval = NULL;
659 bool blocked = wxPyBeginBlockThreads();
660 if (wxPyCBH_findCallback(m_myInst, "Clone")) {
662 wxGridCellRenderer* ptr;
663 ro = wxPyCBH_callCallbackObj(m_myInst, Py_BuildValue("()"));
665 if (wxPyConvertSwigPtr(ro, (void **)&ptr, wxT("wxGridCellRenderer")))
670 wxPyEndBlockThreads(blocked);
674 DEC_PYCALLBACK__STRING(SetParameters);
679 IMP_PYCALLBACK__STRING( wxPyGridCellRenderer, wxGridCellRenderer, SetParameters);
684 // Let SWIG know about it so it can create the Python version
685 class wxPyGridCellRenderer : public wxGridCellRenderer {
687 %pythonAppend wxPyGridCellRenderer "self._setCallbackInfo(self, PyGridCellRenderer);self._setOORInfo(self)"
689 wxPyGridCellRenderer();
690 void _setCallbackInfo(PyObject* self, PyObject* _class);
692 void base_SetParameters(const wxString& params);
695 //---------------------------------------------------------------------------
696 // Predefined Renderers
698 class wxGridCellStringRenderer : public wxGridCellRenderer
701 %pythonAppend wxGridCellStringRenderer "self._setOORInfo(self)"
702 wxGridCellStringRenderer();
706 class wxGridCellNumberRenderer : public wxGridCellStringRenderer
709 %pythonAppend wxGridCellNumberRenderer "self._setOORInfo(self)"
710 wxGridCellNumberRenderer();
714 class wxGridCellFloatRenderer : public wxGridCellStringRenderer
717 %pythonAppend wxGridCellFloatRenderer "self._setOORInfo(self)"
718 wxGridCellFloatRenderer(int width = -1, int precision = -1);
720 int GetWidth() const;
721 void SetWidth(int width);
722 int GetPrecision() const;
723 void SetPrecision(int precision);
727 class wxGridCellBoolRenderer : public wxGridCellRenderer
730 %pythonAppend wxGridCellBoolRenderer "self._setOORInfo(self)"
731 wxGridCellBoolRenderer();
735 class wxGridCellDateTimeRenderer : public wxGridCellStringRenderer
738 %pythonAppend wxGridCellDateTimeRenderer "self._setOORInfo(self)"
739 wxGridCellDateTimeRenderer(wxString outformat = wxPyDateTimeFormatStr,
740 wxString informat = wxPyDateTimeFormatStr);
744 class wxGridCellEnumRenderer : public wxGridCellStringRenderer
747 %pythonAppend wxGridCellEnumRenderer "self._setOORInfo(self)"
748 wxGridCellEnumRenderer( const wxString& choices = wxPyEmptyString );
752 class wxGridCellAutoWrapStringRenderer : public wxGridCellStringRenderer
755 %pythonAppend wxGridCellAutoWrapStringRenderer "self._setOORInfo(self)"
756 wxGridCellAutoWrapStringRenderer();
760 //---------------------------------------------------------------------------
761 // wxGridCellEditor is an ABC, and several derived classes are available.
762 // Classes implemented in Python should be derived from wxPyGridCellEditor.
764 class wxGridCellEditor
768 void _setOORInfo(PyObject* _self) {
769 if (!self->GetClientObject())
770 self->SetClientObject(new wxPyOORClientData(_self));
775 wxControl* GetControl();
776 void SetControl(wxControl* control);
778 wxGridCellAttr* GetCellAttr();
779 void SetCellAttr(wxGridCellAttr* attr);
781 void SetParameters(const wxString& params);
785 virtual void Create(wxWindow* parent,
787 wxEvtHandler* evtHandler);
788 virtual void BeginEdit(int row, int col, wxGrid* grid);
789 virtual bool EndEdit(int row, int col, wxGrid* grid);
790 virtual void Reset();
791 virtual wxGridCellEditor *Clone() const;
793 virtual void SetSize(const wxRect& rect);
794 virtual void Show(bool show, wxGridCellAttr *attr = NULL);
795 virtual void PaintBackground(const wxRect& rectCell, wxGridCellAttr *attr);
796 virtual bool IsAcceptedKey(wxKeyEvent& event);
797 virtual void StartingKey(wxKeyEvent& event);
798 virtual void StartingClick();
799 virtual void HandleReturn(wxKeyEvent& event);
800 virtual void Destroy();
805 // The C++ version of wxPyGridCellEditor
807 class wxPyGridCellEditor : public wxGridCellEditor
810 wxPyGridCellEditor() : wxGridCellEditor() {}
812 void Create(wxWindow* parent, wxWindowID id, wxEvtHandler* evtHandler) {
813 bool blocked = wxPyBeginBlockThreads();
814 if (wxPyCBH_findCallback(m_myInst, "Create")) {
815 PyObject* po = wxPyMake_wxObject(parent,false);
816 PyObject* eo = wxPyMake_wxObject(evtHandler,false);
818 wxPyCBH_callCallback(m_myInst, Py_BuildValue("(OiO)", po, id, eo));
822 wxPyEndBlockThreads(blocked);
826 void BeginEdit(int row, int col, wxGrid* grid) {
827 bool blocked = wxPyBeginBlockThreads();
828 if (wxPyCBH_findCallback(m_myInst, "BeginEdit")) {
829 PyObject* go = wxPyMake_wxObject(grid,false);
830 wxPyCBH_callCallback(m_myInst, Py_BuildValue("(iiO)", row, col, go));
833 wxPyEndBlockThreads(blocked);
837 bool EndEdit(int row, int col, wxGrid* grid) {
839 bool blocked = wxPyBeginBlockThreads();
840 if (wxPyCBH_findCallback(m_myInst, "EndEdit")) {
841 PyObject* go = wxPyMake_wxObject(grid,false);
842 rv = wxPyCBH_callCallback(m_myInst, Py_BuildValue("(iiO)", row, col, go));
845 wxPyEndBlockThreads(blocked);
850 wxGridCellEditor* Clone() const {
851 wxGridCellEditor* rval = NULL;
852 bool blocked = wxPyBeginBlockThreads();
853 if (wxPyCBH_findCallback(m_myInst, "Clone")) {
855 wxGridCellEditor* ptr;
856 ro = wxPyCBH_callCallbackObj(m_myInst, Py_BuildValue("()"));
858 if (wxPyConvertSwigPtr(ro, (void **)&ptr, wxT("wxGridCellEditor")))
863 wxPyEndBlockThreads(blocked);
868 void Show(bool show, wxGridCellAttr *attr) {
870 bool blocked = wxPyBeginBlockThreads();
871 if ((found = wxPyCBH_findCallback(m_myInst, "Show"))) {
872 PyObject* ao = wxPyMake_wxGridCellAttr(attr,false);
873 wxPyCBH_callCallback(m_myInst, Py_BuildValue("(iO)", show, ao));
876 wxPyEndBlockThreads(blocked);
878 wxGridCellEditor::Show(show, attr);
880 void base_Show(bool show, wxGridCellAttr *attr) {
881 wxGridCellEditor::Show(show, attr);
885 void PaintBackground(const wxRect& rectCell, wxGridCellAttr *attr) {
887 bool blocked = wxPyBeginBlockThreads();
888 if ((found = wxPyCBH_findCallback(m_myInst, "PaintBackground)"))) {
889 PyObject* ao = wxPyMake_wxGridCellAttr(attr,false);
890 PyObject* ro = wxPyConstructObject((void*)&rectCell, wxT("wxRect"), 0);
892 wxPyCBH_callCallback(m_myInst, Py_BuildValue("(OO)", ro, ao));
897 wxPyEndBlockThreads(blocked);
899 wxGridCellEditor::PaintBackground(rectCell, attr);
901 void base_PaintBackground(const wxRect& rectCell, wxGridCellAttr *attr) {
902 wxGridCellEditor::PaintBackground(rectCell, attr);
906 DEC_PYCALLBACK___pure(Reset);
907 DEC_PYCALLBACK__constany(SetSize, wxRect);
908 DEC_PYCALLBACK_bool_any(IsAcceptedKey, wxKeyEvent);
909 DEC_PYCALLBACK__any(StartingKey, wxKeyEvent);
910 DEC_PYCALLBACK__any(HandleReturn, wxKeyEvent);
911 DEC_PYCALLBACK__(StartingClick);
912 DEC_PYCALLBACK__(Destroy);
913 DEC_PYCALLBACK__STRING(SetParameters);
914 DEC_PYCALLBACK_STRING__constpure(GetValue);
920 IMP_PYCALLBACK__STRING( wxPyGridCellEditor, wxGridCellEditor, SetParameters);
921 IMP_PYCALLBACK___pure(wxPyGridCellEditor, wxGridCellEditor, Reset);
922 IMP_PYCALLBACK__constany(wxPyGridCellEditor, wxGridCellEditor, SetSize, wxRect);
923 IMP_PYCALLBACK_bool_any(wxPyGridCellEditor, wxGridCellEditor, IsAcceptedKey, wxKeyEvent);
924 IMP_PYCALLBACK__any(wxPyGridCellEditor, wxGridCellEditor, StartingKey, wxKeyEvent);
925 IMP_PYCALLBACK__any(wxPyGridCellEditor, wxGridCellEditor, HandleReturn, wxKeyEvent);
926 IMP_PYCALLBACK__(wxPyGridCellEditor, wxGridCellEditor, StartingClick);
927 IMP_PYCALLBACK__(wxPyGridCellEditor, wxGridCellEditor, Destroy);
928 IMP_PYCALLBACK_STRING__constpure(wxPyGridCellEditor, wxGridCellEditor, GetValue);
933 // Let SWIG know about it so it can create the Python version
934 class wxPyGridCellEditor : public wxGridCellEditor {
936 %pythonAppend wxPyGridCellEditor "self._setCallbackInfo(self, PyGridCellEditor);self._setOORInfo(self)"
938 wxPyGridCellEditor();
939 void _setCallbackInfo(PyObject* self, PyObject* _class);
941 void base_SetSize(const wxRect& rect);
942 void base_Show(bool show, wxGridCellAttr *attr = NULL);
943 void base_PaintBackground(const wxRect& rectCell, wxGridCellAttr *attr);
944 bool base_IsAcceptedKey(wxKeyEvent& event);
945 void base_StartingKey(wxKeyEvent& event);
946 void base_StartingClick();
947 void base_HandleReturn(wxKeyEvent& event);
949 void base_SetParameters(const wxString& params);
952 //---------------------------------------------------------------------------
953 // Predefined Editors
955 class wxGridCellTextEditor : public wxGridCellEditor
958 %pythonAppend wxGridCellTextEditor "self._setOORInfo(self)"
959 wxGridCellTextEditor();
960 virtual wxString GetValue();
964 class wxGridCellNumberEditor : public wxGridCellTextEditor
967 %pythonAppend wxGridCellNumberEditor "self._setOORInfo(self)"
968 wxGridCellNumberEditor(int min = -1, int max = -1);
969 virtual wxString GetValue();
973 class wxGridCellFloatEditor : public wxGridCellTextEditor
976 %pythonAppend wxGridCellFloatEditor "self._setOORInfo(self)"
977 wxGridCellFloatEditor(int width = -1, int precision = -1);
978 virtual wxString GetValue();
982 class wxGridCellBoolEditor : public wxGridCellEditor
985 %pythonAppend wxGridCellBoolEditor "self._setOORInfo(self)"
986 wxGridCellBoolEditor();
987 virtual wxString GetValue();
990 class wxGridCellChoiceEditor : public wxGridCellEditor
993 %pythonAppend wxGridCellChoiceEditor "self._setOORInfo(self)"
994 wxGridCellChoiceEditor(int choices = 0,
995 const wxString* choices_array = NULL,
996 bool allowOthers = false);
997 virtual wxString GetValue();
1001 class wxGridCellEnumEditor : public wxGridCellChoiceEditor
1004 %pythonAppend wxGridCellEnumEditor "self._setOORInfo(self)"
1005 wxGridCellEnumEditor( const wxString& choices = wxPyEmptyString );
1006 virtual wxString GetValue();
1010 class wxGridCellAutoWrapStringEditor : public wxGridCellTextEditor
1013 %pythonAppend wxGridCellAutoWrapStringEditor "self._setOORInfo(self)"
1014 wxGridCellAutoWrapStringEditor();
1015 virtual wxString GetValue();
1020 //---------------------------------------------------------------------------
1023 class wxGridCellAttr
1037 void _setOORInfo(PyObject* _self) {
1038 if (!self->GetClientObject())
1039 self->SetClientObject(new wxPyOORClientData(_self));
1043 %pythonAppend wxGridCellAttr "self._setOORInfo(self)"
1045 wxGridCellAttr(wxGridCellAttr *attrDefault = NULL);
1047 wxGridCellAttr *Clone() const;
1048 void MergeWith(wxGridCellAttr *mergefrom);
1051 void SetTextColour(const wxColour& colText);
1052 void SetBackgroundColour(const wxColour& colBack);
1053 void SetFont(const wxFont& font);
1054 void SetAlignment(int hAlign, int vAlign);
1055 void SetSize(int num_rows, int num_cols);
1056 void SetOverflow( bool allow = true );
1057 void SetReadOnly(bool isReadOnly = true);
1059 void SetRenderer(wxGridCellRenderer *renderer);
1060 void SetEditor(wxGridCellEditor* editor);
1061 void SetKind(wxAttrKind kind);
1063 bool HasTextColour() const;
1064 bool HasBackgroundColour() const;
1065 bool HasFont() const;
1066 bool HasAlignment() const;
1067 bool HasRenderer() const;
1068 bool HasEditor() const;
1069 bool HasReadWriteMode() const;
1070 bool HasOverflowMode() const;
1072 wxColour GetTextColour() const;
1073 wxColour GetBackgroundColour() const;
1074 wxFont GetFont() const;
1077 void, GetAlignment(int *OUTPUT, int *OUTPUT) const,
1078 "GetAlignment() -> (hAlign, vAlign)");
1081 void, GetSize(int *OUTPUT, int *OUTPUT) const,
1082 "GetSize() -> (num_rows, num_cols)");
1084 bool GetOverflow() const;
1085 wxGridCellRenderer *GetRenderer(wxGrid* grid, int row, int col) const;
1086 wxGridCellEditor *GetEditor(wxGrid* grid, int row, int col) const;
1088 bool IsReadOnly() const;
1089 wxAttrKind GetKind();
1090 void SetDefAttr(wxGridCellAttr* defAttr);
1093 //---------------------------------------------------------------------------
1095 class wxGridCellAttrProvider
1098 %pythonAppend wxGridCellAttrProvider "self._setOORInfo(self)"
1099 wxGridCellAttrProvider();
1100 // ???? virtual ~wxGridCellAttrProvider();
1103 void _setOORInfo(PyObject* _self) {
1104 if (!self->GetClientObject())
1105 self->SetClientObject(new wxPyOORClientData(_self));
1109 wxGridCellAttr *GetAttr(int row, int col,
1110 wxGridCellAttr::wxAttrKind kind) const;
1111 void SetAttr(wxGridCellAttr *attr, int row, int col);
1112 void SetRowAttr(wxGridCellAttr *attr, int row);
1113 void SetColAttr(wxGridCellAttr *attr, int col);
1115 void UpdateAttrRows( size_t pos, int numRows );
1116 void UpdateAttrCols( size_t pos, int numCols );
1121 // A Python-aware version
1123 class wxPyGridCellAttrProvider : public wxGridCellAttrProvider
1126 wxPyGridCellAttrProvider() : wxGridCellAttrProvider() {};
1128 PYCALLBACK_GCA_INTINTKIND(wxGridCellAttrProvider, GetAttr);
1129 PYCALLBACK__GCAINTINT(wxGridCellAttrProvider, SetAttr);
1130 PYCALLBACK__GCAINT(wxGridCellAttrProvider, SetRowAttr);
1131 PYCALLBACK__GCAINT(wxGridCellAttrProvider, SetColAttr);
1138 // The python-aware version get's SWIGified
1139 class wxPyGridCellAttrProvider : public wxGridCellAttrProvider
1142 %pythonAppend wxPyGridCellAttrProvider "self._setCallbackInfo(self, PyGridCellAttrProvider)"
1143 wxPyGridCellAttrProvider();
1144 void _setCallbackInfo(PyObject* self, PyObject* _class);
1146 wxGridCellAttr *base_GetAttr(int row, int col,
1147 wxGridCellAttr::wxAttrKind kind);
1148 void base_SetAttr(wxGridCellAttr *attr, int row, int col);
1149 void base_SetRowAttr(wxGridCellAttr *attr, int row);
1150 void base_SetColAttr(wxGridCellAttr *attr, int col);
1154 //---------------------------------------------------------------------------
1155 // Grid Table Base class and Python aware version
1158 class wxGridTableBase : public wxObject
1161 // wxGridTableBase(); This is an ABC
1162 //~wxGridTableBase();
1165 void _setOORInfo(PyObject* _self) {
1166 if (!self->GetClientObject())
1167 self->SetClientObject(new wxPyOORClientData(_self));
1171 void SetAttrProvider(wxGridCellAttrProvider *attrProvider);
1172 wxGridCellAttrProvider *GetAttrProvider() const;
1173 void SetView( wxGrid *grid );
1174 wxGrid * GetView() const;
1178 virtual int GetNumberRows();
1179 virtual int GetNumberCols();
1180 virtual bool IsEmptyCell( int row, int col );
1181 virtual wxString GetValue( int row, int col );
1182 virtual void SetValue( int row, int col, const wxString& value );
1184 // virtuals overridable in wxPyGridTableBase
1185 virtual wxString GetTypeName( int row, int col );
1186 virtual bool CanGetValueAs( int row, int col, const wxString& typeName );
1187 virtual bool CanSetValueAs( int row, int col, const wxString& typeName );
1188 virtual long GetValueAsLong( int row, int col );
1189 virtual double GetValueAsDouble( int row, int col );
1190 virtual bool GetValueAsBool( int row, int col );
1191 virtual void SetValueAsLong( int row, int col, long value );
1192 virtual void SetValueAsDouble( int row, int col, double value );
1193 virtual void SetValueAsBool( int row, int col, bool value );
1195 //virtual void* GetValueAsCustom( int row, int col, const wxString& typeName );
1196 //virtual void SetValueAsCustom( int row, int col, const wxString& typeName, void* value );
1199 virtual void Clear();
1200 virtual bool InsertRows( size_t pos = 0, size_t numRows = 1 );
1201 virtual bool AppendRows( size_t numRows = 1 );
1202 virtual bool DeleteRows( size_t pos = 0, size_t numRows = 1 );
1203 virtual bool InsertCols( size_t pos = 0, size_t numCols = 1 );
1204 virtual bool AppendCols( size_t numCols = 1 );
1205 virtual bool DeleteCols( size_t pos = 0, size_t numCols = 1 );
1207 virtual wxString GetRowLabelValue( int row );
1208 virtual wxString GetColLabelValue( int col );
1209 virtual void SetRowLabelValue( int row, const wxString& value );
1210 virtual void SetColLabelValue( int col, const wxString& value );
1212 virtual bool CanHaveAttributes();
1214 virtual wxGridCellAttr *GetAttr( int row, int col,
1215 wxGridCellAttr::wxAttrKind kind);
1216 virtual void SetAttr(wxGridCellAttr* attr, int row, int col);
1217 virtual void SetRowAttr(wxGridCellAttr *attr, int row);
1218 virtual void SetColAttr(wxGridCellAttr *attr, int col);
1224 // Python-aware version
1226 class wxPyGridTableBase : public wxGridTableBase
1229 wxPyGridTableBase() : wxGridTableBase() {}
1231 PYCALLBACK_INT__pure(GetNumberRows);
1232 PYCALLBACK_INT__pure(GetNumberCols);
1233 PYCALLBACK_BOOL_INTINT_pure(IsEmptyCell);
1234 PYCALLBACK_STRING_INTINT(wxGridTableBase, GetTypeName);
1235 PYCALLBACK_BOOL_INTINTSTRING(wxGridTableBase, CanGetValueAs);
1236 PYCALLBACK_BOOL_INTINTSTRING(wxGridTableBase, CanSetValueAs);
1237 PYCALLBACK__(wxGridTableBase, Clear);
1238 PYCALLBACK_BOOL_SIZETSIZET(wxGridTableBase, InsertRows);
1239 PYCALLBACK_BOOL_SIZETSIZET(wxGridTableBase, DeleteRows);
1240 PYCALLBACK_BOOL_SIZETSIZET(wxGridTableBase, InsertCols);
1241 PYCALLBACK_BOOL_SIZETSIZET(wxGridTableBase, DeleteCols);
1242 PYCALLBACK_BOOL_SIZET(wxGridTableBase, AppendRows);
1243 PYCALLBACK_BOOL_SIZET(wxGridTableBase, AppendCols);
1244 PYCALLBACK_STRING_INT(wxGridTableBase, GetRowLabelValue);
1245 PYCALLBACK_STRING_INT(wxGridTableBase, GetColLabelValue);
1246 PYCALLBACK__INTSTRING(wxGridTableBase, SetRowLabelValue);
1247 PYCALLBACK__INTSTRING(wxGridTableBase, SetColLabelValue);
1248 PYCALLBACK_BOOL_(wxGridTableBase, CanHaveAttributes);
1249 PYCALLBACK_GCA_INTINTKIND(wxGridTableBase, GetAttr);
1250 PYCALLBACK__GCAINTINT(wxGridTableBase, SetAttr);
1251 PYCALLBACK__GCAINT(wxGridTableBase, SetRowAttr);
1252 PYCALLBACK__GCAINT(wxGridTableBase, SetColAttr);
1255 wxString GetValue(int row, int col) {
1256 bool blocked = wxPyBeginBlockThreads();
1258 if (wxPyCBH_findCallback(m_myInst, "GetValue")) {
1260 ro = wxPyCBH_callCallbackObj(m_myInst, Py_BuildValue("(ii)",row,col));
1262 if (!PyString_Check(ro) && !PyUnicode_Check(ro)) {
1264 ro = PyObject_Str(ro);
1267 rval = Py2wxString(ro);
1271 wxPyEndBlockThreads(blocked);
1275 void SetValue(int row, int col, const wxString& val) {
1276 bool blocked = wxPyBeginBlockThreads();
1277 if (wxPyCBH_findCallback(m_myInst, "SetValue")) {
1278 PyObject* s = wx2PyString(val);
1279 wxPyCBH_callCallback(m_myInst, Py_BuildValue("(iiO)",row,col,s));
1282 wxPyEndBlockThreads(blocked);
1286 // Map the Get/Set methods for the standard non-string types to
1287 // the GetValue and SetValue python methods.
1288 long GetValueAsLong( int row, int col ) {
1290 bool blocked = wxPyBeginBlockThreads();
1291 if (wxPyCBH_findCallback(m_myInst, "GetValue")) {
1294 ro = wxPyCBH_callCallbackObj(m_myInst, Py_BuildValue("(ii)", row, col));
1295 if (ro && PyNumber_Check(ro)) {
1296 num = PyNumber_Int(ro);
1298 rval = PyInt_AsLong(num);
1304 wxPyEndBlockThreads(blocked);
1308 double GetValueAsDouble( int row, int col ) {
1310 bool blocked = wxPyBeginBlockThreads();
1311 if (wxPyCBH_findCallback(m_myInst, "GetValue")) {
1314 ro = wxPyCBH_callCallbackObj(m_myInst, Py_BuildValue("(ii)", row, col));
1315 if (ro && PyNumber_Check(ro)) {
1316 num = PyNumber_Float(ro);
1318 rval = PyFloat_AsDouble(num);
1324 wxPyEndBlockThreads(blocked);
1328 bool GetValueAsBool( int row, int col ) {
1329 return (bool)GetValueAsLong(row, col);
1332 void SetValueAsLong( int row, int col, long value ) {
1333 bool blocked = wxPyBeginBlockThreads();
1334 if (wxPyCBH_findCallback(m_myInst, "SetValue")) {
1335 wxPyCBH_callCallback(m_myInst, Py_BuildValue("(iii)", row, col, value));
1337 wxPyEndBlockThreads(blocked);
1340 void SetValueAsDouble( int row, int col, double value ) {
1341 bool blocked = wxPyBeginBlockThreads();
1342 if (wxPyCBH_findCallback(m_myInst, "SetValue")) {
1343 wxPyCBH_callCallback(m_myInst, Py_BuildValue("(iid)", row, col, value));
1345 wxPyEndBlockThreads(blocked);
1348 void SetValueAsBool( int row, int col, bool value ) {
1349 SetValueAsLong( row, col, (long)value );
1358 // The python-aware version get's SWIGified
1359 class wxPyGridTableBase : public wxGridTableBase
1362 %pythonAppend wxPyGridTableBase "self._setCallbackInfo(self, PyGridTableBase);self._setOORInfo(self)"
1363 wxPyGridTableBase();
1364 void _setCallbackInfo(PyObject* self, PyObject* _class);
1366 %extend { void Destroy() { delete self; } }
1368 wxString base_GetTypeName( int row, int col );
1369 bool base_CanGetValueAs( int row, int col, const wxString& typeName );
1370 bool base_CanSetValueAs( int row, int col, const wxString& typeName );
1372 bool base_InsertRows( size_t pos = 0, size_t numRows = 1 );
1373 bool base_AppendRows( size_t numRows = 1 );
1374 bool base_DeleteRows( size_t pos = 0, size_t numRows = 1 );
1375 bool base_InsertCols( size_t pos = 0, size_t numCols = 1 );
1376 bool base_AppendCols( size_t numCols = 1 );
1377 bool base_DeleteCols( size_t pos = 0, size_t numCols = 1 );
1378 wxString base_GetRowLabelValue( int row );
1379 wxString base_GetColLabelValue( int col );
1380 void base_SetRowLabelValue( int row, const wxString& value );
1381 void base_SetColLabelValue( int col, const wxString& value );
1382 bool base_CanHaveAttributes();
1383 wxGridCellAttr *base_GetAttr( int row, int col,
1384 wxGridCellAttr::wxAttrKind kind );
1385 void base_SetAttr(wxGridCellAttr* attr, int row, int col);
1386 void base_SetRowAttr(wxGridCellAttr *attr, int row);
1387 void base_SetColAttr(wxGridCellAttr *attr, int col);
1391 //---------------------------------------------------------------------------
1392 // Predefined Tables
1394 class wxGridStringTable : public wxGridTableBase
1397 %pythonAppend wxGridStringTable "self._setOORInfo(self)"
1398 wxGridStringTable( int numRows=0, int numCols=0 );
1401 //---------------------------------------------------------------------------
1402 // The Table can pass messages to the grid to tell it to update itself if
1403 // something has changed.
1405 enum wxGridTableRequest
1407 wxGRIDTABLE_REQUEST_VIEW_GET_VALUES = 2000,
1408 wxGRIDTABLE_REQUEST_VIEW_SEND_VALUES,
1409 wxGRIDTABLE_NOTIFY_ROWS_INSERTED,
1410 wxGRIDTABLE_NOTIFY_ROWS_APPENDED,
1411 wxGRIDTABLE_NOTIFY_ROWS_DELETED,
1412 wxGRIDTABLE_NOTIFY_COLS_INSERTED,
1413 wxGRIDTABLE_NOTIFY_COLS_APPENDED,
1414 wxGRIDTABLE_NOTIFY_COLS_DELETED
1418 class wxGridTableMessage
1421 wxGridTableMessage( wxGridTableBase *table, int id,
1424 ~wxGridTableMessage();
1426 void SetTableObject( wxGridTableBase *table );
1427 wxGridTableBase * GetTableObject() const;
1428 void SetId( int id );
1430 void SetCommandInt( int comInt1 );
1431 int GetCommandInt();
1432 void SetCommandInt2( int comInt2 );
1433 int GetCommandInt2();
1437 //---------------------------------------------------------------------------
1440 // Typemap to allow conversion of sequence objects to wxGridCellCoords...
1441 %typemap(in) wxGridCellCoords& (wxGridCellCoords temp) {
1443 if (! wxGridCellCoords_helper($input, &$1)) SWIG_fail;
1445 %typemap(typecheck, precedence=SWIG_TYPECHECK_POINTER) wxGridCellCoords& {
1446 $1 = wxGridCellCoords_typecheck($input);
1450 // ...and here is the associated helper.
1452 bool wxGridCellCoords_helper(PyObject* source, wxGridCellCoords** obj) {
1454 if (source == Py_None) {
1455 **obj = wxGridCellCoords(-1,-1);
1459 // If source is an object instance then it may already be the right type
1460 if (wxPySwigInstance_Check(source)) {
1461 wxGridCellCoords* ptr;
1462 if (! wxPyConvertSwigPtr(source, (void **)&ptr, wxT("wxGridCellCoords")))
1467 // otherwise a 2-tuple of integers is expected
1468 else if (PySequence_Check(source) && PyObject_Length(source) == 2) {
1469 PyObject* o1 = PySequence_GetItem(source, 0);
1470 PyObject* o2 = PySequence_GetItem(source, 1);
1471 if (!PyNumber_Check(o1) || !PyNumber_Check(o2)) {
1476 **obj = wxGridCellCoords(PyInt_AsLong(o1), PyInt_AsLong(o2));
1483 PyErr_SetString(PyExc_TypeError, "Expected a 2-tuple of integers or a wxGridCellCoords object.");
1488 bool wxGridCellCoords_typecheck(PyObject* source) {
1491 if (wxPySwigInstance_Check(source) &&
1492 wxPyConvertSwigPtr(source, (void **)&ptr, wxT("wxGridCellCoords")))
1496 if (PySequence_Check(source) && PySequence_Length(source) == 2)
1504 // Typemap to convert an array of cells coords to a list of tuples...
1505 %typemap(out) wxGridCellCoordsArray {
1506 $result = wxGridCellCoordsArray_helper($1);
1509 // %typemap(ret) wxGridCellCoordsArray {
1514 // ...and the helper function for the above typemap.
1516 PyObject* wxGridCellCoordsArray_helper(const wxGridCellCoordsArray& source)
1518 PyObject* list = PyList_New(0);
1520 for (idx = 0; idx < source.GetCount(); idx += 1) {
1521 wxGridCellCoords& coord = source.Item(idx);
1522 PyObject* tup = PyTuple_New(2);
1523 PyTuple_SET_ITEM(tup, 0, PyInt_FromLong(coord.GetRow()));
1524 PyTuple_SET_ITEM(tup, 1, PyInt_FromLong(coord.GetCol()));
1525 PyList_Append(list, tup);
1536 class wxGridCellCoords
1539 wxGridCellCoords( int r=-1, int c=-1 );
1540 ~wxGridCellCoords();
1543 void SetRow( int n );
1545 void SetCol( int n );
1546 void Set( int row, int col );
1548 bool operator==( const wxGridCellCoords& other ) const;
1549 bool operator!=( const wxGridCellCoords& other ) const;
1553 PyObject* tup = PyTuple_New(2);
1554 PyTuple_SET_ITEM(tup, 0, PyInt_FromLong(self->GetRow()));
1555 PyTuple_SET_ITEM(tup, 1, PyInt_FromLong(self->GetCol()));
1560 asTuple = wx._deprecated(Get, "asTuple is deprecated, use `Get` instead")
1561 def __str__(self): return str(self.Get())
1562 def __repr__(self): return 'wxGridCellCoords'+str(self.Get())
1563 def __len__(self): return len(self.Get())
1564 def __getitem__(self, index): return self.asTuple()[index]
1565 def __setitem__(self, index, val):
1566 if index == 0: self.SetRow(val)
1567 elif index == 1: self.SetCol(val)
1568 else: raise IndexError
1574 //---------------------------------------------------------------------------
1575 //---------------------------------------------------------------------------
1579 // Fool SWIG into treating this enum as an int
1580 typedef int WXGRIDSELECTIONMODES;
1582 // but let the C++ code know what it really is.
1584 typedef wxGrid::wxGridSelectionModes WXGRIDSELECTIONMODES;
1589 MustHaveApp(wxGrid);
1591 class wxGrid : public wxScrolledWindow
1594 %pythonAppend wxGrid "self._setOORInfo(self)"
1595 %pythonAppend wxGrid() ""
1597 %typemap(out) wxGrid*; // turn off this typemap
1599 wxGrid( wxWindow *parent,
1601 const wxPoint& pos = wxDefaultPosition,
1602 const wxSize& size = wxDefaultSize,
1603 long style = wxWANTS_CHARS,
1604 const wxString& name = wxPyPanelNameStr);
1606 %name(PreGrid) wxGrid();
1609 // Turn it back on again
1610 %typemap(out) wxGrid* { $result = wxPyMake_wxObject($1, $owner); }
1613 bool Create( wxWindow *parent,
1615 const wxPoint& pos = wxDefaultPosition,
1616 const wxSize& size = wxDefaultSize,
1617 long style = wxWANTS_CHARS,
1618 const wxString& name = wxPyPanelNameStr );
1621 enum wxGridSelectionModes {
1627 SelectCells = wxGridSelectCells
1628 SelectRows = wxGridSelectRows
1629 SelectColumns = wxGridSelectColumns
1632 bool CreateGrid( int numRows, int numCols,
1633 WXGRIDSELECTIONMODES selmode = wxGrid::wxGridSelectCells );
1634 void SetSelectionMode(WXGRIDSELECTIONMODES selmode);
1635 WXGRIDSELECTIONMODES GetSelectionMode();
1638 // ------ grid dimensions
1640 int GetNumberRows();
1641 int GetNumberCols();
1644 bool ProcessTableMessage( wxGridTableMessage& );
1647 wxGridTableBase * GetTable() const;
1648 bool SetTable( wxGridTableBase *table, bool takeOwnership=false,
1649 WXGRIDSELECTIONMODES selmode =
1650 wxGrid::wxGridSelectCells );
1653 bool InsertRows( int pos = 0, int numRows = 1, bool updateLabels=true );
1654 bool AppendRows( int numRows = 1, bool updateLabels=true );
1655 bool DeleteRows( int pos = 0, int numRows = 1, bool updateLabels=true );
1656 bool InsertCols( int pos = 0, int numCols = 1, bool updateLabels=true );
1657 bool AppendCols( int numCols = 1, bool updateLabels=true );
1658 bool DeleteCols( int pos = 0, int numCols = 1, bool updateLabels=true );
1661 // this function is called when the current cell highlight must be redrawn
1662 // and may be overridden by the user
1663 virtual void DrawCellHighlight( wxDC& dc, const wxGridCellAttr *attr );
1666 // ------ Cell text drawing functions
1668 void DrawTextRectangle( wxDC& dc, const wxString&, const wxRect&,
1669 int horizontalAlignment = wxLEFT,
1670 int verticalAlignment = wxTOP,
1671 int textOrientation = wxHORIZONTAL );
1673 // // Split a string containing newline chararcters into an array of
1674 // // strings and return the number of lines
1676 // void StringToLines( const wxString& value, wxArrayString& lines );
1679 void, GetTextBoxSize( wxDC& dc, wxArrayString& lines,
1680 long *OUTPUT, long *OUTPUT ),
1681 "GetTextBoxSize(DC dc, list lines) -> (width, height)");
1685 // Code that does a lot of grid modification can be enclosed
1686 // between BeginBatch() and EndBatch() calls to avoid screen
1691 int GetBatchCount();
1692 void ForceRefresh();
1695 // ------ edit control functions
1698 void EnableEditing( bool edit );
1700 void EnableCellEditControl( bool enable = true );
1701 void DisableCellEditControl();
1702 bool CanEnableCellControl() const;
1703 bool IsCellEditControlEnabled() const;
1704 bool IsCellEditControlShown() const;
1706 bool IsCurrentCellReadOnly() const;
1708 void ShowCellEditControl();
1709 void HideCellEditControl();
1710 void SaveEditControlValue();
1713 // ------ grid location functions
1714 // Note that all of these functions work with the logical coordinates of
1715 // grid cells and labels so you will need to convert from device
1716 // coordinates for mouse events etc.
1719 //void XYToCell( int x, int y, wxGridCellCoords& );
1721 wxGridCellCoords XYToCell(int x, int y) {
1722 wxGridCellCoords rv;
1723 self->XYToCell(x, y, rv);
1728 int YToRow( int y );
1729 int XToCol( int x );
1731 int YToEdgeOfRow( int y );
1732 int XToEdgeOfCol( int x );
1734 wxRect CellToRect( int row, int col );
1735 // TODO: ??? wxRect CellToRect( const wxGridCellCoords& coords );
1738 int GetGridCursorRow();
1739 int GetGridCursorCol();
1741 // check to see if a cell is either wholly visible (the default arg) or
1742 // at least partially visible in the grid window
1744 bool IsVisible( int row, int col, bool wholeCellVisible = true );
1745 // TODO: ??? bool IsVisible( const wxGridCellCoords& coords, bool wholeCellVisible = true );
1746 void MakeCellVisible( int row, int col );
1747 // TODO: ??? void MakeCellVisible( const wxGridCellCoords& coords );
1750 // ------ grid cursor movement functions
1752 void SetGridCursor( int row, int col );
1753 bool MoveCursorUp( bool expandSelection );
1754 bool MoveCursorDown( bool expandSelection );
1755 bool MoveCursorLeft( bool expandSelection );
1756 bool MoveCursorRight( bool expandSelection );
1757 bool MovePageDown();
1759 bool MoveCursorUpBlock( bool expandSelection );
1760 bool MoveCursorDownBlock( bool expandSelection );
1761 bool MoveCursorLeftBlock( bool expandSelection );
1762 bool MoveCursorRightBlock( bool expandSelection );
1765 // ------ label and gridline formatting
1767 int GetDefaultRowLabelSize();
1768 int GetRowLabelSize();
1769 int GetDefaultColLabelSize();
1770 int GetColLabelSize();
1771 wxColour GetLabelBackgroundColour();
1772 wxColour GetLabelTextColour();
1773 wxFont GetLabelFont();
1776 void, GetRowLabelAlignment( int *OUTPUT, int *OUTPUT ),
1777 "GetRowLabelAlignment() -> (horiz, vert)");
1780 void, GetColLabelAlignment( int *OUTPUT, int *OUTPUT ),
1781 "GetColLabelAlignment() -> (horiz, vert)");
1783 int GetColLabelTextOrientation();
1784 wxString GetRowLabelValue( int row );
1785 wxString GetColLabelValue( int col );
1786 wxColour GetGridLineColour();
1787 wxColour GetCellHighlightColour();
1788 int GetCellHighlightPenWidth();
1789 int GetCellHighlightROPenWidth();
1791 void SetRowLabelSize( int width );
1792 void SetColLabelSize( int height );
1793 void SetLabelBackgroundColour( const wxColour& );
1794 void SetLabelTextColour( const wxColour& );
1795 void SetLabelFont( const wxFont& );
1796 void SetRowLabelAlignment( int horiz, int vert );
1797 void SetColLabelAlignment( int horiz, int vert );
1798 void SetColLabelTextOrientation( int textOrientation );
1799 void SetRowLabelValue( int row, const wxString& );
1800 void SetColLabelValue( int col, const wxString& );
1801 void SetGridLineColour( const wxColour& );
1802 void SetCellHighlightColour( const wxColour& );
1803 void SetCellHighlightPenWidth(int width);
1804 void SetCellHighlightROPenWidth(int width);
1806 void EnableDragRowSize( bool enable = true );
1807 void DisableDragRowSize();
1808 bool CanDragRowSize();
1809 void EnableDragColSize( bool enable = true );
1810 void DisableDragColSize();
1811 bool CanDragColSize();
1812 void EnableDragGridSize(bool enable = true);
1813 void DisableDragGridSize();
1814 bool CanDragGridSize();
1816 void EnableDragCell( bool enable = true );
1817 void DisableDragCell();
1820 // this sets the specified attribute for all cells in this row/col
1821 void SetAttr(int row, int col, wxGridCellAttr *attr);
1822 void SetRowAttr(int row, wxGridCellAttr *attr);
1823 void SetColAttr(int col, wxGridCellAttr *attr);
1825 // returns the attribute we may modify in place: a new one if this cell
1826 // doesn't have any yet or the existing one if it does
1828 // DecRef() must be called on the returned pointer, as usual
1829 wxGridCellAttr *GetOrCreateCellAttr(int row, int col) const;
1832 // shortcuts for setting the column parameters
1834 // set the format for the data in the column: default is string
1835 void SetColFormatBool(int col);
1836 void SetColFormatNumber(int col);
1837 void SetColFormatFloat(int col, int width = -1, int precision = -1);
1838 void SetColFormatCustom(int col, const wxString& typeName);
1840 void EnableGridLines( bool enable = true );
1841 bool GridLinesEnabled();
1843 // ------ row and col formatting
1845 int GetDefaultRowSize();
1846 int GetRowSize( int row );
1847 int GetDefaultColSize();
1848 int GetColSize( int col );
1849 wxColour GetDefaultCellBackgroundColour();
1850 wxColour GetCellBackgroundColour( int row, int col );
1851 wxColour GetDefaultCellTextColour();
1852 wxColour GetCellTextColour( int row, int col );
1853 wxFont GetDefaultCellFont();
1854 wxFont GetCellFont( int row, int col );
1857 void, GetDefaultCellAlignment( int *OUTPUT, int *OUTPUT ),
1858 "GetDefaultCellAlignment() -> (horiz, vert)");
1861 void, GetCellAlignment( int row, int col, int *OUTPUT, int *OUTPUT ),
1862 "GetCellAlignment() -> (horiz, vert)");
1864 bool GetDefaultCellOverflow();
1865 bool GetCellOverflow( int row, int col );
1868 void, GetCellSize( int row, int col, int *OUTPUT, int *OUTPUT ),
1869 "GetCellSize(int row, int col) -> (num_rows, num_cols)");
1871 void SetDefaultRowSize( int height, bool resizeExistingRows = false );
1872 void SetRowSize( int row, int height );
1873 void SetDefaultColSize( int width, bool resizeExistingCols = false );
1875 void SetColSize( int col, int width );
1877 // automatically size the column or row to fit to its contents, if
1878 // setAsMin is True, this optimal width will also be set as minimal width
1880 void AutoSizeColumn( int col, bool setAsMin = true );
1881 void AutoSizeRow( int row, bool setAsMin = true );
1884 // auto size all columns (very ineffective for big grids!)
1885 void AutoSizeColumns( bool setAsMin = true );
1886 void AutoSizeRows( bool setAsMin = true );
1888 // auto size the grid, that is make the columns/rows of the "right" size
1889 // and also set the grid size to just fit its contents
1892 // autosize row height depending on label text
1893 void AutoSizeRowLabelSize( int row );
1895 // autosize column width depending on label text
1896 void AutoSizeColLabelSize( int col );
1899 // column won't be resized to be lesser width - this must be called during
1900 // the grid creation because it won't resize the column if it's already
1901 // narrower than the minimal width
1902 void SetColMinimalWidth( int col, int width );
1903 void SetRowMinimalHeight( int row, int width );
1905 void SetColMinimalAcceptableWidth( int width );
1906 void SetRowMinimalAcceptableHeight( int width );
1907 int GetColMinimalAcceptableWidth() const;
1908 int GetRowMinimalAcceptableHeight() const;
1910 void SetDefaultCellBackgroundColour( const wxColour& );
1911 void SetCellBackgroundColour( int row, int col, const wxColour& );
1912 void SetDefaultCellTextColour( const wxColour& );
1914 void SetCellTextColour( int row, int col, const wxColour& );
1915 void SetDefaultCellFont( const wxFont& );
1916 void SetCellFont( int row, int col, const wxFont& );
1917 void SetDefaultCellAlignment( int horiz, int vert );
1918 void SetCellAlignment( int row, int col, int horiz, int vert );
1919 void SetDefaultCellOverflow( bool allow );
1920 void SetCellOverflow( int row, int col, bool allow );
1921 void SetCellSize( int row, int col, int num_rows, int num_cols );
1923 // takes ownership of the pointer
1924 void SetDefaultRenderer(wxGridCellRenderer *renderer);
1925 void SetCellRenderer(int row, int col, wxGridCellRenderer *renderer);
1926 wxGridCellRenderer *GetDefaultRenderer() const;
1927 wxGridCellRenderer* GetCellRenderer(int row, int col);
1929 // takes ownership of the pointer
1930 void SetDefaultEditor(wxGridCellEditor *editor);
1931 void SetCellEditor(int row, int col, wxGridCellEditor *editor);
1932 wxGridCellEditor *GetDefaultEditor() const;
1933 wxGridCellEditor* GetCellEditor(int row, int col);
1937 // ------ cell value accessors
1939 wxString GetCellValue( int row, int col );
1940 // TODO: ??? wxString GetCellValue( const wxGridCellCoords& coords )
1942 void SetCellValue( int row, int col, const wxString& s );
1943 // TODO: ??? void SetCellValue( const wxGridCellCoords& coords, const wxString& s )
1945 // returns True if the cell can't be edited
1946 bool IsReadOnly(int row, int col) const;
1948 // make the cell editable/readonly
1949 void SetReadOnly(int row, int col, bool isReadOnly = true);
1951 // ------ selections of blocks of cells
1953 void SelectRow( int row, bool addToSelected = false );
1954 void SelectCol( int col, bool addToSelected = false );
1956 void SelectBlock( int topRow, int leftCol, int bottomRow, int rightCol,
1957 bool addToSelected = false );
1958 // TODO: ??? void SelectBlock( const wxGridCellCoords& topLeft,
1959 // TODO: ??? const wxGridCellCoords& bottomRight )
1963 void ClearSelection();
1964 bool IsInSelection( int row, int col );
1965 // TODO: ??? bool IsInSelection( const wxGridCellCoords& coords )
1967 const wxGridCellCoordsArray GetSelectedCells() const;
1968 const wxGridCellCoordsArray GetSelectionBlockTopLeft() const;
1969 const wxGridCellCoordsArray GetSelectionBlockBottomRight() const;
1970 const wxArrayInt GetSelectedRows() const;
1971 const wxArrayInt GetSelectedCols() const;
1973 void DeselectRow( int row );
1974 void DeselectCol( int col );
1975 void DeselectCell( int row, int col );
1978 // This function returns the rectangle that encloses the block of cells
1979 // limited by TopLeft and BottomRight cell in device coords and clipped
1980 // to the client size of the grid window.
1982 wxRect BlockToDeviceRect( const wxGridCellCoords & topLeft,
1983 const wxGridCellCoords & bottomRight );
1986 // Access or update the selection fore/back colours
1987 wxColour GetSelectionBackground() const;
1988 wxColour GetSelectionForeground() const;
1990 void SetSelectionBackground(const wxColour& c);
1991 void SetSelectionForeground(const wxColour& c);
1994 // Methods for a registry for mapping data types to Renderers/Editors
1995 void RegisterDataType(const wxString& typeName,
1996 wxGridCellRenderer* renderer,
1997 wxGridCellEditor* editor);
1998 wxGridCellEditor* GetDefaultEditorForCell(int row, int col) const;
1999 // TODO: ??? wxGridCellEditor* GetDefaultEditorForCell(const wxGridCellCoords& c) const
2000 wxGridCellRenderer* GetDefaultRendererForCell(int row, int col) const;
2001 wxGridCellEditor* GetDefaultEditorForType(const wxString& typeName) const;
2002 wxGridCellRenderer* GetDefaultRendererForType(const wxString& typeName) const;
2004 // grid may occupy more space than needed for its rows/columns, this
2005 // function allows to set how big this extra space is
2006 void SetMargins(int extraWidth, int extraHeight);
2009 // Accessors for component windows
2010 wxWindow* GetGridWindow();
2011 wxWindow* GetGridRowLabelWindow();
2012 wxWindow* GetGridColLabelWindow();
2013 wxWindow* GetGridCornerLabelWindow();
2015 // Allow adjustment of scroll increment. The default is (15, 15).
2016 void SetScrollLineX(int x);
2017 void SetScrollLineY(int y);
2018 int GetScrollLineX() const;
2019 int GetScrollLineY() const;
2021 int GetScrollX(int x) const;
2022 int GetScrollY(int y) const;
2024 static wxVisualAttributes
2025 GetClassDefaultAttributes(wxWindowVariant variant = wxWINDOW_VARIANT_NORMAL);
2029 //---------------------------------------------------------------------------
2030 //---------------------------------------------------------------------------
2031 // Grid events and stuff
2035 class wxGridEvent : public wxNotifyEvent
2038 wxGridEvent(int id, wxEventType type, wxGrid* obj,
2039 int row=-1, int col=-1, int x=-1, int y=-1, bool sel = true,
2040 bool control=false, bool shift=false, bool alt=false, bool meta=false);
2042 virtual int GetRow();
2043 virtual int GetCol();
2044 wxPoint GetPosition();
2054 class wxGridSizeEvent : public wxNotifyEvent
2057 wxGridSizeEvent(int id, wxEventType type, wxGrid* obj,
2058 int rowOrCol=-1, int x=-1, int y=-1,
2059 bool control=false, bool shift=false, bool alt=false, bool meta=false);
2062 wxPoint GetPosition();
2071 class wxGridRangeSelectEvent : public wxNotifyEvent
2074 wxGridRangeSelectEvent(int id, wxEventType type, wxGrid* obj,
2075 const wxGridCellCoords& topLeft,
2076 const wxGridCellCoords& bottomRight,
2078 bool control=false, bool shift=false,
2079 bool alt=false, bool meta=false);
2081 wxGridCellCoords GetTopLeftCoords();
2082 wxGridCellCoords GetBottomRightCoords();
2095 class wxGridEditorCreatedEvent : public wxCommandEvent {
2097 wxGridEditorCreatedEvent(int id, wxEventType type, wxObject* obj,
2098 int row, int col, wxControl* ctrl);
2102 wxControl* GetControl();
2103 void SetRow(int row);
2104 void SetCol(int col);
2105 void SetControl(wxControl* ctrl);
2110 %constant wxEventType wxEVT_GRID_CELL_LEFT_CLICK;
2111 %constant wxEventType wxEVT_GRID_CELL_RIGHT_CLICK;
2112 %constant wxEventType wxEVT_GRID_CELL_LEFT_DCLICK;
2113 %constant wxEventType wxEVT_GRID_CELL_RIGHT_DCLICK;
2114 %constant wxEventType wxEVT_GRID_LABEL_LEFT_CLICK;
2115 %constant wxEventType wxEVT_GRID_LABEL_RIGHT_CLICK;
2116 %constant wxEventType wxEVT_GRID_LABEL_LEFT_DCLICK;
2117 %constant wxEventType wxEVT_GRID_LABEL_RIGHT_DCLICK;
2118 %constant wxEventType wxEVT_GRID_ROW_SIZE;
2119 %constant wxEventType wxEVT_GRID_COL_SIZE;
2120 %constant wxEventType wxEVT_GRID_RANGE_SELECT;
2121 %constant wxEventType wxEVT_GRID_CELL_CHANGE;
2122 %constant wxEventType wxEVT_GRID_SELECT_CELL;
2123 %constant wxEventType wxEVT_GRID_EDITOR_SHOWN;
2124 %constant wxEventType wxEVT_GRID_EDITOR_HIDDEN;
2125 %constant wxEventType wxEVT_GRID_EDITOR_CREATED;
2126 %constant wxEventType wxEVT_GRID_CELL_BEGIN_DRAG;
2131 EVT_GRID_CELL_LEFT_CLICK = wx.PyEventBinder( wxEVT_GRID_CELL_LEFT_CLICK )
2132 EVT_GRID_CELL_RIGHT_CLICK = wx.PyEventBinder( wxEVT_GRID_CELL_RIGHT_CLICK )
2133 EVT_GRID_CELL_LEFT_DCLICK = wx.PyEventBinder( wxEVT_GRID_CELL_LEFT_DCLICK )
2134 EVT_GRID_CELL_RIGHT_DCLICK = wx.PyEventBinder( wxEVT_GRID_CELL_RIGHT_DCLICK )
2135 EVT_GRID_LABEL_LEFT_CLICK = wx.PyEventBinder( wxEVT_GRID_LABEL_LEFT_CLICK )
2136 EVT_GRID_LABEL_RIGHT_CLICK = wx.PyEventBinder( wxEVT_GRID_LABEL_RIGHT_CLICK )
2137 EVT_GRID_LABEL_LEFT_DCLICK = wx.PyEventBinder( wxEVT_GRID_LABEL_LEFT_DCLICK )
2138 EVT_GRID_LABEL_RIGHT_DCLICK = wx.PyEventBinder( wxEVT_GRID_LABEL_RIGHT_DCLICK )
2139 EVT_GRID_ROW_SIZE = wx.PyEventBinder( wxEVT_GRID_ROW_SIZE )
2140 EVT_GRID_COL_SIZE = wx.PyEventBinder( wxEVT_GRID_COL_SIZE )
2141 EVT_GRID_RANGE_SELECT = wx.PyEventBinder( wxEVT_GRID_RANGE_SELECT )
2142 EVT_GRID_CELL_CHANGE = wx.PyEventBinder( wxEVT_GRID_CELL_CHANGE )
2143 EVT_GRID_SELECT_CELL = wx.PyEventBinder( wxEVT_GRID_SELECT_CELL )
2144 EVT_GRID_EDITOR_SHOWN = wx.PyEventBinder( wxEVT_GRID_EDITOR_SHOWN )
2145 EVT_GRID_EDITOR_HIDDEN = wx.PyEventBinder( wxEVT_GRID_EDITOR_HIDDEN )
2146 EVT_GRID_EDITOR_CREATED = wx.PyEventBinder( wxEVT_GRID_EDITOR_CREATED )
2147 EVT_GRID_CELL_BEGIN_DRAG = wx.PyEventBinder( wxEVT_GRID_CELL_BEGIN_DRAG )
2150 %# The same as above but with the ability to specify an identifier
2151 EVT_GRID_CMD_CELL_LEFT_CLICK = wx.PyEventBinder( wxEVT_GRID_CELL_LEFT_CLICK, 1 )
2152 EVT_GRID_CMD_CELL_RIGHT_CLICK = wx.PyEventBinder( wxEVT_GRID_CELL_RIGHT_CLICK, 1 )
2153 EVT_GRID_CMD_CELL_LEFT_DCLICK = wx.PyEventBinder( wxEVT_GRID_CELL_LEFT_DCLICK, 1 )
2154 EVT_GRID_CMD_CELL_RIGHT_DCLICK = wx.PyEventBinder( wxEVT_GRID_CELL_RIGHT_DCLICK, 1 )
2155 EVT_GRID_CMD_LABEL_LEFT_CLICK = wx.PyEventBinder( wxEVT_GRID_LABEL_LEFT_CLICK, 1 )
2156 EVT_GRID_CMD_LABEL_RIGHT_CLICK = wx.PyEventBinder( wxEVT_GRID_LABEL_RIGHT_CLICK, 1 )
2157 EVT_GRID_CMD_LABEL_LEFT_DCLICK = wx.PyEventBinder( wxEVT_GRID_LABEL_LEFT_DCLICK, 1 )
2158 EVT_GRID_CMD_LABEL_RIGHT_DCLICK = wx.PyEventBinder( wxEVT_GRID_LABEL_RIGHT_DCLICK, 1 )
2159 EVT_GRID_CMD_ROW_SIZE = wx.PyEventBinder( wxEVT_GRID_ROW_SIZE, 1 )
2160 EVT_GRID_CMD_COL_SIZE = wx.PyEventBinder( wxEVT_GRID_COL_SIZE, 1 )
2161 EVT_GRID_CMD_RANGE_SELECT = wx.PyEventBinder( wxEVT_GRID_RANGE_SELECT, 1 )
2162 EVT_GRID_CMD_CELL_CHANGE = wx.PyEventBinder( wxEVT_GRID_CELL_CHANGE, 1 )
2163 EVT_GRID_CMD_SELECT_CELL = wx.PyEventBinder( wxEVT_GRID_SELECT_CELL, 1 )
2164 EVT_GRID_CMD_EDITOR_SHOWN = wx.PyEventBinder( wxEVT_GRID_EDITOR_SHOWN, 1 )
2165 EVT_GRID_CMD_EDITOR_HIDDEN = wx.PyEventBinder( wxEVT_GRID_EDITOR_HIDDEN, 1 )
2166 EVT_GRID_CMD_EDITOR_CREATED = wx.PyEventBinder( wxEVT_GRID_EDITOR_CREATED, 1 )
2167 EVT_GRID_CMD_CELL_BEGIN_DRAG = wx.PyEventBinder( wxEVT_GRID_CELL_BEGIN_DRAG, 1 )
2171 //---------------------------------------------------------------------------
2176 //---------------------------------------------------------------------------
2177 //---------------------------------------------------------------------------