mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-21 05:09:34 -06:00
VerifyWidget: Listen for Core::State OnEmulationStateChanged
This commit is contained in:
@ -15,6 +15,10 @@
|
||||
#include <QTextEdit>
|
||||
#include <QWidget>
|
||||
|
||||
namespace Core
|
||||
{
|
||||
enum class State;
|
||||
}
|
||||
namespace DiscIO
|
||||
{
|
||||
class Volume;
|
||||
@ -26,10 +30,8 @@ class VerifyWidget final : public QWidget
|
||||
public:
|
||||
explicit VerifyWidget(std::shared_ptr<DiscIO::Volume> volume);
|
||||
|
||||
private slots:
|
||||
void OnEmulationStateChanged();
|
||||
|
||||
private:
|
||||
void OnEmulationStateChanged(Core::State state);
|
||||
void CreateWidgets();
|
||||
std::pair<QCheckBox*, QLineEdit*> AddHashLine(QFormLayout* layout, QString text);
|
||||
void ConnectWidgets();
|
||||
|
Reference in New Issue
Block a user