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:
authorYuSanka <yusanka@gmail.com>2018-11-16 19:36:23 +0300
committerYuSanka <yusanka@gmail.com>2018-11-19 16:05:29 +0300
commit2fa055903fcb45da9bb90479b7378dc32b0c1431 (patch)
treeb038172b9b899052d30520efbb028cb75bf8b8e3 /src/slic3r/GUI/Tab.hpp
parent7cb99f8e27ab749b02705c3cb4a436c66f811336 (diff)
"SLA Print Settings" implementation (start)
Diffstat (limited to 'src/slic3r/GUI/Tab.hpp')
-rw-r--r--src/slic3r/GUI/Tab.hpp13
1 files changed, 13 insertions, 0 deletions
diff --git a/src/slic3r/GUI/Tab.hpp b/src/slic3r/GUI/Tab.hpp
index 0f2b1b41c..9b897b6f7 100644
--- a/src/slic3r/GUI/Tab.hpp
+++ b/src/slic3r/GUI/Tab.hpp
@@ -370,6 +370,19 @@ public:
bool supports_printer_technology(const PrinterTechnology tech) override { return tech == ptSLA; }
};
+class TabSLAPrint : public Tab
+{
+public:
+ TabSLAPrint() {}
+ TabSLAPrint(wxNotebook* parent) :
+ Tab(parent, _(L("SLA Print Settings")), "sla_print") {}
+ ~TabSLAPrint() {}
+ void build() override;
+ void update() override;
+// void init_options_list() override;
+ bool supports_printer_technology(const PrinterTechnology tech) override { return tech == ptSLA; }
+};
+
class SavePresetWindow :public wxDialog
{
public: