mirror of
https://gitlab.linphone.org/BC/public/linphone-desktop.git
synced 2026-01-18 20:08:11 +00:00
40 lines
1.1 KiB
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')
|
|
|
|
// ---------------------------------------------------------------------------
|
|
// 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')
|
|
}
|
|
}
|
|
}
|