Skip to content

Commit

Permalink
Test UI added
Browse files Browse the repository at this point in the history
  • Loading branch information
bytesByHarsh committed Aug 3, 2021
0 parents commit 2b8faf4
Showing 1 changed file with 138 additions and 0 deletions.
138 changes: 138 additions & 0 deletions PyQt/test.ui
Original file line number Diff line number Diff line change
@@ -0,0 +1,138 @@
<?xml version="1.0" encoding="UTF-8"?>
<ui version="4.0">
<class>MainWindow</class>
<widget class="QMainWindow" name="MainWindow">
<property name="geometry">
<rect>
<x>0</x>
<y>0</y>
<width>675</width>
<height>304</height>
</rect>
</property>
<property name="windowTitle">
<string>MainWindow</string>
</property>
<widget class="QWidget" name="centralwidget">
<widget class="QPushButton" name="okButton">
<property name="geometry">
<rect>
<x>40</x>
<y>180</y>
<width>71</width>
<height>28</height>
</rect>
</property>
<property name="text">
<string>OK</string>
</property>
</widget>
<widget class="QPushButton" name="closeButton">
<property name="geometry">
<rect>
<x>130</x>
<y>180</y>
<width>93</width>
<height>28</height>
</rect>
</property>
<property name="text">
<string>Close</string>
</property>
</widget>
<widget class="QLabel" name="label">
<property name="geometry">
<rect>
<x>250</x>
<y>0</y>
<width>171</width>
<height>51</height>
</rect>
</property>
<property name="font">
<font>
<pointsize>17</pointsize>
</font>
</property>
<property name="text">
<string>Test Window</string>
</property>
</widget>
<widget class="QTextEdit" name="textEdit">
<property name="geometry">
<rect>
<x>40</x>
<y>50</y>
<width>191</width>
<height>121</height>
</rect>
</property>
</widget>
<widget class="QSlider" name="testSlider">
<property name="geometry">
<rect>
<x>450</x>
<y>160</y>
<width>160</width>
<height>16</height>
</rect>
</property>
<property name="orientation">
<enum>Qt::Horizontal</enum>
</property>
</widget>
<widget class="QCheckBox" name="option1CheckBox">
<property name="geometry">
<rect>
<x>260</x>
<y>60</y>
<width>71</width>
<height>20</height>
</rect>
</property>
<property name="text">
<string>Option 1</string>
</property>
</widget>
<widget class="QProgressBar" name="progressBar">
<property name="geometry">
<rect>
<x>40</x>
<y>230</y>
<width>611</width>
<height>23</height>
</rect>
</property>
<property name="value">
<number>24</number>
</property>
</widget>
<widget class="QCheckBox" name="option2CheckBox">
<property name="geometry">
<rect>
<x>260</x>
<y>90</y>
<width>75</width>
<height>20</height>
</rect>
</property>
<property name="text">
<string>Option 2</string>
</property>
</widget>
</widget>
<widget class="QMenuBar" name="menubar">
<property name="geometry">
<rect>
<x>0</x>
<y>0</y>
<width>675</width>
<height>26</height>
</rect>
</property>
</widget>
<widget class="QStatusBar" name="statusbar"/>
</widget>
<resources/>
<connections/>
</ui>

0 comments on commit 2b8faf4

Please sign in to comment.