refactor:move AddingVisuals to LatteComponents
parent
a8a19bb550
commit
cda688c2a5
@ -0,0 +1,48 @@
|
||||
/*
|
||||
* Copyright 2018 Michail Vourlakos <mvourlakos@gmail.com>
|
||||
*
|
||||
* This file is part of Latte-Dock
|
||||
*
|
||||
* Latte-Dock 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.
|
||||
*
|
||||
* Latte-Dock 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, see <http://www.gnu.org/licenses/>.
|
||||
*/
|
||||
|
||||
|
||||
function colorBrightness(color) {
|
||||
return colorBrightnessFromRGB(color.r * 255, color.g * 255, color.b * 255)
|
||||
}
|
||||
|
||||
// formula for brightness according to:
|
||||
// https://www.w3.org/TR/AERT/#color-contrast
|
||||
function colorBrightnessFromRGB(r, g, b) {
|
||||
return (r * 299 + g * 587 + b * 114) / 1000
|
||||
}
|
||||
|
||||
function colorLuminas(color) {
|
||||
return colorLuminasFromRGB(color.r, color.g, color.b)
|
||||
}
|
||||
|
||||
// formula for luminance according to:
|
||||
// https://www.w3.org/TR/2008/REC-WCAG20-20081211/#relativeluminancedef
|
||||
function colorLuminasFromRGB(r, g, b) {
|
||||
var rS = (r <= 0.03928) ? ( r / 12.92) : Math.pow( ((r + 0.055) / 1.055), 2.4 );
|
||||
var gS = (g <= 0.03928) ? ( g / 12.92) : Math.pow( ((g + 0.055) / 1.055), 2.4 );
|
||||
var bS = (b <= 0.03928) ? ( b / 12.92) : Math.pow( ((b + 0.055) / 1.055), 2.4 );
|
||||
|
||||
return 0.2126*rS + 0.7152*gS + 0.0722*bS;
|
||||
}
|
||||
|
||||
|
||||
function normalize(min, max, per) {
|
||||
return min + ((max-min) * per);
|
||||
}
|
@ -1,54 +0,0 @@
|
||||
/*
|
||||
* Copyright 2016 Smith AR <audoban@openmailbox.org>
|
||||
* Michail Vourlakos <mvourlakos@gmail.com>
|
||||
*
|
||||
* This file is part of Latte-Dock
|
||||
*
|
||||
* Latte-Dock 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.
|
||||
*
|
||||
* Latte-Dock 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, see <http://www.gnu.org/licenses/>.
|
||||
*/
|
||||
|
||||
import QtQuick 2.0
|
||||
|
||||
import org.kde.plasma.core 2.0 as PlasmaCore
|
||||
|
||||
import "../../code/ColorizerTools.js" as ColorizerTools
|
||||
|
||||
Item{
|
||||
Rectangle{
|
||||
width: Math.min(parent.width, parent.height)
|
||||
height: width
|
||||
anchors.centerIn: parent
|
||||
|
||||
radius: Math.max(width,height)/2
|
||||
|
||||
color: theme.backgroundColor // "#aa222222"
|
||||
border.width: 1
|
||||
border.color: outlineColor // "#ff656565"
|
||||
|
||||
property int crossSize: Math.min(0.4*parent.width, 0.4 * parent.height)
|
||||
|
||||
readonly property color outlineColorBase: theme.backgroundColor
|
||||
readonly property real outlineColorBaseBrightness: ColorizerTools.colorBrightness(outlineColorBase)
|
||||
readonly property color outlineColor: {
|
||||
if (outlineColorBaseBrightness > 127.5) {
|
||||
return Qt.darker(outlineColorBase, 1.5);
|
||||
} else {
|
||||
return Qt.lighter(outlineColorBase, 2.2);
|
||||
}
|
||||
}
|
||||
|
||||
Rectangle{width: parent.crossSize; height: 4; anchors.centerIn: parent; color: theme.highlightColor}
|
||||
Rectangle{width: 4; height: parent.crossSize; anchors.centerIn: parent; color: theme.highlightColor}
|
||||
}
|
||||
}
|
Loading…
Reference in New Issue