| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102 |
- <?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>400</width>
- <height>299</height>
- </rect>
- </property>
- <property name="sizePolicy">
- <sizepolicy hsizetype="Fixed" vsizetype="Fixed">
- <horstretch>0</horstretch>
- <verstretch>0</verstretch>
- </sizepolicy>
- </property>
- <property name="minimumSize">
- <size>
- <width>400</width>
- <height>299</height>
- </size>
- </property>
- <property name="maximumSize">
- <size>
- <width>400</width>
- <height>299</height>
- </size>
- </property>
- <property name="windowTitle">
- <string>Layman - Export Layer to server</string>
- </property>
- <widget class="QListWidget" name="listWidget_listLayers">
- <property name="geometry">
- <rect>
- <x>10</x>
- <y>10</y>
- <width>381</width>
- <height>191</height>
- </rect>
- </property>
- </widget>
- <widget class="QPushButton" name="pushButton">
- <property name="geometry">
- <rect>
- <x>50</x>
- <y>260</y>
- <width>131</width>
- <height>27</height>
- </rect>
- </property>
- <property name="text">
- <string>Export layer</string>
- </property>
- </widget>
- <widget class="QPushButton" name="pushButton_close">
- <property name="geometry">
- <rect>
- <x>212</x>
- <y>260</y>
- <width>131</width>
- <height>28</height>
- </rect>
- </property>
- <property name="text">
- <string>Close</string>
- </property>
- </widget>
- <widget class="QTreeWidget" name="treeWidget">
- <property name="geometry">
- <rect>
- <x>10</x>
- <y>10</y>
- <width>381</width>
- <height>241</height>
- </rect>
- </property>
- <property name="selectionMode">
- <enum>QAbstractItemView::ExtendedSelection</enum>
- </property>
- <property name="selectionBehavior">
- <enum>QAbstractItemView::SelectRows</enum>
- </property>
- <column>
- <property name="text">
- <string>Layer</string>
- </property>
- </column>
- <column>
- <property name="text">
- <string>Type</string>
- </property>
- </column>
- </widget>
- </widget>
- <resources/>
- <connections/>
- </ui>
|