This keyword is not expanded by Git which means it's not replaced with the correct revision value in the releases made using git-based scripts and it's confusing to have lines with unexpanded "$Id$" in the released files. As expanding them with Git is not that simple (it could be done with git archive and export-subst attribute) and there are not many benefits in having them in the first place, just remove all these lines. If nothing else, this will make an eventual transition to Git simpler. Closes #14487. git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@74602 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
88 lines
1.8 KiB
C++
88 lines
1.8 KiB
C++
/////////////////////////////////////////////////////////////////////////////
|
|
// Name: helpview.h
|
|
// Purpose: HelpView application class
|
|
// Author: Vaclav Slavik, Julian Smart
|
|
// Modified by:
|
|
// Created: 2002-07-09
|
|
// Copyright: (c) 2002 Vaclav Slavik, Julian Smart and others
|
|
// Licence: wxWindows licence
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
|
|
#ifndef _WX_HELPVIEW_H_
|
|
#define _WX_HELPVIEW_H_
|
|
|
|
#define hvVERSION 1.04
|
|
|
|
#if wxUSE_IPC
|
|
#include <wx/ipc.h>
|
|
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 MacOpenFiles(const wxArrayString& fileNames);
|
|
#endif
|
|
|
|
/// Prompt the user for a book to open
|
|
bool OpenBook(wxHtmlHelpController* controller);
|
|
|
|
/// Returns the help controller.
|
|
wxHtmlHelpController* GetHelpController() { return m_helpController; }
|
|
|
|
#if wxUSE_IPC
|
|
/// Returns the list of connections.
|
|
wxList& GetConnections() { return m_connections; }
|
|
#endif
|
|
|
|
private:
|
|
wxHtmlHelpController* m_helpController;
|
|
|
|
#if wxUSE_IPC
|
|
wxList m_connections;
|
|
hvServer* m_server;
|
|
#endif
|
|
|
|
};
|
|
|
|
#if wxUSE_IPC
|
|
class hvConnection : public wxConnection
|
|
{
|
|
public:
|
|
hvConnection();
|
|
virtual ~hvConnection();
|
|
|
|
bool OnExec(const wxString& topic, const wxString& data);
|
|
bool OnPoke(const wxString& topic, const wxString& item,
|
|
const void *data, size_t size, wxIPCFormat format);
|
|
|
|
private:
|
|
};
|
|
|
|
class hvServer: public wxServer
|
|
{
|
|
public:
|
|
wxConnectionBase *OnAcceptConnection(const wxString& topic);
|
|
};
|
|
|
|
|
|
#endif
|
|
|
|
#endif
|
|
// _WX_HELPVIEW_H_
|
|
|