mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-21 05:09:34 -06:00
DolphinQt: Rework TAS input threading, part 2 (analog inputs)
This commit is contained in:
29
Source/Core/DolphinQt/TAS/TASSpinBox.h
Normal file
29
Source/Core/DolphinQt/TAS/TASSpinBox.h
Normal file
@ -0,0 +1,29 @@
|
||||
// Copyright 2023 Dolphin Emulator Project
|
||||
// SPDX-License-Identifier: GPL-2.0-or-later
|
||||
|
||||
#pragma once
|
||||
|
||||
#include <QSpinBox>
|
||||
|
||||
#include "DolphinQt/TAS/TASControlState.h"
|
||||
|
||||
class TASInputWindow;
|
||||
|
||||
class TASSpinBox : public QSpinBox
|
||||
{
|
||||
Q_OBJECT
|
||||
public:
|
||||
explicit TASSpinBox(QWidget* parent = nullptr);
|
||||
|
||||
// Can be called from the CPU thread
|
||||
int GetValue() const;
|
||||
// Must be called from the CPU thread
|
||||
void OnControllerValueChanged(int new_value);
|
||||
|
||||
private slots:
|
||||
void OnUIValueChanged(int new_value);
|
||||
void ApplyControllerValueChange();
|
||||
|
||||
private:
|
||||
TASControlState m_state;
|
||||
};
|
Reference in New Issue
Block a user