1 /////////////////////////////////////////////////////////////////////////////
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: wxWidgets licence
10 /////////////////////////////////////////////////////////////////////////////
12 #ifndef _WX_HELPDLG_H_
13 #define _WX_HELPDLG_H_
19 #include "wx/html/helpdata.h"
20 #include "wx/window.h"
22 #include "wx/config.h"
23 #include "wx/splitter.h"
24 #include "wx/notebook.h"
25 #include "wx/listbox.h"
26 #include "wx/choice.h"
27 #include "wx/combobox.h"
28 #include "wx/checkbox.h"
29 #include "wx/stattext.h"
30 #include "wx/html/htmlwin.h"
31 #include "wx/html/helpwnd.h"
32 #include "wx/html/htmprint.h"
34 class WXDLLIMPEXP_HTML wxHtmlHelpController
;
35 class WXDLLIMPEXP_HTML wxHtmlHelpWindow
;
37 class WXDLLIMPEXP_HTML wxHtmlHelpDialog
: public wxDialog
39 DECLARE_DYNAMIC_CLASS(wxHtmlHelpDialog
)
42 wxHtmlHelpDialog(wxHtmlHelpData
* data
= NULL
) { Init(data
); }
43 wxHtmlHelpDialog(wxWindow
* parent
, wxWindowID wxWindowID
,
44 const wxString
& title
= wxEmptyString
,
45 int style
= wxHF_DEFAULT_STYLE
, wxHtmlHelpData
* data
= NULL
);
48 bool Create(wxWindow
* parent
, wxWindowID id
, const wxString
& title
= wxEmptyString
,
49 int style
= wxHF_DEFAULT_STYLE
);
51 /// Returns the data associated with this dialog.
52 wxHtmlHelpData
* GetData() { return m_Data
; }
54 /// Returns the controller that created this dialog.
55 wxHtmlHelpController
* GetController() const { return m_helpController
; }
57 /// Sets the controller associated with this dialog.
58 void SetController(wxHtmlHelpController
* controller
) { m_helpController
= controller
; }
60 /// Returns the help window.
61 wxHtmlHelpWindow
* GetHelpWindow() const { return m_HtmlHelpWin
; }
63 // Sets format of title of the frame. Must contain exactly one "%s"
64 // (for title of displayed HTML page)
65 void SetTitleFormat(const wxString
& format
);
67 // Override to add custom buttons to the toolbar
68 virtual void AddToolbarButtons(wxToolBar
* WXUNUSED(toolBar
), int WXUNUSED(style
)) {};
71 void Init(wxHtmlHelpData
* data
= NULL
);
73 void OnCloseWindow(wxCloseEvent
& event
);
76 // Temporary pointer to pass to window
77 wxHtmlHelpData
* m_Data
;
78 wxString m_TitleFormat
; // title of the help frame
79 wxHtmlHelpWindow
*m_HtmlHelpWin
;
80 wxHtmlHelpController
* m_helpController
;
83 DECLARE_NO_COPY_CLASS(wxHtmlHelpDialog
)