rock_widget_collection  0.1
RangeView.h
Go to the documentation of this file.
1 /*
2  * File: RangeViewGL.cc
3  * Author: Matthias Goldhoorn (matthias.goldhoorn@dfki.de)
4  *
5  */
6 
7 #ifndef RANGEVIEW_H
8 #define RANGEVIEW_H
9 
11 
12 class QDESIGNER_WIDGET_EXPORT RangeView : public ImageViewOld
13 {
14  Q_OBJECT
15  Q_CLASSINFO("Author", "Matthias Goldhoorn")
16 
17 public:
18  RangeView(QWidget *parent = NULL,bool use_openGL = false);
19  virtual ~RangeView();
20 
21 public slots:
22  void setOpenGL(bool flag);
23  void setRangeScan(double *data, int size);
24  void setRangeScan3(const QList<double> &data);
25 protected:
26  void keyPressEvent ( QKeyEvent * event );
27 
28 };
29 
30 #endif
31