mirror of
https://git.jami.net/savoirfairelinux/jami-client-qt.git
synced 2025-08-18 21:55:48 +02:00
newswarmpage: clear fields on visibility changed
This avoid to get previous text when creating a second swarm Change-Id: I86bb907cc30133432601cb59d9384758971fb331
This commit is contained in:
parent
ef6a8140ba
commit
5487a9ab43
3 changed files with 79 additions and 0 deletions
|
@ -36,6 +36,7 @@ Item {
|
||||||
property color borderColor: lineEdit.borderColor
|
property color borderColor: lineEdit.borderColor
|
||||||
property alias underlined: lineEdit.underlined
|
property alias underlined: lineEdit.underlined
|
||||||
property alias wrapMode: lineEdit.wrapMode
|
property alias wrapMode: lineEdit.wrapMode
|
||||||
|
property alias lineEdit: lineEdit
|
||||||
property alias padding: lineEdit.padding
|
property alias padding: lineEdit.padding
|
||||||
property alias echoMode: lineEdit.echoMode
|
property alias echoMode: lineEdit.echoMode
|
||||||
property string inactiveColor: JamiTheme.tintedBlue
|
property string inactiveColor: JamiTheme.tintedBlue
|
||||||
|
@ -79,6 +80,7 @@ Item {
|
||||||
|
|
||||||
function clear() {
|
function clear() {
|
||||||
lineEdit.clear()
|
lineEdit.clear()
|
||||||
|
lineEdit.focus = false
|
||||||
}
|
}
|
||||||
|
|
||||||
function toggleEchoMode(){
|
function toggleEchoMode(){
|
||||||
|
|
|
@ -37,6 +37,8 @@ Rectangle {
|
||||||
|
|
||||||
onVisibleChanged: {
|
onVisibleChanged: {
|
||||||
UtilsAdapter.setTempCreationImageFromString()
|
UtilsAdapter.setTempCreationImageFromString()
|
||||||
|
title.clear()
|
||||||
|
description.clear()
|
||||||
}
|
}
|
||||||
|
|
||||||
property var members: []
|
property var members: []
|
||||||
|
@ -115,6 +117,7 @@ Rectangle {
|
||||||
|
|
||||||
ColumnLayout {
|
ColumnLayout {
|
||||||
id: mainLayout
|
id: mainLayout
|
||||||
|
objectName: "mainLayout"
|
||||||
anchors.centerIn: root
|
anchors.centerIn: root
|
||||||
|
|
||||||
PhotoboothView {
|
PhotoboothView {
|
||||||
|
@ -133,6 +136,7 @@ Rectangle {
|
||||||
|
|
||||||
EditableLineEdit {
|
EditableLineEdit {
|
||||||
id: title
|
id: title
|
||||||
|
objectName: "titleLineEdit"
|
||||||
Layout.alignment: Qt.AlignCenter
|
Layout.alignment: Qt.AlignCenter
|
||||||
Layout.topMargin: JamiTheme.preferredMarginSize
|
Layout.topMargin: JamiTheme.preferredMarginSize
|
||||||
Layout.preferredWidth: JamiTheme.preferredFieldWidth
|
Layout.preferredWidth: JamiTheme.preferredFieldWidth
|
||||||
|
@ -166,6 +170,7 @@ Rectangle {
|
||||||
|
|
||||||
EditableLineEdit {
|
EditableLineEdit {
|
||||||
id: description
|
id: description
|
||||||
|
objectName: "descriptionLineEdit"
|
||||||
Layout.alignment: Qt.AlignCenter
|
Layout.alignment: Qt.AlignCenter
|
||||||
Layout.topMargin: JamiTheme.preferredMarginSize
|
Layout.topMargin: JamiTheme.preferredMarginSize
|
||||||
Layout.preferredWidth: JamiTheme.preferredFieldWidth
|
Layout.preferredWidth: JamiTheme.preferredFieldWidth
|
||||||
|
|
72
tests/qml/src/tst_NewSwarmPage.qml
Normal file
72
tests/qml/src/tst_NewSwarmPage.qml
Normal file
|
@ -0,0 +1,72 @@
|
||||||
|
/*
|
||||||
|
* Copyright (C) 2022 Savoir-faire Linux Inc.
|
||||||
|
*
|
||||||
|
* 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 <https://www.gnu.org/licenses/>.
|
||||||
|
*/
|
||||||
|
|
||||||
|
import QtQuick
|
||||||
|
import QtQuick.Controls
|
||||||
|
import QtQuick.Layouts
|
||||||
|
|
||||||
|
import QtTest
|
||||||
|
|
||||||
|
import net.jami.Models 1.1
|
||||||
|
import net.jami.Constants 1.1
|
||||||
|
|
||||||
|
import "../../../src/app/mainview/components"
|
||||||
|
|
||||||
|
ColumnLayout {
|
||||||
|
id: root
|
||||||
|
|
||||||
|
spacing: 0
|
||||||
|
|
||||||
|
width: 300
|
||||||
|
height: 300
|
||||||
|
|
||||||
|
NewSwarmPage {
|
||||||
|
id: uut
|
||||||
|
|
||||||
|
Layout.alignment: Qt.AlignHCenter
|
||||||
|
Layout.preferredWidth: root.width
|
||||||
|
Layout.maximumWidth: JamiTheme.chatViewMaximumWidth
|
||||||
|
Layout.preferredHeight: root.height
|
||||||
|
|
||||||
|
TestCase {
|
||||||
|
name: "Check Focus for NewSwarmPage"
|
||||||
|
when: windowShown
|
||||||
|
|
||||||
|
function test_focus_new_swarm_page() {
|
||||||
|
// Add animated image file
|
||||||
|
var title = findChild(uut, "titleLineEdit")
|
||||||
|
var description = findChild(uut, "descriptionLineEdit")
|
||||||
|
|
||||||
|
// Fill Title & Description
|
||||||
|
title.text = "Title"
|
||||||
|
description.text = "description"
|
||||||
|
compare(title.text, "Title")
|
||||||
|
compare(description.text, "description")
|
||||||
|
|
||||||
|
// Hide & Show window
|
||||||
|
uut.visible = false
|
||||||
|
uut.visible = true
|
||||||
|
|
||||||
|
compare(title.focus, false)
|
||||||
|
compare(title.text, "")
|
||||||
|
compare(description.focus, false)
|
||||||
|
compare(description.text, "")
|
||||||
|
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
Loading…
Add table
Reference in a new issue