mirror of
https://git.mirrors.martin98.com/https://github.com/prusa3d/PrusaSlicer.git
synced 2025-05-29 17:44:36 +08:00
WIP: G-code viewer menu, refactoring of starting a background process.
This commit is contained in:
parent
014a90b51b
commit
fd4c28ed91
@ -195,6 +195,8 @@ set(SLIC3R_GUI_SOURCES
|
|||||||
Utils/Bonjour.hpp
|
Utils/Bonjour.hpp
|
||||||
Utils/PresetUpdater.cpp
|
Utils/PresetUpdater.cpp
|
||||||
Utils/PresetUpdater.hpp
|
Utils/PresetUpdater.hpp
|
||||||
|
Utils/Process.cpp
|
||||||
|
Utils/Process.hpp
|
||||||
Utils/Profile.hpp
|
Utils/Profile.hpp
|
||||||
Utils/UndoRedo.cpp
|
Utils/UndoRedo.cpp
|
||||||
Utils/UndoRedo.hpp
|
Utils/UndoRedo.hpp
|
||||||
|
@ -9,7 +9,6 @@
|
|||||||
#include <wx/tooltip.h>
|
#include <wx/tooltip.h>
|
||||||
//#include <wx/glcanvas.h>
|
//#include <wx/glcanvas.h>
|
||||||
#include <wx/filename.h>
|
#include <wx/filename.h>
|
||||||
#include <wx/stdpaths.h>
|
|
||||||
#include <wx/debug.h>
|
#include <wx/debug.h>
|
||||||
|
|
||||||
#include <boost/algorithm/string/predicate.hpp>
|
#include <boost/algorithm/string/predicate.hpp>
|
||||||
@ -31,6 +30,7 @@
|
|||||||
#include "I18N.hpp"
|
#include "I18N.hpp"
|
||||||
#include "GLCanvas3D.hpp"
|
#include "GLCanvas3D.hpp"
|
||||||
#include "Plater.hpp"
|
#include "Plater.hpp"
|
||||||
|
#include "../Utils/Process.hpp"
|
||||||
|
|
||||||
#include <fstream>
|
#include <fstream>
|
||||||
#include "GUI_App.hpp"
|
#include "GUI_App.hpp"
|
||||||
@ -40,12 +40,6 @@
|
|||||||
#include <shlobj.h>
|
#include <shlobj.h>
|
||||||
#endif // _WIN32
|
#endif // _WIN32
|
||||||
|
|
||||||
// For starting another PrusaSlicer instance on OSX.
|
|
||||||
// Fails to compile on Windows on the build server.
|
|
||||||
#ifdef __APPLE__
|
|
||||||
#include <boost/process/spawn.hpp>
|
|
||||||
#endif
|
|
||||||
|
|
||||||
namespace Slic3r {
|
namespace Slic3r {
|
||||||
namespace GUI {
|
namespace GUI {
|
||||||
|
|
||||||
@ -1054,8 +1048,8 @@ void MainFrame::init_menubar()
|
|||||||
append_menu_item(fileMenu, wxID_ANY, _L("&Repair STL file") + dots, _L("Automatically repair an STL file"),
|
append_menu_item(fileMenu, wxID_ANY, _L("&Repair STL file") + dots, _L("Automatically repair an STL file"),
|
||||||
[this](wxCommandEvent&) { repair_stl(); }, "wrench", nullptr,
|
[this](wxCommandEvent&) { repair_stl(); }, "wrench", nullptr,
|
||||||
[this]() { return true; }, this);
|
[this]() { return true; }, this);
|
||||||
#if ENABLE_GCODE_VIEWER
|
|
||||||
fileMenu->AppendSeparator();
|
fileMenu->AppendSeparator();
|
||||||
|
#if ENABLE_GCODE_VIEWER
|
||||||
append_menu_item(fileMenu, wxID_ANY, _L("&G-code preview"), _L("Switch to G-code preview mode"),
|
append_menu_item(fileMenu, wxID_ANY, _L("&G-code preview"), _L("Switch to G-code preview mode"),
|
||||||
[this](wxCommandEvent&) {
|
[this](wxCommandEvent&) {
|
||||||
if (m_plater->model().objects.empty() ||
|
if (m_plater->model().objects.empty() ||
|
||||||
@ -1064,6 +1058,8 @@ void MainFrame::init_menubar()
|
|||||||
set_mode(EMode::GCodeViewer);
|
set_mode(EMode::GCodeViewer);
|
||||||
}, "", nullptr);
|
}, "", nullptr);
|
||||||
#endif // ENABLE_GCODE_VIEWER
|
#endif // ENABLE_GCODE_VIEWER
|
||||||
|
append_menu_item(fileMenu, wxID_ANY, _L("&G-code preview") + dots, _L("Open G-code viewer"),
|
||||||
|
[this](wxCommandEvent&) { start_new_gcodeviewer_open_file(this); }, "", nullptr);
|
||||||
fileMenu->AppendSeparator();
|
fileMenu->AppendSeparator();
|
||||||
append_menu_item(fileMenu, wxID_EXIT, _L("&Quit"), wxString::Format(_L("Quit %s"), SLIC3R_APP_NAME),
|
append_menu_item(fileMenu, wxID_EXIT, _L("&Quit"), wxString::Format(_L("Quit %s"), SLIC3R_APP_NAME),
|
||||||
[this](wxCommandEvent&) { Close(false); });
|
[this](wxCommandEvent&) { Close(false); });
|
||||||
@ -1180,20 +1176,11 @@ void MainFrame::init_menubar()
|
|||||||
|
|
||||||
windowMenu->AppendSeparator();
|
windowMenu->AppendSeparator();
|
||||||
append_menu_item(windowMenu, wxID_ANY, _L("Print &Host Upload Queue") + "\tCtrl+J", _L("Display the Print Host Upload Queue window"),
|
append_menu_item(windowMenu, wxID_ANY, _L("Print &Host Upload Queue") + "\tCtrl+J", _L("Display the Print Host Upload Queue window"),
|
||||||
[this](wxCommandEvent&) { m_printhost_queue_dlg->Show(); }, "upload_queue", nullptr,
|
[this](wxCommandEvent&) { m_printhost_queue_dlg->Show(); }, "upload_queue", nullptr, [this]() {return true; }, this);
|
||||||
[this]() {return true; }, this);
|
|
||||||
|
|
||||||
windowMenu->AppendSeparator();
|
windowMenu->AppendSeparator();
|
||||||
append_menu_item(windowMenu, wxID_ANY, _(L("Open new instance")) + "\tCtrl+I", _(L("Open a new PrusaSlicer instance")),
|
append_menu_item(windowMenu, wxID_ANY, _(L("Open new instance")) + "\tCtrl+I", _(L("Open a new PrusaSlicer instance")),
|
||||||
[this](wxCommandEvent&) {
|
[this](wxCommandEvent&) { start_new_slicer(); }, "", nullptr);
|
||||||
wxString path = wxStandardPaths::Get().GetExecutablePath();
|
|
||||||
#ifdef __APPLE__
|
|
||||||
boost::process::spawn((const char*)path.c_str());
|
|
||||||
#else
|
|
||||||
wxExecute(wxStandardPaths::Get().GetExecutablePath(), wxEXEC_ASYNC | wxEXEC_HIDE_CONSOLE | wxEXEC_MAKE_GROUP_LEADER);
|
|
||||||
#endif
|
|
||||||
}, "upload_queue", nullptr,
|
|
||||||
[this]() {return true; }, this);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
// View menu
|
// View menu
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
#ifndef THREAD_HPP
|
#ifndef GUI_THREAD_HPP
|
||||||
#define THREAD_HPP
|
#define GUI_THREAD_HPP
|
||||||
|
|
||||||
#include <utility>
|
#include <utility>
|
||||||
#include <boost/thread.hpp>
|
#include <boost/thread.hpp>
|
||||||
@ -25,4 +25,4 @@ template<class Fn> inline boost::thread create_thread(Fn &&fn)
|
|||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
#endif // THREAD_HPP
|
#endif // GUI_THREAD_HPP
|
||||||
|
Loading…
x
Reference in New Issue
Block a user