Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/supermerill/SuperSlicer.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorbubnikv <bubnikv@gmail.com>2018-09-20 17:48:40 +0300
committerbubnikv <bubnikv@gmail.com>2018-09-20 17:48:40 +0300
commit20d0f046d2d75468dcb193f84d73ea8522e10c33 (patch)
tree9e1d49a349a8078079492e886be465a4ed6ee0d8 /src/slic3r/GUI/ProgressStatusBar.cpp
parentadd45a8f6e656fdf4af2cfe5d5ce82457e08e2be (diff)
parent07274589a35948e135ccb2eed59626a41c61444b (diff)
Merge remote-tracking branch 'origin/dev2' into dev_nativeversion_1.42.0-alpha
Diffstat (limited to 'src/slic3r/GUI/ProgressStatusBar.cpp')
-rw-r--r--src/slic3r/GUI/ProgressStatusBar.cpp76
1 files changed, 38 insertions, 38 deletions
diff --git a/src/slic3r/GUI/ProgressStatusBar.cpp b/src/slic3r/GUI/ProgressStatusBar.cpp
index 363e34cb2..0ca86084b 100644
--- a/src/slic3r/GUI/ProgressStatusBar.cpp
+++ b/src/slic3r/GUI/ProgressStatusBar.cpp
@@ -14,117 +14,117 @@ namespace Slic3r {
ProgressStatusBar::ProgressStatusBar(wxWindow *parent, int id):
self(new wxStatusBar(parent ? parent : GUI::get_main_frame(),
id == -1? wxID_ANY : id)),
- timer_(new wxTimer(self)),
- prog_ (new wxGauge(self,
+ m_timer(new wxTimer(self)),
+ m_prog (new wxGauge(self,
wxGA_HORIZONTAL,
100,
wxDefaultPosition,
wxDefaultSize)),
- cancelbutton_(new wxButton(self,
+ m_cancelbutton(new wxButton(self,
-1,
"Cancel",
wxDefaultPosition,
wxDefaultSize))
{
- prog_->Hide();
- cancelbutton_->Hide();
+ m_prog->Hide();
+ m_cancelbutton->Hide();
self->SetFieldsCount(3);
int w[] = {-1, 150, 155};
self->SetStatusWidths(3, w);
self->Bind(wxEVT_TIMER, [this](const wxTimerEvent&) {
- if (prog_->IsShown()) timer_->Stop();
- if(is_busy()) prog_->Pulse();
+ if (m_prog->IsShown()) m_timer->Stop();
+ if(is_busy()) m_prog->Pulse();
});
self->Bind(wxEVT_SIZE, [this](wxSizeEvent& event){
wxRect rect;
self->GetFieldRect(1, rect);
auto offset = 0;
- cancelbutton_->Move(rect.GetX() + offset, rect.GetY() + offset);
- cancelbutton_->SetSize(rect.GetWidth() - offset, rect.GetHeight());
+ m_cancelbutton->Move(rect.GetX() + offset, rect.GetY() + offset);
+ m_cancelbutton->SetSize(rect.GetWidth() - offset, rect.GetHeight());
self->GetFieldRect(2, rect);
- prog_->Move(rect.GetX() + offset, rect.GetY() + offset);
- prog_->SetSize(rect.GetWidth() - offset, rect.GetHeight());
+ m_prog->Move(rect.GetX() + offset, rect.GetY() + offset);
+ m_prog->SetSize(rect.GetWidth() - offset, rect.GetHeight());
event.Skip();
});
- cancelbutton_->Bind(wxEVT_BUTTON, [this](const wxCommandEvent&) {
- if(cancel_cb_) cancel_cb_();
+ m_cancelbutton->Bind(wxEVT_BUTTON, [this](const wxCommandEvent&) {
+ if(m_cancel_cb) m_cancel_cb();
m_perl_cancel_callback.call();
- cancelbutton_->Hide();
+ m_cancelbutton->Hide();
});
}
ProgressStatusBar::~ProgressStatusBar() {
- if(timer_->IsRunning()) timer_->Stop();
+ if(m_timer->IsRunning()) m_timer->Stop();
}
int ProgressStatusBar::get_progress() const
{
- return prog_->GetValue();
+ return m_prog->GetValue();
}
void ProgressStatusBar::set_progress(int val)
{
- if(!prog_->IsShown()) show_progress(true);
+ if(!m_prog->IsShown()) show_progress(true);
- if(val == prog_->GetRange()) {
- prog_->SetValue(0);
+ if(val == m_prog->GetRange()) {
+ m_prog->SetValue(0);
show_progress(false);
} else {
- prog_->SetValue(val);
+ m_prog->SetValue(val);
}
}
int ProgressStatusBar::get_range() const
{
- return prog_->GetRange();
+ return m_prog->GetRange();
}
void ProgressStatusBar::set_range(int val)
{
- if(val != prog_->GetRange()) {
- prog_->SetRange(val);
+ if(val != m_prog->GetRange()) {
+ m_prog->SetRange(val);
}
}
void ProgressStatusBar::show_progress(bool show)
{
- prog_->Show(show);
- prog_->Pulse();
+ m_prog->Show(show);
+ m_prog->Pulse();
}
void ProgressStatusBar::start_busy(int rate)
{
- busy_ = true;
+ m_busy = true;
show_progress(true);
- if (!timer_->IsRunning()) {
- timer_->Start(rate);
+ if (!m_timer->IsRunning()) {
+ m_timer->Start(rate);
}
}
void ProgressStatusBar::stop_busy()
{
- timer_->Stop();
+ m_timer->Stop();
show_progress(false);
- prog_->SetValue(0);
- busy_ = false;
+ m_prog->SetValue(0);
+ m_busy = false;
}
void ProgressStatusBar::set_cancel_callback(ProgressStatusBar::CancelFn ccb) {
- cancel_cb_ = ccb;
- if(ccb) cancelbutton_->Show();
- else cancelbutton_->Hide();
+ m_cancel_cb = ccb;
+ if(ccb) m_cancelbutton->Show();
+ else m_cancelbutton->Hide();
}
void ProgressStatusBar::run(int rate)
{
- if(!timer_->IsRunning()) {
- timer_->Start(rate);
+ if(!m_timer->IsRunning()) {
+ m_timer->Start(rate);
}
}
@@ -141,12 +141,12 @@ void ProgressStatusBar::set_status_text(const wxString& txt)
void ProgressStatusBar::show_cancel_button()
{
- cancelbutton_->Show();
+ m_cancelbutton->Show();
}
void ProgressStatusBar::hide_cancel_button()
{
- cancelbutton_->Hide();
+ m_cancelbutton->Hide();
}
}