Structure to describe a menu
Source position: intuition.pas line 176
type tMenu = record |
||
NextMenu: pMenu; |
|
Next Menu on the same level |
LeftEdge: SmallInt; |
|
Left position of the select box |
TopEdge: SmallInt; |
|
Top position of the select box |
Width: SmallInt; |
|
Width of the select box |
Height: SmallInt; |
|
Height of the select box |
Flags: Word; |
|
Flags for the menu (MENUENABLED, MIDRAWN) |
MenuName: PChar; |
|
Text for this Menu Header |
FirstItem: pMenuItem; |
|
Pointer to first menu item in chain |
JazzX: SmallInt; |
|
|
JazzY: SmallInt; |
|
|
BeatX: SmallInt; |
|
|
BeatY: SmallInt; |
|
|
end; |
|
Window structure |
|
|
Returns the address of the specified MenuItem. |
|
|
Re-attach a menu strip to a window. |
|
|
Attach a menu strip to a window. |