-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathintensitymap.h
More file actions
48 lines (32 loc) · 889 Bytes
/
intensitymap.h
File metadata and controls
48 lines (32 loc) · 889 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
#ifndef INTENSITYMAP_H
#define INTENSITYMAP_H
#include <QDialog>
#include "qcustomplot.h"
#include "surfacegraph.h"
namespace Ui {
class intensitymap;
}
class intensitymap : public QDialog
{
Q_OBJECT
public:
explicit intensitymap(QSurfaceDataProxy* series, QList <int> ScanData, QWidget *parent = 0);
~intensitymap();
void setupIntensityMap(QCustomPlot *customPlot );
public slots:
void setCutOff(int);
private slots:
void on_rangeMaxSlider_valueChanged(int value);
void on_save_pb_clicked();
void on_colorPickDD_currentIndexChanged(int index);
void on_invertRB_toggled(bool checked);
void on_interpolateRB_toggled(bool checked);
void on_quit_pb_clicked();
private:
QGraphicsScene *scene;
QPixmap PixMap;
QSurfaceDataProxy* dataSeries;
QCPColorMap *colorMap;
Ui::intensitymap *ui;
};
#endif // INTENSITYMAP_H