-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathloadingindicator.cc
65 lines (53 loc) · 1.48 KB
/
loadingindicator.cc
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
#include "loadingindicator.hpp"
#include <QtWidgets>
class LoadingIndicator::LoadingIndicatorPrivate
{
public:
explicit LoadingIndicatorPrivate(LoadingIndicator *q)
: q_ptr(q)
, movie(new QMovie(":/gif/resource/loading.gif", {}, q_ptr))
{
movie->setCacheMode(QMovie::CacheAll);
}
void setupUI()
{
auto *label = new QLabel(q_ptr);
label->setFixedSize(50, 50);
label->setScaledContents(true);
label->setMovie(movie);
movie->setScaledSize(label->size());
auto *layout = new QHBoxLayout(q_ptr);
layout->addWidget(label, 0, Qt::AlignCenter);
}
LoadingIndicator *q_ptr;
QMovie *movie;
};
LoadingIndicator::LoadingIndicator(QWidget *parent)
: QWidget{parent}
, d_ptr(new LoadingIndicatorPrivate(this))
{
d_ptr->setupUI();
QMetaObject::invokeMethod(this, [this] { showLoading(); }, Qt::QueuedConnection);
}
LoadingIndicator::~LoadingIndicator() {}
void LoadingIndicator::showLoading(QWidget *parent)
{
if (parent == nullptr) {
parent = parentWidget();
}
if (parent == nullptr) {
parent = qApp->activeWindow();
}
setParent(parent);
resize(parent->size());
setWindowFlags(windowFlags() | Qt::FramelessWindowHint | Qt::Tool);
setAttribute(Qt::WA_TranslucentBackground);
setWindowModality(Qt::ApplicationModal);
show();
d_ptr->movie->start();
}
void LoadingIndicator::hideLoading()
{
d_ptr->movie->stop();
hide();
}