2022-07-15 15:37:19 +00:00
|
|
|
#ifndef slic3r_MonitorPage_hpp_
|
|
|
|
#define slic3r_MonitorPage_hpp_
|
|
|
|
|
|
|
|
#include <wx/panel.h>
|
2023-12-21 09:10:46 +00:00
|
|
|
#include <wx/sizer.h>
|
2022-07-15 15:37:19 +00:00
|
|
|
|
|
|
|
namespace Slic3r {
|
|
|
|
namespace GUI {
|
|
|
|
|
|
|
|
class MonitorPage : public wxPanel
|
|
|
|
{
|
|
|
|
private:
|
|
|
|
wxBoxSizer* m_main_sizer;
|
|
|
|
wxBoxSizer* m_content_sizer;
|
|
|
|
public:
|
|
|
|
MonitorPage(wxWindow *parent, wxWindowID id = wxID_ANY, const wxPoint &pos = wxDefaultPosition, const wxSize &size = wxDefaultSize, long style = wxTAB_TRAVERSAL);
|
|
|
|
~MonitorPage();
|
|
|
|
void msw_rescale() {}
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|
|
|
|
#endif
|