Advertisement
Guest User

problem

a guest
Jul 16th, 2012
149
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <!-- Please download and rename file to problem.ui and open with qt designer -->
  3. <ui version="4.0">
  4.  <class>Dialog</class>
  5.  <widget class="QDialog" name="Dialog">
  6.   <property name="geometry">
  7.    <rect>
  8.     <x>0</x>
  9.     <y>0</y>
  10.     <width>400</width>
  11.     <height>300</height>
  12.    </rect>
  13.   </property>
  14.   <property name="windowTitle">
  15.    <string>Dialog</string>
  16.   </property>
  17.   <property name="styleSheet">
  18.    <string notr="true">#Dialog{
  19.     background-color: rgb(47, 255, 158);
  20. }</string>
  21.   </property>
  22.   <layout class="QHBoxLayout" name="horizontalLayout">
  23.    <item>
  24.     <widget class="QWebView" name="webView">
  25.      <property name="url">
  26.       <url>
  27.        <string>about:blank</string>
  28.       </url>
  29.      </property>
  30.     </widget>
  31.    </item>
  32.   </layout>
  33.  </widget>
  34.  <customwidgets>
  35.   <customwidget>
  36.    <class>QWebView</class>
  37.    <extends>QWidget</extends>
  38.    <header>QtWebKit/QWebView</header>
  39.   </customwidget>
  40.  </customwidgets>
  41.  <resources/>
  42.  <connections/>
  43. </ui>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement