mirror of
https://github.com/SoftFever/OrcaSlicer.git
synced 2025-07-08 23:46:24 -06:00
Add the full source of BambuStudio
using version 1.0.10
This commit is contained in:
parent
30bcadab3e
commit
1555904bef
3771 changed files with 1251328 additions and 0 deletions
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()
|
||||
{
|
||||
}
|
||||
|
||||
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue