//=========================================== // Lumina-DE source code // Copyright (c) 2012, Ken Moore // Available under the 3-clause BSD license // See the LICENSE file for full details //=========================================== #include "LPanel.h" #include "LSession.h" #include "panel-plugins/systemtray/LSysTray.h" #define DEBUG 1 LPanel::LPanel(QSettings *file, int scr, int num, QWidget *parent) : QWidget(){ //Take care of inputs if(DEBUG){ qDebug() << " - Creating Panel:" << scr << num; } bgWindow = parent; //save for later //Setup the widget overlay for the entire panel to provide transparency effects panelArea = new QWidget(this); QBoxLayout *tmp = new QBoxLayout(QBoxLayout::LeftToRight); tmp->setContentsMargins(0,0,0,0); this->setLayout(tmp); tmp->addWidget(panelArea); settings = file; screennum = scr; panelnum = num; //save for later screen = LSession::desktop(); PPREFIX = "panel"+QString::number(screennum)+"."+QString::number(num)+"/"; defaultpanel = (screen->screenGeometry(screennum).x()==0 && num==0); //if(settings->value("defaultpanel",QString::number(screen->primaryScreen())+".0").toString()==QString::number(screennum)+"."+QString::number(num) ){ defaultpanel=true;} //else{defaultpanel=false; } horizontal=true; //use this by default initially hidden = false; //use this by default //Setup the panel if(DEBUG){ qDebug() << " -- Setup Panel"; } this->setContentsMargins(0,0,0,0); this->setSizePolicy(QSizePolicy::Fixed, QSizePolicy::Fixed); //panels cannot get keyboard focus otherwise it upsets the task manager window detection this->setAttribute(Qt::WA_X11DoNotAcceptFocus); this->setAttribute(Qt::WA_X11NetWmWindowTypeDock); this->setAttribute(Qt::WA_AlwaysShowToolTips); this->setWindowFlags(Qt::FramelessWindowHint | Qt::WindowStaysOnTopHint); this->setWindowTitle("LuminaPanel"); this->setObjectName("LuminaPanelBackgroundWidget"); this->setStyleSheet("QToolButton::menu-indicator{ image: none; }"); panelArea->setObjectName("LuminaPanelColor"); layout = new QBoxLayout(QBoxLayout::LeftToRight); layout->setContentsMargins(0,0,0,0); layout->setSpacing(1); //layout->setSizeConstraint(QLayout::SetFixedSize); panelArea->setLayout(layout); //Set special window flags on the panel for proper usage this->show(); //this->setFocusPolicy(Qt::NoFocus); LSession::handle()->XCB->SetAsSticky(this->winId()); //LSession::handle()->XCB->SetAsPanel(this->winId()); LX11::SetAsPanel(this->winId()); QTimer::singleShot(1,this, SLOT(UpdatePanel()) ); //start this in a new thread connect(screen, SIGNAL(resized(int)), this, SLOT(UpdatePanel()) ); //in case the screen resolution changes } LPanel::~LPanel(){ } //=========== // PUBLIC SLOTS //=========== void LPanel::UpdatePanel(){ //Create/Update the panel as designated in the Settings file settings->sync(); //make sure to catch external settings changes //First set the geometry of the panel and send the EWMH message to reserve that space if(DEBUG){ qDebug() << "Update Panel"; } hidden = settings->value(PPREFIX+"hidepanel",false).toBool(); //default to true for the moment QString loc = settings->value(PPREFIX+"location","").toString(); if(loc.isEmpty() && defaultpanel){ loc="top"; } if(loc=="top" || loc=="bottom"){ horizontal=true; layout->setAlignment(Qt::AlignLeft); layout->setDirection(QBoxLayout::LeftToRight); }else{ horizontal=false; layout->setAlignment(Qt::AlignTop); layout->setDirection(QBoxLayout::TopToBottom); } int ht = settings->value(PPREFIX+"height", 30).toInt(); //this is technically the distance into the screen from the edge //qDebug() << " - set Geometry"; int xwid = screen->screenGeometry(screennum).width(); int xhi = screen->screenGeometry(screennum).height(); int xloc = screen->screenGeometry(screennum).x(); //xloc=xoffset; if(loc=="top"){ //top of screen QSize sz = QSize(xwid, ht); this->setMinimumSize(sz); this->setMaximumSize(sz); this->setGeometry(xloc,0,xwid, ht ); if(!hidden){ LX11::ReservePanelLocation(this->winId(), xloc, 0, this->width(), ht, "top"); } else{ LX11::ReservePanelLocation(this->winId(), xloc, 0, this->width(), 2, "top"); hidepoint = QPoint(xloc, 2-ht); showpoint = QPoint(xloc, 0); this->move(hidepoint); //Could bleed over onto the screen above } }else if(loc=="bottom"){ //bottom of screen QSize sz = QSize(xwid, ht); this->setMinimumSize(sz); this->setMaximumSize(sz); this->setGeometry(xloc,xhi-ht,xwid, ht ); if(!hidden){ LX11::ReservePanelLocation(this->winId(), xloc, xhi-ht, this->width(), ht, "bottom"); } else{ LX11::ReservePanelLocation(this->winId(), xloc, xhi-2, this->width(), 2, "bottom"); hidepoint = QPoint(xloc, xhi-2); showpoint = QPoint(xloc, xhi-ht); this->move(hidepoint); //Could bleed over onto the screen below } }else if(loc=="left"){ //left side of screen QSize sz = QSize(ht, xhi); this->setMinimumSize(sz); this->setMaximumSize(sz); this->setGeometry(xloc,0, ht, xhi); if(!hidden){ LX11::ReservePanelLocation(this->winId(), xloc, 0, ht, xhi, "left"); } else{ LX11::ReservePanelLocation(this->winId(), xloc, 0, 2, xhi, "left"); hidepoint = QPoint(xloc-ht+2, 0); showpoint = QPoint(xloc, 0); this->move(hidepoint); //Could bleed over onto the screen left } }else{ //right side of screen QSize sz = QSize(ht, xhi); this->setMinimumSize(sz); this->setMaximumSize(sz); this->setGeometry(xloc+xwid-ht,0,ht, xhi); if(!hidden){ LX11::ReservePanelLocation(this->winId(), xloc+xwid-ht, 0, ht, xhi, "right"); } else{ LX11::ReservePanelLocation(this->winId(), xloc+xwid-2, 0, 2, xhi, "right"); hidepoint = QPoint(xloc+xwid-2, 0); showpoint = QPoint(xloc+xwid-ht, 0); this->move(hidepoint); //Could bleed over onto the screen right } } //With QT5, we need to make sure to reset window properties on occasion //LSession::handle()->XCB->SetAsSticky(this->winId()); //LX11::SetAsPanel(this->winId()); //First test/update all the window attributes as necessary //if(!this->testAttribute(Qt::WA_X11DoNotAcceptFocus)){ this->setAttribute(Qt::WA_X11DoNotAcceptFocus); } //if(!this->testAttribute(Qt::WA_X11NetWmWindowTypeDock)){ this->setAttribute(Qt::WA_X11NetWmWindowTypeDock); } //if(!this->testAttribute(Qt::WA_AlwaysShowToolTips)){ this->setAttribute(Qt::WA_AlwaysShowToolTips); } //Now update the appearance of the toolbar if(settings->value(PPREFIX+"customcolor", false).toBool()){ QString color = settings->value(PPREFIX+"color", "rgba(255,255,255,160)").toString(); QString style = "QWidget#LuminaPanelColor{ background: %1; border-radius: 3px; border: 1px solid %1; }"; style = style.arg(color); panelArea->setStyleSheet(style); }else{ panelArea->setStyleSheet(""); //clear it and use the one from the theme } //Then go through the plugins and create them as necessary QStringList plugins = settings->value(PPREFIX+"pluginlist", QStringList()).toStringList(); if(defaultpanel && plugins.isEmpty()){ plugins << "userbutton" << "taskmanager" << "spacer" << "systemtray" << "clock" << "systemdashboard"; } if(DEBUG){ qDebug() << " - Initialize Plugins: " << plugins; } for(int i=0; inumber())+"."+QString::number(num)) ){ num++; } plugins[i] = plugins[i]+"---"+QString::number(screennum)+"."+QString::number(this->number())+"."+QString::number(num); //qDebug() << "Adjust Plugin ID:" << plugins[i]; } //See if this plugin is already there or in a different spot bool found = false; for(int p=0; ptype()==plugins[i]){ found = true; //already exists //Make sure the plugin layout has the correct orientation if(horizontal){PLUGINS[p]->layout()->setDirection(QBoxLayout::LeftToRight); } else{ PLUGINS[p]->layout()->setDirection(QBoxLayout::TopToBottom); } QTimer::singleShot(0,PLUGINS[p], SLOT( OrientationChange() ) ); //Now check the location of the plugin in the panel if(p!=i){ //wrong place in the panel layout->takeAt(p); //remove the item from the current location layout->insertWidget(i, PLUGINS[p]); //add the item into the correct location PLUGINS.move(p,i); //move the identifier in the list to match } break; } } if(!found){ //New Plugin if(DEBUG){ qDebug() << " -- New Plugin:" << plugins[i] << i; } LPPlugin *plug = NewPP::createPlugin(plugins[i], panelArea, horizontal); if(plug != 0){ PLUGINS.insert(i, plug); layout->insertWidget(i, PLUGINS[i]); }else{ //invalid plugin type plugins.removeAt(i); //remove this invalid plugin from the list i--; //make sure we don't miss the next item with the re-order } } LSession::processEvents(); } //Now remove any extra plugins from the end //qDebug() << "plugins:" << plugins; //qDebug() << "PLUGINS length:" << PLUGINS.length(); for(int i=0; itype())){ continue; } //good plugin - skip it if(DEBUG){ qDebug() << " -- Remove Plugin: " << PLUGINS[i]->type(); } //If this is the system tray - stop it first if( PLUGINS[i]->type().startsWith("systemtray---") ){ static_cast(PLUGINS[i])->stop(); } layout->takeAt(i); //remove from the layout delete PLUGINS.takeAt(i); //delete the actual widget LSession::processEvents(); i--; //need to back up one space to not miss another plugin } this->update(); this->show(); //make sure the panel is visible now if(hidden){ this->move(hidepoint); } //Now go through and send the orientation update signal to each plugin for(int i=0; irect().x(), event->rect().y(), event->rect().width(), event->rect().height()); //already in global coords? (translating to bgWindow coords crashes Lumina) //Need to translate that rectangle to the background image coordinates //qDebug() << "Rec:" << rec.x() << rec.y(); //Need to change to global coords for the main window if(hidden && (this->pos()==hidepoint) ){ rec.moveTo( this->mapToGlobal(rec.topLeft()-hidepoint+showpoint) ); } else{ rec.moveTo( this->mapToGlobal(rec.topLeft()) ); } //qDebug() << "Global Rec:" << rec.x() << rec.y() << screennum; rec.moveTo( rec.x()-screen->screenGeometry(screennum).x(), rec.y() ); //qDebug() << "Adjusted Global Rec:" << rec.x() << rec.y(); painter->drawPixmap(event->rect(), bgWindow->grab(rec) ); QWidget::paintEvent(event); //now pass the event along to the normal painting event } void LPanel::enterEvent(QEvent *event){ //qDebug() << "Panel Enter Event:"; if(hidden){ //Move the panel out so it is fully available this->move(showpoint); } event->accept(); //just to quiet the compile warning } void LPanel::leaveEvent(QEvent *event){ /*qDebug() << "Panel Leave Event:"; qDebug() << "Panel Geom:" << this->geometry().x() << this->geometry().y() << this->geometry().width() << this->geometry().height() ; QPoint pt = QCursor::pos(); qDebug() << "Mouse Point (global):" << pt.x() << pt.y(); //pt = this->mapFromGlobal(pt); //qDebug() << "Mouse Point (local):" << pt.x() << pt.y(); qDebug() << "Contained:" << this->geometry().contains(pt);*/ if(hidden && !this->geometry().contains(QCursor::pos()) ){ //Move the panel back to it's "hiding" spot this->move(hidepoint); } event->accept(); //just to quiet the compile warning }