]> git.saurik.com Git - wxWidgets.git/blame - include/wx/html/helpctrl.h
Added the Carbon precompiled headers
[wxWidgets.git] / include / wx / html / helpctrl.h
CommitLineData
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
HH
8// Copyright: (c) Harm van der Heijden and Vaclav Slavik
9// Licence: wxWindows licence
10/////////////////////////////////////////////////////////////////////////////
11
12#ifndef _WX_HELPCTRL_H_
13#define _WX_HELPCTRL_H_
14
15#include "wx/defs.h"
16
17#ifdef __GNUG__
97494971 18#pragma interface "helpctrl.h"
8ec2b484
HH
19#endif
20
21#if wxUSE_HTML
22
16a12a3d 23#include "wx/html/helpfrm.h"
b4414c1f 24#include "wx/helpbase.h"
8ec2b484 25
b4414c1f 26class WXDLLEXPORT wxHtmlHelpController : public wxHelpControllerBase // wxEvtHandler
8ec2b484 27{
97494971
VS
28 DECLARE_DYNAMIC_CLASS(wxHtmlHelpController)
29
30public:
31 wxHtmlHelpController(int style = wxHF_DEFAULTSTYLE);
32 virtual ~wxHtmlHelpController();
33
34 void SetTitleFormat(const wxString& format);
35 void SetTempDir(const wxString& path) { m_helpData.SetTempDir(path); }
36 bool AddBook(const wxString& book, bool show_wait_msg = FALSE);
37 bool Display(const wxString& x)
38 {
39 CreateHelpWindow(); return m_helpFrame->Display(x);
40 }
41 bool Display(int id)
42 {
43 CreateHelpWindow(); return m_helpFrame->Display(id);
44 }
45 bool DisplayContents()
46 {
47 CreateHelpWindow(); return m_helpFrame->DisplayContents();
48 }
49 bool DisplayIndex()
50 {
51 CreateHelpWindow(); return m_helpFrame->DisplayIndex();
52 }
53 bool KeywordSearch(const wxString& keyword)
54 {
55 CreateHelpWindow(); return m_helpFrame->KeywordSearch(keyword);
56 }
57 wxHtmlHelpFrame* GetFrame() { return m_helpFrame; }
58 void UseConfig(wxConfigBase *config, const wxString& rootpath = wxEmptyString);
59
60 // Assigns config object to the Ctrl. This config is then
61 // used in subsequent calls to Read/WriteCustomization of both help
62 // Ctrl and it's wxHtmlWindow
63 virtual void ReadCustomization(wxConfigBase *cfg, const wxString& path = wxEmptyString);
64 virtual void WriteCustomization(wxConfigBase *cfg, const wxString& path = wxEmptyString);
65
66 //// Backward compatibility with wxHelpController API
67
68 virtual bool Initialize(const wxString& file, int WXUNUSED(server) ) { return Initialize(file); }
69 virtual bool Initialize(const wxString& file);
70 virtual void SetViewer(const wxString& WXUNUSED(viewer), long WXUNUSED(flags) = 0) {}
71 virtual bool LoadFile(const wxString& file = "");
72 virtual bool DisplaySection(int sectionNo);
73 virtual bool DisplaySection(const wxString& section) { return Display(section); }
74 virtual bool DisplayBlock(long blockNo) { return DisplaySection(blockNo); }
75 virtual bool DisplayTextPopup(const wxString& text, const wxPoint& pos);
76
77 virtual void SetFrameParameters(const wxString& title,
78 const wxSize& size,
79 const wxPoint& pos = wxDefaultPosition,
80 bool newFrameEachTime = FALSE);
81 /// Obtains the latest settings used by the help frame and the help
82 /// frame.
83 virtual wxFrame *GetFrameParameters(wxSize *size = NULL,
84 wxPoint *pos = NULL,
85 bool *newFrameEachTime = NULL);
86
87 // Sets the specified book or all books to have the given base path
88 virtual void SetBookBasePath(const wxString& basePath, int which = -1);
89
90 virtual bool Quit() ;
91 virtual void OnQuit() {};
92
93 void OnCloseFrame(wxCloseEvent& evt);
94
95protected:
96 virtual wxHtmlHelpFrame* CreateHelpFrame(wxHtmlHelpData *data);
97
98 virtual void CreateHelpWindow();
99 virtual void DestroyHelpWindow();
100
101 wxHtmlHelpData m_helpData;
102 wxHtmlHelpFrame* m_helpFrame;
103 wxConfigBase * m_Config;
104 wxString m_ConfigRoot;
105 wxString m_titleFormat;
106 int m_FrameStyle;
107 // DECLARE_EVENT_TABLE()
8ec2b484
HH
108};
109
f42b1601 110#endif
8ec2b484
HH
111
112#endif // _WX_HELPCTRL_H_