1 ///////////////////////////////////////////////////////////////////////////////
3 // Purpose: declaration of wxTipDialog
4 // Author: Vadim Zeitlin
7 // Copyright: (c) Vadim Zeitlin
8 // Licence: wxWindows licence
9 ///////////////////////////////////////////////////////////////////////////////
14 // ----------------------------------------------------------------------------
15 // headers which we must include here
16 // ----------------------------------------------------------------------------
20 #if wxUSE_STARTUP_TIPS
22 #include "wx/textfile.h"
24 // ----------------------------------------------------------------------------
25 // wxTipProvider - a class which is used by wxTipDialog to get the text of the
27 // ----------------------------------------------------------------------------
29 // the abstract base class: it provides the tips, i.e. implements the GetTip()
30 // function which returns the new tip each time it's called. To support this,
31 // wxTipProvider evidently needs some internal state which is the tip "index"
32 // and which should be saved/restored by the program to not always show one and
33 // the same tip (of course, you may use random starting position as well...)
34 class WXDLLIMPEXP_ADV wxTipProvider
37 wxTipProvider(size_t currentTip
) { m_currentTip
= currentTip
; }
39 // get the current tip and update the internal state to return the next tip
40 // when called for the next time
41 virtual wxString
GetTip() = 0;
43 // get the current tip "index" (or whatever allows the tip provider to know
44 // from where to start the next time)
45 size_t GetCurrentTip() const { return m_currentTip
; }
47 // Allows any user-derived class to optionally override this function to
48 // modify the tip as soon as it is read. If return wxEmptyString, then
49 // the tip is skipped, and the next one is read.
50 virtual wxString
PreprocessTip(const wxString
& tip
) { return tip
; }
52 // virtual dtor for the base class
53 virtual ~wxTipProvider() { }
59 // a function which returns an implementation of wxTipProvider using the
60 // specified text file as the source of tips (each line is a tip).
62 // NB: the caller is responsible for deleting the pointer!
64 WXDLLIMPEXP_ADV wxTipProvider
*wxCreateFileTipProvider(const wxString
& filename
,
66 #endif // wxUSE_TEXTFILE
68 // ----------------------------------------------------------------------------
70 // ----------------------------------------------------------------------------
72 // A dialog which shows a "tip" - a short and helpful messages describing to
73 // the user some program characteristic. Many programs show the tips at
74 // startup, so the dialog has "Show tips on startup" checkbox which allows to
75 // the user to disable this (however, it's the program which should show, or
76 // not, the dialog on startup depending on its value, not this class).
78 // The function returns true if this checkbox is checked, false otherwise.
79 WXDLLIMPEXP_ADV
bool wxShowTip(wxWindow
*parent
,
80 wxTipProvider
*tipProvider
,
81 bool showAtStartup
= true);
83 #endif // wxUSE_STARTUP_TIPS
85 #endif // _WX_TIPDLG_H_