Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- import QtQuick 1.1
- import com.nokia.meego 1.0
- import com.nokia.extras 1.0
- Rectangle {
- width: 360
- height: 360
- color: "black"
- Text {
- text: qsTr("Hello World")
- anchors.centerIn: parent
- color: "white"
- }
- InfoBanner {
- id: info
- text: "バルス!"
- iconSource: "barusu.png"
- }
- MouseArea {
- anchors.fill: parent
- onClicked: {
- //Qt.quit();
- info.show();
- }
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment