]> git.saurik.com Git - wxWidgets.git/blame - docs/doxygen/overviews/tips.h
Fix problem with COMDLG_FILTERSPEC declaration with MinGW-w64 4.8.
[wxWidgets.git] / docs / doxygen / overviews / tips.h
CommitLineData
15b6757b 1/////////////////////////////////////////////////////////////////////////////
2cd3cc94 2// Name: tips.h
15b6757b
FM
3// Purpose: topic overview
4// Author: wxWidgets team
526954c5 5// Licence: wxWindows licence
15b6757b
FM
6/////////////////////////////////////////////////////////////////////////////
7
880efa2a 8/**
36c9828f 9
2cd3cc94
BP
10@page overview_tips wxTipProvider Overview
11
831e1028
BP
12@tableofcontents
13
2cd3cc94
BP
14Many "modern" Windows programs have a feature (some would say annoyance) of
15presenting the user tips at program startup. While this is probably useless to
16the advanced users of the program, the experience shows that the tips may be
17quite helpful for the novices and so more and more programs now do this. For a
18wxWidgets programmer, implementing this feature is extremely easy. To show a
19tip, it is enough to just call wxShowTip function like this:
20
21@code
22if ( ...show tips at startup?... )
23{
24 wxTipProvider *tipProvider = wxCreateFileTipProvider("tips.txt", 0);
25 wxShowTip(windowParent, tipProvider);
26 delete tipProvider;
27}
28@endcode
29
30Of course, you need to get the text of the tips from somewhere - in the example
31above, the text is supposed to be in the file tips.txt from where it is read by
32the <em>tip provider</em>. The tip provider is just an object of a class
33deriving from wxTipProvider. It has to implement one pure virtual function of
34the base class: GetTip. In the case of the tip provider created by
35wxCreateFileTipProvider, the tips are just the lines of the text file.
36
37If you want to implement your own tip provider (for example, if you wish to
38hardcode the tips inside your program), you just have to derive another class
39from wxTipProvider and pass a pointer to the object of this class to
40wxShowTip - then you don't need wxCreateFileTipProvider at all.
41
42You will probably want to save somewhere the index of the tip last shown - so
43that the program doesn't always show the same tip on startup. As you also need
44to remember whether to show tips or not (you shouldn't do it if the user
45unchecked "Show tips on startup" checkbox in the dialog), you will probably
46want to store both the index of the last shown tip (as returned by
47wxTipProvider::GetCurrentTip and the flag telling whether to show the tips at
48startup at all.
49
50In a tips.txt file, lines that begin with a # character are considered comments
51and are automatically skipped. Blank lines and lines only having spaces are
52also skipped.
53
54You can easily add runtime-translation capacity by placing each line of the
55tips.txt file inside the usual translation macro. For example, your tips.txt
56file would look like this:
57
58@code
59_("This is my first tip")
60_("This is my second tip")
61@endcode
62
63Now add your tips.txt file into the list of files that gettext searches for
64translatable strings. The tips will thus get included into your generated .po
65file catalog and be translated at runtime along with the rest of your
66application's translatable strings.
67
68@note Each line in the tips.txt file needs to strictly begin with exactly the 3
69characters of underscore-parenthesis-doublequote, and end with
70doublequote-parenthesis, as shown above. Also, remember to escape any
71doublequote characters within the tip string with a backslash-doublequote.
72
73See the dialogs program in your samples folder for a working example inside a
74program.
75
76*/