mirror of
https://github.com/SoftFever/OrcaSlicer.git
synced 2025-07-25 15:44:12 -06:00

+ ProjectDropDialog: wxRadiloBox was changes to the wxStaticBox with wxRadioButtons because of dark mode colors update + Preferences: Fixed update of the text colors
63 lines
1.9 KiB
C++
63 lines
1.9 KiB
C++
#ifndef slic3r_Preferences_hpp_
|
|
#define slic3r_Preferences_hpp_
|
|
|
|
#include "GUI.hpp"
|
|
#include "GUI_Utils.hpp"
|
|
|
|
#include <wx/dialog.h>
|
|
#include <map>
|
|
|
|
class wxRadioBox;
|
|
class wxColourPickerCtrl;
|
|
|
|
namespace Slic3r {
|
|
namespace GUI {
|
|
|
|
class ConfigOptionsGroup;
|
|
|
|
class PreferencesDialog : public DPIDialog
|
|
{
|
|
std::map<std::string, std::string> m_values;
|
|
std::shared_ptr<ConfigOptionsGroup> m_optgroup_general;
|
|
std::shared_ptr<ConfigOptionsGroup> m_optgroup_camera;
|
|
std::shared_ptr<ConfigOptionsGroup> m_optgroup_gui;
|
|
#if ENABLE_ENVIRONMENT_MAP
|
|
std::shared_ptr<ConfigOptionsGroup> m_optgroup_render;
|
|
#endif // ENABLE_ENVIRONMENT_MAP
|
|
wxSizer* m_icon_size_sizer;
|
|
wxColourPickerCtrl* m_sys_colour {nullptr};
|
|
wxColourPickerCtrl* m_mod_colour {nullptr};
|
|
bool isOSX {false};
|
|
bool m_settings_layout_changed {false};
|
|
bool m_seq_top_layer_only_changed{ false };
|
|
#if ENABLE_GCODE_LINES_ID_IN_H_SLIDER
|
|
bool m_seq_top_gcode_indices_changed{ false };
|
|
#endif // ENABLE_GCODE_LINES_ID_IN_H_SLIDER
|
|
bool m_recreate_GUI{false};
|
|
|
|
public:
|
|
explicit PreferencesDialog(wxWindow* parent);
|
|
~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; }
|
|
#if ENABLE_GCODE_LINES_ID_IN_H_SLIDER
|
|
bool seq_seq_top_gcode_indices_changed() const { return m_seq_top_gcode_indices_changed; }
|
|
#endif // ENABLE_GCODE_LINES_ID_IN_H_SLIDER
|
|
bool recreate_GUI() const { return m_recreate_GUI; }
|
|
void build();
|
|
void accept(wxEvent&);
|
|
|
|
protected:
|
|
void on_dpi_changed(const wxRect &suggested_rect) override;
|
|
void layout();
|
|
void create_icon_size_slider();
|
|
void create_settings_mode_widget();
|
|
void create_settings_text_color_widget();
|
|
};
|
|
|
|
} // GUI
|
|
} // Slic3r
|
|
|
|
|
|
#endif /* slic3r_Preferences_hpp_ */
|