-
Notifications
You must be signed in to change notification settings - Fork 32
/
Copy pathSplashScreen.cpp
135 lines (100 loc) · 4.54 KB
/
SplashScreen.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
#include <iostream>
// Qt includes
#include <Applications/Configuration.h>
#include <Logging.h>
#include <QFileDialog>
#include <QMessageBox>
#include "SplashScreen.h"
#include "ui_SplashScreen.h"
namespace shapeworks {
//---------------------------------------------------------------------------
SplashScreen::SplashScreen(QWidget* parent, Preferences& preferences) : QDialog(parent), preferences_(preferences) {
this->ui_ = new Ui_SplashScreen;
this->ui_->setupUi(this);
this->setWindowFlags(Qt::Dialog | Qt::FramelessWindowHint);
this->setModal(true);
// Set up the private internals of the AppSplash class
this->setObjectName(QString::fromUtf8("splashscreen"));
this->ui_->version_->setText(SHAPEWORKS_VERSION);
// Disable these since they arent being used yet.
this->ui_->load_recent_button_->setEnabled(false);
this->populate_recent_projects();
connect(this->ui_->quit_button_, &QPushButton::clicked, this, &SplashScreen::quit);
connect(this->ui_->recent_project_listwidget_, &QListWidget::itemPressed, this,
&SplashScreen::enable_load_recent_button);
connect(this->ui_->recent_project_listwidget_, &QListWidget::itemDoubleClicked, this, &SplashScreen::open_recent);
connect(this->ui_->new_project_button_, &QPushButton::clicked, this, &SplashScreen::new_project);
connect(this->ui_->load_recent_button_, &QPushButton::clicked, this, &SplashScreen::open_recent);
connect(this->ui_->existing_project_button_, &QPushButton::clicked, this, &SplashScreen::open_existing);
this->ui_->new_project_button_->setFocus();
}
//---------------------------------------------------------------------------
SplashScreen::~SplashScreen() {}
//---------------------------------------------------------------------------
void SplashScreen::new_project() { this->accept(); }
//---------------------------------------------------------------------------
void SplashScreen::quit() { reinterpret_cast<QWidget*>(this->parent())->close(); }
//---------------------------------------------------------------------------
void SplashScreen::open_existing() {
auto filter = tr("ShapeWorks Project (*.swproj *.xlsx)");
QString filename =
QFileDialog::getOpenFileName(this, tr("Open Project..."), preferences_.get_last_directory(), filter);
if (filename.isEmpty()) {
return;
}
this->preferences_.set_last_directory(QFileInfo(filename).absolutePath());
this->hide();
QApplication::processEvents();
Q_EMIT open_project(filename);
accept();
}
//---------------------------------------------------------------------------
void SplashScreen::open_recent() {
QListWidgetItem* current_item = this->ui_->recent_project_listwidget_->currentItem();
if (current_item == nullptr) {
return;
}
QStringList user_data = current_item->data(Qt::UserRole).toStringList();
if (user_data.size() != 2) {
return;
}
QString full_file_path = user_data[0];
QString relative_path = user_data[1];
if (!QFileInfo::exists(full_file_path)) {
QMessageBox::critical(0, "Project not found", "The project no longer exists.");
return;
}
QDir::setCurrent(relative_path);
this->hide();
QApplication::processEvents();
Q_EMIT open_project(full_file_path);
accept();
}
//---------------------------------------------------------------------------
void SplashScreen::populate_recent_projects() {
QStringList recent_files = this->preferences_.get_recent_files();
QStringList recent_paths = this->preferences_.get_recent_paths();
int num_recent_files = qMin(recent_files.size(), (int)Preferences::MAX_RECENT_FILES);
for (int i = 0; i < num_recent_files; i++) {
QString text = QFileInfo(recent_files[i]).fileName();
QListWidgetItem* new_item = new QListWidgetItem(text);
// set the full file path and relative path as user data
QStringList user_data = {recent_files[i], recent_paths[i]};
new_item->setData(Qt::UserRole, QVariant(user_data));
new_item->setToolTip(recent_files[i]);
this->ui_->recent_project_listwidget_->addItem(new_item);
}
}
//---------------------------------------------------------------------------
void SplashScreen::enable_load_recent_button(QListWidgetItem* not_used) {
this->ui_->load_recent_button_->setEnabled(true);
}
//---------------------------------------------------------------------------
void SplashScreen::resizeEvent(QResizeEvent* event) {
QDialog::resizeEvent(event);
QFontMetrics fm(this->ui_->title_->font());
int width = fm.width(this->ui_->title_->text());
this->ui_->title_->setMinimumWidth(width);
this->resize(width * 2, width * 1.2);
}
} // namespace shapeworks