tdesktop/Telegram/SourceFiles/window/themes/window_theme.h

286 lines
7.8 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
class Image;
2019-01-16 17:26:26 +00:00
namespace Data {
2019-01-28 13:59:49 +00:00
struct FileOrigin;
class WallPaper {
public:
explicit WallPaper(WallPaperId id);
void setLocalImageAsThumbnail(not_null<Image*> image);
[[nodiscard]] WallPaperId id() const;
[[nodiscard]] std::optional<QColor> backgroundColor() const;
[[nodiscard]] DocumentData *document() const;
[[nodiscard]] Image *thumbnail() const;
2019-01-29 07:29:38 +00:00
[[nodiscard]] bool isPattern() const;
[[nodiscard]] bool isDefault() const;
[[nodiscard]] bool isCreator() const;
2019-02-04 18:37:40 +00:00
[[nodiscard]] bool isDark() const;
[[nodiscard]] bool isLocal() const;
2019-02-06 14:38:37 +00:00
[[nodiscard]] bool isBlurred() const;
2019-01-29 07:29:38 +00:00
[[nodiscard]] int patternIntensity() const;
2019-01-28 13:59:49 +00:00
[[nodiscard]] bool hasShareUrl() const;
[[nodiscard]] QString shareUrl() const;
void loadDocument() const;
void loadThumbnail() const;
[[nodiscard]] FileOrigin fileOrigin() const;
2019-01-29 07:29:38 +00:00
[[nodiscard]] WallPaper withUrlParams(
const QMap<QString, QString> &params) const;
2019-01-28 13:59:49 +00:00
[[nodiscard]] static std::optional<WallPaper> Create(
const MTPWallPaper &data);
[[nodiscard]] static std::optional<WallPaper> Create(
const MTPDwallPaper &data);
[[nodiscard]] QByteArray serialize() const;
[[nodiscard]] static std::optional<WallPaper> FromSerialized(
const QByteArray &serialized);
[[nodiscard]] static std::optional<WallPaper> FromLegacySerialized(
quint64 id,
quint64 accessHash,
quint32 flags,
QString slug);
[[nodiscard]] static std::optional<WallPaper> FromLegacyId(
qint32 legacyId);
[[nodiscard]] static std::optional<WallPaper> FromColorSlug(
const QString &slug);
private:
2019-01-29 07:29:38 +00:00
static constexpr auto kDefaultIntensity = 40;
2019-01-28 13:59:49 +00:00
WallPaperId _id = WallPaperId();
uint64 _accessHash = 0;
MTPDwallPaper::Flags _flags;
QString _slug;
MTPDwallPaperSettings::Flags _settings;
std::optional<QColor> _backgroundColor;
2019-01-29 07:29:38 +00:00
int _intensity = kDefaultIntensity;
2019-01-28 13:59:49 +00:00
DocumentData *_document = nullptr;
Image *_thumbnail = nullptr;
2019-01-16 17:26:26 +00:00
};
2019-01-28 13:59:49 +00:00
[[nodiscard]] WallPaper ThemeWallPaper();
[[nodiscard]] bool IsThemeWallPaper(const WallPaper &paper);
[[nodiscard]] WallPaper CustomWallPaper();
[[nodiscard]] bool IsCustomWallPaper(const WallPaper &paper);
[[nodiscard]] WallPaper Legacy1DefaultWallPaper();
[[nodiscard]] bool IsLegacy1DefaultWallPaper(const WallPaper &paper);
[[nodiscard]] WallPaper DefaultWallPaper();
[[nodiscard]] bool IsDefaultWallPaper(const WallPaper &paper);
2019-01-16 17:26:26 +00:00
QColor PatternColor(QColor background);
QImage PreparePatternImage(
QImage image,
QColor bg,
QColor fg,
int intensity);
2019-02-06 14:38:37 +00:00
QImage PrepareBlurredBackground(QImage image);
2019-01-16 17:26:26 +00:00
namespace details {
2019-01-28 13:59:49 +00:00
[[nodiscard]] WallPaper UninitializedWallPaper();
[[nodiscard]] bool IsUninitializedWallPaper(const WallPaper &paper);
[[nodiscard]] WallPaper TestingThemeWallPaper();
[[nodiscard]] bool IsTestingThemeWallPaper(const WallPaper &paper);
[[nodiscard]] WallPaper TestingDefaultWallPaper();
[[nodiscard]] bool IsTestingDefaultWallPaper(const WallPaper &paper);
[[nodiscard]] WallPaper TestingEditorWallPaper();
[[nodiscard]] bool IsTestingEditorWallPaper(const WallPaper &paper);
2019-01-16 17:26:26 +00:00
} // namespace details
2019-01-28 13:59:49 +00:00
} // namespace Data
2019-01-28 13:59:49 +00:00
namespace Window {
namespace Theme {
constexpr auto kMinimumTiledSize = 512;
struct Cached {
QByteArray colors;
QByteArray background;
bool tiled = false;
int32 paletteChecksum = 0;
int32 contentChecksum = 0;
};
struct Saved {
QString pathRelative;
QString pathAbsolute;
QByteArray content;
Cached cache;
};
bool Load(Saved &&saved);
void Unload();
struct Instance {
style::palette palette;
QImage background;
Cached cached;
bool tiled = false;
};
struct Preview {
QString pathRelative;
QString pathAbsolute;
Instance instance;
QByteArray content;
QImage preview;
};
bool Apply(const QString &filepath);
bool Apply(std::unique_ptr<Preview> preview);
void ApplyDefaultWithPath(const QString &themePath);
bool ApplyEditedPalette(const QString &path, const QByteArray &content);
void KeepApplied();
QString NightThemePath();
[[nodiscard]] bool IsNightMode();
void SetNightModeValue(bool nightMode);
void ToggleNightMode();
void ToggleNightMode(const QString &themePath);
[[nodiscard]] bool IsNonDefaultBackground();
void Revert();
bool LoadFromFile(const QString &file, Instance *out, QByteArray *outContent);
bool IsPaletteTestingPath(const QString &path);
2019-01-29 17:03:51 +00:00
QColor CountAverageColor(const QImage &image);
QColor AdjustedColor(QColor original, QColor background);
QImage ProcessBackgroundImage(QImage image);
struct BackgroundUpdate {
enum class Type {
New,
Changed,
Start,
TestingTheme,
RevertingTheme,
ApplyingTheme,
};
BackgroundUpdate(Type type, bool tiled) : type(type), tiled(tiled) {
}
bool paletteChanged() const {
return (type == Type::TestingTheme || type == Type::RevertingTheme);
}
Type type;
bool tiled;
};
class ChatBackground : public base::Observable<BackgroundUpdate> {
public:
2018-07-21 13:54:00 +00:00
ChatBackground();
// This method is allowed to (and should) be called before start().
void setThemeData(QImage &&themeImage, bool themeTile);
// This method is setting the default (themed) image if none was set yet.
void start();
2019-01-29 10:57:29 +00:00
void set(const Data::WallPaper &paper, QImage image = QImage());
void setTile(bool tile);
void setTileDayValue(bool tile);
void setTileNightValue(bool tile);
void setThemeAbsolutePath(const QString &path);
[[nodiscard]] QString themeAbsolutePath() const;
void reset();
2018-07-21 13:54:00 +00:00
void setTestingTheme(Instance &&theme);
void saveAdjustableColors();
void setTestingDefaultTheme();
void revert();
2019-01-28 13:59:49 +00:00
[[nodiscard]] WallPaperId id() const {
return _paper.id();
}
[[nodiscard]] const QPixmap &pixmap() const {
return _pixmap;
}
[[nodiscard]] const QPixmap &pixmapForTiled() const {
return _pixmapForTiled;
}
2019-01-29 07:29:38 +00:00
[[nodiscard]] std::optional<QColor> colorForFill() const;
[[nodiscard]] QImage createCurrentImage() const;
[[nodiscard]] bool tile() const;
[[nodiscard]] bool tileDay() const;
[[nodiscard]] bool tileNight() const;
private:
2018-07-21 13:54:00 +00:00
struct AdjustableColor {
AdjustableColor(style::color data);
style::color item;
QColor original;
};
void ensureStarted();
void saveForRevert();
2019-01-29 10:57:29 +00:00
void setPreparedImage(QImage original, QImage prepared);
void preparePixmaps(QImage image);
void writeNewBackgroundSettings();
void setPaper(const Data::WallPaper &paper);
[[nodiscard]] bool adjustPaletteRequired();
2019-01-29 10:57:29 +00:00
void adjustPaletteUsingBackground(const QImage &image);
void adjustPaletteUsingColor(QColor color);
2018-07-21 13:54:00 +00:00
void restoreAdjustableColors();
void setNightModeValue(bool nightMode);
[[nodiscard]] bool nightMode() const;
void toggleNightMode(std::optional<QString> themePath);
void keepApplied(const QString &path, bool write);
[[nodiscard]] bool isNonDefaultThemeOrBackground();
[[nodiscard]] bool isNonDefaultBackground();
friend bool IsNightMode();
friend void SetNightModeValue(bool nightMode);
friend void ToggleNightMode();
friend void ToggleNightMode(const QString &themePath);
friend void KeepApplied();
friend bool IsNonDefaultBackground();
2019-01-28 13:59:49 +00:00
Data::WallPaper _paper = Data::details::UninitializedWallPaper();
std::optional<QColor> _paperColor;
2019-01-29 10:57:29 +00:00
QImage _original;
QPixmap _pixmap;
QPixmap _pixmapForTiled;
bool _nightMode = false;
bool _tileDayValue = false;
bool _tileNightValue = true;
QString _themeAbsolutePath;
QImage _themeImage;
bool _themeTile = false;
2019-01-28 13:59:49 +00:00
Data::WallPaper _paperForRevert
= Data::details::UninitializedWallPaper();
2019-01-29 10:57:29 +00:00
QImage _originalForRevert;
bool _tileForRevert = false;
2018-07-21 13:54:00 +00:00
std::vector<AdjustableColor> _adjustableColors;
};
ChatBackground *Background();
void ComputeBackgroundRects(QRect wholeFill, QSize imageSize, QRect &to, QRect &from);
bool CopyColorsToPalette(const QString &path, const QByteArray &themeContent);
bool ReadPaletteValues(const QByteArray &content, Fn<bool(QLatin1String name, QLatin1String value)> callback);
} // namespace Theme
} // namespace Window