/* Copyright (C) 2011 by Cuong Le This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program. If not, see */ import QtQuick 1.0 Item{ id: item1 Rectangle { id: rectangle1 x: 0 y: -16 anchors.centerIn: parent width:344 height: 234 radius: 4 gradient: Gradient { GradientStop { position: 0 color: "#ffffff" } GradientStop { position: 0.97 color: "#ffffff" } GradientStop { position: 0.04 color: "#aca4c6" } } border.color: "#f3e3e8" visible: true opacity:0.9 Button { id: button2 x: 102 anchors.right: parent.right; anchors.rightMargin: 102; y: 185; width: 140; height: 40 text: "OK" onClicked: {screen.state="mainscreen"} } Button { id: button3 x: 298 y: 6 width: 39 height: 40 text: "X" anchors.rightMargin: 56 onClicked: {screen.state="mainscreen"} } Text { id: text1 x: 132 y: 100 width: 80 height: 20 color: "#12347e" text: "Chức năng này hiện chưa có !" font.strikeout: false horizontalAlignment: Text.AlignHCenter font.pixelSize: 22 } } transitions: [ Transition { NumberAnimation { properties: "x,y,opacity"; duration: 500; easing.type: Easing.InOutBack } } ] }