1 /*-*- c++ -*-********************************************************
2 * helphtml.h - base class for html based help controllers *
4 * (C) 1999 by Karsten Ballüder (Ballueder@usa.net) *
7 *******************************************************************/
9 #ifndef __WX_HELPHTML_H_
10 #define __WX_HELPHTML_H_
15 # pragma interface "helphtml.h"
18 #include "wx/helpbase.h"
23 #define WXEXTHELP_SEPARATOR _T('\\')
24 #elif defined(__WXMAC__)
25 #define WXEXTHELP_SEPARATOR _T(':')
27 #define WXEXTHELP_SEPARATOR _T('/')
30 class WXDLLEXPORT wxExtHelpMapList
;
34 This class is the base class for all html help implementations.
35 It requires the name of a directory containing the documentation
36 and a file mapping numerical Section numbers to relative URLS.
38 The map file contains two or three fields per line:
39 numeric_id relative_URL [; comment/documentation]
41 The numeric_id is the id used to look up the entry in
42 DisplaySection()/DisplayBlock(). The relative_URL is a filename of
43 an html file, relative to the help directory. The optional
44 comment/documentation field (after a ';') is used for keyword
45 searches, so some meaningful text here does not hurt.
46 If the documentation itself contains a ';', only the part before
47 that will be displayed in the listbox, but all of it used for search.
49 Lines starting with ';' will be ignored.
52 class WXDLLEXPORT wxHTMLHelpControllerBase
: public wxHelpControllerBase
54 DECLARE_ABSTRACT_CLASS(wxHTMLHelpControllerBase
)
56 wxHTMLHelpControllerBase(void);
57 virtual ~wxHTMLHelpControllerBase(void);
59 /** This must be called to tell the controller where to find the
61 If a locale is set, look in file/localename, i.e.
62 If passed "/usr/local/myapp/help" and the current wxLocale is
63 set to be "de", then look in "/usr/local/myapp/help/de/"
64 first and fall back to "/usr/local/myapp/help" if that
67 @param file - NOT a filename, but a directory name.
68 @return true on success
70 virtual bool Initialize(const wxString
& dir
, int WXUNUSED(server
))
71 { return Initialize(dir
); }
73 /** This must be called to tell the controller where to find the
75 If a locale is set, look in file/localename, i.e.
76 If passed "/usr/local/myapp/help" and the current wxLocale is
77 set to be "de", then look in "/usr/local/myapp/help/de/"
78 first and fall back to "/usr/local/myapp/help" if that
80 @param dir - directory name where to fine the help files
81 @return true on success
83 virtual bool Initialize(const wxString
& dir
);
85 /** If file is "", reloads file given in Initialize.
86 @file Name of help directory.
87 @return true on success
89 virtual bool LoadFile(const wxString
& file
= "");
91 /** Display list of all help entries.
92 @return true on success
94 virtual bool DisplayContents(void);
95 /** Display help for id sectionNo.
96 @return true on success
98 virtual bool DisplaySection(int sectionNo
);
99 /** Display help for id sectionNo -- identical with DisplaySection().
100 @return true on success
102 virtual bool DisplaySection(const wxString
& section
);
103 /** Display help for URL (using DisplayHelp) or keyword (using KeywordSearch)
104 @return true on success
106 virtual bool DisplayBlock(long blockNo
);
107 /** Search comment/documentation fields in map file and present a
109 @key k string to search for, empty string will list all entries
110 @return true on success
112 virtual bool KeywordSearch(const wxString
& k
);
115 virtual bool Quit(void);
117 virtual void OnQuit(void);
119 /// Call the browser using a relative URL.
120 virtual bool DisplayHelp(const wxString
&) = 0;
122 /// Allows one to override the default settings for the help frame.
123 virtual void SetFrameParameters(const wxString
& WXUNUSED(title
),
124 const wxSize
& WXUNUSED(size
),
125 const wxPoint
& WXUNUSED(pos
) = wxDefaultPosition
,
126 bool WXUNUSED(newFrameEachTime
) = FALSE
)
128 // does nothing by default
130 /// Obtains the latest settings used by the help frame and the help
132 virtual wxFrame
*GetFrameParameters(wxSize
*WXUNUSED(size
) = NULL
,
133 wxPoint
*WXUNUSED(pos
) = NULL
,
134 bool *WXUNUSED(newFrameEachTime
) = NULL
)
136 return (wxFrame
*) NULL
;// does nothing by default
140 /// Filename of currently active map file.
142 /// How many entries do we have in the map file?
144 /// A list containing all id,url,documentation triples.
146 /// Deletes the list and all objects.
147 void DeleteList(void);
152 #endif // __WX_HELPHTML_H_