This commit is contained in:
enricoturri1966 2021-07-29 13:28:16 +02:00
commit 438439fd71
30 changed files with 2118 additions and 199 deletions

View file

@ -32,14 +32,14 @@ class PreferencesDialog : public DPIDialog
bool m_recreate_GUI{false};
public:
explicit PreferencesDialog(wxWindow* parent);
explicit PreferencesDialog(wxWindow* parent, int selected_tab = 0);
~PreferencesDialog() = default;
bool settings_layout_changed() const { return m_settings_layout_changed; }
bool seq_top_layer_only_changed() const { return m_seq_top_layer_only_changed; }
bool recreate_GUI() const { return m_recreate_GUI; }
void build();
void accept(wxEvent&);
void build(size_t selected_tab = 0);
void accept(wxEvent&);
protected:
void on_dpi_changed(const wxRect &suggested_rect) override;