tdesktop/Telegram/SourceFiles/ui/effects/send_action_animations.h

44 lines
926 B
C
Raw Normal View History

2016-12-01 19:20:33 +00:00
/*
This file is part of Telegram Desktop,
the official desktop application for the Telegram messaging service.
2016-12-01 19:20:33 +00:00
For license and copyright information please follow this link:
https://github.com/telegramdesktop/tdesktop/blob/master/LEGAL
2016-12-01 19:20:33 +00:00
*/
#pragma once
namespace Api {
enum class SendProgressType;
} // namespace Api
2016-12-01 19:20:33 +00:00
namespace Ui {
class SendActionAnimation {
public:
using Type = Api::SendProgressType;
class Impl;
SendActionAnimation();
~SendActionAnimation();
2016-12-01 19:20:33 +00:00
void start(Type type);
void tryToFinish();
2016-12-01 19:20:33 +00:00
int width() const;
void paint(Painter &p, style::color color, int x, int y, int outerWidth, crl::time ms) const;
2016-12-01 19:20:33 +00:00
explicit operator bool() const {
return _impl != nullptr;
}
static void PaintSpeakingIdle(Painter &p, style::color color, int x, int y, int outerWidth);
2016-12-01 19:20:33 +00:00
private:
[[nodiscard]] static std::unique_ptr<Impl> CreateByType(Type type);
2016-12-01 19:20:33 +00:00
std::unique_ptr<Impl> _impl;
2016-12-01 19:20:33 +00:00
};
} // namespace Ui