]> git.saurik.com Git - wxWidgets.git/blob - wxPython/src/_tipdlg.i
don't use implicit wxString->char*/wchar_t* conversion, it will not be available...
[wxWidgets.git] / wxPython / src / _tipdlg.i
1 /////////////////////////////////////////////////////////////////////////////
2 // Name: _tipdlg.i
3 // Purpose: SWIG defs for wxTip classes and such
4 //
5 // Author: Robin Dunn
6 //
7 // Created: 18-June-1999
8 // RCS-ID: $Id$
9 // Copyright: (c) 2003 by Total Control Software
10 // Licence: wxWindows license
11 /////////////////////////////////////////////////////////////////////////////
12
13 // Not a %module
14
15
16 //---------------------------------------------------------------------------
17 %newgroup
18
19 %{
20 #include <wx/tipdlg.h>
21 %}
22
23 //---------------------------------------------------------------------------
24
25
26 // wxTipProvider - a class which is used by wxTipDialog to get the text of the
27 // tips
28 class wxTipProvider
29 {
30 public:
31 // wxTipProvider(size_t currentTip); **** Abstract base class
32 ~wxTipProvider();
33
34 // get the current tip and update the internal state to return the next tip
35 // when called for the next time
36 virtual wxString GetTip();
37
38 // get the current tip "index" (or whatever allows the tip provider to know
39 // from where to start the next time)
40 size_t GetCurrentTip();
41
42 // Allows any user-derived class to optionally override this function to
43 // modify the tip as soon as it is read. If return wxEmptyString, then
44 // the tip is skipped, and the next one is read.
45 virtual wxString PreprocessTip(const wxString& tip);
46
47 %property(CurrentTip, GetCurrentTip, doc="See `GetCurrentTip`");
48 %property(Tip, GetTip, doc="See `GetTip`");
49 };
50
51
52 // The C++ version of wxPyTipProvider
53 %{
54 class wxPyTipProvider : public wxTipProvider {
55 public:
56 wxPyTipProvider(size_t currentTip)
57 : wxTipProvider(currentTip) {}
58
59 DEC_PYCALLBACK_STRING__pure(GetTip);
60 DEC_PYCALLBACK_STRING_STRING(PreprocessTip);
61 PYPRIVATE;
62 };
63
64 IMP_PYCALLBACK_STRING__pure( wxPyTipProvider, wxTipProvider, GetTip);
65 IMP_PYCALLBACK_STRING_STRING(wxPyTipProvider, wxTipProvider, PreprocessTip);
66 %}
67
68
69 // Now let SWIG know about it
70 class wxPyTipProvider : public wxTipProvider {
71 public:
72 %pythonAppend wxPyTipProvider setCallbackInfo(PyTipProvider)
73 wxPyTipProvider(size_t currentTip);
74
75 void _setCallbackInfo(PyObject* self, PyObject* _class);
76 };
77
78
79
80 // A dialog which shows a "tip" - a short and helpful messages describing to
81 // the user some program characteristic. Many programs show the tips at
82 // startup, so the dialog has "Show tips on startup" checkbox which allows to
83 // the user to disable this (however, it's the program which should show, or
84 // not, the dialog on startup depending on its value, not this class).
85 //
86 // The function returns True if this checkbox is checked, False otherwise.
87 MustHaveApp(wxShowTip);
88 bool wxShowTip(wxWindow *parent, wxTipProvider *tipProvider, bool showAtStartup = true);
89
90 // a function which returns an implementation of wxTipProvider using the
91 // specified text file as the source of tips (each line is a tip).
92 %newobject wxCreateFileTipProvider;
93 MustHaveApp(wxCreateFileTipProvider);
94 wxTipProvider* wxCreateFileTipProvider(const wxString& filename, size_t currentTip);
95
96
97
98
99 //---------------------------------------------------------------------------
100 //---------------------------------------------------------------------------