mirror of
https://github.com/OrcaSlicer/OrcaSlicer.git
synced 2026-06-15 00:13:00 +00:00
jira:[STUDIO-14662] Change-Id: I75998ff04e1073d07e23ff6970dce90627b7b860 (cherry picked from commit 93fc862f7e74c52d7a9cfb75d24ecf0685788341)
40 lines
869 B
C++
40 lines
869 B
C++
#pragma once
|
|
|
|
#include <wx/wx.h>
|
|
#include <wx/dialog.h>
|
|
#include <wx/stattext.h>
|
|
#include <wx/button.h>
|
|
#include <wx/sizer.h>
|
|
#include <wx/statbmp.h>
|
|
|
|
|
|
namespace Slic3r {
|
|
|
|
class MachineObject;
|
|
namespace GUI {
|
|
|
|
class ThermalPreconditioningDialog : public wxDialog
|
|
{
|
|
public:
|
|
ThermalPreconditioningDialog(wxWindow *parent, std::string dev_id, const wxString &remaining_time);
|
|
~ThermalPreconditioningDialog();
|
|
|
|
void update_thermal_remaining_time();
|
|
|
|
private:
|
|
void create_ui();
|
|
void on_ok_clicked(wxCommandEvent &event);
|
|
void on_timer(wxTimerEvent &event);
|
|
|
|
std::string m_dev_id;
|
|
wxTimer *m_refresh_timer;
|
|
wxStaticText *m_remaining_time_label;
|
|
wxStaticText *m_explanation_label;
|
|
wxButton *m_ok_button;
|
|
wxStaticBitmap *m_title_bitmap;
|
|
|
|
DECLARE_EVENT_TABLE()
|
|
};
|
|
|
|
} // namespace GUI
|
|
} // namespace Slic3r
|