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

56 lines
979 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;
int widthNoMargins() const;
2021-08-30 13:11:43 +00:00
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;
}
2021-08-30 13:11:43 +00:00
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