1wxCursor(3) Erlang Module Definition wxCursor(3)
2
3
4
6 wxCursor - See external documentation: wxCursor.
7
9 See external documentation: wxCursor.
10
11 This class is derived (and can use functions) from:
12 wxBitmap
13
15 wxCursor():
16
17
18 An object reference, The representation is internal and can be
19 changed without notice. It can't be used for comparsion stored on
20 disc or distributed for use on other nodes.
21
23 new() -> wxCursor()
24
25 See external documentation.
26
27 new(CursorId) -> wxCursor()
28 new(Image) -> wxCursor()
29
30 Types:
31
32 CursorId = integer()
33 Image = wxImage:wxImage()
34
35 See external documentation.
36 Also:
37 new(Image) -> wxCursor() when
38 Image::wxImage:wxImage().
39
40
41 new(Bits, Width, Height) -> wxCursor()
42
43 Types:
44
45 Bits = binary()
46 Width = integer()
47 Height = integer()
48
49 This function is deprecated: not available in wxWidgets-2.9 and
50 later
51
52 Equivalent to new(Bits, Width, Height, []).
53
54 new(Bits, Width, Height, Options::[Option]) -> wxCursor()
55
56 Types:
57
58 Bits = binary()
59 Width = integer()
60 Height = integer()
61 Option = {hotSpotX, integer()} | {hotSpotY, integer()}
62
63 This function is deprecated: not available in wxWidgets-2.9 and
64 later
65
66 See external documentation.
67
68 ok(This) -> boolean()
69
70 Types:
71
72 This = wxCursor()
73
74 See external documentation.
75
76 destroy(This::wxCursor()) -> ok
77
78 Destroys this object, do not use object again
79
81 <>
82
83
84
85 wx 1.9.3 wxCursor(3)