2018-09-20 06:40:22 +00:00
|
|
|
|
#ifndef slic3r_MainFrame_hpp_
|
|
|
|
|
#define slic3r_MainFrame_hpp_
|
|
|
|
|
|
|
|
|
|
#include "PrintConfig.hpp"
|
|
|
|
|
|
|
|
|
|
#include <wx/frame.h>
|
|
|
|
|
|
|
|
|
|
#include <string>
|
|
|
|
|
#include <map>
|
|
|
|
|
|
2018-09-17 10:15:11 +00:00
|
|
|
|
#include "Plater.hpp"
|
2018-10-03 14:27:02 +00:00
|
|
|
|
#include "Event.hpp"
|
2018-09-17 10:15:11 +00:00
|
|
|
|
|
2018-09-20 06:40:22 +00:00
|
|
|
|
class wxMenuBar;
|
|
|
|
|
class wxNotebook;
|
|
|
|
|
class wxPanel;
|
|
|
|
|
class wxMenu;
|
|
|
|
|
class wxProgressDialog;
|
|
|
|
|
|
|
|
|
|
namespace Slic3r {
|
|
|
|
|
|
|
|
|
|
class ProgressStatusBar;
|
|
|
|
|
class AppController;
|
|
|
|
|
|
|
|
|
|
// #define _(s) Slic3r::GUI::I18N::translate((s))
|
|
|
|
|
|
|
|
|
|
namespace GUI
|
|
|
|
|
{
|
|
|
|
|
class Tab;
|
|
|
|
|
|
|
|
|
|
enum QuickSlice
|
|
|
|
|
{
|
|
|
|
|
qsUndef,
|
|
|
|
|
qsReslice,
|
|
|
|
|
qsSaveAs,
|
|
|
|
|
qsExportSVG,
|
|
|
|
|
qsExportPNG
|
|
|
|
|
};
|
|
|
|
|
|
2018-10-05 21:29:15 +00:00
|
|
|
|
struct PresetTab {
|
|
|
|
|
std::string name;
|
|
|
|
|
Tab* panel;
|
|
|
|
|
PrinterTechnology technology;
|
|
|
|
|
};
|
|
|
|
|
|
2018-09-20 06:40:22 +00:00
|
|
|
|
class MainFrame : public wxFrame
|
|
|
|
|
{
|
|
|
|
|
bool m_no_plater;
|
|
|
|
|
bool m_loaded;
|
|
|
|
|
int m_lang_ch_event;
|
|
|
|
|
int m_preferences_event;
|
|
|
|
|
|
|
|
|
|
wxString m_qs_last_input_file = wxEmptyString;
|
|
|
|
|
wxString m_qs_last_output_file = wxEmptyString;
|
|
|
|
|
wxString m_last_config = wxEmptyString;
|
|
|
|
|
|
2018-09-20 23:33:41 +00:00
|
|
|
|
AppController* m_appController { nullptr };
|
2018-09-20 06:40:22 +00:00
|
|
|
|
std::map<std::string, Tab*> m_options_tabs;
|
|
|
|
|
|
|
|
|
|
wxMenuItem* append_menu_item(wxMenu* menu,
|
|
|
|
|
int id,
|
|
|
|
|
const wxString& string,
|
|
|
|
|
const wxString& description,
|
|
|
|
|
std::function<void(wxCommandEvent& event)> cb,
|
|
|
|
|
const std::string& icon = "");
|
|
|
|
|
|
2018-09-20 23:33:41 +00:00
|
|
|
|
wxMenuItem* m_menu_item_reslice_now { nullptr };
|
|
|
|
|
wxMenu* m_plater_menu { nullptr };
|
|
|
|
|
wxMenu* m_object_menu { nullptr };
|
|
|
|
|
wxMenu* m_viewMenu { nullptr };
|
2018-09-20 06:40:22 +00:00
|
|
|
|
|
|
|
|
|
std::string get_base_name(const wxString full_name) const ;
|
|
|
|
|
std::string get_dir_name(const wxString full_name) const ;
|
2018-10-05 21:29:15 +00:00
|
|
|
|
|
2018-10-03 14:27:02 +00:00
|
|
|
|
void on_presets_changed(SimpleEvent&);
|
2018-10-05 21:29:15 +00:00
|
|
|
|
Tab* get_tab(const std::string& name);
|
|
|
|
|
|
2018-09-20 06:40:22 +00:00
|
|
|
|
public:
|
|
|
|
|
MainFrame() {}
|
|
|
|
|
MainFrame(const bool no_plater, const bool loaded);
|
|
|
|
|
~MainFrame() {}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
void init_tabpanel();
|
2018-09-17 10:15:11 +00:00
|
|
|
|
const std::map<std::string, Tab*>& options_tabs() const { return m_options_tabs; }
|
2018-09-20 23:33:41 +00:00
|
|
|
|
Tab* get_preset_tab(const std::string& name);
|
|
|
|
|
void create_preset_tabs();
|
|
|
|
|
void add_created_tab(Tab* panel);
|
2018-09-20 06:40:22 +00:00
|
|
|
|
void init_menubar();
|
|
|
|
|
|
|
|
|
|
void update_ui_from_settings();
|
|
|
|
|
bool is_loaded() const { return m_loaded; }
|
|
|
|
|
bool is_last_input_file() const { return !m_qs_last_input_file.IsEmpty(); }
|
|
|
|
|
|
|
|
|
|
void on_plater_selection_changed(const bool have_selection);
|
|
|
|
|
void slice_to_png();
|
|
|
|
|
void quick_slice(const int qs = qsUndef);
|
|
|
|
|
void reslice_now();
|
|
|
|
|
void repair_stl();
|
|
|
|
|
void export_config();
|
|
|
|
|
void load_config_file(wxString file = wxEmptyString);
|
|
|
|
|
void export_configbundle();
|
|
|
|
|
void load_configbundle(wxString file = wxEmptyString);
|
|
|
|
|
void load_config(const DynamicPrintConfig& config);
|
|
|
|
|
void select_tab(size_t tab) const;
|
|
|
|
|
void select_view(const std::string& direction);
|
|
|
|
|
|
2018-10-05 21:29:15 +00:00
|
|
|
|
std::vector<PresetTab>& get_preset_tabs();
|
2018-09-20 06:40:22 +00:00
|
|
|
|
|
2018-09-17 10:15:11 +00:00
|
|
|
|
Plater* m_plater { nullptr };
|
2018-09-20 23:33:41 +00:00
|
|
|
|
wxNotebook* m_tabpanel { nullptr };
|
|
|
|
|
wxProgressDialog* m_progress_dialog { nullptr };
|
2018-09-17 10:15:11 +00:00
|
|
|
|
ProgressStatusBar* m_statusbar { nullptr };
|
2018-09-20 06:40:22 +00:00
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
} // GUI
|
|
|
|
|
} //Slic3r
|
|
|
|
|
|
|
|
|
|
#endif // slic3r_MainFrame_hpp_
|