]> git.saurik.com Git - wxWidgets.git/blame - interface/tipdlg.h
fixed links to global variables; fixed categories; use @see instead of @seealso
[wxWidgets.git] / interface / tipdlg.h
CommitLineData
23324ae1
FM
1/////////////////////////////////////////////////////////////////////////////
2// Name: tipdlg.h
3// Purpose: documentation for wxTipProvider class
4// Author: wxWidgets team
5// RCS-ID: $Id$
6// Licence: wxWindows license
7/////////////////////////////////////////////////////////////////////////////
8
9/**
10 @class wxTipProvider
11 @wxheader{tipdlg.h}
7c913512 12
23324ae1
FM
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).
7c913512 16
23324ae1
FM
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.
7c913512 21
23324ae1
FM
22 @library{wxadv}
23 @category{FIXME}
7c913512 24
23324ae1
FM
25 @seealso
26 @ref overview_tipsoverview "Startup tips overview", ::wxShowTip
27*/
7c913512 28class wxTipProvider
23324ae1
FM
29{
30public:
31 /**
32 Constructor.
33
7c913512 34 @param currentTip
4cc4bfaf 35 The starting tip index.
23324ae1
FM
36 */
37 wxTipProvider(size_t currentTip);
38
39 /**
7c913512 40 Returns the index of the current tip (i.e. the one which would be returned by
23324ae1 41 GetTip).
7c913512 42 The program usually remembers the value returned by this function after calling
23324ae1
FM
43 wxShowTip. Note that it is not the same as the value which
44 was passed to wxShowTip + 1 because the user might have pressed the "Next"
45 button in the tip dialog.
46 */
328f5751 47 size_t GetCurrentTip() const;
23324ae1
FM
48
49 /**
50 Return the text of the current tip and pass to the next one. This function is
51 pure virtual, it should be implemented in the derived classes.
52 */
53 wxString GetTip();
54
55 /**
56 Returns a modified tip. This function will be called immediately after read,
7c913512 57 and before being check whether it is a comment, an empty string or a string
23324ae1 58 to translate. You can optionally override this in your custom user-derived
7c913512
FM
59 class
60 to optionally to modify the tip as soon as it is read. You can return any
61 modification to the string. If you return wxEmptyString, then this tip is
23324ae1
FM
62 skipped, and the next one is read.
63 */
64 virtual wxString PreProcessTip(const wxString& tip);
65};
66
67
68// ============================================================================
69// Global functions/macros
70// ============================================================================
71
72/**
73 This function creates a wxTipProvider which may be
74 used with wxShowTip.
7c913512
FM
75
76 @param filename
4cc4bfaf 77 The name of the file containing the tips, one per line
7c913512 78 @param currentTip
4cc4bfaf
FM
79 The index of the first tip to show - normally this index
80 is remembered between the 2 program runs.
7c913512 81
4cc4bfaf 82 @see @ref overview_tipsoverview "Tips overview"
23324ae1 83*/
4cc4bfaf
FM
84wxTipProvider* wxCreateFileTipProvider(const wxString& filename,
85 size_t currentTip);
23324ae1 86