1 ///////////////////////////////////////////////////////////////////////////////
3 // Purpose: declaration of wxTipDialog
4 // Author: Vadim Zeitlin
8 // Copyright: (c) Vadim Zeitlin
9 // Licence: wxWindows licence
10 ///////////////////////////////////////////////////////////////////////////////
15 // ----------------------------------------------------------------------------
16 // headers which we must include here
17 // ----------------------------------------------------------------------------
21 #if wxUSE_STARTUP_TIPS
23 #include "wx/textfile.h"
25 // ----------------------------------------------------------------------------
26 // wxTipProvider - a class which is used by wxTipDialog to get the text of the
28 // ----------------------------------------------------------------------------
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...)
35 class WXDLLIMPEXP_ADV wxTipProvider
38 wxTipProvider(size_t currentTip
) { m_currentTip
= currentTip
; }
40 // get the current tip and update the internal state to return the next tip
41 // when called for the next time
42 virtual wxString
GetTip() = 0;
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
; }
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
50 // the tip is skipped, and the next one is read.
51 virtual wxString
PreprocessTip(const wxString
& tip
) { return tip
; }
53 // virtual dtor for the base class
54 virtual ~wxTipProvider() { }
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).
63 // NB: the caller is responsible for deleting the pointer!
65 WXDLLIMPEXP_ADV wxTipProvider
*wxCreateFileTipProvider(const wxString
& filename
,
67 #endif // wxUSE_TEXTFILE
69 // ----------------------------------------------------------------------------
71 // ----------------------------------------------------------------------------
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).
79 // The function returns true if this checkbox is checked, false otherwise.
80 WXDLLIMPEXP_ADV
bool wxShowTip(wxWindow
*parent
,
81 wxTipProvider
*tipProvider
,
82 bool showAtStartup
= true);
84 #endif // wxUSE_STARTUP_TIPS
86 #endif // _WX_TIPDLG_H_