summaryrefslogtreecommitdiff
path: root/Source/Core/DolphinQt/Config/CheatWarningWidget.h
blob: 241cd44cba21dea322396565e9efa8225590b46d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
// Copyright 2017 Dolphin Emulator Project
// SPDX-License-Identifier: GPL-2.0-or-later

#pragma once

#include <QWidget>

#include <string>

class QLabel;
class QPushButton;

class CheatWarningWidget : public QWidget
{
  Q_OBJECT
public:
  explicit CheatWarningWidget(std::string game_id, bool restart_required, QWidget* parent);

signals:
  void OpenCheatEnableSettings();

private:
  void CreateWidgets();
  void ConnectWidgets();

  void Update(bool running);

  QLabel* m_text;
  QPushButton* m_config_button;
  const std::string m_game_id;
  bool m_restart_required;
};