]> git.saurik.com Git - wxWidgets.git/blobdiff - utils/helpview/src/helpview.h
-1, TRUE/true, FALSE/false and tabs replacements.
[wxWidgets.git] / utils / helpview / src / helpview.h
index 0395f58dd5e1a200c901059f6df766cc4212ce23..d4fc4cde2ec147ed0fd4064eab262d03960fe2ae 100644 (file)
 #pragma interface "help.cpp"
 #endif
 
-#define hvVERSION 1.02
+#define hvVERSION 1.03
 
 // If 1, start a server to allow this to be used
 // as an external help viewer.
+#if defined(__WXMAC__) && !defined(__UNIX__)
+#define hvUSE_IPC 0
+#else
 #define hvUSE_IPC 1
+#endif
 
 #if hvUSE_IPC
 #include <wx/ipc.h>
@@ -43,7 +47,12 @@ public:
 
     /// Clean up the application's data.
     virtual int OnExit();
-    
+
+#ifdef __WXMAC__
+    /// Respond to Apple Event for opening a document
+    virtual void MacOpenFile(const wxString& filename);
+#endif
+
     /// Prompt the user for a book to open
     bool OpenBook(wxHtmlHelpController* controller);