various cleanups

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@29727 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Ryan Norton
2004-10-08 01:26:43 +00:00
parent 0c0be4a318
commit 1e15159472
5 changed files with 111 additions and 16 deletions

View File

@@ -11,29 +11,32 @@
#include "wx/object.h"
class wxWindow;
class wxToolTip : public wxObject
{
public:
// ctor & dtor
wxToolTip(const wxString &tip) : m_text(tip), m_window(0) {}
virtual ~wxToolTip() {}
wxToolTip(const wxString &tip);
virtual ~wxToolTip();
// accessors
// tip text
void SetTip(const wxString& tip) { m_text = tip; }
const wxString& GetTip() const { return m_text; }
void SetTip(const wxString& tip);
const wxString& GetTip() const;
// the window we're associated with
wxWindow *GetWindow() const { return m_window; }
wxWindow *GetWindow() const;
// controlling tooltip behaviour: globally change tooltip parameters
// enable or disable the tooltips globally
static void Enable(bool flag) {}
static void Enable(bool flag);
// set the delay after which the tooltip appears
static void SetDelay(long milliseconds) {}
static void SetDelay(long milliseconds);
private:
void SetWindow(wxWindow* window) {m_window = window;}
void SetWindow(wxWindow* window);
friend class wxWindow;
wxString m_text; // tooltip text