More grid demos and some bugs fixed

Made (virtual method) callbacks into Python code more safe, and
removed the confusion if there was a matching method in the base
class.


git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/branches/WX_2_2_BRANCH@7081 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Robin Dunn
2000-04-08 08:11:20 +00:00
parent 487d976143
commit 87b389965c
28 changed files with 947 additions and 411 deletions

View File

@@ -172,7 +172,7 @@ public:
wxPyCallbackHelper(const wxPyCallbackHelper& other);
void setSelf(PyObject* self, int incref=TRUE);
void setSelf(PyObject* self, PyObject* _class, int incref=TRUE);
bool findCallback(const wxString& name) const;
int callCallback(PyObject* argTuple) const;
@@ -180,6 +180,7 @@ public:
private:
PyObject* m_self;
PyObject* m_class;
PyObject* m_lastFound;
int m_incRef;
};
@@ -232,10 +233,10 @@ public:
// return type, if any, as well as any parameter types.
//---------------------------------------------------------------------------
#define PYPRIVATE \
void _setSelf(PyObject* self, int incref=1) { \
m_myInst.setSelf(self, incref); \
} \
#define PYPRIVATE \
void _setSelf(PyObject* self, PyObject* _class, int incref=1) { \
m_myInst.setSelf(self, _class, incref); \
} \
private: wxPyCallbackHelper m_myInst;
//---------------------------------------------------------------------------