forked from RobertKrajewski/Sync-my-L2P
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmymainwindow.h
125 lines (101 loc) · 3.51 KB
/
mymainwindow.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
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
/****************************************************************************
** This file is part of Sync-my-L2P.
**
** Sync-my-L2P is free software: you can redistribute it and/or modify
** it under the terms of the GNU Lesser General Public License as published by
** the Free Software Foundation, either version 3 of the License, or
** (at your option) any later version.
**
** Sync-my-L2P is distributed in the hope that it will be useful,
** but WITHOUT ANY WARRANTY; without even the implied warranty of
** MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
** GNU Lesser General Public License for more details.
**
** You should have received a copy of the GNU Lesser General Public License
** along with Sync-my-L2P. If not, see <http://www.gnu.org/licenses/>.
****************************************************************************/
#ifndef HAUPTFENSTER_H
#define HAUPTFENSTER_H
#include <QMainWindow>
#include <QtNetwork/QNetworkAccessManager>
#include <QtNetwork/QNetworkRequest>
#include <QtNetwork/QNetworkReply>
#include <QtNetwork/QAuthenticator>
#include <QUrl>
#include <QRegExp>
#include <QXmlStreamReader>
#include <QStringBuilder>
#include <QList>
#include <QLinkedList>
#include <QQueue>
#include <QSettings>
#include <QMessageBox>
#include <QFileDialog>
#include <QDir>
#include <QFile>
#include <QMenu>
#include <QAction>
#include <QDesktopWidget>
#include <QDesktopServices>
#include "myfile.h"
#include "logintester.h"
#include "filedownloader.h"
#include "mysortfilterproxymodel.h"
class Veranstaltung;
namespace Ui {
class MainWindow;
}
class MyMainWindow : public QMainWindow
{
Q_OBJECT
public:
explicit MyMainWindow(QWidget *parent = 0);
~MyMainWindow();
private:
void loadSettings();
void saveSettings();
void ausschliessen(Structureelement*);
void einbinden(Structureelement*);
void aktiviereLoginButton(void);
void getStrukturelementeListe(Structureelement*, QLinkedList<Structureelement*>&, bool);
void unknownError();
QString getStrukturelementPfad(Structureelement*);
int getFileCount(QLinkedList<Structureelement*>& liste);
Ui::MainWindow* ui;
QNetworkAccessManager* manager;
MySortFilterProxyModel proxyModel;
QStandardItemModel itemModel;
Structureelement* iter;
QFile output;
QMap<QNetworkReply*, Structureelement*> replies;
Structureelement* lastRightClickItem;
bool autoSynchronize;
signals:
void downloadFortschritt(int);
private slots:
void copyURL();
void openItem();
void openCourse();
void veranstaltungenAbgerufen(QNetworkReply*);
void doAuthentification(QNetworkReply*, QAuthenticator*);
void dateienAbgerufen(QNetworkReply*);
void dateienAktualisieren();
void on_ausschliessen_clicked();
void on_einbinden_clicked();
void on_Login_clicked();
void on_DatenSpeichern_stateChanged(int);
void on_BenutzernameFeld_textChanged(const QString);
void on_PasswortFeld_textChanged(const QString);
void on_synchronisieren_clicked();
void on_directoryButton_clicked();
void on_Aktualisieren_clicked();
void on_directoryOpen_clicked();
void on_expandButton_clicked();
void on_collapseButton_clicked();
void on_AutoLogin_stateChanged(int arg1);
void on_treeView_doubleClicked(const QModelIndex &index);
void on_treeView_customContextMenuRequested(const QPoint &pos);
void on_maxSizeBox_valueChanged(int arg1);
void on_maxSizeCheckBox_toggled(bool checked);
};
#endif // HAUPTFENSTER_H