| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216 |
- <?xml version="1.0" encoding="UTF-8"?>
- <ui version="4.0">
- <class>DialogBase</class>
- <widget class="QDialog" name="DialogBase">
- <property name="windowModality">
- <enum>Qt::ApplicationModal</enum>
- </property>
- <property name="geometry">
- <rect>
- <x>0</x>
- <y>0</y>
- <width>350</width>
- <height>250</height>
- </rect>
- </property>
- <property name="sizePolicy">
- <sizepolicy hsizetype="Fixed" vsizetype="Fixed">
- <horstretch>0</horstretch>
- <verstretch>0</verstretch>
- </sizepolicy>
- </property>
- <property name="minimumSize">
- <size>
- <width>350</width>
- <height>250</height>
- </size>
- </property>
- <property name="maximumSize">
- <size>
- <width>350</width>
- <height>250</height>
- </size>
- </property>
- <property name="windowTitle">
- <string>Layman - Edit metadata</string>
- </property>
- <widget class="QPushButton" name="pushButton_save">
- <property name="geometry">
- <rect>
- <x>51</x>
- <y>204</y>
- <width>88</width>
- <height>27</height>
- </rect>
- </property>
- <property name="text">
- <string>Save</string>
- </property>
- </widget>
- <widget class="QPushButton" name="pushButton_close">
- <property name="geometry">
- <rect>
- <x>188</x>
- <y>203</y>
- <width>93</width>
- <height>28</height>
- </rect>
- </property>
- <property name="text">
- <string>Close</string>
- </property>
- </widget>
- <widget class="QLineEdit" name="lineEdit_name">
- <property name="geometry">
- <rect>
- <x>140</x>
- <y>1</y>
- <width>137</width>
- <height>20</height>
- </rect>
- </property>
- <property name="readOnly">
- <bool>true</bool>
- </property>
- </widget>
- <widget class="QLineEdit" name="lineEdit_abstract">
- <property name="geometry">
- <rect>
- <x>140</x>
- <y>60</y>
- <width>137</width>
- <height>20</height>
- </rect>
- </property>
- </widget>
- <widget class="QLineEdit" name="lineEdit_title">
- <property name="geometry">
- <rect>
- <x>140</x>
- <y>30</y>
- <width>137</width>
- <height>20</height>
- </rect>
- </property>
- </widget>
- <widget class="QLabel" name="label">
- <property name="geometry">
- <rect>
- <x>50</x>
- <y>60</y>
- <width>71</width>
- <height>16</height>
- </rect>
- </property>
- <property name="text">
- <string>Abstract:</string>
- </property>
- </widget>
- <widget class="QLabel" name="label_2">
- <property name="geometry">
- <rect>
- <x>50</x>
- <y>1</y>
- <width>61</width>
- <height>16</height>
- </rect>
- </property>
- <property name="text">
- <string>Name:</string>
- </property>
- </widget>
- <widget class="QLabel" name="label_3">
- <property name="geometry">
- <rect>
- <x>50</x>
- <y>30</y>
- <width>61</width>
- <height>16</height>
- </rect>
- </property>
- <property name="text">
- <string>Title:</string>
- </property>
- </widget>
- <widget class="QLabel" name="label_4">
- <property name="geometry">
- <rect>
- <x>50</x>
- <y>89</y>
- <width>61</width>
- <height>16</height>
- </rect>
- </property>
- <property name="text">
- <string>Units:</string>
- </property>
- </widget>
- <widget class="QLabel" name="label_5">
- <property name="geometry">
- <rect>
- <x>50</x>
- <y>119</y>
- <width>51</width>
- <height>16</height>
- </rect>
- </property>
- <property name="text">
- <string>Scale:</string>
- </property>
- </widget>
- <widget class="QLabel" name="label_6">
- <property name="geometry">
- <rect>
- <x>50</x>
- <y>150</y>
- <width>61</width>
- <height>16</height>
- </rect>
- </property>
- <property name="text">
- <string>User:</string>
- </property>
- </widget>
- <widget class="QLineEdit" name="lineEdit_units">
- <property name="geometry">
- <rect>
- <x>140</x>
- <y>89</y>
- <width>137</width>
- <height>20</height>
- </rect>
- </property>
- <property name="readOnly">
- <bool>true</bool>
- </property>
- </widget>
- <widget class="QLineEdit" name="lineEdit_scale">
- <property name="geometry">
- <rect>
- <x>140</x>
- <y>119</y>
- <width>137</width>
- <height>20</height>
- </rect>
- </property>
- <property name="readOnly">
- <bool>true</bool>
- </property>
- </widget>
- <widget class="QLineEdit" name="lineEdit_user">
- <property name="geometry">
- <rect>
- <x>140</x>
- <y>150</y>
- <width>137</width>
- <height>20</height>
- </rect>
- </property>
- <property name="readOnly">
- <bool>true</bool>
- </property>
- </widget>
- </widget>
- <resources/>
- <connections/>
- </ui>
|