Merge branch 'next' into touch_return_option

This commit is contained in:
GullCode 2022-05-03 14:31:03 +02:00 committed by GitHub
commit 0580a528e4
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
31 changed files with 535 additions and 87 deletions

View file

@ -289,6 +289,39 @@ private:
};
};
class SetAppSettingsView : public View {
public:
SetAppSettingsView(NavigationView& nav);
void focus() override;
std::string title() const override { return "App Settings"; };
private:
Checkbox checkbox_load_app_settings {
{ 3 * 8, 2 * 16 },
25,
"Load app settings"
};
Checkbox checkbox_save_app_settings {
{ 3 * 8, 4 * 16 },
25,
"Save app settings"
};
Button button_save {
{ 2 * 8, 16 * 16, 12 * 8, 32 },
"Save"
};
Button button_cancel {
{ 16 * 8, 16 * 16, 12 * 8, 32 },
"Cancel",
};
};
class SetAudioView : public View {
public:
SetAudioView(NavigationView& nav);