refactoring

This commit is contained in:
David Kocik 2019-11-28 13:50:58 +01:00
parent b7a5020196
commit 7301b4f7dd
4 changed files with 22 additions and 22 deletions

View file

@ -270,7 +270,7 @@ bool GUI_App::on_init_inner()
this->obj_manipul()->update_if_dirty(); this->obj_manipul()->update_if_dirty();
RemovableDriveManager::getInstance().update(wxGetLocalTime()); RemovableDriveManager::get_instance().update(wxGetLocalTime());
// Preset updating & Configwizard are done after the above initializations, // Preset updating & Configwizard are done after the above initializations,
// and after MainFrame is created & shown. // and after MainFrame is created & shown.
// The extra CallAfter() is needed because of Mac, where this is the only way // The extra CallAfter() is needed because of Mac, where this is the only way

View file

@ -4550,11 +4550,11 @@ void Plater::export_gcode()
} }
default_output_file = fs::path(Slic3r::fold_utf8_to_ascii(default_output_file.string())); default_output_file = fs::path(Slic3r::fold_utf8_to_ascii(default_output_file.string()));
auto start_dir = wxGetApp().app_config->get_last_output_dir(default_output_file.parent_path().string()); auto start_dir = wxGetApp().app_config->get_last_output_dir(default_output_file.parent_path().string());
if (GUI::RemovableDriveManager::getInstance().update()) if (GUI::RemovableDriveManager::get_instance().update())
{ {
if (!RemovableDriveManager::getInstance().is_path_on_removable_drive(start_dir)) if (!RemovableDriveManager::get_instance().is_path_on_removable_drive(start_dir))
{ {
start_dir = RemovableDriveManager::getInstance().get_last_drive_path(); start_dir = RemovableDriveManager::get_instance().get_last_drive_path();
} }
} }
wxFileDialog dlg(this, (printer_technology() == ptFFF) ? _(L("Save G-code file as:")) : _(L("Save SL1 file as:")), wxFileDialog dlg(this, (printer_technology() == ptFFF) ? _(L("Save G-code file as:")) : _(L("Save SL1 file as:")),

View file

@ -22,8 +22,8 @@ DEFINE_GUID(GUID_DEVINTERFACE_USB_DEVICE,
namespace Slic3r { namespace Slic3r {
namespace GUI { namespace GUI {
std::vector<DriveData> RemovableDriveManager::m_current_drives; //std::vector<DriveData> RemovableDriveManager::m_current_drives;
std::vector<std::function<void()>> RemovableDriveManager::m_callbacks; //std::vector<std::function<void()>> RemovableDriveManager::m_callbacks;
#if _WIN32 #if _WIN32
@ -242,7 +242,7 @@ bool RemovableDriveManager::update(long time)
if(last_update == 0) if(last_update == 0)
{ {
//add_callback(std::bind(&RemovableDriveManager::print, RemovableDriveManager::getInstance())); //add_callback(std::bind(&RemovableDriveManager::print, RemovableDriveManager::getInstance()));
add_callback([](void) { print(); }); add_callback([](void) { RemovableDriveManager::get_instance().print(); });
#if _WIN32 #if _WIN32
register_window(); register_window();
#endif #endif

View file

@ -15,7 +15,7 @@ struct DriveData
class RemovableDriveManager class RemovableDriveManager
{ {
public: public:
static RemovableDriveManager& getInstance() static RemovableDriveManager& get_instance()
{ {
static RemovableDriveManager instance; static RemovableDriveManager instance;
return instance; return instance;
@ -24,24 +24,24 @@ public:
void operator=(RemovableDriveManager const&) = delete; void operator=(RemovableDriveManager const&) = delete;
//update() searches for removable devices, returns false if empty. //update() searches for removable devices, returns false if empty.
static bool update(long time = 0); //time = 0 is forced update bool update(long time = 0); //time = 0 is forced update
static bool is_drive_mounted(const std::string &path); bool is_drive_mounted(const std::string &path);
static void eject_drive(const std::string &path); void eject_drive(const std::string &path);
static std::string get_last_drive_path(); std::string get_last_drive_path();
static std::vector<DriveData> get_all_drives(); std::vector<DriveData> get_all_drives();
static bool is_path_on_removable_drive(const std::string &path); bool is_path_on_removable_drive(const std::string &path);
static void add_callback(std::function<void()> callback); void add_callback(std::function<void()> callback);
static void print(); void print();
private: private:
RemovableDriveManager(){} RemovableDriveManager(){}
static void search_for_drives(); void search_for_drives();
static void check_and_notify(); void check_and_notify();
static std::vector<DriveData> m_current_drives; std::vector<DriveData> m_current_drives;
static std::vector<std::function<void()>> m_callbacks; std::vector<std::function<void()>> m_callbacks;
#if _WIN32 #if _WIN32
static void register_window(); void register_window();
#else #else
static void search_path(const std::string &path, const dev_t &parentDevID); void search_path(const std::string &path, const dev_t &parentDevID);
#endif #endif
}; };
}} }}