-
Sébastien Blin authored
Change-Id: I06e84a6c71cb3ca1918a0df372ab4df950f0cbae
Sébastien Blin authoredChange-Id: I06e84a6c71cb3ca1918a0df372ab4df950f0cbae
Code owners
Assign users and groups as approvers for specific file changes. Learn more.
ToggleSwitch.qml 2.42 KiB
/*
* Copyright (C) 2019-2022 Savoir-faire Linux Inc.
* 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
import QtQuick.Controls
import QtQuick.Layouts
import net.jami.Constants 1.1
import "../../commoncomponents"
RowLayout {
id: root
property string labelText: ""
property int widthOfSwitch: 50
property int heightOfSwitch: 10
property int heightOfLayout: 30
property int fontPointSize: JamiTheme.headerFontSize
property string tooltipText: ""
property alias toggleSwitch: switchOfLayout
property alias checked: switchOfLayout.checked
signal switchToggled
Text {
Layout.fillWidth: true
Layout.preferredHeight: heightOfLayout
Layout.rightMargin: JamiTheme.preferredMarginSize
text: root.labelText
font.pointSize: fontPointSize
font.kerning: true
elide: Text.ElideRight
horizontalAlignment: Text.AlignLeft
verticalAlignment: Text.AlignVCenter
color: JamiTheme.textColor
}
JamiSwitch {
id: switchOfLayout
Layout.alignment: Qt.AlignVCenter | Qt.AlignRight
Layout.preferredWidth: widthOfSwitch
Layout.preferredHeight: heightOfSwitch
hoverEnabled: true
toolTipText: tooltipText
Accessible.role: Accessible.Button
Accessible.name: root.labelText
Accessible.description: root.tooltipText
onToggled: switchToggled()
}
TapHandler {
target: parent
enabled: parent.visible
onTapped: function onTapped(eventPoint) {
// switchToggled should be emitted as onToggled is not called (because it's only called if the user click on the switch)
switchOfLayout.checked = !switchOfLayout.checked
switchToggled()
}
}
}