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-12-14 17:27:34 +0300
committerVojtech Kral <vojtech@kral.hk>2018-12-17 19:14:00 +0300
commit862217a6b3739fd66df277bc08f19cf4d4dbb45f (patch)
tree1be5526be54f7bd5984dcc080dd3da3fb0c9d36d /src/slic3r/GUI/MainFrame.hpp
parentb613334b818011f332e6bc7a5b2f9f472c34f893 (diff)
OctoPrint basics working, niceties to-do
Diffstat (limited to 'src/slic3r/GUI/MainFrame.hpp')
-rw-r--r--src/slic3r/GUI/MainFrame.hpp6
1 files changed, 6 insertions, 0 deletions
diff --git a/src/slic3r/GUI/MainFrame.hpp b/src/slic3r/GUI/MainFrame.hpp
index 2559b5ed1..fab6aea90 100644
--- a/src/slic3r/GUI/MainFrame.hpp
+++ b/src/slic3r/GUI/MainFrame.hpp
@@ -21,7 +21,9 @@ class ProgressStatusBar;
namespace GUI
{
+
class Tab;
+class PrintHostQueueDialog;
enum QuickSlice
{
@@ -52,6 +54,8 @@ class MainFrame : public wxFrame
wxMenuItem* m_menu_item_repeat { nullptr };
wxMenuItem* m_menu_item_reslice_now { nullptr };
+ PrintHostQueueDialog *m_printhost_queue_dlg;
+
std::string get_base_name(const wxString full_name) const ;
std::string get_dir_name(const wxString full_name) const ;
@@ -93,6 +97,8 @@ public:
void select_tab(size_t tab) const;
void select_view(const std::string& direction);
+ PrintHostQueueDialog* printhost_queue_dlg() { return m_printhost_queue_dlg; }
+
Plater* m_plater { nullptr };
wxNotebook* m_tabpanel { nullptr };
wxProgressDialog* m_progress_dialog { nullptr };