-
Notifications
You must be signed in to change notification settings - Fork 0
/
mainwindow.ui
119 lines (119 loc) · 2.86 KB
/
mainwindow.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
<?xml version="1.0" encoding="UTF-8"?>
<ui version="4.0">
<class>MainWindow</class>
<widget class="QMainWindow" name="MainWindow">
<property name="geometry">
<rect>
<x>0</x>
<y>0</y>
<width>685</width>
<height>550</height>
</rect>
</property>
<property name="windowTitle">
<string>MainWindow</string>
</property>
<widget class="QWidget" name="centralWidget">
<property name="styleSheet">
<string notr="true"/>
</property>
<layout class="QHBoxLayout" name="horizontalLayout">
<item>
<widget class="QGraphicsView" name="graphicsView"/>
</item>
<item>
<layout class="QVBoxLayout" name="controlsWidget">
<property name="spacing">
<number>6</number>
</property>
<item>
<widget class="QSpinBox" name="birdCountSpinBox">
<property name="suffix">
<string extracomment="number of birds to show"> Vögel</string>
</property>
<property name="minimum">
<number>2</number>
</property>
</widget>
</item>
<item>
<widget class="QCheckBox" name="sightBoxes">
<property name="text">
<string>sightbox</string>
</property>
</widget>
</item>
<item>
<widget class="QCheckBox" name="randomDotOrgSourceCheckBox">
<property name="text">
<string>random.org</string>
</property>
</widget>
</item>
<item>
<widget class="QCheckBox" name="runBox">
<property name="text">
<string>run</string>
</property>
</widget>
</item>
<item>
<spacer name="verticalSpacer">
<property name="orientation">
<enum>Qt::Vertical</enum>
</property>
<property name="sizeHint" stdset="0">
<size>
<width>20</width>
<height>40</height>
</size>
</property>
</spacer>
</item>
</layout>
</item>
</layout>
</widget>
</widget>
<layoutdefault spacing="6" margin="11"/>
<resources/>
<connections>
<connection>
<sender>birdCountSpinBox</sender>
<signal>valueChanged(int)</signal>
<receiver>MainWindow</receiver>
<slot>birdCountUpdate(int)</slot>
<hints>
<hint type="sourcelabel">
<x>614</x>
<y>24</y>
</hint>
<hint type="destinationlabel">
<x>568</x>
<y>-22</y>
</hint>
</hints>
</connection>
<connection>
<sender>randomDotOrgSourceCheckBox</sender>
<signal>toggled(bool)</signal>
<receiver>MainWindow</receiver>
<slot>setRandomSource(bool)</slot>
<hints>
<hint type="sourcelabel">
<x>668</x>
<y>81</y>
</hint>
<hint type="destinationlabel">
<x>681</x>
<y>-8</y>
</hint>
</hints>
</connection>
</connections>
<slots>
<slot>birdCountUpdate(int)</slot>
<slot>birdDown()</slot>
<slot>setRandomSource(bool)</slot>
</slots>
</ui>