tdesktop/Telegram/SourceFiles/boxes/background_preview_box.h

150 lines
4.0 KiB
C
Raw Normal View History

2019-02-07 16:36:30 +00: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/layers/box_content.h"
2019-02-07 16:36:30 +00:00
#include "base/binary_guard.h"
#include "history/admin_log/history_admin_log_item.h"
#include "history/view/history_view_element.h"
2019-04-02 09:13:30 +00:00
#include "ui/effects/animations.h"
2019-02-07 16:36:30 +00:00
#include "ui/effects/radial_animation.h"
#include "data/data_wall_paper.h"
2019-02-07 16:36:30 +00:00
namespace Data {
class DocumentMedia;
} // namespace Data
2020-06-10 18:08:17 +00:00
namespace Window {
class SessionController;
} // namespace Window
2019-07-24 14:00:30 +00:00
2019-02-07 16:36:30 +00:00
namespace Ui {
class Checkbox;
class ChatStyle;
class MediaSlider;
template <typename Widget>
class SlideWrap;
template <typename Widget>
class FadeWrap;
2019-02-07 16:36:30 +00:00
} // namespace Ui
struct BackgroundPreviewArgs {
PeerData *forPeer = nullptr;
FullMsgId fromMessageId;
};
2019-02-07 16:36:30 +00:00
class BackgroundPreviewBox
2019-09-18 11:19:05 +00:00
: public Ui::BoxContent
, private HistoryView::SimpleElementDelegate {
2019-02-07 16:36:30 +00:00
public:
2019-07-24 14:00:30 +00:00
BackgroundPreviewBox(
QWidget*,
2020-06-10 18:08:17 +00:00
not_null<Window::SessionController*> controller,
const Data::WallPaper &paper,
BackgroundPreviewArgs args = {});
~BackgroundPreviewBox();
2019-02-07 16:36:30 +00:00
static bool Start(
2020-06-10 18:08:17 +00:00
not_null<Window::SessionController*> controller,
2019-02-07 16:36:30 +00:00
const QString &slug,
const QMap<QString, QString> &params);
protected:
void prepare() override;
void paintEvent(QPaintEvent *e) override;
private:
struct OverridenStyle;
2019-02-07 16:36:30 +00:00
using Element = HistoryView::Element;
not_null<HistoryView::ElementDelegate*> delegate();
2019-02-07 16:36:30 +00:00
HistoryView::Context elementContext() override;
void apply();
void applyForPeer();
void applyForPeer(bool both);
void applyForEveryone();
void uploadForPeer(bool both);
void setExistingForPeer(const Data::WallPaper &paper, bool both);
2019-02-07 16:36:30 +00:00
void share();
void radialAnimationCallback(crl::time now);
2019-02-07 16:36:30 +00:00
QRect radialRect() const;
void generateBackground();
2019-02-07 16:36:30 +00:00
void checkLoadedDocument();
void setScaledFromThumb();
2019-02-07 16:36:30 +00:00
void setScaledFromImage(QImage &&image, QImage &&blurred);
void updateServiceBg(const std::vector<QColor> &bg);
2019-04-02 09:13:30 +00:00
void paintImage(Painter &p);
void paintRadial(Painter &p);
void paintTexts(Painter &p, crl::time ms);
void recreateBlurCheckbox();
2019-02-07 16:36:30 +00:00
int textsTop() const;
void startFadeInFrom(QPixmap previous);
void checkBlurAnimationStart();
[[nodiscard]] const style::Box &overridenStyle(bool dark);
void paletteReady();
void applyDarkMode(bool dark);
[[nodiscard]] OverridenStyle prepareOverridenStyle(bool dark);
2023-12-22 04:17:44 +00:00
[[nodiscard]] bool forChannel() const;
[[nodiscard]] bool forGroup() const;
2023-12-22 04:17:44 +00:00
void checkLevelForChannel();
void recreate(bool dark);
void resetTitle();
void rebuildButtons(bool dark);
void createDimmingSlider(bool dark);
2020-06-10 18:08:17 +00:00
const not_null<Window::SessionController*> _controller;
PeerData * const _forPeer = nullptr;
2023-12-22 04:17:44 +00:00
bool _forPeerLevelCheck = false;
FullMsgId _fromMessageId;
std::unique_ptr<Ui::ChatStyle> _chatStyle;
const not_null<History*> _serviceHistory;
AdminLog::OwnedItem _service;
2019-02-07 16:36:30 +00:00
AdminLog::OwnedItem _text1;
AdminLog::OwnedItem _text2;
2023-12-22 04:17:44 +00:00
QString _paperEmojiId;
2019-02-07 16:36:30 +00:00
Data::WallPaper _paper;
std::shared_ptr<Data::DocumentMedia> _media;
2019-02-07 16:36:30 +00:00
QImage _full;
QPixmap _generated, _scaled, _blurred, _fadeOutThumbnail;
2019-04-02 09:13:30 +00:00
Ui::Animations::Simple _fadeIn;
2019-02-07 16:36:30 +00:00
Ui::RadialAnimation _radial;
base::binary_guard _generating;
std::optional<QColor> _serviceBg;
object_ptr<Ui::Checkbox> _blur = { nullptr };
rpl::variable<bool> _appNightMode;
rpl::variable<bool> _boxDarkMode;
std::unique_ptr<OverridenStyle> _light, _dark;
std::unique_ptr<style::palette> _lightPalette, _darkPalette;
bool _waitingForPalette = false;
object_ptr<Ui::SlideWrap<Ui::RpWidget>> _dimmingWrap = { nullptr };
Ui::RpWidget *_dimmingContent = nullptr;
Ui::MediaSlider *_dimmingSlider = nullptr;
int _dimmingIntensity = 0;
rpl::variable<int> _dimmingHeight = 0;
bool _dimmed = false;
bool _dimmingToggleScheduled = false;
FullMsgId _uploadId;
float64 _uploadProgress = 0.;
rpl::lifetime _uploadLifetime;
std::unique_ptr<Ui::FadeWrap<Ui::RpWidget>> _forBothOverlay;
rpl::variable<QColor> _paletteServiceBg;
rpl::lifetime _serviceBgLifetime;
2019-02-07 16:36:30 +00:00
};