2016-07-11 11:14:58 -04:00
|
|
|
namespace Components
|
|
|
|
{
|
|
|
|
class Toast : public Component
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
Toast();
|
|
|
|
~Toast();
|
2016-08-15 10:40:30 -04:00
|
|
|
|
2016-09-16 05:04:28 -04:00
|
|
|
#if defined(DEBUG) || defined(FORCE_UNIT_TESTS)
|
2016-08-15 10:40:30 -04:00
|
|
|
const char* GetName() { return "Toast"; };
|
|
|
|
#endif
|
2016-07-11 11:14:58 -04:00
|
|
|
|
|
|
|
static void Show(std::string image, std::string title, std::string description, int length);
|
|
|
|
|
|
|
|
private:
|
|
|
|
class UIToast
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
std::string Image;
|
|
|
|
std::string Title;
|
|
|
|
std::string Desc;
|
|
|
|
int Length;
|
|
|
|
int Start;
|
|
|
|
};
|
|
|
|
|
|
|
|
static void Handler();
|
|
|
|
static void Draw(UIToast* toast);
|
|
|
|
|
|
|
|
static std::queue<UIToast> Queue;
|
|
|
|
static std::mutex Mutex;
|
|
|
|
};
|
|
|
|
}
|