Files
OrcaSlicer/src/slic3r/GUI/ThermalPreconditioningDialog.hpp
milk bfd8a0cbd7 FIX:add darkmode of thermalprecondition
jira:[STUDIO-14662]

Change-Id: I75998ff04e1073d07e23ff6970dce90627b7b860
(cherry picked from commit 93fc862f7e74c52d7a9cfb75d24ecf0685788341)
2025-10-28 15:30:06 +08:00

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