-
Notifications
You must be signed in to change notification settings - Fork 0
/
mainwindow.h
50 lines (43 loc) · 1.14 KB
/
mainwindow.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
#ifndef MAINWINDOW_H
#define MAINWINDOW_H
#include <QMainWindow>
#include <QNetworkReply>
#include <QPushButton>
#include <QSettings>
#include <QTableWidget>
#include <serverconnection.h>
namespace Ui {
class MainWindow;
}
class MainWindow : public QMainWindow
{
Q_OBJECT
public:
explicit MainWindow(QWidget *parent = nullptr);
~MainWindow();
private slots:
void importFile();
void requestFinished(QNetworkReply*);
void queryStatusAllWrapper();
void openContainingDir();
void openConfigurationWindow();
void appyConfigChanges();
void openAboutWindow();
void openSpeechConfigWindow();
void flushServerCacheRequest();
private:
Ui::MainWindow *ui;
QTableWidget *tw;
QPushButton *button;
QPushButton *flushCacheButton;
QAction *standardsMenu;
QSettings *mySettings;
ServerConnection *serverConnection;
void updateList(QNetworkReply *reply);
void addTrackingToList(QNetworkReply *reply);
void showNotification(QString str);
void saveTranscript(QNetworkReply *reply);
void handleInitialSettings();
void submitFileSlot(QString filename);
};
#endif // MAINWINDOW_H