2abc28d1f2
Version 4.2 fixes: 1) Fixed problems with windows that have a compound text title 2) Fixed problems with the cursor font name 3) error.c will now compile under Solaris 2.6 4) Fixed misc. compilation warnings. Some survive in error.c and states.c 5) Fixed warp function when two screens have the same program: warp will now look first on the screen containing the mouse pointer 6) Fixed hot key functions when num lock/shift lock might be pressed 7) Fixed problem with AutoRootMenu startup 8) Fixed problem with VirtualIconic resource
36 lines
1.1 KiB
Plaintext
36 lines
1.1 KiB
Plaintext
--- menu.h.orig Thu Jan 13 22:40:03 1994
|
|
+++ ./menu.h Fri Jul 16 21:49:03 1999
|
|
@@ -8,7 +8,7 @@
|
|
#define _OLWM_MENU_H
|
|
|
|
#ifdef IDENT
|
|
-#ident "@(#)menu.h 1.4 olvwm version 07 Jan 1994"
|
|
+#ident "@(#)menu.h 1.5 olvwm version 09 Feb 1994"
|
|
#endif
|
|
|
|
/*
|
|
@@ -56,17 +56,18 @@
|
|
FuncPtr callback; /* function to call when item hit */
|
|
/* NULL if button has pullright */
|
|
|
|
+ SemanticAction semantic; /* semantic action for window menu items */
|
|
+
|
|
+ FuncPtr generate_func; /* If !NULL, called when this button is
|
|
+ * hilighted to re-initialize action.submenu */
|
|
+ char *generate_args; /* args for generate function */
|
|
+
|
|
union {
|
|
struct _menu *submenu; /* pointer to the submenu, if has_submenu */
|
|
char *command; /* command, if callback is AppMenuFunc */
|
|
void *other; /* unspecified */
|
|
} action;
|
|
|
|
- SemanticAction semantic; /* semantic action for window menu items */
|
|
-
|
|
- FuncPtr generate_func; /* If !NULL, called when this button is
|
|
- * hilighted to re-initialize action.submenu */
|
|
- char *generate_args; /* args for generate function */
|
|
} Button;
|
|
|
|
/*
|