blob: c378bafcebb30ca9ebaf4141fe92ccd5017cba94 (
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 sizeHint() const;
TQSizePolicy sizePolicy () const;
protected:
void paintEvent ( TQPaintEvent * event );
};
#endif
|