tahoma2d/toonz/sources/include/toonzqt/glwidget_for_highdpi.h
2017-10-11 11:40:34 +09:00

26 lines
No EOL
890 B
C++

#pragma once
#ifndef GLWIDGET_FOR_HIGHDPI_H
#define GLWIDGET_FOR_HIGHDPI_H
#include <QOpenGLWidget>
#include <QApplication>
#include <QDesktopWidget>
#include "toonzqt/gutil.h"
// use obsolete QGLWidget instead of QOpenGLWidget for now...
// TODO: replace with the "modern" OpenGL source and transfer to QOpenGLWidget
class GLWidgetForHighDpi : public QOpenGLWidget {
public:
GLWidgetForHighDpi(QWidget *parent = Q_NULLPTR,
const QOpenGLWidget *shareWidget = Q_NULLPTR,
Qt::WindowFlags f = Qt::WindowFlags())
: QOpenGLWidget(parent, f) {}
// modify sizes for high DPI monitors
int width() const { return QOpenGLWidget::width() * getDevPixRatio(); }
int height() const { return QOpenGLWidget::height() * getDevPixRatio(); }
QRect rect() const { return QRect(0, 0, width(), height()); }
};
#endif