blob: 007610fca88b32d428d400dd979804ac5de8c067 (
plain)
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
|
<!DOCTYPE UI><UI version="3.3" stdsetdef="1">
<class>Voice_input_widget_ui</class>
<widget class="QWidget">
<property name="name">
<cstring>Form1</cstring>
</property>
<property name="geometry">
<rect>
<x>0</x>
<y>0</y>
<width>486</width>
<height>51</height>
</rect>
</property>
<hbox>
<property name="name">
<cstring>unnamed</cstring>
</property>
<widget class="QLabel">
<property name="name">
<cstring>label</cstring>
</property>
<property name="sizePolicy">
<sizepolicy>
<hsizetype>7</hsizetype>
<vsizetype>5</vsizetype>
<horstretch>0</horstretch>
<verstretch>0</verstretch>
</sizepolicy>
</property>
<property name="minimumSize">
<size>
<width>150</width>
<height>0</height>
</size>
</property>
<property name="text">
<string></string>
</property>
</widget>
<widget class="KPushButton">
<property name="name">
<cstring>buttonPlay</cstring>
</property>
<property name="text">
<string>&Play</string>
</property>
</widget>
<widget class="KPushButton">
<property name="name">
<cstring>buttonRecord</cstring>
</property>
<property name="text">
<string>&Record</string>
</property>
</widget>
<widget class="KPushButton">
<property name="name">
<cstring>buttonStop</cstring>
</property>
<property name="text">
<string>&Stop</string>
</property>
</widget>
</hbox>
</widget>
<connections>
<connection>
<sender>buttonRecord</sender>
<signal>pressed()</signal>
<receiver>Form1</receiver>
<slot>slotRecordPressed()</slot>
</connection>
<connection>
<sender>buttonStop</sender>
<signal>pressed()</signal>
<receiver>Form1</receiver>
<slot>slotStopPressed()</slot>
</connection>
<connection>
<sender>buttonStop</sender>
<signal><No Signal></signal>
<receiver>buttonStop</receiver>
<slot><No)</slot>
</connection>
<connection>
<sender>buttonPlay</sender>
<signal>pressed()</signal>
<receiver>Form1</receiver>
<slot>slotPlayPressed()</slot>
</connection>
</connections>
<slots>
<slot access="protected" specifier="pure virtual">slotRecordPressed()</slot>
<slot access="protected" specifier="pure virtual">slotPlayPressed()</slot>
<slot access="protected" specifier="pure virtual">slotStopPressed()</slot>
</slots>
<layoutdefaults spacing="6" margin="11"/>
<includehints>
<includehint>kpushbutton.h</includehint>
<includehint>kpushbutton.h</includehint>
<includehint>kpushbutton.h</includehint>
</includehints>
</UI>
|