X-Git-Url: https://git.dogcows.com/gitweb?a=blobdiff_plain;ds=sidebyside;f=render%2Frender.h;h=9cd1bd7379ad6e1e3d72acb6c0ad5af264de04d0;hb=a0a55d5761b7c104ac66ba6dc64d33cd66a211b5;hp=54f4246187eea1a24409b31d43c512031472e141;hpb=57314ce52246ce74ff2c64c7fc2da8794a8aaa4e;p=chaz%2Fopenbox diff --git a/render/render.h b/render/render.h index 54f42461..9cd1bd73 100644 --- a/render/render.h +++ b/render/render.h @@ -101,9 +101,16 @@ typedef struct { XftFont *xftfont; } ObFont; +typedef enum { + Justify_Center, + Justify_Left, + Justify_Right +} Justify; + typedef struct TextureText { ObFont *font; - int shadow; + Justify justify; + int shadow; unsigned char tint; unsigned char offset; color_rgb *color; @@ -147,11 +154,11 @@ extern Visual *render_visual; extern int render_depth; extern Colormap render_colormap; -void (*paint)(Window win, Appearance *l, int w, int h); +void (*paint)(Window win, Appearance *l, int x, int y, int w, int h); void render_startup(void); void init_appearance(Appearance *l); -void x_paint(Window win, Appearance *l, int w, int h); +void x_paint(Window win, Appearance *l, int x, int y, int w, int h); void render_shutdown(void); Appearance *appearance_new(SurfaceType type, int numtex); Appearance *appearance_copy(Appearance *a);