NOISSUE kitty cat in a silly hat!
This commit is contained in:
parent
56a9b65efb
commit
2e58429b6a
@ -1245,16 +1245,20 @@ void MainWindow::setCatBackground(bool enabled)
|
|||||||
{
|
{
|
||||||
if (enabled)
|
if (enabled)
|
||||||
{
|
{
|
||||||
view->setStyleSheet(R"(
|
QDateTime now = QDateTime::currentDateTime();
|
||||||
|
QDateTime xmas(QDate(now.date().year(), 12, 25), QTime(0, 0));
|
||||||
|
;
|
||||||
|
QString cat = (abs(now.daysTo(xmas)) <= 4) ? "catmas" : "kitteh";
|
||||||
|
view->setStyleSheet(QString(R"(
|
||||||
GroupView
|
GroupView
|
||||||
{
|
{
|
||||||
background-image: url(:/backgrounds/kitteh);
|
background-image: url(:/backgrounds/%1);
|
||||||
background-attachment: fixed;
|
background-attachment: fixed;
|
||||||
background-clip: padding;
|
background-clip: padding;
|
||||||
background-position: top right;
|
background-position: top right;
|
||||||
background-repeat: none;
|
background-repeat: none;
|
||||||
background-color:palette(base);
|
background-color:palette(base);
|
||||||
})");
|
})").arg(cat));
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
|
@ -2,5 +2,6 @@
|
|||||||
<RCC version="1.0">
|
<RCC version="1.0">
|
||||||
<qresource prefix="/backgrounds">
|
<qresource prefix="/backgrounds">
|
||||||
<file alias="kitteh">catbgrnd2.png</file>
|
<file alias="kitteh">catbgrnd2.png</file>
|
||||||
|
<file alias="catmas">catmas.png</file>
|
||||||
</qresource>
|
</qresource>
|
||||||
</RCC>
|
</RCC>
|
||||||
|
BIN
application/resources/backgrounds/catmas.png
Normal file
BIN
application/resources/backgrounds/catmas.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 97 KiB |
Loading…
Reference in New Issue
Block a user