forked from RobertKrajewski/Sync-my-L2P
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathutils.cpp
153 lines (128 loc) · 4.29 KB
/
utils.cpp
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
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
#include <QStringBuilder>
#include <QApplication>
#include <QClipboard>
#include <QMessageBox>
#include <QDesktopWidget>
#include "utils.h"
#include "qslog/QsLog.h"
Utils::Utils(QObject *parent) :
QObject(parent)
{
}
/// Bestimmung des lokalen Pfads für ein Element
QString Utils::getElementLocalPath(Structureelement *item, QString downloadDirectoryPath, bool includeFilname, bool includePrefix)
{
QString path;
// Zwischenverzeichnisse
Structureelement* parent = item;
while ((parent = (Structureelement*) parent->parent()) != 0)
{
path.push_front(parent->text() % "/");
}
// Downloadverzeichnis
path.push_front(downloadDirectoryPath % "/");
// Fileprefix hinzufügen
if(includePrefix)
{
path.push_front("file:///");
}
// Dateiname
if(includeFilname)
{
path.append(item->text());
}
return path;
}
void Utils::copyTextToClipboard(QString text)
{
// Holen der globalen Zwischenablage
QClipboard *clipboard = QApplication::clipboard();
// Kopieren der URL des mit der rechten Maustaste geklickten Items in die Zwischenablage
clipboard->setText(text);
}
void Utils::errorMessageBox(QString message, QString detailMessage)
{
// Falls ein Fehler aufgetreten sein sollte, Ausgabe dessen
QMessageBox messageBox;
messageBox.setWindowIcon(QIcon(":/icons/magnifier.png"));
messageBox.setText(message);
messageBox.setInformativeText(detailMessage);
messageBox.setStandardButtons(QMessageBox::Ok);
messageBox.exec();
QLOG_ERROR() << message << ": " << detailMessage;
}
/// Erstellung einer Liste mit allen Veransaltungen
QList<Structureelement*> Utils::getAllCourseItems(QStandardItemModel *itemModel)
{
QList<Structureelement*> courses;
for(int row=0; row < itemModel->rowCount(); ++row)
{
Structureelement *element = static_cast<Structureelement*>(itemModel->item(row));
if(element->type() == courseItem)
{
courses.append(element);
}
else if(element->type() == semesterItem)
{
for(int innerRow=0; innerRow < element->rowCount(); ++innerRow)
{
courses.append(static_cast<Structureelement*>(element->child(innerRow)));
}
}
else
{
QLOG_ERROR() << "Unbekanntes Element auf der Ebene der Veranstaltungen: " << element->text();
}
}
return courses;
}
/// Factory für SemesterItems
Structureelement *Utils::getSemesterItem(QStandardItemModel *itemModel, QString semester)
{
QList<QStandardItem*> foundItems = itemModel->findItems(semester);
Structureelement *semesterElement;
if(foundItems.size())
{
semesterElement = static_cast<Structureelement*>(foundItems.first());
}
else
{
semesterElement = new Structureelement(semester, QUrl(), 0, 0, QString(), semesterItem);
itemModel->appendRow(semesterElement);
}
return semesterElement;
}
/// Factory für DirectoryItems
Structureelement *Utils::getDirectoryItem(Structureelement *courseItem, QStringList path)
{
Structureelement *currentItem = courseItem;
// Iteriere entlang der Elemente des Pfads und erstelle diese ggf.
foreach(QString item, path)
{
bool correctChildFound = false;
for(int row=0; row < currentItem->rowCount(); ++row)
{
Structureelement *child = static_cast<Structureelement*>(currentItem->child(row));
if(child->text() == item)
{
currentItem = child;
correctChildFound = true;
break;
}
}
if(!correctChildFound)
{
Structureelement* child = new Structureelement(item, QUrl(), 0, 0, QString(), directoryItem);
currentItem->appendRow(child);
currentItem = child;
}
}
return currentItem;
}
/// Zentrieren eines Fenster auf dem Desktops
void Utils::centerWidgetOnDesktop(QWidget *widget)
{
QRect desktopRect = QApplication::desktop()->screenGeometry();
QRect windowRect = widget->frameGeometry();
widget->move((desktopRect.width()-windowRect.width())/2+desktopRect.x(), (desktopRect.height()-windowRect.height())/2+desktopRect.y());
}