#############################################################################
## Name: XS/ToolTip.xs
## Purpose: XS for Wx::ToolTip
## Author: Mattia Barbon
## Modified by:
## Created: 29/10/2000
## RCS-ID: $Id: ToolTip.xs,v 1.6 2004/07/10 21:49:46 mbarbon Exp $
## Copyright: (c) 2000-2002 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 );
wxToolTip*
wxToolTip::new( string )
wxString string
void
wxToolTip::SetTip( tip )
wxString tip
wxString
wxToolTip::GetTip()
wxWindow*
wxToolTip::GetWindow()
#endif