blob: 011be4f3cc0ab0fc5328ad917103c22c22919967 (
plain) (
blame)
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
|
<?xml version="1.0" encoding="UTF-8"?>
<ui version="4.0">
<class>UserSurvey</class>
<widget class="QDialog" name="UserSurvey">
<property name="geometry">
<rect>
<x>0</x>
<y>0</y>
<width>500</width>
<height>600</height>
</rect>
</property>
<property name="windowTitle">
<string>User Survey</string>
</property>
<layout class="QVBoxLayout" name="verticalLayout">
<item>
<widget class="QLabel" name="label">
<property name="font">
<font>
<pointsize>11</pointsize>
</font>
</property>
<property name="text">
<string>Subsurface user survey</string>
</property>
</widget>
</item>
<item>
<widget class="QLabel" name="label_2">
<property name="text">
<string>We would love to learn more about our users, their preferences and their usage habits. Please take a minute to fill out this form and submit it to the Subsurface team. Please select all options that apply to you.</string>
</property>
<property name="alignment">
<set>Qt::AlignLeading|Qt::AlignLeft|Qt::AlignTop</set>
</property>
<property name="wordWrap">
<bool>true</bool>
</property>
</widget>
</item>
<item>
<widget class="QCheckBox" name="tech">
<property name="text">
<string>Technical diver</string>
</property>
</widget>
</item>
<item>
<widget class="QCheckBox" name="recreational">
<property name="text">
<string>Recreational diver</string>
</property>
</widget>
</item>
<item>
<widget class="QCheckBox" name="planning">
<property name="text">
<string>Interested in dive planning</string>
</property>
</widget>
</item>
<item>
<widget class="QCheckBox" name="download">
<property name="text">
<string>I am downloading dives from supported dive computer</string>
</property>
</widget>
</item>
<item>
<widget class="QCheckBox" name="divecomputer">
<property name="text">
<string>I am importing dives from other software / sources</string>
</property>
</widget>
</item>
<item>
<widget class="QCheckBox" name="manual">
<property name="text">
<string>I am manually entering dives</string>
</property>
</widget>
</item>
<item>
<widget class="QCheckBox" name="companion">
<property name="text">
<string>I use the Android companion app to track dive locations</string>
</property>
</widget>
</item>
<item>
<widget class="QLabel" name="label_3">
<property name="text">
<string>Please type suggestions (in English) in the following box</string>
</property>
</widget>
</item>
<item>
<widget class="QPlainTextEdit" name="suggestions"/>
</item>
<item>
<widget class="QLabel" name="label_4">
<property name="text">
<string>The following information about your system will also be submitted</string>
</property>
</widget>
</item>
<item>
<widget class="QPlainTextEdit" name="system">
<property name="sizePolicy">
<sizepolicy hsizetype="Expanding" vsizetype="Expanding">
<horstretch>0</horstretch>
<verstretch>0</verstretch>
</sizepolicy>
</property>
<property name="readOnly">
<bool>true</bool>
</property>
</widget>
</item>
<item>
<widget class="QDialogButtonBox" name="buttonBox">
<property name="orientation">
<enum>Qt::Horizontal</enum>
</property>
<property name="standardButtons">
<set>QDialogButtonBox::Cancel|QDialogButtonBox::Save</set>
</property>
</widget>
</item>
</layout>
</widget>
<tabstops>
<tabstop>recreational</tabstop>
<tabstop>tech</tabstop>
<tabstop>planning</tabstop>
<tabstop>download</tabstop>
<tabstop>divecomputer</tabstop>
<tabstop>manual</tabstop>
<tabstop>companion</tabstop>
<tabstop>suggestions</tabstop>
<tabstop>system</tabstop>
<tabstop>buttonBox</tabstop>
</tabstops>
<resources/>
<connections/>
</ui>
|