qvolray

diff 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 diff
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/src/ui_xferview.h	Sat Apr 14 20:52:53 2012 +0300
     1.3 @@ -0,0 +1,20 @@
     1.4 +#ifndef UI_XFERVIEW_H_
     1.5 +#define UI_XFERVIEW_H_
     1.6 +
     1.7 +#include <QGLWidget>
     1.8 +
     1.9 +class XFerView : public QGLWidget {
    1.10 +private:
    1.11 +	Q_OBJECT
    1.12 +
    1.13 +	void initializeGL();
    1.14 +	void resizeGL(int xsz, int ysz);
    1.15 +	void paintGL();
    1.16 +
    1.17 +public:
    1.18 +	XFerView(QGLWidget *share_widget = 0);
    1.19 +
    1.20 +	QSize minimumSizeHint() const;
    1.21 +};
    1.22 +
    1.23 +#endif	// UI_XFERVIEW_H_