Advertisement
InAndOutLand

Mainwindow.ui -- InAndOutLand

Mar 15th, 2013
78
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
XML 2.84 KB | None | 0 0
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <ui version="4.0">
  3.  <class>MainWindow</class>
  4.  <widget class="QMainWindow" name="MainWindow">
  5.   <property name="geometry">
  6.    <rect>
  7.     <x>0</x>
  8.     <y>0</y>
  9.     <width>773</width>
  10.     <height>454</height>
  11.    </rect>
  12.   </property>
  13.   <property name="windowTitle">
  14.    <string>Neo</string>
  15.   </property>
  16.   <widget class="QWidget" name="centralWidget">
  17.    <widget class="QWidget" name="layoutWidget">
  18.     <property name="geometry">
  19.      <rect>
  20.       <x>0</x>
  21.       <y>0</y>
  22.       <width>802</width>
  23.       <height>631</height>
  24.      </rect>
  25.     </property>
  26.     <layout class="QGridLayout" name="gridLayout">
  27.      <item row="0" column="0">
  28.       <widget class="QPushButton" name="pushButton">
  29.        <property name="text">
  30.         <string>&lt;</string>
  31.        </property>
  32.       </widget>
  33.      </item>
  34.      <item row="0" column="1">
  35.       <widget class="QPushButton" name="pushButton_2">
  36.        <property name="text">
  37.         <string>&gt;</string>
  38.        </property>
  39.       </widget>
  40.      </item>
  41.      <item row="0" column="2">
  42.       <widget class="QLineEdit" name="lineEdit"/>
  43.      </item>
  44.      <item row="1" column="0" colspan="3">
  45.       <widget class="QWebView" name="webView">
  46.        <property name="url">
  47.         <url>
  48.          <string>http://www.google.com/</string>
  49.         </url>
  50.        </property>
  51.       </widget>
  52.      </item>
  53.     </layout>
  54.    </widget>
  55.   </widget>
  56.   <widget class="QMenuBar" name="menuBar">
  57.    <property name="geometry">
  58.     <rect>
  59.      <x>0</x>
  60.      <y>0</y>
  61.      <width>773</width>
  62.      <height>21</height>
  63.     </rect>
  64.    </property>
  65.   </widget>
  66.   <widget class="QToolBar" name="mainToolBar">
  67.    <attribute name="toolBarArea">
  68.     <enum>TopToolBarArea</enum>
  69.    </attribute>
  70.    <attribute name="toolBarBreak">
  71.     <bool>false</bool>
  72.    </attribute>
  73.   </widget>
  74.   <widget class="QStatusBar" name="statusBar"/>
  75.  </widget>
  76.  <layoutdefault spacing="6" margin="11"/>
  77.  <customwidgets>
  78.   <customwidget>
  79.    <class>QWebView</class>
  80.    <extends>QWidget</extends>
  81.    <header>QtWebKitWidgets/QWebView</header>
  82.   </customwidget>
  83.  </customwidgets>
  84.  <resources/>
  85.  <connections>
  86.   <connection>
  87.    <sender>pushButton</sender>
  88.    <signal>clicked()</signal>
  89.    <receiver>webView</receiver>
  90.    <slot>back()</slot>
  91.    <hints>
  92.     <hint type="sourcelabel">
  93.      <x>19</x>
  94.      <y>47</y>
  95.     </hint>
  96.     <hint type="destinationlabel">
  97.      <x>63</x>
  98.      <y>196</y>
  99.     </hint>
  100.    </hints>
  101.   </connection>
  102.   <connection>
  103.    <sender>pushButton_2</sender>
  104.    <signal>clicked()</signal>
  105.    <receiver>webView</receiver>
  106.    <slot>forward()</slot>
  107.    <hints>
  108.     <hint type="sourcelabel">
  109.      <x>106</x>
  110.      <y>44</y>
  111.     </hint>
  112.     <hint type="destinationlabel">
  113.      <x>108</x>
  114.      <y>162</y>
  115.     </hint>
  116.    </hints>
  117.   </connection>
  118.  </connections>
  119. </ui>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement