]> git.saurik.com Git - wxWidgets.git/blobdiff - wxPython/src/_tipdlg.i
reSWIGged
[wxWidgets.git] / wxPython / src / _tipdlg.i
index a8b496f4d963550a6f2e3efd5d1a815c05e133b1..c7582c1e00c10ae42e33c87653c76875828098c2 100644 (file)
@@ -43,6 +43,9 @@ public:
     // modify the tip as soon as it is read. If return wxEmptyString, then 
     // the tip is skipped, and the next one is read.
     virtual wxString PreprocessTip(const wxString& tip);
+
+    %property(CurrentTip, GetCurrentTip, doc="See `GetCurrentTip`");
+    %property(Tip, GetTip, doc="See `GetTip`");
 };
 
 
@@ -66,10 +69,10 @@ IMP_PYCALLBACK_STRING_STRING(wxPyTipProvider, wxTipProvider, PreprocessTip);
 // Now let SWIG know about it
 class wxPyTipProvider : public wxTipProvider {
 public:
+    %pythonAppend wxPyTipProvider setCallbackInfo(PyTipProvider)
     wxPyTipProvider(size_t currentTip);
 
     void _setCallbackInfo(PyObject* self, PyObject* _class);
-    %pragma(python) addtomethod = "__init__:self._setCallbackInfo(self, wxPyTipProvider)"
 };
 
 
@@ -81,11 +84,13 @@ public:
 // not, the dialog on startup depending on its value, not this class).
 //
 // The function returns True if this checkbox is checked, False otherwise.
-bool wxShowTip(wxWindow *parent, wxTipProvider *tipProvider, bool showAtStartup = True);
+MustHaveApp(wxShowTip);
+bool wxShowTip(wxWindow *parent, wxTipProvider *tipProvider, bool showAtStartup = true);
 
 // a function which returns an implementation of wxTipProvider using the
 // specified text file as the source of tips (each line is a tip).
 %newobject wxCreateFileTipProvider;
+MustHaveApp(wxCreateFileTipProvider);
 wxTipProvider* wxCreateFileTipProvider(const wxString& filename, size_t currentTip);