|
static XImage * | MakeXImage (Display *dpy, int w, int h) |
| Create an XImage structure and allocate memory for it. More...
|
|
static char * | my_strdup (char *str) |
| Routine to mimic ‘strdup()’ (some machines don't have it) More...
|
|
static char * | my_strtok (char *str1, char *str2) |
| Routine to replace ‘strtok’ : this one returns a zero length string if it encounters two consecutive delimiters. More...
|
|
static void | XRotAddToLinkedList (Display *dpy, RotatedTextItem_t *item) |
| Adds a text item to the end of the cache, removing as many items from the front as required to keep cache size below limit. More...
|
|
static RotatedTextItem_t * | XRotCreateTextItem (Display *dpy, XFontStruct *font, float angle, char *text, int align) |
| Create a rotated text item. More...
|
|
int | XRotDrawAlignedImageString (Display *dpy, XFontStruct *font, float angle, Drawable drawable, GC gc, int x, int y, char *text, int align) |
| A front end to XRotPaintAlignedString: -does alignment, paints background. More...
|
|
int | XRotDrawAlignedString (Display *dpy, XFontStruct *font, float angle, Drawable drawable, GC gc, int x, int y, char *text, int align) |
| A front end to XRotPaintAlignedString: -does alignment, no background. More...
|
|
static int | XRotDrawHorizontalString (Display *dpy, XFontStruct *font, Drawable drawable, GC gc, int x, int y, char *text, int align, int bg) |
| Draw a horizontal string in a quick fashion. More...
|
|
int | XRotDrawImageString (Display *dpy, XFontStruct *font, float angle, Drawable drawable, GC gc, int x, int y, char *str) |
| A front end to XRotPaintAlignedString: -no alignment, paints background. More...
|
|
int | XRotDrawString (Display *dpy, XFontStruct *font, float angle, Drawable drawable, GC gc, int x, int y, char *str) |
| A front end to XRotPaintAlignedString: -no alignment, no background. More...
|
|
static void | XRotFreeTextItem (Display *dpy, RotatedTextItem_t *item) |
| Free the resources used by a text item. More...
|
|
static XImage * | XRotMagnifyImage (Display *dpy, XImage *ximage) |
| Magnify an XImage using bilinear interpolation. More...
|
|
static int | XRotPaintAlignedString (Display *dpy, XFontStruct *font, float angle, Drawable drawable, GC gc, int x, int y, char *text, int align, int bg) |
| Aligns and paints a rotated string. More...
|
|
static RotatedTextItem_t * | XRotRetrieveFromCache (Display *dpy, XFontStruct *font, float angle, char *text, int align) |
| Query cache for a match with this font/text/angle/alignment request, otherwise arrange for its creation. More...
|
|
void | XRotSetBoundingBoxPad (int p) |
| Set the padding used when calculating bounding boxes. More...
|
|
void | XRotSetMagnification (float m) |
| Set the font magnification factor for all subsequent operations. More...
|
|
XPoint * | XRotTextExtents (Display *, XFontStruct *font, float angle, int x, int y, char *text, int align) |
| Calculate the bounding box some text will have when painted. More...
|
|
float | XRotVersion (char *str, int n) |
| Return version/copyright information. More...
|
|