]> git.saurik.com Git - wxWidgets.git/blame - include/wx/mac/helpxxxx.h
font-encodings additions
[wxWidgets.git] / include / wx / mac / helpxxxx.h
CommitLineData
0dbd6262
SC
1/////////////////////////////////////////////////////////////////////////////
2// Name: helpxxxx.h
3// Purpose: Help system: native implementation for your system. Replace
4// XXXX with suitable name.
a31a5f85 5// Author: Stefan Csomor
0dbd6262 6// Modified by:
a31a5f85 7// Created: 1998-01-01
0dbd6262 8// RCS-ID: $Id$
a31a5f85 9// Copyright: (c) Stefan Csomor
e40298d5 10// Licence: wxWindows licence
0dbd6262
SC
11/////////////////////////////////////////////////////////////////////////////
12
13#ifndef _WX_HELPXXXX_H_
14#define _WX_HELPXXXX_H_
15
12028905 16#if defined(__GNUG__) && !defined(NO_GCC_PRAGMA)
0dbd6262
SC
17#pragma interface "helpxxxx.h"
18#endif
19
20#include "wx/wx.h"
21
22#include "wx/helpbase.h"
23
24class WXDLLEXPORT wxXXXXHelpController: public wxHelpControllerBase
25{
26 DECLARE_CLASS(wxXXXXHelpController)
27
28 public:
29 wxXXXXHelpController();
30 ~wxXXXXHelpController();
31
32 // Must call this to set the filename and server name
33 virtual bool Initialize(const wxString& file);
34
35 // If file is "", reloads file given in Initialize
36 virtual bool LoadFile(const wxString& file = "");
37 virtual bool DisplayContents();
38 virtual bool DisplaySection(int sectionNo);
39 virtual bool DisplayBlock(long blockNo);
69b5cec2
VS
40 virtual bool KeywordSearch(const wxString& k,
41 wxHelpSearchMode mode = wxHELP_SEARCH_ALL);
0dbd6262
SC
42
43 virtual bool Quit();
44 virtual void OnQuit();
45
46 inline wxString GetHelpFile() const { return m_helpFile; }
47
48protected:
49 wxString m_helpFile;
50};
51
52#endif
53 // _WX_HELPXXXX_H_