Advertisement
Guest User

qml that matches...

a guest
Aug 13th, 2011
165
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.59 KB | None | 0 0
  1. Page {
  2. Rectangle {
  3. color: "#00aaff"
  4. id: headerRect
  5. width: 854
  6. height: 72
  7. Text
  8. {
  9. color: "#ffffff"
  10. font.pointSize: 24
  11. x: 12
  12. y: 20
  13. font.weight: Font.Light
  14. text: "Orbiter"
  15. }
  16. }
  17. Flickable {
  18. anchors.fill: parent
  19. flickableDirection: Flickable.VerticalFlick
  20. Flow {
  21. anchors.margins: 16
  22. anchors.topMargin: 84
  23. spacing: 16
  24. id: mainFlow
  25. anchors.fill: parent
  26. Image {
  27. id: splashImage
  28. source: "../../../img/LinuxMCE.png"
  29. }
  30. Flow {
  31. anchors.margins: 16
  32. flow: Flow.TopToBottom
  33. spacing: 16
  34. Label {
  35. verticalAlignment: Text.AlignVCenter
  36. text: "Router Address:"
  37. }
  38. TextField {
  39. id: sIPAddress
  40. text: "192.168.80.1"
  41. width: 350
  42. }
  43. Label {
  44. verticalAlignment: Text.AlignVCenter
  45. text: "Device ID:"
  46. }
  47. TextField {
  48. id: sDeviceID
  49. text: "90"
  50. width: 350
  51. }
  52. Button {
  53. id: buttonConnect
  54. text: "Connect"
  55. width: 350
  56. }
  57. }
  58. }
  59. }
  60. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement