FIX:add darkmode of thermalprecondition

jira:[STUDIO-14662]

Change-Id: I75998ff04e1073d07e23ff6970dce90627b7b860
(cherry picked from commit 93fc862f7e74c52d7a9cfb75d24ecf0685788341)
This commit is contained in:
milk
2025-10-13 16:50:47 +08:00
committed by Noisyfox
parent 2e19dfea93
commit bfd8a0cbd7
2 changed files with 44 additions and 42 deletions

View File

@@ -11,29 +11,30 @@
namespace Slic3r {
class MachineObject;
namespace GUI {
class ThermalPreconditioningDialog : public wxDialog
{
public:
ThermalPreconditioningDialog(wxWindow *parent, std::string dev_id, const wxString &remaining_time);
~ThermalPreconditioningDialog() ;
~ThermalPreconditioningDialog();
void update_thermal_remaining_time();
private:
void create_ui();
void on_ok_clicked(wxCommandEvent& event);
void on_timer(wxTimerEvent &event);
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;
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