mirror of
https://github.com/RetroDECK/Duckstation.git
synced 2024-11-28 00:25:41 +00:00
43 lines
1 KiB
C++
43 lines
1 KiB
C++
#pragma once
|
|
#include "common/types.h"
|
|
#include "common/window_info.h"
|
|
#include <QtWidgets/QWidget>
|
|
#include <optional>
|
|
|
|
class QtDisplayWidget final : public QWidget
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
QtDisplayWidget(QWidget* parent);
|
|
~QtDisplayWidget();
|
|
|
|
QPaintEngine* paintEngine() const override;
|
|
|
|
int scaledWindowWidth() const;
|
|
int scaledWindowHeight() const;
|
|
qreal devicePixelRatioFromScreen() const;
|
|
|
|
std::optional<WindowInfo> getWindowInfo() const;
|
|
|
|
void setRelativeMode(bool enabled);
|
|
|
|
Q_SIGNALS:
|
|
void windowFocusEvent();
|
|
void windowResizedEvent(int width, int height);
|
|
void windowRestoredEvent();
|
|
void windowClosedEvent();
|
|
void windowKeyEvent(int key_code, bool pressed);
|
|
void windowMouseMoveEvent(int x, int y);
|
|
void windowMouseButtonEvent(int button, bool pressed);
|
|
void windowMouseWheelEvent(const QPoint& angle_delta);
|
|
|
|
protected:
|
|
bool event(QEvent* event) override;
|
|
|
|
private:
|
|
QPoint m_relative_mouse_start_position{};
|
|
QPoint m_relative_mouse_last_position{};
|
|
bool m_relative_mouse_enabled = false;
|
|
};
|