]> git.saurik.com Git - wxWidgets.git/blame - src/html/helpfrm.cpp
Fixes for parsing invalid HTML without tag ends.
[wxWidgets.git] / src / html / helpfrm.cpp
CommitLineData
8ec2b484 1/////////////////////////////////////////////////////////////////////////////
8e3f3880 2// Name: src/html/helpfrm.cpp
8ec2b484 3// Purpose: wxHtmlHelpFrame
d5bb85a0 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
c32bfc10
VS
12// For compilers that support precompilation, includes "wx.h"
13
8ec2b484
HH
14#include "wx/wxprec.h"
15
16#ifdef __BORLANDC__
8e3f3880 17 #pragma hdrstop
8ec2b484
HH
18#endif
19
3379ed37 20#if wxUSE_WXHTML_HELP
07b8d7ec 21
b4f4d3dd 22#ifndef WX_PRECOMP
8e3f3880 23 #include "wx/object.h"
ad9835c9 24 #include "wx/dynarray.h"
07b8d7ec
VZ
25 #include "wx/intl.h"
26 #include "wx/log.h"
530ecef0
WS
27 #if wxUSE_STREAMS
28 #include "wx/stream.h"
29 #endif
07b8d7ec 30
07b8d7ec
VZ
31 #include "wx/sizer.h"
32
33 #include "wx/bmpbuttn.h"
34 #include "wx/statbox.h"
35 #include "wx/radiobox.h"
3b3dc801 36 #include "wx/menu.h"
9eddec69 37 #include "wx/settings.h"
c718e0b3 38 #include "wx/msgdlg.h"
fec9cc08 39 #include "wx/textctrl.h"
4e3e485b 40 #include "wx/toolbar.h"
949c9f74
WS
41 #include "wx/choicdlg.h"
42 #include "wx/filedlg.h"
b4f4d3dd 43#endif // WX_PRECOMP
c718e0b3 44
8ec2b484 45#include "wx/html/helpfrm.h"
b4414c1f 46#include "wx/html/helpctrl.h"
8ec2b484
HH
47#include "wx/notebook.h"
48#include "wx/imaglist.h"
49#include "wx/treectrl.h"
50#include "wx/tokenzr.h"
51#include "wx/wfstream.h"
52#include "wx/html/htmlwin.h"
53#include "wx/busyinfo.h"
54#include "wx/progdlg.h"
83efdf33 55#include "wx/fontenum.h"
f435c1f0 56#include "wx/artprov.h"
c269cf62 57#include "wx/spinctrl.h"
8ec2b484 58
3755cfa6 59IMPLEMENT_DYNAMIC_CLASS(wxHtmlHelpFrame, wxFrame)
8ec2b484 60
3755cfa6
JS
61BEGIN_EVENT_TABLE(wxHtmlHelpFrame, wxFrame)
62 EVT_ACTIVATE(wxHtmlHelpFrame::OnActivate)
63 EVT_CLOSE(wxHtmlHelpFrame::OnCloseWindow)
64#ifdef __WXMAC__
65 EVT_MENU(wxID_CLOSE, wxHtmlHelpFrame::OnClose)
66 EVT_MENU(wxID_ABOUT, wxHtmlHelpFrame::OnAbout)
67 EVT_MENU(wxID_HELP_CONTENTS, wxHtmlHelpFrame::OnAbout)
da4cc40c 68#endif
3755cfa6 69END_EVENT_TABLE()
8ec2b484
HH
70
71wxHtmlHelpFrame::wxHtmlHelpFrame(wxWindow* parent, wxWindowID id, const wxString& title,
b4246849
VZ
72 int style, wxHtmlHelpData* data
73#if wxUSE_CONFIG
74 , wxConfigBase *config, const wxString& rootpath
75#endif // wxUSE_CONFIG
76 )
8ec2b484
HH
77{
78 Init(data);
b4246849
VZ
79 Create(parent, id, title, style
80#if wxUSE_CONFIG
81 , config, rootpath
82#endif // wxUSE_CONFIG
83 );
8ec2b484 84}
d5bb85a0 85
8ec2b484
HH
86void wxHtmlHelpFrame::Init(wxHtmlHelpData* data)
87{
3755cfa6
JS
88 // Simply pass the pointer on to the help window
89 m_Data = data;
90 m_HtmlHelpWin = NULL;
d3b9f782 91 m_helpController = NULL;
8ec2b484
HH
92}
93
664d1729
VS
94void wxHtmlHelpFrame::SetController(wxHtmlHelpController* controller)
95{
96 m_helpController = controller;
97 if ( m_HtmlHelpWin )
98 m_HtmlHelpWin->SetController(controller);
99}
100
d5bb85a0 101// Create: builds the GUI components.
3379ed37 102bool wxHtmlHelpFrame::Create(wxWindow* parent, wxWindowID id,
b4246849
VZ
103 const wxString& WXUNUSED(title), int style
104#if wxUSE_CONFIG
105 , wxConfigBase *config, const wxString& rootpath
106#endif // wxUSE_CONFIG
107 )
8ec2b484 108{
3755cfa6 109 m_HtmlHelpWin = new wxHtmlHelpWindow(m_Data);
664d1729 110 m_HtmlHelpWin->SetController(m_helpController);
b4246849
VZ
111#if wxUSE_CONFIG
112 if ( config )
18fc6059 113 m_HtmlHelpWin->UseConfig(config, rootpath);
b4246849 114#endif // wxUSE_CONFIG
03647350 115
8e3f3880 116 wxFrame::Create(parent, id, _("Help"),
3755cfa6 117 wxPoint(m_HtmlHelpWin->GetCfgData().x, m_HtmlHelpWin->GetCfgData().y),
8e3f3880 118 wxSize(m_HtmlHelpWin->GetCfgData().w, m_HtmlHelpWin->GetCfgData().h),
5229b11d 119 wxDEFAULT_FRAME_STYLE, wxT("wxHtmlHelp"));
3755cfa6
JS
120#if wxUSE_STATUSBAR
121 CreateStatusBar();
122#endif
8e3f3880 123 m_HtmlHelpWin->Create(this, wxID_ANY, wxDefaultPosition, wxDefaultSize,
3755cfa6 124 wxTAB_TRAVERSAL|wxNO_BORDER, style);
8ec2b484 125
3755cfa6 126 GetPosition(& (m_HtmlHelpWin->GetCfgData().x), & (m_HtmlHelpWin->GetCfgData()).y);
5c172c17 127
6c4a2734 128 SetIcons(wxArtProvider::GetIconBundle(wxART_HELP, wxART_FRAME_ICON));
9ffdee80 129
d9b21c9f
JS
130 // On the Mac, each modeless frame must have a menubar.
131 // TODO: add more menu items, and perhaps add a style to show
132 // the menubar: compulsory on the Mac, optional elsewhere.
133#ifdef __WXMAC__
134 wxMenuBar* menuBar = new wxMenuBar;
135
136 wxMenu* fileMenu = new wxMenu;
137 fileMenu->Append(wxID_HTML_OPENFILE, _("&Open..."));
d9b21c9f
JS
138 fileMenu->AppendSeparator();
139 fileMenu->Append(wxID_CLOSE, _("&Close"));
140
b05206c9
JS
141 wxMenu* helpMenu = new wxMenu;
142 helpMenu->Append(wxID_ABOUT, _("&About..."));
322a5b45
JS
143 // Ensures we don't get an empty help menu
144 helpMenu->Append(wxID_HELP_CONTENTS, _("&About..."));
d9b21c9f 145
c3eeb758
RD
146 menuBar->Append(fileMenu,_("&File"));
147 menuBar->Append(helpMenu,_("&Help"));
d9b21c9f
JS
148 SetMenuBar(menuBar);
149#endif
150
3755cfa6 151 m_HtmlHelpWin->GetHtmlWindow()->SetRelatedFrame(this, m_TitleFormat);
67a99992 152#if wxUSE_STATUSBAR
3755cfa6 153 m_HtmlHelpWin->GetHtmlWindow()->SetRelatedStatusBar(0);
8fbc9912 154#endif
dabbc6a5 155 return true;
8ec2b484
HH
156}
157
158wxHtmlHelpFrame::~wxHtmlHelpFrame()
159{
b854b7b8 160}
b854b7b8 161
721ab905
VS
162void wxHtmlHelpFrame::SetTitleFormat(const wxString& format)
163{
3755cfa6
JS
164 if (GetHelpWindow() && GetHelpWindow()->GetHtmlWindow())
165 GetHelpWindow()->GetHtmlWindow()->SetRelatedFrame(this, format);
721ab905
VS
166 m_TitleFormat = format;
167}
168
8ec2b484
HH
169/*
170EVENT HANDLING :
171*/
172
173
d45bc436
RR
174void wxHtmlHelpFrame::OnActivate(wxActivateEvent& event)
175{
176 // This saves one mouse click when using the
177 // wxHTML for context sensitive help systems
2b5f62a0
VZ
178#ifndef __WXGTK__
179 // NB: wxActivateEvent is a bit broken in wxGTK
180 // and is sometimes sent when it should not be
3755cfa6
JS
181 if (event.GetActive() && m_HtmlHelpWin)
182 m_HtmlHelpWin->GetHtmlWindow()->SetFocus();
2b5f62a0 183#endif
fbd90401
VS
184
185 event.Skip();
d45bc436
RR
186}
187
3755cfa6 188void wxHtmlHelpFrame::OnCloseWindow(wxCloseEvent& evt)
8ec2b484 189{
3755cfa6 190 if (!IsIconized())
4f9297b0 191 {
3755cfa6
JS
192 GetSize(& (m_HtmlHelpWin->GetCfgData().w), &(m_HtmlHelpWin->GetCfgData().h));
193 GetPosition(& (m_HtmlHelpWin->GetCfgData().x), & (m_HtmlHelpWin->GetCfgData().y));
8ec2b484 194 }
8ec2b484 195
3755cfa6
JS
196#ifdef __WXGTK__
197 if (IsGrabbed())
0646614d 198 {
3755cfa6 199 RemoveGrab();
0646614d 200 }
3755cfa6 201#endif
8ec2b484 202
3755cfa6
JS
203 if (m_HtmlHelpWin->GetSplitterWindow() && m_HtmlHelpWin->GetCfgData().navig_on)
204 m_HtmlHelpWin->GetCfgData().sashpos = m_HtmlHelpWin->GetSplitterWindow()->GetSashPosition();
8ec2b484 205
3755cfa6 206 if (m_helpController && m_helpController->IsKindOf(CLASSINFO(wxHtmlHelpController)))
4f9297b0 207 {
3755cfa6 208 ((wxHtmlHelpController*) m_helpController)->OnCloseFrame(evt);
4f9297b0 209 }
f0b6a33f 210
3755cfa6 211 evt.Skip();
f0b6a33f
VS
212}
213
3755cfa6
JS
214// Make the help controller's frame 'modal' if
215// needed
216void wxHtmlHelpFrame::AddGrabIfNeeded()
f0b6a33f 217{
3755cfa6
JS
218 // So far, wxGTK only
219#ifdef __WXGTK__
8e3f3880
WS
220 bool needGrab = false;
221
3755cfa6
JS
222 // Check if there are any modal windows present,
223 // in which case we need to add a grab.
3e63c315
MW
224 for ( wxWindowList::iterator it = wxTopLevelWindows.begin();
225 it != wxTopLevelWindows.end();
226 ++it )
4f9297b0 227 {
3e63c315 228 wxWindow *win = *it;
3755cfa6 229 wxDialog *dialog = wxDynamicCast(win, wxDialog);
8ec2b484 230
3755cfa6 231 if (dialog && dialog->IsModal())
8e3f3880 232 needGrab = true;
0646614d 233 }
8ec2b484 234
3755cfa6
JS
235 if (needGrab)
236 AddGrab();
237#endif // __WXGTK__
8ec2b484
HH
238}
239
b4246849 240#if wxUSE_CONFIG
3755cfa6
JS
241// For compatibility
242void wxHtmlHelpFrame::UseConfig(wxConfigBase *config, const wxString& rootPath)
382e6efe 243{
3755cfa6
JS
244 if (m_HtmlHelpWin)
245 m_HtmlHelpWin->UseConfig(config, rootPath);
8ec2b484 246}
b4246849 247#endif // wxUSE_CONFIG
8ec2b484 248
d9b21c9f 249#ifdef __WXMAC__
8a088306 250void wxHtmlHelpFrame::OnClose(wxCommandEvent& WXUNUSED(event))
d9b21c9f 251{
dabbc6a5 252 Close(true);
d9b21c9f
JS
253}
254
8a088306 255void wxHtmlHelpFrame::OnAbout(wxCommandEvent& WXUNUSED(event))
d9b21c9f 256{
3755cfa6 257 wxMessageBox(wxT("wxWidgets HTML Help Viewer (c) 1998-2006, Vaclav Slavik et al"), wxT("HelpView"),
d9b21c9f
JS
258 wxICON_INFORMATION|wxOK, this);
259}
260#endif
261
3379ed37 262#endif // wxUSE_WXHTML_HELP