summaryrefslogtreecommitdiff
path: root/pjsip-apps/src/pjsua/bb10/assets/main.qml
blob: dc3f7f34ac5306b95a462a8d2e28a3ed521fe253 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
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
            }
        }
    }
}