aboutsummaryrefslogtreecommitdiff
path: root/src-qt5/core/libLumina/RootSubWindow.cpp
diff options
context:
space:
mode:
authorKen Moore <ken@ixsystems.com>2017-06-29 13:16:53 -0400
committerKen Moore <ken@ixsystems.com>2017-06-29 13:16:53 -0400
commit5a3ce5ac4fbc5f2169ab9eb7330e2096c73dd639 (patch)
treeaddc444d9ed7a0592f95ab55c12f78834ba16ca1 /src-qt5/core/libLumina/RootSubWindow.cpp
parentde-activate the global position change notifications within the event filter ... (diff)
downloadlumina-5a3ce5ac4fbc5f2169ab9eb7330e2096c73dd639.tar.gz
lumina-5a3ce5ac4fbc5f2169ab9eb7330e2096c73dd639.tar.bz2
lumina-5a3ce5ac4fbc5f2169ab9eb7330e2096c73dd639.zip
Get the RootSubWindow loading/using icons for the various buttons now.
Diffstat (limited to 'src-qt5/core/libLumina/RootSubWindow.cpp')
-rw-r--r--src-qt5/core/libLumina/RootSubWindow.cpp12
1 files changed, 9 insertions, 3 deletions
diff --git a/src-qt5/core/libLumina/RootSubWindow.cpp b/src-qt5/core/libLumina/RootSubWindow.cpp
index abaceca2..d2ec7503 100644
--- a/src-qt5/core/libLumina/RootSubWindow.cpp
+++ b/src-qt5/core/libLumina/RootSubWindow.cpp
@@ -13,6 +13,8 @@
#define WIN_BORDER 5
+#include <LIconCache.h>
+
// === PUBLIC ===
RootSubWindow::RootSubWindow(QWidget *root, NativeWindow *win) : QFrame(root){
this->setAttribute(Qt::WA_DeleteOnClose);
@@ -166,8 +168,11 @@ void RootSubWindow::initWindowFrame(){
mainLayout->setSpacing(0);
titleBar->setSpacing(1);
titleBar->setContentsMargins(0,0,0,0);
- //this->setLayout(mainLayout);
- //qDebug() << " - Done";
+ //Now load the icons for the button
+ LIconCache::instance()->loadIcon(closeB, "window-close");
+ LIconCache::instance()->loadIcon(maxB, "window-maximize");
+ LIconCache::instance()->loadIcon(minB, "window-minimize");
+ LIconCache::instance()->loadIcon(otherB, "list");
}
void RootSubWindow::LoadProperties( QList< NativeWindow::Property> list){
@@ -262,7 +267,8 @@ void RootSubWindow::propertiesChanged(QList<NativeWindow::Property> props, QList
break;
case NativeWindow::Icon:
//qDebug() << "Got Icon Change:" << vals[i];
- otherB->setIcon(vals[i].value<QIcon>());
+ if(vals[i].value<QIcon>().isNull() ){ LIconCache::instance()->loadIcon(otherB, "window-close"); }
+ else{ otherB->setIcon(vals[i].value<QIcon>()); }
break;
case NativeWindow::GlobalPos:
qDebug() << "Got Global Pos:" << this->pos() << WinWidget->mapToGlobal(QPoint(0,0)) << WIN->geometry().topLeft() << vals[i].toPoint();
bgstack15