/* * VectorQtQueryPipe.hpp * * Created on: Nov 8, 2010 * Author: heber */ #ifndef VECTORQTQUERYPIPE_HPP_ #define VECTORQTQUERYPIPE_HPP_ // include config.h #ifdef HAVE_CONFIG_H #include #endif #include "Parameters/Parameter.hpp" #include class QComboBox; class QtDialog; class Vector; class VectorQtQueryPipe : public QWidget { Q_OBJECT public: VectorQtQueryPipe(Parameter &_content, QtDialog *_dialog, QComboBox *_theBox); virtual ~VectorQtQueryPipe(); public slots: void updateX(double); void updateY(double); void updateZ(double); private: Parameter &content; QtDialog *dialog; QComboBox *theBox; }; #endif /* VECTORQTQUERYPIPE_HPP_ */