2022-02-23 21:18:53 -05:00
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include <QCheckBox>
|
2022-08-15 11:14:37 -04:00
|
|
|
#include <QComboBox>
|
|
|
|
#include <QDialog>
|
2022-02-23 21:18:53 -05:00
|
|
|
#include <QLabel>
|
2022-08-15 11:14:37 -04:00
|
|
|
#include <QLineEdit>
|
|
|
|
#include <QListWidget>
|
2022-02-23 21:18:53 -05:00
|
|
|
#include <QPushButton>
|
|
|
|
|
|
|
|
class LauncherCore;
|
|
|
|
class LauncherWindow;
|
|
|
|
struct ProfileSettings;
|
|
|
|
|
|
|
|
class GamescopeSettingsWindow : public QDialog {
|
|
|
|
public:
|
2022-02-24 08:27:25 -05:00
|
|
|
GamescopeSettingsWindow(ProfileSettings& settings, LauncherCore& core, QWidget* parent = nullptr);
|
2022-02-23 21:18:53 -05:00
|
|
|
};
|