File: MessageDialog.qml

package info (click to toggle)
qzxing 3.3.0%2Bdfsg-8
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 3,172 kB
  • sloc: cpp: 28,658; makefile: 29
file content (23 lines) | stat: -rw-r--r-- 497 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
import QtQuick 1.1
import com.nokia.symbian 1.1

CommonDialog {
    id: dialog
    titleText: "Decoded message"
    //titleIcon: "images/QrButton_toolbar.svg"
    buttonTexts: ["OK"]

    property alias text: messageLabel.text

    content: Rectangle {
        height: messageLabel.height
        width: messageLabel.width
        color: "#ff000000"
        anchors.horizontalCenter: parent.horizontalCenter

        Text{
            id: messageLabel
            color: "white"
        }
    }
}