mirror of
https://git.sr.ht/~thestr4ng3r/chiaki
synced 2025-08-14 10:46:51 -07:00
Add Resolution and FPS Settings
This commit is contained in:
parent
cbf51a7f82
commit
686ef011f8
5 changed files with 115 additions and 0 deletions
|
@ -22,6 +22,7 @@
|
|||
|
||||
class Settings;
|
||||
class QListWidget;
|
||||
class QComboBox;
|
||||
|
||||
class SettingsDialog : public QDialog
|
||||
{
|
||||
|
@ -30,10 +31,16 @@ class SettingsDialog : public QDialog
|
|||
private:
|
||||
Settings *settings;
|
||||
|
||||
QComboBox *resolution_combo_box;
|
||||
QComboBox *fps_combo_box;
|
||||
|
||||
QListWidget *registered_hosts_list_widget;
|
||||
QPushButton *delete_registered_host_button;
|
||||
|
||||
private slots:
|
||||
void ResolutionSelected();
|
||||
void FPSSelected();
|
||||
|
||||
void UpdateRegisteredHosts();
|
||||
void UpdateRegisteredHostsButtons();
|
||||
void RegisterNewHost();
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue