1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79
|
#ifndef _struct_h_
#define _struct_h_
#include <X11/Xlib.h>
#include <X11/Xutil.h>
#include <X11/Xmu/CurUtil.h>
#include <X11/cursorfont.h>
#include <X11/keysym.h>
#include <assert.h>
#include <string.h>
#ifdef XPM
#ifdef HACKED_XPMLIB
#include "xpmlib-3.4b/xpm.h"
#else
#include <X11/xpm.h>
#endif /*HACKED_XPMLIB*/
#endif /*XPM [BDyess]*/
#include "defs.h"
struct fontInfo {
XFontStruct *fontstruct;
int baseline;
};
struct colors {
char *name;
GC contexts[FONTS + NONFONTS];
Pixmap pixmap;
unsigned long pixelValue;
};
struct window {
Window window;
W_Window borderwin;
int border;
W_Color border_color;
#ifdef BUFFERING
Drawable drawable;
Pixmap buffer;
int isbuffered;
#endif /*BUFFERING [BDyess]*/
int type;
char *data;
int mapped;
unsigned int width, height;
char *name;
Cursor cursor;
int insensitive;
#if 0
W_Callback handle_keydown;
W_Callback handle_keyup;
W_Callback handle_button;
W_Callback handle_expose;
#endif /* 0 */
W_Window wm_window;
Window fs_window;
};
struct stringList {
char *string;
W_Color color;
struct stringList *next;
};
struct menuItem {
char *string;
W_Color color;
W_Font font;
};
struct windowlist {
struct window *window;
struct windowlist *next;
};
#endif /* _struct_h_ */
|