2
0
mirror of https://github.com/telegramdesktop/tdesktop synced 2025-08-22 18:27:17 +00:00
tdesktop/Telegram/SourceFiles/ui/effects/send_action_animations.h

56 lines
981 B
C
Raw Normal View History

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