Advertisement
ekhumoro

Calculator UI

Dec 25th, 2011
378
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
XML 1.53 KB | None | 0 0
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <ui version="4.0">
  3.  <class>CalculatorUI</class>
  4.  <widget class="QWidget" name="CalculatorUI">
  5.   <property name="geometry">
  6.    <rect>
  7.     <x>0</x>
  8.     <y>0</y>
  9.     <width>219</width>
  10.     <height>134</height>
  11.    </rect>
  12.   </property>
  13.   <property name="windowTitle">
  14.    <string>Calculator</string>
  15.   </property>
  16.   <layout class="QGridLayout" name="gridLayout">
  17.    <item row="0" column="0">
  18.     <widget class="QLabel" name="labelX">
  19.      <property name="text">
  20.       <string>X:</string>
  21.      </property>
  22.     </widget>
  23.    </item>
  24.    <item row="0" column="1">
  25.     <widget class="QLineEdit" name="lineEditX"/>
  26.    </item>
  27.    <item row="1" column="0">
  28.     <widget class="QLabel" name="labelY">
  29.      <property name="text">
  30.       <string>Y:</string>
  31.      </property>
  32.     </widget>
  33.    </item>
  34.    <item row="1" column="1">
  35.     <widget class="QLineEdit" name="lineEditY"/>
  36.    </item>
  37.    <item row="2" column="0">
  38.     <widget class="QLabel" name="labelZ">
  39.      <property name="text">
  40.       <string>Z:</string>
  41.      </property>
  42.     </widget>
  43.    </item>
  44.    <item row="2" column="1">
  45.     <widget class="QLineEdit" name="lineEditZ">
  46.      <property name="readOnly">
  47.       <bool>true</bool>
  48.      </property>
  49.     </widget>
  50.    </item>
  51.    <item row="3" column="0" colspan="2">
  52.     <widget class="QPushButton" name="buttonCalc">
  53.      <property name="text">
  54.       <string>Calculate</string>
  55.      </property>
  56.     </widget>
  57.    </item>
  58.   </layout>
  59.  </widget>
  60.  <resources/>
  61.  <connections/>
  62. </ui>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement