| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137 | <?xml version="1.0" encoding="UTF-8"?><ui version="4.0"> <class>ctkDICOMObjectListWidget</class> <widget class="QWidget" name="ctkDICOMObjectListWidget">  <property name="geometry">   <rect>    <x>0</x>    <y>0</y>    <width>883</width>    <height>516</height>   </rect>  </property>  <property name="windowTitle">   <string>Form</string>  </property>  <layout class="QVBoxLayout" name="verticalLayout_2">   <item>    <layout class="QVBoxLayout" name="verticalLayout">     <item>      <layout class="QHBoxLayout" name="horizontalLayout">       <item>        <widget class="QLabel" name="label">         <property name="text">          <string>File path:</string>         </property>        </widget>       </item>       <item>        <widget class="QLabel" name="currentPathLabel">         <property name="sizePolicy">          <sizepolicy hsizetype="MinimumExpanding" vsizetype="Preferred">           <horstretch>0</horstretch>           <verstretch>0</verstretch>          </sizepolicy>         </property>         <property name="text">          <string/>         </property>        </widget>       </item>       <item>        <widget class="QPushButton" name="copyPathPushButton">         <property name="toolTip">          <string>Copy the file full path to the clipboard.</string>         </property>         <property name="text">          <string>Copy path</string>         </property>        </widget>       </item>      </layout>     </item>     <item>      <widget class="ctkSliderWidget" name="fileSliderWidget">       <property name="decimals">        <number>0</number>       </property>      </widget>     </item>     <item>      <layout class="QHBoxLayout" name="horizontalLayout_3">       <property name="topMargin">        <number>8</number>       </property>       <item>        <widget class="ctkSearchBox" name="metadataSearchBox">         <property name="toolTip">          <string><html><head/><body><p>Filter displayed metadata based on content in Tag, Attribute, and Value columns.</p><p><span style=" font-weight:600;">Simple search: </span>enter any text to show only those items that contains the text. Use ? and * wildcards to represent <span style=" font-style:italic;">any </span>single character or sequence of characters.</p><p><span style=" font-weight:600;">Regular expression search (for advanced users):</span> Enter <span style=" font-style:italic;">regexp:</span> followed by a regular expression. For example, show 3 specific tags, enter: <span style=" font-style:italic;">regexp:0010,0010|0010,0020|0010,0030</span></p></body></html></string>         </property>        </widget>       </item>       <item>        <widget class="QPushButton" name="expandAllPushButton">         <property name="text">          <string>Expand all</string>         </property>        </widget>       </item>       <item>        <widget class="QPushButton" name="collapseAllPushButton">         <property name="text">          <string>Collapse all</string>         </property>        </widget>       </item>       <item>        <widget class="QPushButton" name="copyMetadataPushButton">         <property name="toolTip">          <string>Copy to clipboard metadata of this file</string>         </property>         <property name="text">          <string>Copy metadata</string>         </property>        </widget>       </item>       <item>        <widget class="QPushButton" name="copyAllFilesMetadataPushButton">         <property name="toolTip">          <string>Copy to clipboard metadata of all files in the series</string>         </property>         <property name="text">          <string>Copy all files metadata</string>         </property>        </widget>       </item>      </layout>     </item>     <item>      <layout class="QHBoxLayout" name="horizontalLayout_2"/>     </item>     <item>      <widget class="QTreeView" name="dcmObjectTreeView">       <property name="toolTip">        <string>Double-click to show DICOM tag definition.</string>       </property>      </widget>     </item>    </layout>   </item>  </layout> </widget> <customwidgets>  <customwidget>   <class>ctkSearchBox</class>   <extends>QLineEdit</extends>   <header>ctkSearchBox.h</header>  </customwidget>  <customwidget>   <class>ctkSliderWidget</class>   <extends>QWidget</extends>   <header>ctkSliderWidget.h</header>  </customwidget> </customwidgets> <resources/> <connections/></ui>
 |