Welcome to mirror list, hosted at ThFree Co, Russian Federation.

PrintHostSendDialog.hpp « Utils « slic3r « src « xs - github.com/prusa3d/PrusaSlicer.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: dc4a8d6f7c19cbb4c236a3c8bde373385ee92604 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
#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 {

class PrintHostSendDialog : public GUI::MsgDialog
{
private:
	wxTextCtrl *txt_filename;
	wxCheckBox *box_print;
	bool can_start_print;

public:
	PrintHostSendDialog(const boost::filesystem::path &path, bool can_start_print);
	boost::filesystem::path filename() const;
	bool print() const;
};

}

#endif