mirror of
https://github.com/0intro/wmii
synced 2024-12-26 05:16:59 +03:00
97 lines
1.9 KiB
C
97 lines
1.9 KiB
C
/*
|
|
* (C)opyright MMIV-MMVI Anselm R. Garbe <garbeam at gmail dot com>
|
|
* See LICENSE file for license details.
|
|
*/
|
|
|
|
#include <X11/Xlib.h>
|
|
#include <X11/Xlocale.h>
|
|
|
|
#define BLITZ_FONT "fixed"
|
|
#define BLITZ_SELCOLORS "#ffffff #335577 #447799"
|
|
#define BLITZ_NORMCOLORS "#222222 #eeeeee #666666"
|
|
|
|
typedef struct Blitz Blitz;
|
|
typedef enum BlitzAlign BlitzAlign;
|
|
typedef struct BlitzColor BlitzColor;
|
|
typedef struct BlitzFont BlitzFont;
|
|
typedef struct BlitzBrush BlitzBrush;
|
|
typedef struct BlitzInput BlitzInput;
|
|
|
|
struct Blitz {
|
|
Display *display;
|
|
int screen;
|
|
Window root;
|
|
};
|
|
|
|
enum BlitzAlign {
|
|
NORTH = 0x01,
|
|
EAST = 0x02,
|
|
SOUTH = 0x04,
|
|
WEST = 0x08,
|
|
NEAST = NORTH | EAST,
|
|
NWEST = NORTH | WEST,
|
|
SEAST = SOUTH | EAST,
|
|
SWEST = SOUTH | WEST,
|
|
CENTER = NEAST | SWEST
|
|
};
|
|
|
|
struct BlitzColor {
|
|
unsigned long bg;
|
|
unsigned long fg;
|
|
unsigned long border;
|
|
char colstr[24]; /* #RRGGBB #RRGGBB #RRGGBB */
|
|
};
|
|
|
|
struct BlitzFont {
|
|
XFontStruct *xfont;
|
|
XFontSet set;
|
|
int ascent;
|
|
int descent;
|
|
int rbearing;
|
|
int lbearing;
|
|
char *fontstr;
|
|
};
|
|
|
|
struct BlitzBrush {
|
|
Blitz *blitz;
|
|
Drawable drawable;
|
|
GC gc;
|
|
BlitzColor color;
|
|
BlitzAlign align;
|
|
BlitzFont *font;
|
|
XRectangle rect; /* relative rect */
|
|
};
|
|
|
|
struct BlitzInput {
|
|
Blitz *blitz;
|
|
char *text;
|
|
char *selstart;
|
|
char *selend;
|
|
char *cursor;
|
|
unsigned int size;
|
|
Drawable drawable;
|
|
GC gc;
|
|
BlitzColor sel;
|
|
BlitzColor norm;
|
|
BlitzFont *font;
|
|
XRectangle rect; /* relative rect */
|
|
};
|
|
|
|
/* brush.c */
|
|
void blitz_draw_label(BlitzBrush *b, char *text);
|
|
void blitz_draw_tile(BlitzBrush *b);
|
|
|
|
/* color.c */
|
|
int blitz_loadcolor(Blitz *blitz, BlitzColor *c);
|
|
|
|
void blitz_drawbg(Display *dpy, Drawable drawable, GC gc,
|
|
XRectangle rect, BlitzColor c);
|
|
|
|
/* font.c */
|
|
unsigned int blitz_textwidth(BlitzFont *font, char *text);
|
|
void blitz_loadfont(Blitz *blitz, BlitzFont *font);
|
|
|
|
/* input.c */
|
|
void blitz_draw_input(BlitzInput *i);
|
|
char *blitz_charof(BlitzInput *i, int x, int y);
|