/* * Copyright 2020 Michail Vourlakos * * 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 . */ import QtQuick 2.0 import "./metrics" as MetricsTypes Item { property int iconSize: 48 property int maxIconSize: 48 property int backgroundThickness: 16 property MetricsTypes.Margin margin: MetricsTypes.Margin{ thickness: 4 maxThickness: 4 length: 4 screenEdge: 0 } 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 maxNormalForItemsWithoutScreenEdge: 48 maxZoomedForItemsWithoutScreenEdge: 48 } } }