]>
Commit | Line | Data |
---|---|---|
4e4152e4 JS |
1 | ///////////////////////////////////////////////////////////////////////////// |
2 | // Name: helpview.h | |
3 | // Purpose: HelpView application class | |
4 | // Author: Vaclav Slavik, Julian Smart | |
5 | // Modified by: | |
6 | // Created: 2002-07-09 | |
7 | // RCS-ID: $Id$ | |
8 | // Copyright: (c) 2002 Vaclav Slavik, Julian Smart and others | |
9 | // Licence: wxWindows licence | |
10 | ///////////////////////////////////////////////////////////////////////////// | |
11 | ||
12 | #ifndef _WX_HELPVIEW_H_ | |
13 | #define _WX_HELPVIEW_H_ | |
14 | ||
62d1f48b | 15 | #define hvVERSION 1.04 |
2b5f62a0 | 16 | |
62d1f48b | 17 | #if wxUSE_IPC |
2b5f62a0 | 18 | #include <wx/ipc.h> |
2b5f62a0 VZ |
19 | class hvServer; |
20 | #endif | |
21 | ||
22 | /*! | |
23 | * The helpview application class. | |
24 | */ | |
25 | ||
4e4152e4 JS |
26 | class hvApp : public wxApp |
27 | { | |
2b5f62a0 VZ |
28 | public: |
29 | hvApp(); | |
30 | ||
31 | /// Initialise the application. | |
32 | virtual bool OnInit(); | |
33 | ||
34 | /// Clean up the application's data. | |
35 | virtual int OnExit(); | |
d9b21c9f JS |
36 | |
37 | #ifdef __WXMAC__ | |
38 | /// Respond to Apple Event for opening a document | |
39 | virtual void MacOpenFile(const wxString& filename); | |
40 | #endif | |
41 | ||
2b5f62a0 VZ |
42 | /// Prompt the user for a book to open |
43 | bool OpenBook(wxHtmlHelpController* controller); | |
44 | ||
45 | /// Returns the help controller. | |
46 | wxHtmlHelpController* GetHelpController() { return m_helpController; } | |
47 | ||
62d1f48b | 48 | #if wxUSE_IPC |
2b5f62a0 VZ |
49 | /// Returns the list of connections. |
50 | wxList& GetConnections() { return m_connections; } | |
51 | #endif | |
4e4152e4 | 52 | |
2b5f62a0 VZ |
53 | private: |
54 | wxHtmlHelpController* m_helpController; | |
6d74e300 | 55 | |
62d1f48b | 56 | #if wxUSE_IPC |
2b5f62a0 VZ |
57 | wxList m_connections; |
58 | hvServer* m_server; | |
59 | #endif | |
6d74e300 | 60 | |
2b5f62a0 VZ |
61 | }; |
62 | ||
62d1f48b | 63 | #if wxUSE_IPC |
2b5f62a0 VZ |
64 | class hvConnection : public wxConnection |
65 | { | |
66 | public: | |
67 | hvConnection(); | |
d3c7fc99 | 68 | virtual ~hvConnection(); |
4e4152e4 | 69 | |
2b5f62a0 VZ |
70 | bool OnExecute(const wxString& topic, wxChar*data, int size, wxIPCFormat format); |
71 | wxChar *OnRequest(const wxString& topic, const wxString& item, int *size, wxIPCFormat format); | |
72 | bool OnPoke(const wxString& topic, const wxString& item, wxChar *data, int size, wxIPCFormat format); | |
73 | bool OnStartAdvise(const wxString& topic, const wxString& item); | |
4e4152e4 | 74 | |
2b5f62a0 VZ |
75 | private: |
76 | }; | |
4e4152e4 | 77 | |
2b5f62a0 VZ |
78 | class hvServer: public wxServer |
79 | { | |
80 | public: | |
81 | wxConnectionBase *OnAcceptConnection(const wxString& topic); | |
4e4152e4 JS |
82 | }; |
83 | ||
2b5f62a0 VZ |
84 | |
85 | #endif | |
86 | ||
4e4152e4 JS |
87 | #endif |
88 | // _WX_HELPVIEW_H_ | |
89 |