mirror of
https://invent.kde.org/marcoa/shift-shell.git
synced 2026-04-29 15:03:09 +00:00
Leave calculating the startup feedback color to plasma-nano
This commit is contained in:
parent
d76fc145f9
commit
48f8f00034
4 changed files with 3 additions and 96 deletions
|
|
@ -1,58 +0,0 @@
|
|||
/***************************************************************************
|
||||
* Copyright (C) 2019 Carson Black <uhhadd@gmail.com> *
|
||||
* *
|
||||
* This program 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 2 of the License, or *
|
||||
* (at your option) any later version. *
|
||||
* *
|
||||
* This program 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 this program; if not, write to the *
|
||||
* Free Software Foundation, Inc., *
|
||||
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA . *
|
||||
***************************************************************************/
|
||||
|
||||
#include <QObject>
|
||||
#include <QColor>
|
||||
#include <QImage>
|
||||
#include <QDebug>
|
||||
|
||||
#include "colouraverage.h"
|
||||
|
||||
ColourAverage::ColourAverage(QObject *parent) : QObject(parent)
|
||||
{
|
||||
}
|
||||
|
||||
QColor ColourAverage::averageColour(const QImage &img) {
|
||||
int r = 0;
|
||||
int g = 0;
|
||||
int b = 0;
|
||||
int c = 0;
|
||||
|
||||
for (int i = 0; i < img.width(); i++) {
|
||||
for (int ii = 0; ii < img.height(); ii++) {
|
||||
QRgb pix = img.pixel(i, ii);
|
||||
if (pix == 0)
|
||||
continue;
|
||||
|
||||
c++;
|
||||
r += qRed(pix);
|
||||
g += qGreen(pix);
|
||||
b += qBlue(pix);
|
||||
}
|
||||
}
|
||||
r = r / c;
|
||||
g = g / c;
|
||||
b = b / c;
|
||||
|
||||
QColor color = QColor::fromRgb(r,g,b);
|
||||
|
||||
color.setHsv(color.hue(), color.saturation() / 4, color.value());
|
||||
|
||||
return color;
|
||||
}
|
||||
|
|
@ -1,32 +0,0 @@
|
|||
/***************************************************************************
|
||||
* Copyright (C) 2019 Carson Black <uhhadd@gmail.com> *
|
||||
* *
|
||||
* This program 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 2 of the License, or *
|
||||
* (at your option) any later version. *
|
||||
* *
|
||||
* This program 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 this program; if not, write to the *
|
||||
* Free Software Foundation, Inc., *
|
||||
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA . *
|
||||
***************************************************************************/
|
||||
#pragma once
|
||||
|
||||
#include <QObject>
|
||||
#include <QColor>
|
||||
#include <QImage>
|
||||
|
||||
class ColourAverage : public QObject
|
||||
{
|
||||
Q_OBJECT
|
||||
|
||||
public:
|
||||
explicit ColourAverage(QObject *parent = nullptr);
|
||||
Q_INVOKABLE QColor averageColour(const QImage &img);
|
||||
};
|
||||
|
|
@ -72,8 +72,7 @@ LauncherContainer {
|
|||
title,
|
||||
delegate.iconItem.Kirigami.ScenePosition.x + delegate.iconItem.width/2,
|
||||
delegate.iconItem.Kirigami.ScenePosition.y + delegate.iconItem.height/2,
|
||||
Math.min(delegate.iconItem.width, delegate.iconItem.height),
|
||||
ColourAverage.averageColour(img.image));
|
||||
Math.min(delegate.iconItem.width, delegate.iconItem.height)
|
||||
});
|
||||
}
|
||||
onParentFromLocationChanged: {
|
||||
|
|
|
|||
|
|
@ -63,8 +63,7 @@ ColumnLayout {
|
|||
model.text,
|
||||
icon.Kirigami.ScenePosition.x + icon.width/2,
|
||||
icon.Kirigami.ScenePosition.y + icon.height/2,
|
||||
Math.min(icon.width, icon.height),
|
||||
theme.textColor);
|
||||
Math.min(icon.width, icon.height))
|
||||
plasmoid.nativeInterface.executeCommand(model.settingsCommand);
|
||||
root.closeRequested();
|
||||
}
|
||||
|
|
@ -110,8 +109,7 @@ ColumnLayout {
|
|||
model.text,
|
||||
icon.Kirigami.ScenePosition.x + icon.width/2,
|
||||
icon.Kirigami.ScenePosition.y + icon.height/2,
|
||||
Math.min(icon.width, icon.height),
|
||||
theme.textColor);
|
||||
Math.min(icon.width, icon.height))
|
||||
//plasmoid.nativeInterface.executeCommand(model.settingsCommand);
|
||||
closeRequested();
|
||||
} else if (model.toggleFunction) {
|
||||
|
|
|
|||
Loading…
Reference in a new issue