mirror of
https://github.com/SoftFever/OrcaSlicer.git
synced 2025-07-10 08:17:51 -06:00
Add the full source of BambuStudio
using version 1.0.10
This commit is contained in:
parent
30bcadab3e
commit
1555904bef
3771 changed files with 1251328 additions and 0 deletions
79
src/slic3r/GUI/BBLStatusBar.hpp
Normal file
79
src/slic3r/GUI/BBLStatusBar.hpp
Normal file
|
@ -0,0 +1,79 @@
|
|||
#ifndef BBLSTATUSBAR_HPP
|
||||
#define BBLSTATUSBAR_HPP
|
||||
|
||||
#include <wx/panel.h>
|
||||
#include <wx/stattext.h>
|
||||
|
||||
#include <memory>
|
||||
#include <string>
|
||||
#include <functional>
|
||||
#include <string>
|
||||
|
||||
#include "Jobs/ProgressIndicator.hpp"
|
||||
|
||||
class wxTimer;
|
||||
class wxGauge;
|
||||
class wxButton;
|
||||
class wxTimerEvent;
|
||||
class wxStatusBar;
|
||||
class wxWindow;
|
||||
class wxFrame;
|
||||
class wxString;
|
||||
class wxFont;
|
||||
|
||||
namespace Slic3r {
|
||||
|
||||
class BBLStatusBar : public ProgressIndicator
|
||||
{
|
||||
wxPanel* m_self; // we cheat! It should be the base class but: perl!
|
||||
wxGauge *m_prog;
|
||||
wxButton *m_cancelbutton;
|
||||
wxStaticText *m_status_text;
|
||||
wxStaticText* m_object_info;
|
||||
wxStaticText* m_slice_info;
|
||||
wxBoxSizer *m_slice_info_sizer;
|
||||
wxBoxSizer *m_object_info_sizer;
|
||||
wxBoxSizer *m_sizer;
|
||||
public:
|
||||
BBLStatusBar(wxWindow *parent = nullptr, int id = -1);
|
||||
~BBLStatusBar() = default;
|
||||
|
||||
int get_progress() const;
|
||||
// if the argument is less than 0 it shows the last state or
|
||||
// pulses if no state was set before.
|
||||
void set_progress(int) override;
|
||||
int get_range() const override;
|
||||
void set_range(int = 100) override;
|
||||
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()) override;
|
||||
inline void reset_cancel_callback() { set_cancel_callback(); }
|
||||
wxPanel* get_panel();
|
||||
void set_status_text(const wxString& txt);
|
||||
void set_status_text(const std::string& txt);
|
||||
void set_status_text(const char *txt) override;
|
||||
wxString get_status_text() const;
|
||||
void set_font(const wxFont &font);
|
||||
void set_object_info(const wxString& txt);
|
||||
void set_slice_info(const wxString& txt);
|
||||
void show_slice_info(bool show);
|
||||
bool is_slice_info_shown();
|
||||
|
||||
// Temporary methods to satisfy Perl side
|
||||
void show_cancel_button();
|
||||
void hide_cancel_button();
|
||||
|
||||
private:
|
||||
bool m_busy = false;
|
||||
CancelFn m_cancel_cb;
|
||||
};
|
||||
|
||||
namespace GUI {
|
||||
using Slic3r::BBLStatusBar;
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
#endif // BBLSTATUSBAR_HPP
|
Loading…
Add table
Add a link
Reference in a new issue