PrusaSlicer-NonPlainar/xs/src/slic3r/GUI/LambdaObjectDialog.hpp

41 lines
1.1 KiB
C++
Raw Normal View History

2018-06-14 19:48:06 +00:00
#ifndef slic3r_LambdaObjectDialog_hpp_
#define slic3r_LambdaObjectDialog_hpp_
#include "GUI.hpp"
#include <wx/dialog.h>
#include <wx/sizer.h>
#include <wx/choicebk.h>
2018-09-17 13:12:13 +00:00
class wxPanel;
2018-06-14 19:48:06 +00:00
namespace Slic3r
{
namespace GUI
{
using ConfigOptionsGroupShp = std::shared_ptr<ConfigOptionsGroup>;
class LambdaObjectDialog : public wxDialog
{
2018-09-17 13:12:13 +00:00
wxChoicebook* m_modificator_options_book = nullptr;
2018-06-14 19:48:06 +00:00
std::vector <ConfigOptionsGroupShp> m_optgroups;
2018-09-17 13:12:13 +00:00
wxString m_type_name;
wxPanel* m_panel = nullptr;
2018-06-14 19:48:06 +00:00
public:
2018-09-17 13:12:13 +00:00
LambdaObjectDialog(wxWindow* parent,
const wxString type_name = wxEmptyString);
2018-06-14 19:48:06 +00:00
~LambdaObjectDialog(){}
bool CanClose() { return true; } // ???
OBJECT_PARAMETERS& ObjectParameters(){ return object_parameters; }
2018-06-14 19:48:06 +00:00
2018-09-17 13:12:13 +00:00
ConfigOptionsGroupShp init_modificator_options_page(const wxString& title);
2018-06-14 19:48:06 +00:00
// Note whether the window was already closed, so a pending update is not executed.
bool m_already_closed = false;
OBJECT_PARAMETERS object_parameters;
wxBoxSizer* sizer = nullptr;
};
} //namespace GUI
} //namespace Slic3r
#endif //slic3r_LambdaObjectDialog_hpp_