mirror of
https://github.com/OrcaSlicer/OrcaSlicer.git
synced 2026-05-16 18:12:10 +00:00
Add the full source of BambuStudio
using version 1.0.10
This commit is contained in:
25
src/slic3r/GUI/MonitorPage.cpp
Normal file
25
src/slic3r/GUI/MonitorPage.cpp
Normal file
@@ -0,0 +1,25 @@
|
||||
#include "MonitorPage.hpp"
|
||||
|
||||
namespace Slic3r {
|
||||
namespace GUI {
|
||||
|
||||
MonitorPage::MonitorPage(wxWindow *parent, wxWindowID id, const wxPoint &pos, const wxSize &size, long style)
|
||||
:wxPanel(parent, id, pos, size, style)
|
||||
{
|
||||
#ifdef __WINDOWS__
|
||||
SetDoubleBuffered(true);
|
||||
#endif //__WINDOWS__
|
||||
m_main_sizer = new wxBoxSizer(wxHORIZONTAL);
|
||||
m_content_sizer = new wxBoxSizer(wxVERTICAL);
|
||||
|
||||
m_main_sizer->Add(m_content_sizer, 1, wxEXPAND);
|
||||
SetSizerAndFit(m_main_sizer);
|
||||
}
|
||||
|
||||
MonitorPage::~MonitorPage()
|
||||
{
|
||||
}
|
||||
|
||||
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user