qvolray

view src/ui_xferview.h @ 29:93d889a3726a

foo
author John Tsiombikas <nuclear@member.fsf.org>
date Sat, 14 Apr 2012 20:52:53 +0300
parents
children 40df2cdc6323
line source
1 #ifndef UI_XFERVIEW_H_
2 #define UI_XFERVIEW_H_
4 #include <QGLWidget>
6 class XFerView : public QGLWidget {
7 private:
8 Q_OBJECT
10 void initializeGL();
11 void resizeGL(int xsz, int ysz);
12 void paintGL();
14 public:
15 XFerView(QGLWidget *share_widget = 0);
17 QSize minimumSizeHint() const;
18 };
20 #endif // UI_XFERVIEW_H_