test not only if header frei0r.h exists, also use an item
[mlt-frei0r-support.git] / shotcut / wm / Rotated.h
blob025333e6241a26814267071e4461e71342842caf
1 // Rotated text drawing with X.
3 // Original code:
4 // Copyright (c) 1992 Alan Richardson (mppa3@uk.ac.sussex.syma) */
5 //
6 // Modifications for fltk:
7 // Copyright (c) 1997 Bill Spitzak (spitzak@d2.com)
9 #ifndef Rotated_H
10 #define Rotated_H
12 void draw_rotated(const char* text, int n, int x, int y, int angle);
13 void draw_rotated(const char* text, int x, int y, int angle);
14 void draw_rotated90(const char*, int x, int y, int w, int h, Fl_Align);
15 void draw_rotated270(const char*, int x, int y, int w, int h, Fl_Align);
16 void draw_rotated180(const char*, int x, int y, int w, int h, Fl_Align);
18 #endif