From 7e629aee4795127c323551e153349bf904166717 Mon Sep 17 00:00:00 2001 From: Benny Prijono Date: Mon, 15 Apr 2013 10:47:28 +0000 Subject: Re #1657, #1655: initial implementation of pjsua CLI app for BlackBerry BB10 git-svn-id: http://svn.pjsip.org/repos/pjproject/trunk@4471 74dad513-b988-da41-8d7b-12977e46ad98 --- pjsip-apps/src/pjsua/bb10/assets/main.qml | 41 +++++++++++++++++++++++++++++++ 1 file changed, 41 insertions(+) create mode 100644 pjsip-apps/src/pjsua/bb10/assets/main.qml (limited to 'pjsip-apps/src/pjsua/bb10/assets/main.qml') diff --git a/pjsip-apps/src/pjsua/bb10/assets/main.qml b/pjsip-apps/src/pjsua/bb10/assets/main.qml new file mode 100644 index 00000000..dc3f7f34 --- /dev/null +++ b/pjsip-apps/src/pjsua/bb10/assets/main.qml @@ -0,0 +1,41 @@ +// Default empty project template +import bb.cascades 1.0 + +// creates one page with a label +Page { + Container { + layout: StackLayout { + } + background: Color.Black + Label { + text: qsTr("") + horizontalAlignment: HorizontalAlignment.Center + } + ImageView { + imageSource: "asset:///images/teluu-logo.png" + topMargin: 200 + preferredWidth: 500 + preferredHeight: 500 + verticalAlignment: VerticalAlignment.Center + horizontalAlignment: HorizontalAlignment.Center + } + Label { + text: qsTr("pjsua BB10") + textStyle.base: SystemDefaults.TextStyles.BigText + horizontalAlignment: HorizontalAlignment.Center + textStyle { + color: Color.White + } + } + Label { + objectName: "telnetMsg" + text: qsTr("Starting..") + topMargin: 200 + horizontalAlignment: HorizontalAlignment.Center + textStyle { + color: Color.White + } + } + } +} + -- cgit v1.2.3