Added SetLock() function for PrusaLockButton
This commit is contained in:
parent
ab810f4b16
commit
6d7e2b2dd7
@ -172,6 +172,7 @@ ObjectManipulation::ObjectManipulation(wxWindow* parent) :
|
||||
event.Skip();
|
||||
wxTheApp->CallAfter([btn, this]() { set_uniform_scaling(btn->IsLocked()); });
|
||||
});
|
||||
m_lock_bnt = btn;
|
||||
return btn;
|
||||
};
|
||||
}
|
||||
@ -399,8 +400,11 @@ void ObjectManipulation::update_if_dirty()
|
||||
|
||||
m_cache.rotation = m_new_rotation;
|
||||
|
||||
// if (wxGetApp().plater()->canvas3D()->get_selection().requires_uniform_scale())
|
||||
// m_uniform_scale = true;
|
||||
if (wxGetApp().plater()->canvas3D()->get_selection().requires_uniform_scale()) {
|
||||
// m_uniform_scale = true;
|
||||
m_lock_bnt->SetLock(true);
|
||||
// m_lock_bnt->Disable();
|
||||
}
|
||||
|
||||
if (m_new_enabled)
|
||||
m_og->enable();
|
||||
|
@ -7,6 +7,7 @@
|
||||
#include "GLCanvas3D.hpp"
|
||||
|
||||
class wxStaticText;
|
||||
class PrusaLockButton;
|
||||
|
||||
namespace Slic3r {
|
||||
namespace GUI {
|
||||
@ -75,6 +76,7 @@ class ObjectManipulation : public OG_Settings
|
||||
Vec3d m_new_size;
|
||||
bool m_new_enabled;
|
||||
bool m_uniform_scale {false};
|
||||
PrusaLockButton* m_lock_bnt{ nullptr };
|
||||
|
||||
public:
|
||||
ObjectManipulation(wxWindow* parent);
|
||||
|
@ -2216,6 +2216,12 @@ void PrusaLockButton::OnButton(wxCommandEvent& event)
|
||||
event.Skip();
|
||||
}
|
||||
|
||||
void PrusaLockButton::SetLock(bool lock)
|
||||
{
|
||||
m_is_pushed = lock;
|
||||
enter_button(true);
|
||||
}
|
||||
|
||||
void PrusaLockButton::enter_button(const bool enter)
|
||||
{
|
||||
wxBitmap* icon = m_is_pushed ?
|
||||
|
@ -851,6 +851,7 @@ public:
|
||||
void OnLeaveBtn(wxMouseEvent& event) { enter_button(false); event.Skip(); }
|
||||
|
||||
bool IsLocked() const { return m_is_pushed; }
|
||||
void SetLock(bool lock);
|
||||
|
||||
protected:
|
||||
void enter_button(const bool enter);
|
||||
|
Loading…
Reference in New Issue
Block a user