1wxStatusBar(3) Erlang Module Definition wxStatusBar(3)
2
3
4
6 wxStatusBar - See external documentation: wxStatusBar.
7
9 See external documentation: wxStatusBar.
10
11 This class is derived (and can use functions) from:
12 wxWindow
13 wxEvtHandler
14
16 wxStatusBar():
17
18
19 An object reference, The representation is internal and can be
20 changed without notice. It can't be used for comparsion stored on
21 disc or distributed for use on other nodes.
22
24 new() -> wxStatusBar()
25
26 See external documentation.
27
28 new(Parent) -> wxStatusBar()
29
30 Types:
31
32 Parent = wxWindow:wxWindow()
33
34 Equivalent to new(Parent, []).
35
36 new(Parent, Options::[Option]) -> wxStatusBar()
37
38 Types:
39
40 Parent = wxWindow:wxWindow()
41 Option = {winid, integer()} | {style, integer()}
42
43 See external documentation.
44
45 create(This, Parent) -> boolean()
46
47 Types:
48
49 This = wxStatusBar()
50 Parent = wxWindow:wxWindow()
51
52 Equivalent to create(This, Parent, []).
53
54 create(This, Parent, Options::[Option]) -> boolean()
55
56 Types:
57
58 This = wxStatusBar()
59 Parent = wxWindow:wxWindow()
60 Option = {winid, integer()} | {style, integer()}
61
62 See external documentation.
63
64 getFieldRect(This, I) -> Result
65
66 Types:
67
68 Result = {Res::boolean(), Rect::{X::integer(), Y::integer(),
69 W::integer(), H::integer()}}
70 This = wxStatusBar()
71 I = integer()
72
73 See external documentation.
74
75 getFieldsCount(This) -> integer()
76
77 Types:
78
79 This = wxStatusBar()
80
81 See external documentation.
82
83 getStatusText(This) -> unicode:charlist()
84
85 Types:
86
87 This = wxStatusBar()
88
89 Equivalent to getStatusText(This, []).
90
91 getStatusText(This, Options::[Option]) -> unicode:charlist()
92
93 Types:
94
95 This = wxStatusBar()
96 Option = {number, integer()}
97
98 See external documentation.
99
100 popStatusText(This) -> ok
101
102 Types:
103
104 This = wxStatusBar()
105
106 Equivalent to popStatusText(This, []).
107
108 popStatusText(This, Options::[Option]) -> ok
109
110 Types:
111
112 This = wxStatusBar()
113 Option = {number, integer()}
114
115 See external documentation.
116
117 pushStatusText(This, Text) -> ok
118
119 Types:
120
121 This = wxStatusBar()
122 Text = unicode:chardata()
123
124 Equivalent to pushStatusText(This, Text, []).
125
126 pushStatusText(This, Text, Options::[Option]) -> ok
127
128 Types:
129
130 This = wxStatusBar()
131 Text = unicode:chardata()
132 Option = {number, integer()}
133
134 See external documentation.
135
136 setFieldsCount(This, Number) -> ok
137
138 Types:
139
140 This = wxStatusBar()
141 Number = integer()
142
143 Equivalent to setFieldsCount(This, Number, []).
144
145 setFieldsCount(This, Number, Options::[Option]) -> ok
146
147 Types:
148
149 This = wxStatusBar()
150 Number = integer()
151 Option = {widths, [integer()]}
152
153 See external documentation.
154
155 setMinHeight(This, Height) -> ok
156
157 Types:
158
159 This = wxStatusBar()
160 Height = integer()
161
162 See external documentation.
163
164 setStatusText(This, Text) -> ok
165
166 Types:
167
168 This = wxStatusBar()
169 Text = unicode:chardata()
170
171 Equivalent to setStatusText(This, Text, []).
172
173 setStatusText(This, Text, Options::[Option]) -> ok
174
175 Types:
176
177 This = wxStatusBar()
178 Text = unicode:chardata()
179 Option = {number, integer()}
180
181 See external documentation.
182
183 setStatusWidths(This, Widths_field) -> ok
184
185 Types:
186
187 This = wxStatusBar()
188 Widths_field = [integer()]
189
190 See external documentation.
191
192 setStatusStyles(This, Styles) -> ok
193
194 Types:
195
196 This = wxStatusBar()
197 Styles = [integer()]
198
199 See external documentation.
200
201 destroy(This::wxStatusBar()) -> ok
202
203 Destroys this object, do not use object again
204
206 <>
207
208
209
210 wx 1.9.3 wxStatusBar(3)