1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889 |
- <?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>close()</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>close()</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>
- </ui>
|