mirror of
				https://github.com/SoftFever/OrcaSlicer.git
				synced 2025-10-30 20:21:12 -06:00 
			
		
		
		
	
		
			
				
	
	
		
			26 lines
		
	
	
	
		
			692 B
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			26 lines
		
	
	
	
		
			692 B
		
	
	
	
		
			C++
		
	
	
	
	
	
| #ifndef NOTIFICATIONPROGRESSINDICATOR_HPP
 | |
| #define NOTIFICATIONPROGRESSINDICATOR_HPP
 | |
| 
 | |
| #include "ProgressIndicator.hpp"
 | |
| 
 | |
| namespace Slic3r { namespace GUI {
 | |
| 
 | |
| class NotificationManager;
 | |
| 
 | |
| class NotificationProgressIndicator: public ProgressIndicator {
 | |
|     NotificationManager *m_nm = nullptr;
 | |
| 
 | |
| public:
 | |
| 
 | |
|     explicit NotificationProgressIndicator(NotificationManager *nm);
 | |
| 
 | |
|     void set_range(int range) override;
 | |
|     void set_cancel_callback(CancelFn = CancelFn()) override;
 | |
|     void set_progress(int pr) override;
 | |
|     void set_status_text(const char *) override; // utf8 char array
 | |
|     int  get_range() const override;
 | |
| };
 | |
| 
 | |
| }} // namespace Slic3r::GUI
 | |
| 
 | |
| #endif // NOTIFICATIONPROGRESSINDICATOR_HPP
 | 
