Files
OrcaSlicer-bambulab/src/slic3r/GUI/MainFrame.hpp
T

220 lines
6.4 KiB
C++
Raw Normal View History

2019-08-19 12:28:25 +02:00
#ifndef slic3r_MainFrame_hpp_
2018-09-20 08:40:22 +02:00
#define slic3r_MainFrame_hpp_
2018-11-26 14:41:58 +01:00
#include "libslic3r/PrintConfig.hpp"
2018-09-20 08:40:22 +02:00
#include <wx/frame.h>
2019-04-23 08:47:23 +02:00
#include <wx/settings.h>
2018-11-26 14:41:58 +01:00
#include <wx/string.h>
#include <wx/filehistory.h>
2020-10-06 12:01:08 +02:00
#ifdef __APPLE__
#include <wx/taskbar.h>
2020-10-06 12:01:08 +02:00
#endif __APPLE__
2018-09-20 08:40:22 +02:00
#include <string>
#include <map>
#include "GUI_Utils.hpp"
2018-10-03 16:27:02 +02:00
#include "Event.hpp"
2018-09-17 12:15:11 +02:00
2018-09-20 08:40:22 +02:00
class wxNotebook;
class wxProgressDialog;
namespace Slic3r {
class ProgressStatusBar;
namespace GUI
{
2018-12-14 15:27:34 +01:00
2018-09-20 08:40:22 +02:00
class Tab;
2018-12-14 15:27:34 +01:00
class PrintHostQueueDialog;
2020-05-26 17:42:57 +02:00
class Plater;
class MainFrame;
2018-09-20 08:40:22 +02:00
enum QuickSlice
{
2018-10-18 10:40:26 +02:00
qsUndef = 0,
qsReslice = 1,
qsSaveAs = 2,
qsExportSVG = 4,
qsExportPNG = 8
2018-09-20 08:40:22 +02:00
};
2018-10-05 23:29:15 +02:00
struct PresetTab {
std::string name;
Tab* panel;
PrinterTechnology technology;
};
// ----------------------------------------------------------------------------
// SettingsDialog
// ----------------------------------------------------------------------------
class SettingsDialog : public DPIDialog
{
wxNotebook* m_tabpanel { nullptr };
MainFrame* m_main_frame { nullptr };
public:
2020-05-05 17:23:58 +02:00
SettingsDialog(MainFrame* mainframe);
~SettingsDialog() = default;
void set_tabpanel(wxNotebook* tabpanel) { m_tabpanel = tabpanel; }
protected:
void on_dpi_changed(const wxRect& suggested_rect) override;
};
class MainFrame : public DPIFrame
2018-09-20 08:40:22 +02:00
{
2018-12-19 17:38:41 +01:00
bool m_loaded {false};
2018-09-20 08:40:22 +02:00
wxString m_qs_last_input_file = wxEmptyString;
wxString m_qs_last_output_file = wxEmptyString;
wxString m_last_config = wxEmptyString;
#if ENABLE_GCODE_VIEWER
wxMenuBar* m_menubar{ nullptr };
#endif // ENABLE_GCODE_VIEWER
#if 0
wxMenuItem* m_menu_item_repeat { nullptr }; // doesn't used now
#endif
wxMenuItem* m_menu_item_reslice_now { nullptr };
wxSizer* m_main_sizer{ nullptr };
2018-09-20 08:40:22 +02:00
2018-12-14 15:27:34 +01:00
PrintHostQueueDialog *m_printhost_queue_dlg;
2020-05-05 09:35:28 +02:00
size_t m_last_selected_tab;
std::string get_base_name(const wxString &full_name, const char *extension = nullptr) const;
std::string get_dir_name(const wxString &full_name) const;
2018-10-05 23:29:15 +02:00
2018-10-03 16:27:02 +02:00
void on_presets_changed(SimpleEvent&);
2018-10-09 12:41:05 +02:00
void on_value_changed(wxCommandEvent&);
2018-10-05 23:29:15 +02:00
bool can_start_new_project() const;
bool can_save() const;
bool can_export_model() const;
bool can_export_toolpaths() const;
2019-05-02 13:46:39 +02:00
bool can_export_supports() const;
bool can_export_gcode() const;
2019-08-01 16:20:46 +02:00
bool can_send_gcode() const;
bool can_export_gcode_sd() const;
bool can_eject() const;
2019-01-21 12:34:28 +01:00
bool can_slice() const;
bool can_change_view() const;
2018-11-21 15:28:35 +01:00
bool can_select() const;
bool can_deselect() const;
2018-11-21 15:47:41 +01:00
bool can_delete() const;
2018-11-22 11:31:53 +01:00
bool can_delete_all() const;
bool can_reslice() const;
// MenuBar items changeable in respect to printer technology
enum MenuItems
{ // FFF SLA
miExport = 0, // Export G-code Export
2019-08-01 16:20:46 +02:00
miSend, // Send G-code Send to print
miMaterialTab, // Filament Settings Material Settings
miPrinterTab, // Different bitmap for Printer Settings
};
// vector of a MenuBar items changeable in respect to printer technology
std::vector<wxMenuItem*> m_changeable_menu_items;
wxFileHistory m_recent_projects;
enum class ESettingsLayout
{
Unknown,
Old,
New,
Dlg,
#if ENABLE_GCODE_VIEWER
GCodeViewer
#endif // ENABLE_GCODE_VIEWER
};
ESettingsLayout m_layout{ ESettingsLayout::Unknown };
protected:
virtual void on_dpi_changed(const wxRect &suggested_rect);
virtual void on_sys_color_changed() override;
2018-09-20 08:40:22 +02:00
public:
2018-12-19 17:38:41 +01:00
MainFrame();
~MainFrame() = default;
2018-09-20 08:40:22 +02:00
void update_layout();
// Called when closing the application and when switching the application language.
void shutdown();
2018-10-18 15:13:38 +02:00
Plater* plater() { return m_plater; }
2018-09-20 08:40:22 +02:00
void update_title();
2018-09-20 08:40:22 +02:00
void init_tabpanel();
void create_preset_tabs();
void add_created_tab(Tab* panel);
2020-09-24 15:41:48 +02:00
bool is_active_and_shown_tab(Tab* tab);
// Register Win32 RawInput callbacks (3DConnexion) and removable media insert / remove callbacks.
// Called from wxEVT_ACTIVATE, as wxEVT_CREATE was not reliable (bug in wxWidgets?).
void register_win32_callbacks();
#if ENABLE_GCODE_VIEWER
void init_menubar_as_editor();
void init_menubar_as_gcodeviewer();
#else
2018-09-20 08:40:22 +02:00
void init_menubar();
#endif // ENABLE_GCODE_VIEWER
void update_menubar();
2018-09-20 08:40:22 +02: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(); }
2020-10-15 16:48:48 +02:00
bool is_dlg_layout() const { return m_layout == ESettingsLayout::Dlg; }
2018-09-20 08:40:22 +02:00
void quick_slice(const int qs = qsUndef);
void reslice_now();
void repair_stl();
void export_config();
// 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);
void export_configbundle(bool export_physical_printers = false);
2018-09-20 08:40:22 +02:00
void load_configbundle(wxString file = wxEmptyString);
void load_config(const DynamicPrintConfig& config);
// Select tab in m_tabpanel
// When tab == -1, will be selected last selected tab
2020-09-24 15:41:48 +02:00
void select_tab(Tab* tab);
void select_tab(size_t tab = size_t(-1));
2018-09-20 08:40:22 +02:00
void select_view(const std::string& direction);
2019-12-02 22:48:01 -05:00
// Propagate changed configuration from the Tab to the Plater and save changes to the AppConfig
2019-02-22 09:38:56 +01:00
void on_config_changed(DynamicPrintConfig* cfg) const ;
2018-09-20 08:40:22 +02:00
void add_to_recent_projects(const wxString& filename);
2018-12-14 15:27:34 +01:00
PrintHostQueueDialog* printhost_queue_dlg() { return m_printhost_queue_dlg; }
2018-09-17 12:15:11 +02:00
Plater* m_plater { nullptr };
wxNotebook* m_tabpanel { nullptr };
SettingsDialog m_settings_dialog;
wxWindow* m_plater_page{ nullptr };
wxProgressDialog* m_progress_dialog { nullptr };
std::shared_ptr<ProgressStatusBar> m_statusbar;
2020-10-06 12:01:08 +02:00
#ifdef __APPLE__
std::unique_ptr<wxTaskBarIcon> m_taskbar_icon;
#endif // __APPLE__
#ifdef _WIN32
void* m_hDeviceNotify { nullptr };
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
#endif // _WIN32
2018-09-20 08:40:22 +02:00
};
} // GUI
} //Slic3r
2018-11-12 14:52:52 +01:00
#endif // slic3r_MainFrame_hpp_