78 linhas
1.8 KiB
C++
78 linhas
1.8 KiB
C++
/*
|
|
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/effects/animations.h"
|
|
#include "ui/rp_widget.h"
|
|
#include "ui/text/text.h"
|
|
|
|
class HistoryItem;
|
|
|
|
namespace ChatHelpers {
|
|
class Show;
|
|
} // namespace ChatHelpers
|
|
|
|
namespace Data {
|
|
class Session;
|
|
} // namespace Data
|
|
|
|
namespace Ui {
|
|
class IconButton;
|
|
class SpoilerAnimation;
|
|
} // namespace Ui
|
|
|
|
namespace SendFiles {
|
|
|
|
class ReplyPillHeader final : public Ui::RpWidget {
|
|
public:
|
|
ReplyPillHeader(
|
|
QWidget *parent,
|
|
std::shared_ptr<ChatHelpers::Show> show,
|
|
FullReplyTo replyTo);
|
|
~ReplyPillHeader();
|
|
|
|
[[nodiscard]] rpl::producer<> closeRequests() const;
|
|
[[nodiscard]] rpl::producer<> hideFinished() const;
|
|
[[nodiscard]] rpl::producer<int> desiredHeight() const;
|
|
|
|
void setRoundedShapeBelow(bool value);
|
|
void hideAnimated();
|
|
|
|
protected:
|
|
void paintEvent(QPaintEvent *e) override;
|
|
void resizeEvent(QResizeEvent *e) override;
|
|
|
|
private:
|
|
void resolveMessageData();
|
|
void setShownMessage(HistoryItem *item);
|
|
void updateShownMessageText();
|
|
void customEmojiRepaint();
|
|
void animationCallback();
|
|
|
|
const std::shared_ptr<ChatHelpers::Show> _show;
|
|
const not_null<Data::Session*> _data;
|
|
const FullReplyTo _replyTo;
|
|
const not_null<Ui::IconButton*> _cancel;
|
|
|
|
HistoryItem *_shownMessage = nullptr;
|
|
Ui::Text::String _shownMessageName;
|
|
Ui::Text::String _shownMessageText;
|
|
std::unique_ptr<Ui::SpoilerAnimation> _previewSpoiler;
|
|
bool _repaintScheduled = false;
|
|
|
|
Ui::Animations::Simple _showAnimation;
|
|
rpl::variable<int> _desiredHeight = 0;
|
|
rpl::event_stream<> _closeRequests;
|
|
rpl::variable<bool> _hideFinished = false;
|
|
bool _hiding = false;
|
|
bool _roundedShapeBelow = true;
|
|
|
|
};
|
|
|
|
} // namespace SendFiles
|