]>
Commit | Line | Data |
---|---|---|
c89165a8 | 1 | /////////////////////////////////////////////////////////////////////////////// |
80fdcdb9 | 2 | // Name: wx/tipdlg.h |
c89165a8 VZ |
3 | // Purpose: declaration of wxTipDialog |
4 | // Author: Vadim Zeitlin | |
5 | // Modified by: | |
6 | // Created: 28.06.99 | |
7 | // RCS-ID: $Id$ | |
8 | // Copyright: (c) Vadim Zeitlin | |
65571936 | 9 | // Licence: wxWindows licence |
c89165a8 VZ |
10 | /////////////////////////////////////////////////////////////////////////////// |
11 | ||
12 | #ifndef _WX_TIPDLG_H_ | |
13 | #define _WX_TIPDLG_H_ | |
14 | ||
c89165a8 VZ |
15 | // ---------------------------------------------------------------------------- |
16 | // headers which we must include here | |
17 | // ---------------------------------------------------------------------------- | |
18 | ||
19 | #include "wx/defs.h" | |
20 | ||
21 | #if wxUSE_STARTUP_TIPS | |
22 | ||
23 | #include "wx/textfile.h" | |
24 | ||
25 | // ---------------------------------------------------------------------------- | |
26 | // wxTipProvider - a class which is used by wxTipDialog to get the text of the | |
27 | // tips | |
28 | // ---------------------------------------------------------------------------- | |
29 | ||
30 | // the abstract base class: it provides the tips, i.e. implements the GetTip() | |
31 | // function which returns the new tip each time it's called. To support this, | |
32 | // wxTipProvider evidently needs some internal state which is the tip "index" | |
33 | // and which should be saved/restored by the program to not always show one and | |
34 | // the same tip (of course, you may use random starting position as well...) | |
12f190b0 | 35 | class WXDLLIMPEXP_ADV wxTipProvider |
c89165a8 VZ |
36 | { |
37 | public: | |
38 | wxTipProvider(size_t currentTip) { m_currentTip = currentTip; } | |
39 | ||
40 | // get the current tip and update the internal state to return the next tip | |
41 | // when called for the next time | |
cb719f2e | 42 | virtual wxString GetTip() = 0; |
c89165a8 VZ |
43 | |
44 | // get the current tip "index" (or whatever allows the tip provider to know | |
45 | // from where to start the next time) | |
46 | size_t GetCurrentTip() const { return m_currentTip; } | |
47 | ||
cb719f2e WS |
48 | // Allows any user-derived class to optionally override this function to |
49 | // modify the tip as soon as it is read. If return wxEmptyString, then | |
70373b5a JS |
50 | // the tip is skipped, and the next one is read. |
51 | virtual wxString PreprocessTip(const wxString& tip) { return tip; } | |
52 | ||
c89165a8 VZ |
53 | // virtual dtor for the base class |
54 | virtual ~wxTipProvider() { } | |
55 | ||
56 | protected: | |
57 | size_t m_currentTip; | |
58 | }; | |
59 | ||
60 | // a function which returns an implementation of wxTipProvider using the | |
61 | // specified text file as the source of tips (each line is a tip). | |
62 | // | |
63 | // NB: the caller is responsible for deleting the pointer! | |
6502dc68 | 64 | #if wxUSE_TEXTFILE |
12f190b0 VS |
65 | WXDLLIMPEXP_ADV wxTipProvider *wxCreateFileTipProvider(const wxString& filename, |
66 | size_t currentTip); | |
6502dc68 | 67 | #endif // wxUSE_TEXTFILE |
c89165a8 VZ |
68 | |
69 | // ---------------------------------------------------------------------------- | |
70 | // wxTipDialog | |
71 | // ---------------------------------------------------------------------------- | |
72 | ||
73 | // A dialog which shows a "tip" - a short and helpful messages describing to | |
74 | // the user some program characteristic. Many programs show the tips at | |
75 | // startup, so the dialog has "Show tips on startup" checkbox which allows to | |
76 | // the user to disable this (however, it's the program which should show, or | |
77 | // not, the dialog on startup depending on its value, not this class). | |
78 | // | |
cb719f2e | 79 | // The function returns true if this checkbox is checked, false otherwise. |
12f190b0 VS |
80 | WXDLLIMPEXP_ADV bool wxShowTip(wxWindow *parent, |
81 | wxTipProvider *tipProvider, | |
cb719f2e | 82 | bool showAtStartup = true); |
c89165a8 VZ |
83 | |
84 | #endif // wxUSE_STARTUP_TIPS | |
85 | ||
86 | #endif // _WX_TIPDLG_H_ |