2018-09-20 06:40:22 +00:00
|
|
|
|
#ifndef slic3r_GUI_App_hpp_
|
|
|
|
|
#define slic3r_GUI_App_hpp_
|
|
|
|
|
|
|
|
|
|
#include <string>
|
2018-09-20 23:33:41 +00:00
|
|
|
|
#include "PrintConfig.hpp"
|
2018-10-02 11:23:38 +00:00
|
|
|
|
#include "MainFrame.hpp"
|
2018-09-20 06:40:22 +00:00
|
|
|
|
|
|
|
|
|
#include <wx/app.h>
|
2018-10-01 13:09:31 +00:00
|
|
|
|
#include <wx/colour.h>
|
|
|
|
|
#include <wx/font.h>
|
2018-09-20 06:40:22 +00:00
|
|
|
|
|
|
|
|
|
#include <mutex>
|
|
|
|
|
#include <stack>
|
|
|
|
|
|
|
|
|
|
class wxMenuItem;
|
2018-09-20 23:33:41 +00:00
|
|
|
|
class wxMenuBar;
|
2018-09-20 06:40:22 +00:00
|
|
|
|
class wxTopLevelWindow;
|
2018-09-20 23:33:41 +00:00
|
|
|
|
class wxNotebook;
|
2018-09-20 06:40:22 +00:00
|
|
|
|
|
|
|
|
|
namespace Slic3r {
|
|
|
|
|
class AppConfig;
|
|
|
|
|
class PresetBundle;
|
|
|
|
|
class PresetUpdater;
|
2018-10-05 21:29:15 +00:00
|
|
|
|
class ModelObject;
|
2018-09-20 06:40:22 +00:00
|
|
|
|
|
|
|
|
|
namespace GUI
|
|
|
|
|
{
|
2018-10-05 21:29:15 +00:00
|
|
|
|
|
2018-10-04 09:12:55 +00:00
|
|
|
|
enum FileType
|
|
|
|
|
{
|
|
|
|
|
FT_STL,
|
|
|
|
|
FT_OBJ,
|
|
|
|
|
FT_AMF,
|
|
|
|
|
FT_3MF,
|
|
|
|
|
FT_PRUSA,
|
|
|
|
|
FT_GCODE,
|
|
|
|
|
FT_MODEL,
|
|
|
|
|
|
|
|
|
|
FT_INI,
|
|
|
|
|
FT_SVG,
|
|
|
|
|
|
|
|
|
|
FT_SIZE,
|
|
|
|
|
};
|
2018-10-05 21:29:15 +00:00
|
|
|
|
|
2018-10-04 09:12:55 +00:00
|
|
|
|
extern const wxString file_wildcards[FT_SIZE];
|
2018-10-05 21:29:15 +00:00
|
|
|
|
|
2018-09-20 23:33:41 +00:00
|
|
|
|
enum ConfigMenuIDs {
|
|
|
|
|
ConfigMenuWizard,
|
|
|
|
|
ConfigMenuSnapshots,
|
|
|
|
|
ConfigMenuTakeSnapshot,
|
|
|
|
|
ConfigMenuUpdate,
|
|
|
|
|
ConfigMenuPreferences,
|
|
|
|
|
ConfigMenuModeSimple,
|
|
|
|
|
ConfigMenuModeExpert,
|
|
|
|
|
ConfigMenuLanguage,
|
|
|
|
|
ConfigMenuFlashFirmware,
|
|
|
|
|
ConfigMenuCnt,
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
class Tab;
|
2018-09-20 06:40:22 +00:00
|
|
|
|
|
2018-10-03 13:14:52 +00:00
|
|
|
|
static wxString dots("<EFBFBD>", wxConvUTF8);
|
|
|
|
|
|
2018-09-20 06:40:22 +00:00
|
|
|
|
class GUI_App : public wxApp
|
|
|
|
|
{
|
2018-09-17 10:15:11 +00:00
|
|
|
|
bool no_plater{ false };
|
2018-09-20 06:40:22 +00:00
|
|
|
|
bool app_conf_exists{ false };
|
|
|
|
|
|
|
|
|
|
// Lock to guard the callback stack
|
|
|
|
|
std::mutex callback_register;
|
|
|
|
|
// callbacks registered to run during idle event.
|
|
|
|
|
std::stack<std::function<void()>> m_cb{};
|
|
|
|
|
|
2018-10-01 13:09:31 +00:00
|
|
|
|
wxColour m_color_label_modified;
|
|
|
|
|
wxColour m_color_label_sys;
|
|
|
|
|
wxColour m_color_label_default;
|
|
|
|
|
|
|
|
|
|
wxFont m_small_font;
|
|
|
|
|
wxFont m_bold_font;
|
|
|
|
|
|
2018-10-02 11:23:38 +00:00
|
|
|
|
wxLocale* m_wxLocale{ nullptr };
|
2018-10-01 13:09:31 +00:00
|
|
|
|
|
2018-09-20 06:40:22 +00:00
|
|
|
|
public:
|
|
|
|
|
bool OnInit() override;
|
|
|
|
|
GUI_App() : wxApp() {}
|
|
|
|
|
|
2018-10-01 13:09:31 +00:00
|
|
|
|
unsigned get_colour_approx_luma(const wxColour &colour);
|
|
|
|
|
void init_label_colours();
|
|
|
|
|
void update_label_colours_from_appconfig();
|
|
|
|
|
void init_fonts();
|
|
|
|
|
void set_label_clr_modified(const wxColour& clr);
|
|
|
|
|
void set_label_clr_sys(const wxColour& clr);
|
|
|
|
|
|
|
|
|
|
const wxColour& get_label_clr_modified(){ return m_color_label_modified; }
|
|
|
|
|
const wxColour& get_label_clr_sys() { return m_color_label_sys; }
|
|
|
|
|
const wxColour& get_label_clr_default() { return m_color_label_default; }
|
|
|
|
|
|
|
|
|
|
const wxFont& small_font() { return m_small_font; }
|
|
|
|
|
const wxFont& bold_font() { return m_bold_font; }
|
|
|
|
|
|
2018-09-20 06:40:22 +00:00
|
|
|
|
void recreate_GUI();
|
|
|
|
|
void system_info();
|
2018-09-20 11:12:35 +00:00
|
|
|
|
void open_model(wxWindow *parent, wxArrayString& input_files);
|
2018-09-20 06:40:22 +00:00
|
|
|
|
static bool catch_error(std::function<void()> cb,
|
|
|
|
|
// wxMessageDialog* message_dialog,
|
|
|
|
|
const std::string& err);
|
|
|
|
|
// void notify(/*message*/);
|
|
|
|
|
void update_ui_from_settings();
|
|
|
|
|
void CallAfter(std::function<void()> cb);
|
2018-10-17 12:01:10 +00:00
|
|
|
|
|
|
|
|
|
void window_pos_save(wxTopLevelWindow* window, const std::string &name);
|
|
|
|
|
void window_pos_restore(wxTopLevelWindow* window, const std::string &name);
|
|
|
|
|
void window_pos_sanitize(wxTopLevelWindow* window);
|
2018-10-02 11:23:38 +00:00
|
|
|
|
|
|
|
|
|
bool select_language(wxArrayString & names, wxArrayLong & identifiers);
|
2018-09-20 23:33:41 +00:00
|
|
|
|
bool load_language();
|
2018-10-02 11:23:38 +00:00
|
|
|
|
void save_language();
|
|
|
|
|
void get_installed_languages(wxArrayString & names, wxArrayLong & identifiers);
|
|
|
|
|
|
2018-10-10 11:53:45 +00:00
|
|
|
|
Tab* get_tab(Preset::Type type);
|
2018-09-20 23:33:41 +00:00
|
|
|
|
ConfigMenuIDs get_view_mode();
|
2018-10-03 13:14:52 +00:00
|
|
|
|
void update_mode();
|
2018-10-02 11:23:38 +00:00
|
|
|
|
|
2018-09-20 23:33:41 +00:00
|
|
|
|
void add_config_menu(wxMenuBar *menu);
|
|
|
|
|
bool check_unsaved_changes();
|
2018-10-01 13:09:31 +00:00
|
|
|
|
bool checked_tab(Tab* tab);
|
|
|
|
|
void delete_tab_from_list(Tab* tab);
|
|
|
|
|
void load_current_presets();
|
2018-09-20 06:40:22 +00:00
|
|
|
|
|
2018-10-04 14:43:10 +00:00
|
|
|
|
Sidebar& sidebar();
|
|
|
|
|
ObjectManipulation* obj_manipul();
|
2018-10-05 21:29:15 +00:00
|
|
|
|
ObjectList* obj_list();
|
2018-10-08 14:27:38 +00:00
|
|
|
|
Plater* plater();
|
2018-10-11 13:57:09 +00:00
|
|
|
|
wxGLCanvas* canvas3D();
|
2018-10-05 21:29:15 +00:00
|
|
|
|
std::vector<ModelObject*> *model_objects();
|
2018-10-04 14:43:10 +00:00
|
|
|
|
|
2018-09-20 06:40:22 +00:00
|
|
|
|
AppConfig* app_config{ nullptr };
|
|
|
|
|
PresetBundle* preset_bundle{ nullptr };
|
|
|
|
|
PresetUpdater* preset_updater{ nullptr };
|
|
|
|
|
MainFrame* mainframe{ nullptr };
|
2018-09-20 23:33:41 +00:00
|
|
|
|
|
|
|
|
|
wxNotebook* tab_panel() const ;
|
|
|
|
|
|
|
|
|
|
std::vector<Tab *> tabs_list;
|
|
|
|
|
|
2018-09-20 06:40:22 +00:00
|
|
|
|
};
|
2018-09-20 23:33:41 +00:00
|
|
|
|
DECLARE_APP(GUI_App)
|
2018-09-20 06:40:22 +00:00
|
|
|
|
|
|
|
|
|
} // GUI
|
|
|
|
|
} //Slic3r
|
|
|
|
|
|
|
|
|
|
#endif // slic3r_GUI_App_hpp_
|