blob: 88574f27c1c13ce9a87e129acfce86714f6c9efd [file] [log] [blame]
/*
* Copyright (C) 2019-2020 by Savoir-faire Linux
* Author: Yang Wang <yang.wang@savoirfairelinux.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 3 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, see <http://www.gnu.org/licenses/>.
*/
import QtQuick 2.15
import QtQuick.Window 2.15
import QtQuick.Controls 2.15
import QtQuick.Controls.Universal 2.12
import QtQuick.Layouts 1.3
import QtGraphicalEffects 1.14
import QtQuick.Controls.Styles 1.4
import net.jami.Models 1.0
import "../../commoncomponents"
ItemDelegate {
id: preferenceItemDelegate
property string preferenceKey: ""
property string preferenceName: ""
property string preferenceSummary: ""
property int preferenceType: -1
property string preferenceDefaultValue: ""
property var preferenceEntries: []
property var preferenceEntryValues: []
property string preferenceNewValue: ""
signal btnPreferenceClicked
highlighted: ListView.isCurrentItem
RowLayout{
anchors.fill: parent
ColumnLayout{
Layout.fillWidth: true
Layout.fillHeight: true
Layout.topMargin: 7
Layout.bottomMargin: 7
Layout.leftMargin: 7
Layout.minimumHeight: 30
Label{
Layout.minimumHeight: 10
width: 320 - 36
font.pointSize: 10
font.kerning: true
font.bold: true
text: preferenceName
}
}
HoverableRadiusButton{
id: btnPreference
Layout.alignment: Qt.AlignRight
Layout.bottomMargin: 7
Layout.rightMargin: 7
Layout.minimumWidth: 30
Layout.preferredWidth: 30
Layout.maximumWidth: 30
Layout.minimumHeight: 30
Layout.preferredHeight: 30
Layout.maximumHeight: 30
buttonImageHeight: height
buttonImageWidth: height
source:{
return "qrc:/images/icons/round-settings-24px.svg"
}
ToolTip.visible: isHovering
ToolTip.text: {
return qsTr("Modify preference")
}
onClicked: {
btnPreferenceClicked()
}
}
}
}