]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/tipdlg.h
It was not acceptable to call the class method from the static initializer
[wxWidgets.git] / include / wx / tipdlg.h
index 9b02046705a02d1d4438d0ac59beae835b0c8945..fe7a6be5c4a7566a80e2eafda7c30487ee6adc94 100644 (file)
@@ -12,7 +12,7 @@
 #ifndef _WX_TIPDLG_H_
 #define _WX_TIPDLG_H_
 
-#ifdef __GNUG__
+#if defined(__GNUG__) && !defined(__APPLE__)
     #pragma interface "tipdlg.h"
 #endif
 
@@ -43,12 +43,17 @@ public:
 
     // get the current tip and update the internal state to return the next tip
     // when called for the next time
-    virtual wxString GetTip() = 0;
+    virtual wxString GetTip() = 0;  
 
     // get the current tip "index" (or whatever allows the tip provider to know
     // from where to start the next time)
     size_t GetCurrentTip() const { return m_currentTip; }
 
+    // Allows any user-derived class to optionally override this function to 
+    // modify the tip as soon as it is read. If return wxEmptyString, then 
+    // the tip is skipped, and the next one is read.
+    virtual wxString PreprocessTip(const wxString& tip) { return tip; }
+
     // virtual dtor for the base class
     virtual ~wxTipProvider() { }