/** @file * @author Edouard DUPIN * @copyright 2016, Edouard DUPIN, all right reserved * @license PROPRIETARY (see license file) */ #pragma once #include #include namespace appl { class Windows; using WindowsShared = ememory::SharedPtr; using WindowsWeak = ememory::WeakPtr; class Windows : public ewol::widget::Windows { private: ewol::widget::ComposerShared m_composer; std::vector m_listValue; size_t m_currentId; std::vector m_listType; size_t m_currentTypeId; std::string m_userName; protected: Windows(); void init(); public: DECLARE_FACTORY(Windows); public: // callback functions void onCallbackChangeNameUser(const std::string& _value); void onCallbackClear(); void onCallbackUndo(); void onCallbackStore(); void onCallbackPrevious(); void onCallbackNext(); void onCallbackPreviousType(); void onCallbackNextType(); }; }