diff options
Diffstat (limited to 'examples/demo/opengl/glinfotext.h')
-rw-r--r-- | examples/demo/opengl/glinfotext.h | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/examples/demo/opengl/glinfotext.h b/examples/demo/opengl/glinfotext.h new file mode 100644 index 000000000..80f42baba --- /dev/null +++ b/examples/demo/opengl/glinfotext.h @@ -0,0 +1,23 @@ +#include <qlayout.h> +#include <qtextview.h> +#include <qfont.h> +#include "glinfo.h" + +class GLInfoText : public TQWidget +{ +public: + GLInfoText(TQWidget *parent) + : TQWidget(parent) + { + view = new TQTextView(this); + view->setFont(TQFont("courier", 10)); + view->setWordWrap(TQTextEdit::NoWrap); + TQHBoxLayout *l = new TQHBoxLayout(this); + l->addWidget(view); + GLInfo info; + view->setText(info.info()); + } + +private: + TQTextView *view; +}; |