Commit 23a74e81 authored by Friedemann Kleint's avatar Friedemann Kleint
Browse files

QWindowVideoWidgetBackend: scale coordinates passed to control


Use native coordinates when setting the display rectangle.

Task-number: QTBUG-57145
Change-Id: I4783edcbee021e6020e8ca946f15cca8a1173589
Reviewed-by: default avatarMorten Johan Sørvig <morten.sorvig@qt.io>
Reviewed-by: default avatarYoann Lopes <yoann.lopes@qt.io>
Showing with 21 additions and 4 deletions
...@@ -55,6 +55,9 @@ ...@@ -55,6 +55,9 @@
#include <qboxlayout.h> #include <qboxlayout.h>
#include <qnamespace.h> #include <qnamespace.h>
#include <qwindow.h>
#include <private/qhighdpiscaling_p.h>
using namespace Qt; using namespace Qt;
QT_BEGIN_NAMESPACE QT_BEGIN_NAMESPACE
...@@ -372,11 +375,23 @@ QSize QWindowVideoWidgetBackend::sizeHint() const ...@@ -372,11 +375,23 @@ QSize QWindowVideoWidgetBackend::sizeHint() const
return m_windowControl->nativeSize(); return m_windowControl->nativeSize();
} }
void QWindowVideoWidgetBackend::updateDisplayRect()
{
QRect rect = m_widget->rect();
if (QHighDpiScaling::isActive()) {
const qreal factor = QHighDpiScaling::factor(m_widget->windowHandle());
if (!qFuzzyCompare(factor, qreal(1))) {
rect = QRectF(QPointF(rect.topLeft()) * factor,
QSizeF(rect.size()) * factor).toRect();
}
}
m_windowControl->setDisplayRect(rect);
}
void QWindowVideoWidgetBackend::showEvent() void QWindowVideoWidgetBackend::showEvent()
{ {
m_windowControl->setWinId(m_widget->winId()); m_windowControl->setWinId(m_widget->winId());
updateDisplayRect();
m_windowControl->setDisplayRect(m_widget->rect());
#if defined(Q_WS_WIN) #if defined(Q_WS_WIN)
m_widget->setUpdatesEnabled(false); m_widget->setUpdatesEnabled(false);
...@@ -392,12 +407,12 @@ void QWindowVideoWidgetBackend::hideEvent(QHideEvent *) ...@@ -392,12 +407,12 @@ void QWindowVideoWidgetBackend::hideEvent(QHideEvent *)
void QWindowVideoWidgetBackend::moveEvent(QMoveEvent *) void QWindowVideoWidgetBackend::moveEvent(QMoveEvent *)
{ {
m_windowControl->setDisplayRect(m_widget->rect()); updateDisplayRect();
} }
void QWindowVideoWidgetBackend::resizeEvent(QResizeEvent *) void QWindowVideoWidgetBackend::resizeEvent(QResizeEvent *)
{ {
m_windowControl->setDisplayRect(m_widget->rect()); updateDisplayRect();
} }
void QWindowVideoWidgetBackend::paintEvent(QPaintEvent *event) void QWindowVideoWidgetBackend::paintEvent(QPaintEvent *event)
......
...@@ -211,6 +211,8 @@ public: ...@@ -211,6 +211,8 @@ public:
#endif #endif
private: private:
void updateDisplayRect();
QMediaService *m_service; QMediaService *m_service;
QVideoWindowControl *m_windowControl; QVideoWindowControl *m_windowControl;
QWidget *m_widget; QWidget *m_widget;
......
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment