]> git.saurik.com Git - wxWidgets.git/blame - include/wx/html/helpfrm.h
fixed typo
[wxWidgets.git] / include / wx / html / helpfrm.h
CommitLineData
8ec2b484
HH
1/////////////////////////////////////////////////////////////////////////////
2// Name: helpfrm.h
3// Purpose: wxHtmlHelpFrame
f42b1601 4// Notes: Based on htmlhelp.cpp, implementing a monolithic
8ec2b484
HH
5// HTML Help controller class, by Vaclav Slavik
6// Author: Harm van der Heijden and Vaclav Slavik
69941f05 7// RCS-ID: $Id$
8ec2b484 8// Copyright: (c) Harm van der Heijden and Vaclav Slavik
65571936 9// Licence: wxWindows licence
8ec2b484
HH
10/////////////////////////////////////////////////////////////////////////////
11
12#ifndef _WX_HELPFRM_H_
13#define _WX_HELPFRM_H_
14
12028905 15#if defined(__GNUG__) && !defined(NO_GCC_PRAGMA)
97494971 16#pragma interface "helpfrm.h"
8ec2b484
HH
17#endif
18
19#include "wx/defs.h"
20
3379ed37 21#if wxUSE_WXHTML_HELP
8ec2b484 22
69b5cec2 23#include "wx/helpbase.h"
16a12a3d 24#include "wx/html/helpdata.h"
8ec2b484
HH
25#include "wx/window.h"
26#include "wx/frame.h"
27#include "wx/config.h"
28#include "wx/splitter.h"
29#include "wx/notebook.h"
30#include "wx/listbox.h"
31#include "wx/choice.h"
382e6efe 32#include "wx/combobox.h"
c4971147 33#include "wx/checkbox.h"
240c2873 34#include "wx/stattext.h"
8ec2b484 35#include "wx/html/htmlwin.h"
0646614d 36#include "wx/html/htmprint.h"
2b5f62a0 37
6acba9a7
VS
38class WXDLLIMPEXP_CORE wxButton;
39class WXDLLIMPEXP_CORE wxTextCtrl;
46674ada
VZ
40class WXDLLIMPEXP_CORE wxTreeEvent;
41class WXDLLIMPEXP_CORE wxTreeCtrl;
8ec2b484 42
d5bb85a0 43
8ec2b484 44// style flags for the Help Frame
576507e2
VS
45#define wxHF_TOOLBAR 0x0001
46#define wxHF_CONTENTS 0x0002
47#define wxHF_INDEX 0x0004
48#define wxHF_SEARCH 0x0008
49#define wxHF_BOOKMARKS 0x0010
50#define wxHF_OPEN_FILES 0x0020
51#define wxHF_PRINT 0x0040
52#define wxHF_FLAT_TOOLBAR 0x0080
53#define wxHF_MERGE_BOOKS 0x0100
54#define wxHF_ICONS_BOOK 0x0200
55#define wxHF_ICONS_BOOK_CHAPTER 0x0400
56#define wxHF_ICONS_FOLDER 0x0000 // this is 0 since it is default
57#define wxHF_DEFAULT_STYLE (wxHF_TOOLBAR | wxHF_CONTENTS | \
58 wxHF_INDEX | wxHF_SEARCH | \
59 wxHF_BOOKMARKS | wxHF_PRINT)
60//compatibility:
61#define wxHF_OPENFILES wxHF_OPEN_FILES
62#define wxHF_FLATTOOLBAR wxHF_FLAT_TOOLBAR
63#define wxHF_DEFAULTSTYLE wxHF_DEFAULT_STYLE
8ec2b484 64
d5bb85a0 65
97494971 66struct wxHtmlHelpFrameCfg
b31ba288 67{
68364659 68 int x, y, w, h;
d5bb85a0
VS
69 long sashpos;
70 bool navig_on;
97494971 71};
d5bb85a0
VS
72
73
6acba9a7 74class WXDLLIMPEXP_CORE wxHelpControllerBase;
b31ba288 75
6acba9a7 76class WXDLLIMPEXP_HTML wxHtmlHelpFrame : public wxFrame
8ec2b484 77{
97494971
VS
78 DECLARE_DYNAMIC_CLASS(wxHtmlHelpFrame)
79
80public:
81 wxHtmlHelpFrame(wxHtmlHelpData* data = NULL) { Init(data); }
82 wxHtmlHelpFrame(wxWindow* parent, wxWindowID wxWindowID,
83 const wxString& title = wxEmptyString,
576507e2 84 int style = wxHF_DEFAULT_STYLE, wxHtmlHelpData* data = NULL);
97494971 85 bool Create(wxWindow* parent, wxWindowID id, const wxString& title = wxEmptyString,
576507e2 86 int style = wxHF_DEFAULT_STYLE);
97494971
VS
87 ~wxHtmlHelpFrame();
88
89 wxHtmlHelpData* GetData() { return m_Data; }
90 wxHelpControllerBase* GetController() const { return m_helpController; }
91 void SetController(wxHelpControllerBase* controller) { m_helpController = controller; }
92
93 // Sets format of title of the frame. Must contain exactly one "%s"
94 // (for title of displayed HTML page)
95 void SetTitleFormat(const wxString& format);
96
97 // Displays page x. If not found it will offect the user a choice of
98 // searching books.
99 // Looking for the page runs in these steps:
100 // 1. try to locate file named x (if x is for example "doc/howto.htm")
101 // 2. try to open starting page of book x
102 // 3. try to find x in contents (if x is for example "How To ...")
103 // 4. try to find x in index (if x is for example "How To ...")
104 bool Display(const wxString& x);
105
106 // Alternative version that works with numeric ID.
107 // (uses extension to MS format, <param name="ID" value=id>, see docs)
108 bool Display(const int id);
109
110 // Displays help window and focuses contents.
111 bool DisplayContents();
112
113 // Displays help window and focuses index.
114 bool DisplayIndex();
115
dabbc6a5
DS
116 // Searches for keyword. Returns true and display page if found, return
117 // false otherwise
97494971
VS
118 // Syntax of keyword is Altavista-like:
119 // * words are separated by spaces
120 // (but "\"hello world\"" is only one world "hello world")
121 // * word may be pretended by + or -
122 // (+ : page must contain the word ; - : page can't contain the word)
123 // * if there is no + or - before the word, + is default
69b5cec2
VS
124 bool KeywordSearch(const wxString& keyword,
125 wxHelpSearchMode mode = wxHELP_SEARCH_ALL);
97494971
VS
126
127 void UseConfig(wxConfigBase *config, const wxString& rootpath = wxEmptyString)
128 {
129 m_Config = config;
130 m_ConfigRoot = rootpath;
131 ReadCustomization(config, rootpath);
132 }
133
134 // Saves custom settings into cfg config. it will use the path 'path'
135 // if given, otherwise it will save info into currently selected path.
136 // saved values : things set by SetFonts, SetBorders.
137 void ReadCustomization(wxConfigBase *cfg, const wxString& path = wxEmptyString);
138 void WriteCustomization(wxConfigBase *cfg, const wxString& path = wxEmptyString);
139
140 // call this to let wxHtmlHelpFrame know page changed
141 void NotifyPageChanged();
dabbc6a5 142
97494971
VS
143 // Refreshes Contents and Index tabs
144 void RefreshLists();
dabbc6a5 145
fc799548
JS
146protected:
147 void Init(wxHtmlHelpData* data = NULL);
97494971
VS
148
149 // Adds items to m_Contents tree control
150 void CreateContents();
151
152 // Adds items to m_IndexList
153 void CreateIndex();
154
155 // Add books to search choice panel
156 void CreateSearch();
157
158 // Add custom buttons to toolbar
159 virtual void AddToolbarButtons(wxToolBar *toolBar, int style);
160
161 // Displays options dialog (fonts etc.)
162 virtual void OptionsDialog();
163
164 void OnToolbar(wxCommandEvent& event);
165 void OnContentsSel(wxTreeEvent& event);
166 void OnIndexSel(wxCommandEvent& event);
167 void OnIndexFind(wxCommandEvent& event);
168 void OnIndexAll(wxCommandEvent& event);
169 void OnSearchSel(wxCommandEvent& event);
170 void OnSearch(wxCommandEvent& event);
171 void OnBookmarksSel(wxCommandEvent& event);
172 void OnCloseWindow(wxCloseEvent& event);
d45bc436 173 void OnActivate(wxActivateEvent& event);
97494971 174
d9b21c9f 175#ifdef __WXMAC__
4aa31786 176 void OnClose(wxCommandEvent& event);
d9b21c9f
JS
177 void OnAbout(wxCommandEvent& event);
178#endif
179
97494971
VS
180 // Images:
181 enum {
182 IMG_Book = 0,
183 IMG_Folder,
07e252a5 184 IMG_Page
97494971
VS
185 };
186
187protected:
188 wxHtmlHelpData* m_Data;
189 bool m_DataCreated; // m_Data created by frame, or supplied?
190 wxString m_TitleFormat; // title of the help frame
191 // below are various pointers to GUI components
192 wxHtmlWindow *m_HtmlWin;
193 wxSplitterWindow *m_Splitter;
5229b11d
VS
194 wxPanel *m_NavigPan;
195 wxNotebook *m_NavigNotebook;
97494971
VS
196 wxTreeCtrl *m_ContentsBox;
197 wxTextCtrl *m_IndexText;
198 wxButton *m_IndexButton;
199 wxButton *m_IndexButtonAll;
200 wxListBox *m_IndexList;
201 wxTextCtrl *m_SearchText;
202 wxButton *m_SearchButton;
203 wxListBox *m_SearchList;
204 wxChoice *m_SearchChoice;
205 wxStaticText *m_IndexCountInfo;
206 wxCheckBox *m_SearchCaseSensitive;
207 wxCheckBox *m_SearchWholeWords;
208
209 wxComboBox *m_Bookmarks;
210 wxArrayString m_BookmarksNames, m_BookmarksPages;
211
212 wxHtmlHelpFrameCfg m_Cfg;
213
214 wxConfigBase *m_Config;
215 wxString m_ConfigRoot;
216
217 // pagenumbers of controls in notebook (usually 0,1,2)
218 int m_ContentsPage;
219 int m_IndexPage;
220 int m_SearchPage;
221
222 // lists of available fonts (used in options dialog)
223 wxArrayString *m_NormalFonts, *m_FixedFonts;
224 int m_FontSize; // 0,1,2 = small,medium,big
225 wxString m_NormalFace, m_FixedFace;
226
227 bool m_UpdateContents;
0646614d
VS
228
229#if wxUSE_PRINTING_ARCHITECTURE
97494971 230 wxHtmlEasyPrinting *m_Printer;
0646614d 231#endif
97494971
VS
232 wxHashTable *m_PagesHash;
233 wxHelpControllerBase* m_helpController;
3379ed37 234
576507e2 235 int m_hfStyle;
d5bb85a0 236
97494971 237 DECLARE_EVENT_TABLE()
22f3361e 238 DECLARE_NO_COPY_CLASS(wxHtmlHelpFrame)
8ec2b484
HH
239};
240
3379ed37 241#endif // wxUSE_WXHTML_HELP
8ec2b484
HH
242
243#endif