mirror of
https://git.sr.ht/~thestr4ng3r/chiaki
synced 2025-08-20 05:23:12 -07:00
Add Verbose Logging Setting
This commit is contained in:
parent
8d8b756df4
commit
862c11bc8f
10 changed files with 93 additions and 23 deletions
|
@ -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();
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue