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