Files
OrcaSlicer-bambulab/src/slic3r/GUI/PrintHostDialogs.hpp
T

50 lines
820 B
C++
Raw Normal View History

2018-07-08 14:32:48 +02:00
#ifndef slic3r_PrintHostSendDialog_hpp_
#define slic3r_PrintHostSendDialog_hpp_
#include <string>
#include <boost/filesystem/path.hpp>
#include <wx/string.h>
#include <wx/frame.h>
#include <wx/event.h>
#include <wx/progdlg.h>
#include <wx/sizer.h>
#include <wx/stattext.h>
#include <wx/textctrl.h>
#include <wx/checkbox.h>
#include "slic3r/GUI/GUI.hpp"
#include "slic3r/GUI/MsgDialog.hpp"
namespace Slic3r {
2018-12-11 10:33:11 +01:00
2018-07-08 14:32:48 +02:00
class PrintHostSendDialog : public GUI::MsgDialog
{
public:
2018-12-11 10:33:11 +01:00
PrintHostSendDialog(const boost::filesystem::path &path);
boost::filesystem::path filename() const;
bool start_print() const;
private:
wxTextCtrl *txt_filename;
wxCheckBox *box_print;
bool can_start_print;
2018-07-08 14:32:48 +02:00
};
2018-12-11 10:33:11 +01:00
class PrintHostQueueDialog : public wxDialog
{
public:
PrintHostQueueDialog();
private:
};
2018-07-08 14:32:48 +02:00
}
#endif