-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathshmimview.h
45 lines (35 loc) · 848 Bytes
/
shmimview.h
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
#ifndef SHMIMVIEW_H
#define SHMIMVIEW_H
#include <QMainWindow>
#include <QGraphicsView>
#include <QWheelEvent>
#include <QKeyEvent>
#include <ImageStruct.h>
namespace Ui {
class shmimview;
}
class shmimview : public QMainWindow
{
Q_OBJECT
protected:
void wheelEvent(QWheelEvent*) override;
public:
explicit shmimview(QWidget *parent = 0);
~shmimview();
void data2bitmap();
private slots:
void on_connect_clicked();
void on_setfreq_clicked();
void on_setminval_clicked();
void on_setmaxval_clicked();
void on_display_clicked();
void on_streamON_clicked();
void on_rmdarkON_clicked();
void on_autominmax_clicked();
void on_brightnessscale_currentIndexChanged();
void on_VBbigger_clicked();
void on_VBsmaller_clicked();
private:
Ui::shmimview *ui;
};
#endif // SHMIMVIEW_H