mirror of
https://github.com/wxWidgets/Phoenix.git
synced 2026-01-04 19:10:09 +01:00
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxPython/Phoenix/trunk@66393 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
65 lines
1.2 KiB
Plaintext
65 lines
1.2 KiB
Plaintext
//---------------------------------------------------------------------------
|
|
// This file is generated by wxPython's SIP generator. Do not edit by hand.
|
|
//
|
|
// Copyright: (c) 2010 by Total Control Software
|
|
// License: wxWindows License
|
|
//
|
|
// This file will be included by _core.sip
|
|
//
|
|
//---------------------------------------------------------------------------
|
|
|
|
//---------------------------------------------------------------------------
|
|
|
|
class wxToolTip : wxObject
|
|
{
|
|
%TypeHeaderCode
|
|
#include <wx/tooltip.h>
|
|
%End
|
|
|
|
|
|
public:
|
|
wxToolTip(
|
|
const wxString & tip
|
|
);
|
|
|
|
wxString GetTip();
|
|
|
|
wxWindow * GetWindow();
|
|
|
|
void SetTip(
|
|
const wxString & tip
|
|
);
|
|
|
|
static
|
|
void Enable(
|
|
bool flag
|
|
);
|
|
|
|
static
|
|
void SetAutoPop(
|
|
long msecs
|
|
);
|
|
|
|
static
|
|
void SetDelay(
|
|
long msecs
|
|
);
|
|
|
|
static
|
|
void SetReshow(
|
|
long msecs
|
|
);
|
|
|
|
%Property(name=Tip, get=GetTip, set=SetTip)
|
|
%Property(name=Window, get=GetWindow)
|
|
private:
|
|
wxToolTip(const wxToolTip&);
|
|
|
|
|
|
}; // end of class wxToolTip
|
|
|
|
|
|
|
|
//---------------------------------------------------------------------------
|
|
|