mirror of
https://github.com/SoftFever/OrcaSlicer.git
synced 2026-02-15 17:09:43 -07:00
jira: [STUDIO-11777] Change-Id: I12744db7d2e3b53425454d632533768c54524677 (cherry picked from commit 4358e9ce351c5784e392a75d1ffcf2f54e1916ec)
77 lines
2 KiB
C++
77 lines
2 KiB
C++
#include "AnimaController.hpp"
|
|
|
|
#include <wx/dcclient.h>
|
|
#include <wx/dcgraph.h>
|
|
#ifdef __APPLE__
|
|
#include "libslic3r/MacUtils.hpp"
|
|
#endif
|
|
|
|
AnimaIcon::AnimaIcon(wxWindow *parent, wxWindowID id, std::vector<std::string> img_list, std::string img_enable, int ivt)
|
|
: wxPanel(parent, wxID_ANY, wxDefaultPosition, wxDefaultSize), m_ivt(ivt)
|
|
{
|
|
SetBackgroundColour((wxColour(255, 255, 255)));
|
|
m_size = 20;
|
|
|
|
//add ScalableBitmap
|
|
for (const auto &filename : img_list) m_images.emplace_back(create_scaled_bitmap(filename, this, m_size));
|
|
m_image_enable = create_scaled_bitmap(img_enable, this, m_size-8);
|
|
|
|
// show first wxStaticBitmap
|
|
if (!m_images.empty()) m_bitmap = new wxStaticBitmap(this, wxID_ANY, m_images[0], wxDefaultPosition, wxSize(FromDIP(m_size), FromDIP(m_size)));
|
|
|
|
|
|
m_timer = new wxTimer();
|
|
m_timer->SetOwner(this);
|
|
|
|
Bind(wxEVT_TIMER, [this](wxTimerEvent &) {
|
|
if (m_timer->IsRunning() && !m_images.empty()) {
|
|
m_current_frame = (m_current_frame + 1) % 4;
|
|
m_bitmap->SetBitmap(m_images[m_current_frame]);
|
|
}
|
|
});
|
|
|
|
m_bitmap->Bind(wxEVT_LEFT_DOWN, [this](wxMouseEvent &e) {
|
|
wxMouseEvent evt(wxEVT_LEFT_DOWN);
|
|
evt.SetEventObject(this);
|
|
wxPostEvent(this, evt);
|
|
});
|
|
|
|
m_bitmap->Bind(wxEVT_ENTER_WINDOW, [this](auto &e) {
|
|
if (!m_timer->IsRunning())
|
|
SetCursor(wxCursor(wxCURSOR_HAND));
|
|
else
|
|
SetCursor(wxCursor(wxCURSOR_ARROW));
|
|
e.Skip();
|
|
});
|
|
m_bitmap->Bind(wxEVT_LEAVE_WINDOW, [this](auto &e) {
|
|
SetCursor(wxCursor(wxCURSOR_ARROW));
|
|
e.Skip();
|
|
});
|
|
|
|
SetSize(wxSize(FromDIP(m_size), FromDIP(m_size)));
|
|
SetMaxSize(wxSize(FromDIP(m_size), FromDIP(m_size)));
|
|
SetMinSize(wxSize(FromDIP(m_size), FromDIP(m_size)));
|
|
Refresh();
|
|
|
|
Play();
|
|
}
|
|
|
|
|
|
void AnimaIcon::Play()
|
|
{
|
|
if (true)
|
|
m_timer->Start(m_ivt);
|
|
|
|
}
|
|
|
|
void AnimaIcon::Stop()
|
|
{
|
|
m_timer->Stop();
|
|
}
|
|
|
|
void AnimaIcon::Enable()
|
|
{
|
|
if (m_bitmap) { m_bitmap->SetBitmap(m_image_enable); }
|
|
}
|
|
|
|
|