2016-10-28 12:44:28 +00:00
/*
This file is part of Telegram Desktop ,
2018-01-03 10:23:14 +00:00
the official desktop application for the Telegram messaging service .
2016-10-28 12:44:28 +00:00
2018-01-03 10:23:14 +00:00
For license and copyright information please follow this link :
https : //github.com/telegramdesktop/tdesktop/blob/master/LEGAL
2016-10-28 12:44:28 +00:00
*/
2017-02-03 20:07:26 +00:00
# include "window/themes/window_theme.h"
2016-10-28 12:44:28 +00:00
2018-07-19 14:58:40 +00:00
# include "window/themes/window_theme_preview.h"
2016-10-28 12:44:28 +00:00
# include "mainwidget.h"
2017-03-04 10:23:56 +00:00
# include "storage/localstorage.h"
2017-04-06 14:38:10 +00:00
# include "base/parse_helper.h"
# include "base/zlib_help.h"
2016-11-16 10:44:06 +00:00
# include "styles/style_widgets.h"
# include "styles/style_history.h"
2017-04-06 14:38:10 +00:00
# include "boxes/background_box.h"
2016-10-28 12:44:28 +00:00
namespace Window {
namespace Theme {
namespace {
2017-06-29 19:09:10 +00:00
constexpr auto kThemeFileSizeLimit = 5 * 1024 * 1024 ;
constexpr auto kThemeBackgroundSizeLimit = 4 * 1024 * 1024 ;
constexpr auto kThemeSchemeSizeLimit = 1024 * 1024 ;
constexpr auto kMinimumTiledSize = 512 ;
constexpr auto kNightThemeFile = str_const ( " :/gui/night.tdesktop-theme " ) ;
2017-01-01 16:45:20 +00:00
2016-10-28 12:44:28 +00:00
struct Data {
2016-11-02 14:44:33 +00:00
struct Applying {
2018-07-19 14:58:40 +00:00
QString pathRelative ;
QString pathAbsolute ;
2016-11-02 14:44:33 +00:00
QByteArray content ;
QByteArray paletteForRevert ;
Cached cached ;
} ;
2016-10-28 12:44:28 +00:00
ChatBackground background ;
2016-11-02 14:44:33 +00:00
Applying applying ;
2016-10-28 12:44:28 +00:00
} ;
NeverFreedPointer < Data > instance ;
2017-02-03 20:07:26 +00:00
inline bool AreTestingTheme ( ) {
if ( instance ) {
return ! instance - > applying . paletteForRevert . isEmpty ( ) ;
}
return false ;
} ;
2016-10-28 12:44:28 +00:00
QByteArray readThemeContent ( const QString & path ) {
QFile file ( path ) ;
if ( ! file . exists ( ) ) {
2017-02-02 16:29:36 +00:00
LOG ( ( " Theme Error: theme file not found: %1 " ) . arg ( path ) ) ;
2016-10-28 12:44:28 +00:00
return QByteArray ( ) ;
}
if ( file . size ( ) > kThemeFileSizeLimit ) {
2017-02-02 16:29:36 +00:00
LOG ( ( " Theme Error: theme file too large: %1 (should be less than 5 MB, got %2) " ) . arg ( path ) . arg ( file . size ( ) ) ) ;
2016-10-28 12:44:28 +00:00
return QByteArray ( ) ;
}
if ( ! file . open ( QIODevice : : ReadOnly ) ) {
2017-02-03 20:07:26 +00:00
LOG ( ( " Theme Error: could not open theme file: %1 " ) . arg ( path ) ) ;
2016-10-28 12:44:28 +00:00
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 ) ;
}
2016-11-04 08:23:50 +00:00
bool readNameAndValue ( const char * & from , const char * end , QLatin1String * outName , QLatin1String * outValue ) {
2016-10-28 12:44:28 +00:00
using base : : parse : : skipWhitespaces ;
using base : : parse : : readName ;
if ( ! skipWhitespaces ( from , end ) ) return true ;
* outName = readName ( from , end ) ;
2016-11-04 08:23:50 +00:00
if ( outName - > size ( ) = = 0 ) {
2017-02-02 16:29:36 +00:00
LOG ( ( " Theme Error: Could not read name in the color scheme. " ) ) ;
2016-10-28 12:44:28 +00:00
return false ;
}
if ( ! skipWhitespaces ( from , end ) ) {
2017-02-02 16:29:36 +00:00
LOG ( ( " Theme Error: Unexpected end of the color scheme. " ) ) ;
2016-10-28 12:44:28 +00:00
return false ;
}
if ( * from ! = ' : ' ) {
2017-02-03 20:07:26 +00:00
LOG ( ( " Theme Error: Expected ':' between each name and value in the color scheme (while reading key '%1') " ) . arg ( * outName ) ) ;
2016-10-28 12:44:28 +00:00
return false ;
}
if ( ! skipWhitespaces ( + + from , end ) ) {
2017-02-02 16:29:36 +00:00
LOG ( ( " Theme Error: Unexpected end of the color scheme. " ) ) ;
2016-10-28 12:44:28 +00:00
return false ;
}
auto valueStart = from ;
if ( * from = = ' # ' ) + + from ;
2016-11-04 08:23:50 +00:00
if ( readName ( from , end ) . size ( ) = = 0 ) {
2017-02-03 20:07:26 +00:00
LOG ( ( " Theme Error: Expected a color value in #rrggbb or #rrggbbaa format in the color scheme (while reading key '%1') " ) . arg ( * outName ) ) ;
2016-10-28 12:44:28 +00:00
return false ;
}
2016-11-04 08:23:50 +00:00
* outValue = QLatin1String ( valueStart , from - valueStart ) ;
2016-10-28 12:44:28 +00:00
if ( ! skipWhitespaces ( from , end ) ) {
2017-02-02 16:29:36 +00:00
LOG ( ( " Theme Error: Unexpected end of the color scheme. " ) ) ;
2016-10-28 12:44:28 +00:00
return false ;
}
if ( * from ! = ' ; ' ) {
2017-02-03 20:07:26 +00:00
LOG ( ( " Theme Error: Expected ';' after each value in the color scheme (while reading key '%1') " ) . arg ( * outName ) ) ;
2016-10-28 12:44:28 +00:00
return false ;
}
+ + from ;
return true ;
}
2016-11-04 08:23:50 +00:00
enum class SetResult {
Ok ,
Bad ,
NotFound ,
} ;
SetResult setColorSchemeValue ( QLatin1String name , QLatin1String value , Instance * out ) {
2017-02-03 20:07:26 +00:00
auto result = style : : palette : : SetResult : : Ok ;
2016-11-04 08:23:50 +00:00
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 ( error ) {
2017-02-03 20:07:26 +00:00
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 ;
2016-11-04 08:23:50 +00:00
} else if ( out ) {
2017-02-03 20:07:26 +00:00
result = out - > palette . setColor ( name , r , g , b , a ) ;
2016-11-04 08:23:50 +00:00
} else {
2017-02-03 20:07:26 +00:00
result = style : : main_palette : : setColor ( name , r , g , b , a ) ;
2016-11-04 08:23:50 +00:00
}
} else {
if ( out ) {
2017-02-03 20:07:26 +00:00
result = out - > palette . setColor ( name , value ) ;
2016-11-04 08:23:50 +00:00
} else {
2017-02-03 20:07:26 +00:00
result = style : : main_palette : : setColor ( name , value ) ;
2016-11-04 08:23:50 +00:00
}
}
2017-02-03 20:07:26 +00:00
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. " ) ) ;
2016-10-28 12:44:28 +00:00
}
2017-02-03 20:07:26 +00:00
return SetResult : : Bad ;
}
2016-10-28 12:44:28 +00:00
2017-02-03 20:07:26 +00:00
bool loadColorScheme ( const QByteArray & content , Instance * out ) {
auto unsupported = QMap < QLatin1String , QLatin1String > ( ) ;
return ReadPaletteValues ( content , [ & unsupported , out ] ( QLatin1String name , QLatin1String value ) {
2016-11-04 08:23:50 +00:00
// Find the named value in the already read unsupported list.
value = unsupported . value ( value , value ) ;
auto result = setColorSchemeValue ( name , value , out ) ;
if ( result = = SetResult : : Bad ) {
2016-10-28 12:44:28 +00:00
return false ;
2016-11-04 08:23:50 +00:00
} else if ( result = = SetResult : : NotFound ) {
unsupported . insert ( name , value ) ;
2016-10-28 12:44:28 +00:00
}
2017-02-03 20:07:26 +00:00
return true ;
} ) ;
2016-10-28 12:44:28 +00:00
}
void applyBackground ( QImage & & background , bool tiled , Instance * out ) {
if ( out ) {
2017-02-21 13:45:56 +00:00
out - > background = std : : move ( background ) ;
2016-10-28 12:44:28 +00:00
out - > tiled = tiled ;
} else {
2017-02-21 13:45:56 +00:00
Background ( ) - > setThemeData ( std : : move ( background ) , tiled ) ;
2016-10-28 12:44:28 +00:00
}
}
2018-07-19 14:58:40 +00:00
bool loadThemeFromCache ( const QByteArray & content , const Cached & cache ) {
2016-10-31 12:29:26 +00:00
if ( cache . paletteChecksum ! = style : : palette : : Checksum ( ) ) {
2016-10-28 12:44:28 +00:00
return false ;
}
if ( cache . contentChecksum ! = hashCrc32 ( content . constData ( ) , content . size ( ) ) ) {
return false ;
}
QImage background ;
if ( ! cache . background . isEmpty ( ) ) {
2018-07-19 14:58:40 +00:00
QDataStream stream ( cache . background ) ;
QImageReader reader ( stream . device ( ) ) ;
2016-10-28 12:44:28 +00:00
# ifndef OS_MAC_OLD
reader . setAutoTransform ( true ) ;
# endif // OS_MAC_OLD
if ( ! reader . read ( & background ) | | background . isNull ( ) ) {
return false ;
}
}
if ( ! style : : main_palette : : load ( cache . colors ) ) {
return false ;
}
2018-07-21 13:54:00 +00:00
Background ( ) - > saveAdjustableColors ( ) ;
2016-10-28 12:44:28 +00:00
if ( ! background . isNull ( ) ) {
2017-02-21 13:45:56 +00:00
applyBackground ( std : : move ( background ) , cache . tiled , nullptr ) ;
2016-10-28 12:44:28 +00:00
}
return true ;
}
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 ;
}
2017-02-02 16:29:36 +00:00
LOG ( ( " Theme Error: could not read '%1' in the theme file. " ) . arg ( filename ) ) ;
2016-10-28 12:44:28 +00:00
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 , Cached & cache , Instance * out = nullptr ) {
cache = Cached ( ) ;
zlib : : FileToRead file ( content ) ;
unz_global_info globalInfo = { 0 } ;
file . getGlobalInfo ( & globalInfo ) ;
if ( file . error ( ) = = UNZ_OK ) {
auto schemeContent = file . readFileContent ( " colors.tdesktop-theme " , zlib : : kCaseInsensitive , kThemeSchemeSizeLimit ) ;
2017-02-03 20:07:26 +00:00
if ( file . error ( ) = = UNZ_END_OF_LIST_OF_FILE ) {
file . clearError ( ) ;
schemeContent = file . readFileContent ( " colors.tdesktop-palette " , zlib : : kCaseInsensitive , kThemeSchemeSizeLimit ) ;
}
2016-10-28 12:44:28 +00:00
if ( file . error ( ) ! = UNZ_OK ) {
2017-02-03 20:07:26 +00:00
LOG ( ( " Theme Error: could not read 'colors.tdesktop-theme' or 'colors.tdesktop-palette' in the theme file. " ) ) ;
2016-10-28 12:44:28 +00:00
return false ;
}
if ( ! loadColorScheme ( schemeContent , out ) ) {
return false ;
}
2018-07-21 13:54:00 +00:00
Background ( ) - > saveAdjustableColors ( ) ;
2016-10-28 12:44:28 +00:00
auto backgroundTiled = false ;
auto backgroundContent = QByteArray ( ) ;
if ( ! loadBackground ( file , & backgroundContent , & backgroundTiled ) ) {
return false ;
}
if ( ! backgroundContent . isEmpty ( ) ) {
auto background = App : : readImage ( backgroundContent ) ;
if ( background . isNull ( ) ) {
2017-02-02 16:29:36 +00:00
LOG ( ( " Theme Error: could not read background image in the theme file. " ) ) ;
2016-10-28 12:44:28 +00:00
return false ;
}
QBuffer buffer ( & cache . background ) ;
if ( ! background . save ( & buffer , " BMP " ) ) {
2017-02-02 16:29:36 +00:00
LOG ( ( " Theme Error: could not write background image as a BMP to cache. " ) ) ;
2016-10-28 12:44:28 +00:00
return false ;
}
cache . tiled = backgroundTiled ;
2017-02-21 13:45:56 +00:00
applyBackground ( std : : move ( background ) , cache . tiled , out ) ;
2016-10-28 12:44:28 +00:00
}
} else {
// Looks like it is not a .zip theme.
if ( ! loadColorScheme ( content , out ) ) {
return false ;
}
2018-07-21 13:54:00 +00:00
Background ( ) - > saveAdjustableColors ( ) ;
2016-10-28 12:44:28 +00:00
}
if ( out ) {
cache . colors = out - > palette . save ( ) ;
} else {
cache . colors = style : : main_palette : : save ( ) ;
}
2016-10-31 12:29:26 +00:00
cache . paletteChecksum = style : : palette : : Checksum ( ) ;
2016-10-28 12:44:28 +00:00
cache . contentChecksum = hashCrc32 ( content . constData ( ) , content . size ( ) ) ;
return true ;
}
QImage prepareBackgroundImage ( QImage & & image ) {
if ( image . format ( ) ! = QImage : : Format_ARGB32 & & image . format ( ) ! = QImage : : Format_ARGB32_Premultiplied & & image . format ( ) ! = QImage : : Format_RGB32 ) {
2017-02-21 13:45:56 +00:00
image = std : : move ( image ) . convertToFormat ( QImage : : Format_RGB32 ) ;
2016-10-28 12:44:28 +00:00
}
image . setDevicePixelRatio ( cRetinaFactor ( ) ) ;
2017-02-21 13:45:56 +00:00
return std : : move ( image ) ;
2016-10-28 12:44:28 +00:00
}
2017-02-03 20:07:26 +00:00
void adjustColor ( style : : color color , float64 hue , float64 saturation ) {
2016-12-21 15:05:58 +00:00
auto original = color - > c ;
original . setHslF ( hue , saturation , original . lightnessF ( ) , original . alphaF ( ) ) ;
color . set ( original . red ( ) , original . green ( ) , original . blue ( ) , original . alpha ( ) ) ;
}
2018-07-19 14:58:40 +00:00
void ApplyDefaultWithNightMode ( bool nightMode ) {
if ( nightMode ) {
if ( auto preview = PreviewFromFile ( NightThemePath ( ) ) ) {
Apply ( std : : move ( preview ) ) ;
}
} else {
instance . createIfNull ( ) ;
instance - > applying . pathRelative = QString ( ) ;
instance - > applying . pathAbsolute = QString ( ) ;
instance - > applying . content = QByteArray ( ) ;
instance - > applying . cached = Cached ( ) ;
if ( instance - > applying . paletteForRevert . isEmpty ( ) ) {
instance - > applying . paletteForRevert = style : : main_palette : : save ( ) ;
}
Background ( ) - > setTestingDefaultTheme ( ) ;
}
}
2016-10-28 12:44:28 +00:00
} // namespace
2018-07-21 13:54:00 +00:00
ChatBackground : : AdjustableColor : : AdjustableColor ( style : : color data )
: item ( data )
, original ( data - > c ) {
}
ChatBackground : : ChatBackground ( ) : _adjustableColors ( {
st : : msgServiceBg ,
st : : msgServiceBgSelected ,
st : : historyScrollBg ,
st : : historyScrollBgOver ,
st : : historyScrollBarBg ,
st : : historyScrollBarBgOver } ) {
saveAdjustableColors ( ) ;
}
2016-10-28 12:44:28 +00:00
void ChatBackground : : setThemeData ( QImage & & themeImage , bool themeTile ) {
2017-02-21 13:45:56 +00:00
_themeImage = prepareBackgroundImage ( std : : move ( themeImage ) ) ;
2016-10-28 12:44:28 +00:00
_themeTile = themeTile ;
}
void ChatBackground : : start ( ) {
if ( _id = = internal : : kUninitializedBackground ) {
2016-11-04 19:50:35 +00:00
if ( ! Local : : readBackground ( ) ) {
setImage ( kThemeBackground ) ;
}
2016-10-28 12:44:28 +00:00
}
}
void ChatBackground : : setImage ( int32 id , QImage & & image ) {
2018-07-21 13:54:00 +00:00
auto needResetAdjustable = ( id = = kDefaultBackground )
2018-07-19 14:58:40 +00:00
& & ( _id ! = kDefaultBackground )
& & ! nightMode ( )
& & _themeAbsolutePath . isEmpty ( ) ;
2016-10-28 12:44:28 +00:00
if ( id = = kThemeBackground & & _themeImage . isNull ( ) ) {
id = kDefaultBackground ;
2018-07-21 13:54:00 +00:00
} else if ( needResetAdjustable ) {
2017-06-29 19:09:10 +00:00
// 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.
2018-07-21 13:54:00 +00:00
restoreAdjustableColors ( ) ;
2016-10-28 12:44:28 +00:00
}
_id = id ;
if ( _id = = kThemeBackground ) {
2018-07-19 14:58:40 +00:00
( nightMode ( ) ? _tileNightValue : _tileDayValue ) = _themeTile ;
2016-10-28 12:44:28 +00:00
setPreparedImage ( QImage ( _themeImage ) ) ;
2017-02-03 20:07:26 +00:00
} else if ( _id = = internal : : kTestingThemeBackground
| | _id = = internal : : kTestingDefaultBackground
| | _id = = internal : : kTestingEditorBackground ) {
2016-11-02 14:44:33 +00:00
if ( _id = = internal : : kTestingDefaultBackground | | image . isNull ( ) ) {
image . load ( qsl ( " :/gui/art/bg.jpg " ) ) ;
_id = internal : : kTestingDefaultBackground ;
}
2017-02-21 13:45:56 +00:00
setPreparedImage ( std : : move ( image ) ) ;
2016-10-28 12:44:28 +00:00
} else {
2016-11-07 15:24:28 +00:00
if ( _id = = kInitialBackground ) {
2017-01-17 08:50:22 +00:00
image . load ( qsl ( " :/gui/art/bg_initial.jpg " ) ) ;
2016-10-28 12:44:28 +00:00
if ( cRetina ( ) ) {
image = image . scaledToWidth ( image . width ( ) * 2 , Qt : : SmoothTransformation ) ;
} else if ( cScale ( ) ! = dbisOne ) {
image = image . scaledToWidth ( convertScale ( image . width ( ) ) , Qt : : SmoothTransformation ) ;
}
2016-11-07 15:24:28 +00:00
} else if ( _id = = kDefaultBackground | | image . isNull ( ) ) {
_id = kDefaultBackground ;
image . load ( qsl ( " :/gui/art/bg.jpg " ) ) ;
2016-10-28 12:44:28 +00:00
}
2016-11-07 15:24:28 +00:00
Local : : writeBackground ( _id , ( _id = = kDefaultBackground | | _id = = kInitialBackground ) ? QImage ( ) : image ) ;
2017-02-21 13:45:56 +00:00
setPreparedImage ( prepareBackgroundImage ( std : : move ( image ) ) ) ;
2016-10-28 12:44:28 +00:00
}
2017-08-17 09:06:26 +00:00
Assert ( ! _pixmap . isNull ( ) & & ! _pixmapForTiled . isNull ( ) ) ;
2018-07-19 14:58:40 +00:00
notify ( BackgroundUpdate ( BackgroundUpdate : : Type : : New , tile ( ) ) ) ;
2018-07-21 13:54:00 +00:00
if ( needResetAdjustable ) {
2018-07-19 14:58:40 +00:00
notify ( BackgroundUpdate ( BackgroundUpdate : : Type : : TestingTheme , tile ( ) ) , true ) ;
notify ( BackgroundUpdate ( BackgroundUpdate : : Type : : ApplyingTheme , tile ( ) ) , true ) ;
2017-06-29 19:09:10 +00:00
}
2016-10-28 12:44:28 +00:00
}
void ChatBackground : : setPreparedImage ( QImage & & image ) {
2017-02-21 13:45:56 +00:00
image = std : : move ( image ) . convertToFormat ( QImage : : Format_ARGB32_Premultiplied ) ;
2017-01-01 17:10:35 +00:00
image . setDevicePixelRatio ( cRetinaFactor ( ) ) ;
2017-02-03 20:07:26 +00:00
2018-07-19 14:58:40 +00:00
auto adjustColors = [ & ] {
const auto usingThemeBackground = [ & ] {
return ( _id = = kThemeBackground )
| | ( _id = = internal : : kTestingThemeBackground ) ;
2017-02-03 20:07:26 +00:00
} ;
2018-07-19 14:58:40 +00:00
const auto usingDefaultBackground = [ & ] {
return ( _id = = kDefaultBackground )
| | ( _id = = internal : : kTestingDefaultBackground ) ;
2017-02-03 20:07:26 +00:00
} ;
2018-07-19 14:58:40 +00:00
const auto testingPalette = [ & ] {
const auto path = AreTestingTheme ( )
? instance - > applying . pathAbsolute
: _themeAbsolutePath ;
return IsPaletteTestingPath ( path ) ;
2017-02-03 20:07:26 +00:00
} ;
2018-07-19 14:58:40 +00:00
if ( testingPalette ( ) ) {
return false ;
} else if ( IsNonDefaultThemeOrBackground ( ) | | nightMode ( ) ) {
return ! usingThemeBackground ( ) ;
2017-01-11 08:16:44 +00:00
}
2017-02-03 20:07:26 +00:00
return ! usingDefaultBackground ( ) ;
2018-07-19 14:58:40 +00:00
} ( ) ;
if ( adjustColors ) {
2018-07-21 13:54:00 +00:00
adjustPaletteUsingBackground ( image ) ;
2016-12-21 15:05:58 +00:00
}
2017-01-01 16:45:20 +00:00
auto width = image . width ( ) ;
auto height = image . height ( ) ;
2017-08-17 09:06:26 +00:00
Assert ( width > 0 & & height > 0 ) ;
2017-01-01 16:45:20 +00:00
auto isSmallForTiled = ( width < kMinimumTiledSize | | height < kMinimumTiledSize ) ;
if ( isSmallForTiled ) {
auto repeatTimesX = qCeil ( kMinimumTiledSize / float64 ( width ) ) ;
auto repeatTimesY = qCeil ( kMinimumTiledSize / float64 ( height ) ) ;
auto imageForTiled = QImage ( width * repeatTimesX , height * repeatTimesY , QImage : : Format_ARGB32_Premultiplied ) ;
imageForTiled . setDevicePixelRatio ( image . devicePixelRatio ( ) ) ;
auto imageForTiledBytes = imageForTiled . bits ( ) ;
auto bytesInLine = width * sizeof ( uint32 ) ;
for ( auto timesY = 0 ; timesY ! = repeatTimesY ; + + timesY ) {
auto imageBytes = image . constBits ( ) ;
for ( auto y = 0 ; y ! = height ; + + y ) {
for ( auto timesX = 0 ; timesX ! = repeatTimesX ; + + timesX ) {
memcpy ( imageForTiledBytes , imageBytes , bytesInLine ) ;
imageForTiledBytes + = bytesInLine ;
}
imageBytes + = image . bytesPerLine ( ) ;
imageForTiledBytes + = imageForTiled . bytesPerLine ( ) - ( repeatTimesX * bytesInLine ) ;
}
}
2017-02-21 13:45:56 +00:00
_pixmapForTiled = App : : pixmapFromImageInPlace ( std : : move ( imageForTiled ) ) ;
2017-01-01 16:45:20 +00:00
}
2017-02-21 13:45:56 +00:00
_pixmap = App : : pixmapFromImageInPlace ( std : : move ( image ) ) ;
2017-01-01 16:45:20 +00:00
if ( ! isSmallForTiled ) {
_pixmapForTiled = _pixmap ;
}
2016-10-28 12:44:28 +00:00
}
2018-07-21 13:54:00 +00:00
void ChatBackground : : adjustPaletteUsingBackground ( const QImage & img ) {
Assert ( img . format ( ) = = QImage : : Format_ARGB32_Premultiplied ) ;
uint64 components [ 3 ] = { 0 } ;
uint64 componentsScroll [ 3 ] = { 0 } ;
auto w = img . width ( ) ;
auto h = img . height ( ) ;
auto size = w * h ;
if ( auto pix = img . constBits ( ) ) {
for ( auto i = 0 , l = size * 4 ; i ! = l ; i + = 4 ) {
components [ 2 ] + = pix [ i + 0 ] ;
components [ 1 ] + = pix [ i + 1 ] ;
components [ 0 ] + = pix [ i + 2 ] ;
}
}
if ( size ) {
for ( auto i = 0 ; i ! = 3 ; + + i ) {
components [ i ] / = size ;
}
}
auto bgColor = QColor ( components [ 0 ] , components [ 1 ] , components [ 2 ] ) ;
auto hue = bgColor . hslHueF ( ) ;
auto saturation = bgColor . hslSaturationF ( ) ;
for ( const auto & color : _adjustableColors ) {
adjustColor ( color . item , hue , saturation ) ;
}
}
2016-10-28 12:44:28 +00:00
int32 ChatBackground : : id ( ) const {
return _id ;
}
bool ChatBackground : : tile ( ) const {
2018-07-19 14:58:40 +00:00
return nightMode ( ) ? _tileNightValue : _tileDayValue ;
}
bool ChatBackground : : tileDay ( ) const {
if ( _id = = internal : : kTestingThemeBackground | |
_id = = internal : : kTestingDefaultBackground ) {
if ( ! nightMode ( ) ) {
return _tileForRevert ;
}
}
return _tileDayValue ;
2016-10-28 12:44:28 +00:00
}
2018-07-19 14:58:40 +00:00
bool ChatBackground : : tileNight ( ) const {
2016-11-02 14:44:33 +00:00
if ( _id = = internal : : kTestingThemeBackground | |
_id = = internal : : kTestingDefaultBackground ) {
2018-07-19 14:58:40 +00:00
if ( nightMode ( ) ) {
return _tileForRevert ;
}
2016-11-02 14:44:33 +00:00
}
2018-07-19 14:58:40 +00:00
return _tileNightValue ;
2016-11-02 14:44:33 +00:00
}
void ChatBackground : : ensureStarted ( ) {
2017-01-01 16:45:20 +00:00
if ( _pixmap . isNull ( ) ) {
2016-10-28 12:44:28 +00:00
// We should start first, otherwise the default call
// to start() will reset this value to _themeTile.
start ( ) ;
}
2016-11-02 14:44:33 +00:00
}
void ChatBackground : : setTile ( bool tile ) {
ensureStarted ( ) ;
2018-07-19 14:58:40 +00:00
const auto old = this - > tile ( ) ;
if ( nightMode ( ) ) {
setTileNightValue ( tile ) ;
} else {
setTileDayValue ( tile ) ;
}
if ( this - > tile ( ) ! = old ) {
if ( _id ! = internal : : kTestingThemeBackground
& & _id ! = internal : : kTestingDefaultBackground ) {
2016-11-02 14:44:33 +00:00
Local : : writeUserSettings ( ) ;
}
2018-07-19 14:58:40 +00:00
notify ( BackgroundUpdate ( BackgroundUpdate : : Type : : Changed , tile ) ) ;
2016-10-28 12:44:28 +00:00
}
}
2018-07-19 14:58:40 +00:00
void ChatBackground : : setTileDayValue ( bool tile ) {
ensureStarted ( ) ;
_tileDayValue = tile ;
}
void ChatBackground : : setTileNightValue ( bool tile ) {
ensureStarted ( ) ;
_tileNightValue = tile ;
}
void ChatBackground : : setThemeAbsolutePath ( const QString & path ) {
_themeAbsolutePath = path ;
}
QString ChatBackground : : themeAbsolutePath ( ) const {
return _themeAbsolutePath ;
}
2016-11-02 14:44:33 +00:00
void ChatBackground : : reset ( ) {
2018-07-19 14:58:40 +00:00
if ( _id = = internal : : kTestingThemeBackground
| | _id = = internal : : kTestingDefaultBackground ) {
2016-11-02 14:44:33 +00:00
if ( _themeImage . isNull ( ) ) {
_idForRevert = kDefaultBackground ;
_imageForRevert = QImage ( ) ;
_tileForRevert = false ;
} else {
_idForRevert = kThemeBackground ;
_imageForRevert = _themeImage ;
_tileForRevert = _themeTile ;
}
} else {
setImage ( kThemeBackground ) ;
2018-07-21 13:54:00 +00:00
restoreAdjustableColors ( ) ;
notify ( BackgroundUpdate ( BackgroundUpdate : : Type : : TestingTheme , tile ( ) ) , true ) ;
notify ( BackgroundUpdate ( BackgroundUpdate : : Type : : ApplyingTheme , tile ( ) ) , true ) ;
2016-11-02 14:44:33 +00:00
}
}
void ChatBackground : : saveForRevert ( ) {
ensureStarted ( ) ;
2018-07-19 14:58:40 +00:00
if ( _id ! = internal : : kTestingThemeBackground
& & _id ! = internal : : kTestingDefaultBackground ) {
2016-11-02 14:44:33 +00:00
_idForRevert = _id ;
2017-02-21 13:45:56 +00:00
_imageForRevert = std : : move ( _pixmap ) . toImage ( ) ;
2018-07-19 14:58:40 +00:00
_tileForRevert = tile ( ) ;
2016-11-02 14:44:33 +00:00
}
}
2018-07-21 13:54:00 +00:00
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 ) {
2016-11-02 14:44:33 +00:00
style : : main_palette : : apply ( theme . palette ) ;
2018-07-21 13:54:00 +00:00
saveAdjustableColors ( ) ;
auto switchToThemeBackground = ! theme . background . isNull ( )
2017-06-30 12:03:51 +00:00
| | ( _id = = kThemeBackground )
2018-07-19 14:58:40 +00:00
| | ( _id = = kDefaultBackground
& & ! nightMode ( )
& & _themeAbsolutePath . isEmpty ( ) ) ;
if ( AreTestingTheme ( ) & & IsPaletteTestingPath ( instance - > applying . pathAbsolute ) ) {
2017-02-03 20:07:26 +00:00
// Grab current background image if it is not already custom
if ( _id ! = kCustomBackground ) {
saveForRevert ( ) ;
2017-02-21 13:45:56 +00:00
setImage ( internal : : kTestingEditorBackground , std : : move ( _pixmap ) . toImage ( ) ) ;
2017-02-03 20:07:26 +00:00
}
2017-06-30 12:03:51 +00:00
} else if ( switchToThemeBackground ) {
2016-11-02 14:44:33 +00:00
saveForRevert ( ) ;
2017-02-21 13:45:56 +00:00
setImage ( internal : : kTestingThemeBackground , std : : move ( theme . background ) ) ;
2016-11-02 14:44:33 +00:00
setTile ( theme . tiled ) ;
2017-01-11 08:16:44 +00:00
} else {
// Apply current background image so that service bg colors are recounted.
2017-02-21 13:45:56 +00:00
setImage ( _id , std : : move ( _pixmap ) . toImage ( ) ) ;
2016-11-02 14:44:33 +00:00
}
2018-07-19 14:58:40 +00:00
notify ( BackgroundUpdate ( BackgroundUpdate : : Type : : TestingTheme , tile ( ) ) , true ) ;
2016-11-02 14:44:33 +00:00
}
2016-12-20 13:03:51 +00:00
void ChatBackground : : setTestingDefaultTheme ( ) {
style : : main_palette : : reset ( ) ;
2018-07-21 13:54:00 +00:00
saveAdjustableColors ( ) ;
2018-07-19 14:58:40 +00:00
saveForRevert ( ) ;
setImage ( internal : : kTestingDefaultBackground ) ;
setTile ( false ) ;
notify ( BackgroundUpdate ( BackgroundUpdate : : Type : : TestingTheme , tile ( ) ) , true ) ;
2016-12-20 13:03:51 +00:00
}
2018-07-19 14:58:40 +00:00
void ChatBackground : : keepApplied ( const QString & path , bool write ) {
setThemeAbsolutePath ( path ) ;
2017-02-03 20:07:26 +00:00
if ( _id = = internal : : kTestingEditorBackground ) {
_id = kCustomBackground ;
_themeImage = QImage ( ) ;
_themeTile = false ;
2018-07-19 14:58:40 +00:00
if ( write ) {
writeNewBackgroundSettings ( ) ;
}
2017-02-03 20:07:26 +00:00
} else if ( _id = = internal : : kTestingThemeBackground ) {
2016-11-02 14:44:33 +00:00
_id = kThemeBackground ;
2017-01-01 16:45:20 +00:00
_themeImage = _pixmap . toImage ( ) ;
2018-07-19 14:58:40 +00:00
_themeTile = tile ( ) ;
if ( write ) {
writeNewBackgroundSettings ( ) ;
}
2016-11-02 14:44:33 +00:00
} else if ( _id = = internal : : kTestingDefaultBackground ) {
_id = kDefaultBackground ;
_themeImage = QImage ( ) ;
_themeTile = false ;
2018-07-19 14:58:40 +00:00
if ( write ) {
writeNewBackgroundSettings ( ) ;
}
2016-11-02 14:44:33 +00:00
}
2018-07-19 14:58:40 +00:00
notify ( BackgroundUpdate ( BackgroundUpdate : : Type : : ApplyingTheme , tile ( ) ) , true ) ;
}
2018-07-21 13:54:00 +00:00
bool ChatBackground : : isNonDefaultThemeOrBackground ( ) {
start ( ) ;
2018-07-19 14:58:40 +00:00
return nightMode ( )
? ( _themeAbsolutePath ! = NightThemePath ( )
| | _id ! = kThemeBackground )
: ( ! _themeAbsolutePath . isEmpty ( )
| | _id ! = kDefaultBackground ) ;
2016-11-02 14:44:33 +00:00
}
void ChatBackground : : writeNewBackgroundSettings ( ) {
2018-07-19 14:58:40 +00:00
if ( tile ( ) ! = _tileForRevert ) {
2016-11-02 14:44:33 +00:00
Local : : writeUserSettings ( ) ;
}
2018-07-19 14:58:40 +00:00
Local : : writeBackground (
_id ,
( ( _id = = kThemeBackground | | _id = = kDefaultBackground )
? QImage ( )
: _pixmap . toImage ( ) ) ) ;
2016-11-02 14:44:33 +00:00
}
void ChatBackground : : revert ( ) {
2017-02-03 20:07:26 +00:00
if ( _id = = internal : : kTestingThemeBackground
| | _id = = internal : : kTestingDefaultBackground
| | _id = = internal : : kTestingEditorBackground ) {
2016-11-02 14:44:33 +00:00
setTile ( _tileForRevert ) ;
2017-02-21 13:45:56 +00:00
setImage ( _idForRevert , std : : move ( _imageForRevert ) ) ;
2017-01-11 08:16:44 +00:00
} else {
// Apply current background image so that service bg colors are recounted.
2017-02-21 13:45:56 +00:00
setImage ( _id , std : : move ( _pixmap ) . toImage ( ) ) ;
2016-11-02 14:44:33 +00:00
}
2018-07-19 14:58:40 +00:00
notify ( BackgroundUpdate ( BackgroundUpdate : : Type : : RevertingTheme , tile ( ) ) , true ) ;
2016-11-02 14:44:33 +00:00
}
2018-07-19 14:58:40 +00:00
void ChatBackground : : setNightModeValue ( bool nightMode ) {
_nightMode = nightMode ;
}
bool ChatBackground : : nightMode ( ) const {
return _nightMode ;
}
void ChatBackground : : toggleNightMode ( ) {
const auto oldNightMode = _nightMode ;
const auto newNightMode = ! _nightMode ;
_nightMode = newNightMode ;
auto read = Local : : readThemeAfterSwitch ( ) ;
auto path = read . pathAbsolute ;
_nightMode = oldNightMode ;
auto oldTileValue = ( _nightMode ? _tileNightValue : _tileDayValue ) ;
const auto applied = [ & ] {
if ( read . content . isEmpty ( ) ) {
return false ;
}
auto preview = std : : make_unique < Preview > ( ) ;
preview - > pathAbsolute = std : : move ( read . pathAbsolute ) ;
preview - > pathRelative = std : : move ( read . pathRelative ) ;
preview - > content = std : : move ( read . content ) ;
preview - > instance . cached = std : : move ( read . cache ) ;
const auto loaded = loadTheme (
preview - > content ,
preview - > instance . cached ,
& preview - > instance ) ;
if ( ! loaded ) {
return false ;
}
Apply ( std : : move ( preview ) ) ;
return true ;
} ( ) ;
if ( ! applied ) {
path = newNightMode ? NightThemePath ( ) : QString ( ) ;
ApplyDefaultWithNightMode ( newNightMode ) ;
}
// Theme editor could have already reverted the testing of this toggle.
if ( AreTestingTheme ( ) ) {
_nightMode = newNightMode ;
if ( oldNightMode ) {
_tileDayValue = _tileNightValue ;
_tileNightValue = oldTileValue ;
} else {
_tileNightValue = _tileDayValue ;
_tileDayValue = oldTileValue ;
}
// We don't call full KeepApplied() here, because
// we don't need to write theme or overwrite current background.
instance - > applying = Data : : Applying ( ) ;
Local : : writeSettings ( ) ;
keepApplied ( path , false ) ;
if ( tile ( ) ! = _tileForRevert ) {
Local : : writeUserSettings ( ) ;
}
if ( ! Local : : readBackground ( ) ) {
setImage ( kThemeBackground ) ;
}
}
}
2016-11-02 14:44:33 +00:00
2016-10-28 12:44:28 +00:00
ChatBackground * Background ( ) {
instance . createIfNull ( ) ;
return & instance - > background ;
}
2018-07-19 14:58:40 +00:00
bool Load ( Saved & & saved ) {
if ( saved . content . size ( ) < 4 ) {
LOG ( ( " Theme Error: Could not load theme from '%1' (%2) "
) . arg ( saved . pathRelative
) . arg ( saved . pathAbsolute ) ) ;
2016-10-28 12:44:28 +00:00
return false ;
}
instance . createIfNull ( ) ;
2018-07-19 14:58:40 +00:00
if ( loadThemeFromCache ( saved . content , saved . cache ) ) {
Background ( ) - > setThemeAbsolutePath ( saved . pathAbsolute ) ;
2016-10-28 12:44:28 +00:00
return true ;
}
2018-07-19 14:58:40 +00:00
if ( ! loadTheme ( saved . content , saved . cache ) ) {
2016-10-28 12:44:28 +00:00
return false ;
}
2018-07-19 14:58:40 +00:00
Local : : writeTheme ( saved ) ;
Background ( ) - > setThemeAbsolutePath ( saved . pathAbsolute ) ;
2016-10-28 12:44:28 +00:00
return true ;
}
void Unload ( ) {
instance . clear ( ) ;
}
2016-11-02 14:44:33 +00:00
bool Apply ( const QString & filepath ) {
2018-07-19 14:58:40 +00:00
if ( auto preview = PreviewFromFile ( filepath ) ) {
return Apply ( std : : move ( preview ) ) ;
2016-11-02 14:44:33 +00:00
}
2018-07-19 14:58:40 +00:00
return false ;
2017-06-29 19:09:10 +00:00
}
2017-02-21 13:45:56 +00:00
bool Apply ( std : : unique_ptr < Preview > preview ) {
2016-11-02 14:44:33 +00:00
instance . createIfNull ( ) ;
2018-07-19 14:58:40 +00:00
instance - > applying . pathRelative = std : : move ( preview - > pathRelative ) ;
instance - > applying . pathAbsolute = std : : move ( preview - > pathAbsolute ) ;
2017-02-21 13:45:56 +00:00
instance - > applying . content = std : : move ( preview - > content ) ;
instance - > applying . cached = std : : move ( preview - > instance . cached ) ;
2016-11-02 14:44:33 +00:00
if ( instance - > applying . paletteForRevert . isEmpty ( ) ) {
instance - > applying . paletteForRevert = style : : main_palette : : save ( ) ;
}
2017-02-21 13:45:56 +00:00
Background ( ) - > setTestingTheme ( std : : move ( preview - > instance ) ) ;
2016-11-02 14:44:33 +00:00
return true ;
}
2016-12-20 13:03:51 +00:00
void ApplyDefault ( ) {
2018-07-19 14:58:40 +00:00
ApplyDefaultWithNightMode ( IsNightMode ( ) ) ;
2016-12-20 13:03:51 +00:00
}
2017-02-03 20:07:26 +00:00
bool ApplyEditedPalette ( const QString & path , const QByteArray & content ) {
Instance out ;
if ( ! loadColorScheme ( content , & out ) ) {
return false ;
}
out . cached . colors = out . palette . save ( ) ;
out . cached . paletteChecksum = style : : palette : : Checksum ( ) ;
out . cached . contentChecksum = hashCrc32 ( content . constData ( ) , content . size ( ) ) ;
instance . createIfNull ( ) ;
2018-07-19 14:58:40 +00:00
instance - > applying . pathRelative = path . isEmpty ( )
? QString ( )
: QDir ( ) . relativeFilePath ( path ) ;
instance - > applying . pathAbsolute = path . isEmpty ( )
? QString ( )
: QFileInfo ( path ) . absoluteFilePath ( ) ;
2017-02-03 20:07:26 +00:00
instance - > applying . content = content ;
instance - > applying . cached = out . cached ;
if ( instance - > applying . paletteForRevert . isEmpty ( ) ) {
instance - > applying . paletteForRevert = style : : main_palette : : save ( ) ;
}
2017-02-21 13:45:56 +00:00
Background ( ) - > setTestingTheme ( std : : move ( out ) ) ;
2017-02-03 20:07:26 +00:00
KeepApplied ( ) ;
return true ;
}
2016-11-02 14:44:33 +00:00
void KeepApplied ( ) {
2018-07-19 14:58:40 +00:00
if ( ! AreTestingTheme ( ) ) {
2016-11-02 14:44:33 +00:00
return ;
}
2018-07-19 14:58:40 +00:00
auto saved = Saved ( ) ;
saved . pathRelative = instance - > applying . pathRelative ;
saved . pathAbsolute = instance - > applying . pathAbsolute ;
saved . content = std : : move ( instance - > applying . content ) ;
saved . cache = std : : move ( instance - > applying . cached ) ;
Local : : writeTheme ( saved ) ;
2016-11-02 14:44:33 +00:00
instance - > applying = Data : : Applying ( ) ;
2018-07-19 14:58:40 +00:00
Background ( ) - > keepApplied ( saved . pathAbsolute , true ) ;
2016-11-02 14:44:33 +00:00
}
void Revert ( ) {
2018-07-19 14:58:40 +00:00
if ( ! AreTestingTheme ( ) ) {
return ;
2016-11-02 14:44:33 +00:00
}
2018-07-19 14:58:40 +00:00
style : : main_palette : : load ( instance - > applying . paletteForRevert ) ;
2018-07-21 13:54:00 +00:00
Background ( ) - > saveAdjustableColors ( ) ;
2016-11-02 14:44:33 +00:00
instance - > applying = Data : : Applying ( ) ;
Background ( ) - > revert ( ) ;
}
2018-07-19 14:58:40 +00:00
QString NightThemePath ( ) {
return str_const_toString ( kNightThemeFile ) ;
}
bool IsNonDefaultThemeOrBackground ( ) {
return Background ( ) - > isNonDefaultThemeOrBackground ( ) ;
}
bool IsNightMode ( ) {
return instance ? Background ( ) - > nightMode ( ) : false ;
}
void SetNightModeValue ( bool nightMode ) {
if ( instance | | nightMode ) {
Background ( ) - > setNightModeValue ( nightMode ) ;
}
}
void ToggleNightMode ( ) {
Background ( ) - > toggleNightMode ( ) ;
2017-06-29 19:09:10 +00:00
}
2018-07-19 14:58:40 +00:00
bool SuggestThemeReset ( ) {
return IsNonDefaultThemeOrBackground ( ) ;
2017-06-29 19:09:10 +00:00
}
2016-10-28 12:44:28 +00:00
bool LoadFromFile ( const QString & path , Instance * out , QByteArray * outContent ) {
* outContent = readThemeContent ( path ) ;
if ( outContent - > size ( ) < 4 ) {
2017-02-02 16:29:36 +00:00
LOG ( ( " Theme Error: Could not load theme from %1 " ) . arg ( path ) ) ;
2016-10-28 12:44:28 +00:00
return false ;
}
return loadTheme ( * outContent , out - > cached , out ) ;
}
2017-02-03 20:07:26 +00:00
bool IsPaletteTestingPath ( const QString & path ) {
if ( path . endsWith ( qstr ( " .tdesktop-palette " ) , Qt : : CaseInsensitive ) ) {
return QFileInfo ( path ) . exists ( ) ;
}
return false ;
}
2016-12-23 13:21:01 +00:00
void ComputeBackgroundRects ( QRect wholeFill , QSize imageSize , QRect & to , QRect & from ) {
if ( uint64 ( imageSize . width ( ) ) * wholeFill . height ( ) > uint64 ( imageSize . height ( ) ) * wholeFill . width ( ) ) {
float64 pxsize = wholeFill . height ( ) / float64 ( imageSize . height ( ) ) ;
int takewidth = qCeil ( wholeFill . width ( ) / pxsize ) ;
if ( takewidth > imageSize . width ( ) ) {
takewidth = imageSize . width ( ) ;
} else if ( ( imageSize . width ( ) % 2 ) ! = ( takewidth % 2 ) ) {
+ + takewidth ;
}
to = QRect ( int ( ( wholeFill . width ( ) - takewidth * pxsize ) / 2. ) , 0 , qCeil ( takewidth * pxsize ) , wholeFill . height ( ) ) ;
from = QRect ( ( imageSize . width ( ) - takewidth ) / 2 , 0 , takewidth , imageSize . height ( ) ) ;
} else {
float64 pxsize = wholeFill . width ( ) / float64 ( imageSize . width ( ) ) ;
int takeheight = qCeil ( wholeFill . height ( ) / pxsize ) ;
if ( takeheight > imageSize . height ( ) ) {
takeheight = imageSize . height ( ) ;
} else if ( ( imageSize . height ( ) % 2 ) ! = ( takeheight % 2 ) ) {
+ + takeheight ;
}
to = QRect ( 0 , int ( ( wholeFill . height ( ) - takeheight * pxsize ) / 2. ) , wholeFill . width ( ) , qCeil ( takeheight * pxsize ) ) ;
from = QRect ( 0 , ( imageSize . height ( ) - takeheight ) / 2 , imageSize . width ( ) , takeheight ) ;
}
}
2017-02-03 20:07:26 +00:00
bool CopyColorsToPalette ( const QString & path , const QByteArray & themeContent ) {
auto paletteContent = themeContent ;
zlib : : FileToRead file ( themeContent ) ;
unz_global_info globalInfo = { 0 } ;
file . getGlobalInfo ( & globalInfo ) ;
if ( file . error ( ) = = UNZ_OK ) {
paletteContent = file . readFileContent ( " colors.tdesktop-theme " , zlib : : kCaseInsensitive , kThemeSchemeSizeLimit ) ;
if ( file . error ( ) = = UNZ_END_OF_LIST_OF_FILE ) {
file . clearError ( ) ;
paletteContent = 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, while copying to '%1'. " ) . arg ( path ) ) ;
return false ;
}
}
QFile f ( path ) ;
if ( ! f . open ( QIODevice : : WriteOnly ) ) {
LOG ( ( " Theme Error: could not open file for write '%1' " ) . arg ( path ) ) ;
return false ;
}
if ( f . write ( paletteContent ) ! = paletteContent . size ( ) ) {
LOG ( ( " Theme Error: could not write palette to '%1' " ) . arg ( path ) ) ;
return false ;
}
return true ;
}
2018-06-04 15:35:11 +00:00
bool ReadPaletteValues ( const QByteArray & content , Fn < bool ( QLatin1String name , QLatin1String value ) > callback ) {
2017-02-03 20:07:26 +00:00
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 ) ) {
return false ;
}
if ( name . size ( ) = = 0 ) { // End of content reached.
return true ;
}
if ( ! callback ( name , value ) ) {
return false ;
}
}
return true ;
}
2016-10-28 12:44:28 +00:00
} // namespace Theme
} // namespace Window