1998-11-10 21:22:22 +00:00
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
1999-02-18 14:55:34 +00:00
|
|
|
// Name: demo.cpp
|
|
|
|
// Purpose: wxHelpController demo
|
|
|
|
// Author: Karsten Ballueder
|
1998-11-10 21:22:22 +00:00
|
|
|
// Modified by:
|
|
|
|
// Created: 04/01/98
|
|
|
|
// RCS-ID: $Id$
|
1999-02-18 14:55:34 +00:00
|
|
|
// Copyright: (c) Karsten Ballueder, Julian Smart
|
|
|
|
// Licence: wxWindows licence
|
1998-11-10 21:22:22 +00:00
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
|
|
|
// ============================================================================
|
|
|
|
// declarations
|
|
|
|
// ============================================================================
|
|
|
|
|
|
|
|
// ----------------------------------------------------------------------------
|
|
|
|
// headers
|
|
|
|
// ----------------------------------------------------------------------------
|
1999-06-22 21:20:48 +00:00
|
|
|
|
1998-11-10 21:22:22 +00:00
|
|
|
// For compilers that support precompilation, includes "wx/wx.h".
|
|
|
|
#include "wx/wxprec.h"
|
|
|
|
|
|
|
|
#ifdef __BORLANDC__
|
1999-07-18 18:09:46 +00:00
|
|
|
# pragma hdrstop
|
1998-11-10 21:22:22 +00:00
|
|
|
#endif
|
|
|
|
|
|
|
|
// for all others, include the necessary headers (this file is usually all you
|
|
|
|
// need because it includes almost all "standard" wxWindows headers
|
|
|
|
#ifndef WX_PRECOMP
|
1999-07-18 18:09:46 +00:00
|
|
|
# include "wx/wx.h"
|
1998-11-10 21:22:22 +00:00
|
|
|
#endif
|
|
|
|
|
2000-03-08 13:04:51 +00:00
|
|
|
# include "wx/image.h"
|
|
|
|
# include "wx/help.h"
|
2000-09-08 10:49:39 +00:00
|
|
|
# include "wx/cshelp.h"
|
2000-03-08 13:04:51 +00:00
|
|
|
|
2000-09-06 13:23:21 +00:00
|
|
|
#if wxUSE_TOOLTIPS
|
|
|
|
# include "wx/tooltip.h"
|
|
|
|
#endif
|
|
|
|
|
1999-07-18 18:09:46 +00:00
|
|
|
// define this to 1 to use HTML help even under Windows (by default, Windows
|
2000-03-08 13:04:51 +00:00
|
|
|
// version will use WinHelp).
|
2000-03-09 23:41:57 +00:00
|
|
|
// Please also see samples/html/helpview.
|
2000-03-08 13:04:51 +00:00
|
|
|
|
1999-08-02 21:31:09 +00:00
|
|
|
#define USE_HTML_HELP 1
|
2000-03-08 13:04:51 +00:00
|
|
|
|
2000-07-15 19:51:35 +00:00
|
|
|
// Use old-style HTML help if 1
|
|
|
|
#define USE_OLD_HTML_HELP 0
|
|
|
|
|
2000-03-08 13:04:51 +00:00
|
|
|
#if !wxUSE_HTML
|
|
|
|
#undef USE_HTML_HELP
|
|
|
|
#define USE_HTML_HELP 0
|
|
|
|
#endif
|
|
|
|
|
1999-06-22 21:20:48 +00:00
|
|
|
#if USE_HTML_HELP
|
2000-03-09 20:15:44 +00:00
|
|
|
#include <wx/filesys.h>
|
|
|
|
#include <wx/fs_zip.h>
|
|
|
|
|
2000-07-15 19:51:35 +00:00
|
|
|
#if USE_OLD_HTML_HELP
|
2000-03-09 20:15:44 +00:00
|
|
|
#include "wx/generic/helpwxht.h"
|
2000-07-15 19:51:35 +00:00
|
|
|
#endif
|
|
|
|
|
2000-03-09 20:15:44 +00:00
|
|
|
#include "wx/html/helpctrl.h"
|
1999-06-22 21:20:48 +00:00
|
|
|
#endif
|
1998-11-10 21:22:22 +00:00
|
|
|
|
2000-07-15 19:51:35 +00:00
|
|
|
#if wxUSE_MS_HTML_HELP
|
|
|
|
#include "wx/msw/helpchm.h"
|
|
|
|
#endif
|
|
|
|
|
1998-11-10 21:22:22 +00:00
|
|
|
// ----------------------------------------------------------------------------
|
|
|
|
// ressources
|
|
|
|
// ----------------------------------------------------------------------------
|
|
|
|
// the application icon
|
1998-11-11 14:39:42 +00:00
|
|
|
#if defined(__WXGTK__) || defined(__WXMOTIF__)
|
1998-11-10 21:22:22 +00:00
|
|
|
#include "mondrian.xpm"
|
|
|
|
#endif
|
|
|
|
|
|
|
|
// ----------------------------------------------------------------------------
|
|
|
|
// private classes
|
|
|
|
// ----------------------------------------------------------------------------
|
|
|
|
|
|
|
|
// Define a new application type, each program should derive a class from wxApp
|
|
|
|
class MyApp : public wxApp
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
// override base class virtuals
|
|
|
|
// ----------------------------
|
|
|
|
|
|
|
|
// 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)
|
|
|
|
virtual bool OnInit();
|
|
|
|
};
|
|
|
|
|
|
|
|
// 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);
|
|
|
|
|
1999-11-08 15:06:41 +00:00
|
|
|
wxHelpController& GetHelpController() { return m_help; }
|
|
|
|
|
2000-03-08 13:04:51 +00:00
|
|
|
#if USE_HTML_HELP
|
2000-07-15 19:51:35 +00:00
|
|
|
#if USE_OLD_HTML_HELP
|
2000-03-08 13:04:51 +00:00
|
|
|
wxHelpControllerHtml& GetHtmlHelpController() { return m_htmlHelp; }
|
2000-07-15 19:51:35 +00:00
|
|
|
#endif
|
2000-03-09 20:15:44 +00:00
|
|
|
wxHtmlHelpController& GetAdvancedHtmlHelpController() { return m_advancedHtmlHelp; }
|
2000-03-08 13:04:51 +00:00
|
|
|
#endif
|
2000-07-15 19:51:35 +00:00
|
|
|
#if wxUSE_MS_HTML_HELP
|
|
|
|
wxCHMHelpController& GetMSHtmlHelpController() { return m_msHtmlHelp; }
|
|
|
|
#endif
|
2000-03-08 13:04:51 +00:00
|
|
|
|
1998-11-10 21:22:22 +00:00
|
|
|
// event handlers (these functions should _not_ be virtual)
|
|
|
|
void OnQuit(wxCommandEvent& event);
|
|
|
|
void OnHelp(wxCommandEvent& event);
|
2000-03-08 13:04:51 +00:00
|
|
|
void OnHtmlHelp(wxCommandEvent& event);
|
2000-03-09 20:15:44 +00:00
|
|
|
void OnAdvancedHtmlHelp(wxCommandEvent& event);
|
2000-07-15 19:51:35 +00:00
|
|
|
void OnMSHtmlHelp(wxCommandEvent& event);
|
1998-11-10 21:22:22 +00:00
|
|
|
|
2000-09-06 09:45:24 +00:00
|
|
|
void OnContextHelp(wxHelpEvent& event);
|
|
|
|
void OnShowContextHelp(wxCommandEvent& event);
|
|
|
|
|
2000-03-09 23:41:57 +00:00
|
|
|
void ShowHelp(int commandId, wxHelpControllerBase& helpController);
|
|
|
|
|
1998-11-10 21:22:22 +00:00
|
|
|
private:
|
2000-03-08 13:04:51 +00:00
|
|
|
wxHelpController m_help;
|
|
|
|
|
|
|
|
#if USE_HTML_HELP
|
2000-07-15 19:51:35 +00:00
|
|
|
#if USE_OLD_HTML_HELP
|
2000-03-08 13:04:51 +00:00
|
|
|
wxHelpControllerHtml m_htmlHelp;
|
2000-07-15 19:51:35 +00:00
|
|
|
#endif
|
2000-03-09 20:15:44 +00:00
|
|
|
wxHtmlHelpController m_advancedHtmlHelp;
|
2000-03-08 13:04:51 +00:00
|
|
|
#endif
|
1999-06-22 21:20:48 +00:00
|
|
|
|
2000-07-15 19:51:35 +00:00
|
|
|
#if wxUSE_MS_HTML_HELP
|
|
|
|
wxCHMHelpController m_msHtmlHelp;
|
|
|
|
#endif
|
|
|
|
|
1998-11-10 21:22:22 +00:00
|
|
|
// any class wishing to process wxWindows events must use this macro
|
|
|
|
DECLARE_EVENT_TABLE()
|
|
|
|
};
|
|
|
|
|
|
|
|
// ----------------------------------------------------------------------------
|
|
|
|
// constants
|
|
|
|
// ----------------------------------------------------------------------------
|
|
|
|
|
|
|
|
// IDs for the controls and the menu commands
|
|
|
|
enum
|
|
|
|
{
|
|
|
|
// menu items
|
1999-02-18 14:55:34 +00:00
|
|
|
HelpDemo_Quit = 1,
|
|
|
|
HelpDemo_Help_Index,
|
|
|
|
HelpDemo_Help_Classes,
|
|
|
|
HelpDemo_Help_Functions,
|
|
|
|
HelpDemo_Help_Help,
|
2000-03-08 13:04:51 +00:00
|
|
|
HelpDemo_Help_Search,
|
2000-09-06 09:45:24 +00:00
|
|
|
HelpDemo_Help_ContextHelp,
|
2000-03-08 13:04:51 +00:00
|
|
|
|
|
|
|
HelpDemo_Html_Help_Index,
|
|
|
|
HelpDemo_Html_Help_Classes,
|
|
|
|
HelpDemo_Html_Help_Functions,
|
|
|
|
HelpDemo_Html_Help_Help,
|
|
|
|
HelpDemo_Html_Help_Search,
|
|
|
|
|
2000-03-09 20:15:44 +00:00
|
|
|
HelpDemo_Advanced_Html_Help_Index,
|
|
|
|
HelpDemo_Advanced_Html_Help_Classes,
|
|
|
|
HelpDemo_Advanced_Html_Help_Functions,
|
|
|
|
HelpDemo_Advanced_Html_Help_Help,
|
|
|
|
HelpDemo_Advanced_Html_Help_Search,
|
|
|
|
|
2000-07-15 19:51:35 +00:00
|
|
|
HelpDemo_MS_Html_Help_Index,
|
|
|
|
HelpDemo_MS_Html_Help_Classes,
|
|
|
|
HelpDemo_MS_Html_Help_Functions,
|
|
|
|
HelpDemo_MS_Html_Help_Help,
|
|
|
|
HelpDemo_MS_Html_Help_Search,
|
|
|
|
|
1999-02-18 14:55:34 +00:00
|
|
|
HelpDemo_Help_KDE,
|
|
|
|
HelpDemo_Help_GNOME,
|
|
|
|
HelpDemo_Help_Netscape,
|
1998-11-10 21:22:22 +00:00
|
|
|
// controls start here (the numbers are, of course, arbitrary)
|
2000-03-09 20:15:44 +00:00
|
|
|
HelpDemo_Text = 1000,
|
1998-11-10 21:22:22 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
// ----------------------------------------------------------------------------
|
|
|
|
// event tables and other macros for wxWindows
|
|
|
|
// ----------------------------------------------------------------------------
|
|
|
|
|
|
|
|
// the event tables connect the wxWindows events with the functions (event
|
|
|
|
// 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)
|
1999-02-18 14:55:34 +00:00
|
|
|
EVT_MENU(HelpDemo_Quit, MyFrame::OnQuit)
|
|
|
|
EVT_MENU(HelpDemo_Help_Index, MyFrame::OnHelp)
|
|
|
|
EVT_MENU(HelpDemo_Help_Classes, MyFrame::OnHelp)
|
|
|
|
EVT_MENU(HelpDemo_Help_Functions, MyFrame::OnHelp)
|
|
|
|
EVT_MENU(HelpDemo_Help_Help, MyFrame::OnHelp)
|
2000-03-08 13:04:51 +00:00
|
|
|
EVT_MENU(HelpDemo_Help_Search, MyFrame::OnHelp)
|
2000-09-06 09:45:24 +00:00
|
|
|
EVT_MENU(HelpDemo_Help_ContextHelp, MyFrame::OnShowContextHelp)
|
|
|
|
|
|
|
|
EVT_HELP(-1, MyFrame::OnContextHelp)
|
2000-03-08 13:04:51 +00:00
|
|
|
|
|
|
|
EVT_MENU(HelpDemo_Html_Help_Index, MyFrame::OnHtmlHelp)
|
|
|
|
EVT_MENU(HelpDemo_Html_Help_Classes, MyFrame::OnHtmlHelp)
|
|
|
|
EVT_MENU(HelpDemo_Html_Help_Functions, MyFrame::OnHtmlHelp)
|
|
|
|
EVT_MENU(HelpDemo_Html_Help_Help, MyFrame::OnHtmlHelp)
|
|
|
|
EVT_MENU(HelpDemo_Html_Help_Search, MyFrame::OnHtmlHelp)
|
|
|
|
|
2000-03-09 20:15:44 +00:00
|
|
|
EVT_MENU(HelpDemo_Advanced_Html_Help_Index, MyFrame::OnAdvancedHtmlHelp)
|
|
|
|
EVT_MENU(HelpDemo_Advanced_Html_Help_Classes, MyFrame::OnAdvancedHtmlHelp)
|
|
|
|
EVT_MENU(HelpDemo_Advanced_Html_Help_Functions, MyFrame::OnAdvancedHtmlHelp)
|
|
|
|
EVT_MENU(HelpDemo_Advanced_Html_Help_Help, MyFrame::OnAdvancedHtmlHelp)
|
|
|
|
EVT_MENU(HelpDemo_Advanced_Html_Help_Search, MyFrame::OnAdvancedHtmlHelp)
|
|
|
|
|
2000-07-15 19:51:35 +00:00
|
|
|
EVT_MENU(HelpDemo_MS_Html_Help_Index, MyFrame::OnMSHtmlHelp)
|
|
|
|
EVT_MENU(HelpDemo_MS_Html_Help_Classes, MyFrame::OnMSHtmlHelp)
|
|
|
|
EVT_MENU(HelpDemo_MS_Html_Help_Functions, MyFrame::OnMSHtmlHelp)
|
|
|
|
EVT_MENU(HelpDemo_MS_Html_Help_Help, MyFrame::OnMSHtmlHelp)
|
|
|
|
EVT_MENU(HelpDemo_MS_Html_Help_Search, MyFrame::OnMSHtmlHelp)
|
|
|
|
|
1999-02-18 14:55:34 +00:00
|
|
|
EVT_MENU(HelpDemo_Help_KDE, MyFrame::OnHelp)
|
|
|
|
EVT_MENU(HelpDemo_Help_GNOME, MyFrame::OnHelp)
|
|
|
|
EVT_MENU(HelpDemo_Help_Netscape, MyFrame::OnHelp)
|
1998-11-10 21:22:22 +00:00
|
|
|
END_EVENT_TABLE()
|
|
|
|
|
|
|
|
// Create a new application object: this macro will allow wxWindows to create
|
|
|
|
// 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
|
|
|
|
bool MyApp::OnInit()
|
|
|
|
{
|
2000-03-08 13:04:51 +00:00
|
|
|
#if wxUSE_HTML
|
|
|
|
#if wxUSE_GIF
|
|
|
|
// Required for images in the online documentation
|
|
|
|
wxImage::AddHandler(new wxGIFHandler);
|
2000-03-09 20:15:44 +00:00
|
|
|
|
|
|
|
// Required for advanced HTML help
|
|
|
|
#if wxUSE_STREAMS && wxUSE_ZIPSTREAM && wxUSE_ZLIB
|
|
|
|
wxFileSystem::AddHandler(new wxZipFSHandler);
|
|
|
|
#endif
|
|
|
|
|
2000-03-08 13:04:51 +00:00
|
|
|
#endif
|
|
|
|
#endif
|
|
|
|
|
1998-11-10 21:22:22 +00:00
|
|
|
// Create the main application window
|
1999-02-18 14:55:34 +00:00
|
|
|
MyFrame *frame = new MyFrame("HelpDemo wxWindows App",
|
1998-11-10 21:22:22 +00:00
|
|
|
wxPoint(50, 50), wxSize(450, 340));
|
|
|
|
|
|
|
|
frame->Show(TRUE);
|
|
|
|
SetTopWindow(frame);
|
|
|
|
|
1999-11-08 15:06:41 +00:00
|
|
|
// initialise the help system: this means that we'll use doc.hlp file under
|
|
|
|
// Windows and that the HTML docs are in the subdirectory doc for platforms
|
|
|
|
// using HTML help
|
|
|
|
if ( !frame->GetHelpController().Initialize("doc") )
|
|
|
|
{
|
|
|
|
wxLogError("Cannot initialize the help system, aborting.");
|
|
|
|
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
2000-03-08 13:04:51 +00:00
|
|
|
#if USE_HTML_HELP
|
2000-03-09 20:15:44 +00:00
|
|
|
// initialise the standard HTML help system: this means that the HTML docs are in the
|
2000-03-08 13:04:51 +00:00
|
|
|
// subdirectory doc for platforms using HTML help
|
2000-07-15 19:51:35 +00:00
|
|
|
#if USE_OLD_HTML_HELP
|
2000-03-08 13:04:51 +00:00
|
|
|
if ( !frame->GetHtmlHelpController().Initialize("doc") )
|
|
|
|
{
|
|
|
|
wxLogError("Cannot initialize the HTML help system, aborting.");
|
|
|
|
|
|
|
|
return FALSE;
|
|
|
|
}
|
2000-07-15 19:51:35 +00:00
|
|
|
#endif
|
2000-03-09 20:15:44 +00:00
|
|
|
|
|
|
|
// initialise the advanced HTML help system: this means that the HTML docs are in .htb
|
|
|
|
// (zipped) form
|
|
|
|
if ( !frame->GetAdvancedHtmlHelpController().Initialize("doc") )
|
|
|
|
{
|
|
|
|
wxLogError("Cannot initialize the advanced HTML help system, aborting.");
|
|
|
|
|
|
|
|
return FALSE;
|
|
|
|
}
|
2000-03-08 13:04:51 +00:00
|
|
|
#endif
|
|
|
|
|
2000-07-15 19:51:35 +00:00
|
|
|
#if wxUSE_MS_HTML_HELP
|
|
|
|
if ( !frame->GetMSHtmlHelpController().Initialize("doc") )
|
|
|
|
{
|
|
|
|
wxLogError("Cannot initialize the MS HTML help system, aborting.");
|
|
|
|
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
1998-11-10 21:22:22 +00:00
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
|
|
|
// ----------------------------------------------------------------------------
|
|
|
|
// main frame
|
|
|
|
// ----------------------------------------------------------------------------
|
|
|
|
|
|
|
|
// frame constructor
|
|
|
|
MyFrame::MyFrame(const wxString& title, const wxPoint& pos, const wxSize& size)
|
|
|
|
: wxFrame((wxFrame *)NULL, -1, title, pos, size)
|
|
|
|
{
|
|
|
|
// set the frame icon
|
|
|
|
SetIcon(wxICON(mondrian));
|
|
|
|
|
|
|
|
// create a menu bar
|
|
|
|
wxMenu *menuFile = new wxMenu;
|
|
|
|
|
1999-02-18 14:55:34 +00:00
|
|
|
menuFile->Append(HelpDemo_Help_Index, "&Help Index...");
|
|
|
|
menuFile->Append(HelpDemo_Help_Classes, "&Help on Classes...");
|
|
|
|
menuFile->Append(HelpDemo_Help_Functions, "&Help on Functions...");
|
2000-09-06 09:45:24 +00:00
|
|
|
menuFile->Append(HelpDemo_Help_ContextHelp, "&Context Help...");
|
1999-02-18 14:55:34 +00:00
|
|
|
menuFile->Append(HelpDemo_Help_Help, "&About Help Demo...");
|
|
|
|
menuFile->Append(HelpDemo_Help_Search, "&Search help...");
|
2000-03-08 13:04:51 +00:00
|
|
|
#if USE_HTML_HELP
|
2000-07-15 19:51:35 +00:00
|
|
|
#if USE_OLD_HTML_HELP
|
2000-03-08 13:04:51 +00:00
|
|
|
menuFile->AppendSeparator();
|
|
|
|
menuFile->Append(HelpDemo_Html_Help_Index, "HTML &Help Index...");
|
|
|
|
menuFile->Append(HelpDemo_Html_Help_Classes, "HTML &Help on Classes...");
|
|
|
|
menuFile->Append(HelpDemo_Html_Help_Functions, "HTML &Help on Functions...");
|
|
|
|
menuFile->Append(HelpDemo_Html_Help_Help, "HTML &About Help Demo...");
|
|
|
|
menuFile->Append(HelpDemo_Html_Help_Search, "HTML &Search help...");
|
2000-07-15 19:51:35 +00:00
|
|
|
#endif
|
2000-03-09 20:15:44 +00:00
|
|
|
menuFile->AppendSeparator();
|
|
|
|
menuFile->Append(HelpDemo_Advanced_Html_Help_Index, "Advanced HTML &Help Index...");
|
|
|
|
menuFile->Append(HelpDemo_Advanced_Html_Help_Classes, "Advanced HTML &Help on Classes...");
|
|
|
|
menuFile->Append(HelpDemo_Advanced_Html_Help_Functions, "Advanced HTML &Help on Functions...");
|
|
|
|
menuFile->Append(HelpDemo_Advanced_Html_Help_Help, "Advanced HTML &About Help Demo...");
|
|
|
|
menuFile->Append(HelpDemo_Advanced_Html_Help_Search, "Advanced HTML &Search help...");
|
2000-03-08 13:04:51 +00:00
|
|
|
#endif
|
|
|
|
|
2000-07-15 19:51:35 +00:00
|
|
|
#if wxUSE_MS_HTML_HELP
|
|
|
|
menuFile->AppendSeparator();
|
|
|
|
menuFile->Append(HelpDemo_MS_Html_Help_Index, "MS HTML &Help Index...");
|
|
|
|
menuFile->Append(HelpDemo_MS_Html_Help_Classes, "MS HTML &Help on Classes...");
|
|
|
|
menuFile->Append(HelpDemo_MS_Html_Help_Functions, "MS HTML &Help on Functions...");
|
|
|
|
menuFile->Append(HelpDemo_MS_Html_Help_Help, "MS HTML &About Help Demo...");
|
|
|
|
menuFile->Append(HelpDemo_MS_Html_Help_Search, "MS HTML &Search help...");
|
|
|
|
#endif
|
|
|
|
|
1999-07-18 18:09:46 +00:00
|
|
|
#ifndef __WXMSW__
|
1999-11-08 15:06:41 +00:00
|
|
|
#if !wxUSE_HTML
|
1998-11-10 21:22:22 +00:00
|
|
|
menuFile->AppendSeparator();
|
1999-02-18 14:55:34 +00:00
|
|
|
menuFile->Append(HelpDemo_Help_KDE, "Use &KDE");
|
|
|
|
menuFile->Append(HelpDemo_Help_GNOME, "Use &GNOME");
|
|
|
|
menuFile->Append(HelpDemo_Help_Netscape, "Use &Netscape");
|
1999-07-18 18:09:46 +00:00
|
|
|
#endif
|
1999-02-18 14:55:34 +00:00
|
|
|
#endif
|
|
|
|
menuFile->AppendSeparator();
|
|
|
|
menuFile->Append(HelpDemo_Quit, "E&xit");
|
1998-11-10 21:22:22 +00:00
|
|
|
|
|
|
|
// now append the freshly created menu to the menu bar...
|
|
|
|
wxMenuBar *menuBar = new wxMenuBar;
|
|
|
|
menuBar->Append(menuFile, "&File");
|
|
|
|
|
|
|
|
// ... and attach this menu bar to the frame
|
|
|
|
SetMenuBar(menuBar);
|
|
|
|
|
|
|
|
// create a status bar just for fun (by default with 1 pane only)
|
|
|
|
CreateStatusBar();
|
|
|
|
SetStatusText("Welcome to wxWindows!");
|
|
|
|
|
|
|
|
// now create some controls
|
|
|
|
|
|
|
|
// a panel first - if there were several controls, it would allow us to
|
|
|
|
// navigate between them from the keyboard
|
|
|
|
wxPanel *panel = new wxPanel(this, -1, wxPoint(0, 0), wxSize(400, 200));
|
|
|
|
|
|
|
|
// and a static control whose parent is the panel
|
|
|
|
(void)new wxStaticText(panel, -1, "Hello, world!", wxPoint(10, 10));
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// event handlers
|
|
|
|
|
|
|
|
void MyFrame::OnQuit(wxCommandEvent& WXUNUSED(event))
|
|
|
|
{
|
|
|
|
// TRUE is to force the frame to close
|
|
|
|
Close(TRUE);
|
|
|
|
}
|
|
|
|
|
|
|
|
void MyFrame::OnHelp(wxCommandEvent& event)
|
|
|
|
{
|
2000-03-09 23:41:57 +00:00
|
|
|
ShowHelp(event.GetId(), m_help);
|
|
|
|
}
|
|
|
|
|
2000-09-06 09:45:24 +00:00
|
|
|
void MyFrame::OnShowContextHelp(wxCommandEvent& event)
|
|
|
|
{
|
|
|
|
// This starts context help mode, then the user
|
|
|
|
// clicks on a window to send a help message
|
|
|
|
wxContextHelp contextHelp(this);
|
|
|
|
}
|
|
|
|
|
|
|
|
void MyFrame::OnContextHelp(wxHelpEvent& event)
|
|
|
|
{
|
|
|
|
// In a real app, if we didn't recognise this ID, we should call event.Skip()
|
|
|
|
wxString msg;
|
|
|
|
msg.Printf(wxT("We should now display help for window %d"), event.GetId());
|
|
|
|
wxMessageBox(msg);
|
2000-09-06 13:23:21 +00:00
|
|
|
//wxToolTip::Enable(TRUE);
|
|
|
|
//SetToolTip(msg);
|
2000-09-06 09:45:24 +00:00
|
|
|
}
|
|
|
|
|
2000-03-09 23:41:57 +00:00
|
|
|
void MyFrame::OnHtmlHelp(wxCommandEvent& event)
|
|
|
|
{
|
2000-07-15 19:51:35 +00:00
|
|
|
#if USE_HTML_HELP && USE_OLD_HTML_HELP
|
2000-03-09 23:41:57 +00:00
|
|
|
ShowHelp(event.GetId(), m_htmlHelp);
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
|
|
|
void MyFrame::OnAdvancedHtmlHelp(wxCommandEvent& event)
|
|
|
|
{
|
|
|
|
#if USE_HTML_HELP
|
|
|
|
ShowHelp(event.GetId(), m_advancedHtmlHelp);
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
2000-07-15 19:51:35 +00:00
|
|
|
void MyFrame::OnMSHtmlHelp(wxCommandEvent& event)
|
|
|
|
{
|
|
|
|
#if wxUSE_MS_HTML_HELP
|
|
|
|
ShowHelp(event.GetId(), m_msHtmlHelp);
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
Notes: ShowHelp uses section ids for displaying particular topics,
|
|
|
|
but you might want to use a unique keyword to display a topic, instead.
|
|
|
|
|
|
|
|
Section ids are specified as follows for the different formats.
|
|
|
|
|
|
|
|
WinHelp
|
|
|
|
|
|
|
|
The [MAP] section specifies the topic to integer id mapping, e.g.
|
|
|
|
|
|
|
|
[MAP]
|
|
|
|
#define intro 100
|
|
|
|
#define functions 1
|
|
|
|
#define classes 2
|
|
|
|
#define about 3
|
|
|
|
|
|
|
|
The identifier name corresponds to the label used for that topic.
|
|
|
|
You could also put these in a .h file and #include it in both the MAP
|
|
|
|
section and your C++ source.
|
|
|
|
|
|
|
|
Note that Tex2RTF doesn't currently generate the MAP section automatically.
|
|
|
|
|
|
|
|
MS HTML Help
|
|
|
|
|
|
|
|
The [MAP] section specifies the HTML filename root to integer id mapping, e.g.
|
|
|
|
|
|
|
|
[MAP]
|
|
|
|
#define doc1 100
|
|
|
|
#define doc3 1
|
|
|
|
#define doc2 2
|
|
|
|
#define doc4 3
|
|
|
|
|
|
|
|
The identifier name corresponds to the HTML filename used for that topic.
|
|
|
|
You could also put these in a .h file and #include it in both the MAP
|
|
|
|
section and your C++ source.
|
|
|
|
|
|
|
|
Note that Tex2RTF doesn't currently generate the MAP section automatically.
|
|
|
|
|
|
|
|
Simple wxHTML Help and External HTML Help
|
|
|
|
|
|
|
|
A wxhelp.map file is used, for example:
|
|
|
|
|
|
|
|
0 wx.htm ; wxWindows: Help index; additional keywords like overview
|
|
|
|
1 wx204.htm ; wxWindows Function Reference
|
|
|
|
2 wx34.htm ; wxWindows Class Reference
|
|
|
|
|
|
|
|
Note that Tex2RTF doesn't currently generate the MAP section automatically.
|
|
|
|
|
|
|
|
Advanced HTML Help
|
|
|
|
|
|
|
|
An extension to the .hhc file format is used, specifying a new parameter
|
|
|
|
with name="ID":
|
|
|
|
|
|
|
|
<OBJECT type="text/sitemap">
|
|
|
|
<param name="Local" value="doc2.htm#classes">
|
|
|
|
<param name="Name" value="Classes">
|
|
|
|
<param name="ID" value=2>
|
|
|
|
</OBJECT>
|
|
|
|
|
|
|
|
Again, this is not generated automatically by Tex2RTF, though it could
|
|
|
|
be added quite easily.
|
|
|
|
|
|
|
|
Unfortunately adding the ID parameters appears to interfere with MS HTML Help,
|
|
|
|
so you should not try to compile a .chm file from a .hhc file with
|
|
|
|
this extension, or the contents will be messed up.
|
|
|
|
*/
|
|
|
|
|
2000-03-09 23:41:57 +00:00
|
|
|
void MyFrame::ShowHelp(int commandId, wxHelpControllerBase& helpController)
|
|
|
|
{
|
|
|
|
switch(commandId)
|
1998-11-10 21:22:22 +00:00
|
|
|
{
|
1999-02-18 14:55:34 +00:00
|
|
|
case HelpDemo_Help_Classes:
|
2000-03-09 23:41:57 +00:00
|
|
|
case HelpDemo_Html_Help_Classes:
|
|
|
|
case HelpDemo_Advanced_Html_Help_Classes:
|
2000-07-15 19:51:35 +00:00
|
|
|
case HelpDemo_MS_Html_Help_Classes:
|
2000-03-09 23:41:57 +00:00
|
|
|
helpController.DisplaySection(2);
|
2000-07-15 19:51:35 +00:00
|
|
|
//helpController.DisplaySection("Classes"); // An alternative form for most controllers
|
2000-03-08 13:04:51 +00:00
|
|
|
|
|
|
|
break;
|
2000-03-09 23:41:57 +00:00
|
|
|
case HelpDemo_Help_Functions:
|
2000-03-08 13:04:51 +00:00
|
|
|
case HelpDemo_Html_Help_Functions:
|
2000-03-09 23:41:57 +00:00
|
|
|
case HelpDemo_Advanced_Html_Help_Functions:
|
2000-07-15 19:51:35 +00:00
|
|
|
case HelpDemo_MS_Html_Help_Functions:
|
2000-03-09 23:41:57 +00:00
|
|
|
helpController.DisplaySection(1);
|
2000-07-15 19:51:35 +00:00
|
|
|
//helpController.DisplaySection("Functions"); // An alternative form for most controllers
|
2000-03-08 13:04:51 +00:00
|
|
|
break;
|
2000-03-09 23:41:57 +00:00
|
|
|
case HelpDemo_Help_Help:
|
2000-03-08 13:04:51 +00:00
|
|
|
case HelpDemo_Html_Help_Help:
|
2000-03-09 23:41:57 +00:00
|
|
|
case HelpDemo_Advanced_Html_Help_Help:
|
2000-07-15 19:51:35 +00:00
|
|
|
case HelpDemo_MS_Html_Help_Help:
|
2000-03-09 23:41:57 +00:00
|
|
|
helpController.DisplaySection(3);
|
2000-07-15 19:51:35 +00:00
|
|
|
//helpController.DisplaySection("About"); // An alternative form for most controllers
|
2000-03-08 13:04:51 +00:00
|
|
|
break;
|
|
|
|
|
2000-03-09 23:41:57 +00:00
|
|
|
case HelpDemo_Help_Search:
|
2000-03-08 13:04:51 +00:00
|
|
|
case HelpDemo_Html_Help_Search:
|
2000-03-09 23:41:57 +00:00
|
|
|
case HelpDemo_Advanced_Html_Help_Search:
|
2000-07-15 19:51:35 +00:00
|
|
|
case HelpDemo_MS_Html_Help_Search:
|
2000-03-08 13:04:51 +00:00
|
|
|
{
|
|
|
|
wxString key = wxGetTextFromUser("Search for?",
|
|
|
|
"Search help for keyword",
|
|
|
|
"",
|
|
|
|
this);
|
|
|
|
if(! key.IsEmpty())
|
2000-03-09 23:41:57 +00:00
|
|
|
helpController.KeywordSearch(key);
|
2000-03-08 13:04:51 +00:00
|
|
|
}
|
|
|
|
break;
|
2000-03-09 23:41:57 +00:00
|
|
|
|
|
|
|
case HelpDemo_Help_Index:
|
2000-03-08 13:04:51 +00:00
|
|
|
case HelpDemo_Html_Help_Index:
|
2000-03-09 23:41:57 +00:00
|
|
|
case HelpDemo_Advanced_Html_Help_Index:
|
2000-07-15 19:51:35 +00:00
|
|
|
case HelpDemo_MS_Html_Help_Index:
|
2000-03-09 23:41:57 +00:00
|
|
|
helpController.DisplayContents();
|
2000-03-08 13:04:51 +00:00
|
|
|
break;
|
|
|
|
|
2000-03-09 23:41:57 +00:00
|
|
|
// These three calls are only used by wxExtHelpController
|
2000-03-09 20:15:44 +00:00
|
|
|
|
2000-03-09 23:41:57 +00:00
|
|
|
case HelpDemo_Help_KDE:
|
|
|
|
helpController.SetViewer("kdehelp");
|
2000-03-09 20:15:44 +00:00
|
|
|
break;
|
2000-03-09 23:41:57 +00:00
|
|
|
case HelpDemo_Help_GNOME:
|
|
|
|
helpController.SetViewer("gnome-help-browser");
|
2000-03-09 20:15:44 +00:00
|
|
|
break;
|
2000-03-09 23:41:57 +00:00
|
|
|
case HelpDemo_Help_Netscape:
|
|
|
|
helpController.SetViewer("netscape", wxHELP_NETSCAPE);
|
2000-03-09 20:15:44 +00:00
|
|
|
break;
|
|
|
|
|
|
|
|
default:
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|