You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
49 lines
2.4 KiB
49 lines
2.4 KiB
|
|
|
|
/*************************************************************************** |
|
* Copyright (C) 2020 Konrad Materka <materka@gmail.com> * |
|
* * |
|
* This program is free software; you can redistribute it and/or modify * |
|
* it under the terms of the GNU General Public License as published by * |
|
* the Free Software Foundation; either version 2 of the License, or * |
|
* (at your option) any later version. * |
|
* * |
|
* This program is distributed in the hope that it will be useful, * |
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of * |
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * |
|
* GNU General Public License for more details. * |
|
* * |
|
* You should have received a copy of the GNU General Public License * |
|
* along with this program; if not, write to the * |
|
* Free Software Foundation, Inc., * |
|
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA . * |
|
***************************************************************************/ |
|
import QtQuick 2.14 |
|
import QtQuick.Controls 2.14 as QQC2 |
|
|
|
import org.kde.plasma.core 2.1 as PlasmaCore |
|
|
|
import org.kde.kirigami 2.13 as Kirigami |
|
|
|
Kirigami.FormLayout { |
|
|
|
property alias cfg_automaticRowsOrColumns: automaticRadioButton.checked |
|
property int cfg_rowsOrColumns |
|
|
|
QQC2.RadioButton { |
|
id: automaticRadioButton |
|
Kirigami.FormData.label: i18nc("The arrangement of system tray icons in the Panel", "Panel icon arrangement:") |
|
text: plasmoid.formFactor === PlasmaCore.Types.Horizontal ? |
|
i18n("Adapt to Panel height") : i18n("Adapt to Panel width") |
|
} |
|
QQC2.RadioButton { |
|
text: plasmoid.formFactor === PlasmaCore.Types.Horizontal ? i18n("One row") : i18n("One column") |
|
checked: !automaticRadioButton.checked && cfg_rowsOrColumns === 1 |
|
onClicked: cfg_rowsOrColumns = 1 |
|
} |
|
QQC2.RadioButton { |
|
text: plasmoid.formFactor === PlasmaCore.Types.Horizontal ? i18n("Two rows") : i18n("Two columns") |
|
checked: !automaticRadioButton.checked && cfg_rowsOrColumns === 2 |
|
onClicked: cfg_rowsOrColumns = 2 |
|
} |
|
}
|
|
|