动画背景待处理

This commit is contained in:
rankun 2019-01-25 12:37:26 +08:00
commit 7b6a7dfcfc
2 changed files with 86 additions and 12 deletions

View file

@ -118,8 +118,17 @@ VideoForm::VideoForm(const QString& serial, QWidget *parent) :
bool vertical = size().height() > size().width(); bool vertical = size().height() > size().width();
updateStyleSheet(vertical); updateStyleSheet(vertical);
/*
ui->videoWidget->hide(); ui->videoWidget->hide();
//ui->loadingWidget->setAutoFillBackground(true);
//ui->quickWidget->setClearColor(QColor(Qt::transparent));
//ui->quickWidget->setSource(QUrl(QString::fromUtf8("qrc:/qml/pinwheel.qml")));
//ui->quickWidget->show();
/*
QWidget* test = new QWidget(this);
test->setGeometry(QRect(0, 200, 170, 370));
test->setAutoFillBackground(false);
test->show();
// qquickwidget // qquickwidget
QQuickWidget* pinwheel = new QQuickWidget(this); QQuickWidget* pinwheel = new QQuickWidget(this);
pinwheel->setObjectName(QString::fromUtf8("pinwheel")); pinwheel->setObjectName(QString::fromUtf8("pinwheel"));
@ -127,9 +136,12 @@ VideoForm::VideoForm(const QString& serial, QWidget *parent) :
pinwheel->setResizeMode(QQuickWidget::SizeRootObjectToView); pinwheel->setResizeMode(QQuickWidget::SizeRootObjectToView);
pinwheel->setSource(QUrl(QString::fromUtf8("qrc:/qml/pinwheel.qml"))); pinwheel->setSource(QUrl(QString::fromUtf8("qrc:/qml/pinwheel.qml")));
pinwheel->setClearColor(QColor(Qt::transparent)); pinwheel->setClearColor(QColor(Qt::transparent));
pinwheel->setGeometry(ui->videoWidget->geometry()); pinwheel->setGeometry(QRect(0, 0, 170, 170));
//pinwheel->setGeometry(ui->videoWidget->geometry());
pinwheel->setAutoFillBackground(true);
pinwheel->show(); pinwheel->show();
*/ */
ToolForm* mw = new ToolForm(this, ToolForm::AP_OUTSIDE_RIGHT); ToolForm* mw = new ToolForm(this, ToolForm::AP_OUTSIDE_RIGHT);
mw->move(pos().x() + geometry().width(), pos().y() + 30); mw->move(pos().x() + geometry().width(), pos().y() + 30);
mw->show(); mw->show();

View file

@ -19,7 +19,7 @@
border-width: 150px 142px 85px 142px; border-width: 150px 142px 85px 142px;
}</string> }</string>
</property> </property>
<layout class="QHBoxLayout" name="horizontalLayout"> <layout class="QVBoxLayout" name="verticalLayout">
<property name="spacing"> <property name="spacing">
<number>0</number> <number>0</number>
</property> </property>
@ -35,12 +35,74 @@
<property name="bottomMargin"> <property name="bottomMargin">
<number>62</number> <number>62</number>
</property> </property>
<item>
<widget class="QWidget" name="loadingWidget" native="true">
<property name="autoFillBackground">
<bool>false</bool>
</property>
<property name="styleSheet">
<string notr="true">background-color: rgb(0, 0, 0);</string>
</property>
<layout class="QHBoxLayout" name="horizontalLayout">
<property name="spacing">
<number>0</number>
</property>
<property name="leftMargin">
<number>0</number>
</property>
<property name="topMargin">
<number>0</number>
</property>
<property name="rightMargin">
<number>0</number>
</property>
<property name="bottomMargin">
<number>0</number>
</property>
<item alignment="Qt::AlignHCenter|Qt::AlignVCenter">
<widget class="QQuickWidget" name="quickWidget">
<property name="minimumSize">
<size>
<width>170</width>
<height>170</height>
</size>
</property>
<property name="maximumSize">
<size>
<width>170</width>
<height>170</height>
</size>
</property>
<property name="autoFillBackground">
<bool>false</bool>
</property>
<property name="styleSheet">
<string notr="true">background-color: rgb(0, 0, 0);</string>
</property>
<property name="resizeMode">
<enum>QQuickWidget::SizeRootObjectToView</enum>
</property>
<property name="source">
<url>
<string>file:///G:/mygitcode/QtScrcpy/QtScrcpy/qml/pinwheel.qml</string>
</url>
</property>
</widget>
</item>
</layout>
</widget>
</item>
<item> <item>
<widget class="QYUVOpenGLWidget" name="videoWidget" native="true"/> <widget class="QYUVOpenGLWidget" name="videoWidget" native="true"/>
</item> </item>
</layout> </layout>
</widget> </widget>
<customwidgets> <customwidgets>
<customwidget>
<class>QQuickWidget</class>
<extends>QWidget</extends>
<header>QtQuickWidgets/QQuickWidget</header>
</customwidget>
<customwidget> <customwidget>
<class>QYUVOpenGLWidget</class> <class>QYUVOpenGLWidget</class>
<extends>QWidget</extends> <extends>QWidget</extends>