mirror of
https://github.com/jpd002/Play-.git
synced 2025-04-29 06:07:56 +03:00
35 lines
736 B
C
35 lines
736 B
C
![]() |
#ifndef SETTINGSDIALOG_H
|
||
|
#define SETTINGSDIALOG_H
|
||
|
|
||
|
#include <QDialog>
|
||
|
#include <QtWidgets/QListWidget>
|
||
|
|
||
|
#include "AppConfig.h"
|
||
|
|
||
|
namespace Ui {
|
||
|
class SettingsDialog;
|
||
|
}
|
||
|
|
||
|
class SettingsDialog : public QDialog
|
||
|
{
|
||
|
Q_OBJECT
|
||
|
|
||
|
public:
|
||
|
explicit SettingsDialog(QWidget *parent = 0);
|
||
|
~SettingsDialog();
|
||
|
void LoadPreferences();
|
||
|
|
||
|
private slots:
|
||
|
void on_checkBox_enable_highres_clicked(bool checked);
|
||
|
void checkBox_force_bilinear_filtering(bool checked);
|
||
|
void on_checkBox_enable_audio_clicked(bool checked);
|
||
|
void on_comboBox_presentation_mode_currentIndexChanged(int index);
|
||
|
|
||
|
private:
|
||
|
Ui::SettingsDialog *ui;
|
||
|
void changePage(QListWidgetItem *current, QListWidgetItem *previous);
|
||
|
|
||
|
};
|
||
|
|
||
|
#endif // SETTINGSDIALOG_H
|