import QtQuick 2.12 import QtQuick.Window 2.12 import QtQuick.Controls 2.0 import QtQuick.Layouts 1.0 Popup { id: enctype modal: true anchors.centerIn: parent RowLayout { Label { text: qsTr("Select encryption") + ":" } ComboBox { id: enccombo model: ListModel { ListElement { text: qsTr("Unencrypted") } ListElement { text: "OMEMO" } } } } }