You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
74 lines
2.0 KiB
QML
74 lines
2.0 KiB
QML
5 years ago
|
/*
|
||
|
* Copyright 2020 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
|
||
|
|
||
5 years ago
|
import "./metrics" as MetricsTypes
|
||
|
|
||
5 years ago
|
Item {
|
||
|
property int iconSize: 48
|
||
|
property int maxIconSize: 48
|
||
5 years ago
|
property int backgroundThickness: 16
|
||
5 years ago
|
|
||
4 years ago
|
property MetricsTypes.Margin margin: MetricsTypes.Margin{
|
||
|
thickness: 4
|
||
|
maxThickness: 4
|
||
|
length: 4
|
||
|
screenEdge: 0
|
||
|
}
|
||
4 years ago
|
|
||
4 years ago
|
property MetricsTypes.Padding padding: MetricsTypes.Padding{
|
||
|
length: 4
|
||
|
lengthApplet: 4
|
||
|
}
|
||
|
|
||
|
property MetricsTypes.Totals totals: MetricsTypes.Totals{
|
||
|
//readonly property int length;
|
||
|
//readonly property int lengthEdge;
|
||
|
//readonly property int lengthEdges;
|
||
|
//readonly property int lengthPaddings;
|
||
|
//readonly property int thickness;
|
||
|
//readonly property int thicknessEdges;
|
||
|
}
|
||
|
|
||
|
property MetricsTypes.Mask mask: MetricsTypes.Mask{
|
||
|
screenEdge: 0
|
||
|
maxScreenEdge: 0
|
||
|
|
||
|
thickness {
|
||
|
hidden: 1
|
||
|
normal: 48
|
||
|
medium: 48
|
||
|
zoomed: 48
|
||
|
|
||
|
maxNormal: 48
|
||
|
maxMedium: 48
|
||
|
maxZoomed: 48
|
||
|
|
||
|
normalForItems: 48
|
||
|
mediumForItems: 48
|
||
|
zoomedForItems: 48
|
||
|
|
||
|
maxNormalForItems: 48
|
||
|
maxMediumForItems: 48
|
||
|
maxZoomedForItems: 48
|
||
|
}
|
||
|
}
|
||
5 years ago
|
}
|