blob: ce8f73608a22b67d34f861dd20d9958a636bc25e [file] [log] [blame]
/**
* Copyright (C) 2019-2020 by Savoir-faire Linux
* Author: Aline Gondim Santos <aline.gondimsantos@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: root
property string pluginName : ""
property string pluginId: ""
property string pluginIcon: ""
property bool isLoaded: false
signal btnLoadPluginToggled
signal btnPreferencesPluginClicked
RowLayout{
anchors.fill: parent
Label{
id: pluginImage
Layout.leftMargin: 8
Layout.alignment: Qt.AlignLeft | Qt.AlingVCenter
width: 30
background: Rectangle{
Image {
anchors.centerIn: parent
source: "file:"+pluginIcon
width: 30
height: 30
}
}
}
Label{
id: labelDeviceId
Layout.fillWidth: true
Layout.leftMargin: 8
font.pointSize: JamiTheme.settingsFontSize
font.kerning: true
text: pluginName === "" ? pluginId : pluginName
}
Switch {
id: loadSwitch
property bool isHovering: false
Layout.rightMargin: 8
width: 20
ToolTip.visible: hovered
ToolTip.text: {
return qsTr("Load/Unload")
}
checked: isLoaded
onClicked: {
btnLoadPluginToggled()
}
background: Rectangle {
id: switchBackground
MouseArea {
id: btnMouseArea
hoverEnabled: true
onPressed: {
}
onReleased: {
loadSwitch.clicked()
}
onEntered: {
loadSwitch.isHovering = true
}
onExited: {
loadSwitch.isHovering = false
}
}
}
}
HoverableRadiusButton{
id: btnPreferencesPlugin
backgroundColor: "white"
Layout.alignment: Qt.AlingVCenter | Qt.AlignRight
Layout.rightMargin: 8
Layout.preferredHeight: 25
buttonImageHeight: height
buttonImageWidth: height
source:{
return "qrc:/images/icons/round-settings-24px.svg"
}
ToolTip.visible: hovered
ToolTip.text: qsTr("Show preferences")
onClicked: btnPreferencesPluginClicked()
}
}
}