mirror of
https://github.com/SoftFever/OrcaSlicer.git
synced 2025-08-05 13:04:03 -06:00
71 lines
1.8 KiB
C++
71 lines
1.8 KiB
C++
#ifndef IPROGRESSINDICATOR_HPP
|
|
#define IPROGRESSINDICATOR_HPP
|
|
|
|
#include <string>
|
|
#include <functional>
|
|
#include "Strings.hpp"
|
|
|
|
namespace Slic3r {
|
|
|
|
/**
|
|
* @brief Generic progress indication interface.
|
|
*/
|
|
class IProgressIndicator {
|
|
public:
|
|
using CancelFn = std::function<void(void)>; // Cancel functio signature.
|
|
|
|
private:
|
|
float state_ = .0f, max_ = 1.f, step_;
|
|
CancelFn cancelfunc_ = [](){};
|
|
|
|
public:
|
|
|
|
inline virtual ~IProgressIndicator() {}
|
|
|
|
/// Get the maximum of the progress range.
|
|
float max() const { return max_; }
|
|
|
|
/// Get the current progress state
|
|
float state() const { return state_; }
|
|
|
|
/// Set the maximum of hte progress range
|
|
virtual void max(float maxval) { max_ = maxval; }
|
|
|
|
/// Set the current state of the progress.
|
|
virtual void state(float val) { state_ = val; }
|
|
|
|
/**
|
|
* @brief Number of states int the progress. Can be used insted of giving a
|
|
* maximum value.
|
|
*/
|
|
virtual void states(unsigned statenum) {
|
|
step_ = max_ / statenum;
|
|
}
|
|
|
|
/// Message shown on the next status update.
|
|
virtual void message(const string&) = 0;
|
|
|
|
/// Title of the operaton.
|
|
virtual void title(const string&) = 0;
|
|
|
|
/// Formatted message for the next status update. Works just like sprinf.
|
|
virtual void message_fmt(const string& fmt, ...);
|
|
|
|
/// Set up a cancel callback for the operation if feasible.
|
|
inline void on_cancel(CancelFn func) { cancelfunc_ = func; }
|
|
|
|
/**
|
|
* Explicitly shut down the progress indicator and call the associated
|
|
* callback.
|
|
*/
|
|
virtual void cancel() { cancelfunc_(); }
|
|
|
|
/// Convinience function to call message and status update in one function.
|
|
void update(float st, const string& msg) {
|
|
message(msg); state(st);
|
|
}
|
|
};
|
|
|
|
}
|
|
|
|
#endif // IPROGRESSINDICATOR_HPP
|