Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/supermerill/SuperSlicer.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authortamasmeszaros <meszaros.q@gmail.com>2019-06-18 12:41:08 +0300
committertamasmeszaros <meszaros.q@gmail.com>2019-06-18 13:16:24 +0300
commitd60ecb37885c3ac9181dee9e87b1d5890d18db29 (patch)
treedf4996974ece3aecf7caac93d944b03a10ce116a /src/slic3r/GUI/MainFrame.hpp
parent170789a78715ba27303c38ac93687f1d3878f525 (diff)
parenta892fa6105382784ab4f775b083aaca23da31397 (diff)
Merge remote-tracking branch 'origin/master' into tm_ui_jobs
Diffstat (limited to 'src/slic3r/GUI/MainFrame.hpp')
-rw-r--r--src/slic3r/GUI/MainFrame.hpp5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/slic3r/GUI/MainFrame.hpp b/src/slic3r/GUI/MainFrame.hpp
index 321fbe61b..805b663bb 100644
--- a/src/slic3r/GUI/MainFrame.hpp
+++ b/src/slic3r/GUI/MainFrame.hpp
@@ -61,6 +61,7 @@ class MainFrame : public DPIFrame
void on_presets_changed(SimpleEvent&);
void on_value_changed(wxCommandEvent&);
+ bool can_start_new_project() const;
bool can_save() const;
bool can_export_model() const;
bool can_export_supports() const;
@@ -68,8 +69,10 @@ class MainFrame : public DPIFrame
bool can_slice() const;
bool can_change_view() const;
bool can_select() const;
+ bool can_deselect() const;
bool can_delete() const;
bool can_delete_all() const;
+ bool can_reslice() const;
// MenuBar items changeable in respect to printer technology
enum MenuItems
@@ -90,6 +93,8 @@ public:
Plater* plater() { return m_plater; }
+ void update_title();
+
void init_tabpanel();
void create_preset_tabs();
void add_created_tab(Tab* panel);