123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100 |
- <?xml version="1.0" encoding="UTF-8"?>
- <ui version="4.0">
- <class>ProductInfoClass</class>
- <widget class="QDialog" name="ProductInfoClass">
- <property name="geometry">
- <rect>
- <x>0</x>
- <y>0</y>
- <width>296</width>
- <height>295</height>
- </rect>
- </property>
- <property name="windowTitle">
- <string>ProductInfo</string>
- </property>
- <layout class="QHBoxLayout" name="horizontalLayout_2">
- <item>
- <layout class="QVBoxLayout" name="verticalLayout_2">
- <item>
- <widget class="QGroupBox" name="groupBox">
- <property name="title">
- <string>Title</string>
- </property>
- <layout class="QVBoxLayout" name="verticalLayout">
- <item>
- <widget class="QTextBrowser" name="textBrowser"/>
- </item>
- <item>
- <widget class="QLabel" name="priceLabel">
- <property name="text">
- <string>Price:</string>
- </property>
- <property name="alignment">
- <set>Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter</set>
- </property>
- </widget>
- </item>
- </layout>
- </widget>
- </item>
- <item>
- <layout class="QHBoxLayout" name="horizontalLayout">
- <item>
- <widget class="QPushButton" name="buyButton">
- <property name="text">
- <string>Buy</string>
- </property>
- </widget>
- </item>
- <item>
- <widget class="QPushButton" name="closeButton">
- <property name="text">
- <string>Close</string>
- </property>
- </widget>
- </item>
- </layout>
- </item>
- </layout>
- </item>
- </layout>
- </widget>
- <layoutdefault spacing="6" margin="11"/>
- <resources/>
- <connections>
- <connection>
- <sender>closeButton</sender>
- <signal>clicked()</signal>
- <receiver>ProductInfoClass</receiver>
- <slot>reject()</slot>
- <hints>
- <hint type="sourcelabel">
- <x>242</x>
- <y>270</y>
- </hint>
- <hint type="destinationlabel">
- <x>292</x>
- <y>264</y>
- </hint>
- </hints>
- </connection>
- <connection>
- <sender>buyButton</sender>
- <signal>clicked()</signal>
- <receiver>ProductInfoClass</receiver>
- <slot>accept()</slot>
- <hints>
- <hint type="sourcelabel">
- <x>122</x>
- <y>268</y>
- </hint>
- <hint type="destinationlabel">
- <x>147</x>
- <y>274</y>
- </hint>
- </hints>
- </connection>
- </connections>
- </ui>
|