VAPOR3 3.9.4
QSinglePoint.h
Go to the documentation of this file.
1#ifndef QSINGLEPOINT_H
2#define QSINGLEPOINT_H
3
4#include <QWidget>
5
6namespace Ui {
7class QSinglePoint;
8}
9
10class QSinglePoint : public QWidget {
11 Q_OBJECT
12
13public:
14 explicit QSinglePoint(QWidget *parent = 0);
16
17 void SetExtents(const std::vector<double> &min, const std::vector<double> &max);
18
21 void GetCurrentPoint(std::vector<double> &);
22 void SetMainLabel(const QString &);
23 void SetDecimals(int dec); // how many digits after the decimal point
24 void SetValue(const std::vector<double> &);
25
26signals:
28
29private slots:
30 void _coordinateChanged(double);
31
32private:
33 Ui::QSinglePoint *_ui;
34 int _dimensionality;
35};
36
37#endif // QSINGLEPOINT_H
void SetDimensionality(int)
void SetValue(const std::vector< double > &)
QSinglePoint(QWidget *parent=0)
void pointUpdated()
int GetDimensionality()
void GetCurrentPoint(std::vector< double > &)
void SetExtents(const std::vector< double > &min, const std::vector< double > &max)
void SetMainLabel(const QString &)
void SetDecimals(int dec)
Definition: QRange.h:6