summaryrefslogtreecommitdiff
path: root/src/settings/GeneralPage.qml
diff options
context:
space:
mode:
Diffstat (limited to 'src/settings/GeneralPage.qml')
-rw-r--r--src/settings/GeneralPage.qml27
1 files changed, 27 insertions, 0 deletions
diff --git a/src/settings/GeneralPage.qml b/src/settings/GeneralPage.qml
new file mode 100644
index 0000000..3324c95
--- /dev/null
+++ b/src/settings/GeneralPage.qml
@@ -0,0 +1,27 @@
+// SPDX-FileCopyrightText: 2024 Alexander Kavon <me+kue@alexkavon.com>
+// SPDX-License-Identifier: GPL-2.0-or-later
+
+pragma ComponentBehavior: Bound
+
+import QtQuick
+import org.kde.kirigamiaddons.formcard as FormCard
+
+FormCard.FormCardPage {
+ id: root
+
+ title: i18nc("@title", "General")
+
+ FormCard.FormHeader {
+ title: i18nc("@title:group", "My Group")
+ }
+
+ FormCard.FormHeader {
+ title: i18nc("@title:group", "My Group:")
+ }
+
+ FormCard.FormCard {
+ FormCard.FormTextFieldDelegate {
+ label: i18nc("@label:textbox", "My Label:")
+ }
+ }
+}