tdesktop/Telegram/SourceFiles/window/section_widget.h

219 lines
5.3 KiB
C
Raw Normal View History

/*
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
2017-09-13 16:57:44 +00:00
#include "ui/rp_widget.h"
#include "chat_helpers/bot_command.h"
#include "dialogs/dialogs_key.h"
#include "media/player/media_player_float.h" // FloatSectionDelegate
2019-09-13 12:22:54 +00:00
#include "base/object_ptr.h"
2021-07-26 23:18:11 +00:00
#include "window/window_section_common.h"
2021-08-26 13:25:48 +00:00
class PeerData;
2019-07-24 11:45:24 +00:00
namespace Main {
class Session;
} // namespace Main
2019-09-18 11:19:05 +00:00
namespace Ui {
class LayerWidget;
2021-08-26 13:25:48 +00:00
class ChatTheme;
2021-08-26 15:02:21 +00:00
} // namespace Ui
2021-08-26 13:25:48 +00:00
namespace Window {
class SessionController;
class SlideAnimation;
struct SectionShow;
enum class SlideDirection;
enum class Column {
First,
Second,
Third,
};
2017-09-13 16:57:44 +00:00
class AbstractSectionWidget
: public Ui::RpWidget
, public Media::Player::FloatSectionDelegate {
public:
2017-09-13 16:57:44 +00:00
AbstractSectionWidget(
QWidget *parent,
not_null<SessionController*> controller,
2021-08-26 13:25:48 +00:00
rpl::producer<PeerData*> peerForBackground);
[[nodiscard]] Main::Session &session() const;
[[nodiscard]] not_null<SessionController*> controller() const {
2020-06-10 18:08:17 +00:00
return _controller;
}
// Tabbed selector management.
virtual bool pushTabbedSelectorToThirdSection(
not_null<PeerData*> peer,
const SectionShow &params) {
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:
2020-06-10 18:08:17 +00:00
SectionWidget(
QWidget *parent,
not_null<SessionController*> controller,
2021-08-26 13:25:48 +00:00
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 &params);
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.
2019-09-13 12:22:54 +00:00
virtual QPixmap grabForShowAnimation(const SectionSlideParams &params);
// 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 &params) = 0;
virtual bool showMessage(
PeerId peerId,
const SectionShow &params,
MsgId messageId) {
return false;
}
virtual bool preventsClose(Fn<void()> &&continueCallback) const {
return false;
}
2021-07-26 23:18:11 +00:00
// Send bot command from peer info or media viewer.
virtual SectionActionResult sendBotCommand(
Bot::SendCommandRequest request) {
return SectionActionResult::Ignore;
}
// Create a memento of that section to store it in the history stack.
// This method may modify the section ("take" heavy items).
2020-12-14 14:48:10 +00:00
virtual std::shared_ptr<SectionMemento> createMemento();
void setInnerFocus() {
doSetInnerFocus();
}
virtual rpl::producer<int> desiredHeight() const;
// Some sections convert to layers on some geometry sizes.
2019-09-18 11:19:05 +00:00
virtual object_ptr<Ui::LayerWidget> moveContentToLayer(
QRect bodyGeometry) {
return nullptr;
}
2020-06-10 18:08:17 +00:00
static void PaintBackground(
not_null<SessionController*> controller,
2021-08-26 15:02:21 +00:00
not_null<Ui::ChatTheme*> theme,
2020-06-10 18:08:17 +00:00
not_null<QWidget*> widget,
QRect clip);
2018-01-09 17:08:31 +00:00
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 &params) {
}
// 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 QString &emoji);
} // namespace Window