| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662 |
- /*
- 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
- */
- #include "window/themes/window_theme.h"
- #include "window/themes/window_theme_preview.h"
- #include "window/themes/window_themes_embedded.h"
- #include "window/themes/window_theme_editor.h"
- #include "window/window_controller.h"
- #include "platform/platform_specific.h"
- #include "mainwidget.h"
- #include "main/main_session.h"
- #include "apiwrap.h"
- #include "storage/localstorage.h"
- #include "storage/localimageloader.h"
- #include "storage/file_upload.h"
- #include "base/random.h"
- #include "base/parse_helper.h"
- #include "base/zlib_help.h"
- #include "base/unixtime.h"
- #include "base/crc32hash.h"
- #include "base/never_freed_pointer.h"
- #include "base/qt_signal_producer.h"
- #include "data/data_session.h"
- #include "data/data_document_resolver.h"
- #include "main/main_account.h" // Account::local.
- #include "main/main_domain.h" // Domain::activeSessionValue.
- #include "lang/lang_keys.h"
- #include "ui/chat/chat_theme.h"
- #include "ui/image/image.h"
- #include "ui/style/style_palette_colorizer.h"
- #include "ui/ui_utility.h"
- #include "ui/boxes/confirm_box.h"
- #include "boxes/background_box.h"
- #include "core/application.h"
- #include "webview/webview_common.h"
- #include "styles/style_widgets.h"
- #include "styles/style_chat.h"
- #include <QtCore/QBuffer>
- #include <QtCore/QJsonDocument>
- #include <QtCore/QJsonObject>
- #include <QtCore/QFileSystemWatcher>
- #include <QtGui/QGuiApplication>
- #include <QtGui/QStyleHints>
- namespace Window {
- namespace Theme {
- namespace {
- constexpr auto kThemeFileSizeLimit = 5 * 1024 * 1024;
- constexpr auto kBackgroundSizeLimit = 25 * 1024 * 1024;
- constexpr auto kNightThemeFile = ":/gui/night.tdesktop-theme"_cs;
- constexpr auto kDarkValueThreshold = 0.5;
- struct Applying {
- Saved data;
- QByteArray paletteForRevert;
- Fn<void()> overrideKeep;
- };
- base::NeverFreedPointer<ChatBackground> GlobalBackground;
- Applying GlobalApplying;
- inline bool AreTestingTheme() {
- return !GlobalApplying.paletteForRevert.isEmpty();
- }
- [[nodiscard]] QImage ReadDefaultImage() {
- return Ui::ReadBackgroundImage(
- u":/gui/art/background.tgv"_q,
- QByteArray(),
- true);
- }
- [[nodiscard]] bool GoodImageFormatAndSize(const QImage &image) {
- return !image.size().isEmpty()
- && (image.format() == QImage::Format_ARGB32_Premultiplied
- || image.format() == QImage::Format_RGB32);
- }
- QByteArray readThemeContent(const QString &path) {
- QFile file(path);
- if (!file.exists()) {
- LOG(("Theme Error: theme file not found: %1").arg(path));
- return QByteArray();
- }
- if (file.size() > kThemeFileSizeLimit) {
- LOG(("Theme Error: theme file too large: %1 (should be less than 5 MB, got %2)").arg(path).arg(file.size()));
- return QByteArray();
- }
- if (!file.open(QIODevice::ReadOnly)) {
- LOG(("Theme Error: could not open theme file: %1").arg(path));
- return QByteArray();
- }
- return file.readAll();
- }
- inline uchar readHexUchar(char code, bool &error) {
- if (code >= '0' && code <= '9') {
- return ((code - '0') & 0xFF);
- } else if (code >= 'a' && code <= 'f') {
- return ((code + 10 - 'a') & 0xFF);
- } else if (code >= 'A' && code <= 'F') {
- return ((code + 10 - 'A') & 0xFF);
- }
- error = true;
- return 0xFF;
- }
- inline uchar readHexUchar(char char1, char char2, bool &error) {
- return ((readHexUchar(char1, error) & 0x0F) << 4) | (readHexUchar(char2, error) & 0x0F);
- }
- bool readNameAndValue(const char *&from, const char *end, QLatin1String *outName, QLatin1String *outValue) {
- using base::parse::skipWhitespaces;
- using base::parse::readName;
- if (!skipWhitespaces(from, end)) return true;
- *outName = readName(from, end);
- if (outName->size() == 0) {
- LOG(("Theme Error: Could not read name in the color scheme."));
- return false;
- }
- if (!skipWhitespaces(from, end)) {
- LOG(("Theme Error: Unexpected end of the color scheme."));
- return false;
- }
- if (*from != ':') {
- LOG(("Theme Error: Expected ':' between each name and value in the color scheme (while reading key '%1')").arg(*outName));
- return false;
- }
- if (!skipWhitespaces(++from, end)) {
- LOG(("Theme Error: Unexpected end of the color scheme."));
- return false;
- }
- auto valueStart = from;
- if (*from == '#') ++from;
- if (readName(from, end).size() == 0) {
- LOG(("Theme Error: Expected a color value in #rrggbb or #rrggbbaa format in the color scheme (while reading key '%1')").arg(*outName));
- return false;
- }
- *outValue = QLatin1String(valueStart, from - valueStart);
- if (!skipWhitespaces(from, end)) {
- LOG(("Theme Error: Unexpected end of the color scheme."));
- return false;
- }
- if (*from != ';') {
- LOG(("Theme Error: Expected ';' after each value in the color scheme (while reading key '%1')").arg(*outName));
- return false;
- }
- ++from;
- return true;
- }
- enum class SetResult {
- Ok,
- NotFound,
- };
- SetResult setColorSchemeValue(
- QLatin1String name,
- QLatin1String value,
- const style::colorizer &colorizer,
- Instance *out) {
- auto result = style::palette::SetResult::Ok;
- auto size = value.size();
- auto data = value.data();
- if (data[0] == '#' && (size == 7 || size == 9)) {
- auto error = false;
- auto r = readHexUchar(data[1], data[2], error);
- auto g = readHexUchar(data[3], data[4], error);
- auto b = readHexUchar(data[5], data[6], error);
- auto a = (size == 9) ? readHexUchar(data[7], data[8], error) : uchar(255);
- if (colorizer) {
- style::colorize(name, r, g, b, colorizer);
- }
- if (error) {
- LOG(("Theme Warning: Skipping value '%1: %2' (expected a color value in #rrggbb or #rrggbbaa or a previously defined key in the color scheme)").arg(name).arg(value));
- return SetResult::Ok;
- } else if (out) {
- result = out->palette.setColor(name, r, g, b, a);
- } else {
- result = style::main_palette::setColor(name, r, g, b, a);
- }
- } else {
- if (out) {
- result = out->palette.setColor(name, value);
- } else {
- result = style::main_palette::setColor(name, value);
- }
- }
- if (result == style::palette::SetResult::Ok) {
- return SetResult::Ok;
- } else if (result == style::palette::SetResult::KeyNotFound) {
- return SetResult::NotFound;
- } else if (result == style::palette::SetResult::ValueNotFound) {
- LOG(("Theme Warning: Skipping value '%1: %2' (expected a color value in #rrggbb or #rrggbbaa or a previously defined key in the color scheme)").arg(name).arg(value));
- return SetResult::Ok;
- } else if (result == style::palette::SetResult::Duplicate) {
- LOG(("Theme Warning: Color value appears more than once in the color scheme (while applying '%1: %2')").arg(name).arg(value));
- return SetResult::Ok;
- } else {
- LOG(("Theme Error: Unexpected internal error."));
- }
- Unexpected("Value after palette.setColor().");
- }
- bool loadColorScheme(
- const QByteArray &content,
- const style::colorizer &colorizer,
- Instance *out) {
- auto unsupported = QMap<QLatin1String, QLatin1String>();
- return ReadPaletteValues(content, [&](QLatin1String name, QLatin1String value) {
- // Find the named value in the already read unsupported list.
- value = unsupported.value(value, value);
- auto result = setColorSchemeValue(name, value, colorizer, out);
- if (result == SetResult::NotFound) {
- unsupported.insert(name, value);
- }
- return true;
- });
- }
- void applyBackground(QImage &&background, bool tiled, Instance *out) {
- if (out) {
- out->background = std::move(background);
- out->tiled = tiled;
- } else {
- Background()->setThemeData(std::move(background), tiled);
- }
- }
- enum class LoadResult {
- Loaded,
- Failed,
- NotFound,
- };
- LoadResult loadBackgroundFromFile(zlib::FileToRead &file, const char *filename, QByteArray *outBackground) {
- *outBackground = file.readFileContent(filename, zlib::kCaseInsensitive, kThemeBackgroundSizeLimit);
- if (file.error() == UNZ_OK) {
- return LoadResult::Loaded;
- } else if (file.error() == UNZ_END_OF_LIST_OF_FILE) {
- file.clearError();
- return LoadResult::NotFound;
- }
- LOG(("Theme Error: could not read '%1' in the theme file.").arg(filename));
- return LoadResult::Failed;
- }
- bool loadBackground(zlib::FileToRead &file, QByteArray *outBackground, bool *outTiled) {
- auto result = loadBackgroundFromFile(file, "background.jpg", outBackground);
- if (result != LoadResult::NotFound) return (result == LoadResult::Loaded);
- result = loadBackgroundFromFile(file, "background.png", outBackground);
- if (result != LoadResult::NotFound) return (result == LoadResult::Loaded);
- *outTiled = true;
- result = loadBackgroundFromFile(file, "tiled.jpg", outBackground);
- if (result != LoadResult::NotFound) return (result == LoadResult::Loaded);
- result = loadBackgroundFromFile(file, "tiled.png", outBackground);
- if (result != LoadResult::NotFound) return (result == LoadResult::Loaded);
- return true;
- }
- bool LoadTheme(
- const QByteArray &content,
- const style::colorizer &colorizer,
- const std::optional<QByteArray> &editedPalette,
- Cached *cache = nullptr,
- Instance *out = nullptr) {
- if (content.size() < 4) {
- LOG(("Theme Error: Bad theme content size: %1").arg(content.size()));
- return false;
- }
- if (cache) {
- *cache = Cached();
- }
- zlib::FileToRead file(content);
- const auto emptyColorizer = style::colorizer();
- const auto &paletteColorizer = editedPalette ? emptyColorizer : colorizer;
- unz_global_info globalInfo = { 0 };
- file.getGlobalInfo(&globalInfo);
- if (file.error() == UNZ_OK) {
- auto schemeContent = editedPalette.value_or(QByteArray());
- if (schemeContent.isEmpty()) {
- schemeContent = file.readFileContent("colors.tdesktop-theme", zlib::kCaseInsensitive, kThemeSchemeSizeLimit);
- }
- if (schemeContent.isEmpty()) {
- file.clearError();
- schemeContent = file.readFileContent("colors.tdesktop-palette", zlib::kCaseInsensitive, kThemeSchemeSizeLimit);
- }
- if (file.error() != UNZ_OK) {
- LOG(("Theme Error: could not read 'colors.tdesktop-theme' or 'colors.tdesktop-palette' in the theme file."));
- return false;
- }
- if (!loadColorScheme(schemeContent, paletteColorizer, out)) {
- DEBUG_LOG(("Theme: Could not loadColorScheme."));
- return false;
- }
- if (!out) {
- Background()->saveAdjustableColors();
- }
- auto backgroundTiled = false;
- auto backgroundContent = QByteArray();
- if (!loadBackground(file, &backgroundContent, &backgroundTiled)) {
- DEBUG_LOG(("Theme: Could not loadBackground."));
- return false;
- }
- if (!backgroundContent.isEmpty()) {
- auto check = QBuffer(&backgroundContent);
- auto reader = QImageReader(&check);
- const auto size = reader.size();
- if (size.isEmpty()
- || (size.width() * size.height() > kBackgroundSizeLimit)) {
- LOG(("Theme Error: bad background image size in the theme file."));
- return false;
- }
- auto background = Images::Read({
- .content = backgroundContent,
- .forceOpaque = true,
- }).image;
- if (background.isNull()) {
- LOG(("Theme Error: could not read background image in the theme file."));
- return false;
- }
- if (colorizer) {
- style::colorize(background, colorizer);
- }
- if (cache) {
- auto buffer = QBuffer(&cache->background);
- if (!background.save(&buffer, "BMP")) {
- LOG(("Theme Error: could not write background image as a BMP to cache."));
- return false;
- }
- cache->tiled = backgroundTiled;
- }
- applyBackground(std::move(background), backgroundTiled, out);
- }
- } else {
- // Looks like it is not a .zip theme.
- if (!loadColorScheme(editedPalette.value_or(content), paletteColorizer, out)) {
- DEBUG_LOG(("Theme: Could not loadColorScheme from non-zip."));
- return false;
- }
- if (!out) {
- Background()->saveAdjustableColors();
- }
- }
- if (out) {
- out->palette.finalize(paletteColorizer);
- }
- if (cache) {
- if (out) {
- cache->colors = out->palette.save();
- } else {
- cache->colors = style::main_palette::save();
- }
- cache->paletteChecksum = style::palette::Checksum();
- cache->contentChecksum = base::crc32(content.constData(), content.size());
- }
- return true;
- }
- bool InitializeFromCache(
- const QByteArray &content,
- const Cached &cache) {
- if (cache.paletteChecksum != style::palette::Checksum()) {
- return false;
- }
- if (cache.contentChecksum != base::crc32(content.constData(), content.size())) {
- return false;
- }
- QImage background;
- if (!cache.background.isEmpty()) {
- QDataStream stream(cache.background);
- QImageReader reader(stream.device());
- reader.setAutoTransform(true);
- if (!reader.read(&background) || background.isNull()) {
- return false;
- }
- }
- if (!style::main_palette::load(cache.colors)) {
- return false;
- }
- Background()->saveAdjustableColors();
- if (!background.isNull()) {
- applyBackground(std::move(background), cache.tiled, nullptr);
- }
- return true;
- }
- [[nodiscard]] std::optional<QByteArray> ReadEditingPalette() {
- auto file = QFile(EditingPalettePath());
- return file.open(QIODevice::ReadOnly)
- ? std::make_optional(file.readAll())
- : std::nullopt;
- }
- bool InitializeFromSaved(Saved &&saved) {
- if (saved.object.content.size() < 4) {
- LOG(("Theme Error: Could not load theme from '%1' (%2)").arg(
- saved.object.pathRelative,
- saved.object.pathAbsolute));
- return false;
- }
- const auto editing = ReadEditingPalette();
- GlobalBackground.createIfNull();
- if (!editing && InitializeFromCache(saved.object.content, saved.cache)) {
- return true;
- }
- const auto colorizer = ColorizerForTheme(saved.object.pathAbsolute);
- if (!LoadTheme(saved.object.content, colorizer, editing, &saved.cache)) {
- DEBUG_LOG(("Theme: Could not load from saved."));
- return false;
- }
- if (editing) {
- Background()->setEditingTheme(ReadCloudFromText(*editing));
- } else {
- Local::writeTheme(saved);
- }
- return true;
- }
- [[nodiscard]] QImage PostprocessBackgroundImage(
- QImage image,
- const Data::WallPaper &paper) {
- if (image.format() != QImage::Format_ARGB32_Premultiplied) {
- image = std::move(image).convertToFormat(
- QImage::Format_ARGB32_Premultiplied);
- }
- image.setDevicePixelRatio(style::DevicePixelRatio());
- if (Data::IsLegacy3DefaultWallPaper(paper)) {
- return Images::DitherImage(std::move(image));
- }
- return image;
- }
- void ClearApplying() {
- GlobalApplying = Applying();
- }
- void ClearEditingPalette() {
- QFile(EditingPalettePath()).remove();
- }
- } // namespace
- ChatBackground::AdjustableColor::AdjustableColor(style::color data)
- : item(data)
- , original(data->c) {
- }
- // They're duplicated in window_theme_editor_box.cpp:ReplaceAdjustableColors.
- ChatBackground::ChatBackground() : _adjustableColors({
- st::msgServiceBg,
- st::msgServiceBgSelected,
- st::historyScrollBg,
- st::historyScrollBgOver,
- st::historyScrollBarBg,
- st::historyScrollBarBgOver }) {
- }
- ChatBackground::~ChatBackground() = default;
- void ChatBackground::setThemeData(QImage &&themeImage, bool themeTile) {
- _themeImage = PostprocessBackgroundImage(
- std::move(themeImage),
- Data::ThemeWallPaper());
- _themeTile = themeTile;
- }
- void ChatBackground::initialRead() {
- if (started()) {
- return;
- } else if (!Local::readBackground()) {
- set(Data::ThemeWallPaper());
- }
- if (_localStoredTileDayValue) {
- _tileDayValue = *_localStoredTileDayValue;
- }
- if (_localStoredTileNightValue) {
- _tileNightValue = *_localStoredTileNightValue;
- }
- }
- void ChatBackground::start() {
- saveAdjustableColors();
- _updates.events(
- ) | rpl::start_with_next([=](const BackgroundUpdate &update) {
- refreshThemeWatcher();
- if (update.paletteChanged()) {
- style::NotifyPaletteChanged();
- }
- }, _lifetime);
- initialRead();
- Core::App().domain().activeSessionValue(
- ) | rpl::filter([=](Main::Session *session) {
- return session != _session;
- }) | rpl::start_with_next([=](Main::Session *session) {
- _session = session;
- checkUploadWallPaper();
- }, _lifetime);
- rpl::combine(
- #if QT_VERSION >= QT_VERSION_CHECK(6, 5, 0)
- rpl::single(
- QGuiApplication::styleHints()->colorScheme()
- ) | rpl::then(
- base::qt_signal_producer(
- QGuiApplication::styleHints(),
- &QStyleHints::colorSchemeChanged
- )
- ),
- #endif // Qt >= 6.5.0
- rpl::single(
- QGuiApplication::palette()
- ) | rpl::then(
- base::qt_signal_producer(
- qApp,
- &QGuiApplication::paletteChanged
- )
- )
- #if QT_VERSION >= QT_VERSION_CHECK(6, 5, 0)
- ) | rpl::map([](Qt::ColorScheme colorScheme, const QPalette &palette) {
- return colorScheme != Qt::ColorScheme::Unknown
- ? colorScheme == Qt::ColorScheme::Dark
- #else // Qt >= 6.5.0
- ) | rpl::map([](const QPalette &palette) {
- const auto dark = Platform::IsDarkMode();
- return dark
- ? *dark
- #endif // Qt < 6.5.0
- : palette.windowText().color().lightness()
- > palette.window().color().lightness();
- }) | rpl::distinct_until_changed(
- ) | rpl::start_with_next([](bool dark) {
- Core::App().settings().setSystemDarkMode(dark);
- }, _lifetime);
- }
- void ChatBackground::refreshThemeWatcher() {
- const auto path = _themeObject.pathAbsolute;
- if (path.isEmpty()
- || !QFileInfo(path).isNativePath()
- || editingTheme()) {
- _themeWatcher = nullptr;
- } else if (!_themeWatcher || !_themeWatcher->files().contains(path)) {
- _themeWatcher = std::make_unique<QFileSystemWatcher>(
- QStringList(path));
- QObject::connect(
- _themeWatcher.get(),
- &QFileSystemWatcher::fileChanged,
- [](const QString &path) {
- Apply(path);
- KeepApplied();
- });
- }
- }
- void ChatBackground::checkUploadWallPaper() {
- if (!_session) {
- _wallPaperUploadLifetime = rpl::lifetime();
- _wallPaperUploadId = FullMsgId();
- _wallPaperRequestId = 0;
- return;
- }
- if (const auto id = base::take(_wallPaperUploadId)) {
- _session->uploader().cancel(id);
- }
- if (const auto id = base::take(_wallPaperRequestId)) {
- _session->api().request(id).cancel();
- }
- if (!Data::IsCustomWallPaper(_paper)
- || _original.isNull()
- || _editingTheme.has_value()) {
- return;
- }
- const auto ready = PrepareWallPaper(_session->mainDcId(), _original);
- const auto documentId = ready->id;
- _wallPaperUploadId = FullMsgId(
- _session->userPeerId(),
- _session->data().nextLocalMessageId());
- _session->uploader().upload(_wallPaperUploadId, ready);
- if (_wallPaperUploadLifetime) {
- return;
- }
- _wallPaperUploadLifetime = _session->uploader().documentReady(
- ) | rpl::start_with_next([=](const Storage::UploadedMedia &data) {
- if (data.fullId != _wallPaperUploadId) {
- return;
- }
- _wallPaperUploadId = FullMsgId();
- _wallPaperRequestId = _session->api().request(
- MTPaccount_UploadWallPaper(
- MTP_flags(0),
- data.info.file,
- MTP_string("image/jpeg"),
- _paper.mtpSettings()
- )
- ).done([=](const MTPWallPaper &result) {
- result.match([&](const MTPDwallPaper &data) {
- _session->data().documentConvert(
- _session->data().document(documentId),
- data.vdocument());
- }, [&](const MTPDwallPaperNoFile &data) {
- LOG(("API Error: "
- "Got wallPaperNoFile after account.UploadWallPaper."));
- });
- if (const auto paper = Data::WallPaper::Create(_session, result)) {
- setPaper(*paper);
- writeNewBackgroundSettings();
- _updates.fire({ BackgroundUpdate::Type::New, tile() });
- }
- }).send();
- });
- }
- QImage ChatBackground::postprocessBackgroundImage(QImage image) {
- return PostprocessBackgroundImage(std::move(image), _paper);
- }
- void ChatBackground::set(const Data::WallPaper &paper, QImage image) {
- image = Ui::PreprocessBackgroundImage(std::move(image));
- const auto needResetAdjustable = Data::IsDefaultWallPaper(paper)
- && !Data::IsDefaultWallPaper(_paper)
- && !nightMode()
- && _themeObject.pathAbsolute.isEmpty();
- if (Data::IsThemeWallPaper(paper) && _themeImage.isNull()) {
- setPaper(Data::DefaultWallPaper());
- } else {
- setPaper(paper);
- if (needResetAdjustable) {
- // If we had a default color theme with non-default background,
- // and we switch to default background we must somehow switch from
- // adjusted service colors to default (non-adjusted) service colors.
- // The only way to do that right now is through full palette reset.
- restoreAdjustableColors();
- }
- }
- if (Data::IsThemeWallPaper(_paper)) {
- (nightMode() ? _tileNightValue : _tileDayValue) = _themeTile;
- setPrepared(_themeImage, _themeImage, QImage());
- } else if (Data::details::IsTestingThemeWallPaper(_paper)
- || Data::details::IsTestingDefaultWallPaper(_paper)
- || Data::details::IsTestingEditorWallPaper(_paper)) {
- if (Data::details::IsTestingDefaultWallPaper(_paper)
- || image.isNull()) {
- image = ReadDefaultImage();
- setPaper(Data::details::TestingDefaultWallPaper());
- }
- setPreparedAfterPaper(std::move(image));
- } else {
- if (Data::IsLegacy1DefaultWallPaper(_paper)) {
- image.load(u":/gui/art/bg_initial.jpg"_q);
- const auto scale = cScale() * style::DevicePixelRatio();
- if (scale != 100) {
- image = image.scaledToWidth(
- style::ConvertScale(image.width(), scale),
- Qt::SmoothTransformation);
- }
- } else if (Data::IsDefaultWallPaper(_paper)
- || (_paper.backgroundColors().empty() && image.isNull())) {
- setPaper(Data::DefaultWallPaper().withParamsFrom(_paper));
- image = ReadDefaultImage();
- }
- Local::writeBackground(
- _paper,
- ((Data::IsDefaultWallPaper(_paper)
- || Data::IsLegacy1DefaultWallPaper(_paper))
- ? QImage()
- : image));
- setPreparedAfterPaper(std::move(image));
- }
- Assert(colorForFill()
- || !_gradient.isNull()
- || (!_original.isNull()
- && !_prepared.isNull()
- && !_preparedForTiled.isNull()));
- _updates.fire({ BackgroundUpdate::Type::New, tile() }); // delayed?
- if (needResetAdjustable) {
- _updates.fire({ BackgroundUpdate::Type::TestingTheme, tile() });
- _updates.fire({ BackgroundUpdate::Type::ApplyingTheme, tile() });
- }
- checkUploadWallPaper();
- }
- void ChatBackground::setPreparedAfterPaper(QImage image) {
- const auto &bgColors = _paper.backgroundColors();
- if (_paper.isPattern() && !image.isNull()) {
- if (bgColors.size() < 2) {
- auto prepared = postprocessBackgroundImage(
- Ui::PreparePatternImage(
- image,
- bgColors,
- _paper.gradientRotation(),
- _paper.patternOpacity()));
- setPrepared(
- std::move(image),
- std::move(prepared),
- QImage());
- } else {
- image = postprocessBackgroundImage(std::move(image));
- if (Ui::IsPatternInverted(bgColors, _paper.patternOpacity())) {
- image = Ui::InvertPatternImage(std::move(image));
- }
- setPrepared(
- image,
- image,
- Data::GenerateDitheredGradient(_paper));
- }
- } else if (bgColors.size() == 1) {
- setPrepared(QImage(), QImage(), QImage());
- } else if (!bgColors.empty()) {
- setPrepared(
- QImage(),
- QImage(),
- Data::GenerateDitheredGradient(_paper));
- } else {
- image = postprocessBackgroundImage(std::move(image));
- setPrepared(image, image, QImage());
- }
- }
- void ChatBackground::setPrepared(
- QImage original,
- QImage prepared,
- QImage gradient) {
- Expects(original.isNull() || GoodImageFormatAndSize(original));
- Expects(prepared.isNull() || GoodImageFormatAndSize(prepared));
- Expects(gradient.isNull() || GoodImageFormatAndSize(gradient));
- if (!prepared.isNull() && !_paper.isPattern() && _paper.isBlurred()) {
- prepared = Ui::PrepareBlurredBackground(std::move(prepared));
- }
- if (adjustPaletteRequired()) {
- if ((prepared.isNull() || _paper.isPattern())
- && !_paper.backgroundColors().empty()) {
- adjustPaletteUsingColors(_paper.backgroundColors());
- } else if (!prepared.isNull()) {
- adjustPaletteUsingBackground(prepared);
- }
- }
- _original = std::move(original);
- _prepared = std::move(prepared);
- _gradient = std::move(gradient);
- _imageMonoColor = _gradient.isNull()
- ? Ui::CalculateImageMonoColor(_prepared)
- : std::nullopt;
- _preparedForTiled = Ui::PrepareImageForTiled(_prepared);
- }
- void ChatBackground::setPaper(const Data::WallPaper &paper) {
- _paper = paper.withoutImageData();
- }
- bool ChatBackground::adjustPaletteRequired() {
- const auto usingThemeBackground = [&] {
- return Data::IsThemeWallPaper(_paper)
- || Data::details::IsTestingThemeWallPaper(_paper);
- };
- const auto usingDefaultBackground = [&] {
- return Data::IsDefaultWallPaper(_paper)
- || Data::details::IsTestingDefaultWallPaper(_paper);
- };
- if (_editingTheme.has_value()) {
- return false;
- } else if (isNonDefaultThemeOrBackground() || nightMode()) {
- return !usingThemeBackground();
- }
- return !usingDefaultBackground();
- }
- std::optional<Data::CloudTheme> ChatBackground::editingTheme() const {
- return _editingTheme;
- }
- void ChatBackground::setEditingTheme(const Data::CloudTheme &editing) {
- _editingTheme = editing;
- refreshThemeWatcher();
- }
- void ChatBackground::clearEditingTheme(ClearEditing clear) {
- if (!_editingTheme) {
- return;
- }
- _editingTheme = std::nullopt;
- if (clear == ClearEditing::Temporary) {
- return;
- }
- ClearEditingPalette();
- if (clear == ClearEditing::RevertChanges) {
- reapplyWithNightMode(std::nullopt, _nightMode);
- KeepApplied();
- }
- refreshThemeWatcher();
- }
- void ChatBackground::adjustPaletteUsingBackground(const QImage &image) {
- adjustPaletteUsingColor(Ui::CountAverageColor(image));
- }
- void ChatBackground::adjustPaletteUsingColors(
- const std::vector<QColor> &colors) {
- adjustPaletteUsingColor(Ui::CountAverageColor(colors));
- }
- void ChatBackground::adjustPaletteUsingColor(QColor color) {
- const auto prepared = color.toHsl();
- for (const auto &adjustable : _adjustableColors) {
- const auto adjusted = Ui::ThemeAdjustedColor(adjustable.item->c, prepared);
- adjustable.item.set(
- adjusted.red(),
- adjusted.green(),
- adjusted.blue(),
- adjusted.alpha());
- }
- }
- std::optional<QColor> ChatBackground::colorForFill() const {
- return !_prepared.isNull()
- ? imageMonoColor()
- : (!_gradient.isNull() || _paper.backgroundColors().empty())
- ? std::nullopt
- : std::make_optional(_paper.backgroundColors().front());
- }
- QImage ChatBackground::gradientForFill() const {
- return _gradient;
- }
- void ChatBackground::recacheGradientForFill(QImage gradient) {
- if (_gradient.size() == gradient.size()) {
- _gradient = std::move(gradient);
- }
- }
- QImage ChatBackground::createCurrentImage() const {
- if (const auto fill = colorForFill()) {
- auto result = QImage(512, 512, QImage::Format_ARGB32_Premultiplied);
- result.fill(*fill);
- return result;
- } else if (_gradient.isNull()) {
- return _prepared;
- } else if (_prepared.isNull()) {
- return _gradient;
- }
- auto result = _gradient.scaled(
- _prepared.size(),
- Qt::IgnoreAspectRatio,
- Qt::SmoothTransformation);
- result.setDevicePixelRatio(1.);
- {
- auto p = QPainter(&result);
- const auto patternOpacity = paper().patternOpacity();
- if (patternOpacity >= 0.) {
- p.setCompositionMode(QPainter::CompositionMode_SoftLight);
- p.setOpacity(patternOpacity);
- } else {
- p.setCompositionMode(QPainter::CompositionMode_DestinationIn);
- }
- p.drawImage(QRect(QPoint(), _prepared.size()), _prepared);
- if (patternOpacity < 0. && patternOpacity > -1.) {
- p.setCompositionMode(QPainter::CompositionMode_SourceOver);
- p.setOpacity(1. + patternOpacity);
- p.fillRect(QRect(QPoint(), _prepared.size()), Qt::black);
- }
- }
- return result;
- }
- bool ChatBackground::tile() const {
- if (!started()) {
- const auto &set = nightMode()
- ? _localStoredTileNightValue
- : _localStoredTileDayValue;
- if (set.has_value()) {
- return *set;
- }
- }
- return nightMode() ? _tileNightValue : _tileDayValue;
- }
- bool ChatBackground::tileDay() const {
- if (!started() && _localStoredTileDayValue.has_value()) {
- return *_localStoredTileDayValue;
- } else if (Data::details::IsTestingThemeWallPaper(_paper) ||
- Data::details::IsTestingDefaultWallPaper(_paper)) {
- if (!nightMode()) {
- return _tileForRevert;
- }
- }
- return _tileDayValue;
- }
- bool ChatBackground::tileNight() const {
- if (!started() && _localStoredTileNightValue.has_value()) {
- return *_localStoredTileNightValue;
- } else if (Data::details::IsTestingThemeWallPaper(_paper) ||
- Data::details::IsTestingDefaultWallPaper(_paper)) {
- if (nightMode()) {
- return _tileForRevert;
- }
- }
- return _tileNightValue;
- }
- std::optional<QColor> ChatBackground::imageMonoColor() const {
- return _imageMonoColor;
- }
- void ChatBackground::setTile(bool tile) {
- Expects(started());
- const auto old = this->tile();
- if (nightMode()) {
- setTileNightValue(tile);
- } else {
- setTileDayValue(tile);
- }
- if (this->tile() != old) {
- if (!Data::details::IsTestingThemeWallPaper(_paper)
- && !Data::details::IsTestingDefaultWallPaper(_paper)) {
- Local::writeSettings();
- }
- _updates.fire({ BackgroundUpdate::Type::Changed, tile }); // delayed?
- }
- }
- void ChatBackground::setTileDayValue(bool tile) {
- if (started()) {
- _tileDayValue = tile;
- } else {
- _localStoredTileDayValue = tile;
- }
- }
- void ChatBackground::setTileNightValue(bool tile) {
- if (started()) {
- _tileNightValue = tile;
- } else {
- _localStoredTileNightValue = tile;
- }
- }
- void ChatBackground::setThemeObject(const Object &object) {
- _themeObject = object;
- _themeObject.content = QByteArray();
- }
- const Object &ChatBackground::themeObject() const {
- return _themeObject;
- }
- void ChatBackground::reset() {
- if (Data::details::IsTestingThemeWallPaper(_paper)
- || Data::details::IsTestingDefaultWallPaper(_paper)) {
- if (_themeImage.isNull()) {
- _paperForRevert = Data::DefaultWallPaper();
- _originalForRevert = QImage();
- _tileForRevert = false;
- } else {
- _paperForRevert = Data::ThemeWallPaper();
- _originalForRevert = _themeImage;
- _tileForRevert = _themeTile;
- }
- } else {
- set(Data::ThemeWallPaper());
- restoreAdjustableColors();
- _updates.fire({ BackgroundUpdate::Type::TestingTheme, tile() });
- _updates.fire({ BackgroundUpdate::Type::ApplyingTheme, tile() });
- }
- writeNewBackgroundSettings();
- }
- bool ChatBackground::started() const {
- return !Data::details::IsUninitializedWallPaper(_paper);
- }
- void ChatBackground::saveForRevert() {
- Expects(started());
- if (!Data::details::IsTestingThemeWallPaper(_paper)
- && !Data::details::IsTestingDefaultWallPaper(_paper)) {
- _paperForRevert = _paper;
- _originalForRevert = std::move(_original);
- _tileForRevert = tile();
- }
- }
- void ChatBackground::saveAdjustableColors() {
- for (auto &color : _adjustableColors) {
- color.original = color.item->c;
- }
- }
- void ChatBackground::restoreAdjustableColors() {
- for (const auto &color : _adjustableColors) {
- const auto value = color.original;
- color.item.set(value.red(), value.green(), value.blue(), value.alpha());
- }
- }
- void ChatBackground::setTestingTheme(Instance &&theme) {
- style::main_palette::apply(theme.palette);
- saveAdjustableColors();
- auto switchToThemeBackground = !theme.background.isNull()
- || Data::IsThemeWallPaper(_paper)
- || (Data::IsDefaultWallPaper(_paper)
- && !nightMode()
- && _themeObject.pathAbsolute.isEmpty());
- if (AreTestingTheme() && _editingTheme.has_value()) {
- // Grab current background image if it is not already custom
- // Use prepared pixmap, not original image, because we're
- // for sure switching to a non-pattern wall-paper (testing editor).
- if (!Data::IsCustomWallPaper(_paper)) {
- saveForRevert();
- set(
- Data::details::TestingEditorWallPaper(),
- base::take(_prepared));
- }
- } else if (switchToThemeBackground) {
- saveForRevert();
- set(
- Data::details::TestingThemeWallPaper(),
- std::move(theme.background));
- setTile(theme.tiled);
- } else {
- // Apply current background image so that service bg colors are recounted.
- set(_paper, std::move(_original));
- }
- _updates.fire({ BackgroundUpdate::Type::TestingTheme, tile() });
- }
- void ChatBackground::setTestingDefaultTheme() {
- style::main_palette::reset(ColorizerForTheme(QString()));
- saveAdjustableColors();
- saveForRevert();
- set(Data::details::TestingDefaultWallPaper());
- setTile(false);
- _updates.fire({ BackgroundUpdate::Type::TestingTheme, tile() });
- }
- void ChatBackground::keepApplied(const Object &object, bool write) {
- setThemeObject(object);
- if (Data::details::IsTestingEditorWallPaper(_paper)) {
- setPaper(Data::CustomWallPaper());
- _themeImage = QImage();
- _themeTile = false;
- if (write) {
- writeNewBackgroundSettings();
- }
- } else if (Data::details::IsTestingThemeWallPaper(_paper)) {
- setPaper(Data::ThemeWallPaper());
- _themeImage = postprocessBackgroundImage(base::duplicate(_original));
- _themeTile = tile();
- if (write) {
- writeNewBackgroundSettings();
- }
- } else if (Data::details::IsTestingDefaultWallPaper(_paper)) {
- setPaper(Data::DefaultWallPaper());
- _themeImage = QImage();
- _themeTile = false;
- if (write) {
- writeNewBackgroundSettings();
- }
- }
- _updates.fire({ BackgroundUpdate::Type::ApplyingTheme, tile() });
- }
- bool ChatBackground::isNonDefaultThemeOrBackground() {
- initialRead();
- return nightMode()
- ? (_themeObject.pathAbsolute != NightThemePath()
- || !Data::IsThemeWallPaper(_paper))
- : (!_themeObject.pathAbsolute.isEmpty()
- || !Data::IsDefaultWallPaper(_paper));
- }
- bool ChatBackground::isNonDefaultBackground() {
- initialRead();
- return _themeObject.pathAbsolute.isEmpty()
- ? !Data::IsDefaultWallPaper(_paper)
- : !Data::IsThemeWallPaper(_paper);
- }
- void ChatBackground::writeNewBackgroundSettings() {
- if (tile() != _tileForRevert) {
- Local::writeSettings();
- }
- Local::writeBackground(
- _paper,
- ((Data::IsThemeWallPaper(_paper)
- || Data::IsDefaultWallPaper(_paper))
- ? QImage()
- : _original));
- }
- void ChatBackground::revert() {
- if (Data::details::IsTestingThemeWallPaper(_paper)
- || Data::details::IsTestingDefaultWallPaper(_paper)
- || Data::details::IsTestingEditorWallPaper(_paper)) {
- setTile(_tileForRevert);
- set(_paperForRevert, std::move(_originalForRevert));
- } else {
- // Apply current background image so that service bg colors are recounted.
- set(_paper, std::move(_original));
- }
- _updates.fire({ BackgroundUpdate::Type::RevertingTheme, tile() });
- }
- void ChatBackground::appliedEditedPalette() {
- _updates.fire({ BackgroundUpdate::Type::ApplyingEdit, tile() });
- }
- void ChatBackground::downloadingStarted(bool tile) {
- _updates.fire({ BackgroundUpdate::Type::Start, tile });
- }
- void ChatBackground::setNightModeValue(bool nightMode) {
- _nightMode = nightMode;
- }
- bool ChatBackground::nightMode() const {
- return _nightMode;
- }
- void ChatBackground::reapplyWithNightMode(
- std::optional<QString> themePath,
- bool newNightMode) {
- if (!started()) {
- // We can get here from legacy passcoded state.
- // In this case Background() is not started yet, because
- // some settings and the background itself were not read.
- return;
- } else if (_nightMode != newNightMode && !nightModeChangeAllowed()) {
- return;
- }
- const auto settingExactTheme = themePath.has_value();
- const auto nightModeChanged = (newNightMode != _nightMode);
- const auto oldNightMode = _nightMode;
- _nightMode = newNightMode;
- auto read = settingExactTheme ? Saved() : Local::readThemeAfterSwitch();
- auto path = read.object.pathAbsolute;
- _nightMode = oldNightMode;
- auto oldTileValue = (_nightMode ? _tileNightValue : _tileDayValue);
- const auto alreadyOnDisk = [&] {
- if (read.object.content.isEmpty()) {
- return false;
- }
- auto preview = std::make_unique<Preview>();
- preview->object = std::move(read.object);
- preview->instance.cached = std::move(read.cache);
- const auto loaded = LoadTheme(
- preview->object.content,
- ColorizerForTheme(path),
- std::nullopt,
- &preview->instance.cached,
- &preview->instance);
- if (!loaded) {
- return false;
- }
- Apply(std::move(preview));
- return true;
- }();
- if (!alreadyOnDisk) {
- path = themePath
- ? *themePath
- : (newNightMode ? NightThemePath() : QString());
- ApplyDefaultWithPath(path);
- }
- // Theme editor could have already reverted the testing of this toggle.
- if (AreTestingTheme()) {
- GlobalApplying.overrideKeep = [=] {
- if (nightModeChanged) {
- _nightMode = newNightMode;
- // Restore the value, it was set inside theme testing.
- (oldNightMode ? _tileNightValue : _tileDayValue) = oldTileValue;
- }
- const auto saved = std::move(GlobalApplying.data);
- if (!alreadyOnDisk) {
- // First-time switch to default night mode should write it.
- Local::writeTheme(saved);
- }
- ClearApplying();
- keepApplied(saved.object, settingExactTheme);
- if (tile() != _tileForRevert || nightModeChanged) {
- Local::writeSettings();
- }
- if (!settingExactTheme && !Local::readBackground()) {
- set(Data::ThemeWallPaper());
- }
- };
- }
- }
- bool ChatBackground::nightModeChangeAllowed() const {
- const auto &settings = Core::App().settings();
- const auto allowedToBeAfterChange = settings.systemDarkModeEnabled()
- ? settings.systemDarkMode().value_or(!_nightMode)
- : !_nightMode;
- return (_nightMode != allowedToBeAfterChange);
- }
- void ChatBackground::toggleNightMode(std::optional<QString> themePath) {
- reapplyWithNightMode(themePath, !_nightMode);
- }
- ChatBackground *Background() {
- GlobalBackground.createIfNull();
- return GlobalBackground.data();
- }
- bool IsEmbeddedTheme(const QString &path) {
- return path.isEmpty() || path.startsWith(u":/gui/"_q);
- }
- bool Initialize(Saved &&saved) {
- if (InitializeFromSaved(std::move(saved))) {
- Background()->setThemeObject(saved.object);
- return true;
- }
- DEBUG_LOG(("Theme: Could not initialize from saved."));
- return false;
- }
- void Uninitialize() {
- GlobalBackground.clear();
- GlobalApplying = Applying();
- }
- bool Apply(
- const QString &filepath,
- const Data::CloudTheme &cloud) {
- if (auto preview = PreviewFromFile(QByteArray(), filepath, cloud)) {
- return Apply(std::move(preview));
- }
- return false;
- }
- bool Apply(std::unique_ptr<Preview> preview) {
- GlobalApplying.data.object = std::move(preview->object);
- GlobalApplying.data.cache = std::move(preview->instance.cached);
- if (GlobalApplying.paletteForRevert.isEmpty()) {
- GlobalApplying.paletteForRevert = style::main_palette::save();
- }
- Background()->setTestingTheme(std::move(preview->instance));
- return true;
- }
- void ApplyDefaultWithPath(const QString &themePath) {
- if (!themePath.isEmpty()) {
- if (auto preview = PreviewFromFile(QByteArray(), themePath, {})) {
- Apply(std::move(preview));
- }
- } else {
- GlobalApplying.data = Saved();
- if (GlobalApplying.paletteForRevert.isEmpty()) {
- GlobalApplying.paletteForRevert = style::main_palette::save();
- }
- Background()->setTestingDefaultTheme();
- }
- }
- bool ApplyEditedPalette(const QByteArray &content) {
- auto out = Instance();
- if (!loadColorScheme(content, style::colorizer(), &out)) {
- return false;
- }
- style::main_palette::apply(out.palette);
- Background()->appliedEditedPalette();
- return true;
- }
- void KeepApplied() {
- if (!AreTestingTheme()) {
- return;
- } else if (GlobalApplying.overrideKeep) {
- // This callback will be destroyed while running.
- // And it won't be able to safely access captures after that.
- // So we save it on stack for the time while it is running.
- const auto onstack = base::take(GlobalApplying.overrideKeep);
- onstack();
- return;
- }
- const auto saved = std::move(GlobalApplying.data);
- Local::writeTheme(saved);
- ClearApplying();
- Background()->keepApplied(saved.object, true);
- }
- void KeepFromEditor(
- const QByteArray &originalContent,
- const ParsedTheme &originalParsed,
- const Data::CloudTheme &cloud,
- const QByteArray &themeContent,
- const ParsedTheme &themeParsed,
- const QImage &background) {
- ClearApplying();
- const auto content = themeContent.isEmpty()
- ? originalContent
- : themeContent;
- auto saved = Saved();
- auto &cache = saved.cache;
- auto &object = saved.object;
- cache.colors = style::main_palette::save();
- cache.paletteChecksum = style::palette::Checksum();
- cache.contentChecksum = base::crc32(content.constData(), content.size());
- cache.background = themeParsed.background;
- cache.tiled = themeParsed.tiled;
- object.cloud = cloud;
- object.content = themeContent.isEmpty()
- ? originalContent
- : themeContent;
- object.pathAbsolute = object.pathRelative = CachedThemePath(
- cloud.documentId);
- Local::writeTheme(saved);
- Background()->keepApplied(saved.object, true);
- Background()->setThemeData(
- base::duplicate(background),
- themeParsed.tiled);
- Background()->set(Data::ThemeWallPaper());
- Background()->writeNewBackgroundSettings();
- }
- void Revert() {
- if (!AreTestingTheme()) {
- return;
- }
- style::main_palette::load(GlobalApplying.paletteForRevert);
- Background()->saveAdjustableColors();
- ClearApplying();
- Background()->revert();
- }
- QString NightThemePath() {
- return kNightThemeFile.utf16();
- }
- bool IsNonDefaultBackground() {
- return Background()->isNonDefaultBackground();
- }
- bool IsNightMode() {
- return GlobalBackground ? Background()->nightMode() : false;
- }
- rpl::producer<bool> IsNightModeValue() {
- auto changes = Background()->updates(
- ) | rpl::filter([=](const BackgroundUpdate &update) {
- return update.type == BackgroundUpdate::Type::ApplyingTheme;
- }) | rpl::to_empty;
- return rpl::single(rpl::empty) | rpl::then(
- std::move(changes)
- ) | rpl::map([=] {
- return IsNightMode();
- }) | rpl::distinct_until_changed();
- }
- void SetNightModeValue(bool nightMode) {
- if (GlobalBackground || nightMode) {
- Background()->setNightModeValue(nightMode);
- }
- }
- void ToggleNightMode() {
- Background()->toggleNightMode(std::nullopt);
- }
- void ToggleNightMode(const QString &path) {
- Background()->toggleNightMode(path);
- }
- void ToggleNightModeWithConfirmation(
- not_null<Controller*> window,
- Fn<void()> toggle) {
- if (Background()->nightModeChangeAllowed()) {
- toggle();
- } else {
- const auto disableAndToggle = [=](Fn<void()> &&close) {
- Core::App().settings().setSystemDarkModeEnabled(false);
- Core::App().saveSettingsDelayed();
- toggle();
- close();
- };
- window->show(Ui::MakeConfirmBox({
- .text = tr::lng_settings_auto_night_warning(),
- .confirmed = disableAndToggle,
- .confirmText = tr::lng_settings_auto_night_disable(),
- }));
- }
- }
- void ResetToSomeDefault() {
- Background()->reapplyWithNightMode(
- IsNightMode() ? NightThemePath() : QString(),
- IsNightMode());
- }
- bool LoadFromFile(
- const QString &path,
- not_null<Instance*> out,
- Cached *outCache,
- QByteArray *outContent) {
- const auto colorizer = ColorizerForTheme(path);
- return LoadFromFile(path, out, outCache, outContent, colorizer);
- }
- bool LoadFromFile(
- const QString &path,
- not_null<Instance*> out,
- Cached *outCache,
- QByteArray *outContent,
- const style::colorizer &colorizer) {
- const auto content = readThemeContent(path);
- if (outContent) {
- *outContent = content;
- }
- return LoadTheme(content, colorizer, std::nullopt, outCache, out);
- }
- bool LoadFromContent(
- const QByteArray &content,
- not_null<Instance*> out,
- Cached *outCache) {
- return LoadTheme(
- content,
- style::colorizer(),
- std::nullopt,
- outCache,
- out);
- }
- rpl::producer<bool> IsThemeDarkValue() {
- return rpl::single(rpl::empty) | rpl::then(
- style::PaletteChanged()
- ) | rpl::map([] {
- return (st::dialogsBg->c.valueF() < kDarkValueThreshold);
- });
- }
- QString EditingPalettePath() {
- return cWorkingDir() + "tdata/editing-theme.tdesktop-palette";
- }
- bool ReadPaletteValues(const QByteArray &content, Fn<bool(QLatin1String name, QLatin1String value)> callback) {
- if (content.size() > kThemeSchemeSizeLimit) {
- LOG(("Theme Error: color scheme file too large (should be less than 1 MB, got %2)").arg(content.size()));
- return false;
- }
- auto data = base::parse::stripComments(content);
- auto from = data.constData(), end = from + data.size();
- while (from != end) {
- auto name = QLatin1String("");
- auto value = QLatin1String("");
- if (!readNameAndValue(from, end, &name, &value)) {
- DEBUG_LOG(("Theme: Could not readNameAndValue."));
- return false;
- }
- if (name.size() == 0) { // End of content reached.
- return true;
- }
- if (!callback(name, value)) {
- return false;
- }
- }
- return true;
- }
- [[nodiscard]] Webview::ThemeParams WebViewParams() {
- const auto colors = std::vector<std::pair<QString, const style::color&>>{
- { "bg_color", st::windowBg },
- { "secondary_bg_color", st::boxDividerBg },
- { "text_color", st::windowFg },
- { "hint_color", st::windowSubTextFg },
- { "link_color", st::windowActiveTextFg },
- { "button_color", st::windowBgActive },
- { "button_text_color", st::windowFgActive },
- { "header_bg_color", st::windowBg },
- { "accent_text_color", st::lightButtonFg },
- { "section_bg_color", st::lightButtonBg },
- { "section_header_text_color", st::windowActiveTextFg },
- { "subtitle_text_color", st::windowSubTextFg },
- { "destructive_text_color", st::attentionButtonFg },
- { "bottom_bar_bg_color", st::windowBg },
- };
- auto object = QJsonObject();
- const auto wrap = [](QColor color) {
- auto r = 0;
- auto g = 0;
- auto b = 0;
- color.getRgb(&r, &g, &b);
- const auto hex = [](int component) {
- const auto digit = [](int c) {
- return QChar((c < 10) ? ('0' + c) : ('a' + c - 10));
- };
- return QString() + digit(component / 16) + digit(component % 16);
- };
- return '#' + hex(r) + hex(g) + hex(b);
- };
- for (const auto &[name, color] : colors) {
- object.insert(name, wrap(color->c));
- }
- {
- const auto bg = st::windowBg->c;
- const auto shadow = st::shadowFg->c;
- const auto shadowAlpha = shadow.alphaF();
- const auto mix = [&](int a, int b) {
- return anim::interpolate(a, b, shadowAlpha);
- };
- object.insert("section_separator_color", wrap(QColor(
- mix(bg.red(), shadow.red()),
- mix(bg.green(), shadow.green()),
- mix(bg.blue(), shadow.blue()))));
- }
- return {
- .bodyBg = st::windowBg->c,
- .titleBg = QColor(0, 0, 0, 0),
- .scrollBg = st::scrollBg->c,
- .scrollBgOver = st::scrollBgOver->c,
- .scrollBarBg = st::scrollBarBg->c,
- .scrollBarBgOver = st::scrollBarBgOver->c,
- .json = QJsonDocument(object).toJson(QJsonDocument::Compact),
- };
- }
- std::shared_ptr<FilePrepareResult> PrepareWallPaper(
- MTP::DcId dcId,
- const QImage &image) {
- PreparedPhotoThumbs thumbnails;
- QVector<MTPPhotoSize> sizes;
- QByteArray jpeg;
- QBuffer jpegBuffer(&jpeg);
- image.save(&jpegBuffer, "JPG", 87);
- const auto scaled = [&](int size) {
- return image.scaled(
- size,
- size,
- Qt::KeepAspectRatio,
- Qt::SmoothTransformation);
- };
- const auto push = [&](const char *type, QImage &&image) {
- sizes.push_back(MTP_photoSize(
- MTP_string(type),
- MTP_int(image.width()),
- MTP_int(image.height()), MTP_int(0)));
- thumbnails.emplace(
- type[0],
- PreparedPhotoThumb{ .image = std::move(image) });
- };
- push("s", scaled(320));
- const auto id = base::RandomValue<DocumentId>();
- const auto filename = u"wallpaper.jpg"_q;
- auto attributes = QVector<MTPDocumentAttribute>(
- 1,
- MTP_documentAttributeFilename(MTP_string(filename)));
- attributes.push_back(MTP_documentAttributeImageSize(
- MTP_int(image.width()),
- MTP_int(image.height())));
- auto result = MakePreparedFile({
- .id = id,
- .type = SendMediaType::ThemeFile,
- });
- result->filename = filename;
- result->content = jpeg;
- result->filesize = jpeg.size();
- result->setFileData(jpeg);
- if (thumbnails.empty()) {
- result->thumb = thumbnails.front().second.image;
- result->thumbbytes = thumbnails.front().second.bytes;
- }
- result->document = MTP_document(
- MTP_flags(0),
- MTP_long(id),
- MTP_long(0),
- MTP_bytes(),
- MTP_int(base::unixtime::now()),
- MTP_string("image/jpeg"),
- MTP_long(jpeg.size()),
- MTP_vector<MTPPhotoSize>(sizes),
- MTPVector<MTPVideoSize>(),
- MTP_int(dcId),
- MTP_vector<MTPDocumentAttribute>(attributes));
- return result;
- }
- std::unique_ptr<Ui::ChatTheme> DefaultChatThemeOn(rpl::lifetime &lifetime) {
- auto result = std::make_unique<Ui::ChatTheme>();
- const auto push = [=, raw = result.get()] {
- const auto background = Background();
- const auto &paper = background->paper();
- raw->setBackground({
- .prepared = background->prepared(),
- .preparedForTiled = background->preparedForTiled(),
- .gradientForFill = background->gradientForFill(),
- .colorForFill = background->colorForFill(),
- .colors = paper.backgroundColors(),
- .patternOpacity = paper.patternOpacity(),
- .gradientRotation = paper.gradientRotation(),
- .isPattern = paper.isPattern(),
- .tile = background->tile(),
- });
- };
- push();
- Background()->updates(
- ) | rpl::start_with_next([=](const BackgroundUpdate &update) {
- if (update.type == BackgroundUpdate::Type::New
- || update.type == BackgroundUpdate::Type::Changed) {
- push();
- }
- }, lifetime);
- return result;
- }
- } // namespace Theme
- } // namespace Window
|