1 static const char *background_color
= "#3e3e3e";
2 static const char *border_color
= "#ececec";
3 static const char *font_color
= "#ececec";
4 static const char *font_pattern
= "Inconsolata:style=Medium:size=12";
5 static const unsigned line_spacing
= 5;
6 static const unsigned int padding
= 15;
8 static const unsigned int width
= 450;
9 static const unsigned int border_size
= 2;
10 static const unsigned int pos_x
= 30;
11 static const unsigned int pos_y
= 60;
13 enum corners
{ TOP_LEFT
, TOP_RIGHT
, BOTTOM_LEFT
, BOTTOM_RIGHT
};
14 enum corners corner
= TOP_RIGHT
;
16 static const unsigned int duration
= 5; /* in seconds */
18 #define DISMISS_BUTTON Button1
19 #define ACTION_BUTTON Button3