1 /////////////////////////////////////////////////////////////////////////////
3 // Purpose: Definitions of miscelaneous functions and classes that need
4 // to know about wxWindow. (So they can't be in misc.i or an
5 // import loop will happen.)
9 // Created: 18-June-1999
11 // Copyright: (c) 1998 by Total Control Software
12 // Licence: wxWindows license
13 /////////////////////////////////////////////////////////////////////////////
19 #include <wx/resource.h>
20 #include <wx/tooltip.h>
23 //----------------------------------------------------------------------
26 %include my_typemaps.i
28 // Import some definitions of other classes, etc.
32 //----------------------------------------------------------------------
34 wxWindow * wxFindWindowByLabel(const wxString& label, wxWindow *parent=NULL);
35 wxWindow * wxFindWindowByName(const wxString& name, wxWindow *parent=NULL);
39 //---------------------------------------------------------------------------
44 wxToolTip(const wxString &tip);
46 void SetTip(const wxString& tip);
48 // *** Not in the "public" interface void SetWindow(wxWindow *win);
49 wxWindow *GetWindow();
54 void wxToolTip_Enable(bool flag) {
55 wxToolTip::Enable(flag);
58 void wxToolTip_SetDelay(long milliseconds) {
59 wxToolTip::SetDelay(milliseconds);
63 //----------------------------------------------------------------------
64 //----------------------------------------------------------------------