Add Verbose Logging Setting

This commit is contained in:
Florian Märkl 2019-08-16 18:59:20 +02:00
commit 862c11bc8f
No known key found for this signature in database
GPG key ID: 125BC8A5A6A1E857
10 changed files with 93 additions and 23 deletions

View file

@ -23,6 +23,7 @@
class Settings;
class QListWidget;
class QComboBox;
class QCheckBox;
class SettingsDialog : public QDialog
{
@ -31,6 +32,8 @@ class SettingsDialog : public QDialog
private:
Settings *settings;
QCheckBox *log_verbose_check_box;
QComboBox *resolution_combo_box;
QComboBox *fps_combo_box;
@ -38,6 +41,8 @@ class SettingsDialog : public QDialog
QPushButton *delete_registered_host_button;
private slots:
void LogVerboseChanged();
void ResolutionSelected();
void FPSSelected();