Removed Rotated.hh
This commit is contained in:
parent
40ba496768
commit
4765321b3a
2 changed files with 2 additions and 85 deletions
|
@ -49,7 +49,7 @@ fluxbox_SOURCES= BaseDisplay.cc BaseDisplay.hh Basemenu.cc Basemenu.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
|
||||
|
||||
|
|
|
@ -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
|
Loading…
Reference in a new issue