123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293 |
- <?xml version="1.0" encoding="UTF-8"?>
- <ui version="4.0">
- <class>ctkDICOMImportWidget</class>
- <widget class="QWidget" name="ctkDICOMImportWidget">
- <property name="geometry">
- <rect>
- <x>0</x>
- <y>0</y>
- <width>400</width>
- <height>420</height>
- </rect>
- </property>
- <property name="windowTitle">
- <string>Import DICOM</string>
- </property>
- <property name="styleSheet">
- <string notr="true"/>
- </property>
- <layout class="QVBoxLayout" name="verticalLayout_2">
- <item>
- <widget class="ctkDirectoryButton" name="DirectoryWidget" native="true"/>
- </item>
- <item>
- <widget class="QTreeView" name="directoryList"/>
- </item>
- <item>
- <widget class="QCheckBox" name="copyCheckBox">
- <property name="text">
- <string>Copy to library</string>
- </property>
- </widget>
- </item>
- <item>
- <widget class="QDialogButtonBox" name="buttonBox">
- <property name="standardButtons">
- <set>QDialogButtonBox::Cancel|QDialogButtonBox::Ok</set>
- </property>
- </widget>
- </item>
- </layout>
- </widget>
- <customwidgets>
- <customwidget>
- <class>ctkDirectoryButton</class>
- <extends>QWidget</extends>
- <header>ctkDirectoryButton.h</header>
- <container>1</container>
- <slots>
- <signal>directoryChanged(QString)</signal>
- </slots>
- </customwidget>
- </customwidgets>
- <resources/>
- <connections>
- <connection>
- <sender>buttonBox</sender>
- <signal>accepted()</signal>
- <receiver>ctkDICOMImportWidget</receiver>
- <slot>onOK()</slot>
- <hints>
- <hint type="sourcelabel">
- <x>199</x>
- <y>399</y>
- </hint>
- <hint type="destinationlabel">
- <x>199</x>
- <y>209</y>
- </hint>
- </hints>
- </connection>
- <connection>
- <sender>buttonBox</sender>
- <signal>rejected()</signal>
- <receiver>ctkDICOMImportWidget</receiver>
- <slot>onCancel()</slot>
- <hints>
- <hint type="sourcelabel">
- <x>199</x>
- <y>399</y>
- </hint>
- <hint type="destinationlabel">
- <x>199</x>
- <y>209</y>
- </hint>
- </hints>
- </connection>
- </connections>
- <slots>
- <slot>onOK()</slot>
- <slot>onCancel()</slot>
- </slots>
- </ui>
|