/** @file * @author Edouard DUPIN * @copyright 2010, Edouard DUPIN, all right reserved * @license GPL v3 (see license file) */ #pragma once #include #include #include #include #include #include #include #include class MainWindows : public ewol::widget::Windows { private: ewol::widget::LabelShared m_widgetLabelFileName; appl::widget::SearchShared m_widgetSearch; esignal::Connection m_connectionSave; esignal::Connection m_connectionModify; esignal::Connection m_connectionSaveName; protected: // Constructeur MainWindows(); void init(); public: DECLARE_FACTORY(MainWindows); virtual ~MainWindows(); private: ememory::SharedPtr m_bufferManager; //!< handle on the buffer manager ememory::SharedPtr m_viewerManager; //!< handle on the buffer manager /** * @brief Display a pop-up to the select the name of the file. * @param[in] _buffer Buffer that might be saved with a new name. */ void saveAsPopUp(const ememory::SharedPtr& _buffer); /** * @brief Display a pop-up to the user to confirm wat he want to do when he close a file not saved. * @param[in] _buffer Buffer that might be close. */ void closeNotSavedFile(const ememory::SharedPtr& _buffer); void displayOpen(); void displayProperty(); private: void onCallbackPopUpFileSelected(const std::string& _value); void onCallbackTitleUpdate(); void onCallbackMenuEvent(const std::string& _value); void onCallbackShortCut(const std::string& _value); void onCallbackselectNewFile(const std::string& _value); };