Fixed premature exit of helpview sample and utility
[wxWidgets.git] / utils / helpview / src / helpview.cpp
1 /////////////////////////////////////////////////////////////////////////////
2 // Name: helpview.h
3 // Purpose: HelpView application
4 // A standalone viewer for wxHTML Help (.htb) files
5 // Author: Vaclav Slavik, Julian Smart
6 // Modified by:
7 // Created: 2002-07-09
8 // RCS-ID: $Id$
9 // Copyright: (c) 2002 Vaclav Slavik, Julian Smart and others
10 // Licence: wxWindows licence
11 /////////////////////////////////////////////////////////////////////////////
12
13 // For compilers that support precompilation, includes "wx/wx.h".
14 #include "wx/wxprec.h"
15
16 #ifdef __BORLANDC__
17 #pragma hdrstop
18 #endif
19
20 // for all others, include the necessary headers (this file is usually all you
21 // need because it includes almost all "standard" wxWidgets headers
22 #ifndef WX_PRECOMP
23 #include "wx/wx.h"
24 #endif
25
26 #include "wx/filename.h"
27 #include "wx/image.h"
28 #include "wx/wxhtml.h"
29 #include "wx/fs_zip.h"
30 #include "wx/log.h"
31 #include "wx/artprov.h"
32 #include "wx/filedlg.h"
33
34 #include "helpview.h"
35
36 class AlternateArtProvider : public wxArtProvider
37 {
38 protected:
39 virtual wxBitmap CreateBitmap(const wxArtID& id, const wxArtClient& client,
40 const wxSize& size);
41 };
42
43 IMPLEMENT_APP(hvApp)
44
45 hvApp::hvApp()
46 {
47 #if wxUSE_IPC
48 m_server = NULL;
49 #endif
50 }
51
52 bool hvApp::OnInit()
53 {
54 #ifdef __WXMOTIF__
55 delete wxLog::SetActiveTarget(new wxLogStderr); // So dialog boxes aren't used
56 #endif
57
58 wxArtProvider::Push(new AlternateArtProvider);
59
60 #ifdef __WXMAC__
61 wxApp::s_macAboutMenuItemId = wxID_ABOUT;
62 wxFileName::MacRegisterDefaultTypeAndCreator( wxT("htb") , 'HTBD' , 'HTBA' ) ;
63 #endif
64
65 int istyle = wxHF_DEFAULT_STYLE;
66
67 wxString service, windowName, titleFormat, argStr;
68 wxString book[10];
69 int bookCount = 0;
70 int i;
71 bool hasService = false;
72 bool hasWindowName = false;
73 bool createServer = false;
74
75 #if wxUSE_IPC
76 m_server = NULL;
77 #endif
78
79 // Help books are recognized by extension ".hhp" ".htb" or ".zip".
80 // Service and window_name can occur anywhere in arguments,
81 // but service must be first
82 // Other arguments (topic?) could be added
83
84 // modes of operation:
85 // 1) no arguments - stand alone, prompt user for book
86 // 2) books only - stand alone, open books
87 // 3) "--server" as (any) arg - start connection with default service;
88 // also open any books passed as other arguments
89 // 4) at least one argument which is not book, and not "--server" - take first
90 // such argument as service, second (if present) as window name,
91 // start service, open any books
92
93 for( i=1; i<argc; i++ )
94 {
95 argStr = argv[i];
96
97 if ( argStr.Find( wxT(".hhp") ) >= 0
98 || argStr.Find( wxT(".htb") ) >= 0
99 || argStr.Find( wxT(".zip") ) >= 0 )
100 {
101 book[bookCount] = argStr;
102 bookCount++;
103 }
104 else if ( argStr == wxT("--server") )
105 {
106 createServer = true;
107 #if defined(__WXMSW__)
108 service = wxT("generic_helpservice");
109 #elif defined(__UNIX__)
110 service = wxT("/tmp/") + wxString(wxT("generic_helpservice"));
111 #else
112 service = wxT("4242");
113 #endif
114 }
115 else if ( !hasService )
116 {
117 service = argStr;
118 hasService = true;
119 createServer = true;
120 }
121 else if ( !hasWindowName )
122 {
123 windowName = argStr;
124 hasWindowName = true;
125 }
126 else if ( argStr.Find( wxT("--Style") ) >= 0 )
127 {
128 long i;
129 wxString numb = argStr.AfterLast(wxT('e'));
130 if ( !(numb.ToLong(&i) ) )
131 {
132 wxLogError( wxT("Integer conversion failed for --Style") );
133 }
134 else
135 {
136 istyle = i;
137 }
138 }
139 else
140 {
141 //unknown - could be topic?
142 }
143 }
144
145 // No book - query user; but not on Mac, since there
146 // may be an AppleEvent to open a document on the way
147 #ifndef __WXMAC__
148 if ( bookCount < 1 )
149 {
150 wxString s = wxFileSelector( wxT("Open help file"),
151 wxGetCwd(),
152 wxEmptyString,
153 wxEmptyString,
154 wxT("Help books (*.htb)|*.htb|Help books (*.zip)|*.zip|HTML Help Project (*.hhp)|*.hhp"),
155 wxFD_OPEN | wxFD_FILE_MUST_EXIST,
156 NULL);
157
158 if (!s.empty())
159 {
160 book[0] = s;
161 bookCount = 1;
162 }
163 }
164 #endif
165
166 #if wxUSE_IPC
167
168 if ( createServer )
169 {
170 // Create a new server
171 m_server = new hvServer;
172
173 if ( !m_server->Create(service) )
174 {
175 wxString wxm = wxT("Server Create failed - service: ");
176 wxString xxm = wxm << service;
177 wxLogError( xxm );
178 //if MSW quits here, probably another copy already exists
179 return false;
180 }
181 createServer = false;
182 wxUnusedVar(createServer);
183 }
184
185 #endif // wxUSE_IPC
186
187 //now add help
188 wxInitAllImageHandlers();
189 wxFileSystem::AddHandler(new wxZipFSHandler);
190
191 SetVendorName(wxT("wxWidgets") );
192 SetAppName(wxT("wxHTMLHelpServer") );
193 wxConfig::Get(); // create an instance
194
195 m_helpController = new wxHtmlHelpController( istyle );
196
197 if ( !hasWindowName )
198 {
199 titleFormat = wxT("Help: %s") ;
200 }
201 else
202 {
203 //remove underscores
204 windowName.Replace( wxT("_"), wxT(" ") );
205 titleFormat = windowName;
206 }
207
208 m_helpController->SetTitleFormat( titleFormat );
209
210 for( i=0; i<bookCount; i++ )
211 {
212 wxFileName fileName(book[i]);
213 m_helpController->AddBook(fileName);
214 }
215
216 #ifdef __WXMOTIF__
217 delete wxLog::SetActiveTarget(new wxLogGui);
218 #endif
219
220 m_helpController->DisplayContents();
221
222 SetTopWindow(m_helpController->GetFrame());
223
224 return true;
225 }
226
227
228 int hvApp::OnExit()
229 {
230 #if wxUSE_IPC
231 wxObjectList::compatibility_iterator node = m_connections.GetFirst();
232 while (node)
233 {
234 wxObjectList::compatibility_iterator next = node->GetNext();
235 hvConnection* connection = (hvConnection*) node->GetData();
236 connection->Disconnect();
237 delete connection;
238 node = next;
239 }
240 m_connections.Clear();
241
242 if (m_server)
243 {
244 delete m_server;
245 m_server = NULL;
246 }
247 #endif
248
249 delete m_helpController;
250 delete wxConfig::Set(NULL);
251
252 return 0;
253 }
254
255 bool hvApp::OpenBook(wxHtmlHelpController* controller)
256 {
257 wxString s = wxFileSelector(_("Open help file"),
258 wxGetCwd(),
259 wxEmptyString,
260 wxEmptyString,
261 _(
262 "Help books (*.htb)|*.htb|Help books (*.zip)|*.zip|\
263 HTML Help Project (*.hhp)|*.hhp"),
264 wxFD_OPEN | wxFD_FILE_MUST_EXIST,
265 NULL);
266
267 if ( !s.empty() )
268 {
269 wxString ext = s.Right(4).Lower();
270 if (ext == _T(".zip") || ext == _T(".htb") || ext == _T(".hhp"))
271 {
272 wxBusyCursor bcur;
273 wxFileName fileName(s);
274 controller->AddBook(fileName);
275 return true;
276 }
277 }
278
279 return false;
280 }
281
282 #ifdef __WXMAC__
283 /// Respond to Apple Event for opening a document
284 void hvApp::MacOpenFile(const wxString& filename)
285 {
286 wxBusyCursor bcur;
287 wxFileName fileName(filename);
288 m_helpController->AddBook(fileName);
289 m_helpController->DisplayContents();
290 }
291 #endif
292
293
294 /*
295 * Art provider class
296 */
297
298 // ---------------------------------------------------------------------
299 // helper macros
300 // ---------------------------------------------------------------------
301
302 // Standard macro for getting a resource from XPM file:
303 #define ART(artId, xpmRc) \
304 if ( id == artId ) return wxBitmap(xpmRc##_xpm);
305
306 #define GET_STD_ICON_FROM_APP(iconId)
307
308 // There are two ways of getting the standard icon: either via XPMs or via
309 // wxIcon ctor. This depends on the platform:
310 #if defined(__WXUNIVERSAL__)
311 #define CREATE_STD_ICON(iconId, xpmRc) return wxNullBitmap;
312 #elif defined(__WXGTK__) || defined(__WXMOTIF__)
313 #define CREATE_STD_ICON(iconId, xpmRc) return wxBitmap(xpmRc##_xpm);
314 #else
315 #define CREATE_STD_ICON(iconId, xpmRc) \
316 { \
317 wxIcon icon(_T(iconId)); \
318 wxBitmap bmp; \
319 bmp.CopyFromIcon(icon); \
320 return bmp; \
321 }
322 #endif
323
324 // Macro used in CreateBitmap to get wxICON_FOO icons:
325 #define ART_MSGBOX(artId, iconId, xpmRc) \
326 if ( id == artId ) \
327 { \
328 GET_STD_ICON_FROM_APP(iconId) \
329 CREATE_STD_ICON(#iconId, xpmRc) \
330 }
331
332 // ---------------------------------------------------------------------
333 // XPMs with the art
334 // ---------------------------------------------------------------------
335
336 // XPM hack: make the arrays const
337 //#define static static const
338
339 #include "bitmaps/helpback.xpm"
340 #include "bitmaps/helpbook.xpm"
341 #include "bitmaps/helpdown.xpm"
342 #include "bitmaps/helpforward.xpm"
343 #include "bitmaps/helpoptions.xpm"
344 #include "bitmaps/helppage.xpm"
345 #include "bitmaps/helpsidepanel.xpm"
346 #include "bitmaps/helpup.xpm"
347 #include "bitmaps/helpuplevel.xpm"
348 #include "bitmaps/helpicon.xpm"
349 #include "bitmaps/helpopen.xpm"
350
351 //#undef static
352
353 // ---------------------------------------------------------------------
354 // CreateBitmap routine
355 // ---------------------------------------------------------------------
356
357 wxBitmap AlternateArtProvider::CreateBitmap(const wxArtID& id,
358 const wxArtClient& client,
359 const wxSize& WXUNUSED(size))
360 {
361 ART(wxART_HELP_SIDE_PANEL, helpsidepanel)
362 ART(wxART_HELP_SETTINGS, helpoptions)
363 ART(wxART_HELP_BOOK, helpbook)
364 ART(wxART_HELP_FOLDER, helpbook)
365 ART(wxART_HELP_PAGE, helppage)
366 //ART(wxART_ADD_BOOKMARK, addbookm)
367 //ART(wxART_DEL_BOOKMARK, delbookm)
368 ART(wxART_GO_BACK, helpback)
369 ART(wxART_GO_FORWARD, helpforward)
370 ART(wxART_GO_UP, helpup)
371 ART(wxART_GO_DOWN, helpdown)
372 ART(wxART_GO_TO_PARENT, helpuplevel)
373 ART(wxART_FILE_OPEN, helpopen)
374 if (client == wxART_HELP_BROWSER)
375 {
376 //ART(wxART_FRAME_ICON, helpicon)
377 ART(wxART_HELP, helpicon)
378 }
379
380 //ART(wxART_GO_HOME, home)
381
382 // Any wxWidgets icons not implemented here
383 // will be provided by the default art provider.
384 return wxNullBitmap;
385 }
386
387 #if wxUSE_IPC
388
389 wxConnectionBase *hvServer::OnAcceptConnection(const wxString& topic)
390 {
391 if (topic == wxT("HELP"))
392 return new hvConnection();
393 else
394 return NULL;
395 }
396
397 // ----------------------------------------------------------------------------
398 // hvConnection
399 // ----------------------------------------------------------------------------
400
401 hvConnection::hvConnection()
402 : wxConnection()
403 {
404 wxGetApp().GetConnections().Append(this);
405 }
406
407 hvConnection::~hvConnection()
408 {
409 wxGetApp().GetConnections().DeleteObject(this);
410 }
411
412 bool hvConnection::OnExecute(const wxString& WXUNUSED(topic),
413 wxChar *data,
414 int WXUNUSED(size),
415 wxIPCFormat WXUNUSED(format))
416 {
417 // wxLogStatus("Execute command: %s", data);
418
419 if ( !wxStrncmp( data, wxT("--intstring"), 11 ) )
420 {
421 long i;
422 wxString argStr = data;
423 wxString numb = argStr.AfterLast(wxT('g'));
424 if ( !(numb.ToLong(&i) ) )
425 {
426 wxLogError( wxT("Integer conversion failed for --intstring") );
427 }
428 else
429 {
430 wxGetApp().GetHelpController()->Display(int(i));
431 }
432 }
433 else
434 {
435 wxGetApp().GetHelpController()->Display(data);
436 }
437
438 return true;
439 }
440
441 bool hvConnection::OnPoke(const wxString& WXUNUSED(topic),
442 const wxString& item,
443 wxChar *data,
444 int WXUNUSED(size),
445 wxIPCFormat WXUNUSED(format))
446 {
447 // wxLogStatus("Poke command: %s = %s", item.c_str(), data);
448 //topic is not tested
449
450 if ( wxGetApp().GetHelpController() )
451 {
452 if ( item == wxT("--AddBook") )
453 {
454 wxGetApp().GetHelpController()->AddBook(data);
455 }
456 else if ( item == wxT("--DisplayContents") )
457 {
458 wxGetApp().GetHelpController()->DisplayContents();
459 }
460 else if ( item == wxT("--DisplayIndex") )
461 {
462 wxGetApp().GetHelpController()->DisplayIndex();
463 }
464 else if ( item == wxT("--KeywordSearch") )
465 {
466 wxGetApp().GetHelpController()->KeywordSearch(data);
467 }
468 else if ( item == wxT("--SetTitleFormat") )
469 {
470 wxString newname = data;
471 newname.Replace( wxT("_"), wxT(" ") );
472 wxGetApp().GetHelpController()->SetTitleFormat(newname);
473 //does not redraw title bar?
474 //wxGetApp().GetHelpController()->ReFresh(); - or something
475 }
476 else if ( item == wxT("--SetTempDir") )
477 {
478 wxGetApp().GetHelpController()->SetTempDir(data);
479 }
480 else if ( item == wxT("--YouAreDead") )
481 {
482 // don't really know how to kill app from down here...
483 // use wxKill from client instead
484 //wxWindow *win = wxTheApp->GetTopWindow();
485 //if ( win )
486 // win->Destroy();
487 }
488 }
489
490 return true;
491 }
492
493 wxChar *hvConnection::OnRequest(const wxString& WXUNUSED(topic),
494 const wxString& WXUNUSED(item),
495 int * WXUNUSED(size),
496 wxIPCFormat WXUNUSED(format))
497 {
498 return NULL;
499 }
500
501 bool hvConnection::OnStartAdvise(const wxString& WXUNUSED(topic),
502 const wxString& WXUNUSED(item))
503 {
504 return true;
505 }
506
507 #endif // #if wxUSE_IPC