-
Notifications
You must be signed in to change notification settings - Fork 0
/
ui_main.ui
113 lines (113 loc) · 3.41 KB
/
ui_main.ui
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
<?xml version="1.0" encoding="UTF-8"?>
<ui version="4.0">
<class>Dialog</class>
<widget class="QDialog" name="Dialog">
<property name="geometry">
<rect>
<x>0</x>
<y>0</y>
<width>793</width>
<height>543</height>
</rect>
</property>
<property name="windowTitle">
<string>坐标转换</string>
</property>
<property name="windowIcon">
<iconset>
<normaloff>app.ico</normaloff>app.ico</iconset>
</property>
<layout class="QVBoxLayout" name="verticalLayout">
<item>
<widget class="QLabel" name="label">
<property name="lineWidth">
<number>2</number>
</property>
<property name="text">
<string><html><head/><body><p><span style=" font-size:11pt;">输入经纬度信息,以英文逗号分隔,每行一个经纬度(例如:117.017832,23.690733),点击转换按钮开始。</span></p><p><span style=" font-size:11pt;">百度地图坐标择取:</span><a href="http://api.map.baidu.com/lbsapi/getpoint/index.html"><span style=" font-size:11pt; text-decoration: underline; color:#0000ff;">http://api.map.baidu.com/lbsapi/getpoint/index.html</span></a></p><p><span style=" font-size:11pt; font-weight:600; color:#ff0000;">坐标转换可能存在个人隐私问题,工具仅供内部交流使用。</span></p></body></html></string>
</property>
<property name="openExternalLinks">
<bool>true</bool>
</property>
</widget>
</item>
<item>
<layout class="QHBoxLayout" name="horizontalLayout_2">
<item>
<widget class="QTextEdit" name="textEditSrc">
<property name="acceptRichText">
<bool>false</bool>
</property>
</widget>
</item>
<item>
<widget class="QTextEdit" name="textEditDst">
<property name="readOnly">
<bool>true</bool>
</property>
<property name="acceptRichText">
<bool>false</bool>
</property>
</widget>
</item>
</layout>
</item>
<item>
<layout class="QHBoxLayout" name="horizontalLayout">
<item>
<widget class="QCheckBox" name="bd2Gps">
<property name="text">
<string>百度转谷歌地球(不选则为:谷歌地球转百度)</string>
</property>
<property name="checked">
<bool>true</bool>
</property>
</widget>
</item>
<item>
<spacer name="horizontalSpacer">
<property name="orientation">
<enum>Qt::Horizontal</enum>
</property>
<property name="sizeHint" stdset="0">
<size>
<width>40</width>
<height>20</height>
</size>
</property>
</spacer>
</item>
<item>
<widget class="QPushButton" name="btnStart">
<property name="text">
<string>转换</string>
</property>
</widget>
</item>
</layout>
</item>
</layout>
</widget>
<resources/>
<connections>
<connection>
<sender>btnStart</sender>
<signal>clicked()</signal>
<receiver>Dialog</receiver>
<slot>start_convert()</slot>
<hints>
<hint type="sourcelabel">
<x>690</x>
<y>511</y>
</hint>
<hint type="destinationlabel">
<x>266</x>
<y>0</y>
</hint>
</hints>
</connection>
</connections>
<slots>
<slot>start_convert()</slot>
</slots>
</ui>