mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-01-09 15:49:25 +01:00
a9b1c1f5f8
This apparently didn't compile on macOS six years ago before c++20, but it should be fine by now. While I'm at it, make the constants upper case per convention.
40 lines
801 B
C++
40 lines
801 B
C++
// Copyright 2018 Dolphin Emulator Project
|
|
// SPDX-License-Identifier: GPL-2.0-or-later
|
|
|
|
#pragma once
|
|
|
|
#include <QDialog>
|
|
|
|
#include "Common/CommonTypes.h"
|
|
|
|
class IRWidget : public QWidget
|
|
{
|
|
Q_OBJECT
|
|
public:
|
|
explicit IRWidget(QWidget* parent);
|
|
|
|
static constexpr u16 IR_MIN_X = 0;
|
|
static constexpr u16 IR_MIN_Y = 0;
|
|
static constexpr u16 IR_MAX_X = 1023;
|
|
static constexpr u16 IR_MAX_Y = 767;
|
|
|
|
signals:
|
|
void ChangedX(u16 x);
|
|
void ChangedY(u16 y);
|
|
|
|
public slots:
|
|
void SetX(u16 x);
|
|
void SetY(u16 y);
|
|
|
|
protected:
|
|
void paintEvent(QPaintEvent* event) override;
|
|
void mousePressEvent(QMouseEvent* event) override;
|
|
void mouseMoveEvent(QMouseEvent* event) override;
|
|
void handleMouseEvent(QMouseEvent* event);
|
|
|
|
private:
|
|
u16 m_x = 0;
|
|
u16 m_y = 0;
|
|
bool m_ignore_movement = false;
|
|
};
|