WIP: Plater, tracking in Plater.pm

This commit is contained in:
Vojtech Kral 2018-10-08 19:14:55 +02:00
parent 1f926964ee
commit ceb295944a
3 changed files with 136 additions and 31 deletions

View file

@ -2,6 +2,7 @@
#define slic3r_Plater_hpp_
#include <memory>
#include <vector>
#include <boost/filesystem/path.hpp>
#include <wx/panel.h>
@ -47,6 +48,7 @@ public:
int get_ol_selection();
void show_info_sizers(const bool show);
void show_buttons(const bool show);
void enable_buttons(bool enable);
private:
struct priv;
@ -71,6 +73,8 @@ public:
void remove(size_t obj_idx);
void remove_selected();
void load_files(const std::vector<boost::filesystem::path> &input_files);
// Note: empty path means "use the default"
boost::filesystem::path export_gcode(const boost::filesystem::path &output_path = boost::filesystem::path());
void export_stl();