2
0
mirror of https://github.com/telegramdesktop/tdesktop synced 2025-08-23 10:47:11 +00:00

72 lines
1.5 KiB
C
Raw Normal View History

2020-10-13 13:00:35 +03:00
/*
This file is part of Telegram Desktop,
the official desktop application for the Telegram messaging service.
For license and copyright information please follow this link:
https://github.com/telegramdesktop/tdesktop/blob/master/LEGAL
*/
#pragma once
#include "ui/widgets/buttons.h"
namespace style {
struct SendButton;
} // namespace style
2020-10-13 13:00:35 +03:00
namespace Ui {
class SendButton final : public RippleButton {
public:
SendButton(QWidget *parent, const style::SendButton &st);
2020-10-13 13:00:35 +03:00
static constexpr auto kSlowmodeDelayLimit = 100 * 60;
enum class Type {
Send,
Schedule,
Save,
Record,
2024-10-08 22:43:24 +04:00
Round,
2020-10-13 13:00:35 +03:00
Cancel,
Slowmode,
};
[[nodiscard]] Type type() const {
return _type;
}
void setType(Type state);
void setSlowmodeDelay(int seconds);
void finishAnimating();
protected:
void paintEvent(QPaintEvent *e) override;
QImage prepareRippleMask() const override;
QPoint prepareRippleStartPosition() const override;
private:
[[nodiscard]] QPixmap grabContent();
[[nodiscard]] bool isSlowmode() const;
2022-09-17 00:23:27 +04:00
void paintRecord(QPainter &p, bool over);
2024-10-08 22:43:24 +04:00
void paintRound(QPainter &p, bool over);
2022-09-17 00:23:27 +04:00
void paintSave(QPainter &p, bool over);
void paintCancel(QPainter &p, bool over);
void paintSend(QPainter &p, bool over);
void paintSchedule(QPainter &p, bool over);
void paintSlowmode(QPainter &p);
2020-10-13 13:00:35 +03:00
const style::SendButton &_st;
2020-10-13 13:00:35 +03:00
Type _type = Type::Send;
Type _afterSlowmodeType = Type::Send;
QPixmap _contentFrom, _contentTo;
Ui::Animations::Simple _a_typeChanged;
2020-10-13 13:00:35 +03:00
int _slowmodeDelay = 0;
QString _slowmodeDelayText;
};
} // namespace Ui