1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
|
Program GadtoolsMenu;
{* gadtoolsmenu.p
** Example showing the basic usage of the menu system with a window.
** Menu layout is done with GadTools, as is recommended for applications.
**
*}
{
Changed to use TAGS and pas2c.
1 Nov 1998.
Updated for systemvartags.
28 Nov 2002.
nils.sjoholm@mailbox.swipnet.se
}
uses Exec, Intuition, Utility, GadTools, systemvartags;
const
mynewmenu : array[0..15] of tNewMenu = (
(nm_Type: NM_TITLE; nm_Label:'Project'; nm_CommKey: NIL; nm_Flags:0;
nm_MutualExclude:0; nm_UserData:NIL),
(nm_Type: NM_ITEM; nm_Label:'Open...'; nm_CommKey:'O'; nm_Flags:0;
nm_MutualExclude:0; nm_UserData:NIL),
(nm_Type: NM_ITEM; nm_Label:'Save'; nm_CommKey:'S'; nm_Flags:0;
nm_MutualExclude:0; nm_UserData:NIL),
(nm_Type: NM_ITEM; nm_Label:nil; nm_CommKey: NIL; nm_Flags:0;
nm_MutualExclude:0; nm_UserData:NIL),
(nm_Type: NM_ITEM; nm_Label:'Print'; nm_CommKey: NIL; nm_Flags:0;
nm_MutualExclude:0; nm_UserData:NIL),
(nm_Type: NM_SUB; nm_Label:'Draft'; nm_CommKey: NIL; nm_Flags:0;
nm_MutualExclude:0; nm_UserData:NIL),
(nm_Type: NM_SUB; nm_Label:'NLQ'; nm_CommKey: NIL; nm_Flags:0;
nm_MutualExclude:0; nm_UserData:NIL),
(nm_Type: NM_ITEM; nm_Label:nil; nm_CommKey: NIL; nm_Flags:0;
nm_MutualExclude:0; nm_UserData:NIL),
(nm_Type: NM_ITEM; nm_Label:'Quit...'; nm_CommKey:'Q'; nm_Flags:0;
nm_MutualExclude:0; nm_UserData:NIL),
(nm_Type: NM_TITLE; nm_Label:'Edit'; nm_CommKey: NIL; nm_Flags:0;
nm_MutualExclude:0; nm_UserData:NIL),
(nm_Type: NM_ITEM; nm_Label:'Cut'; nm_CommKey:'X'; nm_Flags:0;
nm_MutualExclude:0; nm_UserData:NIL),
(nm_Type: NM_ITEM; nm_Label:'Copy'; nm_CommKey:'C'; nm_Flags:0;
nm_MutualExclude:0; nm_UserData:NIL),
(nm_Type: NM_ITEM; nm_Label:'Paste'; nm_CommKey:'V'; nm_Flags:0;
nm_MutualExclude:0; nm_UserData:NIL),
(nm_Type: NM_ITEM; nm_Label:nil; nm_CommKey: NIL; nm_Flags:0;
nm_MutualExclude:0; nm_UserData:NIL),
(nm_Type: NM_ITEM; nm_Label:'Undo'; nm_CommKey:'Z'; nm_Flags:0;
nm_MutualExclude:0; nm_UserData:NIL),
(nm_Type: NM_END; nm_Label:NIL; nm_CommKey:NIL; nm_Flags:0;
nm_MutualExclude:0; nm_UserData:NIL));
var
win : pWindow;
myVisualInfo : Pointer;
menuStrip : pMenu;
msg : pMessage;
done : boolean;
Procedure Die;
begin
if assigned(MenuStrip) then begin
ClearMenuStrip(win);
FreeMenus(MenuStrip);
end;
if assigned(myVisualInfo) then FreeVisualInfo(myVisualInfo);
if assigned(win) then CloseWindow(win);
Halt(0);
end;
{*
** Watch the menus and wait for the user to select the close gadget
** or quit from the menus.
*}
PROCEDURE ProcessIDCMP;
VAR
IMessage : tIntuiMessage;
IPtr : pIntuiMessage;
Procedure ProcessMenu;
var
MenuNumber : Word;
ItemNumber : Word;
SubItemNumber : Word;
begin
if IMessage.Code = MENUNULL then
Exit;
MenuNumber := MenuNum(IMessage.Code);
ItemNumber := ItemNum(IMessage.Code);
SubItemNumber := SubNum(IMessage.Code);
if (MenuNumber = 0) and (ItemNumber = 5) then done := true;
end;
begin
IPtr := pIntuiMessage(Msg);
IMessage := IPtr^;
ReplyMsg(Msg);
case IMessage.IClass of
IDCMP_MENUPICK : ProcessMenu;
IDCMP_CLOSEWINDOW : done := True;
end;
end;
{*
** Open all of the required libraries and set-up the menus.
*}
begin
win := OpenWindowTags(NIL, [
WA_Width, 400,
WA_Activate, ltrue,
WA_Height, 100,
WA_CloseGadget, ltrue,
WA_Title, 'Menu Test Window',
WA_IDCMP, IDCMP_CLOSEWINDOW or IDCMP_MENUPICK,
TAG_END]);
if win = nil then die;
myVisualInfo := GetVisualInfoA(win^.WScreen,nil);
if myVisualInfo = nil then die;
{
make the barlabels
}
mynewmenu[3].nm_Label := PChar(NM_BARLABEL);
mynewmenu[7].nm_Label := PChar(NM_BARLABEL);
mynewmenu[13].nm_Label := PChar(NM_BARLABEL);
if pExecBase(_ExecBase)^.LibNode.Lib_Version >= 39 then begin
MenuStrip := CreateMenus(@mynewmenu, [
GTMN_FrontPen, 1,
TAG_END]);
end else MenuStrip := CreateMenusA(@mynewmenu,NIL);
if menuStrip = nil then die;
if not LayoutMenusA(menuStrip, myVisualInfo,nil) then die;
if not SetMenuStrip(win,menuStrip) then die;
repeat
Msg := WaitPort(win^.UserPort);
Msg := GetMsg(win^.UserPort);
ProcessIDCMP;
until done;
die;
end.
|