Creation/Dev/Script/Client/GuiMenuCtrl
Inherits GuiControl.
Description
This control can be used to display a regular window menu. Use a different profile to display it either transparent or opaque. With addmenu you can add sub menus, which are of type GuiContextMenuCtrl (the same like right-click menus, except that you can additionally specify an icon).
Variables
iconheight - integer (read only)
iconwidth - integer (read only)
menus[] - array of GuiContextMenuCtrl, each submenu also has an icon (TDrawingPanel)
Functions
addmenu(str) - returns object
clearmenus()
findmenu(str) - returns object
removemenu(str)
seticonsize(int, int)
Events
onSelect(menuname,entryid,entrytext,entryindex) - an entry of a submenu has been selected
onCancel() - a submenu has been collapsed without selecting an entry
onIconResized(newwidth,newheight) - the icons size has been modified (via setIconSize())
Example
new GuiMenuCtrl("Test_Menu") {
profile = GuiBlueTextEditProfile;
x = 10;
y = 10;
width = 160;
height = 20;
clearmenus();
with (addmenu("File")) {
profile = GuiBluePopUpMenuProfile;
textprofile = GuiBlueTextListProfile;
addrow(0,"Open");
addrow(-1,"-");
addrow(1,"Close");
}
with (addmenu("Edit")) {
profile = GuiBluePopUpMenuProfile;
textprofile = GuiBlueTextListProfile;
addrow(0,"Find");
}
}