]>
Commit | Line | Data |
---|---|---|
8ec2b484 HH |
1 | ///////////////////////////////////////////////////////////////////////////// |
2 | // Name: helpctrl.h | |
3 | // Purpose: wxHtmlHelpController | |
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_HELPCTRL_H_ | |
13 | #define _WX_HELPCTRL_H_ | |
14 | ||
15 | #include "wx/defs.h" | |
16 | ||
3abf2c72 | 17 | #if wxUSE_WXHTML_HELP |
8ec2b484 | 18 | |
b4414c1f | 19 | #include "wx/helpbase.h" |
69b5cec2 | 20 | #include "wx/html/helpfrm.h" |
8ec2b484 | 21 | |
576507e2 VS |
22 | #define wxID_HTML_HELPFRAME (wxID_HIGHEST + 1) |
23 | ||
3755cfa6 JS |
24 | // This style indicates that the window is |
25 | // embedded in the application and must not be | |
26 | // destroyed by the help controller. | |
27 | #define wxHF_EMBEDDED 0x00008000 | |
28 | ||
29 | // Create a dialog for the help window. | |
30 | #define wxHF_DIALOG 0x00010000 | |
31 | ||
32 | // Create a frame for the help window. | |
33 | #define wxHF_FRAME 0x00020000 | |
34 | ||
35 | // Make the dialog modal when displaying help. | |
36 | #define wxHF_MODAL 0x00040000 | |
37 | ||
38 | class WXDLLIMPEXP_HTML wxHtmlHelpDialog; | |
39 | class WXDLLIMPEXP_HTML wxHtmlHelpWindow; | |
f3e156ef JS |
40 | class WXDLLIMPEXP_HTML wxHtmlHelpFrame; |
41 | class WXDLLIMPEXP_HTML wxHtmlHelpDialog; | |
3755cfa6 | 42 | |
6acba9a7 | 43 | class WXDLLIMPEXP_HTML wxHtmlHelpController : public wxHelpControllerBase // wxEvtHandler |
8ec2b484 | 44 | { |
97494971 VS |
45 | DECLARE_DYNAMIC_CLASS(wxHtmlHelpController) |
46 | ||
47 | public: | |
3db52265 | 48 | wxHtmlHelpController(int style = wxHF_DEFAULT_STYLE, wxWindow* parentWindow = NULL); |
97494971 VS |
49 | virtual ~wxHtmlHelpController(); |
50 | ||
51 | void SetTitleFormat(const wxString& format); | |
52 | void SetTempDir(const wxString& path) { m_helpData.SetTempDir(path); } | |
6953da00 WS |
53 | bool AddBook(const wxString& book_url, bool show_wait_msg = false); |
54 | bool AddBook(const wxFileName& book_file, bool show_wait_msg = false); | |
5152b0e5 JS |
55 | |
56 | bool Display(const wxString& x); | |
57 | bool Display(int id); | |
58 | bool DisplayContents(); | |
59 | bool DisplayIndex(); | |
69b5cec2 VS |
60 | bool KeywordSearch(const wxString& keyword, |
61 | wxHelpSearchMode mode = wxHELP_SEARCH_ALL); | |
5152b0e5 | 62 | |
3755cfa6 JS |
63 | wxHtmlHelpWindow* GetHelpWindow() { return m_helpWindow; } |
64 | void SetHelpWindow(wxHtmlHelpWindow* helpWindow); | |
65 | ||
3ac95ecd JS |
66 | wxHtmlHelpFrame* GetFrame() { return m_helpFrame; } |
67 | wxHtmlHelpDialog* GetDialog() { return m_helpDialog; } | |
f3e156ef | 68 | |
97494971 VS |
69 | void UseConfig(wxConfigBase *config, const wxString& rootpath = wxEmptyString); |
70 | ||
71 | // Assigns config object to the Ctrl. This config is then | |
72 | // used in subsequent calls to Read/WriteCustomization of both help | |
73 | // Ctrl and it's wxHtmlWindow | |
74 | virtual void ReadCustomization(wxConfigBase *cfg, const wxString& path = wxEmptyString); | |
75 | virtual void WriteCustomization(wxConfigBase *cfg, const wxString& path = wxEmptyString); | |
76 | ||
77 | //// Backward compatibility with wxHelpController API | |
78 | ||
79 | virtual bool Initialize(const wxString& file, int WXUNUSED(server) ) { return Initialize(file); } | |
80 | virtual bool Initialize(const wxString& file); | |
81 | virtual void SetViewer(const wxString& WXUNUSED(viewer), long WXUNUSED(flags) = 0) {} | |
2b5f62a0 | 82 | virtual bool LoadFile(const wxString& file = wxT("")); |
97494971 VS |
83 | virtual bool DisplaySection(int sectionNo); |
84 | virtual bool DisplaySection(const wxString& section) { return Display(section); } | |
85 | virtual bool DisplayBlock(long blockNo) { return DisplaySection(blockNo); } | |
86 | virtual bool DisplayTextPopup(const wxString& text, const wxPoint& pos); | |
87 | ||
88 | virtual void SetFrameParameters(const wxString& title, | |
89 | const wxSize& size, | |
90 | const wxPoint& pos = wxDefaultPosition, | |
6953da00 | 91 | bool newFrameEachTime = false); |
97494971 VS |
92 | /// Obtains the latest settings used by the help frame and the help |
93 | /// frame. | |
94 | virtual wxFrame *GetFrameParameters(wxSize *size = NULL, | |
95 | wxPoint *pos = NULL, | |
96 | bool *newFrameEachTime = NULL); | |
97 | ||
219a5f10 VS |
98 | // Get direct access to help data: |
99 | wxHtmlHelpData *GetHelpData() { return &m_helpData; } | |
97494971 VS |
100 | |
101 | virtual bool Quit() ; | |
6fb99eb3 | 102 | virtual void OnQuit() {} |
97494971 VS |
103 | |
104 | void OnCloseFrame(wxCloseEvent& evt); | |
105 | ||
5152b0e5 JS |
106 | // Make the help controller's frame 'modal' if |
107 | // needed | |
3755cfa6 JS |
108 | void MakeModalIfNeeded(); |
109 | ||
110 | // Find the top-most parent window | |
111 | wxWindow* FindTopLevelWindow(); | |
5152b0e5 | 112 | |
97494971 | 113 | protected: |
3755cfa6 | 114 | virtual wxWindow* CreateHelpWindow(); |
97494971 | 115 | virtual wxHtmlHelpFrame* CreateHelpFrame(wxHtmlHelpData *data); |
3755cfa6 | 116 | virtual wxHtmlHelpDialog* CreateHelpDialog(wxHtmlHelpData *data); |
97494971 VS |
117 | virtual void DestroyHelpWindow(); |
118 | ||
119 | wxHtmlHelpData m_helpData; | |
3755cfa6 | 120 | wxHtmlHelpWindow* m_helpWindow; |
97494971 VS |
121 | wxConfigBase * m_Config; |
122 | wxString m_ConfigRoot; | |
123 | wxString m_titleFormat; | |
124 | int m_FrameStyle; | |
f3e156ef JS |
125 | wxHtmlHelpFrame* m_helpFrame; |
126 | wxHtmlHelpDialog* m_helpDialog; | |
22f3361e VZ |
127 | |
128 | DECLARE_NO_COPY_CLASS(wxHtmlHelpController) | |
8ec2b484 HH |
129 | }; |
130 | ||
3755cfa6 JS |
131 | /* |
132 | * wxHtmlModalHelp | |
133 | * A convenience class particularly for use on wxMac, | |
134 | * where you can only show modal dialogs from a modal | |
135 | * dialog. | |
136 | * | |
137 | * Use like this: | |
138 | * | |
139 | * wxHtmlModalHelp help(parent, filename, topic); | |
140 | * | |
141 | * If topic is empty, the help contents is displayed. | |
142 | */ | |
143 | ||
144 | class WXDLLIMPEXP_HTML wxHtmlModalHelp | |
145 | { | |
146 | public: | |
147 | wxHtmlModalHelp(wxWindow* parent, const wxString& helpFile, const wxString& topic = wxEmptyString, | |
148 | int style = wxHF_DEFAULT_STYLE | wxHF_DIALOG | wxHF_MODAL); | |
149 | }; | |
150 | ||
3abf2c72 | 151 | #endif // wxUSE_WXHTML_HELP |
8ec2b484 HH |
152 | |
153 | #endif // _WX_HELPCTRL_H_ |