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:
authorVojtech Kral <vojtech@kral.hk>2018-10-04 12:12:55 +0300
committerVojtech Kral <vojtech@kral.hk>2018-10-08 18:41:37 +0300
commit1f926964ee0d93ce0044c75f76aee52d5db15dfd (patch)
treed0144ebfe36b958bfab615e7019d84c6f3b489a2 /src/slic3r/GUI/GUI.cpp
parent99fe5761d8fca6349b924cb5c02198aed39ddb94 (diff)
WIP: Plater, build fixes
Diffstat (limited to 'src/slic3r/GUI/GUI.cpp')
-rw-r--r--src/slic3r/GUI/GUI.cpp47
1 files changed, 0 insertions, 47 deletions
diff --git a/src/slic3r/GUI/GUI.cpp b/src/slic3r/GUI/GUI.cpp
index e06f6b721..0e23585f7 100644
--- a/src/slic3r/GUI/GUI.cpp
+++ b/src/slic3r/GUI/GUI.cpp
@@ -347,53 +347,6 @@ std::string into_u8(const wxString &str)
return std::string(buffer_utf8.data());
}
-wxWindow* export_option_creator(wxWindow* parent)
-{
- wxPanel* panel = new wxPanel(parent, -1);
- wxSizer* sizer = new wxBoxSizer(wxHORIZONTAL);
- wxCheckBox* cbox = new wxCheckBox(panel, wxID_HIGHEST + 1, L("Export print config"));
- cbox->SetValue(true);
- sizer->AddSpacer(5);
- sizer->Add(cbox, 0, wxEXPAND | wxALL | wxALIGN_CENTER_VERTICAL, 5);
- panel->SetSizer(sizer);
- sizer->SetSizeHints(panel);
- return panel;
-}
-
-void add_export_option(wxFileDialog* dlg, const std::string& format)
-{
- if ((dlg != nullptr) && (format == "AMF") || (format == "3MF"))
- {
- if (dlg->SupportsExtraControl())
- dlg->SetExtraControlCreator(export_option_creator);
- }
-}
-
-int get_export_option(wxFileDialog* dlg)
-{
- if (dlg != nullptr)
- {
- wxWindow* wnd = dlg->GetExtraControl();
- if (wnd != nullptr)
- {
- wxPanel* panel = dynamic_cast<wxPanel*>(wnd);
- if (panel != nullptr)
- {
- wxWindow* child = panel->FindWindow(wxID_HIGHEST + 1);
- if (child != nullptr)
- {
- wxCheckBox* cbox = dynamic_cast<wxCheckBox*>(child);
- if (cbox != nullptr)
- return cbox->IsChecked() ? 1 : 0;
- }
- }
- }
- }
-
- return 0;
-
-}
-
bool get_current_screen_size(wxWindow *window, unsigned &width, unsigned &height)
{
const auto idx = wxDisplay::GetFromWindow(window);