zxing/symbian/QZXing/examples/QMLBarcodeScanner/MessageDialog.qml
ftylitak@gmail.com f78c18671b Latest update at Qt based ZXing wrapper => QZXing V1.2. Supports Windows Mingw compiler, Symbian, Maemo-Harmattan.
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
2012-05-19 16:14:45 +00:00

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"
}
}
}