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:
authorVojtech Kral <vojtech@kral.hk>2018-09-17 13:15:11 +0300
committerVojtech Kral <vojtech@kral.hk>2018-10-01 10:28:40 +0300
commit342b584399cb14d648599bd7e950ac87bff6f9b1 (patch)
treee817cf45ce56405078af9d42edf83f7f912f27cf /src/slic3r/GUI/MainFrame.hpp
parent746d06fe3eb4604272e648645f6610f00ef277e8 (diff)
WIP: Plater
Diffstat (limited to 'src/slic3r/GUI/MainFrame.hpp')
-rw-r--r--src/slic3r/GUI/MainFrame.hpp7
1 files changed, 5 insertions, 2 deletions
diff --git a/src/slic3r/GUI/MainFrame.hpp b/src/slic3r/GUI/MainFrame.hpp
index aff8a5985..f4c75de65 100644
--- a/src/slic3r/GUI/MainFrame.hpp
+++ b/src/slic3r/GUI/MainFrame.hpp
@@ -8,6 +8,8 @@
#include <string>
#include <map>
+#include "Plater.hpp"
+
class wxMenuBar;
class wxNotebook;
class wxPanel;
@@ -45,7 +47,6 @@ class MainFrame : public wxFrame
wxString m_qs_last_output_file = wxEmptyString;
wxString m_last_config = wxEmptyString;
- ProgressStatusBar* m_statusbar { nullptr };
AppController* m_appController { nullptr };
std::map<std::string, Tab*> m_options_tabs;
@@ -70,6 +71,7 @@ public:
void init_tabpanel();
+ const std::map<std::string, Tab*>& options_tabs() const { return m_options_tabs; }
Tab* get_preset_tab(const std::string& name);
void create_preset_tabs();
void add_created_tab(Tab* panel);
@@ -93,9 +95,10 @@ public:
void select_view(const std::string& direction);
- wxPanel* m_plater {nullptr};
+ Plater* m_plater { nullptr };
wxNotebook* m_tabpanel { nullptr };
wxProgressDialog* m_progress_dialog { nullptr };
+ ProgressStatusBar* m_statusbar { nullptr };
};
} // GUI