123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134 |
- <?xml version="1.0" encoding="UTF-8"?>
- <ui version="4.0">
- <class>BuyCatalogClass</class>
- <widget class="QDialog" name="BuyCatalogClass">
- <property name="geometry">
- <rect>
- <x>0</x>
- <y>0</y>
- <width>357</width>
- <height>514</height>
- </rect>
- </property>
- <property name="windowTitle">
- <string>BuyCatalog</string>
- </property>
- <layout class="QHBoxLayout" name="horizontalLayout_3">
- <item>
- <layout class="QVBoxLayout" name="verticalLayout_2">
- <item>
- <layout class="QVBoxLayout" name="verticalLayout">
- <item>
- <widget class="QLabel" name="label">
- <property name="text">
- <string>Available products:</string>
- </property>
- <property name="buddy">
- <cstring>listWidget</cstring>
- </property>
- </widget>
- </item>
- <item>
- <widget class="QListWidget" name="listWidget"/>
- </item>
- </layout>
- </item>
- <item>
- <widget class="QProgressBar" name="progressBar">
- <property name="maximumSize">
- <size>
- <width>16777215</width>
- <height>15</height>
- </size>
- </property>
- <property name="styleSheet">
- <string notr="true">QProgressBar:horizontal {
- border: 1px solid gray;
- border-radius: 3px;
- background: white;
- padding: 1px;
- text-align: center;
- }
- QProgressBar::chunk:horizontal {
- background: blue;
- }</string>
- </property>
- <property name="value">
- <number>24</number>
- </property>
- </widget>
- </item>
- <item>
- <layout class="QHBoxLayout" name="horizontalLayout_2">
- <item>
- <widget class="QPushButton" name="restoreButton">
- <property name="text">
- <string>Restore</string>
- </property>
- </widget>
- </item>
- <item>
- <spacer name="horizontalSpacer_2">
- <property name="orientation">
- <enum>Qt::Horizontal</enum>
- </property>
- <property name="sizeHint" stdset="0">
- <size>
- <width>98</width>
- <height>20</height>
- </size>
- </property>
- </spacer>
- </item>
- </layout>
- </item>
- <item>
- <layout class="QHBoxLayout" name="horizontalLayout">
- <item>
- <spacer name="horizontalSpacer">
- <property name="orientation">
- <enum>Qt::Horizontal</enum>
- </property>
- <property name="sizeHint" stdset="0">
- <size>
- <width>168</width>
- <height>20</height>
- </size>
- </property>
- </spacer>
- </item>
- <item>
- <widget class="QPushButton" name="backButton">
- <property name="text">
- <string>Back</string>
- </property>
- </widget>
- </item>
- </layout>
- </item>
- </layout>
- </item>
- </layout>
- </widget>
- <layoutdefault spacing="6" margin="11"/>
- <resources/>
- <connections>
- <connection>
- <sender>backButton</sender>
- <signal>clicked()</signal>
- <receiver>BuyCatalogClass</receiver>
- <slot>hide()</slot>
- <hints>
- <hint type="sourcelabel">
- <x>321</x>
- <y>490</y>
- </hint>
- <hint type="destinationlabel">
- <x>204</x>
- <y>489</y>
- </hint>
- </hints>
- </connection>
- </connections>
- </ui>
|