blob: 1e621e83dda33804cc892e34cb664c39b4f94ed1 (
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 * parent, const char * name, WFlags f = 0);
~VerticalText();
TQSize tqsizeHint() const;
TQSizePolicy sizePolicy () const;
protected:
void paintEvent ( TQPaintEvent * event );
};
#endif
|