Warning, /education/marble/src/plasma/applets/worldclock/package/contents/ui/configTimeZones.qml is written in an unsupported language. File is not indexed.

0001 /*
0002     SPDX-FileCopyrightText: 2016 Friedrich W. H. Kossebau <kossebau@kde.org>
0003     SPDX-License-Identifier: LGPL-2.1-or-later
0004 */
0005 
0006 import QtQuick 2.1
0007 import QtQuick.Controls 1.0 as QtControls
0008 import QtQuick.Layouts 1.0
0009 
0010 ColumnLayout {
0011     id: timeZonesPage
0012 
0013     property alias cfg_customTimeZone: customTimeZoneCheckBox.checked
0014 
0015     RowLayout {
0016         QtControls.Label {
0017             text: i18n("Use custom time zone selection:")
0018         }
0019 
0020         QtControls.CheckBox {
0021             id: customTimeZoneCheckBox
0022         }
0023     }
0024 
0025     QtControls.TableView {
0026         id: timeZoneView
0027         Layout.fillHeight: true
0028     }
0029 }
0030