Use a swig macro for generating the call to the _setCallbackInfo

function so it's easy to fiddle with, if needed.


git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@43425 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Robin Dunn
2006-11-14 22:03:54 +00:00
parent 13b955a755
commit c25f90f60c
76 changed files with 348 additions and 331 deletions

View File

@@ -483,7 +483,7 @@ MustHaveApp(wxPyPrintout);
%rename(Printout) wxPyPrintout;
class wxPyPrintout : public wxObject {
public:
%pythonAppend wxPyPrintout "self._setCallbackInfo(self, Printout)"
%pythonAppend wxPyPrintout setCallbackInfo(Printout)
%typemap(out) wxPyPrintout*; // turn off this typemap
wxPyPrintout(const wxString& title = wxPyPrintoutTitleStr);
@@ -824,7 +824,7 @@ class wxPyPrintPreview : public wxPrintPreview
public:
%disownarg(wxPyPrintout*);
%pythonAppend wxPyPrintPreview "self._setCallbackInfo(self, PyPrintPreview)"
%pythonAppend wxPyPrintPreview setCallbackInfo(PyPrintPreview)
%nokwargs wxPyPrintPreview;
wxPyPrintPreview(wxPyPrintout* printout,
wxPyPrintout* printoutForPrinting,
@@ -895,7 +895,7 @@ class wxPyPreviewFrame : public wxPreviewFrame
{
public:
%disownarg(wxPrintPreview*);
%pythonAppend wxPyPreviewFrame "self._setCallbackInfo(self, PyPreviewFrame); self._setOORInfo(self)"
%pythonAppend wxPyPreviewFrame "self._setOORInfo(self);" setCallbackInfo(PyPreviewFrame)
wxPyPreviewFrame(wxPrintPreview* preview, wxFrame* parent,
const wxString& title,
@@ -955,7 +955,7 @@ MustHaveApp(wxPyPreviewControlBar);
class wxPyPreviewControlBar : public wxPreviewControlBar
{
public:
%pythonAppend wxPyPreviewControlBar "self._setCallbackInfo(self, PyPreviewControlBar); self._setOORInfo(self)"
%pythonAppend wxPyPreviewControlBar "self._setOORInfo(self);" setCallbackInfo(PyPreviewControlBar)
wxPyPreviewControlBar(wxPrintPreview *preview,
long buttons,