103 lines
		
	
	
	
		
			3.2 KiB
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			103 lines
		
	
	
	
		
			3.2 KiB
		
	
	
	
		
			C++
		
	
	
	
	
	
/*
 | 
						|
This file is part of Telegram Desktop,
 | 
						|
the official desktop application for the Telegram messaging service.
 | 
						|
 | 
						|
For license and copyright information please follow this link:
 | 
						|
https://github.com/telegramdesktop/tdesktop/blob/master/LEGAL
 | 
						|
*/
 | 
						|
#pragma once
 | 
						|
 | 
						|
#include <rpl/producer.h>
 | 
						|
#include <rpl/map.h>
 | 
						|
 | 
						|
struct ChannelLocation;
 | 
						|
 | 
						|
namespace Main {
 | 
						|
class Session;
 | 
						|
} // namespace Main
 | 
						|
 | 
						|
namespace Ui {
 | 
						|
class RpWidget;
 | 
						|
template <typename Widget>
 | 
						|
class SlideWrap;
 | 
						|
} // namespace Ui
 | 
						|
 | 
						|
namespace Storage {
 | 
						|
enum class SharedMediaType : signed char;
 | 
						|
} // namespace Storage
 | 
						|
 | 
						|
namespace Info {
 | 
						|
namespace Profile {
 | 
						|
 | 
						|
inline auto ToSingleLine() {
 | 
						|
	return rpl::map([](const QString &text) {
 | 
						|
		return TextUtilities::SingleLine(text);
 | 
						|
	});
 | 
						|
}
 | 
						|
 | 
						|
rpl::producer<not_null<PeerData*>> MigratedOrMeValue(
 | 
						|
	not_null<PeerData*> peer);
 | 
						|
 | 
						|
[[nodiscard]] rpl::producer<TextWithEntities> NameValue(
 | 
						|
	not_null<PeerData*> peer);
 | 
						|
[[nodiscard]] rpl::producer<TextWithEntities> PhoneValue(
 | 
						|
	not_null<UserData*> user);
 | 
						|
[[nodiscard]] rpl::producer<TextWithEntities> PhoneOrHiddenValue(
 | 
						|
	not_null<UserData*> user);
 | 
						|
[[nodiscard]] rpl::producer<TextWithEntities> UsernameValue(
 | 
						|
	not_null<UserData*> user);
 | 
						|
[[nodiscard]] TextWithEntities AboutWithEntities(
 | 
						|
	not_null<PeerData*> peer,
 | 
						|
	const QString &value);
 | 
						|
[[nodiscard]] rpl::producer<TextWithEntities> AboutValue(
 | 
						|
	not_null<PeerData*> peer);
 | 
						|
[[nodiscard]] rpl::producer<QString> LinkValue(not_null<PeerData*> peer);
 | 
						|
[[nodiscard]] rpl::producer<const ChannelLocation*> LocationValue(
 | 
						|
	not_null<ChannelData*> channel);
 | 
						|
[[nodiscard]] rpl::producer<bool> NotificationsEnabledValue(
 | 
						|
	not_null<PeerData*> peer);
 | 
						|
[[nodiscard]] rpl::producer<bool> IsContactValue(not_null<UserData*> user);
 | 
						|
[[nodiscard]] rpl::producer<QString> InviteToChatButton(
 | 
						|
	not_null<UserData*> user);
 | 
						|
[[nodiscard]] rpl::producer<QString> InviteToChatAbout(
 | 
						|
	not_null<UserData*> user);
 | 
						|
[[nodiscard]] rpl::producer<bool> CanShareContactValue(
 | 
						|
	not_null<UserData*> user);
 | 
						|
[[nodiscard]] rpl::producer<bool> CanAddContactValue(
 | 
						|
	not_null<UserData*> user);
 | 
						|
[[nodiscard]] rpl::producer<bool> AmInChannelValue(
 | 
						|
	not_null<ChannelData*> channel);
 | 
						|
[[nodiscard]] rpl::producer<int> MembersCountValue(not_null<PeerData*> peer);
 | 
						|
[[nodiscard]] rpl::producer<int> PendingRequestsCountValue(
 | 
						|
	not_null<PeerData*> peer);
 | 
						|
[[nodiscard]] rpl::producer<int> AdminsCountValue(not_null<PeerData*> peer);
 | 
						|
[[nodiscard]] rpl::producer<int> RestrictionsCountValue(
 | 
						|
	not_null<PeerData*> peer);
 | 
						|
[[nodiscard]] rpl::producer<int> RestrictedCountValue(
 | 
						|
	not_null<ChannelData*> channel);
 | 
						|
[[nodiscard]] rpl::producer<int> KickedCountValue(
 | 
						|
	not_null<ChannelData*> channel);
 | 
						|
[[nodiscard]] rpl::producer<int> SharedMediaCountValue(
 | 
						|
	not_null<PeerData*> peer,
 | 
						|
	PeerData *migrated,
 | 
						|
	Storage::SharedMediaType type);
 | 
						|
[[nodiscard]] rpl::producer<int> CommonGroupsCountValue(
 | 
						|
	not_null<UserData*> user);
 | 
						|
[[nodiscard]] rpl::producer<bool> CanAddMemberValue(
 | 
						|
	not_null<PeerData*> peer);
 | 
						|
[[nodiscard]] rpl::producer<int> FullReactionsCountValue(
 | 
						|
	not_null<Main::Session*> peer);
 | 
						|
[[nodiscard]] rpl::producer<int> AllowedReactionsCountValue(
 | 
						|
	not_null<PeerData*> peer);
 | 
						|
 | 
						|
enum class Badge {
 | 
						|
	None,
 | 
						|
	Verified,
 | 
						|
	Premium,
 | 
						|
	Scam,
 | 
						|
	Fake,
 | 
						|
};
 | 
						|
[[nodiscard]] rpl::producer<Badge> BadgeValue(not_null<PeerData*> peer);
 | 
						|
 | 
						|
} // namespace Profile
 | 
						|
} // namespace Info
 |