%{
// Put some wx default wxChar* values into wxStrings.
DECLARE_DEF_STRING(PanelNameStr);
+ DECLARE_DEF_STRING2(DateTimeFormatStr, wxT("%c"));
+ static const wxString wxPyEmptyString(wxT(""));
%}
//---------------------------------------------------------------------------
%}
//---------------------------------------------------------------------------
+// OOR related typemaps and helper functions
-class wxGridCellCoords;
-class wxGridCellAttr;
+%typemap(python, out) wxGridCellRenderer* { $target = wxPyMake_wxGridCellRenderer($source); }
+%typemap(python, out) wxGridCellEditor* { $target = wxPyMake_wxGridCellEditor($source); }
+%typemap(python, out) wxGridCellAttr* { $target = wxPyMake_wxGridCellAttr($source); }
+%typemap(python, out) wxGridCellAttrProvider* { $target = wxPyMake_wxGridCellAttrProvider($source); }
+%typemap(python, out) wxGridTableBase* { $target = wxPyMake_wxGridTableBase($source); }
+
+%{
+
+
+#define wxPyMake_TEMPLATE(TYPE) \
+PyObject* wxPyMake_##TYPE(TYPE* source) { \
+ PyObject* target = NULL; \
+ if (source) { \
+ /* Check if there is already a pointer to a Python object in the \
+ OOR data that we can use. */ \
+ wxPyOORClientData* data = (wxPyOORClientData*)source->GetClientObject(); \
+ if (data) { \
+ target = data->m_obj; \
+ Py_INCREF(target); \
+ } \
+ /* Otherwise make a new wrapper for it the old fashioned way and \
+ give it the OOR treatment */ \
+ if (! target) { \
+ target = wxPyConstructObject(source, #TYPE, FALSE); \
+ if (target) \
+ source->SetClientObject(new wxPyOORClientData(target)); \
+ } \
+ } else { /* source was NULL so return None. */ \
+ Py_INCREF(Py_None); target = Py_None; \
+ } \
+ return target; \
+} \
+
+wxPyMake_TEMPLATE(wxGridCellRenderer)
+wxPyMake_TEMPLATE(wxGridCellEditor)
+wxPyMake_TEMPLATE(wxGridCellAttr)
+wxPyMake_TEMPLATE(wxGridCellAttrProvider)
+wxPyMake_TEMPLATE(wxGridTableBase)
+
+%}
+//---------------------------------------------------------------------------
+class wxGridCellCoords;
+class wxGridCellAttr;
#define wxGRID_VALUE_STRING "string"
#define wxGRID_VALUE_BOOL "bool"
#define wxGRID_VALUE_CHOICE "choice"
#define wxGRID_VALUE_TEXT "string"
#define wxGRID_VALUE_LONG "long"
+#define wxGRID_VALUE_CHOICEINT "choiceint"
+#define wxGRID_VALUE_DATETIME "datetime"
+
%readonly
wxGridCellCoords wxGridNoCellCoords;
class wxGridCellRenderer
{
public:
+ %addmethods {
+ void _setOORInfo(PyObject* _self) {
+ self->SetClientObject(new wxPyOORClientData(_self));
+ }
+ }
+
void SetParameters(const wxString& params);
void IncRef();
void DecRef();
wxPyGridCellRenderer();
void _setCallbackInfo(PyObject* self, PyObject* _class);
%pragma(python) addtomethod = "__init__:self._setCallbackInfo(self, wxPyGridCellRenderer)"
+ %pragma(python) addtomethod = "__init__:self._setOORInfo(self)"
void base_SetParameters(const wxString& params);
};
{
public:
wxGridCellStringRenderer();
+ %pragma(python) addtomethod = "__init__:self._setOORInfo(self)"
};
{
public:
wxGridCellNumberRenderer();
+ %pragma(python) addtomethod = "__init__:self._setOORInfo(self)"
};
{
public:
wxGridCellFloatRenderer(int width = -1, int precision = -1);
+ %pragma(python) addtomethod = "__init__:self._setOORInfo(self)"
int GetWidth() const;
void SetWidth(int width);
{
public:
wxGridCellBoolRenderer();
+ %pragma(python) addtomethod = "__init__:self._setOORInfo(self)"
};
class wxGridCellDateTimeRenderer : public wxGridCellStringRenderer
{
public:
- wxGridCellDateTimeRenderer(wxString outformat = "%c",
- wxString informat = "%c");
+ wxGridCellDateTimeRenderer(wxString outformat = wxPyDateTimeFormatStr,
+ wxString informat = wxPyDateTimeFormatStr);
+ %pragma(python) addtomethod = "__init__:self._setOORInfo(self)"
};
class wxGridCellEnumRenderer : public wxGridCellStringRenderer
{
public:
- wxGridCellEnumRenderer( const wxString& choices = "" );
+ wxGridCellEnumRenderer( const wxString& choices = wxPyEmptyString );
+ %pragma(python) addtomethod = "__init__:self._setOORInfo(self)"
};
{
public:
wxGridCellAutoWrapStringRenderer();
+ %pragma(python) addtomethod = "__init__:self._setOORInfo(self)"
};
class wxGridCellEditor
{
public:
+ %addmethods {
+ void _setOORInfo(PyObject* _self) {
+ self->SetClientObject(new wxPyOORClientData(_self));
+ }
+ }
+
bool IsCreated();
wxControl* GetControl();
void SetControl(wxControl* control);
wxPyGridCellEditor();
void _setCallbackInfo(PyObject* self, PyObject* _class);
%pragma(python) addtomethod = "__init__:self._setCallbackInfo(self, wxPyGridCellEditor)"
+ %pragma(python) addtomethod = "__init__:self._setOORInfo(self)"
void base_SetSize(const wxRect& rect);
void base_Show(bool show, wxGridCellAttr *attr = NULL);
{
public:
wxGridCellTextEditor();
+ %pragma(python) addtomethod = "__init__:self._setOORInfo(self)"
};
{
public:
wxGridCellNumberEditor(int min = -1, int max = -1);
+ %pragma(python) addtomethod = "__init__:self._setOORInfo(self)"
};
{
public:
wxGridCellFloatEditor();
+ %pragma(python) addtomethod = "__init__:self._setOORInfo(self)"
};
{
public:
wxGridCellBoolEditor();
+ %pragma(python) addtomethod = "__init__:self._setOORInfo(self)"
};
class wxGridCellChoiceEditor : public wxGridCellEditor
wxGridCellChoiceEditor(int LCOUNT = 0,
const wxString* choices = NULL,
bool allowOthers = FALSE);
+ %pragma(python) addtomethod = "__init__:self._setOORInfo(self)"
};
class wxGridCellEnumEditor : public wxGridCellChoiceEditor
{
public:
- wxGridCellEnumEditor( const wxString& choices = "" );
+ wxGridCellEnumEditor( const wxString& choices = wxPyEmptyString );
+ %pragma(python) addtomethod = "__init__:self._setOORInfo(self)"
};
{
public:
wxGridCellAutoWrapStringEditor();
+ %pragma(python) addtomethod = "__init__:self._setOORInfo(self)"
};
Merged
};
+ %addmethods {
+ void _setOORInfo(PyObject* _self) {
+ self->SetClientObject(new wxPyOORClientData(_self));
+ }
+ }
+
wxGridCellAttr(wxGridCellAttr *attrDefault = NULL);
+ %pragma(python) addtomethod = "__init__:self._setOORInfo(self)"
wxGridCellAttr *Clone() const;
void MergeWith(wxGridCellAttr *mergefrom);
public:
wxGridCellAttrProvider();
// ???? virtual ~wxGridCellAttrProvider();
+ %pragma(python) addtomethod = "__init__:self._setOORInfo(self)"
+
+ %addmethods {
+ void _setOORInfo(PyObject* _self) {
+ self->SetClientObject(new wxPyOORClientData(_self));
+ }
+ }
wxGridCellAttr *GetAttr(int row, int col,
wxGridCellAttr::wxAttrKind kind) const;
// Grid Table Base class and Python aware version
-
class wxGridTableBase : public wxObject
{
public:
// wxGridTableBase(); This is an ABC
//~wxGridTableBase();
+ %addmethods {
+ void _setOORInfo(PyObject* _self) {
+ self->SetClientObject(new wxPyOORClientData(_self));
+ }
+ }
+
void SetAttrProvider(wxGridCellAttrProvider *attrProvider);
wxGridCellAttrProvider *GetAttrProvider() const;
void SetView( wxGrid *grid );
wxPyGridTableBase();
void _setCallbackInfo(PyObject* self, PyObject* _class);
%pragma(python) addtomethod = "__init__:self._setCallbackInfo(self, wxPyGridTableBase)"
+ %pragma(python) addtomethod = "__init__:self._setOORInfo(self)"
%addmethods { void Destroy() { delete self; } }
{
public:
wxGridStringTable( int numRows=0, int numCols=0 );
+ %pragma(python) addtomethod = "__init__:self._setOORInfo(self)"
};
//---------------------------------------------------------------------------