diff --git a/Telegram/SourceFiles/art/channelcolor1.png b/Telegram/SourceFiles/art/channelcolor1.png new file mode 100644 index 000000000..fa8486393 Binary files /dev/null and b/Telegram/SourceFiles/art/channelcolor1.png differ diff --git a/Telegram/SourceFiles/art/channelcolor2.png b/Telegram/SourceFiles/art/channelcolor2.png new file mode 100644 index 000000000..f3146254b Binary files /dev/null and b/Telegram/SourceFiles/art/channelcolor2.png differ diff --git a/Telegram/SourceFiles/art/channelcolor3.png b/Telegram/SourceFiles/art/channelcolor3.png new file mode 100644 index 000000000..60896638d Binary files /dev/null and b/Telegram/SourceFiles/art/channelcolor3.png differ diff --git a/Telegram/SourceFiles/art/channelcolor4.png b/Telegram/SourceFiles/art/channelcolor4.png new file mode 100644 index 000000000..d68370742 Binary files /dev/null and b/Telegram/SourceFiles/art/channelcolor4.png differ diff --git a/Telegram/SourceFiles/localstorage.cpp b/Telegram/SourceFiles/localstorage.cpp index b4eb30f5b..67caeda45 100644 --- a/Telegram/SourceFiles/localstorage.cpp +++ b/Telegram/SourceFiles/localstorage.cpp @@ -2946,7 +2946,7 @@ namespace Local { channel->input = MTP_inputPeerChannel(MTP_int(peerToChannel(channel->id)), MTP_long(access)); channel->inputChannel = MTP_inputChannel(MTP_int(peerToChannel(channel->id)), MTP_long(access)); - channel->photo = photoLoc.isNull() ? ImagePtr(chatDefPhoto(channel->colorIndex)) : ImagePtr(photoLoc); + channel->photo = photoLoc.isNull() ? ImagePtr(channelDefPhoto(channel->colorIndex)) : ImagePtr(photoLoc); } App::markPeerUpdated(result); emit App::main()->peerPhotoChanged(result); diff --git a/Telegram/SourceFiles/structs.cpp b/Telegram/SourceFiles/structs.cpp index cb5ef5f12..ab15f05fa 100644 --- a/Telegram/SourceFiles/structs.cpp +++ b/Telegram/SourceFiles/structs.cpp @@ -82,6 +82,16 @@ ImagePtr chatDefPhoto(int32 index) { return chatDefPhotos[index]; } +ImagePtr channelDefPhoto(int32 index) { + static const ImagePtr channelDefPhotos[4] = { + ImagePtr(qsl(":/ava/art/channelcolor1.png"), "PNG"), + ImagePtr(qsl(":/ava/art/channelcolor2.png"), "PNG"), + ImagePtr(qsl(":/ava/art/channelcolor3.png"), "PNG"), + ImagePtr(qsl(":/ava/art/channelcolor4.png"), "PNG"), + }; + return channelDefPhotos[index]; +} + NotifySettings globalNotifyAll, globalNotifyUsers, globalNotifyChats; NotifySettingsPtr globalNotifyAllPtr = UnknownNotifySettings, globalNotifyUsersPtr = UnknownNotifySettings, globalNotifyChatsPtr = UnknownNotifySettings; @@ -89,7 +99,7 @@ PeerData::PeerData(const PeerId &id) : id(id), lnk(new PeerLink(this)) , loaded(false) , colorIndex(peerColorIndex(id)) , color(peerColor(colorIndex)) -, photo((isChat() || isChannel()) ? chatDefPhoto(colorIndex) : userDefPhoto(colorIndex)) +, photo(isChat() ? chatDefPhoto(colorIndex) : (isChannel() ? channelDefPhoto(colorIndex) : userDefPhoto(colorIndex))) , photoId(UnknownPeerPhotoId) , nameVersion(0) , notify(UnknownNotifySettings) @@ -351,13 +361,13 @@ void ChannelData::setPhoto(const MTPChatPhoto &p, const PhotoId &phId) { // see newPhotoId = phId; } newPhotoLoc = App::imageLocation(160, 160, d.vphoto_small); - newPhoto = newPhotoLoc.isNull() ? chatDefPhoto(colorIndex) : ImagePtr(newPhotoLoc); -// photoFull = ImagePtr(640, 640, d.vphoto_big, chatDefPhoto(colorIndex)); + newPhoto = newPhotoLoc.isNull() ? channelDefPhoto(colorIndex) : ImagePtr(newPhotoLoc); +// photoFull = ImagePtr(640, 640, d.vphoto_big, channelDefPhoto(colorIndex)); } break; default: { newPhotoId = 0; newPhotoLoc = StorageImageLocation(); - newPhoto = chatDefPhoto(colorIndex); + newPhoto = channelDefPhoto(colorIndex); // photoFull = ImagePtr(); } break; } diff --git a/Telegram/SourceFiles/structs.h b/Telegram/SourceFiles/structs.h index cbe492291..6ed1ef8d9 100644 --- a/Telegram/SourceFiles/structs.h +++ b/Telegram/SourceFiles/structs.h @@ -173,6 +173,7 @@ inline bool isNotifyMuted(NotifySettingsPtr settings, int32 *changeIn = 0) { style::color peerColor(int32 index); ImagePtr userDefPhoto(int32 index); ImagePtr chatDefPhoto(int32 index); +ImagePtr channelDefPhoto(int32 index); static const PhotoId UnknownPeerPhotoId = 0xFFFFFFFFFFFFFFFFULL; diff --git a/Telegram/SourceFiles/telegram.qrc b/Telegram/SourceFiles/telegram.qrc index 6a0af5648..4fff41335 100644 --- a/Telegram/SourceFiles/telegram.qrc +++ b/Telegram/SourceFiles/telegram.qrc @@ -19,6 +19,10 @@ art/chatcolor2.png art/chatcolor3.png art/chatcolor4.png + art/channelcolor1.png + art/channelcolor2.png + art/channelcolor3.png + art/channelcolor4.png art/usercolor1.png art/usercolor2.png art/usercolor3.png