]>
git.saurik.com Git - wxWidgets.git/blob - utils/helpview/src/helpview.cpp
0b4aaff796e45fcef058ef33c2c774c66bab5330
1 /////////////////////////////////////////////////////////////////////////////
3 // Purpose: HelpView application
4 // A standalone viewer for wxHTML Help (.htb) files
5 // Author: Vaclav Slavik, Julian Smart
9 // Copyright: (c) 2002 Vaclav Slavik, Julian Smart and others
10 // Licence: wxWindows licence
11 /////////////////////////////////////////////////////////////////////////////
14 #pragma implementation "help.cpp"
17 // For compilers that support precompilation, includes "wx/wx.h".
18 #include "wx/wxprec.h"
24 // for all others, include the necessary headers (this file is usually all you
25 // need because it includes almost all "standard" wxWindows headers
31 #include "wx/wxhtml.h"
32 #include "wx/fs_zip.h"
34 #include "wx/artprov.h"
35 #include "wx/filedlg.h"
37 class AlternateArtProvider
: public wxArtProvider
40 virtual wxBitmap
CreateBitmap(const wxArtID
& id
, const wxArtClient
& client
,
44 // ----------------------------------------------------------------------------
46 // ----------------------------------------------------------------------------
55 delete wxLog::SetActiveTarget(new wxLogStderr
); // So dialog boxes aren't used
58 wxArtProvider::PushProvider(new AlternateArtProvider
);
60 wxInitAllImageHandlers();
61 wxFileSystem::AddHandler(new wxZipFSHandler
);
63 SetVendorName("wxWindows");
64 SetAppName("wxHTMLHelp");
65 wxConfig::Get(); // create an instance
67 help
= new wxHtmlHelpController(
68 wxHF_DEFAULT_STYLE
|wxHF_FLAT_TOOLBAR
|wxHF_OPEN_FILES
71 help
->SetTitleFormat(wxT("%s"));
77 for (int i
= 1; i
< argc
; i
++)
78 help
-> AddBook(argv
[i
]);
81 delete wxLog::SetActiveTarget(new wxLogGui
);
84 help
-> DisplayContents();
93 delete wxConfig::Set(NULL
);
98 bool hvApp::OpenBook(wxHtmlHelpController
* controller
)
100 wxString s
= wxFileSelector(_("Open help file"),
105 "Help books (*.htb)|*.htb|Help books (*.zip)|*.zip|\
106 HTML Help Project (*.hhp)|*.hhp"),
107 wxOPEN
| wxFILE_MUST_EXIST
,
112 wxString ext
= s
.Right(4).Lower();
113 if (ext
== _T(".zip") || ext
== _T(".htb") || ext
== _T(".hhp"))
116 controller
->AddBook(s
);
127 // ---------------------------------------------------------------------
129 // ---------------------------------------------------------------------
131 // Standard macro for getting a resource from XPM file:
132 #define ART(artId, xpmRc) \
133 if ( id == artId ) return wxBitmap(xpmRc##_xpm);
135 // Compatibility hack to use wxApp::GetStdIcon of overriden by the user
136 #if WXWIN_COMPATIBILITY_2_2
137 #define GET_STD_ICON_FROM_APP(iconId) \
138 if ( client == wxART_MESSAGE_BOX ) \
140 wxIcon icon = wxTheApp->GetStdIcon(iconId); \
144 bmp.CopyFromIcon(icon); \
149 #define GET_STD_ICON_FROM_APP(iconId)
152 // There are two ways of getting the standard icon: either via XPMs or via
153 // wxIcon ctor. This depends on the platform:
154 #if defined(__WXUNIVERSAL__)
155 #define CREATE_STD_ICON(iconId, xpmRc) return wxNullBitmap;
156 #elif defined(__WXGTK__) || defined(__WXMOTIF__)
157 #define CREATE_STD_ICON(iconId, xpmRc) return wxBitmap(xpmRc##_xpm);
159 #define CREATE_STD_ICON(iconId, xpmRc) \
161 wxIcon icon(_T(iconId)); \
163 bmp.CopyFromIcon(icon); \
168 // Macro used in CreateBitmap to get wxICON_FOO icons:
169 #define ART_MSGBOX(artId, iconId, xpmRc) \
172 GET_STD_ICON_FROM_APP(iconId) \
173 CREATE_STD_ICON(#iconId, xpmRc) \
176 // ---------------------------------------------------------------------
178 // ---------------------------------------------------------------------
180 // XPM hack: make the arrays const
181 //#define static static const
183 #include "bitmaps/helpback.xpm"
184 #include "bitmaps/helpbook.xpm"
185 #include "bitmaps/helpdown.xpm"
186 #include "bitmaps/helpforward.xpm"
187 #include "bitmaps/helpoptions.xpm"
188 #include "bitmaps/helppage.xpm"
189 #include "bitmaps/helpsidepanel.xpm"
190 #include "bitmaps/helpup.xpm"
191 #include "bitmaps/helpuplevel.xpm"
192 #include "bitmaps/helpicon.xpm"
193 #include "bitmaps/helpopen.xpm"
197 // ---------------------------------------------------------------------
198 // CreateBitmap routine
199 // ---------------------------------------------------------------------
201 wxBitmap
AlternateArtProvider::CreateBitmap(const wxArtID
& id
,
202 const wxArtClient
& client
,
203 const wxSize
& WXUNUSED(size
))
205 ART(wxART_HELP_SIDE_PANEL
, helpsidepanel
)
206 ART(wxART_HELP_SETTINGS
, helpoptions
)
207 ART(wxART_HELP_BOOK
, helpbook
)
208 ART(wxART_HELP_FOLDER
, helpbook
)
209 ART(wxART_HELP_PAGE
, helppage
)
210 //ART(wxART_ADD_BOOKMARK, addbookm)
211 //ART(wxART_DEL_BOOKMARK, delbookm)
212 ART(wxART_GO_BACK
, helpback
)
213 ART(wxART_GO_FORWARD
, helpforward
)
214 ART(wxART_GO_UP
, helpup
)
215 ART(wxART_GO_DOWN
, helpdown
)
216 ART(wxART_GO_TO_PARENT
, helpuplevel
)
217 ART(wxART_FILE_OPEN
, helpopen
)
218 if (client
== wxART_HELP_BROWSER
)
220 ART(wxART_FRAME_ICON
, helpicon
)
223 //ART(wxART_GO_HOME, home)
225 // Any wxWindows icons not implemented here
226 // will be provided by the default art provider.