2019-08-19 10:28:25 +00:00
|
|
|
#ifndef slic3r_MainFrame_hpp_
|
2018-09-20 06:40:22 +00:00
|
|
|
#define slic3r_MainFrame_hpp_
|
|
|
|
|
2018-11-26 13:41:58 +00:00
|
|
|
#include "libslic3r/PrintConfig.hpp"
|
2018-09-20 06:40:22 +00:00
|
|
|
|
|
|
|
#include <wx/frame.h>
|
2019-04-23 06:47:23 +00:00
|
|
|
#include <wx/settings.h>
|
2018-11-26 13:41:58 +00:00
|
|
|
#include <wx/string.h>
|
2019-07-12 13:36:01 +00:00
|
|
|
#include <wx/filehistory.h>
|
2018-09-20 06:40:22 +00:00
|
|
|
|
|
|
|
#include <string>
|
|
|
|
#include <map>
|
|
|
|
|
2019-04-02 10:00:50 +00:00
|
|
|
#include "GUI_Utils.hpp"
|
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 wxNotebook;
|
|
|
|
class wxProgressDialog;
|
|
|
|
|
|
|
|
namespace Slic3r {
|
|
|
|
|
|
|
|
class ProgressStatusBar;
|
|
|
|
|
|
|
|
namespace GUI
|
|
|
|
{
|
2018-12-14 14:27:34 +00:00
|
|
|
|
2018-09-20 06:40:22 +00:00
|
|
|
class Tab;
|
2018-12-14 14:27:34 +00:00
|
|
|
class PrintHostQueueDialog;
|
2018-09-20 06:40:22 +00:00
|
|
|
|
|
|
|
enum QuickSlice
|
|
|
|
{
|
2018-10-18 08:40:26 +00:00
|
|
|
qsUndef = 0,
|
|
|
|
qsReslice = 1,
|
|
|
|
qsSaveAs = 2,
|
|
|
|
qsExportSVG = 4,
|
|
|
|
qsExportPNG = 8
|
2018-09-20 06:40:22 +00:00
|
|
|
};
|
|
|
|
|
2018-10-05 21:29:15 +00:00
|
|
|
struct PresetTab {
|
|
|
|
std::string name;
|
|
|
|
Tab* panel;
|
|
|
|
PrinterTechnology technology;
|
|
|
|
};
|
|
|
|
|
2019-04-02 10:00:50 +00:00
|
|
|
class MainFrame : public DPIFrame
|
2018-09-20 06:40:22 +00:00
|
|
|
{
|
2018-12-19 16:38:41 +00:00
|
|
|
bool m_loaded {false};
|
2018-09-20 06:40:22 +00:00
|
|
|
|
|
|
|
wxString m_qs_last_input_file = wxEmptyString;
|
|
|
|
wxString m_qs_last_output_file = wxEmptyString;
|
|
|
|
wxString m_last_config = wxEmptyString;
|
2019-09-03 08:27:16 +00:00
|
|
|
#if 0
|
|
|
|
wxMenuItem* m_menu_item_repeat { nullptr }; // doesn't used now
|
|
|
|
#endif
|
2018-09-20 23:33:41 +00:00
|
|
|
wxMenuItem* m_menu_item_reslice_now { nullptr };
|
2018-09-20 06:40:22 +00:00
|
|
|
|
2018-12-14 14:27:34 +00:00
|
|
|
PrintHostQueueDialog *m_printhost_queue_dlg;
|
|
|
|
|
2019-04-13 12:45:35 +00:00
|
|
|
std::string get_base_name(const wxString &full_name, const char *extension = nullptr) const;
|
2019-01-09 09:43:17 +00:00
|
|
|
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-09 10:41:05 +00:00
|
|
|
void on_value_changed(wxCommandEvent&);
|
2018-10-05 21:29:15 +00:00
|
|
|
|
2019-05-14 13:00:24 +00:00
|
|
|
bool can_start_new_project() const;
|
2018-11-15 14:27:39 +00:00
|
|
|
bool can_save() const;
|
|
|
|
bool can_export_model() const;
|
2019-08-20 07:01:09 +00:00
|
|
|
bool can_export_toolpaths() const;
|
2019-05-02 11:46:39 +00:00
|
|
|
bool can_export_supports() const;
|
2018-11-15 14:27:39 +00:00
|
|
|
bool can_export_gcode() const;
|
2019-08-01 14:20:46 +00:00
|
|
|
bool can_send_gcode() const;
|
2020-03-06 14:33:30 +00:00
|
|
|
bool can_export_gcode_sd() const;
|
|
|
|
bool can_eject() const;
|
2019-01-21 11:34:28 +00:00
|
|
|
bool can_slice() const;
|
2018-11-16 11:31:06 +00:00
|
|
|
bool can_change_view() const;
|
2018-11-21 14:28:35 +00:00
|
|
|
bool can_select() const;
|
2019-05-14 09:57:39 +00:00
|
|
|
bool can_deselect() const;
|
2018-11-21 14:47:41 +00:00
|
|
|
bool can_delete() const;
|
2018-11-22 10:31:53 +00:00
|
|
|
bool can_delete_all() const;
|
2019-05-14 13:00:24 +00:00
|
|
|
bool can_reslice() const;
|
2018-11-15 14:27:39 +00:00
|
|
|
|
2019-04-30 11:51:36 +00:00
|
|
|
// MenuBar items changeable in respect to printer technology
|
|
|
|
enum MenuItems
|
|
|
|
{ // FFF SLA
|
|
|
|
miExport = 0, // Export G-code Export
|
2019-08-01 14:20:46 +00:00
|
|
|
miSend, // Send G-code Send to print
|
2019-04-30 11:51:36 +00:00
|
|
|
miMaterialTab, // Filament Settings Material Settings
|
|
|
|
};
|
|
|
|
|
|
|
|
// vector of a MenuBar items changeable in respect to printer technology
|
|
|
|
std::vector<wxMenuItem*> m_changeable_menu_items;
|
|
|
|
|
2019-07-12 13:36:01 +00:00
|
|
|
wxFileHistory m_recent_projects;
|
|
|
|
|
2019-04-02 10:00:50 +00:00
|
|
|
protected:
|
|
|
|
virtual void on_dpi_changed(const wxRect &suggested_rect);
|
|
|
|
|
2018-09-20 06:40:22 +00:00
|
|
|
public:
|
2018-12-19 16:38:41 +00:00
|
|
|
MainFrame();
|
2020-02-06 09:17:02 +00:00
|
|
|
~MainFrame() = default;
|
2018-09-20 06:40:22 +00:00
|
|
|
|
2020-03-07 11:24:40 +00:00
|
|
|
// Called when closing the application and when switching the application language.
|
|
|
|
void shutdown();
|
|
|
|
|
2018-10-18 13:13:38 +00:00
|
|
|
Plater* plater() { return m_plater; }
|
2018-09-20 06:40:22 +00:00
|
|
|
|
2019-05-14 13:00:24 +00:00
|
|
|
void update_title();
|
|
|
|
|
2018-09-20 06:40:22 +00:00
|
|
|
void init_tabpanel();
|
2018-09-20 23:33:41 +00:00
|
|
|
void create_preset_tabs();
|
|
|
|
void add_created_tab(Tab* panel);
|
2018-09-20 06:40:22 +00:00
|
|
|
void init_menubar();
|
2019-04-30 11:51:36 +00:00
|
|
|
void update_menubar();
|
2018-09-20 06:40:22 +00:00
|
|
|
|
|
|
|
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 quick_slice(const int qs = qsUndef);
|
|
|
|
void reslice_now();
|
|
|
|
void repair_stl();
|
|
|
|
void export_config();
|
2019-01-09 09:43:17 +00:00
|
|
|
// Query user for the config file and open it.
|
|
|
|
void load_config_file();
|
|
|
|
// Open a config file. Return true if loaded.
|
|
|
|
bool load_config_file(const std::string &path);
|
2018-09-20 06:40:22 +00:00
|
|
|
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);
|
2019-12-03 03:48:01 +00:00
|
|
|
// Propagate changed configuration from the Tab to the Plater and save changes to the AppConfig
|
2019-02-22 08:38:56 +00:00
|
|
|
void on_config_changed(DynamicPrintConfig* cfg) const ;
|
2018-09-20 06:40:22 +00:00
|
|
|
|
2019-07-12 13:36:01 +00:00
|
|
|
void add_to_recent_projects(const wxString& filename);
|
|
|
|
|
2018-12-14 14:27:34 +00:00
|
|
|
PrintHostQueueDialog* printhost_queue_dlg() { return m_printhost_queue_dlg; }
|
|
|
|
|
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 };
|
2019-12-16 08:47:31 +00:00
|
|
|
std::shared_ptr<ProgressStatusBar> m_statusbar;
|
2020-03-13 13:19:02 +00:00
|
|
|
|
|
|
|
#ifdef _WIN32
|
|
|
|
void* m_hDeviceNotify { nullptr };
|
2020-03-27 07:10:00 +00:00
|
|
|
uint32_t m_ulSHChangeNotifyRegister { 0 };
|
|
|
|
static constexpr int WM_USER_MEDIACHANGED { 0x7FFF }; // WM_USER from 0x0400 to 0x7FFF, picking the last one to not interfere with wxWidgets allocation
|
2020-03-13 13:19:02 +00:00
|
|
|
#endif // _WIN32
|
2018-09-20 06:40:22 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
} // GUI
|
|
|
|
} //Slic3r
|
|
|
|
|
2018-11-12 13:52:52 +00:00
|
|
|
#endif // slic3r_MainFrame_hpp_
|