linphone-desktop/ui/views/App/Main/Assistant/CreateLinphoneSipAccount.qml

40 lines
1.1 KiB
QML

import QtQuick 2.7
import Common 1.0
import App.Styles 1.0
// =============================================================================
AssistantAbstractView {
description: qsTr('createLinphoneSipAccountDescription')
title: qsTr('createLinphoneSipAccountTitle').replace('%1', Qt.application.name.toUpperCase())
// ---------------------------------------------------------------------------
// Menu.
// ---------------------------------------------------------------------------
Column {
anchors.centerIn: parent
spacing: CreateLinphoneSipAccountStyle.buttons.spacing
width: CreateLinphoneSipAccountStyle.buttons.button.width
TextButtonA {
text: qsTr('withPhoneNumber')
height: CreateLinphoneSipAccountStyle.buttons.button.height
width: parent.width
onClicked: assistant.pushView('CreateLinphoneSipAccountWithPhoneNumber')
}
TextButtonA {
text: qsTr('withEmailAddress')
height: CreateLinphoneSipAccountStyle.buttons.button.height
width: parent.width
onClicked: assistant.pushView('CreateLinphoneSipAccountWithEmail')
}
}
}