1Bookmarks(3) User Contributed Perl Documentation Bookmarks(3)
2
3
4
6 QWizard::Plugins::Bookmarks - Adds a bookmark menu to QWizard based
7 applications answers.
8
10 use QWizard;
11 use QWizard::Storage::File;
12 use QWizard::Plugins::Bookmarks;
13
14 my $qw = new QWizard( ... );
15 my $storage = new QWizard::Stoarge::File(file => "/path/to/file");
16 init_bookmarks($qw, $storage, OPTIONS);
17
19 This module simply adds in a menu at the top of all QWizard screens to
20 create and, display and jump to bookmarks. The bookmarks_init function
21 needs access to the already created qwizard object and a QWizard
22 storage container (SQL or File based ones, for example, work well).
23
24 The bookmarks will not be shown if the qw_nobookmarks preference is set
25 to a true value.
26
28 The options parameter of the init_bookmarks() function allows you to
29 set name => value value pairs of options. The following are currently
30 supported:
31
32 title => "Bookmarks"
33 The title parameter lets you override the default menu name from
34 "Bookmarks" to a title of your choice.
35
36 saveopt => "Remember This Page"
37 The option name that used used as the "save this spot" kind of
38 value.
39
41 Wes Hardaker, hardaker@users.sourceforge.net
42
44 perl(1)
45
46 Net-Policy: http://net-policy.sourceforge.net/
47
48
49
50perl v5.36.0 2023-01-20 Bookmarks(3)