◆ QVideoWidget() [1/2]
◆ QVideoWidget() [2/2]
◆ aspectRatioMode()
AspectRatioMode aspectRatioMode |
( |
| ) |
|
在文件 QVideoWidget.x 第 42 行定义.
42 {
43 return (AspectRatioMode)QtXnl.widget_get_int_value(nativehandle, Constant.QVIDEOWIDGET_ASPECTRATIOMODE);
44 }
◆ brightness()
在文件 QVideoWidget.x 第 46 行定义.
46 {
47 return QtXnl.widget_get_int_value(nativehandle, Constant.QVIDEOWIDGET_BRIGHTNESS);
48 }
◆ brightnessChanged()
void brightnessChanged |
( |
int |
brightness | ) |
|
在文件 QVideoWidget.x 第 90 行定义.
90 {
91 if (_l != nilptr){
92 _l.brightnessChanged(
this, brightness);
93 }
94 }
◆ contrast()
在文件 QVideoWidget.x 第 49 行定义.
49 {
50 return QtXnl.widget_get_int_value(nativehandle, Constant.QVIDEOWIDGET_CONTRAST);
51 }
◆ contrastChanged()
void contrastChanged |
( |
int |
contrast | ) |
|
在文件 QVideoWidget.x 第 95 行定义.
95 {
96 if (_l != nilptr){
97 _l.contrastChanged(
this, contrast);
98 }
99 }
◆ create() [1/2]
重载 QWidget .
在文件 QVideoWidget.x 第 15 行定义.
15 {
16 nativehandle = QtXnl.createQObject(QType.qtVideoWidget,
this, 0);
17 if (nativehandle == 0) {
18 return false;
19 }
20 return true;
21 }
◆ create() [2/2]
bool create |
( |
@NotNilptr QWidget |
parent | ) |
|
|
override |
重载 QWidget .
在文件 QVideoWidget.x 第 23 行定义.
23 {
24 nativehandle = QtXnl.createQObject(QType.qtVideoWidget,
this, parent.nativehandle);
25 if (nativehandle == 0) {
26 return false;
27 }
28 return true;
29 }
◆ fullScreenChanged()
void fullScreenChanged |
( |
bool |
fullScreen | ) |
|
在文件 QVideoWidget.x 第 85 行定义.
85 {
86 if (_l != nilptr){
87 _l.fullScreenChanged(
this, fullScreen);
88 }
89 }
◆ getOnVideoWidgetListener()
onVideoWidgetListener getOnVideoWidgetListener |
( |
| ) |
|
◆ hue()
在文件 QVideoWidget.x 第 52 行定义.
52 {
53 return QtXnl.widget_get_int_value(nativehandle, Constant.QVIDEOWIDGET_HUE);
54 }
◆ hueChanged()
void hueChanged |
( |
int |
hue | ) |
|
在文件 QVideoWidget.x 第 100 行定义.
100 {
101 if (_l != nilptr){
102 _l.hueChanged(
this, hue);
103 }
104 }
◆ mediaObject()
QMediaObject mediaObject |
( |
| ) |
|
|
package |
在文件 QVideoWidget.x 第 38 行定义.
38 {
39 return (QMediaObject)QtXnl.widget_get_object(nativehandle, Constant.QVIDEOWIDGET_MEDIAOBJECT);
40 }
◆ saturation()
在文件 QVideoWidget.x 第 55 行定义.
55 {
56 return QtXnl.widget_get_int_value(nativehandle, Constant.QVIDEOWIDGET_SATURATION);
57 }
◆ saturationChanged()
void saturationChanged |
( |
int |
saturation | ) |
|
在文件 QVideoWidget.x 第 105 行定义.
105 {
106 if (_l != nilptr){
107 _l.saturationChanged(
this, saturation);
108 }
109 }
◆ setAspectRatioMode()
void setAspectRatioMode |
( |
AspectRatioMode |
mode | ) |
|
在文件 QVideoWidget.x 第 68 行定义.
68 {
69 QtXnl.widget_set_vint_value(nativehandle, Constant.QVIDEOWIDGET_SETASPECTRATIOMODE, mode);
70 }
◆ setBrightness()
void setBrightness |
( |
int |
brightness | ) |
|
在文件 QVideoWidget.x 第 71 行定义.
71 {
72 QtXnl.widget_set_vint_value(nativehandle, Constant.QVIDEOWIDGET_SETBRIGHTNESS, brightness);
73 }
◆ setContrast()
void setContrast |
( |
int |
contrast | ) |
|
在文件 QVideoWidget.x 第 74 行定义.
74 {
75 QtXnl.widget_set_vint_value(nativehandle, Constant.QVIDEOWIDGET_SETCONTRAST, contrast);
76 }
◆ setFullScreen()
void setFullScreen |
( |
bool |
fullScreen | ) |
|
在文件 QVideoWidget.x 第 65 行定义.
65 {
66 QtXnl.widget_set_bool_value(nativehandle, Constant.QVIDEOWIDGET_SETFULLSCREEN, fullScreen);
67 }
◆ setHue()
在文件 QVideoWidget.x 第 77 行定义.
77 {
78 QtXnl.widget_set_vint_value(nativehandle, Constant.QVIDEOWIDGET_SETHUE, hue);
79 }
◆ setOnVideoWidgetListener()
void setOnVideoWidgetListener |
( |
onVideoWidgetListener |
l | ) |
|
◆ setSaturation()
void setSaturation |
( |
int |
saturation | ) |
|
在文件 QVideoWidget.x 第 80 行定义.
80 {
81 QtXnl.widget_set_vint_value(nativehandle, Constant.QVIDEOWIDGET_SETSATURATION, saturation);
82 }
◆ sizeHint()
在文件 QVideoWidget.x 第 59 行定义.
59 {
60 long lsize = QtXnl.long_get(nativehandle, Constant.QVIDEOWIDGET_SIZEHINT);
61 return new QSize(lsize >> 32 & 0xffffffff, lsize & 0xffffffff);
62 }
◆ _l