/
githubmirror
/
setools
Обзор
Документация
Войти
/
githubmirror
/
setools
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
4.0.0
data/choose_analysis.ui
111 строк
3 KB
Chris PeBenito
ChooseAnalysis: Fix Ok button.
20 апр 2016, 16:55
20 апр 2016, 16:55
a22fc0f
Код
Авторство
О чём код?
<?xml version="1.0" encoding="UTF-8"?> <ui version="4.0"> <class>ChooseAnalysis</class> <widget class="QDialog" name="ChooseAnalysis"> <property name="geometry"> <rect> <x>0</x> <y>0</y> <width>400</width> <height>421</height> </rect> </property> <property name="windowTitle"> <string>New Analysis</string> </property> <layout class="QVBoxLayout" name="verticalLayout"> <item> <widget class="QLabel" name="label"> <property name="text"> <string>Choose a new analysis to start:</string> </property> </widget> </item> <item> <widget class="QTreeWidget" name="analysisTypes"> <property name="selectionMode"> <enum>QAbstractItemView::SingleSelection</enum> </property> <property name="headerHidden"> <bool>true</bool> </property> <property name="expandsOnDoubleClick"> <bool>true</bool> </property> <property name="columnCount"> <number>1</number> </property> <attribute name="headerVisible"> <bool>false</bool> </attribute> <column> <property name="text"> <string>Analyses</string> </property> </column> </widget> </item> <item> <widget class="QDialogButtonBox" name="buttonBox"> <property name="orientation"> <enum>Qt::Horizontal</enum> </property> <property name="standardButtons"> <set>QDialogButtonBox::Cancel|QDialogButtonBox::Ok</set> </property> </widget> </item> </layout> </widget> <resources/> <connections> <connection> <sender>buttonBox</sender> <signal>rejected()</signal> <receiver>ChooseAnalysis</receiver> <slot>reject()</slot> <hints> <hint type="sourcelabel"> <x>316</x> <y>260</y> </hint> <hint type="destinationlabel"> <x>286</x> <y>274</y> </hint> </hints> </connection> <connection> <sender>buttonBox</sender> <signal>accepted()</signal> <receiver>ChooseAnalysis</receiver> <slot>accept()</slot> <hints> <hint type="sourcelabel"> <x>199</x> <y>400</y> </hint> <hint type="destinationlabel"> <x>199</x> <y>210</y> </hint> </hints> </connection> <connection> <sender>analysisTypes</sender> <signal>itemDoubleClicked(QTreeWidgetItem*,int)</signal> <receiver>ChooseAnalysis</receiver> <slot>accept()</slot> <hints> <hint type="sourcelabel"> <x>199</x> <y>206</y> </hint> <hint type="destinationlabel"> <x>199</x> <y>210</y> </hint> </hints> </connection> </connections> </ui>