mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-01-13 17:49:14 +01:00
d14efe561b
long become wxWidgets 2.9.2, which in turn is expected to be the last 2.9 release before the 3.0 stable release. Since the full wxWidgets distribution is rather large, I have imported only the parts that we use, on a subdirectory basis: art include/wx/*.* include/wx/aui include/wx/cocoa include/wx/generic include/wx/gtk include/wx/meta include/wx/msw include/wx/osx include/wx/persist include/wx/private include/wx/protocol include/wx/unix src/aui src/common src/generic src/gtk src/msw src/osx src/unix git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@7380 8ced0084-cf51-0410-be5f-012b33b47a6e
107 lines
3.5 KiB
C++
107 lines
3.5 KiB
C++
/////////////////////////////////////////////////////////////////////////////
|
|
// Name: wx/generic/helpext.h
|
|
// Purpose: an external help controller for wxWidgets
|
|
// Author: Karsten Ballueder (Ballueder@usa.net)
|
|
// Modified by:
|
|
// Copyright: (c) Karsten Ballueder 1998
|
|
// RCS-ID: $Id: helpext.h 58227 2009-01-19 13:55:27Z VZ $
|
|
// Licence: wxWindows licence
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
|
|
#ifndef __WX_HELPEXT_H_
|
|
#define __WX_HELPEXT_H_
|
|
|
|
#if wxUSE_HELP
|
|
|
|
|
|
// ----------------------------------------------------------------------------
|
|
// headers
|
|
// ----------------------------------------------------------------------------
|
|
|
|
#include "wx/helpbase.h"
|
|
|
|
|
|
// ----------------------------------------------------------------------------
|
|
// wxExtHelpController
|
|
// ----------------------------------------------------------------------------
|
|
|
|
// This class implements help via an external browser.
|
|
class WXDLLIMPEXP_ADV wxExtHelpController : public wxHelpControllerBase
|
|
{
|
|
public:
|
|
wxExtHelpController(wxWindow* parentWindow = NULL);
|
|
virtual ~wxExtHelpController();
|
|
|
|
#if WXWIN_COMPATIBILITY_2_8
|
|
wxDEPRECATED(void SetBrowser(const wxString& browsername = wxEmptyString, bool isNetscape = false) );
|
|
#endif
|
|
|
|
// Set viewer: new name for SetBrowser
|
|
virtual void SetViewer(const wxString& viewer = wxEmptyString,
|
|
long flags = wxHELP_NETSCAPE);
|
|
|
|
virtual bool Initialize(const wxString& dir, int WXUNUSED(server))
|
|
{ return Initialize(dir); }
|
|
|
|
virtual bool Initialize(const wxString& dir);
|
|
virtual bool LoadFile(const wxString& file = wxEmptyString);
|
|
virtual bool DisplayContents(void);
|
|
virtual bool DisplaySection(int sectionNo);
|
|
virtual bool DisplaySection(const wxString& section);
|
|
virtual bool DisplayBlock(long blockNo);
|
|
virtual bool KeywordSearch(const wxString& k,
|
|
wxHelpSearchMode mode = wxHELP_SEARCH_ALL);
|
|
|
|
virtual bool Quit(void);
|
|
virtual void OnQuit(void);
|
|
|
|
virtual bool DisplayHelp(const wxString &) ;
|
|
|
|
virtual void SetFrameParameters(const wxString& WXUNUSED(title),
|
|
const wxSize& WXUNUSED(size),
|
|
const wxPoint& WXUNUSED(pos) = wxDefaultPosition,
|
|
bool WXUNUSED(newFrameEachTime) = false)
|
|
{
|
|
// does nothing by default
|
|
}
|
|
|
|
virtual wxFrame *GetFrameParameters(wxSize *WXUNUSED(size) = NULL,
|
|
wxPoint *WXUNUSED(pos) = NULL,
|
|
bool *WXUNUSED(newFrameEachTime) = NULL)
|
|
{
|
|
return NULL; // does nothing by default
|
|
}
|
|
|
|
protected:
|
|
// Filename of currently active map file.
|
|
wxString m_helpDir;
|
|
|
|
// How many entries do we have in the map file?
|
|
int m_NumOfEntries;
|
|
|
|
// A list containing all id,url,documentation triples.
|
|
wxList *m_MapList;
|
|
|
|
private:
|
|
// parse a single line of the map file (called by LoadFile())
|
|
//
|
|
// return true if the line was valid or false otherwise
|
|
bool ParseMapFileLine(const wxString& line);
|
|
|
|
// Deletes the list and all objects.
|
|
void DeleteList(void);
|
|
|
|
|
|
// How to call the html viewer.
|
|
wxString m_BrowserName;
|
|
|
|
// Is the viewer a variant of netscape?
|
|
bool m_BrowserIsNetscape;
|
|
|
|
DECLARE_CLASS(wxExtHelpController)
|
|
};
|
|
|
|
#endif // wxUSE_HELP
|
|
|
|
#endif // __WX_HELPEXT_H_
|