summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGraeme Geldenhuys <graemeg@gmail.com>2013-04-03 14:20:47 +0100
committerDavid Laurence Emerson <dle3ab@angelbase.com>2013-05-28 00:42:51 -0700
commit286845cdc2ecb39e793c436f363e90451233def1 (patch)
treec0dba79e7d5a3d57f096011208e32fdbcf31a78a
parent722c11bcade5ac3c07dc68725025d8805cdc5fe4 (diff)
downloadfpGUI-286845cdc2ecb39e793c436f363e90451233def1.tar.xz
docview: update help file - bookmarks functionality is now fully implemented
-rw-r--r--docview/docs/docview.ipf11
-rw-r--r--docview/src/frm_main.pas2
2 files changed, 6 insertions, 7 deletions
diff --git a/docview/docs/docview.ipf b/docview/docs/docview.ipf
index 567ef1bd..e073990d 100644
--- a/docview/docs/docview.ipf
+++ b/docview/docs/docview.ipf
@@ -568,7 +568,6 @@ you open a new or additional help file.
.* ************************************************************
:h1 res=8 id='bookmarks'.Bookmarks
:hp2.Bookmarks:ehp2.
-:note.:hp8.*** This feature is partially implemented. ***:ehp8.
:p.
&dv. allows you to bookmark particular topics within the current help
file. Simply click the bookmark toolbar button
@@ -579,16 +578,16 @@ To jump to a bookmark, go to the "Bookmarks" menu, and click on
the bookmark you want to open.
:p.
You can view or delete all your bookmarks by clicking on "Edit..." in
-the "Bookmarks" menu. This window can remain open while you read, so
-that you can quickly look through your bookmarks.
+the "Bookmarks" menu.
:p.
Bookmarks are saved in a file with the extension ".bookmarks", in the &dv. config
directory. This is in the user's home profile directory where there is read/write
access. Under Linux it is normally "~/.config/docview/" and under Windows it is
normally "C:\Documents and Settings\<user>\Local Settings\Application Data\docview".
-I will probably add a setting in &dv., so the user can configure a
-preferred storage location for bookmarks (eg: some users prefer it like OS/2's View program did,
-by storing notes in the same directory as the help file).
+.* TODO
+.* I will probably add a setting in &dv., so the user can configure a
+.* preferred storage location for bookmarks (eg: some users prefer it like OS/2's View program did,
+.* by storing notes in the same directory as the help file).
.* ************************************************************
diff --git a/docview/src/frm_main.pas b/docview/src/frm_main.pas
index 42d8fa73..090916a3 100644
--- a/docview/src/frm_main.pas
+++ b/docview/src/frm_main.pas
@@ -3147,7 +3147,7 @@ begin
Name := 'miBookmarks';
SetPosition(292, 144, 132, 20);
AddMenuItem('Add', '', @btnBookmarkClick);
- AddMenuItem('Show...', '', @miOpenBookmarksMenuClicked);
+ AddMenuItem('Edit...', '', @miOpenBookmarksMenuClicked);
end;
miView := TfpgPopupMenu.Create(self);