]>
Commit | Line | Data |
---|---|---|
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 | ||
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" | |
ffecfa5a JS |
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 |