forked from RTMilliken/EDFbrowser
-
Notifications
You must be signed in to change notification settings - Fork 1
/
bdf2edf.h
110 lines (74 loc) · 1.76 KB
/
bdf2edf.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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
#ifndef UI_BDF2EDFFORM_H
#define UI_BDF2EDFFORM_H
#include <QtGlobal>
#include <QApplication>
#include <QObject>
#include <QDialog>
#include <QLabel>
#include <QPushButton>
#include <QCheckBox>
#include <QTableWidget>
#include <QFileDialog>
#include <QCursor>
#include <QStyle>
#if QT_VERSION < 0x050000
#include <QPlastiqueStyle>
#include <QWindowsStyle>
#endif
#include <QString>
#include <QStringList>
#include <QByteArray>
#include <QDoubleSpinBox>
#include <QMessageBox>
#include <QProgressDialog>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include "global.h"
#include "mainwindow.h"
#include "check_edf_file.h"
#include "popup_messagewindow.h"
#include "filter.h"
#include "utils.h"
class UI_Mainwindow;
class UI_BDF2EDFwindow : public QObject
{
Q_OBJECT
public:
UI_BDF2EDFwindow(QWidget *parent);
UI_Mainwindow *mainwindow;
private:
QLabel *label1,
*label2,
*label3;
QPushButton *pushButton1,
*pushButton2,
*pushButton3,
*pushButton4,
*pushButton5;
QDoubleSpinBox *spinBox1,
*spinBox2;
QTableWidget *SignalsTablewidget;
QDialog *myobjectDialog;
int signalslist[MAXSIGNALS],
annotlist[MAXSIGNALS];
char inputpath[MAX_PATH_LENGTH],
outputpath[MAX_PATH_LENGTH],
*recent_opendir,
*recent_savedir;
double dividerlist[MAXSIGNALS];
FILE *inputfile,
*outputfile;
struct edfhdrblock *edfhdr;
struct filter_settings *filterlist[MAXSIGNALS];
void showpopupmessage(const char *, const char *);
private slots:
void SelectFileButton();
void StartConversion();
void spinbox1_changed(double);
void spinbox2_changed(double);
void Select_all_signals();
void Deselect_all_signals();
void free_edfheader();
};
#endif