1999-01-31 18:38:10 -05:00
|
|
|
///////////////////////////////////////////////////////////////////////////////
|
2006-07-24 10:04:31 -04:00
|
|
|
// Name: wx/msw/tooltip.h
|
1999-01-31 18:38:10 -05:00
|
|
|
// Purpose: wxToolTip class - tooltip control
|
|
|
|
// Author: Vadim Zeitlin
|
|
|
|
// Modified by:
|
|
|
|
// Created: 31.01.99
|
|
|
|
// RCS-ID: $Id$
|
|
|
|
// Copyright: (c) 1999 Robert Roebling, Vadim Zeitlin
|
2004-05-23 16:53:33 -04:00
|
|
|
// Licence: wxWindows licence
|
1999-01-31 18:38:10 -05:00
|
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
2005-09-25 16:49:40 -04:00
|
|
|
#ifndef _WX_MSW_TOOLTIP_H_
|
|
|
|
#define _WX_MSW_TOOLTIP_H_
|
|
|
|
|
2006-01-06 07:54:44 -05:00
|
|
|
#include "wx/object.h"
|
|
|
|
|
2006-07-24 10:04:31 -04:00
|
|
|
class WXDLLIMPEXP_CORE wxWindow;
|
|
|
|
|
2000-01-09 19:55:05 -05:00
|
|
|
class WXDLLEXPORT wxToolTip : public wxObject
|
1999-01-31 18:38:10 -05:00
|
|
|
{
|
|
|
|
public:
|
|
|
|
// ctor & dtor
|
|
|
|
wxToolTip(const wxString &tip);
|
|
|
|
virtual ~wxToolTip();
|
|
|
|
|
|
|
|
// accessors
|
|
|
|
// tip text
|
|
|
|
void SetTip(const wxString& tip);
|
|
|
|
const wxString& GetTip() const { return m_text; }
|
|
|
|
|
|
|
|
// the window we're associated with
|
|
|
|
void SetWindow(wxWindow *win);
|
|
|
|
wxWindow *GetWindow() const { return m_window; }
|
|
|
|
|
1999-02-14 16:59:48 -05:00
|
|
|
// controlling tooltip behaviour: globally change tooltip parameters
|
1999-01-31 18:38:10 -05:00
|
|
|
// enable or disable the tooltips globally
|
1999-02-14 16:59:48 -05:00
|
|
|
static void Enable(bool flag);
|
1999-01-31 18:38:10 -05:00
|
|
|
// set the delay after which the tooltip appears
|
1999-02-14 16:59:48 -05:00
|
|
|
static void SetDelay(long milliseconds);
|
1999-01-31 18:38:10 -05:00
|
|
|
|
2000-01-23 18:23:46 -05:00
|
|
|
// implementation only from now on
|
|
|
|
// -------------------------------
|
|
|
|
|
|
|
|
// should be called in responde to WM_MOUSEMOVE
|
2006-05-04 11:58:29 -04:00
|
|
|
static void RelayEvent(WXMSG *msg);
|
1999-01-31 18:38:10 -05:00
|
|
|
|
2005-02-27 20:22:35 -05:00
|
|
|
// add a window to the tooltip control
|
|
|
|
void Add(WXHWND hwnd);
|
|
|
|
|
2006-05-04 11:51:38 -04:00
|
|
|
// remove any tooltip from the window
|
|
|
|
static void Remove(WXHWND hwnd);
|
|
|
|
|
1999-01-31 18:38:10 -05:00
|
|
|
private:
|
2000-01-23 18:23:46 -05:00
|
|
|
// the one and only one tooltip control we use - never access it directly
|
|
|
|
// but use GetToolTipCtrl() which will create it when needed
|
1999-11-25 18:28:41 -05:00
|
|
|
static WXHWND ms_hwndTT;
|
|
|
|
|
|
|
|
// create the tooltip ctrl if it doesn't exist yet and return its HWND
|
2000-01-23 18:23:46 -05:00
|
|
|
static WXHWND GetToolTipCtrl();
|
1999-01-31 18:38:10 -05:00
|
|
|
|
|
|
|
// remove this tooltip from the tooltip control
|
|
|
|
void Remove();
|
|
|
|
|
|
|
|
wxString m_text; // tooltip text
|
|
|
|
wxWindow *m_window; // window we're associated with
|
2001-07-13 23:23:30 -04:00
|
|
|
|
|
|
|
DECLARE_ABSTRACT_CLASS(wxToolTip)
|
2003-01-02 18:38:11 -05:00
|
|
|
DECLARE_NO_COPY_CLASS(wxToolTip)
|
1999-01-31 18:38:10 -05:00
|
|
|
};
|
1999-09-13 15:19:57 -04:00
|
|
|
|
2005-09-25 16:49:40 -04:00
|
|
|
#endif // _WX_MSW_TOOLTIP_H_
|