summaryrefslogtreecommitdiffstats
path: root/kmix/verticaltext.h
blob: b7f94f4da651f2149cf8af69c562c1827e9527f3 (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 <tqwidget.h>

class VerticalText : public TQWidget
{
public:
    VerticalText(TQWidget * tqparent, const char * name, WFlags f = 0);
    ~VerticalText();

    TQSize tqsizeHint() const;
    TQSizePolicy sizePolicy () const;
	
protected:
    void paintEvent ( TQPaintEvent * event );
};

#endif