1import QtQuick 2.12
2import QtQuick.Controls 2.15
3import org.kde.kirigami 2.5 as Kirigami
4import org.kde.kquickcontrolsaddons 2.0
5
6Kirigami.FormLayout {
7    property alias cfg_showFlag: showFlag.checked
8
9    RadioButton {
10            text: i18n("Show label")
11            checked: true
12    }
13    RadioButton {
14            text: i18n("Show flag")
15            id: showFlag
16    }
17
18    Button {
19       text: i18n("Layout Settings")
20       onClicked: {
21         KCMShell.openSystemSettings("kcm_keyboard", "--tab=layouts");
22       }
23    }
24}
25