]> git.saurik.com Git - wxWidgets.git/blame - src/mac/classic/helpxxxx.cpp
fixing visibility checks for native toolbars
[wxWidgets.git] / src / mac / classic / helpxxxx.cpp
CommitLineData
2646f485
SC
1/////////////////////////////////////////////////////////////////////////////
2// Name: helpxxxx.cpp
3// Purpose: Help system: native implementation
4// Author: Stefan Csomor
5// Modified by:
6// Created: 1998-01-01
7// RCS-ID: $Id$
8// Copyright: (c) Stefan Csomor
65571936 9// Licence: wxWindows licence
2646f485
SC
10/////////////////////////////////////////////////////////////////////////////
11
12#ifdef __GNUG__
13#pragma implementation "helpxxxx.h"
14#endif
15
16#include "wx/stubs/helpxxxx.h"
17
18#include <string.h>
19
2646f485 20IMPLEMENT_DYNAMIC_CLASS(wxXXXXHelpController, wxHelpControllerBase)
2646f485
SC
21
22wxXXXXHelpController::wxXXXXHelpController()
23{
24 m_helpFile = "";
25}
26
27wxXXXXHelpController::~wxXXXXHelpController()
28{
29}
30
31bool wxXXXXHelpController::Initialize(const wxString& filename)
32{
33 m_helpFile = filename;
34 // TODO any other inits
35 return TRUE;
36}
37
38bool wxXXXXHelpController::LoadFile(const wxString& file)
39{
40 m_helpFile = file;
41 // TODO
42 return TRUE;
43}
44
45bool wxXXXXHelpController::DisplayContents()
46{
47 // TODO
48 return FALSE;
49}
50
51bool wxXXXXHelpController::DisplaySection(int section)
52{
53 // TODO
54 return FALSE;
55}
56
57bool wxXXXXHelpController::DisplayBlock(long block)
58{
59 // TODO
60 return FALSE;
61}
62
63bool wxXXXXHelpController::KeywordSearch(const wxString& k,
64 wxHelpSearchMode WXUNUSED(mode))
65{
66 if (m_helpFile == "") return FALSE;
67
68 // TODO
69 return FALSE;
70}
71
72// Can't close the help window explicitly in WinHelp
73bool wxXXXXHelpController::Quit()
74{
75 // TODO
76 return FALSE;
77}
78
79void wxXXXXHelpController::OnQuit()
80{
81}
82