1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247
|
/*
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/rp_widget.h"
#include "chat_helpers/bot_command.h"
#include "dialogs/dialogs_key.h"
#include "media/player/media_player_float.h" // FloatSectionDelegate
#include "base/object_ptr.h"
#include "window/window_section_common.h"
class PeerData;
namespace Data {
struct ReactionId;
class ForumTopic;
} // namespace Data
namespace Main {
class Session;
} // namespace Main
namespace Ui {
class LayerWidget;
class ChatTheme;
} // namespace Ui
namespace Window {
class SessionController;
class SlideAnimation;
struct SectionShow;
enum class SlideDirection;
enum class Column {
First,
Second,
Third,
};
class AbstractSectionWidget
: public Ui::RpWidget
, public Media::Player::FloatSectionDelegate {
public:
AbstractSectionWidget(
QWidget *parent,
not_null<SessionController*> controller,
rpl::producer<PeerData*> peerForBackground);
[[nodiscard]] Main::Session &session() const;
[[nodiscard]] not_null<SessionController*> controller() const {
return _controller;
}
// Tabbed selector management.
virtual bool pushTabbedSelectorToThirdSection(
not_null<Data::Thread*> thread,
const SectionShow ¶ms) {
return false;
}
virtual bool returnTabbedSelector() {
return false;
}
private:
const not_null<SessionController*> _controller;
};
class SectionMemento;
struct SectionSlideParams {
QPixmap oldContentCache;
int topSkip = 0;
QPixmap topMask;
bool withTopBarShadow = false;
bool withTabs = false;
bool withFade = false;
explicit operator bool() const {
return !oldContentCache.isNull();
}
};
class SectionWidget : public AbstractSectionWidget {
public:
SectionWidget(
QWidget *parent,
not_null<SessionController*> controller,
rpl::producer<PeerData*> peerForBackground = nullptr);
SectionWidget(
QWidget *parent,
not_null<SessionController*> controller,
not_null<PeerData*> peerForBackground);
virtual Dialogs::RowDescriptor activeChat() const {
return {};
}
// When resizing the widget with top edge moved up or down and we
// want to add this top movement to the scroll position, so inner
// content will not move.
void setGeometryWithTopMoved(const QRect &newGeometry, int topDelta);
virtual bool hasTopBarShadow() const {
return false;
}
virtual bool forceAnimateBack() const {
return false;
}
void showAnimated(
SlideDirection direction,
const SectionSlideParams ¶ms);
void showFast();
[[nodiscard]] bool animatingShow() const;
// This can be used to grab with or without top bar shadow.
// This will be protected when animation preparation will be done inside.
virtual QPixmap grabForShowAnimation(const SectionSlideParams ¶ms);
// Attempt to show the required section inside the existing one.
// For example if this section already shows exactly the required
// memento it can simply return true - it is shown already.
//
// If this method returns false it is not supposed to modify the memento.
// If this method returns true it may modify the memento ("take" heavy items).
virtual bool showInternal(
not_null<SectionMemento*> memento,
const SectionShow ¶ms) = 0;
virtual bool showMessage(
PeerId peerId,
const SectionShow ¶ms,
MsgId messageId) {
return false;
}
[[nodiscard]] virtual bool preventsClose(
Fn<void()> &&continueCallback) const {
return false;
}
// Send bot command from peer info or media viewer.
virtual SectionActionResult sendBotCommand(
Bot::SendCommandRequest request) {
return SectionActionResult::Ignore;
}
virtual bool confirmSendingFiles(const QStringList &files) {
return false;
}
virtual bool confirmSendingFiles(not_null<const QMimeData*> data) {
return false;
}
// Create a memento of that section to store it in the history stack.
// This method may modify the section ("take" heavy items).
virtual std::shared_ptr<SectionMemento> createMemento();
void setInnerFocus() {
doSetInnerFocus();
}
virtual void checkActivation() {
}
[[nodiscard]] virtual rpl::producer<int> desiredHeight() const;
[[nodiscard]] virtual rpl::producer<> removeRequests() const {
return rpl::never<>();
}
// Some sections convert to layers on some geometry sizes.
[[nodiscard]] virtual object_ptr<Ui::LayerWidget> moveContentToLayer(
QRect bodyGeometry) {
return nullptr;
}
static void PaintBackground(
not_null<SessionController*> controller,
not_null<Ui::ChatTheme*> theme,
not_null<QWidget*> widget,
QRect clip);
static void PaintBackground(
not_null<Ui::ChatTheme*> theme,
not_null<QWidget*> widget,
int fillHeight,
int fromy,
QRect clip);
static void PaintBackground(
QPainter &p,
not_null<Ui::ChatTheme*> theme,
QSize fill,
QRect clip);
protected:
void paintEvent(QPaintEvent *e) override;
// Temp variable used in resizeEvent() implementation, that is passed
// to setGeometryWithTopMoved() to adjust the scroll position with the resize.
int topDelta() const {
return _topDelta;
}
// Called after the hideChildren() call in showAnimated().
virtual void showAnimatedHook(
const SectionSlideParams ¶ms) {
}
// Called after the showChildren() call in showFinished().
virtual void showFinishedHook() {
}
virtual void doSetInnerFocus() {
setFocus();
}
~SectionWidget();
private:
void showFinished();
std::unique_ptr<SlideAnimation> _showAnimation;
// Saving here topDelta in setGeometryWithTopMoved() to get it passed to resizeEvent().
int _topDelta = 0;
};
[[nodiscard]] auto ChatThemeValueFromPeer(
not_null<SessionController*> controller,
not_null<PeerData*> peer)
-> rpl::producer<std::shared_ptr<Ui::ChatTheme>>;
[[nodiscard]] bool ShowSendPremiumError(
not_null<SessionController*> controller,
not_null<DocumentData*> document);
[[nodiscard]] bool ShowReactPremiumError(
not_null<SessionController*> controller,
not_null<HistoryItem*> item,
const Data::ReactionId &id);
} // namespace Window
|