我想在 QVideoWidget 中显示其他一些小部件,以便我可以在全屏时控制视频的播放,如下代码:
<?xml version="1.0" encoding="UTF-8"?>
<ui version="4.0">
<class>VideoScreen</class>
<widget class="QMainWindow" name="VideoScreen">
<property name="geometry">
<rect>
<x>0</x>
<y>0</y>
<width>800</width>
<height>600</height>
</rect>
</property>
<property name="windowTitle">
<string>MainWindow</string>
</property>
<widget class="QVideoWidget" name="videoScreen">
<widget class="QPushButton" name="play">
<property name="geometry">
<rect>
<x>80</x>
<y>240</y>
<width>101</width>
<height>31</height>
</rect>
</property>
<property name="text">
<string>Play</string>
</property>
</widget>
<widget class="QPushButton" name="stop">
<property name="geometry">
<rect>
<x>280</x>
<y>170</y>
<width>101</width>
<height>31</height>
</rect>
</property>
<property name="text">
<string>Stop</string>
</property>
</widget>
</widget>
</widget>
<customwidgets>
<customwidget>
<class>QVideoWidget</class>
<extends>QWidget</extends>
<header>QVideoWidget</header>
<container>1</container>
</customwidget>
</customwidgets>
<resources/>
<connections/>
</ui>
(我使用设计器创建了一个 .ui 文件来显示 QMainWindow。在那里,我将中央小部件提升为 QVideoWidget 作为图像)。
当我播放视频时,这只是显示视频,没有其他小部件,例如我在设计器中添加的按钮。
我只是想问一下,我们可以将小部件添加到 QVideoWidget 然后让它们在显示视频时显示吗?