]> git.saurik.com Git - wxWidgets.git/blame - utils/helpview/src/helpview.cpp
build fixes for wxUSE_VALIDATORS==0
[wxWidgets.git] / utils / helpview / src / helpview.cpp
CommitLineData
4e4152e4
JS
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
4e4152e4
JS
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
be5a51fb 21// need because it includes almost all "standard" wxWidgets headers
4e4152e4
JS
22#ifndef WX_PRECOMP
23#include "wx/wx.h"
24#endif
25
d9b21c9f 26#include "wx/filename.h"
4e4152e4
JS
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
877c86a2
JS
34#include "helpview.h"
35
4e4152e4
JS
36class AlternateArtProvider : public wxArtProvider
37{
38protected:
39 virtual wxBitmap CreateBitmap(const wxArtID& id, const wxArtClient& client,
40 const wxSize& size);
41};
42
4e4152e4
JS
43IMPLEMENT_APP(hvApp)
44
2b5f62a0
VZ
45hvApp::hvApp()
46{
62d1f48b 47#if wxUSE_IPC
2b5f62a0
VZ
48 m_server = NULL;
49#endif
50}
4e4152e4
JS
51
52bool hvApp::OnInit()
53{
54#ifdef __WXMOTIF__
55 delete wxLog::SetActiveTarget(new wxLogStderr); // So dialog boxes aren't used
56#endif
03a90749 57
3fafce67 58 wxArtProvider::Push(new AlternateArtProvider);
03a90749 59
d9b21c9f 60#ifdef __WXMAC__
476d3114 61 wxApp::s_macAboutMenuItemId = wxID_ABOUT;
63fa3f89 62 wxFileName::MacRegisterDefaultTypeAndCreator( wxT("htb") , 'HTBD' , 'HTBA' ) ;
d9b21c9f
JS
63#endif
64
9d683b44 65 int istyle = wxHF_DEFAULT_STYLE;
03a90749 66
254a2129
WS
67 wxString service, windowName, titleFormat, argStr;
68 wxString book[10];
2b5f62a0
VZ
69 int bookCount = 0;
70 int i;
03a90749
DS
71 bool hasService = false;
72 bool hasWindowName = false;
73 bool createServer = false;
74
62d1f48b 75#if wxUSE_IPC
2b5f62a0 76 m_server = NULL;
43b8a532 77#endif
03a90749 78
2b5f62a0
VZ
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
03a90749 83
2b5f62a0
VZ
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
03a90749
DS
92
93 for( i=1; i<argc; i++ )
2b5f62a0 94 {
03a90749
DS
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;
2b5f62a0 107#if defined(__WXMSW__)
03a90749 108 service = wxT("generic_helpservice");
2b5f62a0 109#elif defined(__UNIX__)
03a90749 110 service = wxT("/tmp/") + wxString(wxT("generic_helpservice"));
2b5f62a0 111#else
03a90749 112 service = wxT("4242");
2b5f62a0 113#endif
03a90749
DS
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 }
2b5f62a0 143 }
03a90749 144
d9b21c9f
JS
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__
2b5f62a0
VZ
148 if ( bookCount < 1 )
149 {
03a90749
DS
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"),
55325d01 155 wxFD_OPEN | wxFD_FILE_MUST_EXIST,
03a90749
DS
156 NULL);
157
62d1f48b 158 if (!s.empty())
03a90749
DS
159 {
160 book[0] = s;
161 bookCount = 1;
162 }
163 }
d9b21c9f 164#endif
03a90749 165
62d1f48b 166#if wxUSE_IPC
03a90749
DS
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);
2b5f62a0 183 }
03a90749 184
62d1f48b 185#endif // wxUSE_IPC
03a90749 186
2b5f62a0 187 //now add help
4e4152e4 188 wxInitAllImageHandlers();
03a90749
DS
189 wxFileSystem::AddHandler(new wxZipFSHandler);
190
be5a51fb 191 SetVendorName(wxT("wxWidgets") );
03a90749 192 SetAppName(wxT("wxHTMLHelpServer") );
4e4152e4 193 wxConfig::Get(); // create an instance
03a90749 194
2b5f62a0 195 m_helpController = new wxHtmlHelpController( istyle );
03a90749 196
2b5f62a0 197 if ( !hasWindowName )
03a90749 198 {
2b5f62a0 199 titleFormat = wxT("Help: %s") ;
03a90749 200 }
2b5f62a0
VZ
201 else
202 {
03a90749
DS
203 //remove underscores
204 windowName.Replace( wxT("_"), wxT(" ") );
205 titleFormat = windowName;
4e4152e4 206 }
03a90749 207
2b5f62a0 208 m_helpController->SetTitleFormat( titleFormat );
03a90749
DS
209
210 for( i=0; i<bookCount; i++ )
2b5f62a0 211 {
dba06cd0 212 wxFileName fileName(book[i]);
03a90749 213 m_helpController->AddBook(fileName);
2b5f62a0 214 }
03a90749 215
4e4152e4
JS
216#ifdef __WXMOTIF__
217 delete wxLog::SetActiveTarget(new wxLogGui);
218#endif
03a90749
DS
219
220 m_helpController->DisplayContents();
221
20c81bed
JS
222 SetTopWindow(m_helpController->GetFrame());
223
03a90749 224 return true;
4e4152e4
JS
225}
226
227
228int hvApp::OnExit()
229{
62d1f48b 230#if wxUSE_IPC
8d0f1c1c 231 wxObjectList::compatibility_iterator node = m_connections.GetFirst();
2b5f62a0
VZ
232 while (node)
233 {
8d0f1c1c 234 wxObjectList::compatibility_iterator next = node->GetNext();
ddc4f3b5 235 hvConnection* connection = (hvConnection*) node->GetData();
2b5f62a0
VZ
236 connection->Disconnect();
237 delete connection;
238 node = next;
239 }
240 m_connections.Clear();
03a90749 241
2b5f62a0
VZ
242 if (m_server)
243 {
244 delete m_server;
245 m_server = NULL;
246 }
247#endif
03a90749 248
2b5f62a0 249 delete m_helpController;
4e4152e4 250 delete wxConfig::Set(NULL);
03a90749 251
4e4152e4
JS
252 return 0;
253}
254
255bool hvApp::OpenBook(wxHtmlHelpController* controller)
256{
257 wxString s = wxFileSelector(_("Open help file"),
258 wxGetCwd(),
259 wxEmptyString,
260 wxEmptyString,
261 _(
03a90749
DS
262 "Help books (*.htb)|*.htb|Help books (*.zip)|*.zip|\
263 HTML Help Project (*.hhp)|*.hhp"),
3fafce67 264 wxFD_OPEN | wxFD_FILE_MUST_EXIST,
03a90749
DS
265 NULL);
266
267 if ( !s.empty() )
4e4152e4
JS
268 {
269 wxString ext = s.Right(4).Lower();
270 if (ext == _T(".zip") || ext == _T(".htb") || ext == _T(".hhp"))
271 {
272 wxBusyCursor bcur;
dba06cd0
JS
273 wxFileName fileName(s);
274 controller->AddBook(fileName);
03a90749 275 return true;
4e4152e4
JS
276 }
277 }
03a90749
DS
278
279 return false;
4e4152e4
JS
280}
281
d9b21c9f
JS
282#ifdef __WXMAC__
283/// Respond to Apple Event for opening a document
284void 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
4e4152e4 294/*
2b5f62a0
VZ
295* Art provider class
296*/
4e4152e4
JS
297
298// ---------------------------------------------------------------------
299// helper macros
300// ---------------------------------------------------------------------
301
302// Standard macro for getting a resource from XPM file:
303#define ART(artId, xpmRc) \
2b5f62a0 304if ( id == artId ) return wxBitmap(xpmRc##_xpm);
4e4152e4 305
2b5f62a0 306#define GET_STD_ICON_FROM_APP(iconId)
4e4152e4
JS
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__)
2b5f62a0 311#define CREATE_STD_ICON(iconId, xpmRc) return wxNullBitmap;
4e4152e4 312#elif defined(__WXGTK__) || defined(__WXMOTIF__)
2b5f62a0 313#define CREATE_STD_ICON(iconId, xpmRc) return wxBitmap(xpmRc##_xpm);
4e4152e4 314#else
2b5f62a0
VZ
315#define CREATE_STD_ICON(iconId, xpmRc) \
316{ \
03a90749
DS
317 wxIcon icon(_T(iconId)); \
318 wxBitmap bmp; \
319 bmp.CopyFromIcon(icon); \
320 return bmp; \
2b5f62a0 321}
4e4152e4
JS
322#endif
323
324// Macro used in CreateBitmap to get wxICON_FOO icons:
325#define ART_MSGBOX(artId, iconId, xpmRc) \
326 if ( id == artId ) \
2b5f62a0 327{ \
03a90749
DS
328 GET_STD_ICON_FROM_APP(iconId) \
329 CREATE_STD_ICON(#iconId, xpmRc) \
2b5f62a0 330}
4e4152e4
JS
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
357wxBitmap AlternateArtProvider::CreateBitmap(const wxArtID& id,
358 const wxArtClient& client,
359 const wxSize& WXUNUSED(size))
360{
361 ART(wxART_HELP_SIDE_PANEL, helpsidepanel)
03a90749
DS
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
be5a51fb 382 // Any wxWidgets icons not implemented here
03a90749
DS
383 // will be provided by the default art provider.
384 return wxNullBitmap;
2b5f62a0
VZ
385}
386
62d1f48b 387#if wxUSE_IPC
2b5f62a0
VZ
388
389wxConnectionBase *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
401hvConnection::hvConnection()
402: wxConnection()
403{
404 wxGetApp().GetConnections().Append(this);
405}
406
407hvConnection::~hvConnection()
408{
409 wxGetApp().GetConnections().DeleteObject(this);
410}
4e4152e4 411
2b5f62a0
VZ
412bool hvConnection::OnExecute(const wxString& WXUNUSED(topic),
413 wxChar *data,
414 int WXUNUSED(size),
415 wxIPCFormat WXUNUSED(format))
416{
03a90749
DS
417 // wxLogStatus("Execute command: %s", data);
418
419 if ( !wxStrncmp( data, wxT("--intstring"), 11 ) )
420 {
2b5f62a0 421 long i;
03a90749
DS
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;
2b5f62a0 439}
4e4152e4 440
2b5f62a0
VZ
441bool hvConnection::OnPoke(const wxString& WXUNUSED(topic),
442 const wxString& item,
443 wxChar *data,
444 int WXUNUSED(size),
445 wxIPCFormat WXUNUSED(format))
446{
03a90749
DS
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;
4e4152e4 491}
2b5f62a0
VZ
492
493wxChar *hvConnection::OnRequest(const wxString& WXUNUSED(topic),
03a90749
DS
494 const wxString& WXUNUSED(item),
495 int * WXUNUSED(size),
496 wxIPCFormat WXUNUSED(format))
2b5f62a0
VZ
497{
498 return NULL;
499}
500
501bool hvConnection::OnStartAdvise(const wxString& WXUNUSED(topic),
502 const wxString& WXUNUSED(item))
503{
03a90749 504 return true;
2b5f62a0
VZ
505}
506
62d1f48b 507#endif // #if wxUSE_IPC