qvolray

view src/ui_sliceview.h @ 28:aeef3c2ae472

the slice widget works fine
author John Tsiombikas <nuclear@member.fsf.org>
date Sat, 14 Apr 2012 16:35:30 +0300
parents 011ac823600c
children 93d889a3726a
line source
1 #ifndef UI_SLICEVIEW_H_
2 #define UI_SLICEVIEW_H_
4 #include <QGLWidget>
6 class SliceGLView : public QGLWidget {
7 private:
8 Q_OBJECT
10 void initializeGL();
11 void resizeGL(int xsz, int ysz);
12 void paintGL();
14 void draw_slice() const;
16 public:
17 SliceGLView(QGLWidget *share_widget = 0);
19 QSize minimumSizeHint() const;
20 };
22 #endif // UI_SLICEVIEW_H_