zeus/tools/player-video/appl/Windows.hpp

30 lines
701 B
C++

/** @file
* @author Edouard DUPIN
* @copyright 2016, Edouard DUPIN, all right reserved
* @license GPL v3 (see license file)
*/
#pragma once
#include <ewol/widget/Windows.hpp>
#include <ewol/widget/Composer.hpp>
namespace appl {
class Windows;
using WindowsShared = ememory::SharedPtr<appl::Windows>;
using WindowsWeak = ememory::WeakPtr<appl::Windows>;
class Windows : public ewol::widget::Windows {
protected:
Windows();
void init();
ewol::widget::ComposerShared m_composer;
public:
DECLARE_FACTORY(Windows);
public: // callback functions
void onCallbackPrevious();
void onCallbackPlay();
void onCallbackNext();
void onCallbackFPS(const int32_t& _fps);
};
}