mirror of
https://github.com/zxing/zxing.git
synced 2025-02-02 05:41:08 -08:00
f78c18671b
By V1.2 support to Aztec codes is added. It now fully supports Qt Quick. Symbian Examples are updated to comply with the changes. git-svn-id: https://zxing.googlecode.com/svn/trunk@2296 59b500cc-1b3d-0410-9834-0bbf25fbcc57
24 lines
520 B
QML
24 lines
520 B
QML
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"
|
|
}
|
|
}
|
|
}
|