leocad/common/lc_viewwidget.h

51 lines
1.3 KiB
C
Raw Normal View History

#pragma once
2013-08-09 04:57:18 +00:00
#include <QGLWidget>
2020-12-17 17:59:11 -08:00
class lcViewWidget : public QGLWidget
2013-08-09 04:57:18 +00:00
{
public:
2020-12-17 17:59:11 -08:00
lcViewWidget(QWidget* Parent, lcGLWidget* View);
~lcViewWidget();
2013-08-09 04:57:18 +00:00
2020-12-13 12:05:54 -08:00
lcGLWidget* GetView() const
{
return mView;
}
2013-08-09 04:57:18 +00:00
2020-12-13 12:05:54 -08:00
void SetView(lcGLWidget* View);
void SetPreviewPosition(const QRect& ParentRect);
QSize sizeHint() const override;
2013-08-09 04:57:18 +00:00
2020-12-13 12:05:54 -08:00
protected:
2020-12-05 08:45:29 -08:00
float GetDeviceScale() const
2014-04-08 01:04:32 +00:00
{
#if (QT_VERSION >= QT_VERSION_CHECK(5, 0, 0))
return windowHandle()->devicePixelRatio();
#else
return 1.0f;
#endif
2020-12-17 17:59:11 -08:00
}
2014-04-08 01:04:32 +00:00
void resizeGL(int Width, int Height) override;
void paintGL() override;
2020-12-11 18:01:04 -08:00
void focusInEvent(QFocusEvent* FocusEvent) override;
void focusOutEvent(QFocusEvent* FocusEvent) override;
void keyPressEvent(QKeyEvent* KeyEvent) override;
void keyReleaseEvent(QKeyEvent* KeyEvent) override;
void mousePressEvent(QMouseEvent* MouseEvent) override;
void mouseReleaseEvent(QMouseEvent* MouseEvent) override;
void mouseDoubleClickEvent(QMouseEvent* MouseEvent) override;
void mouseMoveEvent(QMouseEvent* MouseEvent) override;
void wheelEvent(QWheelEvent* WheelEvent) override;
void dragEnterEvent(QDragEnterEvent* DragEnterEvent) override;
void dragLeaveEvent(QDragLeaveEvent* DragLeaveEvent) override;
void dragMoveEvent(QDragMoveEvent* DragMoveEvent) override;
void dropEvent(QDropEvent* DropEvent) override;
2015-02-10 22:34:04 +00:00
2020-12-13 12:05:54 -08:00
lcGLWidget* mView;
2020-11-14 12:47:55 -08:00
QSize mPreferredSize;
2015-02-10 22:34:04 +00:00
int mWheelAccumulator;
2013-08-09 04:57:18 +00:00
};