Make message icon color same as name color
This commit is contained in:
		
							parent
							
								
									7c376c3a0b
								
							
						
					
					
						commit
						d35d97355e
					
				
					 5 changed files with 529 additions and 27 deletions
				
			
		| 
						 | 
				
			
			@ -216,6 +216,130 @@ style::color FromNameFg(
 | 
			
		|||
	}
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
style::icon FromChatIcon(
 | 
			
		||||
		const Ui::ChatPaintContext &context,
 | 
			
		||||
		PeerId peerId) {
 | 
			
		||||
	const auto st = context.st;
 | 
			
		||||
	if (context.selected()) {
 | 
			
		||||
		const style::icon icons[] = {
 | 
			
		||||
			st->msgNameChat1IconSelected(),
 | 
			
		||||
			st->msgNameChat2IconSelected(),
 | 
			
		||||
			st->msgNameChat3IconSelected(),
 | 
			
		||||
			st->msgNameChat4IconSelected(),
 | 
			
		||||
			st->msgNameChat5IconSelected(),
 | 
			
		||||
			st->msgNameChat6IconSelected(),
 | 
			
		||||
			st->msgNameChat7IconSelected(),
 | 
			
		||||
			st->msgNameChat8IconSelected(),
 | 
			
		||||
		};
 | 
			
		||||
		return icons[Data::PeerColorIndex(peerId)];
 | 
			
		||||
	} else {
 | 
			
		||||
		const style::icon icons[] = {
 | 
			
		||||
			st->msgNameChat1Icon(),
 | 
			
		||||
			st->msgNameChat2Icon(),
 | 
			
		||||
			st->msgNameChat3Icon(),
 | 
			
		||||
			st->msgNameChat4Icon(),
 | 
			
		||||
			st->msgNameChat5Icon(),
 | 
			
		||||
			st->msgNameChat6Icon(),
 | 
			
		||||
			st->msgNameChat7Icon(),
 | 
			
		||||
			st->msgNameChat8Icon(),
 | 
			
		||||
		};
 | 
			
		||||
		return icons[Data::PeerColorIndex(peerId)];
 | 
			
		||||
	}
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
style::icon FromChannelIcon(
 | 
			
		||||
		const Ui::ChatPaintContext &context,
 | 
			
		||||
		PeerId peerId) {
 | 
			
		||||
	const auto st = context.st;
 | 
			
		||||
	if (context.selected()) {
 | 
			
		||||
		const style::icon icons[] = {
 | 
			
		||||
			st->msgNameChannel1IconSelected(),
 | 
			
		||||
			st->msgNameChannel2IconSelected(),
 | 
			
		||||
			st->msgNameChannel3IconSelected(),
 | 
			
		||||
			st->msgNameChannel4IconSelected(),
 | 
			
		||||
			st->msgNameChannel5IconSelected(),
 | 
			
		||||
			st->msgNameChannel6IconSelected(),
 | 
			
		||||
			st->msgNameChannel7IconSelected(),
 | 
			
		||||
			st->msgNameChannel8IconSelected(),
 | 
			
		||||
		};
 | 
			
		||||
		return icons[Data::PeerColorIndex(peerId)];
 | 
			
		||||
	} else {
 | 
			
		||||
		const style::icon icons[] = {
 | 
			
		||||
			st->msgNameChannel1Icon(),
 | 
			
		||||
			st->msgNameChannel2Icon(),
 | 
			
		||||
			st->msgNameChannel3Icon(),
 | 
			
		||||
			st->msgNameChannel4Icon(),
 | 
			
		||||
			st->msgNameChannel5Icon(),
 | 
			
		||||
			st->msgNameChannel6Icon(),
 | 
			
		||||
			st->msgNameChannel7Icon(),
 | 
			
		||||
			st->msgNameChannel8Icon(),
 | 
			
		||||
		};
 | 
			
		||||
		return icons[Data::PeerColorIndex(peerId)];
 | 
			
		||||
	}
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
style::icon FromDeletedIcon(
 | 
			
		||||
		const Ui::ChatPaintContext &context,
 | 
			
		||||
		PeerId peerId) {
 | 
			
		||||
	const auto st = context.st;
 | 
			
		||||
	if (context.selected()) {
 | 
			
		||||
		const style::icon icons[] = {
 | 
			
		||||
			st->msgNameDeleted1IconSelected(),
 | 
			
		||||
			st->msgNameDeleted2IconSelected(),
 | 
			
		||||
			st->msgNameDeleted3IconSelected(),
 | 
			
		||||
			st->msgNameDeleted4IconSelected(),
 | 
			
		||||
			st->msgNameDeleted5IconSelected(),
 | 
			
		||||
			st->msgNameDeleted6IconSelected(),
 | 
			
		||||
			st->msgNameDeleted7IconSelected(),
 | 
			
		||||
			st->msgNameDeleted8IconSelected(),
 | 
			
		||||
		};
 | 
			
		||||
		return icons[Data::PeerColorIndex(peerId)];
 | 
			
		||||
	} else {
 | 
			
		||||
		const style::icon icons[] = {
 | 
			
		||||
			st->msgNameDeleted1Icon(),
 | 
			
		||||
			st->msgNameDeleted2Icon(),
 | 
			
		||||
			st->msgNameDeleted3Icon(),
 | 
			
		||||
			st->msgNameDeleted4Icon(),
 | 
			
		||||
			st->msgNameDeleted5Icon(),
 | 
			
		||||
			st->msgNameDeleted6Icon(),
 | 
			
		||||
			st->msgNameDeleted7Icon(),
 | 
			
		||||
			st->msgNameDeleted8Icon(),
 | 
			
		||||
		};
 | 
			
		||||
		return icons[Data::PeerColorIndex(peerId)];
 | 
			
		||||
	}
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
style::icon FromBotIcon(
 | 
			
		||||
		const Ui::ChatPaintContext &context,
 | 
			
		||||
		PeerId peerId) {
 | 
			
		||||
	const auto st = context.st;
 | 
			
		||||
	if (context.selected()) {
 | 
			
		||||
		const style::icon icons[] = {
 | 
			
		||||
			st->msgNameBot1IconSelected(),
 | 
			
		||||
			st->msgNameBot2IconSelected(),
 | 
			
		||||
			st->msgNameBot3IconSelected(),
 | 
			
		||||
			st->msgNameBot4IconSelected(),
 | 
			
		||||
			st->msgNameBot5IconSelected(),
 | 
			
		||||
			st->msgNameBot6IconSelected(),
 | 
			
		||||
			st->msgNameBot7IconSelected(),
 | 
			
		||||
			st->msgNameBot8IconSelected(),
 | 
			
		||||
		};
 | 
			
		||||
		return icons[Data::PeerColorIndex(peerId)];
 | 
			
		||||
	} else {
 | 
			
		||||
		const style::icon icons[] = {
 | 
			
		||||
			st->msgNameBot1Icon(),
 | 
			
		||||
			st->msgNameBot2Icon(),
 | 
			
		||||
			st->msgNameBot3Icon(),
 | 
			
		||||
			st->msgNameBot4Icon(),
 | 
			
		||||
			st->msgNameBot5Icon(),
 | 
			
		||||
			st->msgNameBot6Icon(),
 | 
			
		||||
			st->msgNameBot7Icon(),
 | 
			
		||||
			st->msgNameBot8Icon(),
 | 
			
		||||
		};
 | 
			
		||||
		return icons[Data::PeerColorIndex(peerId)];
 | 
			
		||||
	}
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
} // namespace
 | 
			
		||||
 | 
			
		||||
struct Message::CommentsButton {
 | 
			
		||||
| 
						 | 
				
			
			@ -1098,34 +1222,26 @@ void Message::paintFromName(
 | 
			
		|||
		availableWidth -= st::msgPadding.right() + rightWidth;
 | 
			
		||||
	}
 | 
			
		||||
 | 
			
		||||
	const auto chatTypeIcon = [&]() -> const style::icon * {
 | 
			
		||||
	const auto chatTypeIcon = [&]() -> std::optional<style::icon>  {
 | 
			
		||||
		if (item->isSponsored()) {
 | 
			
		||||
			return context.selected()
 | 
			
		||||
					? &st::msgNameSponsoredIconSelected
 | 
			
		||||
					: &st::msgNameSponsoredIcon;
 | 
			
		||||
					? context.st->msgNameSponsoredIconSelected()
 | 
			
		||||
					: context.st->msgNameSponsoredIcon();
 | 
			
		||||
		} else if (!item->isPost() && item->displayFrom()) {
 | 
			
		||||
			const auto from = item->displayFrom();
 | 
			
		||||
			if (from->isChat() || from->isMegagroup()) {
 | 
			
		||||
				return context.selected()
 | 
			
		||||
						? &st::msgNameChatIconSelected
 | 
			
		||||
						: &st::msgNameChatIcon;
 | 
			
		||||
				return FromChatIcon(context, from->id);
 | 
			
		||||
			} else if (from->isChannel()) {
 | 
			
		||||
				return context.selected()
 | 
			
		||||
						? &st::msgNameChannelIconSelected
 | 
			
		||||
						: &st::msgNameChannelIcon;
 | 
			
		||||
				return FromChannelIcon(context, from->id);
 | 
			
		||||
			} else if (const auto user = from->asUser()) {
 | 
			
		||||
				if (user->isInaccessible()) {
 | 
			
		||||
					return context.selected()
 | 
			
		||||
							? &st::msgNameDeletedIconSelected
 | 
			
		||||
							: &st::msgNameDeletedIcon;
 | 
			
		||||
					return FromDeletedIcon(context, from->id);
 | 
			
		||||
				} else if (user->isBot() && !user->isSupport() && !user->isRepliesChat()) {
 | 
			
		||||
					return context.selected()
 | 
			
		||||
							? &st::msgNameBotIconSelected
 | 
			
		||||
							: &st::msgNameBotIcon;
 | 
			
		||||
					return FromBotIcon(context, from->id);
 | 
			
		||||
				}
 | 
			
		||||
			}
 | 
			
		||||
		}
 | 
			
		||||
		return nullptr;
 | 
			
		||||
		return {};
 | 
			
		||||
	}();
 | 
			
		||||
 | 
			
		||||
	if (chatTypeIcon) {
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
| 
						 | 
				
			
			@ -1037,13 +1037,69 @@ reactionMainAppearShift: 20px;
 | 
			
		|||
reactionCollapseFadeThreshold: 40px;
 | 
			
		||||
reactionFlyUp: 50px;
 | 
			
		||||
 | 
			
		||||
msgNameChatIcon: icon {{ "dialogs/dialogs_chat", ktgMessageNameIconFg, point(1px, 4px) }};
 | 
			
		||||
msgNameChatIconSelected: icon {{ "dialogs/dialogs_chat", ktgMessageNameIconFgSelected, point(1px, 4px) }};
 | 
			
		||||
msgNameChannelIcon: icon {{ "dialogs/dialogs_channel", ktgMessageNameIconFg, point(3px, 4px) }};
 | 
			
		||||
msgNameChannelIconSelected: icon {{ "dialogs/dialogs_channel", ktgMessageNameIconFgSelected, point(3px, 4px) }};
 | 
			
		||||
msgNameBotIcon: icon {{ "dialogs/dialogs_bot", ktgMessageNameIconFg, point(1px, 3px) }};
 | 
			
		||||
msgNameBotIconSelected: icon {{ "dialogs/dialogs_bot", ktgMessageNameIconFgSelected, point(1px, 3px) }};
 | 
			
		||||
msgNameDeletedIcon: icon {{ "dialogs/dialogs_deleted", ktgMessageNameIconFg, point(1px, 4px) }};
 | 
			
		||||
msgNameDeletedIconSelected: icon {{ "dialogs/dialogs_deleted", ktgMessageNameIconFgSelected, point(1px, 4px) }};
 | 
			
		||||
msgNameSponsoredIcon: icon {{ "dialogs/dialogs_sponsored", ktgMessageNameIconFg, point(1px, 4px) }};
 | 
			
		||||
msgNameSponsoredIconSelected: icon {{ "dialogs/dialogs_sponsored", ktgMessageNameIconFgSelected, point(1px, 4px) }};
 | 
			
		||||
msgNameChat1Icon: icon {{ "dialogs/dialogs_chat", ktgMessageName1IconFg, point(1px, 4px) }};
 | 
			
		||||
msgNameChat1IconSelected: icon {{ "dialogs/dialogs_chat", ktgMessageName1IconFgSelected, point(1px, 4px) }};
 | 
			
		||||
msgNameChat2Icon: icon {{ "dialogs/dialogs_chat", ktgMessageName2IconFg, point(1px, 4px) }};
 | 
			
		||||
msgNameChat2IconSelected: icon {{ "dialogs/dialogs_chat", ktgMessageName2IconFgSelected, point(1px, 4px) }};
 | 
			
		||||
msgNameChat3Icon: icon {{ "dialogs/dialogs_chat", ktgMessageName3IconFg, point(1px, 4px) }};
 | 
			
		||||
msgNameChat3IconSelected: icon {{ "dialogs/dialogs_chat", ktgMessageName3IconFgSelected, point(1px, 4px) }};
 | 
			
		||||
msgNameChat4Icon: icon {{ "dialogs/dialogs_chat", ktgMessageName4IconFg, point(1px, 4px) }};
 | 
			
		||||
msgNameChat4IconSelected: icon {{ "dialogs/dialogs_chat", ktgMessageName4IconFgSelected, point(1px, 4px) }};
 | 
			
		||||
msgNameChat5Icon: icon {{ "dialogs/dialogs_chat", ktgMessageName5IconFg, point(1px, 4px) }};
 | 
			
		||||
msgNameChat5IconSelected: icon {{ "dialogs/dialogs_chat", ktgMessageName5IconFgSelected, point(1px, 4px) }};
 | 
			
		||||
msgNameChat6Icon: icon {{ "dialogs/dialogs_chat", ktgMessageName6IconFg, point(1px, 4px) }};
 | 
			
		||||
msgNameChat6IconSelected: icon {{ "dialogs/dialogs_chat", ktgMessageName6IconFgSelected, point(1px, 4px) }};
 | 
			
		||||
msgNameChat7Icon: icon {{ "dialogs/dialogs_chat", ktgMessageName7IconFg, point(1px, 4px) }};
 | 
			
		||||
msgNameChat7IconSelected: icon {{ "dialogs/dialogs_chat", ktgMessageName7IconFgSelected, point(1px, 4px) }};
 | 
			
		||||
msgNameChat8Icon: icon {{ "dialogs/dialogs_chat", ktgMessageName8IconFg, point(1px, 4px) }};
 | 
			
		||||
msgNameChat8IconSelected: icon {{ "dialogs/dialogs_chat", ktgMessageName8IconFgSelected, point(1px, 4px) }};
 | 
			
		||||
msgNameChannel1Icon: icon {{ "dialogs/dialogs_channel", ktgMessageName1IconFg, point(3px, 4px) }};
 | 
			
		||||
msgNameChannel1IconSelected: icon {{ "dialogs/dialogs_channel", ktgMessageName1IconFgSelected, point(3px, 4px) }};
 | 
			
		||||
msgNameChannel2Icon: icon {{ "dialogs/dialogs_channel", ktgMessageName2IconFg, point(3px, 4px) }};
 | 
			
		||||
msgNameChannel2IconSelected: icon {{ "dialogs/dialogs_channel", ktgMessageName2IconFgSelected, point(3px, 4px) }};
 | 
			
		||||
msgNameChannel3Icon: icon {{ "dialogs/dialogs_channel", ktgMessageName3IconFg, point(3px, 4px) }};
 | 
			
		||||
msgNameChannel3IconSelected: icon {{ "dialogs/dialogs_channel", ktgMessageName3IconFgSelected, point(3px, 4px) }};
 | 
			
		||||
msgNameChannel4Icon: icon {{ "dialogs/dialogs_channel", ktgMessageName4IconFg, point(3px, 4px) }};
 | 
			
		||||
msgNameChannel4IconSelected: icon {{ "dialogs/dialogs_channel", ktgMessageName4IconFgSelected, point(3px, 4px) }};
 | 
			
		||||
msgNameChannel5Icon: icon {{ "dialogs/dialogs_channel", ktgMessageName5IconFg, point(3px, 4px) }};
 | 
			
		||||
msgNameChannel5IconSelected: icon {{ "dialogs/dialogs_channel", ktgMessageName5IconFgSelected, point(3px, 4px) }};
 | 
			
		||||
msgNameChannel6Icon: icon {{ "dialogs/dialogs_channel", ktgMessageName6IconFg, point(3px, 4px) }};
 | 
			
		||||
msgNameChannel6IconSelected: icon {{ "dialogs/dialogs_channel", ktgMessageName6IconFgSelected, point(3px, 4px) }};
 | 
			
		||||
msgNameChannel7Icon: icon {{ "dialogs/dialogs_channel", ktgMessageName7IconFg, point(3px, 4px) }};
 | 
			
		||||
msgNameChannel7IconSelected: icon {{ "dialogs/dialogs_channel", ktgMessageName7IconFgSelected, point(3px, 4px) }};
 | 
			
		||||
msgNameChannel8Icon: icon {{ "dialogs/dialogs_channel", ktgMessageName8IconFg, point(3px, 4px) }};
 | 
			
		||||
msgNameChannel8IconSelected: icon {{ "dialogs/dialogs_channel", ktgMessageName8IconFgSelected, point(3px, 4px) }};
 | 
			
		||||
msgNameBot1Icon: icon {{ "dialogs/dialogs_bot", ktgMessageName1IconFg, point(1px, 3px) }};
 | 
			
		||||
msgNameBot1IconSelected: icon {{ "dialogs/dialogs_bot", ktgMessageName1IconFgSelected, point(1px, 3px) }};
 | 
			
		||||
msgNameBot2Icon: icon {{ "dialogs/dialogs_bot", ktgMessageName2IconFg, point(1px, 3px) }};
 | 
			
		||||
msgNameBot2IconSelected: icon {{ "dialogs/dialogs_bot", ktgMessageName2IconFgSelected, point(1px, 3px) }};
 | 
			
		||||
msgNameBot3Icon: icon {{ "dialogs/dialogs_bot", ktgMessageName3IconFg, point(1px, 3px) }};
 | 
			
		||||
msgNameBot3IconSelected: icon {{ "dialogs/dialogs_bot", ktgMessageName3IconFgSelected, point(1px, 3px) }};
 | 
			
		||||
msgNameBot4Icon: icon {{ "dialogs/dialogs_bot", ktgMessageName4IconFg, point(1px, 3px) }};
 | 
			
		||||
msgNameBot4IconSelected: icon {{ "dialogs/dialogs_bot", ktgMessageName4IconFgSelected, point(1px, 3px) }};
 | 
			
		||||
msgNameBot5Icon: icon {{ "dialogs/dialogs_bot", ktgMessageName5IconFg, point(1px, 3px) }};
 | 
			
		||||
msgNameBot5IconSelected: icon {{ "dialogs/dialogs_bot", ktgMessageName5IconFgSelected, point(1px, 3px) }};
 | 
			
		||||
msgNameBot6Icon: icon {{ "dialogs/dialogs_bot", ktgMessageName6IconFg, point(1px, 3px) }};
 | 
			
		||||
msgNameBot6IconSelected: icon {{ "dialogs/dialogs_bot", ktgMessageName6IconFgSelected, point(1px, 3px) }};
 | 
			
		||||
msgNameBot7Icon: icon {{ "dialogs/dialogs_bot", ktgMessageName7IconFg, point(1px, 3px) }};
 | 
			
		||||
msgNameBot7IconSelected: icon {{ "dialogs/dialogs_bot", ktgMessageName7IconFgSelected, point(1px, 3px) }};
 | 
			
		||||
msgNameBot8Icon: icon {{ "dialogs/dialogs_bot", ktgMessageName8IconFg, point(1px, 3px) }};
 | 
			
		||||
msgNameBot8IconSelected: icon {{ "dialogs/dialogs_bot", ktgMessageName8IconFgSelected, point(1px, 3px) }};
 | 
			
		||||
msgNameDeleted1Icon: icon {{ "dialogs/dialogs_deleted", ktgMessageName1IconFg, point(1px, 4px) }};
 | 
			
		||||
msgNameDeleted1IconSelected: icon {{ "dialogs/dialogs_deleted", ktgMessageName1IconFgSelected, point(1px, 4px) }};
 | 
			
		||||
msgNameDeleted2Icon: icon {{ "dialogs/dialogs_deleted", ktgMessageName2IconFg, point(1px, 4px) }};
 | 
			
		||||
msgNameDeleted2IconSelected: icon {{ "dialogs/dialogs_deleted", ktgMessageName2IconFgSelected, point(1px, 4px) }};
 | 
			
		||||
msgNameDeleted3Icon: icon {{ "dialogs/dialogs_deleted", ktgMessageName3IconFg, point(1px, 4px) }};
 | 
			
		||||
msgNameDeleted3IconSelected: icon {{ "dialogs/dialogs_deleted", ktgMessageName3IconFgSelected, point(1px, 4px) }};
 | 
			
		||||
msgNameDeleted4Icon: icon {{ "dialogs/dialogs_deleted", ktgMessageName4IconFg, point(1px, 4px) }};
 | 
			
		||||
msgNameDeleted4IconSelected: icon {{ "dialogs/dialogs_deleted", ktgMessageName4IconFgSelected, point(1px, 4px) }};
 | 
			
		||||
msgNameDeleted5Icon: icon {{ "dialogs/dialogs_deleted", ktgMessageName5IconFg, point(1px, 4px) }};
 | 
			
		||||
msgNameDeleted5IconSelected: icon {{ "dialogs/dialogs_deleted", ktgMessageName5IconFgSelected, point(1px, 4px) }};
 | 
			
		||||
msgNameDeleted6Icon: icon {{ "dialogs/dialogs_deleted", ktgMessageName6IconFg, point(1px, 4px) }};
 | 
			
		||||
msgNameDeleted6IconSelected: icon {{ "dialogs/dialogs_deleted", ktgMessageName6IconFgSelected, point(1px, 4px) }};
 | 
			
		||||
msgNameDeleted7Icon: icon {{ "dialogs/dialogs_deleted", ktgMessageName7IconFg, point(1px, 4px) }};
 | 
			
		||||
msgNameDeleted7IconSelected: icon {{ "dialogs/dialogs_deleted", ktgMessageName7IconFgSelected, point(1px, 4px) }};
 | 
			
		||||
msgNameDeleted8Icon: icon {{ "dialogs/dialogs_deleted", ktgMessageName8IconFg, point(1px, 4px) }};
 | 
			
		||||
msgNameDeleted8IconSelected: icon {{ "dialogs/dialogs_deleted", ktgMessageName8IconFgSelected, point(1px, 4px) }};
 | 
			
		||||
msgNameSponsoredIcon: icon {{ "dialogs/dialogs_sponsored", ktgMessageNameSponsoredIconFg, point(1px, 4px) }};
 | 
			
		||||
msgNameSponsoredIconSelected: icon {{ "dialogs/dialogs_sponsored", ktgMessageNameSponsoredIconFgSelected, point(1px, 4px) }};
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
| 
						 | 
				
			
			@ -133,6 +133,72 @@ ChatStyle::ChatStyle() {
 | 
			
		|||
	make(_videoIcon, st::videoIcon);
 | 
			
		||||
	make(_historyPollChoiceRight, st::historyPollChoiceRight);
 | 
			
		||||
	make(_historyPollChoiceWrong, st::historyPollChoiceWrong);
 | 
			
		||||
	make(_msgNameChat1Icon, st::msgNameChat1Icon);
 | 
			
		||||
	make(_msgNameChat1IconSelected, st::msgNameChat1IconSelected);
 | 
			
		||||
	make(_msgNameChat2Icon, st::msgNameChat2Icon);
 | 
			
		||||
	make(_msgNameChat2IconSelected, st::msgNameChat2IconSelected);
 | 
			
		||||
	make(_msgNameChat3Icon, st::msgNameChat3Icon);
 | 
			
		||||
	make(_msgNameChat3IconSelected, st::msgNameChat3IconSelected);
 | 
			
		||||
	make(_msgNameChat4Icon, st::msgNameChat4Icon);
 | 
			
		||||
	make(_msgNameChat4IconSelected, st::msgNameChat4IconSelected);
 | 
			
		||||
	make(_msgNameChat5Icon, st::msgNameChat5Icon);
 | 
			
		||||
	make(_msgNameChat5IconSelected, st::msgNameChat5IconSelected);
 | 
			
		||||
	make(_msgNameChat6Icon, st::msgNameChat6Icon);
 | 
			
		||||
	make(_msgNameChat6IconSelected, st::msgNameChat6IconSelected);
 | 
			
		||||
	make(_msgNameChat7Icon, st::msgNameChat7Icon);
 | 
			
		||||
	make(_msgNameChat7IconSelected, st::msgNameChat7IconSelected);
 | 
			
		||||
	make(_msgNameChat8Icon, st::msgNameChat8Icon);
 | 
			
		||||
	make(_msgNameChat8IconSelected, st::msgNameChat8IconSelected);
 | 
			
		||||
	make(_msgNameChannel1Icon, st::msgNameChannel1Icon);
 | 
			
		||||
	make(_msgNameChannel1IconSelected, st::msgNameChannel1IconSelected);
 | 
			
		||||
	make(_msgNameChannel2Icon, st::msgNameChannel2Icon);
 | 
			
		||||
	make(_msgNameChannel2IconSelected, st::msgNameChannel2IconSelected);
 | 
			
		||||
	make(_msgNameChannel3Icon, st::msgNameChannel3Icon);
 | 
			
		||||
	make(_msgNameChannel3IconSelected, st::msgNameChannel3IconSelected);
 | 
			
		||||
	make(_msgNameChannel4Icon, st::msgNameChannel4Icon);
 | 
			
		||||
	make(_msgNameChannel4IconSelected, st::msgNameChannel4IconSelected);
 | 
			
		||||
	make(_msgNameChannel5Icon, st::msgNameChannel5Icon);
 | 
			
		||||
	make(_msgNameChannel5IconSelected, st::msgNameChannel5IconSelected);
 | 
			
		||||
	make(_msgNameChannel6Icon, st::msgNameChannel6Icon);
 | 
			
		||||
	make(_msgNameChannel6IconSelected, st::msgNameChannel6IconSelected);
 | 
			
		||||
	make(_msgNameChannel7Icon, st::msgNameChannel7Icon);
 | 
			
		||||
	make(_msgNameChannel7IconSelected, st::msgNameChannel7IconSelected);
 | 
			
		||||
	make(_msgNameChannel8Icon, st::msgNameChannel8Icon);
 | 
			
		||||
	make(_msgNameChannel8IconSelected, st::msgNameChannel8IconSelected);
 | 
			
		||||
	make(_msgNameBot1Icon, st::msgNameBot1Icon);
 | 
			
		||||
	make(_msgNameBot1IconSelected, st::msgNameBot1IconSelected);
 | 
			
		||||
	make(_msgNameBot2Icon, st::msgNameBot2Icon);
 | 
			
		||||
	make(_msgNameBot2IconSelected, st::msgNameBot2IconSelected);
 | 
			
		||||
	make(_msgNameBot3Icon, st::msgNameBot3Icon);
 | 
			
		||||
	make(_msgNameBot3IconSelected, st::msgNameBot3IconSelected);
 | 
			
		||||
	make(_msgNameBot4Icon, st::msgNameBot4Icon);
 | 
			
		||||
	make(_msgNameBot4IconSelected, st::msgNameBot4IconSelected);
 | 
			
		||||
	make(_msgNameBot5Icon, st::msgNameBot5Icon);
 | 
			
		||||
	make(_msgNameBot5IconSelected, st::msgNameBot5IconSelected);
 | 
			
		||||
	make(_msgNameBot6Icon, st::msgNameBot6Icon);
 | 
			
		||||
	make(_msgNameBot6IconSelected, st::msgNameBot6IconSelected);
 | 
			
		||||
	make(_msgNameBot7Icon, st::msgNameBot7Icon);
 | 
			
		||||
	make(_msgNameBot7IconSelected, st::msgNameBot7IconSelected);
 | 
			
		||||
	make(_msgNameBot8Icon, st::msgNameBot8Icon);
 | 
			
		||||
	make(_msgNameBot8IconSelected, st::msgNameBot8IconSelected);
 | 
			
		||||
	make(_msgNameDeleted1Icon, st::msgNameDeleted1Icon);
 | 
			
		||||
	make(_msgNameDeleted1IconSelected, st::msgNameDeleted1IconSelected);
 | 
			
		||||
	make(_msgNameDeleted2Icon, st::msgNameDeleted2Icon);
 | 
			
		||||
	make(_msgNameDeleted2IconSelected, st::msgNameDeleted2IconSelected);
 | 
			
		||||
	make(_msgNameDeleted3Icon, st::msgNameDeleted3Icon);
 | 
			
		||||
	make(_msgNameDeleted3IconSelected, st::msgNameDeleted3IconSelected);
 | 
			
		||||
	make(_msgNameDeleted4Icon, st::msgNameDeleted4Icon);
 | 
			
		||||
	make(_msgNameDeleted4IconSelected, st::msgNameDeleted4IconSelected);
 | 
			
		||||
	make(_msgNameDeleted5Icon, st::msgNameDeleted5Icon);
 | 
			
		||||
	make(_msgNameDeleted5IconSelected, st::msgNameDeleted5IconSelected);
 | 
			
		||||
	make(_msgNameDeleted6Icon, st::msgNameDeleted6Icon);
 | 
			
		||||
	make(_msgNameDeleted6IconSelected, st::msgNameDeleted6IconSelected);
 | 
			
		||||
	make(_msgNameDeleted7Icon, st::msgNameDeleted7Icon);
 | 
			
		||||
	make(_msgNameDeleted7IconSelected, st::msgNameDeleted7IconSelected);
 | 
			
		||||
	make(_msgNameDeleted8Icon, st::msgNameDeleted8Icon);
 | 
			
		||||
	make(_msgNameDeleted8IconSelected, st::msgNameDeleted8IconSelected);
 | 
			
		||||
	make(_msgNameSponsoredIcon, st::msgNameSponsoredIcon);
 | 
			
		||||
	make(_msgNameSponsoredIconSelected, st::msgNameSponsoredIconSelected);
 | 
			
		||||
	make(
 | 
			
		||||
		&MessageStyle::msgBg,
 | 
			
		||||
		st::msgInBg,
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
| 
						 | 
				
			
			@ -251,6 +251,204 @@ public:
 | 
			
		|||
	[[nodiscard]] const style::icon &historyPollChoiceWrong() const {
 | 
			
		||||
		return _historyPollChoiceWrong;
 | 
			
		||||
	}
 | 
			
		||||
	[[nodiscard]] const style::icon &msgNameChat1Icon() const {
 | 
			
		||||
		return _msgNameChat1Icon;
 | 
			
		||||
	}
 | 
			
		||||
	[[nodiscard]] const style::icon &msgNameChat1IconSelected() const {
 | 
			
		||||
		return _msgNameChat1IconSelected;
 | 
			
		||||
	}
 | 
			
		||||
	[[nodiscard]] const style::icon &msgNameChat2Icon() const {
 | 
			
		||||
		return _msgNameChat2Icon;
 | 
			
		||||
	}
 | 
			
		||||
	[[nodiscard]] const style::icon &msgNameChat2IconSelected() const {
 | 
			
		||||
		return _msgNameChat2IconSelected;
 | 
			
		||||
	}
 | 
			
		||||
	[[nodiscard]] const style::icon &msgNameChat3Icon() const {
 | 
			
		||||
		return _msgNameChat3Icon;
 | 
			
		||||
	}
 | 
			
		||||
	[[nodiscard]] const style::icon &msgNameChat3IconSelected() const {
 | 
			
		||||
		return _msgNameChat3IconSelected;
 | 
			
		||||
	}
 | 
			
		||||
	[[nodiscard]] const style::icon &msgNameChat4Icon() const {
 | 
			
		||||
		return _msgNameChat4Icon;
 | 
			
		||||
	}
 | 
			
		||||
	[[nodiscard]] const style::icon &msgNameChat4IconSelected() const {
 | 
			
		||||
		return _msgNameChat4IconSelected;
 | 
			
		||||
	}
 | 
			
		||||
	[[nodiscard]] const style::icon &msgNameChat5Icon() const {
 | 
			
		||||
		return _msgNameChat5Icon;
 | 
			
		||||
	}
 | 
			
		||||
	[[nodiscard]] const style::icon &msgNameChat5IconSelected() const {
 | 
			
		||||
		return _msgNameChat5IconSelected;
 | 
			
		||||
	}
 | 
			
		||||
	[[nodiscard]] const style::icon &msgNameChat6Icon() const {
 | 
			
		||||
		return _msgNameChat6Icon;
 | 
			
		||||
	}
 | 
			
		||||
	[[nodiscard]] const style::icon &msgNameChat6IconSelected() const {
 | 
			
		||||
		return _msgNameChat6IconSelected;
 | 
			
		||||
	}
 | 
			
		||||
	[[nodiscard]] const style::icon &msgNameChat7Icon() const {
 | 
			
		||||
		return _msgNameChat7Icon;
 | 
			
		||||
	}
 | 
			
		||||
	[[nodiscard]] const style::icon &msgNameChat7IconSelected() const {
 | 
			
		||||
		return _msgNameChat7IconSelected;
 | 
			
		||||
	}
 | 
			
		||||
	[[nodiscard]] const style::icon &msgNameChat8Icon() const {
 | 
			
		||||
		return _msgNameChat8Icon;
 | 
			
		||||
	}
 | 
			
		||||
	[[nodiscard]] const style::icon &msgNameChat8IconSelected() const {
 | 
			
		||||
		return _msgNameChat8IconSelected;
 | 
			
		||||
	}
 | 
			
		||||
	[[nodiscard]] const style::icon &msgNameChannel1Icon() const {
 | 
			
		||||
		return _msgNameChannel1Icon;
 | 
			
		||||
	}
 | 
			
		||||
	[[nodiscard]] const style::icon &msgNameChannel1IconSelected() const {
 | 
			
		||||
		return _msgNameChannel1IconSelected;
 | 
			
		||||
	}
 | 
			
		||||
	[[nodiscard]] const style::icon &msgNameChannel2Icon() const {
 | 
			
		||||
		return _msgNameChannel2Icon;
 | 
			
		||||
	}
 | 
			
		||||
	[[nodiscard]] const style::icon &msgNameChannel2IconSelected() const {
 | 
			
		||||
		return _msgNameChannel2IconSelected;
 | 
			
		||||
	}
 | 
			
		||||
	[[nodiscard]] const style::icon &msgNameChannel3Icon() const {
 | 
			
		||||
		return _msgNameChannel3Icon;
 | 
			
		||||
	}
 | 
			
		||||
	[[nodiscard]] const style::icon &msgNameChannel3IconSelected() const {
 | 
			
		||||
		return _msgNameChannel3IconSelected;
 | 
			
		||||
	}
 | 
			
		||||
	[[nodiscard]] const style::icon &msgNameChannel4Icon() const {
 | 
			
		||||
		return _msgNameChannel4Icon;
 | 
			
		||||
	}
 | 
			
		||||
	[[nodiscard]] const style::icon &msgNameChannel4IconSelected() const {
 | 
			
		||||
		return _msgNameChannel4IconSelected;
 | 
			
		||||
	}
 | 
			
		||||
	[[nodiscard]] const style::icon &msgNameChannel5Icon() const {
 | 
			
		||||
		return _msgNameChannel5Icon;
 | 
			
		||||
	}
 | 
			
		||||
	[[nodiscard]] const style::icon &msgNameChannel5IconSelected() const {
 | 
			
		||||
		return _msgNameChannel5IconSelected;
 | 
			
		||||
	}
 | 
			
		||||
	[[nodiscard]] const style::icon &msgNameChannel6Icon() const {
 | 
			
		||||
		return _msgNameChannel6Icon;
 | 
			
		||||
	}
 | 
			
		||||
	[[nodiscard]] const style::icon &msgNameChannel6IconSelected() const {
 | 
			
		||||
		return _msgNameChannel6IconSelected;
 | 
			
		||||
	}
 | 
			
		||||
	[[nodiscard]] const style::icon &msgNameChannel7Icon() const {
 | 
			
		||||
		return _msgNameChannel7Icon;
 | 
			
		||||
	}
 | 
			
		||||
	[[nodiscard]] const style::icon &msgNameChannel7IconSelected() const {
 | 
			
		||||
		return _msgNameChannel7IconSelected;
 | 
			
		||||
	}
 | 
			
		||||
	[[nodiscard]] const style::icon &msgNameChannel8Icon() const {
 | 
			
		||||
		return _msgNameChannel8Icon;
 | 
			
		||||
	}
 | 
			
		||||
	[[nodiscard]] const style::icon &msgNameChannel8IconSelected() const {
 | 
			
		||||
		return _msgNameChannel8IconSelected;
 | 
			
		||||
	}
 | 
			
		||||
	[[nodiscard]] const style::icon &msgNameBot1Icon() const {
 | 
			
		||||
		return _msgNameBot1Icon;
 | 
			
		||||
	}
 | 
			
		||||
	[[nodiscard]] const style::icon &msgNameBot1IconSelected() const {
 | 
			
		||||
		return _msgNameBot1IconSelected;
 | 
			
		||||
	}
 | 
			
		||||
	[[nodiscard]] const style::icon &msgNameBot2Icon() const {
 | 
			
		||||
		return _msgNameBot2Icon;
 | 
			
		||||
	}
 | 
			
		||||
	[[nodiscard]] const style::icon &msgNameBot2IconSelected() const {
 | 
			
		||||
		return _msgNameBot2IconSelected;
 | 
			
		||||
	}
 | 
			
		||||
	[[nodiscard]] const style::icon &msgNameBot3Icon() const {
 | 
			
		||||
		return _msgNameBot3Icon;
 | 
			
		||||
	}
 | 
			
		||||
	[[nodiscard]] const style::icon &msgNameBot3IconSelected() const {
 | 
			
		||||
		return _msgNameBot3IconSelected;
 | 
			
		||||
	}
 | 
			
		||||
	[[nodiscard]] const style::icon &msgNameBot4Icon() const {
 | 
			
		||||
		return _msgNameBot4Icon;
 | 
			
		||||
	}
 | 
			
		||||
	[[nodiscard]] const style::icon &msgNameBot4IconSelected() const {
 | 
			
		||||
		return _msgNameBot4IconSelected;
 | 
			
		||||
	}
 | 
			
		||||
	[[nodiscard]] const style::icon &msgNameBot5Icon() const {
 | 
			
		||||
		return _msgNameBot5Icon;
 | 
			
		||||
	}
 | 
			
		||||
	[[nodiscard]] const style::icon &msgNameBot5IconSelected() const {
 | 
			
		||||
		return _msgNameBot5IconSelected;
 | 
			
		||||
	}
 | 
			
		||||
	[[nodiscard]] const style::icon &msgNameBot6Icon() const {
 | 
			
		||||
		return _msgNameBot6Icon;
 | 
			
		||||
	}
 | 
			
		||||
	[[nodiscard]] const style::icon &msgNameBot6IconSelected() const {
 | 
			
		||||
		return _msgNameBot6IconSelected;
 | 
			
		||||
	}
 | 
			
		||||
	[[nodiscard]] const style::icon &msgNameBot7Icon() const {
 | 
			
		||||
		return _msgNameBot7Icon;
 | 
			
		||||
	}
 | 
			
		||||
	[[nodiscard]] const style::icon &msgNameBot7IconSelected() const {
 | 
			
		||||
		return _msgNameBot7IconSelected;
 | 
			
		||||
	}
 | 
			
		||||
	[[nodiscard]] const style::icon &msgNameBot8Icon() const {
 | 
			
		||||
		return _msgNameBot8Icon;
 | 
			
		||||
	}
 | 
			
		||||
	[[nodiscard]] const style::icon &msgNameBot8IconSelected() const {
 | 
			
		||||
		return _msgNameBot8IconSelected;
 | 
			
		||||
	}
 | 
			
		||||
	[[nodiscard]] const style::icon &msgNameDeleted1Icon() const {
 | 
			
		||||
		return _msgNameDeleted1Icon;
 | 
			
		||||
	}
 | 
			
		||||
	[[nodiscard]] const style::icon &msgNameDeleted1IconSelected() const {
 | 
			
		||||
		return _msgNameDeleted1IconSelected;
 | 
			
		||||
	}
 | 
			
		||||
	[[nodiscard]] const style::icon &msgNameDeleted2Icon() const {
 | 
			
		||||
		return _msgNameDeleted2Icon;
 | 
			
		||||
	}
 | 
			
		||||
	[[nodiscard]] const style::icon &msgNameDeleted2IconSelected() const {
 | 
			
		||||
		return _msgNameDeleted2IconSelected;
 | 
			
		||||
	}
 | 
			
		||||
	[[nodiscard]] const style::icon &msgNameDeleted3Icon() const {
 | 
			
		||||
		return _msgNameDeleted3Icon;
 | 
			
		||||
	}
 | 
			
		||||
	[[nodiscard]] const style::icon &msgNameDeleted3IconSelected() const {
 | 
			
		||||
		return _msgNameDeleted3IconSelected;
 | 
			
		||||
	}
 | 
			
		||||
	[[nodiscard]] const style::icon &msgNameDeleted4Icon() const {
 | 
			
		||||
		return _msgNameDeleted4Icon;
 | 
			
		||||
	}
 | 
			
		||||
	[[nodiscard]] const style::icon &msgNameDeleted4IconSelected() const {
 | 
			
		||||
		return _msgNameDeleted4IconSelected;
 | 
			
		||||
	}
 | 
			
		||||
	[[nodiscard]] const style::icon &msgNameDeleted5Icon() const {
 | 
			
		||||
		return _msgNameDeleted5Icon;
 | 
			
		||||
	}
 | 
			
		||||
	[[nodiscard]] const style::icon &msgNameDeleted5IconSelected() const {
 | 
			
		||||
		return _msgNameDeleted5IconSelected;
 | 
			
		||||
	}
 | 
			
		||||
	[[nodiscard]] const style::icon &msgNameDeleted6Icon() const {
 | 
			
		||||
		return _msgNameDeleted6Icon;
 | 
			
		||||
	}
 | 
			
		||||
	[[nodiscard]] const style::icon &msgNameDeleted6IconSelected() const {
 | 
			
		||||
		return _msgNameDeleted6IconSelected;
 | 
			
		||||
	}
 | 
			
		||||
	[[nodiscard]] const style::icon &msgNameDeleted7Icon() const {
 | 
			
		||||
		return _msgNameDeleted7Icon;
 | 
			
		||||
	}
 | 
			
		||||
	[[nodiscard]] const style::icon &msgNameDeleted7IconSelected() const {
 | 
			
		||||
		return _msgNameDeleted7IconSelected;
 | 
			
		||||
	}
 | 
			
		||||
	[[nodiscard]] const style::icon &msgNameDeleted8Icon() const {
 | 
			
		||||
		return _msgNameDeleted8Icon;
 | 
			
		||||
	}
 | 
			
		||||
	[[nodiscard]] const style::icon &msgNameDeleted8IconSelected() const {
 | 
			
		||||
		return _msgNameDeleted8IconSelected;
 | 
			
		||||
	}
 | 
			
		||||
	[[nodiscard]] const style::icon &msgNameSponsoredIcon() const {
 | 
			
		||||
		return _msgNameSponsoredIcon;
 | 
			
		||||
	}
 | 
			
		||||
	[[nodiscard]] const style::icon &msgNameSponsoredIconSelected() const {
 | 
			
		||||
		return _msgNameSponsoredIconSelected;
 | 
			
		||||
	}
 | 
			
		||||
 | 
			
		||||
private:
 | 
			
		||||
	void assignPalette(not_null<const style::palette*> palette);
 | 
			
		||||
| 
						 | 
				
			
			@ -327,6 +525,72 @@ private:
 | 
			
		|||
	style::icon _videoIcon = { Qt::Uninitialized };
 | 
			
		||||
	style::icon _historyPollChoiceRight = { Qt::Uninitialized };
 | 
			
		||||
	style::icon _historyPollChoiceWrong = { Qt::Uninitialized };
 | 
			
		||||
	style::icon _msgNameChat1Icon = { Qt::Uninitialized };
 | 
			
		||||
	style::icon _msgNameChat1IconSelected = { Qt::Uninitialized };
 | 
			
		||||
	style::icon _msgNameChat2Icon = { Qt::Uninitialized };
 | 
			
		||||
	style::icon _msgNameChat2IconSelected = { Qt::Uninitialized };
 | 
			
		||||
	style::icon _msgNameChat3Icon = { Qt::Uninitialized };
 | 
			
		||||
	style::icon _msgNameChat3IconSelected = { Qt::Uninitialized };
 | 
			
		||||
	style::icon _msgNameChat4Icon = { Qt::Uninitialized };
 | 
			
		||||
	style::icon _msgNameChat4IconSelected = { Qt::Uninitialized };
 | 
			
		||||
	style::icon _msgNameChat5Icon = { Qt::Uninitialized };
 | 
			
		||||
	style::icon _msgNameChat5IconSelected = { Qt::Uninitialized };
 | 
			
		||||
	style::icon _msgNameChat6Icon = { Qt::Uninitialized };
 | 
			
		||||
	style::icon _msgNameChat6IconSelected = { Qt::Uninitialized };
 | 
			
		||||
	style::icon _msgNameChat7Icon = { Qt::Uninitialized };
 | 
			
		||||
	style::icon _msgNameChat7IconSelected = { Qt::Uninitialized };
 | 
			
		||||
	style::icon _msgNameChat8Icon = { Qt::Uninitialized };
 | 
			
		||||
	style::icon _msgNameChat8IconSelected = { Qt::Uninitialized };
 | 
			
		||||
	style::icon _msgNameChannel1Icon = { Qt::Uninitialized };
 | 
			
		||||
	style::icon _msgNameChannel1IconSelected = { Qt::Uninitialized };
 | 
			
		||||
	style::icon _msgNameChannel2Icon = { Qt::Uninitialized };
 | 
			
		||||
	style::icon _msgNameChannel2IconSelected = { Qt::Uninitialized };
 | 
			
		||||
	style::icon _msgNameChannel3Icon = { Qt::Uninitialized };
 | 
			
		||||
	style::icon _msgNameChannel3IconSelected = { Qt::Uninitialized };
 | 
			
		||||
	style::icon _msgNameChannel4Icon = { Qt::Uninitialized };
 | 
			
		||||
	style::icon _msgNameChannel4IconSelected = { Qt::Uninitialized };
 | 
			
		||||
	style::icon _msgNameChannel5Icon = { Qt::Uninitialized };
 | 
			
		||||
	style::icon _msgNameChannel5IconSelected = { Qt::Uninitialized };
 | 
			
		||||
	style::icon _msgNameChannel6Icon = { Qt::Uninitialized };
 | 
			
		||||
	style::icon _msgNameChannel6IconSelected = { Qt::Uninitialized };
 | 
			
		||||
	style::icon _msgNameChannel7Icon = { Qt::Uninitialized };
 | 
			
		||||
	style::icon _msgNameChannel7IconSelected = { Qt::Uninitialized };
 | 
			
		||||
	style::icon _msgNameChannel8Icon = { Qt::Uninitialized };
 | 
			
		||||
	style::icon _msgNameChannel8IconSelected = { Qt::Uninitialized };
 | 
			
		||||
	style::icon _msgNameBot1Icon = { Qt::Uninitialized };
 | 
			
		||||
	style::icon _msgNameBot1IconSelected = { Qt::Uninitialized };
 | 
			
		||||
	style::icon _msgNameBot2Icon = { Qt::Uninitialized };
 | 
			
		||||
	style::icon _msgNameBot2IconSelected = { Qt::Uninitialized };
 | 
			
		||||
	style::icon _msgNameBot3Icon = { Qt::Uninitialized };
 | 
			
		||||
	style::icon _msgNameBot3IconSelected = { Qt::Uninitialized };
 | 
			
		||||
	style::icon _msgNameBot4Icon = { Qt::Uninitialized };
 | 
			
		||||
	style::icon _msgNameBot4IconSelected = { Qt::Uninitialized };
 | 
			
		||||
	style::icon _msgNameBot5Icon = { Qt::Uninitialized };
 | 
			
		||||
	style::icon _msgNameBot5IconSelected = { Qt::Uninitialized };
 | 
			
		||||
	style::icon _msgNameBot6Icon = { Qt::Uninitialized };
 | 
			
		||||
	style::icon _msgNameBot6IconSelected = { Qt::Uninitialized };
 | 
			
		||||
	style::icon _msgNameBot7Icon = { Qt::Uninitialized };
 | 
			
		||||
	style::icon _msgNameBot7IconSelected = { Qt::Uninitialized };
 | 
			
		||||
	style::icon _msgNameBot8Icon = { Qt::Uninitialized };
 | 
			
		||||
	style::icon _msgNameBot8IconSelected = { Qt::Uninitialized };
 | 
			
		||||
	style::icon _msgNameDeleted1Icon = { Qt::Uninitialized };
 | 
			
		||||
	style::icon _msgNameDeleted1IconSelected = { Qt::Uninitialized };
 | 
			
		||||
	style::icon _msgNameDeleted2Icon = { Qt::Uninitialized };
 | 
			
		||||
	style::icon _msgNameDeleted2IconSelected = { Qt::Uninitialized };
 | 
			
		||||
	style::icon _msgNameDeleted3Icon = { Qt::Uninitialized };
 | 
			
		||||
	style::icon _msgNameDeleted3IconSelected = { Qt::Uninitialized };
 | 
			
		||||
	style::icon _msgNameDeleted4Icon = { Qt::Uninitialized };
 | 
			
		||||
	style::icon _msgNameDeleted4IconSelected = { Qt::Uninitialized };
 | 
			
		||||
	style::icon _msgNameDeleted5Icon = { Qt::Uninitialized };
 | 
			
		||||
	style::icon _msgNameDeleted5IconSelected = { Qt::Uninitialized };
 | 
			
		||||
	style::icon _msgNameDeleted6Icon = { Qt::Uninitialized };
 | 
			
		||||
	style::icon _msgNameDeleted6IconSelected = { Qt::Uninitialized };
 | 
			
		||||
	style::icon _msgNameDeleted7Icon = { Qt::Uninitialized };
 | 
			
		||||
	style::icon _msgNameDeleted7IconSelected = { Qt::Uninitialized };
 | 
			
		||||
	style::icon _msgNameDeleted8Icon = { Qt::Uninitialized };
 | 
			
		||||
	style::icon _msgNameDeleted8IconSelected = { Qt::Uninitialized };
 | 
			
		||||
	style::icon _msgNameSponsoredIcon = { Qt::Uninitialized };
 | 
			
		||||
	style::icon _msgNameSponsoredIconSelected = { Qt::Uninitialized };
 | 
			
		||||
 | 
			
		||||
	rpl::event_stream<> _paletteChanged;
 | 
			
		||||
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
| 
						 | 
				
			
			@ -1 +1 @@
 | 
			
		|||
Subproject commit bbd3af01c98da737ef9585600eb871c810964948
 | 
			
		||||
Subproject commit b44b69ef0823479a5cae8d0c6e675ed042d74825
 | 
			
		||||
		Loading…
	
	Add table
		
		Reference in a new issue