1wxToolTip(3)               Erlang Module Definition               wxToolTip(3)
2
3
4

NAME

6       wxToolTip - Functions for wxToolTip class
7

DESCRIPTION

9       This  class  holds information about a tooltip associated with a window
10       (see wxWindow:setToolTip/2).
11
12       The four static methods, enable/1,  setDelay/1  wxToolTip::SetAutoPop()
13       (not  implemented in wx) and wxToolTip::SetReshow() (not implemented in
14       wx) can be used to globally alter tooltips behaviour.
15
16       wxWidgets docs: wxToolTip
17

DATA TYPES

19       wxToolTip() = wx:wx_object()
20

EXPORTS

22       enable(Flag) -> ok
23
24              Types:
25
26                 Flag = boolean()
27
28              Enable or disable tooltips globally.
29
30              Note: May not be supported on all platforms (eg. wxCocoa).
31
32       setDelay(Msecs) -> ok
33
34              Types:
35
36                 Msecs = integer()
37
38              Set the delay after which the tooltip appears.
39
40              Note: May not be supported on all platforms.
41
42       new(Tip) -> wxToolTip()
43
44              Types:
45
46                 Tip = unicode:chardata()
47
48              Constructor.
49
50       setTip(This, Tip) -> ok
51
52              Types:
53
54                 This = wxToolTip()
55                 Tip = unicode:chardata()
56
57              Set the tooltip text.
58
59       getTip(This) -> unicode:charlist()
60
61              Types:
62
63                 This = wxToolTip()
64
65              Get the tooltip text.
66
67       getWindow(This) -> wxWindow:wxWindow()
68
69              Types:
70
71                 This = wxToolTip()
72
73              Get the associated window.
74
75       destroy(This :: wxToolTip()) -> ok
76
77              Destroys the object.
78
79
80
81wxWidgets team.                    wx 2.2.1                       wxToolTip(3)
Impressum