Removed Rotated.hh
fluxgen fluxgen
2 files changed,
2 insertions(+),
85 deletions(-)
M
src/Makefile.am
→
src/Makefile.am
@@ -49,7 +49,7 @@ Window.cc Window.hh Windowmenu.cc Windowmenu.hh \
Workspace.cc Workspace.hh Workspacemenu.cc Workspacemenu.hh \ fluxbox.cc fluxbox.hh bsd-snprintf.c bsd-snprintf.h \ i18n.cc i18n.hh main.cc Tab.hh Tab.cc Keys.cc Keys.hh\ - IconBar.cc IconBar.hh Theme.hh Theme.cc misc.hh misc.cc \ - Rotated.hh + IconBar.cc IconBar.hh Theme.hh Theme.cc misc.hh misc.cc + MAINTAINERCLEANFILES= Makefile.in
D
src/Rotated.hh
@@ -1,83 +0,0 @@
-/* ************************************************************************ */ - - -/* Header file for the `xvertext' routines. - - Copyright (c) 1992 Alan Richardson (mppa3@uk.ac.sussex.syma) */ - - -/* ************************************************************************ */ - - -#ifndef _XVERTEXT_INCLUDED_ -#define _XVERTEXT_INCLUDED_ - - -#define XV_VERSION 2.0 -#define XV_COPYRIGHT "xvertext routines Copyright (c) 1992 Alan Richardson" - - -/* ---------------------------------------------------------------------- */ - - -/* *** The font structures *** */ - -struct BitmapStruct { - int bit_w; - int bit_h; - - Pixmap bm; -}; - -struct XRotCharStruct { - int ascent; - int descent; - int lbearing; - int rbearing; - int width; - - BitmapStruct glyph; -}; - -struct XRotFontStruct { - int dir; - int height; - int max_ascent; - int max_descent; - int max_char; - int min_char; - char *name; - - XFontStruct *xfontstruct; - - XRotCharStruct per_char[95]; -}; - - -/* ---------------------------------------------------------------------- */ - - -extern float XRotVersion(char *, int); -extern XRotFontStruct *XRotLoadFont(Display *, char *, float); -extern void XRotUnloadFont(Display *, XRotFontStruct *); -extern unsigned int XRotTextWidth(XRotFontStruct *, char *, int); -extern void XRotDrawString(Display *, XRotFontStruct *, Drawable, GC, - int, int, char *, int); - -/* ---------------------------------------------------------------------- */ - -extern int xv_errno; - -#define XV_NOFONT 1 /* no such font on X server */ -#define XV_NOMEM 2 /* couldn't do malloc */ -#define XV_NOXIMAGE 3 /* couldn't create an XImage */ - - -/* ---------------------------------------------------------------------- */ - - -#else - -extern int xv_errno; - -#endif