1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61
|
#############################################################################
## Name: XS/ToolTip.xs
## Purpose: XS for Wx::ToolTip
## Author: Mattia Barbon
## Modified by:
## Created: 29/10/2000
## RCS-ID: $Id: ToolTip.xs 2285 2007-11-11 21:31:54Z mbarbon $
## Copyright: (c) 2000-2002, 2004, 2007 Mattia Barbon
## Licence: This program is free software; you can redistribute it and/or
## modify it under the same terms as Perl itself
#############################################################################
#if wxPERL_USE_TOOLTIPS
#include <wx/tooltip.h>
MODULE=Wx PACKAGE=Wx::ToolTip
void
Enable( enable )
bool enable
CODE:
wxToolTip::Enable( enable );
void
SetDelay( msecs )
long msecs
CODE:
wxToolTip::SetDelay( msecs );
#if WXPERL_W_VERSION_GE( 2, 9, 0 )
void
SetAutoPop( msecs )
long msecs
CODE:
wxToolTip::SetAutoPop( msecs );
void
SetReshow( msecs )
long msecs
CODE:
wxToolTip::SetReshow( msecs );
#endif
wxToolTip*
wxToolTip::new( string )
wxString string
void
wxToolTip::SetTip( tip )
wxString tip
wxString
wxToolTip::GetTip()
wxWindow*
wxToolTip::GetWindow()
#endif
|