Files
OrcaSlicer-bambulab/src/slic3r/GUI/ProgressStatusBar.hpp
T

74 lines
2.0 KiB
C++
Raw Normal View History

2018-08-29 18:02:10 +02:00
#ifndef PROGRESSSTATUSBAR_HPP
#define PROGRESSSTATUSBAR_HPP
#include <memory>
#include <string>
2018-08-29 18:02:10 +02:00
#include <functional>
2019-06-13 13:15:10 +02:00
#include <string>
2018-08-29 18:02:10 +02:00
class wxTimer;
class wxGauge;
class wxButton;
class wxTimerEvent;
class wxStatusBar;
class wxWindow;
2018-08-30 11:40:06 +02:00
class wxFrame;
2018-09-17 15:12:13 +02:00
class wxString;
2018-08-29 18:02:10 +02:00
namespace Slic3r {
/**
* @brief The ProgressStatusBar class is the widgets occupying the lower area
* of the Slicer main window. It consists of a message area to the left and a
* progress indication area to the right with an optional cancel button.
*/
class ProgressStatusBar
{
2018-08-29 18:02:10 +02:00
wxStatusBar *self; // we cheat! It should be the base class but: perl!
wxGauge *m_prog;
wxButton *m_cancelbutton;
2019-07-30 17:52:05 +02:00
std::unique_ptr<wxTimer> m_timer;
2018-08-29 18:02:10 +02:00
public:
/// Cancel callback function type
using CancelFn = std::function<void()>;
ProgressStatusBar(wxWindow *parent = nullptr, int id = -1);
~ProgressStatusBar();
int get_progress() const;
2018-11-29 18:12:40 +01:00
// if the argument is less than 0 it shows the last state or
// pulses if no state was set before.
void set_progress(int);
int get_range() const;
void set_range(int = 100);
void show_progress(bool);
void start_busy(int = 100);
void stop_busy();
inline bool is_busy() const { return m_busy; }
void set_cancel_callback(CancelFn = CancelFn());
inline void reset_cancel_callback() { set_cancel_callback(); }
void run(int rate);
void embed(wxFrame *frame = nullptr);
void set_status_text(const wxString& txt);
void set_status_text(const std::string& txt);
void set_status_text(const char *txt);
wxString get_status_text() const;
2018-08-29 18:02:10 +02:00
// Temporary methods to satisfy Perl side
void show_cancel_button();
void hide_cancel_button();
2018-08-29 18:02:10 +02:00
private:
bool m_busy = false;
CancelFn m_cancel_cb;
2018-08-29 18:02:10 +02:00
};
namespace GUI {
using Slic3r::ProgressStatusBar;
}
}
#endif // PROGRESSSTATUSBAR_HPP