|
1 |
| -<?xml version="1.0" encoding="UTF-8"?> |
2 |
| -<ui version="4.0"> |
3 |
| - <class>dxf2shpConverterGui</class> |
4 |
| - <widget class="QDialog" name="dxf2shpConverterGui"> |
5 |
| - <property name="geometry"> |
6 |
| - <rect> |
7 |
| - <x>0</x> |
8 |
| - <y>0</y> |
9 |
| - <width>350</width> |
10 |
| - <height>250</height> |
11 |
| - </rect> |
12 |
| - </property> |
13 |
| - <property name="minimumSize"> |
14 |
| - <size> |
15 |
| - <width>350</width> |
16 |
| - <height>220</height> |
17 |
| - </size> |
18 |
| - </property> |
19 |
| - <property name="maximumSize"> |
20 |
| - <size> |
21 |
| - <width>500</width> |
22 |
| - <height>300</height> |
23 |
| - </size> |
24 |
| - </property> |
25 |
| - <property name="windowTitle"> |
26 |
| - <string>Dxf Importer</string> |
27 |
| - </property> |
28 |
| - <property name="windowIcon"> |
29 |
| - <iconset> |
30 |
| - <normaloff/> |
31 |
| - </iconset> |
32 |
| - </property> |
33 |
| - <layout class="QGridLayout" name="gridLayout"> |
34 |
| - <item row="0" column="0"> |
35 |
| - <widget class="QGroupBox" name="groupBox_2"> |
36 |
| - <property name="title"> |
37 |
| - <string>Input and output</string> |
38 |
| - </property> |
39 |
| - <layout class="QGridLayout" name="gridLayout_3"> |
40 |
| - <item row="0" column="0"> |
41 |
| - <widget class="QLabel" name="label"> |
42 |
| - <property name="text"> |
43 |
| - <string>Input Dxf file</string> |
44 |
| - </property> |
45 |
| - <property name="buddy"> |
46 |
| - <cstring>name</cstring> |
47 |
| - </property> |
48 |
| - </widget> |
49 |
| - </item> |
50 |
| - <item row="0" column="1"> |
51 |
| - <widget class="QLineEdit" name="name"/> |
52 |
| - </item> |
53 |
| - <item row="0" column="2"> |
54 |
| - <widget class="QToolButton" name="btnBrowseForFile"> |
55 |
| - <property name="text"> |
56 |
| - <string>...</string> |
57 |
| - </property> |
58 |
| - </widget> |
59 |
| - </item> |
60 |
| - <item row="1" column="0"> |
61 |
| - <widget class="QLabel" name="label_3"> |
62 |
| - <property name="text"> |
63 |
| - <string>Output file</string> |
64 |
| - </property> |
65 |
| - <property name="buddy"> |
66 |
| - <cstring>dirout</cstring> |
67 |
| - </property> |
68 |
| - </widget> |
69 |
| - </item> |
70 |
| - <item row="1" column="1"> |
71 |
| - <widget class="QLineEdit" name="dirout"/> |
72 |
| - </item> |
73 |
| - <item row="1" column="2"> |
74 |
| - <widget class="QToolButton" name="btnBrowseOutputDir"> |
75 |
| - <property name="text"> |
76 |
| - <string>...</string> |
77 |
| - </property> |
78 |
| - </widget> |
79 |
| - </item> |
80 |
| - <item row="2" column="0" colspan="3"> |
81 |
| - <widget class="QCheckBox" name="convertTextCheck"> |
82 |
| - <property name="text"> |
83 |
| - <string>Export text labels</string> |
84 |
| - </property> |
85 |
| - </widget> |
86 |
| - </item> |
87 |
| - </layout> |
88 |
| - </widget> |
89 |
| - </item> |
90 |
| - <item row="1" column="0"> |
91 |
| - <widget class="QGroupBox" name="groupBox"> |
92 |
| - <property name="sizePolicy"> |
93 |
| - <sizepolicy hsizetype="Preferred" vsizetype="Maximum"> |
94 |
| - <horstretch>0</horstretch> |
95 |
| - <verstretch>0</verstretch> |
96 |
| - </sizepolicy> |
97 |
| - </property> |
98 |
| - <property name="minimumSize"> |
99 |
| - <size> |
100 |
| - <width>0</width> |
101 |
| - <height>50</height> |
102 |
| - </size> |
103 |
| - </property> |
104 |
| - <property name="title"> |
105 |
| - <string>Output file type</string> |
106 |
| - </property> |
107 |
| - <layout class="QGridLayout"> |
108 |
| - <item row="0" column="0"> |
109 |
| - <widget class="QRadioButton" name="polyline"> |
110 |
| - <property name="text"> |
111 |
| - <string>Polyline</string> |
112 |
| - </property> |
113 |
| - <property name="checked"> |
114 |
| - <bool>true</bool> |
115 |
| - </property> |
116 |
| - </widget> |
117 |
| - </item> |
118 |
| - <item row="0" column="1"> |
119 |
| - <widget class="QRadioButton" name="polygon"> |
120 |
| - <property name="text"> |
121 |
| - <string>Polygon</string> |
122 |
| - </property> |
123 |
| - </widget> |
124 |
| - </item> |
125 |
| - <item row="0" column="2"> |
126 |
| - <widget class="QRadioButton" name="point"> |
127 |
| - <property name="text"> |
128 |
| - <string>Point</string> |
129 |
| - </property> |
130 |
| - </widget> |
131 |
| - </item> |
132 |
| - </layout> |
133 |
| - </widget> |
134 |
| - </item> |
135 |
| - <item row="2" column="0"> |
136 |
| - <widget class="QDialogButtonBox" name="buttonBox"> |
137 |
| - <property name="standardButtons"> |
138 |
| - <set>QDialogButtonBox::Cancel|QDialogButtonBox::Help|QDialogButtonBox::Ok</set> |
139 |
| - </property> |
140 |
| - </widget> |
141 |
| - </item> |
142 |
| - </layout> |
143 |
| - </widget> |
144 |
| - <layoutdefault spacing="6" margin="11"/> |
145 |
| - <tabstops> |
146 |
| - <tabstop>name</tabstop> |
147 |
| - <tabstop>btnBrowseForFile</tabstop> |
148 |
| - <tabstop>dirout</tabstop> |
149 |
| - <tabstop>btnBrowseOutputDir</tabstop> |
150 |
| - <tabstop>convertTextCheck</tabstop> |
151 |
| - <tabstop>polyline</tabstop> |
152 |
| - <tabstop>polygon</tabstop> |
153 |
| - <tabstop>point</tabstop> |
154 |
| - <tabstop>buttonBox</tabstop> |
155 |
| - </tabstops> |
156 |
| - <resources/> |
157 |
| - <connections> |
158 |
| - <connection> |
159 |
| - <sender>buttonBox</sender> |
160 |
| - <signal>rejected()</signal> |
161 |
| - <receiver>dxf2shpConverterGui</receiver> |
162 |
| - <slot>reject()</slot> |
163 |
| - <hints> |
164 |
| - <hint type="sourcelabel"> |
165 |
| - <x>227</x> |
166 |
| - <y>223</y> |
167 |
| - </hint> |
168 |
| - <hint type="destinationlabel"> |
169 |
| - <x>349</x> |
170 |
| - <y>194</y> |
171 |
| - </hint> |
172 |
| - </hints> |
173 |
| - </connection> |
174 |
| - </connections> |
175 |
| -</ui> |
| 1 | +<?xml version="1.0" encoding="UTF-8"?> |
| 2 | +<ui version="4.0"> |
| 3 | + <class>dxf2shpConverterGui</class> |
| 4 | + <widget class="QDialog" name="dxf2shpConverterGui"> |
| 5 | + <property name="geometry"> |
| 6 | + <rect> |
| 7 | + <x>0</x> |
| 8 | + <y>0</y> |
| 9 | + <width>350</width> |
| 10 | + <height>250</height> |
| 11 | + </rect> |
| 12 | + </property> |
| 13 | + <property name="minimumSize"> |
| 14 | + <size> |
| 15 | + <width>350</width> |
| 16 | + <height>220</height> |
| 17 | + </size> |
| 18 | + </property> |
| 19 | + <property name="maximumSize"> |
| 20 | + <size> |
| 21 | + <width>500</width> |
| 22 | + <height>300</height> |
| 23 | + </size> |
| 24 | + </property> |
| 25 | + <property name="windowTitle"> |
| 26 | + <string>Dxf Importer</string> |
| 27 | + </property> |
| 28 | + <property name="windowIcon"> |
| 29 | + <iconset> |
| 30 | + <normaloff/> |
| 31 | + </iconset> |
| 32 | + </property> |
| 33 | + <layout class="QGridLayout" name="gridLayout"> |
| 34 | + <item row="0" column="0"> |
| 35 | + <widget class="QGroupBox" name="groupBox_2"> |
| 36 | + <property name="title"> |
| 37 | + <string>Input and output</string> |
| 38 | + </property> |
| 39 | + <layout class="QGridLayout" name="gridLayout_3"> |
| 40 | + <item row="0" column="0"> |
| 41 | + <widget class="QLabel" name="label"> |
| 42 | + <property name="text"> |
| 43 | + <string>Input Dxf file</string> |
| 44 | + </property> |
| 45 | + <property name="buddy"> |
| 46 | + <cstring>name</cstring> |
| 47 | + </property> |
| 48 | + </widget> |
| 49 | + </item> |
| 50 | + <item row="0" column="1"> |
| 51 | + <widget class="QLineEdit" name="name"/> |
| 52 | + </item> |
| 53 | + <item row="0" column="2"> |
| 54 | + <widget class="QToolButton" name="btnBrowseForFile"> |
| 55 | + <property name="text"> |
| 56 | + <string>...</string> |
| 57 | + </property> |
| 58 | + </widget> |
| 59 | + </item> |
| 60 | + <item row="1" column="0"> |
| 61 | + <widget class="QLabel" name="label_3"> |
| 62 | + <property name="text"> |
| 63 | + <string>Output file</string> |
| 64 | + </property> |
| 65 | + <property name="buddy"> |
| 66 | + <cstring>dirout</cstring> |
| 67 | + </property> |
| 68 | + </widget> |
| 69 | + </item> |
| 70 | + <item row="1" column="1"> |
| 71 | + <widget class="QLineEdit" name="dirout"/> |
| 72 | + </item> |
| 73 | + <item row="1" column="2"> |
| 74 | + <widget class="QToolButton" name="btnBrowseOutputDir"> |
| 75 | + <property name="text"> |
| 76 | + <string>...</string> |
| 77 | + </property> |
| 78 | + </widget> |
| 79 | + </item> |
| 80 | + <item row="2" column="0" colspan="3"> |
| 81 | + <widget class="QCheckBox" name="convertTextCheck"> |
| 82 | + <property name="text"> |
| 83 | + <string>Export text labels</string> |
| 84 | + </property> |
| 85 | + </widget> |
| 86 | + </item> |
| 87 | + </layout> |
| 88 | + </widget> |
| 89 | + </item> |
| 90 | + <item row="1" column="0"> |
| 91 | + <widget class="QGroupBox" name="groupBox"> |
| 92 | + <property name="sizePolicy"> |
| 93 | + <sizepolicy hsizetype="Preferred" vsizetype="Maximum"> |
| 94 | + <horstretch>0</horstretch> |
| 95 | + <verstretch>0</verstretch> |
| 96 | + </sizepolicy> |
| 97 | + </property> |
| 98 | + <property name="minimumSize"> |
| 99 | + <size> |
| 100 | + <width>0</width> |
| 101 | + <height>50</height> |
| 102 | + </size> |
| 103 | + </property> |
| 104 | + <property name="title"> |
| 105 | + <string>Output file type</string> |
| 106 | + </property> |
| 107 | + <layout class="QGridLayout"> |
| 108 | + <item row="0" column="0"> |
| 109 | + <widget class="QRadioButton" name="polyline"> |
| 110 | + <property name="text"> |
| 111 | + <string>Polyline</string> |
| 112 | + </property> |
| 113 | + <property name="checked"> |
| 114 | + <bool>true</bool> |
| 115 | + </property> |
| 116 | + </widget> |
| 117 | + </item> |
| 118 | + <item row="0" column="1"> |
| 119 | + <widget class="QRadioButton" name="polygon"> |
| 120 | + <property name="text"> |
| 121 | + <string>Polygon</string> |
| 122 | + </property> |
| 123 | + </widget> |
| 124 | + </item> |
| 125 | + <item row="0" column="2"> |
| 126 | + <widget class="QRadioButton" name="point"> |
| 127 | + <property name="text"> |
| 128 | + <string>Point</string> |
| 129 | + </property> |
| 130 | + </widget> |
| 131 | + </item> |
| 132 | + </layout> |
| 133 | + </widget> |
| 134 | + </item> |
| 135 | + <item row="2" column="0"> |
| 136 | + <widget class="QDialogButtonBox" name="buttonBox"> |
| 137 | + <property name="standardButtons"> |
| 138 | + <set>QDialogButtonBox::Cancel|QDialogButtonBox::Help|QDialogButtonBox::Ok</set> |
| 139 | + </property> |
| 140 | + </widget> |
| 141 | + </item> |
| 142 | + </layout> |
| 143 | + </widget> |
| 144 | + <layoutdefault spacing="6" margin="11"/> |
| 145 | + <tabstops> |
| 146 | + <tabstop>name</tabstop> |
| 147 | + <tabstop>btnBrowseForFile</tabstop> |
| 148 | + <tabstop>dirout</tabstop> |
| 149 | + <tabstop>btnBrowseOutputDir</tabstop> |
| 150 | + <tabstop>convertTextCheck</tabstop> |
| 151 | + <tabstop>polyline</tabstop> |
| 152 | + <tabstop>polygon</tabstop> |
| 153 | + <tabstop>point</tabstop> |
| 154 | + <tabstop>buttonBox</tabstop> |
| 155 | + </tabstops> |
| 156 | + <resources/> |
| 157 | + <connections> |
| 158 | + <connection> |
| 159 | + <sender>buttonBox</sender> |
| 160 | + <signal>rejected()</signal> |
| 161 | + <receiver>dxf2shpConverterGui</receiver> |
| 162 | + <slot>reject()</slot> |
| 163 | + <hints> |
| 164 | + <hint type="sourcelabel"> |
| 165 | + <x>227</x> |
| 166 | + <y>223</y> |
| 167 | + </hint> |
| 168 | + <hint type="destinationlabel"> |
| 169 | + <x>349</x> |
| 170 | + <y>194</y> |
| 171 | + </hint> |
| 172 | + </hints> |
| 173 | + </connection> |
| 174 | + </connections> |
| 175 | +</ui> |
0 commit comments