/*************************************************************************** * This file is part of awesome-widgets * * * * awesome-widgets is free software: you can redistribute it and/or * * modify it under the terms of the GNU General Public License as * * published by the Free Software Foundation, either version 3 of the * * License, or (at your option) any later version. * * * * awesome-widgets is distributed in the hope that it will be useful, * * but WITHOUT ANY WARRANTY; without even the implied warranty of * * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * * GNU General Public License for more details. * * * * You should have received a copy of the GNU General Public License * * along with awesome-widgets. If not, see http://www.gnu.org/licenses/ * ***************************************************************************/ #include "graphicalitem.h" #include #include #include #include #include #include #include #include GraphicalItem::GraphicalItem(QObject *wid, const QString desktopName, const QStringList directories, const bool debugCmd) : QObject(wid), fileName(desktopName), dirs(directories), debug(debugCmd) { readConfiguration(); } GraphicalItem::~GraphicalItem() { if (debug) qDebug() << PDEBUG; } QString GraphicalItem::getImage(const float value) { if (debug) qDebug() << PDEBUG; if (debug) qDebug() << PDEBUG << ":" << "Value" << value; if (_bar == QString("none")) return QString(""); float percent = value / 100.0; int scale[2] = {1, 1}; QPen pen = QPen(); QGraphicsScene *scene = new QGraphicsScene(); scene->setBackgroundBrush(QBrush(Qt::NoBrush)); QGraphicsView *view = new QGraphicsView(scene); view->setStyleSheet(QString("background: transparent")); view->setContentsMargins(0, 0, 0, 0); view->setHorizontalScrollBarPolicy(Qt::ScrollBarAlwaysOff); view->setVerticalScrollBarPolicy(Qt::ScrollBarAlwaysOff); view->resize(_width + 5.0, _height + 5.0); // paint switch(_type) { case Vertical: pen.setWidth(_width); // inactive pen.setColor(_inactiveColor); scene->addLine(0.5 * _width, 0.0, 0.5 * _width, _height, pen); // active pen.setColor(_activeColor); scene->addLine(0.5 * _width, (1.0 - percent) * _height + 0.5 * _width, 0.5 * _width, _height + 0.5 * _width, pen); // scale scale[1] = (int)_direction; break; case Circle: QGraphicsEllipseItem *circle; pen.setWidth(1.0); // inactive pen.setColor(_inactiveColor); circle = scene->addEllipse(0.0, 0.0, _width, _height, pen, QBrush(_inactiveColor, Qt::SolidPattern)); circle->setSpanAngle((1.0 - percent) * 360.0 * 16.0); circle->setStartAngle(180.0 * 16.0 - (1.0 - percent) * 360.0 * 16.0); // active pen.setColor(_activeColor); circle = scene->addEllipse(0.0, 0.0, _width, _height, pen, QBrush(_activeColor, Qt::SolidPattern)); circle->setSpanAngle(percent * 360.0 * 16.0); circle->setStartAngle(180.0 * 16.0); // scale scale[0] = (int)_direction; break; default: pen.setWidth(_height); // inactive pen.setColor(_inactiveColor); scene->addLine(0.0, 0.5 * _height, _width, 0.5 * _height, pen); // active pen.setColor(_activeColor); scene->addLine(-0.5 * _height, 0.5 * _height, percent * _width - 0.5 * _height, 0.5 * _height, pen); // scale scale[0] = (int)_direction; break; } // convert QPixmap pixmap = QPixmap::grabWidget(view).transformed(QTransform().scale(scale[0], scale[1])); QByteArray byteArray; QBuffer buffer(&byteArray); pixmap.save(&buffer, "PNG"); QString url = QString("").arg(QString(byteArray.toBase64())); delete view; delete scene; return url; } QString GraphicalItem::getName() { if (debug) qDebug() << PDEBUG; return _name; } QString GraphicalItem::getComment() { if (debug) qDebug() << PDEBUG; return _comment; } QString GraphicalItem::getBar() { if (debug) qDebug() << PDEBUG; return _bar; } QColor GraphicalItem::getActiveColor() { if (debug) qDebug() << PDEBUG; return _activeColor; } QColor GraphicalItem::getInactiveColor() { if (debug) qDebug() << PDEBUG; return _inactiveColor; } GraphicalItem::Type GraphicalItem::getType() { if (debug) qDebug() << PDEBUG; return _type; } GraphicalItem::Direction GraphicalItem::getDirection() { if (debug) qDebug() << PDEBUG; return _direction; } int GraphicalItem::getHeight() { if (debug) qDebug() << PDEBUG; return _height; } int GraphicalItem::getWidth() { if (debug) qDebug() << PDEBUG; return _width; } void GraphicalItem::setName(const QString name) { if (debug) qDebug() << PDEBUG; if (debug) qDebug() << PDEBUG << ":" << "Name" << name; _name = name; } void GraphicalItem::setComment(const QString comment) { if (debug) qDebug() << PDEBUG; if (debug) qDebug() << PDEBUG << ":" << "Comment" << comment; _comment = comment; } void GraphicalItem::setBar(const QString bar) { if (debug) qDebug() << PDEBUG; if (debug) qDebug() << PDEBUG << ":" << "Bar" << bar; _bar = bar; if ((!_bar.contains(QRegExp(QString("cpu(?!cl).*")))) && (!_bar.contains(QRegExp(QString("gpu")))) && (!_bar.contains(QRegExp(QString("mem")))) && (!_bar.contains(QRegExp(QString("swap")))) && (!_bar.contains(QRegExp(QString("hdd[0-9].*")))) && (!_bar.contains(QRegExp(QString("bat.*"))))) _bar = QString("none"); } void GraphicalItem::setActiveColor(const QColor color) { if (debug) qDebug() << PDEBUG; if (debug) qDebug() << PDEBUG << ":" << "Color" << color; _activeColor = color; } void GraphicalItem::setInactiveColor(const QColor color) { if (debug) qDebug() << PDEBUG; if (debug) qDebug() << PDEBUG << ":" << "Color" << color; _inactiveColor = color; } void GraphicalItem::setType(const QString type) { if (debug) qDebug() << PDEBUG; if (debug) qDebug() << PDEBUG << ":" << "Type" << type; if (type == QString("Vertical")) _type = Vertical; else if (type == QString("Circle")) _type = Circle; else _type = Horizontal; } void GraphicalItem::setDirection(const QString direction) { if (debug) qDebug() << PDEBUG; if (debug) qDebug() << PDEBUG << ":" << "Direction" << direction; if (direction == QString("RightToLeft")) _direction = RightToLeft; else _direction = LeftToRight; } void GraphicalItem::setHeight(const int height) { if (debug) qDebug() << PDEBUG; if (debug) qDebug() << PDEBUG << ":" << "Height" << height; _height = height; } void GraphicalItem::setWidth(const int width) { if (debug) qDebug() << PDEBUG; if (debug) qDebug() << PDEBUG << ":" << "Width" << width; _width = width; } void GraphicalItem::readConfiguration() { if (debug) qDebug() << PDEBUG; for (int i=dirs.count()-1; i>=0; i--) { if (!QDir(dirs[i]).entryList(QDir::Files).contains(fileName)) continue; QSettings settings(dirs[i] + QDir::separator() + fileName, QSettings::IniFormat); settings.beginGroup(QString("Desktop Entry")); QStringList childKeys = settings.childKeys(); for (int i=0; i