-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathoptionsdialog.ui
174 lines (174 loc) · 5.7 KB
/
optionsdialog.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
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
<?xml version="1.0" encoding="UTF-8"?>
<ui version="4.0">
<class>OptionsDialog</class>
<widget class="QDialog" name="OptionsDialog">
<property name="geometry">
<rect>
<x>0</x>
<y>0</y>
<width>428</width>
<height>186</height>
</rect>
</property>
<property name="windowTitle">
<string>Little Navconnect - Options</string>
</property>
<layout class="QVBoxLayout" name="verticalLayout">
<item>
<layout class="QGridLayout" name="gridLayout">
<item row="2" column="1">
<widget class="QSpinBox" name="spinBoxOptionsUpdateRate">
<property name="toolTip">
<string>Allowed range is 50 milliseconds up to 2 seconds.
Little Navconnect fetches data from Flight Simulator and sends it to all clients (i.e. Little Navmap) using this time interval.</string>
</property>
<property name="statusTip">
<string>Allowed range is 50 milliseconds up to 2 seconds. Little Navconnect fetches data from Flight Simulator and sends it to all clients (i.e. Little Navmap) using this time interval.</string>
</property>
<property name="suffix">
<string> ms</string>
</property>
<property name="minimum">
<number>50</number>
</property>
<property name="maximum">
<number>2000</number>
</property>
<property name="singleStep">
<number>50</number>
</property>
<property name="value">
<number>500</number>
</property>
</widget>
</item>
<item row="3" column="0">
<widget class="QLabel" name="labelOptionsPort">
<property name="text">
<string>&Network Port:</string>
</property>
<property name="alignment">
<set>Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter</set>
</property>
<property name="buddy">
<cstring>spinBoxOptionsPort</cstring>
</property>
</widget>
</item>
<item row="4" column="0">
<widget class="QCheckBox" name="checkBoxFetchAiAircraft">
<property name="enabled">
<bool>true</bool>
</property>
<property name="toolTip">
<string>Deselect to disable fetching and transmission of AI or multiplayer aircraft</string>
</property>
<property name="statusTip">
<string>Deselect to disable fetching and transmission of AI or multiplayer aircraft</string>
</property>
<property name="text">
<string>Fetch AI or multiplayer &aircraft</string>
</property>
<property name="checked">
<bool>false</bool>
</property>
</widget>
</item>
<item row="3" column="1">
<widget class="QSpinBox" name="spinBoxOptionsPort">
<property name="toolTip">
<string>This can normally be left at default.
Change this value only if another application occupies this port and
you get an error message like "The bound address is already in use".</string>
</property>
<property name="statusTip">
<string>This can normally be left at default.\nChange this value only if another application occupies this port and \nyou get an error message like "The bound address is already in use".</string>
</property>
<property name="minimum">
<number>1024</number>
</property>
<property name="maximum">
<number>65535</number>
</property>
<property name="value">
<number>7755</number>
</property>
</widget>
</item>
<item row="6" column="0">
<widget class="QLabel" name="label_2">
<property name="text">
<string>Multiplayer server port:</string>
</property>
<property name="alignment">
<set>Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter</set>
</property>
</widget>
</item>
<item row="6" column="1">
<widget class="QSpinBox" name="spinBoxMultiplayerServerPort">
<property name="enabled">
<bool>true</bool>
</property>
<property name="maximum">
<number>65535</number>
</property>
<property name="value">
<number>5001</number>
</property>
</widget>
</item>
<item row="2" column="0">
<widget class="QLabel" name="labelOptionsUpdateRate">
<property name="text">
<string>&Update Time Interval:</string>
</property>
<property name="alignment">
<set>Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter</set>
</property>
<property name="buddy">
<cstring>spinBoxOptionsUpdateRate</cstring>
</property>
</widget>
</item>
<item row="5" column="0">
<widget class="QLabel" name="labelMultiplayerServerHost">
<property name="text">
<string>Multiplayer server:</string>
</property>
<property name="alignment">
<set>Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter</set>
</property>
</widget>
</item>
<item row="5" column="1">
<widget class="QLineEdit" name="textLineMultiplayerServerHost">
<property name="enabled">
<bool>true</bool>
</property>
<property name="text">
<string>mpserver03.flightgear.org</string>
</property>
</widget>
</item>
</layout>
</item>
<item>
<widget class="QDialogButtonBox" name="buttonBoxOptions">
<property name="orientation">
<enum>Qt::Horizontal</enum>
</property>
<property name="standardButtons">
<set>QDialogButtonBox::Cancel|QDialogButtonBox::Ok</set>
</property>
</widget>
</item>
</layout>
</widget>
<tabstops>
<tabstop>spinBoxOptionsUpdateRate</tabstop>
<tabstop>spinBoxOptionsPort</tabstop>
</tabstops>
<resources/>
<connections/>
</ui>