Advertisement
Guest User

Untitled

a guest
Aug 10th, 2013
98
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. import QtQuick 2.1
  2. import QtQuick.Controls 1.0
  3. import QtQuick.Window 2.0
  4. import QtWebKit 3.0
  5.  
  6. ApplicationWindow {
  7.     title: "qml"
  8.     width: 640
  9.     height: 480
  10.  
  11.     WebView {
  12.         anchors.fill: parent
  13.         url: "http://bbc.co.uk"
  14.     }
  15.  
  16.     Dialog {
  17.         id: dialog
  18.         title: 'Absolute Center.'
  19.         message1: 'This box is absolutely centered within the viewport, horizontally and vertically, using only QML.'
  20.         message2: 'Click me to learn more.'
  21.         onClicked: {
  22.             dialog.hide();
  23.         }
  24.     }
  25. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement