Removing debug printf
[xmenu] / xmenu.h
diff --git a/xmenu.h b/xmenu.h
index 11fd29f..2ad68d6 100644 (file)
--- a/xmenu.h
+++ b/xmenu.h
@@ -17,27 +17,27 @@ enum {NetWMName, NetWMWindowType, NetWMWindowTypePopupMenu, NetLast};
 
 /* configuration structure */
 struct Config {
 
 /* configuration structure */
 struct Config {
+       /* the values below are set by config.h */
        const char *font;
        const char *font;
-
        const char *background_color;
        const char *foreground_color;
        const char *selbackground_color;
        const char *selforeground_color;
        const char *separator_color;
        const char *border_color;
        const char *background_color;
        const char *foreground_color;
        const char *selbackground_color;
        const char *selforeground_color;
        const char *separator_color;
        const char *border_color;
-
        int width_pixels;
        int height_pixels;
        int border_pixels;
        int separator_pixels;
        int gap_pixels;
        int width_pixels;
        int height_pixels;
        int border_pixels;
        int separator_pixels;
        int gap_pixels;
-
        int triangle_width;
        int triangle_height;
        int triangle_width;
        int triangle_height;
-
        int iconpadding;
        int iconpadding;
+       int horzpadding;
 
 
-       int cursx, cursy;           /* cursor position */
+       /* the values below are computed by xmenu */
+       int iconsize;
+       int posx, posy;           /* cursor position */
        int screenw, screenh;       /* screen width and height */
 };
 
        int screenw, screenh;       /* screen width and height */
 };