NEW:add "Fade out" effect for BaseTransparentDPIFrame

jira: none
Change-Id: Ied2fd3a07c213c3518183865169728a87a7d5b1a
(cherry picked from commit c5406570bc8647d243011e330f4bd618bcceec85)
This commit is contained in:
zhou.xu
2025-01-21 09:36:24 +08:00
committed by Noisyfox
parent a57a927481
commit 3b69225bc8
5 changed files with 175 additions and 31 deletions

View File

@@ -16,8 +16,7 @@ class BaseTransparentDPIFrame : public Slic3r::GUI::DPIFrame
public:
enum DisappearanceMode {
None,
TimedDisappearance,//defalut 7 second
QuickDisappearance
TimedDisappearance // unit: second
};
BaseTransparentDPIFrame(wxWindow * parent,
@@ -26,33 +25,54 @@ public:
int ok_button_width,
wxString win_text,
wxString ok_text,
wxString cancel_text = "",
wxString cancel_text = "",
DisappearanceMode disappearance_mode = DisappearanceMode::None);
~BaseTransparentDPIFrame() override;
void on_dpi_changed(const wxRect &suggested_rect) override;
void on_show();
void on_hide();
void clear_timer_count();
bool Show(bool show =true) override;
bool Show(bool show = true) override;
virtual void deal_ok();
virtual void deal_cancel();
virtual void on_timer(wxTimerEvent &event);
virtual void deal_ok();
virtual void deal_cancel();
virtual void on_timer(wxTimerEvent &event);
void set_target_pos_and_gradual_disappearance(wxPoint pos);
void call_start_gradual_disappearance();
protected:
Button * m_button_ok = nullptr;
Button * m_button_cancel = nullptr;
Button *m_button_ok = nullptr;
Button *m_button_cancel = nullptr;
DisappearanceMode m_timed_disappearance_mode;
float m_timer_count = 0;
wxTimer *m_refresh_timer{nullptr};
int m_disappearance_second = 2500;//unit ms: mean 5s
float m_timer_count = 0;
wxTimer * m_refresh_timer{nullptr};
int m_disappearance_second = 1500; // unit ms: mean 5s
bool m_move_to_target_gradual_disappearance = false;
wxPoint m_target_pos;
private:
wxBoxSizer *m_sizer_main{nullptr};
wxSize m_max_size;
wxSize m_step_size;
wxPoint m_step_pos;
wxPoint m_start_pos;
float m_time_move{6.0f};
float m_time_gradual_and_scale{100.0f};
int m_init_transparent{220};
int m_step_transparent;
int m_display_stage = 0;//0 normal //1 gradual
bool m_enter_window_valid{true};
private:
void init_timer();
void start_gradual_disappearance();
void init_timer();
void calc_step_transparent();
void on_close();
void show_sizer(wxSizer *sizer, bool show);
void hide_all();
void begin_gradual_disappearance();
void begin_move_to_target_and_gradual_disappearance();
};
}} // namespace Slic3r::GUI
#endif // _STEP_MESH_DIALOG_H_