Warning, /plasma/plasma-workspace/applets/analog-clock/contents/ui/configGeneral.qml is written in an unsupported language. File is not indexed.
0001 /*
0002 SPDX-FileCopyrightText: 2013 David Edmundson <davidedmundson@kde.org>
0003
0004 SPDX-License-Identifier: GPL-2.0-or-later
0005 */
0006
0007 import QtQuick 2.0
0008 import QtQuick.Controls 2.0
0009 import org.kde.kirigami 2.5 as Kirigami
0010 import org.kde.kcmutils as KCM
0011
0012 KCM.SimpleKCM {
0013 property alias cfg_showSecondHand: showSecondHandCheckBox.checked
0014 property alias cfg_showTimezoneString: showTimezoneCheckBox.checked
0015
0016 Kirigami.FormLayout {
0017 CheckBox {
0018 id: showSecondHandCheckBox
0019 text: i18n("Show seconds hand")
0020 Kirigami.FormData.label: i18n("General:")
0021 }
0022 CheckBox {
0023 id: showTimezoneCheckBox
0024 text: i18n("Show time zone")
0025 }
0026 }
0027 }