wmclockmon: update change-log
[dockapps.git] / wmframepic / src / main.h
blobe751fe9c9428b10b30e12c5d5ddd648f0a3dd502
1 #ifndef MAIN_H_
2 #define MAIN_H_
4 #include <X11/Xlib.h>
5 #include <X11/Xutil.h>
6 #include <X11/xpm.h>
8 #include <stdio.h>
9 #include <stdlib.h>
11 #include "draw_text.h"
12 #include "frame_mask.xbm"
13 #include "core_mask.xbm"
15 #define WINDOWED_SIZE_W 64
16 #define WINDOWED_SIZE_H 64
17 #define SIZE 58
19 Display *display;
20 Window root, win, iconwin;
21 //long fgcolor, bgcolor;
22 int screen;
23 int depth=1;
24 int eventmask = ButtonPressMask|ExposureMask;
25 Bool show_pic = True;
27 XSizeHints sizehints;
28 XEvent event;
29 Pixmap pic_pixmap;
30 GC gc_core, gc_border;
32 void mainloop(void);
33 #endif /* MAIN_H_ */