1 /* rootmenu.c- user defined menu
3 * Window Maker window manager
5 * Copyright (c) 1997, 1998 Alfredo K. Kojima
6 * Copyright (c) 1998 Dan Pascu
8 * This program is free software; you can redistribute it and/or modify
9 * it under the terms of the GNU General Public License as published by
10 * the Free Software Foundation; either version 2 of the License, or
11 * (at your option) any later version.
13 * This program is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 * GNU General Public License for more details.
18 * You should have received a copy of the GNU General Public License
19 * along with this program; if not, write to the Free Software
20 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307,
34 #include <sys/types.h>
41 #include <X11/Xutil.h>
42 #include <X11/Xatom.h>
44 #include "WindowMaker.h"
51 #include "workspace.h"
55 #include "xmodifier.h"
62 extern WDDomain
*WDRootMenu
;
64 extern Cursor wCursor
[WCUR_LAST
];
66 extern Time LastTimestamp
;
68 extern WPreferences wPreferences
;
70 extern int wScreenCount
;
72 static WMenu
*readMenuPipe(WScreen
*scr
, char **file_name
);
73 static WMenu
*readMenuFile(WScreen
*scr
, char *file_name
);
74 static WMenu
*readMenuDirectory(WScreen
*scr
, char *title
, char **file_name
,
78 typedef struct Shortcut
{
79 struct Shortcut
*next
;
89 static Shortcut
*shortcutList
= NULL
;
96 * "Title" EXEC command_to_exec -params
98 * "Title" EXEC command_to_exec -params
100 * "Workspaces" WORKSPACE_MENU
101 * "Title" built_in_command
103 * "Quick Quit" EXIT QUICK
106 * Commands may be preceded by SHORTCUT key
110 * INFO_PANEL - shows the Info Panel
111 * LEGAL_PANEL - shows the Legal info panel
112 * SHUTDOWN [QUICK] - closes the X server [without confirmation]
113 * REFRESH - forces the desktop to be repainted
114 * EXIT [QUICK] - exit the window manager [without confirmation]
115 * EXEC <program> - execute an external program
116 * SHEXEC <command> - execute a shell command
117 * WORKSPACE_MENU - places the workspace submenu
119 * RESTART [<window manager>] - restarts the window manager
120 * SHOW_ALL - unhide all windows on workspace
121 * HIDE_OTHERS - hides all windows excep the focused one
122 * OPEN_MENU file - read menu data from file which must be a valid menu file.
123 * OPEN_MENU /some/dir [/some/other/dir ...] [WITH command -options]
124 * - read menu data from directory(ies) and
125 * eventually precede each with a command.
126 * OPEN_MENU | command
127 * - opens command and uses its stdout to construct and insert
128 * the resulting menu in current position. The output of
129 * command must be a valid menu description.
130 * The space between '|' and command is optional.
131 * SAVE_SESSION - saves the current state of the desktop, which include
132 * all running applications, all their hints (geometry,
133 * position on screen, workspace they live on, the dock
134 * or clip from where they were launched, and
135 * if minimized, shaded or hidden. Also saves the current
136 * workspace the user is on. All will be restored on every
137 * start of windowmaker until another SAVE_SESSION or
138 * CLEAR_SESSION is used. If SaveSessionOnExit = Yes; in
139 * WindowMaker domain file, then saving is automatically
140 * done on every windowmaker exit, overwriting any
141 * SAVE_SESSION or CLEAR_SESSION (see below). Also save
143 * CLEAR_SESSION - clears any previous saved session. This will not have
144 * any effect if SaveSessionOnExit is True.
148 #define MAX(a,b) ((a)>(b) ? (a) : (b))
156 execCommand(WMenu
*menu
, WMenuEntry
*entry
)
160 cmdline
= ExpandOptions(menu
->frame
->screen_ptr
, (char*)entry
->clientdata
);
162 XGrabPointer(dpy
, menu
->frame
->screen_ptr
->root_win
, True
, 0,
163 GrabModeAsync
, GrabModeAsync
, None
, wCursor
[WCUR_WAIT
],
168 ExecuteShellCommand(menu
->frame
->screen_ptr
, cmdline
);
171 XUngrabPointer(dpy
, CurrentTime
);
177 exitCommand(WMenu
*menu
, WMenuEntry
*entry
)
179 static int inside
= 0;
181 /* prevent reentrant calls */
186 if ((long)entry
->clientdata
==M_QUICK
187 || wMessageDialog(menu
->frame
->screen_ptr
, _("Exit"),
188 _("Exit window manager?"),
189 _("Exit"), _("Cancel"), NULL
)==WAPRDefault
) {
191 printf("Exiting WindowMaker.\n");
193 Shutdown(WSExitMode
);
200 shutdownCommand(WMenu
*menu
, WMenuEntry
*entry
)
202 static int inside
= 0;
205 /* prevent reentrant calls */
216 if ((long)entry
->clientdata
==M_QUICK
)
220 if (wSessionIsManaged()) {
223 r
= wMessageDialog(menu
->frame
->screen_ptr
,
224 _("Close X session"),
225 _("Close Window System session?\n"
226 "Kill might close applications with unsaved data."),
227 _("Close"), _("Kill"), _("Cancel"));
230 else if (r
==WAPRAlternate
)
237 r
= wMessageDialog(menu
->frame
->screen_ptr
,
239 _("Kill Window System session?\n"
240 "(all applications will be closed)"),
241 _("Kill"), _("Cancel"), NULL
);
247 if (result
!=R_CANCEL
) {
249 if (result
== R_CLOSE
) {
250 Shutdown(WSLogoutMode
);
252 #endif /* XSMP_ENABLED */
254 Shutdown(WSKillMode
);
265 restartCommand(WMenu
*menu
, WMenuEntry
*entry
)
267 Shutdown(WSRestartPreparationMode
);
268 Restart((char*)entry
->clientdata
, False
);
274 refreshCommand(WMenu
*menu
, WMenuEntry
*entry
)
276 wRefreshDesktop(menu
->frame
->screen_ptr
);
281 arrangeIconsCommand(WMenu
*menu
, WMenuEntry
*entry
)
283 wArrangeIcons(menu
->frame
->screen_ptr
, True
);
287 showAllCommand(WMenu
*menu
, WMenuEntry
*entry
)
289 wShowAllWindows(menu
->frame
->screen_ptr
);
293 hideOthersCommand(WMenu
*menu
, WMenuEntry
*entry
)
295 wHideOtherApplications(menu
->frame
->screen_ptr
->focused_window
);
300 saveSessionCommand(WMenu
*menu
, WMenuEntry
*entry
)
302 if (!wPreferences
.save_session_on_exit
)
303 wSessionSaveState(menu
->frame
->screen_ptr
);
305 wScreenSaveState(menu
->frame
->screen_ptr
);
310 clearSessionCommand(WMenu
*menu
, WMenuEntry
*entry
)
312 wSessionClearState(menu
->frame
->screen_ptr
);
317 infoPanelCommand(WMenu
*menu
, WMenuEntry
*entry
)
319 wShowInfoPanel(menu
->frame
->screen_ptr
);
324 legalPanelCommand(WMenu
*menu
, WMenuEntry
*entry
)
326 wShowLegalPanel(menu
->frame
->screen_ptr
);
330 /********************************************************************/
334 getLocalizedMenuFile(char *menu
)
342 buffer
= wmalloc(strlen(menu
)+32);
344 /* try menu.locale_name */
345 sprintf(buffer
, "%s.%s", menu
, Locale
);
346 if (access(buffer
, F_OK
)==0) {
349 /* check if it is in the form aa_bb.encoding and check for aa_bb */
350 ptr
= strchr(Locale
, '.');
353 if (access(buffer
, F_OK
)==0) {
357 /* now check for aa */
358 ptr
= strchr(buffer
, '_');
361 if (access(buffer
, F_OK
)==0) {
371 raiseMenus(WMenu
*menu
)
375 if (menu
->flags
.mapped
) {
376 wRaiseFrame(menu
->frame
->core
);
378 for (i
=0; i
<menu
->cascade_no
; i
++) {
379 if (menu
->cascades
[i
])
380 raiseMenus(menu
->cascades
[i
]);
387 wRootMenuPerformShortcut(XEvent
*event
)
393 /* ignore CapsLock */
394 modifiers
= event
->xkey
.state
& ValidModMask
;
396 for (ptr
= shortcutList
; ptr
!=NULL
; ptr
= ptr
->next
) {
400 if (ptr
->keycode
==event
->xkey
.keycode
&& (ptr
->modifier
==modifiers
)) {
401 (*ptr
->entry
->callback
)(ptr
->menu
, ptr
->entry
);
410 wRootMenuBindShortcuts(Window window
)
416 if (ptr
->modifier
!=AnyModifier
) {
417 XGrabKey(dpy
, ptr
->keycode
, ptr
->modifier
|LockMask
,
418 window
, True
, GrabModeAsync
, GrabModeAsync
);
420 wHackedGrabKey(ptr
->keycode
, ptr
->modifier
,
421 window
, True
, GrabModeAsync
, GrabModeAsync
);
424 XGrabKey(dpy
, ptr
->keycode
, ptr
->modifier
, window
, True
,
425 GrabModeAsync
, GrabModeAsync
);
432 rebindKeygrabs(WScreen
*scr
)
436 wwin
= scr
->focused_window
;
439 XUngrabKey(dpy
, AnyKey
, AnyModifier
, wwin
->frame
->core
->window
);
441 if (!WFLAGP(wwin
, no_bind_keys
)) {
442 wWindowSetKeyGrabs(wwin
);
450 removeShortcutsForMenu(WMenu
*menu
)
453 Shortcut
*newList
= NULL
;
458 if (ptr
->menu
== menu
) {
466 shortcutList
= newList
;
467 menu
->menu
->screen_ptr
->flags
.root_menu_changed_shortcuts
= 1;
472 addShortcut(char *file
, char *shortcutDefinition
, WMenu
*menu
,
480 ptr
= wmalloc(sizeof(Shortcut
));
482 strcpy(buf
, shortcutDefinition
);
487 while ((k
= strchr(b
, '+'))!=NULL
) {
491 mod
= wXModifierFromKey(b
);
493 wwarning(_("%s:invalid key modifier \"%s\""), file
, b
);
497 ptr
->modifier
|= mod
;
503 ksym
= XStringToKeysym(b
);
505 if (ksym
==NoSymbol
) {
506 wwarning(_("%s:invalid kbd shortcut specification \"%s\" for entry %s"),
507 file
, shortcutDefinition
, entry
->text
);
512 ptr
->keycode
= XKeysymToKeycode(dpy
, ksym
);
513 if (ptr
->keycode
==0) {
514 wwarning(_("%s:invalid key in shortcut \"%s\" for entry %s"), file
,
515 shortcutDefinition
, entry
->text
);
523 ptr
->next
= shortcutList
;
526 menu
->menu
->screen_ptr
->flags
.root_menu_changed_shortcuts
= 1;
532 /*******************************/
542 end
= &(line
[strlen(line
)])-1;
543 while (isspace(*line
) && *line
!=0) line
++;
544 while (end
>line
&& isspace(*end
)) {
553 next_token(char *line
, char **next
)
559 while (*line
==' ' || *line
=='\t') line
++;
565 while (*tmp
!=0 && *tmp
!='"') tmp
++;
567 wwarning(_("%s: unmatched '\"' in menu file"), line
);
578 } while (*tmp
!=0 && *tmp
!=' ' && *tmp
!='\t');
592 while (*tmp
==' ' || *tmp
=='\t') tmp
++;
602 separateCommand(char *line
, char ***file
, char **command
)
604 char *token
, *tmp
= line
;
605 WMBag
*bag
= WMCreateBag(4);
611 token
= next_token(tmp
, &tmp
);
613 if (strcmp(token
, "WITH")==0) {
614 if (tmp
!=NULL
&& *tmp
!=0)
615 *command
= wstrdup(tmp
);
617 wwarning(_("%s: missing command"), line
);
620 WMPutInBag(bag
, token
);
622 } while (token
!=NULL
&& tmp
!=NULL
);
624 count
= WMGetBagItemCount(bag
);
627 *file
= wmalloc(sizeof(char*)*(count
+1));
629 (*file
)[count
] = NULL
;
630 for (j
= 0; j
< count
; j
++) {
631 (*file
)[--i
] = WMGetFromBag(bag
, j
);
639 constructMenu(WMenu
*menu
, WMenuEntry
*entry
)
642 struct stat stat_buf
;
649 separateCommand((char*)entry
->clientdata
, &path
, &cmd
);
650 if (!path
|| *path
==NULL
|| **path
==0) {
651 wwarning(_("invalid OPEN_MENU specification: %s"),
652 (char*)entry
->clientdata
);
656 if (path
[0][0]=='|') {
659 if (!menu
->cascades
[entry
->cascade
] ||
660 menu
->cascades
[entry
->cascade
]->timestamp
== 0) {
663 submenu
= readMenuPipe(menu
->frame
->screen_ptr
, path
);
665 /* there's no automatic reloading */
667 submenu
->timestamp
= 1;
674 while(path
[i
] != NULL
) {
677 if (strcmp(path
[i
], "-noext")==0) {
682 tmp
= wexpandpath(path
[i
]);
684 lpath
= getLocalizedMenuFile(tmp
);
693 if (stat(path
[i
], &stat_buf
)==0) {
694 if (last
< stat_buf
.st_mtime
)
695 last
= stat_buf
.st_mtime
;
699 wsyserror(_("%s:could not stat menu"), path
[i
]);
707 wsyserror(_("%s:could not stat menu:%s"), "OPEN_MENU",
708 (char*)entry
->clientdata
);
711 stat(path
[first
], &stat_buf
);
712 if (!menu
->cascades
[entry
->cascade
]
713 || menu
->cascades
[entry
->cascade
]->timestamp
< last
) {
715 if (S_ISDIR(stat_buf
.st_mode
)) {
717 submenu
= readMenuDirectory(menu
->frame
->screen_ptr
,
718 entry
->text
, path
, cmd
);
720 submenu
->timestamp
= last
;
721 } else if (S_ISREG(stat_buf
.st_mode
)) {
725 wwarning(_("too many parameters in OPEN_MENU: %s"),
726 (char*)entry
->clientdata
);
728 submenu
= readMenuFile(menu
->frame
->screen_ptr
, path
[first
]);
730 submenu
->timestamp
= stat_buf
.st_mtime
;
740 wMenuEntryRemoveCascade(menu
, entry
);
741 wMenuEntrySetCascade(menu
, entry
, submenu
);
746 while (path
[i
]!=NULL
)
755 addWorkspaceMenu(WScreen
*scr
, WMenu
*menu
, char *title
)
760 if (scr
->flags
.added_workspace_menu
) {
761 wwarning(_("There are more than one WORKSPACE_MENU commands in the applications menu. Only one is allowed."));
764 scr
->flags
.added_workspace_menu
= 1;
766 wsmenu
= wWorkspaceMenuMake(scr
, True
);
767 scr
->workspace_menu
= wsmenu
;
768 entry
= wMenuAddCallback(menu
, title
, NULL
, NULL
);
769 wMenuEntrySetCascade(menu
, entry
, wsmenu
);
771 wWorkspaceMenuUpdate(scr
, wsmenu
);
778 addMenuEntry(WMenu
*menu
, char *title
, char *shortcut
, char *command
,
779 char *params
, char *file_name
)
782 WMenuEntry
*entry
= NULL
;
783 Bool shortcutOk
= False
;
787 scr
= menu
->frame
->screen_ptr
;
788 if (strcmp(command
, "OPEN_MENU")==0) {
790 wwarning(_("%s:missing parameter for menu command \"%s\""),
796 path
= wfindfile(DEF_CONFIG_PATHS
, params
);
798 path
= wstrdup(params
);
800 dummy
= wMenuCreate(scr
, title
, False
);
801 dummy
->on_destroy
= removeShortcutsForMenu
;
802 entry
= wMenuAddCallback(menu
, title
, constructMenu
, path
);
803 entry
->free_cdata
= free
;
804 wMenuEntrySetCascade(menu
, entry
, dummy
);
806 } else if (strcmp(command
, "EXEC")==0) {
808 wwarning(_("%s:missing parameter for menu command \"%s\""),
811 entry
= wMenuAddCallback(menu
, title
, execCommand
,
812 wstrappend("exec ", params
));
813 entry
->free_cdata
= free
;
816 } else if (strcmp(command
, "SHEXEC")==0) {
818 wwarning(_("%s:missing parameter for menu command \"%s\""),
821 entry
= wMenuAddCallback(menu
, title
, execCommand
,
823 entry
->free_cdata
= free
;
826 } else if (strcmp(command
, "EXIT")==0) {
828 if (params
&& strcmp(params
, "QUICK")==0)
829 entry
= wMenuAddCallback(menu
, title
, exitCommand
, (void*)M_QUICK
);
831 entry
= wMenuAddCallback(menu
, title
, exitCommand
, NULL
);
834 } else if (strcmp(command
, "SHUTDOWN")==0) {
836 if (params
&& strcmp(params
, "QUICK")==0)
837 entry
= wMenuAddCallback(menu
, title
, shutdownCommand
,
840 entry
= wMenuAddCallback(menu
, title
, shutdownCommand
, NULL
);
843 } else if (strcmp(command
, "REFRESH")==0) {
844 entry
= wMenuAddCallback(menu
, title
, refreshCommand
, NULL
);
847 } else if (strcmp(command
, "WORKSPACE_MENU")==0) {
848 entry
= addWorkspaceMenu(scr
, menu
, title
);
851 } else if (strcmp(command
, "ARRANGE_ICONS")==0) {
852 entry
= wMenuAddCallback(menu
, title
, arrangeIconsCommand
, NULL
);
855 } else if (strcmp(command
, "HIDE_OTHERS")==0) {
856 entry
= wMenuAddCallback(menu
, title
, hideOthersCommand
, NULL
);
859 } else if (strcmp(command
, "SHOW_ALL")==0) {
860 entry
= wMenuAddCallback(menu
, title
, showAllCommand
, NULL
);
863 } else if (strcmp(command
, "RESTART")==0) {
864 entry
= wMenuAddCallback(menu
, title
, restartCommand
,
865 params
? wstrdup(params
) : NULL
);
866 entry
->free_cdata
= free
;
868 } else if (strcmp(command
, "SAVE_SESSION")==0) {
869 entry
= wMenuAddCallback(menu
, title
, saveSessionCommand
, NULL
);
872 } else if (strcmp(command
, "CLEAR_SESSION")==0) {
873 entry
= wMenuAddCallback(menu
, title
, clearSessionCommand
, NULL
);
875 } else if (strcmp(command
, "INFO_PANEL")==0) {
876 entry
= wMenuAddCallback(menu
, title
, infoPanelCommand
, NULL
);
878 } else if (strcmp(command
, "LEGAL_PANEL")==0) {
879 entry
= wMenuAddCallback(menu
, title
, legalPanelCommand
, NULL
);
882 wwarning(_("%s:unknown command \"%s\" in menu config."), file_name
,
888 if (shortcut
&& entry
) {
890 wwarning(_("%s:can't add shortcut for entry \"%s\""), file_name
,
893 if (addShortcut(file_name
, shortcut
, menu
, entry
)) {
895 entry
->rtext
= GetShortcutString(shortcut
);
897 entry->rtext = wstrdup(shortcut);
908 /******************* Menu Configuration From File *******************/
911 separateline(char *line
, char *title
, char *command
, char *parameter
,
923 while (isspace(*line
) && (*line
!=0)) line
++;
927 while (line
[i
]!='"' && (line
[i
]!=0)) i
++;
932 while (!isspace(line
[i
]) && (line
[i
]!=0)) i
++;
934 strncpy(title
, line
, i
);
938 /* get the command or shortcut keyword */
939 while (isspace(*line
) && (*line
!=0)) line
++;
943 while (!isspace(line
[i
]) && (line
[i
]!=0)) i
++;
944 strncpy(command
, line
, i
);
948 if (strcmp(command
, "SHORTCUT")==0) {
949 /* get the shortcut key */
950 while (isspace(*line
) && (*line
!=0)) line
++;
954 while (line
[i
]!='"' && (line
[i
]!=0)) i
++;
959 while (!isspace(line
[i
]) && (line
[i
]!=0)) i
++;
961 strncpy(shortcut
, line
, i
);
967 /* get the command */
968 while (isspace(*line
) && (*line
!=0)) line
++;
972 while (!isspace(line
[i
]) && (line
[i
]!=0)) i
++;
973 strncpy(command
, line
, i
);
978 /* get the parameters */
979 while (isspace(*line
) && (*line
!=0)) line
++;
986 while (line
[l
]!=0 && line
[l
]!='"') {
987 parameter
[l
] = line
[l
];
995 while (isspace(line
[l
]) && (l
>0)) l
--;
996 strncpy(parameter
, line
, l
);
1002 parseCascade(WScreen
*scr
, WMenu
*menu
, FILE *file
, char *file_name
)
1004 char linebuf
[MAXLINE
];
1005 char elinebuf
[MAXLINE
];
1006 char title
[MAXLINE
];
1007 char command
[MAXLINE
];
1008 char shortcut
[MAXLINE
];
1009 char params
[MAXLINE
];
1012 while (!IsEof(file
)) {
1016 fgets(linebuf
, MAXLINE
, file
);
1017 line
= cropline(linebuf
);
1018 lsize
= strlen(line
);
1020 if (line
[lsize
-1]=='\\') {
1023 fgets(elinebuf
, MAXLINE
, file
);
1024 line2
=cropline(elinebuf
);
1025 lsize2
=strlen(line2
);
1026 if (lsize2
+lsize
>MAXLINE
) {
1027 wwarning(_("%s:maximal line size exceeded in menu config: %s"),
1033 strcat(line
, line2
);
1038 } while (!ok
&& !IsEof(file
));
1042 if (line
[0]==0 || line
[0]=='#' || (line
[0]=='/' && line
[1]=='/'))
1046 separateline(line
, title
, command
, params
, shortcut
);
1049 wwarning(_("%s:missing command in menu config: %s"), file_name
,
1054 if (strcasecmp(command
, "MENU")==0) {
1059 cascade
= wMenuCreate(scr
, title
, False
);
1060 cascade
->on_destroy
= removeShortcutsForMenu
;
1061 if (parseCascade(scr
, cascade
, file
, file_name
)==NULL
) {
1062 wMenuDestroy(cascade
, True
);
1064 wMenuEntrySetCascade(menu
,
1065 wMenuAddCallback(menu
, title
, NULL
, NULL
),
1068 } else if (strcasecmp(command
, "END")==0) {
1074 addMenuEntry(menu
, title
, shortcut
[0] ? shortcut
: NULL
, command
,
1075 params
[0] ? params
: NULL
, file_name
);
1079 wwarning(_("%s:syntax error in menu file:END declaration missing"),
1089 readMenuFile(WScreen
*scr
, char *file_name
)
1093 char linebuf
[MAXLINE
];
1094 char title
[MAXLINE
];
1095 char shortcut
[MAXLINE
];
1096 char command
[MAXLINE
];
1097 char params
[MAXLINE
];
1105 if (!wPreferences
.flags
.nocpp
) {
1106 args
= MakeCPPArgs(file_name
);
1108 wwarning(_("could not make arguments for menu file preprocessor"));
1110 sprintf(command
, "%s %s %s", CPP_PATH
, args
, file_name
);
1112 file
= popen(command
, "r");
1114 wsyserror(_("%s:could not open/preprocess menu file"),
1124 file
= fopen(file_name
, "r");
1126 wsyserror(_("%s:could not open menu file"), file_name
);
1131 while (!IsEof(file
)) {
1132 if (!fgets(linebuf
, MAXLINE
, file
))
1134 line
= cropline(linebuf
);
1135 if (line
[0]==0 || line
[0]=='#' || (line
[0]=='/' && line
[1]=='/'))
1138 separateline(line
, title
, command
, params
, shortcut
);
1141 wwarning(_("%s:missing command in menu config: %s"), file_name
,
1145 if (strcasecmp(command
, "MENU")==0) {
1146 menu
= wMenuCreate(scr
, title
, True
);
1147 menu
->on_destroy
= removeShortcutsForMenu
;
1148 if (!parseCascade(scr
, menu
, file
, file_name
)) {
1149 wMenuDestroy(menu
, True
);
1153 wwarning(_("%s:invalid menu file. MENU command is missing"),
1161 if (pclose(file
)==-1) {
1162 wsyserror(_("error reading preprocessed menu data"));
1174 /************ Menu Configuration From Pipe *************/
1177 readMenuPipe(WScreen
*scr
, char **file_name
)
1181 char linebuf
[MAXLINE
];
1182 char title
[MAXLINE
];
1183 char command
[MAXLINE
];
1184 char params
[MAXLINE
];
1185 char shortcut
[MAXLINE
];
1188 char flat_file
[MAXLINE
];
1195 flat_file
[0] = '\0';
1197 for(i
= 0 ; file_name
[i
] != NULL
; i
++) {
1198 strcat(flat_file
, file_name
[i
]);
1199 strcat(flat_file
, " ");
1201 filename
= flat_file
+1;
1204 if (!wPreferences
.flags
.nocpp
) {
1205 args
= MakeCPPArgs(filename
);
1207 wwarning(_("could not make arguments for menu file preprocessor"));
1209 sprintf(command
, "%s | %s %s", filename
, CPP_PATH
, args
);
1212 file
= popen(command
, "r");
1214 wsyserror(_("%s:could not open/preprocess menu file"), filename
);
1224 file
= popen(filename
, "r");
1227 wsyserror(_("%s:could not open menu file"), filename
);
1232 while (!IsEof(file
)) {
1233 if (!fgets(linebuf
, MAXLINE
, file
))
1235 line
= cropline(linebuf
);
1236 if (line
[0]==0 || line
[0]=='#' || (line
[0]=='/' && line
[1]=='/'))
1239 separateline(line
, title
, command
, params
, shortcut
);
1242 wwarning(_("%s:missing command in menu config: %s"), file_name
,
1246 if (strcasecmp(command
, "MENU")==0) {
1247 menu
= wMenuCreate(scr
, title
, True
);
1248 menu
->on_destroy
= removeShortcutsForMenu
;
1249 if (!parseCascade(scr
, menu
, file
, filename
)) {
1250 wMenuDestroy(menu
, True
);
1254 wwarning(_("%s:no title given for the root menu"), filename
);
1273 myCompare(const void *d1
, const void *d2
)
1275 dir_data
*p1
= *(dir_data
**)d1
;
1276 dir_data
*p2
= *(dir_data
**)d2
;
1278 return strcmp(p1
->name
, p2
->name
);
1282 /************ Menu Configuration From Directory *************/
1285 isFilePackage(char *file
)
1289 /* check if the extension indicates this file is a
1290 * file package. For now, only recognize .themed */
1294 if (l
> 7 && strcmp(&(file
[l
-7]), ".themed")==0) {
1303 readMenuDirectory(WScreen
*scr
, char *title
, char **path
, char *command
)
1306 struct dirent
*dentry
;
1307 struct stat stat_buf
;
1310 WMBag
*dirs
= NULL
, *files
= NULL
;
1311 int length
, i
, have_space
=0;
1313 int stripExtension
= 0;
1316 dirs
= WMCreateBag(16);
1317 files
= WMCreateBag(16);
1320 while (path
[i
]!=NULL
) {
1321 if (strcmp(path
[i
], "-noext")==0) {
1327 dir
= opendir(path
[i
]);
1333 while ((dentry
= readdir(dir
))) {
1335 if (strcmp(dentry
->d_name
, ".")==0 ||
1336 strcmp(dentry
->d_name
, "..")==0)
1339 if (dentry
->d_name
[0] == '.')
1342 buffer
= malloc(strlen(path
[i
])+strlen(dentry
->d_name
)+4);
1344 wsyserror(_("out of memory while constructing directory menu %s"),
1349 strcpy(buffer
, path
[i
]);
1350 strcat(buffer
, "/");
1351 strcat(buffer
, dentry
->d_name
);
1353 if (stat(buffer
, &stat_buf
)!=0) {
1354 wsyserror(_("%s:could not stat file \"%s\" in menu directory"),
1355 path
[i
], dentry
->d_name
);
1357 Bool isFilePack
= False
;
1360 if (S_ISDIR(stat_buf
.st_mode
)
1361 && !(isFilePack
= isFilePackage(dentry
->d_name
))) {
1363 /* access always returns success for user root */
1364 if (access(buffer
, X_OK
)==0) {
1365 /* Directory is accesible. Add to directory list */
1367 data
= (dir_data
*) wmalloc(sizeof(dir_data
));
1368 data
->name
= wstrdup(dentry
->d_name
);
1371 WMPutInBag(dirs
, data
);
1373 } else if (S_ISREG(stat_buf
.st_mode
) || isFilePack
) {
1374 /* Hack because access always returns X_OK success for user root */
1375 #define S_IXANY (S_IXUSR | S_IXGRP | S_IXOTH)
1376 if ((command
!=NULL
&& access(buffer
, R_OK
)==0) ||
1377 (command
==NULL
&& access(buffer
, X_OK
)==0 &&
1378 (stat_buf
.st_mode
& S_IXANY
))) {
1380 data
= (dir_data
*) wmalloc(sizeof(dir_data
));
1381 data
->name
= wstrdup(dentry
->d_name
);
1384 WMPutInBag(files
, data
);
1395 if (!WMGetBagItemCount(dirs
) && !WMGetBagItemCount(files
)) {
1401 WMSortBag(dirs
, myCompare
);
1402 WMSortBag(files
, myCompare
);
1404 menu
= wMenuCreate(scr
, title
, False
);
1405 menu
->on_destroy
= removeShortcutsForMenu
;
1407 for (i
= 0; i
< WMGetBagItemCount(dirs
); i
++) {
1408 /* New directory. Use same OPEN_MENU command that was used
1409 * for the current directory. */
1410 dir_data
*d
= (dir_data
*)WMGetFromBag(dirs
, i
);
1412 length
= strlen(path
[d
->index
])+strlen(d
->name
)+6;
1414 length
+= strlen(command
) + 6;
1415 buffer
= malloc(length
);
1417 wsyserror(_("out of memory while constructing directory menu %s"),
1422 have_space
= strchr(path
[d
->index
], ' ')!=NULL
||
1423 strchr(d
->name
, ' ')!=NULL
;
1427 strcat(buffer
, path
[d
->index
]);
1429 strcpy(buffer
, path
[d
->index
]);
1431 strcat(buffer
, "/");
1432 strcat(buffer
, d
->name
);
1434 strcat(buffer
, "\"");
1436 strcat(buffer
, " WITH ");
1437 strcat(buffer
, command
);
1440 addMenuEntry(menu
, d
->name
, NULL
, "OPEN_MENU", buffer
, path
[d
->index
]);
1448 for (i
= 0; i
< WMGetBagItemCount(files
); i
++) {
1449 /* executable: add as entry */
1450 dir_data
*f
= (dir_data
*)WMGetFromBag(files
, i
);
1452 length
= strlen(path
[f
->index
])+strlen(f
->name
)+6;
1454 length
+= strlen(command
);
1456 buffer
= wmalloc(length
);
1458 wsyserror(_("out of memory while constructing directory menu %s"),
1463 have_space
= strchr(path
[f
->index
], ' ')!=NULL
||
1464 strchr(f
->name
, ' ')!=NULL
;
1465 if (command
!=NULL
) {
1466 strcpy(buffer
, command
);
1467 strcat(buffer
, " ");
1469 strcat(buffer
, "\"");
1470 strcat(buffer
, path
[f
->index
]);
1475 strcat(buffer
, path
[f
->index
]);
1477 strcpy(buffer
, path
[f
->index
]);
1480 strcat(buffer
, "/");
1481 strcat(buffer
, f
->name
);
1483 strcat(buffer
, "\"");
1485 if (stripExtension
) {
1486 char *ptr
= strrchr(f
->name
, '.');
1487 if (ptr
&& ptr
!=f
->name
)
1490 addMenuEntry(menu
, f
->name
, NULL
, "SHEXEC", buffer
, path
[f
->index
]);
1505 /************ Menu Configuration From WMRootMenu *************/
1508 makeDefaultMenu(WScreen
*scr
)
1512 menu
= wMenuCreate(scr
, _("Commands"), True
);
1513 wMenuAddCallback(menu
, "XTerm", execCommand
, "xterm");
1514 wMenuAddCallback(menu
, "rxvt", execCommand
, "rxvt");
1515 wMenuAddCallback(menu
, _("Restart"), restartCommand
, NULL
);
1516 wMenuAddCallback(menu
, _("Exit..."), exitCommand
, NULL
);
1525 *----------------------------------------------------------------------
1527 * Reads root menu configuration from defaults database.
1529 *----------------------------------------------------------------------
1532 configureMenu(WScreen
*scr
, proplist_t definition
)
1537 proplist_t title
, command
, params
;
1541 if (PLIsString(definition
)) {
1542 struct stat stat_buf
;
1544 Bool menu_is_default
= False
;
1546 /* menu definition is a string. Probably a path, so parse the file */
1548 tmp
= wexpandpath(PLGetString(definition
));
1550 path
= getLocalizedMenuFile(tmp
);
1553 path
= wfindfile(DEF_CONFIG_PATHS
, tmp
);
1556 path
= wfindfile(DEF_CONFIG_PATHS
, DEF_MENU_FILE
);
1557 menu_is_default
= True
;
1561 wsyserror(_("could not find menu file \"%s\" referenced in WMRootMenu"),
1567 if (stat(path
, &stat_buf
)<0) {
1568 wsyserror(_("could not access menu \"%s\" referenced in WMRootMenu"), path
);
1574 if (!scr
->root_menu
|| stat_buf
.st_mtime
> scr
->root_menu
->timestamp
1575 /* if the pointer in WMRootMenu has changed */
1576 || WDRootMenu
->timestamp
> scr
->root_menu
->timestamp
) {
1578 if (menu_is_default
) {
1579 wwarning(_("using default menu file \"%s\" as the menu referenced in WMRootMenu could not be found "),
1583 menu
= readMenuFile(scr
, path
);
1585 menu
->timestamp
= MAX(stat_buf
.st_mtime
, WDRootMenu
->timestamp
);
1595 count
= PLGetNumberOfElements(definition
);
1599 elem
= PLGetArrayElement(definition
, 0);
1600 if (!PLIsString(elem
)) {
1601 tmp
= PLGetDescription(elem
);
1602 wwarning(_("%s:format error in root menu configuration \"%s\""),
1607 mtitle
= PLGetString(elem
);
1609 menu
= wMenuCreate(scr
, mtitle
, False
);
1610 menu
->on_destroy
= removeShortcutsForMenu
;
1612 #ifdef GLOBAL_SUBMENU_FILE
1617 submenu
= readMenuFile(scr
, GLOBAL_SUBMENU_FILE
);
1620 mentry
= wMenuAddCallback(menu
, submenu
->frame
->title
, NULL
, NULL
);
1621 wMenuEntrySetCascade(menu
, mentry
, submenu
);
1626 for (i
=1; i
<count
; i
++) {
1627 elem
= PLGetArrayElement(definition
, i
);
1629 if (PLIsString(elem
)) {
1632 file
= PLGetString(elem
);
1636 if (!PLIsArray(elem
) || PLGetNumberOfElements(elem
) < 2)
1639 if (PLIsArray(PLGetArrayElement(elem
,1))) {
1644 submenu
= configureMenu(scr
, elem
);
1646 mentry
= wMenuAddCallback(menu
, submenu
->frame
->title
, NULL
,
1648 wMenuEntrySetCascade(menu
, mentry
, submenu
);
1655 title
= PLGetArrayElement(elem
, idx
++);
1656 shortcut
= PLGetArrayElement(elem
, idx
++);
1657 if (strcmp(PLGetString(shortcut
), "SHORTCUT")==0) {
1658 shortcut
= PLGetArrayElement(elem
, idx
++);
1659 command
= PLGetArrayElement(elem
, idx
++);
1664 params
= PLGetArrayElement(elem
, idx
++);
1666 if (!title
|| !command
)
1669 addMenuEntry(menu
, PLGetString(title
),
1670 shortcut
? PLGetString(shortcut
) : NULL
,
1671 PLGetString(command
),
1672 params
? PLGetString(params
) : NULL
, "WMRootMenu");
1677 tmp
= PLGetDescription(elem
);
1678 wwarning(_("%s:format error in root menu configuration \"%s\""),
1694 *----------------------------------------------------------------------
1696 * Opens the root menu, parsing the menu configuration from the
1697 * defaults database.
1698 * If the menu is already mapped and is not sticked to the
1699 * root window, it will be unmapped.
1702 * The menu may be remade.
1705 * Construction of OPEN_MENU entries are delayed to the moment the
1707 *----------------------------------------------------------------------
1710 OpenRootMenu(WScreen
*scr
, int x
, int y
, int keyboard
)
1713 proplist_t definition
;
1715 static proplist_t domain=NULL;
1718 domain = PLMakeString("WMRootMenu");
1722 scr
->flags
.root_menu_changed_shortcuts
= 0;
1723 scr
->flags
.added_workspace_menu
= 0;
1725 if (scr
->root_menu
&& scr
->root_menu
->flags
.mapped
) {
1726 menu
= scr
->root_menu
;
1727 if (!menu
->flags
.buttoned
) {
1730 wRaiseFrame(menu
->frame
->core
);
1733 wMenuMapAt(menu
, 0, 0, True
);
1735 wMenuMapCopyAt(menu
, x
-menu
->frame
->core
->width
/2, y
);
1741 definition
= WDRootMenu
->dictionary
;
1744 definition = PLGetDomain(domain);
1747 if (PLIsArray(definition
)) {
1749 || WDRootMenu
->timestamp
> scr
->root_menu
->timestamp
) {
1750 menu
= configureMenu(scr
, definition
);
1752 menu
->timestamp
= WDRootMenu
->timestamp
;
1757 menu
= configureMenu(scr
, definition
);
1762 /* menu hasn't changed or could not be read */
1763 if (!scr
->root_menu
) {
1764 wMessageDialog(scr
, _("Error"),
1765 _("The applications menu could not be loaded. "
1766 "Look at the console output for a detailed "
1767 "description of the errors."),
1768 _("OK"), NULL
, NULL
);
1770 menu
= makeDefaultMenu(scr
);
1771 scr
->root_menu
= menu
;
1773 menu
= scr
->root_menu
;
1777 wMenuDestroy(scr
->root_menu
, True
);
1778 scr
->root_menu
= menu
;
1781 wMenuMapAt(menu
, x
-menu
->frame
->core
->width
/2, y
, keyboard
);
1784 if (scr
->flags
.root_menu_changed_shortcuts
)
1785 rebindKeygrabs(scr
);