]> git.saurik.com Git - wxWidgets.git/blame - src/palmos/help.cpp
Applied patch [ 1382329 ] [msw] SetScrollbar: Set thumbsize before triggering events
[wxWidgets.git] / src / palmos / help.cpp
CommitLineData
ffecfa5a 1/////////////////////////////////////////////////////////////////////////////
e2731512 2// Name: src/palmos/helpwin.cpp
ffecfa5a 3// Purpose: Help system: WinHelp implementation
e2731512 4// Author: William Osborne - minimal working wxPalmOS port
ffecfa5a
JS
5// Modified by:
6// Created: 10/13/04
e2731512 7// RCS-ID: $Id$
ffecfa5a
JS
8// Copyright: (c) William Osborne
9// Licence: wxWindows licence
10/////////////////////////////////////////////////////////////////////////////
11
ffecfa5a
JS
12// For compilers that support precompilation, includes "wx.h".
13#include "wx/wxprec.h"
14
15#ifdef __BORLANDC__
16#pragma hdrstop
17#endif
18
19#ifndef WX_PRECOMP
20#include "wx/defs.h"
21#endif
22
23#if wxUSE_HELP
24
25#include "wx/filefn.h"
ffecfa5a
JS
26
27#include <time.h>
28
29#include "wx/palmos/private.h"
30
31#include <string.h>
32
33
34IMPLEMENT_DYNAMIC_CLASS(wxWinHelpController, wxHelpControllerBase)
35
36bool wxWinHelpController::Initialize(const wxString& filename)
37{
38 return false;
39}
40
41bool wxWinHelpController::LoadFile(const wxString& file)
42{
43 return false;
44}
45
46bool wxWinHelpController::DisplayContents(void)
47{
48 return false;
49}
50
51bool wxWinHelpController::DisplaySection(int section)
52{
53 return false;
54}
55
56bool wxWinHelpController::DisplayContextPopup(int contextId)
57{
58 return false;
59}
60
61bool wxWinHelpController::DisplayBlock(long block)
62{
63 return false;
64}
65
66bool wxWinHelpController::KeywordSearch(const wxString& k,
67 wxHelpSearchMode WXUNUSED(mode))
68{
69 return false;
70}
71
72bool wxWinHelpController::Quit(void)
73{
74 return false;
75}
76
77wxString wxWinHelpController::GetValidFilename(const wxString& file) const
78{
79 wxString ret;
80
81 return ret;
82}
83
84#endif // wxUSE_HELP