You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
346 B
20 lines
346 B
#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
|