]>
Commit | Line | Data |
---|---|---|
ffecfa5a JS |
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 | #include "wx/msw/helpwin.h" | |
31 | ||
32 | #include <time.h> | |
33 | ||
34 | #include "wx/palmos/private.h" | |
35 | ||
36 | #include <string.h> | |
37 | ||
38 | ||
39 | IMPLEMENT_DYNAMIC_CLASS(wxWinHelpController, wxHelpControllerBase) | |
40 | ||
41 | bool wxWinHelpController::Initialize(const wxString& filename) | |
42 | { | |
43 | return false; | |
44 | } | |
45 | ||
46 | bool wxWinHelpController::LoadFile(const wxString& file) | |
47 | { | |
48 | return false; | |
49 | } | |
50 | ||
51 | bool wxWinHelpController::DisplayContents(void) | |
52 | { | |
53 | return false; | |
54 | } | |
55 | ||
56 | bool wxWinHelpController::DisplaySection(int section) | |
57 | { | |
58 | return false; | |
59 | } | |
60 | ||
61 | bool wxWinHelpController::DisplayContextPopup(int contextId) | |
62 | { | |
63 | return false; | |
64 | } | |
65 | ||
66 | bool wxWinHelpController::DisplayBlock(long block) | |
67 | { | |
68 | return false; | |
69 | } | |
70 | ||
71 | bool wxWinHelpController::KeywordSearch(const wxString& k, | |
72 | wxHelpSearchMode WXUNUSED(mode)) | |
73 | { | |
74 | return false; | |
75 | } | |
76 | ||
77 | bool wxWinHelpController::Quit(void) | |
78 | { | |
79 | return false; | |
80 | } | |
81 | ||
82 | wxString wxWinHelpController::GetValidFilename(const wxString& file) const | |
83 | { | |
84 | wxString ret; | |
85 | ||
86 | return ret; | |
87 | } | |
88 | ||
89 | #endif // wxUSE_HELP |