]>
git.saurik.com Git - wxWidgets.git/blob - interface/tipdlg.h
1 /////////////////////////////////////////////////////////////////////////////
3 // Purpose: documentation for wxTipProvider class
4 // Author: wxWidgets team
6 // Licence: wxWindows license
7 /////////////////////////////////////////////////////////////////////////////
13 This is the class used together with wxShowTip function.
14 It must implement wxTipProvider::GetTip function and return the
15 current tip from it (different tip each time it is called).
17 You will never use this class yourself, but you need it to show startup tips
18 with wxShowTip. Also, if you want to get the tips text from elsewhere than a
19 simple text file, you will want to derive a new class from wxTipProvider and
20 use it instead of the one returned by wxCreateFileTipProvider.
26 @ref overview_tipsoverview "Startup tips overview", ::wxShowTip
35 The starting tip index.
37 wxTipProvider(size_t currentTip
);
40 Returns the index of the current tip (i.e. the one which would be returned by
43 The program usually remembers the value returned by this function after calling
44 wxShowTip. Note that it is not the same as the value which
45 was passed to wxShowTip + 1 because the user might have pressed the "Next"
46 button in the tip dialog.
48 size_t GetCurrentTip();
51 Return the text of the current tip and pass to the next one. This function is
52 pure virtual, it should be implemented in the derived classes.
57 Returns a modified tip. This function will be called immediately after read,
58 and before being check whether it is a comment, an empty string or a string
59 to translate. You can optionally override this in your custom user-derived
61 to optionally to modify the tip as soon as it is read. You can return any
62 modification to the string. If you return wxEmptyString, then this tip is
63 skipped, and the next one is read.
65 virtual wxString
PreProcessTip(const wxString
& tip
);
69 // ============================================================================
70 // Global functions/macros
71 // ============================================================================
74 This function creates a wxTipProvider which may be
78 The name of the file containing the tips, one per line
81 The index of the first tip to show - normally this index
82 is remembered between the 2 program runs.
84 @sa @ref overview_tipsoverview "Tips overview"
86 wxTipProvider
* wxCreateFileTipProvider(const wxString
& filename
,