table of contents
- stretch 1:19.2.1+dfsg-2+deb9u2
- testing 1:21.2.6+dfsg-1
- unstable 1:21.2.6+dfsg-1
- experimental 1:22.0.4+dfsg-1
wxMenuBar(3erl) | Erlang Module Definition | wxMenuBar(3erl) |
NAME¶
wxMenuBar - See external documentation: wxMenuBar.DESCRIPTION¶
See external documentation: wxMenuBar.This class is derived (and can use functions) from:
wxWindow
wxEvtHandler
DATA TYPES¶
- wxMenuBar():
An object reference, The representation is internal and can be changed without notice. It can't be used for comparsion stored on disc or distributed for use on other nodes.
EXPORTS¶
new() -> wxMenuBar()See external documentation.
new(Style) -> wxMenuBar()
Types:
See external documentation.
append(This, Menu, Title) -> boolean()
Types:
Menu = wxMenu:wxMenu()
Title = unicode:chardata()
See external documentation.
check(This, Itemid, Check) -> ok
Types:
Itemid = integer()
Check = boolean()
See external documentation.
enable(This) -> boolean()
Types:
Equivalent to enable(This, []).
enable(This, Options::[Option]) -> boolean()
Types:
Option = {enable, boolean()}
See external documentation.
enable(This, Itemid, Enable) -> ok
Types:
Itemid = integer()
Enable = boolean()
See external documentation.
enableTop(This, Pos, Flag) -> ok
Types:
Pos = integer()
Flag = boolean()
See external documentation.
findMenu(This, Title) -> integer()
Types:
Title = unicode:chardata()
See external documentation.
findMenuItem(This, MenuString, ItemString) -> integer()
Types:
MenuString = unicode:chardata()
ItemString = unicode:chardata()
See external documentation.
findItem(This, Id) -> wxMenuItem:wxMenuItem()
Types:
Id = integer()
See external documentation.
getHelpString(This, Itemid) -> unicode:charlist()
Types:
Itemid = integer()
See external documentation.
getLabel(This) -> unicode:charlist()
Types:
See external documentation.
getLabel(This, Itemid) -> unicode:charlist()
Types:
Itemid = integer()
See external documentation.
getLabelTop(This, Pos) -> unicode:charlist()
Types:
Pos = integer()
See external documentation.
getMenu(This, Pos) -> wxMenu:wxMenu()
Types:
Pos = integer()
See external documentation.
getMenuCount(This) -> integer()
Types:
See external documentation.
insert(This, Pos, Menu, Title) -> boolean()
Types:
Pos = integer()
Menu = wxMenu:wxMenu()
Title = unicode:chardata()
See external documentation.
isChecked(This, Itemid) -> boolean()
Types:
Itemid = integer()
See external documentation.
isEnabled(This) -> boolean()
Types:
See external documentation.
isEnabled(This, Itemid) -> boolean()
Types:
Itemid = integer()
See external documentation.
remove(This, Pos) -> wxMenu:wxMenu()
Types:
Pos = integer()
See external documentation.
replace(This, Pos, Menu, Title) ->
wxMenu:wxMenu()
Types:
Pos = integer()
Menu = wxMenu:wxMenu()
Title = unicode:chardata()
See external documentation.
setHelpString(This, Itemid, HelpString) -> ok
Types:
Itemid = integer()
HelpString = unicode:chardata()
See external documentation.
setLabel(This, S) -> ok
Types:
S = unicode:chardata()
See external documentation.
setLabel(This, Itemid, Label) -> ok
Types:
Itemid = integer()
Label = unicode:chardata()
See external documentation.
setLabelTop(This, Pos, Label) -> ok
Types:
Pos = integer()
Label = unicode:chardata()
See external documentation.
destroy(This::wxMenuBar()) -> ok
Destroys this object, do not use object again
AUTHORS¶
<>wx 1.8 |