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:
authorEnrico Turri <enricoturri@seznam.cz>2019-05-14 16:00:24 +0300
committerEnrico Turri <enricoturri@seznam.cz>2019-05-14 16:00:24 +0300
commitf54fd10897cae193a783622af85d56e5e1293a86 (patch)
tree0400e9ff1f4fe7325c6de7cd74cbf50993ea89e9 /src/slic3r/GUI/MainFrame.hpp
parent11662f87b8676eaf361b788310f58f95ea6be382 (diff)
Implementation of File->New project menu item
Diffstat (limited to 'src/slic3r/GUI/MainFrame.hpp')
-rw-r--r--src/slic3r/GUI/MainFrame.hpp4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/slic3r/GUI/MainFrame.hpp b/src/slic3r/GUI/MainFrame.hpp
index b5d875cbf..a5de94738 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;
@@ -71,6 +72,7 @@ class MainFrame : public DPIFrame
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
@@ -91,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);