mirror of
https://gitgud.io/wackyideas/aerothemeplasma.git
synced 2024-08-15 00:43:43 +00:00
36 lines
783 B
QML
36 lines
783 B
QML
|
/*
|
||
|
SPDX-FileCopyrightText: 2014-2015 Eike Hein <hein@kde.org>
|
||
|
|
||
|
SPDX-License-Identifier: GPL-2.0-or-later
|
||
|
*/
|
||
|
|
||
|
import QtQuick 2.0
|
||
|
|
||
|
import org.kde.plasma.plasmoid 2.0
|
||
|
import org.kde.plasma.configuration 2.0
|
||
|
|
||
|
ConfigModel {
|
||
|
property bool isFolder: (plasmoid.pluginName === "org.kde.plasma.folder")
|
||
|
|
||
|
ConfigCategory {
|
||
|
name: i18n("Location")
|
||
|
icon: "folder"
|
||
|
source: "ConfigLocation.qml"
|
||
|
visible: isFolder
|
||
|
}
|
||
|
|
||
|
ConfigCategory {
|
||
|
name: i18n("Icons")
|
||
|
icon: "preferences-desktop-icons"
|
||
|
source: "ConfigIcons.qml"
|
||
|
visible: isFolder
|
||
|
}
|
||
|
|
||
|
ConfigCategory {
|
||
|
name: i18n("Filter")
|
||
|
icon: "preferences-desktop-filter"
|
||
|
source: "ConfigFilter.qml"
|
||
|
visible: isFolder
|
||
|
}
|
||
|
}
|