Last change
on this file since 388 was 234, checked in by Sanahuja Guillaume, 7 years ago |
create file oscket only when necessary
|
File size:
1.1 KB
|
Line | |
---|
1 | // %flair:license{
|
---|
2 | // This file is part of the Flair framework distributed under the
|
---|
3 | // CECILL-C License, Version 1.0.
|
---|
4 | // %flair:license}
|
---|
5 | #ifndef FILE_UI_H
|
---|
6 | #define FILE_UI_H
|
---|
7 |
|
---|
8 | #include <QObject>
|
---|
9 | #include <udt.h>
|
---|
10 |
|
---|
11 | class QStringList;
|
---|
12 | class QDialog;
|
---|
13 | class QTextEdit;
|
---|
14 | class QPushButton;
|
---|
15 | class QComboBox;
|
---|
16 | class QCloseEvent;
|
---|
17 |
|
---|
18 | class file_ui : public QObject {
|
---|
19 | Q_OBJECT
|
---|
20 |
|
---|
21 | public:
|
---|
22 | file_ui(UDTSOCKET socket,QString name);
|
---|
23 | ~file_ui();
|
---|
24 | void log(QString text);
|
---|
25 | void addFile(QString file_path);
|
---|
26 | void endOfFiles(void);
|
---|
27 |
|
---|
28 | private:
|
---|
29 | QDialog *dialog;
|
---|
30 | QStringList *file_names;
|
---|
31 | QTextEdit *log_text, *input_text;
|
---|
32 | QPushButton *ok_button;
|
---|
33 | QComboBox *csv_combo;
|
---|
34 | void save_comment(void);
|
---|
35 | void save_csv(void);
|
---|
36 | void save_txt(void);
|
---|
37 | void dbt2csv(QString file_path);
|
---|
38 | bool is_greater(qint64 ref_us, qint64 csv_us, int ref_ns, int csv_ns);
|
---|
39 | bool input_cleared;
|
---|
40 | UDTSOCKET socket;
|
---|
41 | QString name;
|
---|
42 |
|
---|
43 | public slots:
|
---|
44 | void receive(void);
|
---|
45 |
|
---|
46 | private slots:
|
---|
47 | void save(void);
|
---|
48 | void clearInputText(void);
|
---|
49 |
|
---|
50 | signals:
|
---|
51 | void finished(void);
|
---|
52 | void appendToLog(QString);
|
---|
53 | };
|
---|
54 |
|
---|
55 | #endif // FILE_UI_H
|
---|
Note:
See
TracBrowser
for help on using the repository browser.