1999-07-07 22:04:58 +00:00
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
|
|
// Name: test.cpp
|
|
|
|
// Purpose: wxHtml testing example
|
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
2002-08-31 22:31:03 +00:00
|
|
|
#if defined(__GNUG__) && !defined(__APPLE__)
|
2005-03-30 19:10:46 +00:00
|
|
|
#pragma implementation
|
|
|
|
#pragma interface
|
1999-07-07 22:04:58 +00:00
|
|
|
#endif
|
|
|
|
|
|
|
|
// For compilers that support precompilation, includes "wx/wx.h".
|
2001-10-30 13:33:34 +00:00
|
|
|
#include "wx/wxprec.h"
|
1999-07-07 22:04:58 +00:00
|
|
|
|
|
|
|
#ifdef __BORLANDC__
|
|
|
|
#pragma hdrstop
|
|
|
|
#endif
|
|
|
|
|
|
|
|
// for all others, include the necessary headers (this file is usually all you
|
2004-05-25 11:20:37 +00:00
|
|
|
// need because it includes almost all "standard" wxWidgets headers
|
1999-07-07 22:04:58 +00:00
|
|
|
#ifndef WX_PRECOMP
|
2002-01-13 17:41:56 +00:00
|
|
|
#include "wx/wx.h"
|
1999-07-07 22:04:58 +00:00
|
|
|
#endif
|
|
|
|
|
2001-11-14 23:19:03 +00:00
|
|
|
#include "wx/image.h"
|
|
|
|
#include "wx/html/helpfrm.h"
|
|
|
|
#include "wx/html/helpctrl.h"
|
|
|
|
#include "wx/filesys.h"
|
|
|
|
#include "wx/fs_zip.h"
|
1999-07-07 22:04:58 +00:00
|
|
|
|
|
|
|
// ----------------------------------------------------------------------------
|
|
|
|
// private classes
|
|
|
|
// ----------------------------------------------------------------------------
|
|
|
|
|
1999-08-08 15:52:31 +00:00
|
|
|
|
1999-07-07 22:04:58 +00:00
|
|
|
// Define a new application type, each program should derive a class from wxApp
|
|
|
|
class MyApp : public wxApp
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
// override base class virtuals
|
|
|
|
// ----------------------------
|
1999-08-08 15:52:31 +00:00
|
|
|
|
1999-07-07 22:04:58 +00:00
|
|
|
// this one is called on application startup and is a good place for the app
|
|
|
|
// initialization (doing it here and not in the ctor allows to have an error
|
|
|
|
// return: if OnInit() returns false, the application terminates)
|
1999-08-08 15:52:31 +00:00
|
|
|
virtual bool OnInit();
|
1999-07-07 22:04:58 +00:00
|
|
|
};
|
|
|
|
|
1999-08-08 15:52:31 +00:00
|
|
|
|
|
|
|
|
|
|
|
// Define a new frame type: this is going to be our main frame
|
|
|
|
class MyFrame : public wxFrame
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
// ctor(s)
|
|
|
|
MyFrame(const wxString& title, const wxPoint& pos, const wxSize& size);
|
|
|
|
|
|
|
|
// event handlers (these functions should _not_ be virtual)
|
|
|
|
void OnQuit(wxCommandEvent& event);
|
|
|
|
void OnHelp(wxCommandEvent& event);
|
1999-10-14 14:57:17 +00:00
|
|
|
void OnClose(wxCloseEvent& event);
|
1999-08-08 15:52:31 +00:00
|
|
|
private:
|
|
|
|
wxHtmlHelpController help;
|
2005-03-30 19:10:46 +00:00
|
|
|
|
2004-05-25 11:20:37 +00:00
|
|
|
// any class wishing to process wxWidgets events must use this macro
|
1999-08-08 15:52:31 +00:00
|
|
|
DECLARE_EVENT_TABLE()
|
|
|
|
};
|
|
|
|
|
|
|
|
// ----------------------------------------------------------------------------
|
|
|
|
// constants
|
|
|
|
// ----------------------------------------------------------------------------
|
|
|
|
|
|
|
|
// IDs for the controls and the menu commands
|
|
|
|
enum
|
|
|
|
{
|
|
|
|
// menu items
|
|
|
|
Minimal_Quit = 1,
|
|
|
|
Minimal_Help
|
|
|
|
};
|
|
|
|
|
|
|
|
// ----------------------------------------------------------------------------
|
2004-05-25 11:20:37 +00:00
|
|
|
// event tables and other macros for wxWidgets
|
1999-08-08 15:52:31 +00:00
|
|
|
// ----------------------------------------------------------------------------
|
1999-07-07 22:04:58 +00:00
|
|
|
|
2004-05-25 11:20:37 +00:00
|
|
|
// the event tables connect the wxWidgets events with the functions (event
|
1999-08-08 15:52:31 +00:00
|
|
|
// handlers) which process them. It can be also done at run-time, but for the
|
|
|
|
// simple menu events like this the static method is much simpler.
|
|
|
|
BEGIN_EVENT_TABLE(MyFrame, wxFrame)
|
|
|
|
EVT_MENU(Minimal_Quit, MyFrame::OnQuit)
|
|
|
|
EVT_MENU(Minimal_Help, MyFrame::OnHelp)
|
1999-10-14 14:57:17 +00:00
|
|
|
EVT_CLOSE(MyFrame::OnClose)
|
1999-08-08 15:52:31 +00:00
|
|
|
END_EVENT_TABLE()
|
|
|
|
|
2004-05-25 11:20:37 +00:00
|
|
|
// Create a new application object: this macro will allow wxWidgets to create
|
1999-08-08 15:52:31 +00:00
|
|
|
// the application object during program execution (it's better than using a
|
|
|
|
// static object for many reasons) and also declares the accessor function
|
|
|
|
// wxGetApp() which will return the reference of the right type (i.e. MyApp and
|
|
|
|
// not wxApp)
|
|
|
|
IMPLEMENT_APP(MyApp)
|
|
|
|
|
|
|
|
// ============================================================================
|
|
|
|
// implementation
|
|
|
|
// ============================================================================
|
|
|
|
|
|
|
|
// ----------------------------------------------------------------------------
|
|
|
|
// the application class
|
|
|
|
// ----------------------------------------------------------------------------
|
|
|
|
// `Main program' equivalent: the program execution "starts" here
|
1999-07-07 22:04:58 +00:00
|
|
|
bool MyApp::OnInit()
|
|
|
|
{
|
2000-01-19 23:05:39 +00:00
|
|
|
wxInitAllImageHandlers();
|
2005-03-30 19:10:46 +00:00
|
|
|
#if wxUSE_STREAMS && wxUSE_ZIPSTREAM && wxUSE_ZLIB
|
2000-01-26 00:49:58 +00:00
|
|
|
wxFileSystem::AddHandler(new wxZipFSHandler);
|
|
|
|
#endif
|
2004-05-25 11:20:37 +00:00
|
|
|
SetVendorName(wxT("wxWidgets"));
|
2005-03-30 19:10:46 +00:00
|
|
|
SetAppName(wxT("wxHTMLHelp"));
|
2000-01-17 17:18:53 +00:00
|
|
|
|
1999-08-08 15:52:31 +00:00
|
|
|
// Create the main application window
|
2002-12-04 14:11:26 +00:00
|
|
|
MyFrame *frame = new MyFrame(_("HTML Help Sample"),
|
2004-07-05 19:27:23 +00:00
|
|
|
wxDefaultPosition, wxDefaultSize);
|
1999-08-08 15:52:31 +00:00
|
|
|
|
|
|
|
// Show it and tell the application that it's our main window
|
|
|
|
// @@@ what does it do exactly, in fact? is it necessary here?
|
2004-05-21 11:29:38 +00:00
|
|
|
frame->Show(true);
|
1999-08-08 15:52:31 +00:00
|
|
|
SetTopWindow(frame);
|
|
|
|
|
|
|
|
|
|
|
|
// success: wxApp::OnRun() will be called which will enter the main message
|
2004-05-21 11:29:38 +00:00
|
|
|
// loop and the application will run. If we returned false here, the
|
1999-08-08 15:52:31 +00:00
|
|
|
// application would exit immediately.
|
2004-05-21 11:29:38 +00:00
|
|
|
return true;
|
1999-07-07 22:04:58 +00:00
|
|
|
}
|
1999-08-08 15:52:31 +00:00
|
|
|
|
|
|
|
// ----------------------------------------------------------------------------
|
|
|
|
// main frame
|
|
|
|
// ----------------------------------------------------------------------------
|
|
|
|
|
|
|
|
|
|
|
|
// frame constructor
|
|
|
|
MyFrame::MyFrame(const wxString& title, const wxPoint& pos, const wxSize& size)
|
2005-03-30 19:10:46 +00:00
|
|
|
: wxFrame((wxFrame *)NULL, wxID_ANY, title, pos, size),
|
2001-05-05 18:05:24 +00:00
|
|
|
help(wxHF_DEFAULT_STYLE | wxHF_OPEN_FILES)
|
1999-08-08 15:52:31 +00:00
|
|
|
{
|
|
|
|
// create a menu bar
|
|
|
|
wxMenu *menuFile = new wxMenu;
|
|
|
|
|
2002-12-04 14:11:26 +00:00
|
|
|
menuFile->Append(Minimal_Help, _("&Help"));
|
|
|
|
menuFile->Append(Minimal_Quit, _("E&xit"));
|
1999-08-08 15:52:31 +00:00
|
|
|
|
|
|
|
// now append the freshly created menu to the menu bar...
|
|
|
|
wxMenuBar *menuBar = new wxMenuBar;
|
2002-12-04 14:11:26 +00:00
|
|
|
menuBar->Append(menuFile, _("&File"));
|
1999-08-08 15:52:31 +00:00
|
|
|
|
|
|
|
// ... and attach this menu bar to the frame
|
|
|
|
SetMenuBar(menuBar);
|
|
|
|
|
2000-01-17 17:18:53 +00:00
|
|
|
help.UseConfig(wxConfig::Get());
|
1999-09-12 17:45:34 +00:00
|
|
|
bool ret;
|
2002-12-04 14:11:26 +00:00
|
|
|
help.SetTempDir(wxT("."));
|
2002-12-08 20:30:56 +00:00
|
|
|
ret = help.AddBook(wxFileName(wxT("helpfiles/testing.hhp"), wxPATH_UNIX));
|
1999-09-12 17:45:34 +00:00
|
|
|
if (! ret)
|
2002-12-04 14:11:26 +00:00
|
|
|
wxMessageBox(wxT("Failed adding book helpfiles/testing.hhp"));
|
2002-12-08 20:30:56 +00:00
|
|
|
ret = help.AddBook(wxFileName(wxT("helpfiles/another.hhp"), wxPATH_UNIX));
|
1999-09-12 17:45:34 +00:00
|
|
|
if (! ret)
|
2002-12-04 14:11:26 +00:00
|
|
|
wxMessageBox(_("Failed adding book helpfiles/another.hhp"));
|
1999-08-08 15:52:31 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// event handlers
|
|
|
|
|
|
|
|
void MyFrame::OnQuit(wxCommandEvent& WXUNUSED(event))
|
1999-07-07 22:04:58 +00:00
|
|
|
{
|
2004-05-21 11:29:38 +00:00
|
|
|
// true is to force the frame to close
|
|
|
|
Close(true);
|
1999-07-07 22:04:58 +00:00
|
|
|
}
|
|
|
|
|
1999-08-08 15:52:31 +00:00
|
|
|
void MyFrame::OnHelp(wxCommandEvent& WXUNUSED(event))
|
|
|
|
{
|
2002-12-04 14:11:26 +00:00
|
|
|
help.Display(wxT("Test HELPFILE"));
|
1999-08-08 15:52:31 +00:00
|
|
|
}
|
|
|
|
|
1999-10-14 14:57:17 +00:00
|
|
|
void MyFrame::OnClose(wxCloseEvent& event)
|
|
|
|
{
|
|
|
|
// Close the help frame; this will cause the config data to
|
|
|
|
// get written.
|
|
|
|
if ( help.GetFrame() ) // returns NULL if no help frame active
|
2004-05-21 11:29:38 +00:00
|
|
|
help.GetFrame()->Close(true);
|
1999-10-14 14:57:17 +00:00
|
|
|
// now we can safely delete the config pointer
|
2005-03-30 19:10:46 +00:00
|
|
|
event.Skip();
|
2000-01-17 17:18:53 +00:00
|
|
|
delete wxConfig::Set(NULL);
|
1999-10-14 14:57:17 +00:00
|
|
|
}
|
|
|
|
|
1999-08-08 15:52:31 +00:00
|
|
|
|
|
|
|
|
1999-07-07 22:04:58 +00:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|