a125b1b9d5
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@19620 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
104 lines
2.3 KiB
C++
104 lines
2.3 KiB
C++
/////////////////////////////////////////////////////////////////////////////
|
|
// Name: helpview.h
|
|
// Purpose: HelpView application class
|
|
// Author: Vaclav Slavik, Julian Smart
|
|
// Modified by:
|
|
// Created: 2002-07-09
|
|
// RCS-ID: $Id$
|
|
// Copyright: (c) 2002 Vaclav Slavik, Julian Smart and others
|
|
// Licence: wxWindows licence
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
|
|
#ifndef _WX_HELPVIEW_H_
|
|
#define _WX_HELPVIEW_H_
|
|
|
|
#if defined(__GNUG__) && !defined(__APPLE__)
|
|
#pragma interface "help.cpp"
|
|
#endif
|
|
|
|
#define hvVERSION 1.03
|
|
|
|
// If 1, start a server to allow this to be used
|
|
// as an external help viewer.
|
|
#if defined(__WXMAC__) && !defined(__UNIX__)
|
|
#define hvUSE_IPC 0
|
|
#else
|
|
#define hvUSE_IPC 1
|
|
#endif
|
|
|
|
#if hvUSE_IPC
|
|
#include <wx/ipc.h>
|
|
|
|
class hvConnection;
|
|
class hvServer;
|
|
#endif
|
|
|
|
/*!
|
|
* The helpview application class.
|
|
*/
|
|
|
|
class hvApp : public wxApp
|
|
{
|
|
public:
|
|
hvApp();
|
|
|
|
/// Initialise the application.
|
|
virtual bool OnInit();
|
|
|
|
/// Clean up the application's data.
|
|
virtual int OnExit();
|
|
|
|
#ifdef __WXMAC__
|
|
/// Respond to Apple Event for opening a document
|
|
virtual void MacOpenFile(const wxString& filename);
|
|
#endif
|
|
|
|
/// Prompt the user for a book to open
|
|
bool OpenBook(wxHtmlHelpController* controller);
|
|
|
|
/// Returns the help controller.
|
|
wxHtmlHelpController* GetHelpController() { return m_helpController; }
|
|
|
|
#if hvUSE_IPC
|
|
/// Returns the list of connections.
|
|
wxList& GetConnections() { return m_connections; }
|
|
#endif
|
|
|
|
private:
|
|
wxHtmlHelpController* m_helpController;
|
|
|
|
#if hvUSE_IPC
|
|
wxList m_connections;
|
|
hvServer* m_server;
|
|
#endif
|
|
|
|
};
|
|
|
|
#if hvUSE_IPC
|
|
class hvConnection : public wxConnection
|
|
{
|
|
public:
|
|
hvConnection();
|
|
~hvConnection();
|
|
|
|
bool OnExecute(const wxString& topic, wxChar*data, int size, wxIPCFormat format);
|
|
wxChar *OnRequest(const wxString& topic, const wxString& item, int *size, wxIPCFormat format);
|
|
bool OnPoke(const wxString& topic, const wxString& item, wxChar *data, int size, wxIPCFormat format);
|
|
bool OnStartAdvise(const wxString& topic, const wxString& item);
|
|
|
|
private:
|
|
};
|
|
|
|
class hvServer: public wxServer
|
|
{
|
|
public:
|
|
wxConnectionBase *OnAcceptConnection(const wxString& topic);
|
|
};
|
|
|
|
|
|
#endif
|
|
|
|
#endif
|
|
// _WX_HELPVIEW_H_
|
|
|