1 /* appmenu.c- application defined menu
3 * Window Maker window manager
5 * Copyright (c) 1997-2003 Alfredo K. Kojima
7 * This program is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License as published by
9 * the Free Software Foundation; either version 2 of the License, or
10 * (at your option) any later version.
12 * This program is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 * GNU General Public License for more details.
17 * You should have received a copy of the GNU General Public License along
18 * with this program; if not, write to the Free Software Foundation, Inc.,
19 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
25 #include <X11/Xutil.h>
26 #include <X11/Xproto.h>
27 #include <X11/Xatom.h>
33 #include "WindowMaker.h"
40 /******** Global Variables **********/
41 extern Atom _XA_WINDOWMAKER_MENU
;
42 extern Time LastTimestamp
;
43 extern WPreferences wPreferences
;
63 static void sendMessage(Window window
, int what
, int tag
)
67 event
.xclient
.type
= ClientMessage
;
68 event
.xclient
.message_type
= _XA_WINDOWMAKER_MENU
;
69 event
.xclient
.format
= 32;
70 event
.xclient
.display
= dpy
;
71 event
.xclient
.window
= window
;
72 event
.xclient
.data
.l
[0] = LastTimestamp
;
73 event
.xclient
.data
.l
[1] = what
;
74 event
.xclient
.data
.l
[2] = tag
;
75 event
.xclient
.data
.l
[3] = 0;
76 XSendEvent(dpy
, window
, False
, NoEventMask
, &event
);
80 static void notifyClient(WMenu
* menu
, WMenuEntry
* entry
)
82 WAppMenuData
*data
= entry
->clientdata
;
84 sendMessage(data
->window
, wmSelectItem
, data
->tag
);
87 static WMenu
*parseMenuCommand(WScreen
* scr
, Window win
, char **slist
, int count
, int *index
)
95 if (strlen(slist
[*index
]) > sizeof(title
) - 1) {
96 wwarning("appmenu: menu command size exceeded in window %lx", win
);
99 if (sscanf(slist
[*index
], "%i %i %n", &command
, &code
, &pos
) < 2 || command
!= wmBeginMenu
) {
100 wwarning("appmenu: bad menu entry \"%s\" in window %lx", slist
[*index
], win
);
103 strcpy(title
, &slist
[*index
][pos
]);
104 menu
= wMenuCreateForApp(scr
, title
, *index
== 1);
108 while (*index
< count
) {
109 int ecode
, etag
, enab
;
111 if (sscanf(slist
[*index
], "%i", &command
) != 1) {
112 wMenuDestroy(menu
, True
);
113 wwarning("appmenu: bad menu entry \"%s\" in window %lx", slist
[*index
], win
);
117 if (command
== wmEndMenu
) {
121 } else if (command
== wmNormalItem
|| command
== wmDoubleItem
) {
125 if (command
== wmNormalItem
) {
126 if (sscanf(slist
[*index
], "%i %i %i %i %n",
127 &command
, &ecode
, &etag
, &enab
, &pos
) != 4 || ecode
!= code
) {
128 wMenuDestroy(menu
, True
);
129 wwarning("appmenu: bad menu entry \"%s\" in window %lx",
133 strcpy(title
, &slist
[*index
][pos
]);
136 if (sscanf(slist
[*index
], "%i %i %i %i %s %n",
137 &command
, &ecode
, &etag
, &enab
, rtext
, &pos
) != 5 || ecode
!= code
) {
138 wMenuDestroy(menu
, True
);
139 wwarning("appmenu: bad menu entry \"%s\" in window %lx",
143 strcpy(title
, &slist
[*index
][pos
]);
145 if (!(data
= malloc(sizeof(WAppMenuData
)))) {
146 wwarning("appmenu: out of memory making menu for window %lx", win
);
147 wMenuDestroy(menu
, True
);
153 entry
= wMenuAddCallback(menu
, title
, notifyClient
, data
);
155 wMenuDestroy(menu
, True
);
156 wwarning("appmenu: out of memory creating menu for window %lx", win
);
161 entry
->rtext
= wstrdup(rtext
);
164 entry
->free_cdata
= free
;
167 } else if (command
== wmSubmenuItem
) {
172 if (sscanf(slist
[*index
], "%i %i %i %i %i %n",
173 &command
, &ecode
, &etag
, &enab
, &ncode
, &pos
) != 5 || ecode
!= code
) {
174 wMenuDestroy(menu
, True
);
175 wwarning("appmenu: bad menu entry \"%s\" in window %lx", slist
[*index
], win
);
179 strcpy(title
, &slist
[*index
][pos
]);
182 submenu
= parseMenuCommand(scr
, win
, slist
, count
, index
);
184 entry
= wMenuAddCallback(menu
, title
, NULL
, NULL
);
187 wMenuDestroy(menu
, True
);
188 wMenuDestroy(submenu
, True
);
189 wwarning("appmenu: out of memory creating menu for window %lx", win
);
193 wMenuEntrySetCascade(menu
, entry
, submenu
);
196 wMenuDestroy(menu
, True
);
197 wwarning("appmenu: bad menu entry \"%s\" in window %lx", slist
[*index
], win
);
205 WMenu
*wAppMenuGet(WScreen
* scr
, Window window
)
207 XTextProperty text_prop
;
212 if (!XGetTextProperty(dpy
, window
, &text_prop
, _XA_WINDOWMAKER_MENU
)) {
215 if (!XTextPropertyToStringList(&text_prop
, &slist
, &count
) || count
< 1) {
216 XFree(text_prop
.value
);
219 XFree(text_prop
.value
);
220 if (strcmp(slist
[0], "WMMenu 0") != 0) {
221 wwarning("appmenu: unknown version of WMMenu in window %lx: %s", window
, slist
[0]);
222 XFreeStringList(slist
);
227 menu
= parseMenuCommand(scr
, window
, slist
, count
, &i
);
231 XFreeStringList(slist
);
236 void wAppMenuDestroy(WMenu
* menu
)
239 wMenuDestroy(menu
, True
);
242 static void mapmenus(WMenu
* menu
)
246 if (menu
->flags
.mapped
)
247 XMapWindow(dpy
, menu
->frame
->core
->window
);
248 if (menu
->brother
->flags
.mapped
)
249 XMapWindow(dpy
, menu
->brother
->frame
->core
->window
);
250 for (i
= 0; i
< menu
->cascade_no
; i
++) {
251 if (menu
->cascades
[i
])
252 mapmenus(menu
->cascades
[i
]);
256 void wAppMenuMap(WMenu
* menu
, WWindow
* wwin
)
262 if (!menu
->flags
.mapped
) {
265 if (wwin
&& (wPreferences
.focus_mode
!= WKF_CLICK
)) {
268 min
= 20; /* Keep at least 20 pixels visible */
269 if (wwin
->frame_x
> min
) {
270 x
= wwin
->frame_x
- menu
->frame
->core
->width
;
272 x
= min
- menu
->frame
->core
->width
;
274 wMenuMove(menu
, x
, wwin
->frame_y
, True
);
280 static void unmapmenus(WMenu
* menu
)
284 if (menu
->flags
.mapped
)
285 XUnmapWindow(dpy
, menu
->frame
->core
->window
);
286 if (menu
->brother
->flags
.mapped
)
287 XUnmapWindow(dpy
, menu
->brother
->frame
->core
->window
);
288 for (i
= 0; i
< menu
->cascade_no
; i
++) {
289 if (menu
->cascades
[i
])
290 unmapmenus(menu
->cascades
[i
]);
294 void wAppMenuUnmap(WMenu
* menu
)