diff --git a/modules/gui/qt/dialogs/extended/extended_panels.cpp b/modules/gui/qt/dialogs/extended/extended_panels.cpp index 099921cdee0ca90f932df359e1efd20128fd905e..9b0c111986ecb3f8b0972543c7e382b13170bbd5 100644 --- a/modules/gui/qt/dialogs/extended/extended_panels.cpp +++ b/modules/gui/qt/dialogs/extended/extended_panels.cpp @@ -1135,12 +1135,8 @@ void Equalizer::build() for( i = 0 ; i < NB_PRESETS ; i ++ ) { QGraphicsScene scene; -#if HAS_QT56 qreal f_ratio = QApplication::primaryScreen()->devicePixelRatio(); QPixmap icon( 40 * f_ratio, 40 * f_ratio ); -#else - QPixmap icon( 40, 40 ); -#endif icon.fill( Qt::transparent ); QPainter painter( &icon ); for ( int j = 0; j < eqz_preset_10b[i].i_band; j++ ) diff --git a/modules/gui/qt/dialogs/preferences/simple_preferences.cpp b/modules/gui/qt/dialogs/preferences/simple_preferences.cpp index c9b90778a6e0bb99597dc08aa1292ce0213f2057..26a9ead2a21aee9c7ad8c23e38d7c1d6a6f08b9c 100644 --- a/modules/gui/qt/dialogs/preferences/simple_preferences.cpp +++ b/modules/gui/qt/dialogs/preferences/simple_preferences.cpp @@ -208,11 +208,7 @@ SPrefsCatList::SPrefsCatList( intf_thread_t *_p_intf, QWidget *_parent ) : CONNECT( mapper, mapped(int), this, switchPanel(int) ); QPixmap scaled; -#if HAS_QT56 qreal dpr = devicePixelRatioF(); -#else - qreal dpr = devicePixelRatio(); -#endif #define ADD_CATEGORY( button, label, ltooltip, icon, numb ) \ QToolButton * button = new QToolButton( this ); \ diff --git a/modules/gui/qt/qt.cpp b/modules/gui/qt/qt.cpp index a481489ba546ebaf74135753aeb1850e6e878aed..6bb0eefdb7a03052ce8d57c90960ee25bbbd8cd2 100644 --- a/modules/gui/qt/qt.cpp +++ b/modules/gui/qt/qt.cpp @@ -90,9 +90,6 @@ extern "C" char **environ; Q_IMPORT_PLUGIN(QtQmlPlugin) #endif - #if !HAS_QT56 - Q_IMPORT_PLUGIN(AccessibleFactory) - #endif #ifdef _WIN32 Q_IMPORT_PLUGIN(QWindowsVistaStylePlugin) Q_IMPORT_PLUGIN(QWindowsIntegrationPlugin) @@ -597,10 +594,8 @@ static void *Thread( void *obj ) p_intf->p_sys->p_compositor = vlc::Compositor::createCompositor(p_intf); -#if HAS_QT56 QApplication::setAttribute( Qt::AA_EnableHighDpiScaling ); QApplication::setAttribute( Qt::AA_UseHighDpiPixmaps ); -#endif #if QT_VERSION >= QT_VERSION_CHECK(5,14,0) QApplication::setHighDpiScaleFactorRoundingPolicy( Qt::HighDpiScaleFactorRoundingPolicy::RoundPreferFloor ); diff --git a/modules/gui/qt/qt.hpp b/modules/gui/qt/qt.hpp index c8a2241782e3886efcf9d93f4171ad058aeeea90..6306a0cd792f45cdf16d04bdd610cc5620fb1648 100644 --- a/modules/gui/qt/qt.hpp +++ b/modules/gui/qt/qt.hpp @@ -47,7 +47,6 @@ # error Update your Qt version to at least 5.9.0 #endif -#define HAS_QT56 ( QT_VERSION >= 0x050600 ) #define HAS_QT510 ( QT_VERSION >= 0x051000 ) enum { diff --git a/modules/gui/qt/util/imagehelper.cpp b/modules/gui/qt/util/imagehelper.cpp index fe588e63888aff42c05bca0188e1065dd1e54a73..144f9c3f3d3d1143e268a6e1e8cf42fd5ff96b3d 100644 --- a/modules/gui/qt/util/imagehelper.cpp +++ b/modules/gui/qt/util/imagehelper.cpp @@ -34,13 +34,9 @@ QPixmap ImageHelper::loadSvgToPixmap( const QString &path, qint32 i_width, qint32 i_height ) { -#if HAS_QT56 qreal ratio = QApplication::primaryScreen()->devicePixelRatio(); - QPixmap pixmap( QSize( i_width, i_height ) * ratio ); -#else - QPixmap pixmap( QSize( i_width, i_height ) ); -#endif + pixmap.fill( Qt::transparent ); @@ -51,9 +47,6 @@ QPixmap ImageHelper::loadSvgToPixmap( const QString &path, qint32 i_width, qint3 renderer.render( &painter ); painter.end(); -#if HAS_QT56 pixmap.setDevicePixelRatio( ratio ); -#endif - return pixmap; } diff --git a/modules/gui/qt/widgets/native/interface_widgets.cpp b/modules/gui/qt/widgets/native/interface_widgets.cpp index 39d6381dd5a24cc7602aba84f662f375bbdf20b3..80f3dc8fe1758f1423ac5cb7ea912cdd2cc03927 100644 --- a/modules/gui/qt/widgets/native/interface_widgets.cpp +++ b/modules/gui/qt/widgets/native/interface_widgets.cpp @@ -220,13 +220,8 @@ QSize VideoWidget::physicalSize() const QSize current_size = size(); -# if HAS_QT56 /* Android-like scaling */ current_size *= devicePixelRatioF(); -# else - /* OSX-like scaling */ - current_size *= devicePixelRatio(); -# endif return current_size; } @@ -361,11 +356,7 @@ void VideoWidget::mouseMoveEvent( QMouseEvent *event ) { QPointF current_pos = event->localPos(); -#if HAS_QT56 current_pos *= devicePixelRatioF(); -#else - current_pos *= devicePixelRatio(); -#endif vout_window_ReportMouseMoved( p_window, current_pos.x(), current_pos.y() ); showCursor(); event->accept();