/** * @author Edouard DUPIN * * @copyright 2010, Edouard DUPIN, all right reserved * * @license GPL v3 (see license file) */ #ifndef __WORKER_SAVE_FILE_H__ #define __WORKER_SAVE_FILE_H__ #include #include #include namespace appl { class WorkerSaveFile : public ewol::object::Worker { public: ewol::object::Signal signalSaveDone; ewol::object::Signal signalAbort; protected: WorkerSaveFile(); void init(const std::string& _bufferName, bool _forceSaveAs=true); public: DECLARE_FACTORY(WorkerSaveFile); virtual ~WorkerSaveFile(); private: std::string m_bufferName; std::shared_ptr m_chooser; //! pop-up element that is open... std::shared_ptr m_bufferManager; //!< handle on the buffer manager public: // callback function void onCallbackSaveAsValidate(const std::string& _value); void onCallbackCancel(); }; }; #endif