diff options
Diffstat (limited to 'kmix/verticaltext.h')
-rw-r--r-- | kmix/verticaltext.h | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/kmix/verticaltext.h b/kmix/verticaltext.h new file mode 100644 index 00000000..7b1c07e0 --- /dev/null +++ b/kmix/verticaltext.h @@ -0,0 +1,19 @@ +#ifndef VerticalText_h +#define VerticalText_h + +#include <qwidget.h> + +class VerticalText : public QWidget +{ +public: + VerticalText(QWidget * parent, const char * name, WFlags f = 0); + ~VerticalText(); + + QSize sizeHint() const; + QSizePolicy sizePolicy () const; + +protected: + void paintEvent ( QPaintEvent * event ); +}; + +#endif |