summaryrefslogtreecommitdiffstats
path: root/kmix/verticaltext.h
blob: 7b1c07e0ff41286e8362658380b910b5d18be687 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
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