-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathPrettyTabWidget.cpp
More file actions
56 lines (45 loc) · 1.17 KB
/
PrettyTabWidget.cpp
File metadata and controls
56 lines (45 loc) · 1.17 KB
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
#include "PrettyTabWidget.h"
PrettyTabWidget::PrettyTabWidget(QWidget *parent) :
QTabWidget(parent)
{
setDocumentMode(true);
setTabsClosable(true);
setMovable(true);
setElideMode(Qt::ElideRight);
_stylesheet = QString("QStackedWidget { "
"background-color: rgba(0,0,0,3%);"
"background-image: url(\":/ThreeBrooks/background.svg\");"
"background-repeat: none;"
"background-position: center center;"
"border-radius: 5px;"
"margin: 4 3 2 4; }");
setStyleSheet(_stylesheet);
}
void PrettyTabWidget::tabInserted(int index)
{
Q_UNUSED(index)
if(this->count() < 2) {
this->tabBar()->hide();
} else {
this->tabBar()->show();
}
if(count() <= 0) {
setStyleSheet(_stylesheet);
} else {
setStyleSheet(QString());
}
}
void PrettyTabWidget::tabRemoved(int index)
{
Q_UNUSED(index)
if(this->count() < 2) {
this->tabBar()->hide();
} else {
this->tabBar()->show();
}
if(count() <= 0) {
setStyleSheet(_stylesheet);
} else {
setStyleSheet(QString());
}
}