35 lines
681 B
C++
35 lines
681 B
C++
// Copyright 2017 Dolphin Emulator Project
|
|
// Licensed under GPLv2+
|
|
// Refer to the license.txt file included.
|
|
|
|
#pragma once
|
|
|
|
#include "Common/Flag.h"
|
|
#include "DolphinQt/QtUtils/ElidedButton.h"
|
|
|
|
class ControlReference;
|
|
class MappingWidget;
|
|
class QEvent;
|
|
class QMouseEvent;
|
|
|
|
class MappingButton : public ElidedButton
|
|
{
|
|
Q_OBJECT
|
|
public:
|
|
MappingButton(MappingWidget* widget, ControlReference* ref, bool indicator);
|
|
|
|
void Detect();
|
|
bool IsInput() const;
|
|
|
|
private:
|
|
void Clear();
|
|
void UpdateIndicator();
|
|
void ConfigChanged();
|
|
void AdvancedPressed();
|
|
|
|
void mouseReleaseEvent(QMouseEvent* event) override;
|
|
|
|
MappingWidget* m_parent;
|
|
ControlReference* m_reference;
|
|
};
|