X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/af49c4b8a2d3553e733e71c7dd3911881f4c1a2a..ab590906ba1542923101ad4bbda843a57579af19:/include/wx/tipdlg.h?ds=sidebyside diff --git a/include/wx/tipdlg.h b/include/wx/tipdlg.h index 594eb151b4..fe7a6be5c4 100644 --- a/include/wx/tipdlg.h +++ b/include/wx/tipdlg.h @@ -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() { }