Advertisement
gregwa

FCM 73 - pytest1.ui

May 10th, 2013
581
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
XML 2.02 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>500</width>
  10.     <height>350</height>
  11.    </rect>
  12.   </property>
  13.   <property name="windowTitle">
  14.    <string>Python Test1</string>
  15.   </property>
  16.   <widget class="QWidget" name="centralwidget">
  17.    <widget class="QPushButton" name="btnExit">
  18.     <property name="geometry">
  19.      <rect>
  20.       <x>200</x>
  21.       <y>260</y>
  22.       <width>97</width>
  23.       <height>27</height>
  24.      </rect>
  25.     </property>
  26.     <property name="text">
  27.      <string>Exit</string>
  28.     </property>
  29.    </widget>
  30.    <widget class="QPushButton" name="btnClickMe">
  31.     <property name="geometry">
  32.      <rect>
  33.       <x>200</x>
  34.       <y>200</y>
  35.       <width>97</width>
  36.       <height>27</height>
  37.      </rect>
  38.     </property>
  39.     <property name="text">
  40.      <string>Click Me!</string>
  41.     </property>
  42.    </widget>
  43.    <widget class="QLabel" name="lblDisplay">
  44.     <property name="geometry">
  45.      <rect>
  46.       <x>140</x>
  47.       <y>130</y>
  48.       <width>221</width>
  49.       <height>20</height>
  50.      </rect>
  51.     </property>
  52.     <property name="text">
  53.      <string/>
  54.     </property>
  55.     <property name="alignment">
  56.      <set>Qt::AlignCenter</set>
  57.     </property>
  58.    </widget>
  59.   </widget>
  60.   <widget class="QMenuBar" name="menubar">
  61.    <property name="geometry">
  62.     <rect>
  63.      <x>0</x>
  64.      <y>0</y>
  65.      <width>500</width>
  66.      <height>25</height>
  67.     </rect>
  68.    </property>
  69.   </widget>
  70.   <widget class="QStatusBar" name="statusbar"/>
  71.  </widget>
  72.  <resources/>
  73.  <connections>
  74.   <connection>
  75.    <sender>btnExit</sender>
  76.    <signal>clicked()</signal>
  77.    <receiver>MainWindow</receiver>
  78.    <slot>close()</slot>
  79.    <hints>
  80.     <hint type="sourcelabel">
  81.      <x>262</x>
  82.      <y>304</y>
  83.     </hint>
  84.     <hint type="destinationlabel">
  85.      <x>361</x>
  86.      <y>268</y>
  87.     </hint>
  88.    </hints>
  89.   </connection>
  90.  </connections>
  91. </ui>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement