all repos — fluxbox @ 4765321b3a5f97d753ee054a05d9307f30ab3839

custom fork of the fluxbox windowmanager

Removed Rotated.hh
fluxgen fluxgen
commit

4765321b3a5f97d753ee054a05d9307f30ab3839

parent

40ba49676890064e3a519bc7cb46ec7203d2d909

2 files changed, 2 insertions(+), 85 deletions(-)

jump to
M src/Makefile.amsrc/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