Creation/Dev/Script/Client/GuiMenuCtrl: Difference between revisions
(Added picture, description and an example script) |
|||
Line 1: | Line 1: | ||
Inherits [[Creation/Dev/Script/Client/GuiControl|GuiControl]]. | Inherits [[Creation/Dev/Script/Client/GuiControl|GuiControl]]. | ||
=Description= | |||
[[Image:Guicontrol_menu.png]] | |||
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 [[Creation/Dev/Script/Client/GuiContextMenuCtrl|GuiContextMenuCtrl]] (the same like right-click menus, except that you can additionally specify an icon). | |||
Line 30: | Line 36: | ||
onIconResized(newwidth,newheight) - the icons size has been modified (via setIconSize()) | 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"); | |||
} | |||
} |
Revision as of 18:14, 16 September 2006
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"); } }