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.
64 lines
2.1 KiB
QML
64 lines
2.1 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.7
|
||
5 years ago
|
import org.kde.plasma.plasmoid 2.0
|
||
5 years ago
|
|
||
5 years ago
|
import org.kde.latte.abilities.containers 0.1 as ContainerAbility
|
||
5 years ago
|
|
||
5 years ago
|
ContainerAbility.Metrics {
|
||
|
id: mets
|
||
5 years ago
|
property Item animations: null
|
||
|
property Item autosize: null
|
||
|
|
||
|
//! Signals
|
||
|
signal iconSizeAnimationEnded();
|
||
|
|
||
|
//! Public Properties
|
||
|
iconSize: autosizeEnabled && autosize.iconSize > 0 ?
|
||
|
Math.min(autosize.iconSize, maxIconSize) :
|
||
|
maxIconSize
|
||
|
maxIconSize: proportionIconSize!==-1 ? proportionIconSize : plasmoid.configuration.iconSize
|
||
|
|
||
|
|
||
|
//! Private Properties
|
||
|
readonly property int proportionIconSize: { //icon size based on screen height
|
||
|
if ((plasmoid.configuration.proportionIconSize===-1) || !latteView)
|
||
|
return -1;
|
||
|
|
||
|
return Math.max(16,Math.round(latteView.screenGeometry.height * plasmoid.configuration.proportionIconSize/100/8)*8);
|
||
|
}
|
||
|
|
||
|
readonly property bool autosizeEnabled: autosize !== undefined && autosize.isActive
|
||
|
|
||
|
//! Behaviors
|
||
|
Behavior on iconSize {
|
||
|
enabled: !(root.editMode && root.behaveAsPlasmaPanel)
|
||
|
NumberAnimation {
|
||
|
duration: 0.8 * animations.duration.proposed
|
||
|
|
||
|
onRunningChanged: {
|
||
|
if (!running) {
|
||
5 years ago
|
mets.iconSizeAnimationEnded();
|
||
5 years ago
|
}
|
||
|
}
|
||
|
}
|
||
5 years ago
|
}
|
||
|
}
|