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