kimitake

InfoBanner

Dec 9th, 2011
61
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.50 KB | None | 0 0
  1. import QtQuick 1.1
  2. import com.nokia.meego 1.0
  3. import com.nokia.extras 1.0
  4.  
  5. Rectangle {
  6. width: 360
  7. height: 360
  8. color: "black"
  9. Text {
  10. text: qsTr("Hello World")
  11. anchors.centerIn: parent
  12. color: "white"
  13. }
  14.  
  15. InfoBanner {
  16. id: info
  17. text: "バルス!"
  18. iconSource: "barusu.png"
  19. }
  20.  
  21. MouseArea {
  22. anchors.fill: parent
  23. onClicked: {
  24. //Qt.quit();
  25. info.show();
  26. }
  27. }
  28. }
  29.  
  30.  
Advertisement
Add Comment
Please, Sign In to add comment