1 /////////////////////////////////////////////////////////////////////////////
2 // Name: wx/html/helpdlg.h
3 // Purpose: wxHtmlHelpDialog
4 // Notes: Based on htmlhelp.cpp, implementing a monolithic
5 // HTML Help controller class, by Vaclav Slavik
6 // Author: Harm van der Heijden, Vaclav Slavik, Julian Smart
8 // Copyright: (c) Harm van der Heijden, Vaclav Slavik, Julian Smart
9 // Licence: wxWindows licence
10 /////////////////////////////////////////////////////////////////////////////
12 #ifndef _WX_HELPDLG_H_
13 #define _WX_HELPDLG_H_
19 #include "wx/html/helpdata.h"
20 #include "wx/window.h"
21 #include "wx/dialog.h"
23 #include "wx/config.h"
24 #include "wx/splitter.h"
25 #include "wx/notebook.h"
26 #include "wx/listbox.h"
27 #include "wx/choice.h"
28 #include "wx/combobox.h"
29 #include "wx/checkbox.h"
30 #include "wx/stattext.h"
31 #include "wx/html/htmlwin.h"
32 #include "wx/html/helpwnd.h"
33 #include "wx/html/htmprint.h"
35 class WXDLLIMPEXP_FWD_HTML wxHtmlHelpController
;
36 class WXDLLIMPEXP_FWD_HTML wxHtmlHelpWindow
;
38 class WXDLLIMPEXP_HTML wxHtmlHelpDialog
: public wxDialog
40 DECLARE_DYNAMIC_CLASS(wxHtmlHelpDialog
)
43 wxHtmlHelpDialog(wxHtmlHelpData
* data
= NULL
) { Init(data
); }
44 wxHtmlHelpDialog(wxWindow
* parent
, wxWindowID wxWindowID
,
45 const wxString
& title
= wxEmptyString
,
46 int style
= wxHF_DEFAULT_STYLE
, wxHtmlHelpData
* data
= NULL
);
47 virtual ~wxHtmlHelpDialog();
49 bool Create(wxWindow
* parent
, wxWindowID id
, const wxString
& title
= wxEmptyString
,
50 int style
= wxHF_DEFAULT_STYLE
);
52 /// Returns the data associated with this dialog.
53 wxHtmlHelpData
* GetData() { return m_Data
; }
55 /// Returns the controller that created this dialog.
56 wxHtmlHelpController
* GetController() const { return m_helpController
; }
58 /// Sets the controller associated with this dialog.
59 void SetController(wxHtmlHelpController
* controller
) { m_helpController
= controller
; }
61 /// Returns the help window.
62 wxHtmlHelpWindow
* GetHelpWindow() const { return m_HtmlHelpWin
; }
64 // Sets format of title of the frame. Must contain exactly one "%s"
65 // (for title of displayed HTML page)
66 void SetTitleFormat(const wxString
& format
);
68 // Override to add custom buttons to the toolbar
69 virtual void AddToolbarButtons(wxToolBar
* WXUNUSED(toolBar
), int WXUNUSED(style
)) {}
72 void Init(wxHtmlHelpData
* data
= NULL
);
74 void OnCloseWindow(wxCloseEvent
& event
);
77 // Temporary pointer to pass to window
78 wxHtmlHelpData
* m_Data
;
79 wxString m_TitleFormat
; // title of the help frame
80 wxHtmlHelpWindow
*m_HtmlHelpWin
;
81 wxHtmlHelpController
* m_helpController
;
84 wxDECLARE_NO_COPY_CLASS(wxHtmlHelpDialog
);