Qt
6.x
The Qt SDK
Toggle main menu visibility
Main Page
Related Pages
Namespaces
Namespace List
Namespace Members
All
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
Functions
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
Variables
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
y
z
Typedefs
a
b
c
d
e
f
g
h
i
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
Enumerations
_
a
b
c
d
e
f
g
h
i
k
l
m
n
o
p
q
r
s
t
u
v
w
Enumerator
_
a
b
c
d
e
f
g
h
i
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
Classes
Class List
Class Hierarchy
Class Members
All
:
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
~
Functions
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
~
Variables
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
Typedefs
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
y
Enumerations
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
Enumerator
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
Properties
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
Related Symbols
:
a
b
c
d
e
f
g
h
i
j
l
m
n
o
p
q
r
s
t
u
v
w
Files
File List
File Members
All
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
Functions
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
Variables
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
Typedefs
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
Enumerations
_
a
b
c
d
e
f
g
h
i
j
l
m
n
o
p
q
r
s
t
u
v
w
x
z
Enumerator
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
Macros
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
•
All
Classes
Namespaces
Files
Functions
Variables
Typedefs
Enumerations
Enumerator
Properties
Friends
Macros
Pages
Loading...
Searching...
No Matches
qvideowidget_p.h
Go to the documentation of this file.
1
// Copyright (C) 2021 The Qt Company Ltd.
2
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR LGPL-3.0-only OR GPL-2.0-only OR GPL-3.0-only
3
4
#ifndef QVIDEOWIDGET_P_H
5
#define QVIDEOWIDGET_P_H
6
7
//
8
// W A R N I N G
9
// -------------
10
//
11
// This file is not part of the Qt API. It exists purely as an
12
// implementation detail. This header file may change from version to
13
// version without notice, or even be removed.
14
//
15
// We mean it.
16
//
17
18
#include <QtMultimediaWidgets/qtmultimediawidgetsglobal.h>
19
#include <
qvideoframe.h
>
20
#include "
qvideowidget.h
"
21
#include "private/qglobal_p.h"
22
23
QT_BEGIN_NAMESPACE
24
25
class
QObject
;
26
class
QVideoWindow
;
27
28
class
QVideoWidgetPrivate
29
{
30
Q_DECLARE_PUBLIC(
QVideoWidget
)
31
public
:
32
QVideoWidget
*
q_ptr
=
nullptr
;
33
Qt::AspectRatioMode
aspectRatioMode
=
Qt::KeepAspectRatio
;
34
Qt::WindowFlags
nonFullScreenFlags
;
35
bool
wasFullScreen
=
false
;
36
37
QVideoWindow
*
videoWindow
=
nullptr
;
38
QWidget
*
windowContainer
=
nullptr
;
39
QPoint
nonFullscreenPos
;
40
41
bool
createBackend
();
42
};
43
44
QT_END_NAMESPACE
45
46
47
#endif
QObject
\inmodule QtCore
Definition
qobject.h:90
QPoint
\inmodule QtCore\reentrant
Definition
qpoint.h:23
QVideoWidgetPrivate
Definition
qvideowidget_p.h:29
QVideoWidgetPrivate::wasFullScreen
bool wasFullScreen
Definition
qvideowidget_p.h:35
QVideoWidgetPrivate::videoWindow
QVideoWindow * videoWindow
Definition
qvideowidget_p.h:37
QVideoWidgetPrivate::nonFullscreenPos
QPoint nonFullscreenPos
Definition
qvideowidget_p.h:39
QVideoWidgetPrivate::nonFullScreenFlags
Qt::WindowFlags nonFullScreenFlags
Definition
qvideowidget_p.h:34
QVideoWidgetPrivate::aspectRatioMode
Qt::AspectRatioMode aspectRatioMode
Definition
qvideowidget_p.h:33
QVideoWidgetPrivate::createBackend
bool createBackend()
QVideoWidgetPrivate::windowContainer
QWidget * windowContainer
Definition
qvideowidget_p.h:38
QVideoWidgetPrivate::q_ptr
QVideoWidget * q_ptr
Definition
qvideowidget_p.h:32
QVideoWidget
The QVideoWidget class provides a widget which presents video produced by a media object.
Definition
qvideowidget.h:17
QVideoWindow
Definition
qvideowindow_p.h:96
QWidget
The QWidget class is the base class of all user interface objects.
Definition
qwidget.h:99
QT_BEGIN_NAMESPACE
Combined button and popup list for selecting options.
Definition
qstandardpaths_haiku.cpp:21
QT_END_NAMESPACE
Definition
qsharedpointer.cpp:1545
Qt::AspectRatioMode
AspectRatioMode
Definition
qnamespace.h:1185
Qt::KeepAspectRatio
@ KeepAspectRatio
Definition
qnamespace.h:1187
qvideoframe.h
qvideowidget.h
qtmultimedia
src
multimediawidgets
qvideowidget_p.h
Generated by
1.9.7