]>
git.saurik.com Git - wxWidgets.git/blob - samples/html/helpview/helpview.cpp
2b2a2758596b0c06fc690ceec9ad8247a53b8289
2 /////////////////////////////////////////////////////////////////////////////
4 // Purpose: wxHtml help browser
5 /////////////////////////////////////////////////////////////////////////////
8 #pragma implementation "help.cpp"
9 #pragma interface "help.cpp"
12 // For compilers that support precompilation, includes "wx/wx.h".
13 #include "wx/wxprec.h"
19 // for all others, include the necessary headers (this file is usually all you
20 // need because it includes almost all "standard" wxWindows headers
26 #include "wx/wxhtml.h"
27 #include "wx/fs_zip.h"
29 #include "wx/artprov.h"
30 #include "wx/filedlg.h"
34 // - provide different icons.
35 // - add an open file icon for the toolbar.
36 // - use a flat toolbar style.
37 // - show a file selector if no file was given on the command line.
38 // - remove 'Help:' from the title bar.
40 // Set to 0 to revert to previous behaviour.
42 #define USE_ALTERNATE_UI 0
45 class AlternateArtProvider
: public wxArtProvider
48 virtual wxBitmap
CreateBitmap(const wxArtID
& id
, const wxArtClient
& client
,
53 // ----------------------------------------------------------------------------
55 // ----------------------------------------------------------------------------
58 // Define a new application type, each program should derive a class from wxApp
59 class MyApp
: public wxApp
62 // override base class virtuals
63 // ----------------------------
65 // this one is called on application startup and is a good place for the app
66 // initialization (doing it here and not in the ctor allows to have an error
67 // return: if OnInit() returns false, the application terminates)
69 virtual bool OnInit();
72 // Prompt the user for a book to open
73 bool OpenBook(wxHtmlHelpController
* controller
);
76 wxHtmlHelpController
*help
;
86 delete wxLog::SetActiveTarget(new wxLogStderr
); // So dialog boxes aren't used
90 wxArtProvider::PushProvider(new AlternateArtProvider
);
93 wxInitAllImageHandlers();
94 wxFileSystem::AddHandler(new wxZipFSHandler
);
96 SetVendorName("wxWindows");
97 SetAppName("wxHTMLHelp");
98 wxConfig::Get(); // create an instance
100 help
= new wxHtmlHelpController(
102 wxHF_DEFAULT_STYLE
|wxHF_FLAT_TOOLBAR
|wxHF_OPEN_FILES
107 help
->SetTitleFormat(wxT("%s"));
114 wxLogError(wxT("Usage : helpview <helpfile> [<more helpfiles>]"));
115 wxLogError(wxT(" helpfile may be .hhp, .zip or .htb"));
120 for (int i
= 1; i
< argc
; i
++)
121 help
-> AddBook(argv
[i
]);
124 delete wxLog::SetActiveTarget(new wxLogGui
);
127 help
-> DisplayContents();
136 delete wxConfig::Set(NULL
);
141 bool MyApp::OpenBook(wxHtmlHelpController
* controller
)
143 wxString s
= wxFileSelector(_("Open help file"),
148 "Help books (*.htb)|*.htb|Help books (*.zip)|*.zip|\
149 HTML Help Project (*.hhp)|*.hhp"),
150 wxOPEN
| wxFILE_MUST_EXIST
,
155 wxString ext
= s
.Right(4).Lower();
156 if (ext
== _T(".zip") || ext
== _T(".htb") || ext
== _T(".hhp"))
159 controller
->AddBook(s
);
172 // ---------------------------------------------------------------------
174 // ---------------------------------------------------------------------
176 // Standard macro for getting a resource from XPM file:
177 #define ART(artId, xpmRc) \
178 if ( id == artId ) return wxBitmap(xpmRc##_xpm);
180 // Compatibility hack to use wxApp::GetStdIcon of overriden by the user
181 #if WXWIN_COMPATIBILITY_2_2
182 #define GET_STD_ICON_FROM_APP(iconId) \
183 if ( client == wxART_MESSAGE_BOX ) \
185 wxIcon icon = wxTheApp->GetStdIcon(iconId); \
189 bmp.CopyFromIcon(icon); \
194 #define GET_STD_ICON_FROM_APP(iconId)
197 // There are two ways of getting the standard icon: either via XPMs or via
198 // wxIcon ctor. This depends on the platform:
199 #if defined(__WXUNIVERSAL__)
200 #define CREATE_STD_ICON(iconId, xpmRc) return wxNullBitmap;
201 #elif defined(__WXGTK__) || defined(__WXMOTIF__)
202 #define CREATE_STD_ICON(iconId, xpmRc) return wxBitmap(xpmRc##_xpm);
204 #define CREATE_STD_ICON(iconId, xpmRc) \
206 wxIcon icon(_T(iconId)); \
208 bmp.CopyFromIcon(icon); \
213 // Macro used in CreateBitmap to get wxICON_FOO icons:
214 #define ART_MSGBOX(artId, iconId, xpmRc) \
217 GET_STD_ICON_FROM_APP(iconId) \
218 CREATE_STD_ICON(#iconId, xpmRc) \
221 // ---------------------------------------------------------------------
223 // ---------------------------------------------------------------------
225 // XPM hack: make the arrays const
226 //#define static static const
228 #include "bitmaps/helpback.xpm"
229 #include "bitmaps/helpbook.xpm"
230 #include "bitmaps/helpdown.xpm"
231 #include "bitmaps/helpforward.xpm"
232 #include "bitmaps/helpoptions.xpm"
233 #include "bitmaps/helppage.xpm"
234 #include "bitmaps/helpsidepanel.xpm"
235 #include "bitmaps/helpup.xpm"
236 #include "bitmaps/helpuplevel.xpm"
237 #include "bitmaps/helpicon.xpm"
238 #include "bitmaps/helpopen.xpm"
242 // ---------------------------------------------------------------------
243 // CreateBitmap routine
244 // ---------------------------------------------------------------------
246 wxBitmap
AlternateArtProvider::CreateBitmap(const wxArtID
& id
,
247 const wxArtClient
& client
,
248 const wxSize
& WXUNUSED(size
))
250 ART(wxART_HELP_SIDE_PANEL
, helpsidepanel
)
251 ART(wxART_HELP_SETTINGS
, helpoptions
)
252 ART(wxART_HELP_BOOK
, helpbook
)
253 ART(wxART_HELP_FOLDER
, helpbook
)
254 ART(wxART_HELP_PAGE
, helppage
)
255 //ART(wxART_ADD_BOOKMARK, addbookm)
256 //ART(wxART_DEL_BOOKMARK, delbookm)
257 ART(wxART_GO_BACK
, helpback
)
258 ART(wxART_GO_FORWARD
, helpforward
)
259 ART(wxART_GO_UP
, helpup
)
260 ART(wxART_GO_DOWN
, helpdown
)
261 ART(wxART_GO_TO_PARENT
, helpuplevel
)
262 ART(wxART_FILE_OPEN
, helpopen
)
263 if (client
== wxART_HELP_BROWSER
)
265 ART(wxART_FRAME_ICON
, helpicon
)
268 //ART(wxART_GO_HOME, home)
270 // Any wxWindows icons not implemented here
271 // will be provided by the default art provider.