-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathVideoView.ui
117 lines (117 loc) · 2.71 KB
/
VideoView.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
<?xml version="1.0" encoding="UTF-8"?>
<ui version="4.0">
<class>VideoViewClass</class>
<widget class="QMainWindow" name="VideoViewClass">
<property name="geometry">
<rect>
<x>0</x>
<y>0</y>
<width>630</width>
<height>320</height>
</rect>
</property>
<property name="windowTitle">
<string>VideoView</string>
</property>
<widget class="QWidget" name="centralWidget">
<widget class="QPushButton" name="play_button">
<property name="geometry">
<rect>
<x>20</x>
<y>70</y>
<width>150</width>
<height>150</height>
</rect>
</property>
<property name="text">
<string>播放</string>
</property>
</widget>
<widget class="QPushButton" name="compress_button">
<property name="geometry">
<rect>
<x>240</x>
<y>70</y>
<width>150</width>
<height>150</height>
</rect>
</property>
<property name="text">
<string>壓縮</string>
</property>
</widget>
<widget class="QPushButton" name="decoded_button">
<property name="geometry">
<rect>
<x>460</x>
<y>70</y>
<width>150</width>
<height>150</height>
</rect>
</property>
<property name="text">
<string>解壓縮</string>
</property>
</widget>
</widget>
</widget>
<layoutdefault spacing="6" margin="11"/>
<resources>
<include location="VideoView.qrc"/>
</resources>
<connections>
<connection>
<sender>play_button</sender>
<signal>clicked()</signal>
<receiver>VideoViewClass</receiver>
<slot>openPlayVideoWindow_slot()</slot>
<hints>
<hint type="sourcelabel">
<x>132</x>
<y>137</y>
</hint>
<hint type="destinationlabel">
<x>152</x>
<y>394</y>
</hint>
</hints>
</connection>
<connection>
<sender>compress_button</sender>
<signal>clicked()</signal>
<receiver>VideoViewClass</receiver>
<slot>openCompressingWindow_slot()</slot>
<hints>
<hint type="sourcelabel">
<x>351</x>
<y>167</y>
</hint>
<hint type="destinationlabel">
<x>396</x>
<y>491</y>
</hint>
</hints>
</connection>
<connection>
<sender>decoded_button</sender>
<signal>clicked()</signal>
<receiver>VideoViewClass</receiver>
<slot>openDecodeWindow_slot()</slot>
<hints>
<hint type="sourcelabel">
<x>527</x>
<y>174</y>
</hint>
<hint type="destinationlabel">
<x>554</x>
<y>377</y>
</hint>
</hints>
</connection>
</connections>
<slots>
<slot>openPlayVideoWindow_slot()</slot>
<slot>openCompressingWindow_slot()</slot>
<slot>openDecodeWindow_slot()</slot>
</slots>
</ui>