]> code.delx.au - gnu-emacs/blobdiff - lwlib/xlwmenuP.h
(allout-pre-command-business): Fix docstring.
[gnu-emacs] / lwlib / xlwmenuP.h
index 23e105c144315a5ace131e63b504953733994fa6..4dd623d02d8a331c336638fca609991e13a2bac5 100644 (file)
@@ -20,11 +20,12 @@ typedef struct _window_state
 
 
 /* New fields for the XlwMenu widget instance record */
-typedef struct _XlwMenu_part 
+typedef struct _XlwMenu_part
 {
   /* slots set by the resources */
   XFontStruct* font;
   Pixel                foreground;
+  Pixel                disabled_foreground;
   Pixel                button_foreground;
   Dimension    margin;
   Dimension    horizontal_spacing;
@@ -37,10 +38,14 @@ typedef struct _XlwMenu_part
   Pixmap       bottom_shadow_pixmap;
   Cursor       cursor_shape;
   XtCallbackList       open;
-  XtCallbackList       select;
+  XtCallbackList       select, highlight;
   widget_value*        contents;
   int          horizontal;
-  
+
+  /* True means top_shadow_color and/or bottom_shadow_color must be freed.  */
+  unsigned free_top_shadow_color_p : 1;
+  unsigned free_bottom_shadow_color_p : 1;
+
   /* State of the XlwMenu */
   int                  old_depth;
   widget_value**       old_stack;
@@ -59,7 +64,7 @@ typedef struct _XlwMenu_part
   GC                   foreground_gc;
   GC                   button_gc;
   GC                   background_gc;
-  GC                   inactive_gc;
+  GC                   disabled_gc;
   GC                   inactive_button_gc;
   GC                   shadow_top_gc;
   GC                   shadow_bottom_gc;
@@ -69,20 +74,20 @@ typedef struct _XlwMenu_part
 } XlwMenuPart;
 
 /* Full instance record declaration */
-typedef struct _XlwMenuRec 
+typedef struct _XlwMenuRec
 {
   CorePart     core;
   XlwMenuPart  menu;
 } XlwMenuRec;
 
 /* New fields for the XlwMenu widget class record */
-typedef struct 
+typedef struct
 {
   int  dummy;
 } XlwMenuClassPart;
 
 /* Full class record declaration. */
-typedef struct _XlwMenuClassRec 
+typedef struct _XlwMenuClassRec
 {
   CoreClassPart                core_class;
   XlwMenuClassPart     menu_class;