mirror of
https://git.mirrors.martin98.com/https://github.com/prusa3d/PrusaSlicer.git
synced 2025-07-10 02:41:49 +08:00
34 lines
845 B
C++
34 lines
845 B
C++
#include "NotificationProgressIndicator.hpp"
|
|
#include "slic3r/GUI/NotificationManager.hpp"
|
|
|
|
namespace Slic3r { namespace GUI {
|
|
|
|
NotificationProgressIndicator::NotificationProgressIndicator(NotificationManager *nm): m_nm{nm} {}
|
|
|
|
void NotificationProgressIndicator::set_range(int range)
|
|
{
|
|
m_nm->progress_indicator_set_range(range);
|
|
}
|
|
|
|
void NotificationProgressIndicator::set_cancel_callback(CancelFn fn)
|
|
{
|
|
m_nm->progress_indicator_set_cancel_callback(std::move(fn));
|
|
}
|
|
|
|
void NotificationProgressIndicator::set_progress(int pr)
|
|
{
|
|
m_nm->progress_indicator_set_progress(pr);
|
|
}
|
|
|
|
void NotificationProgressIndicator::set_status_text(const char *msg)
|
|
{
|
|
m_nm->progress_indicator_set_status_text(msg);
|
|
}
|
|
|
|
int NotificationProgressIndicator::get_range() const
|
|
{
|
|
return m_nm->progress_indicator_get_range();
|
|
}
|
|
|
|
}} // namespace Slic3r::GUI
|