91 lines
2.4 KiB
C++
91 lines
2.4 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>
|
|
#include "observer_peer.h"
|
|
|
|
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);
|
|
});
|
|
}
|
|
|
|
inline auto WithEmptyEntities() {
|
|
return rpl::map([](QString &&text) {
|
|
return TextWithEntities{ std::move(text), {} };
|
|
});
|
|
}
|
|
|
|
inline auto ToUpperValue() {
|
|
return rpl::map([](QString &&text) {
|
|
return std::move(text).toUpper();
|
|
});
|
|
}
|
|
|
|
rpl::producer<TextWithEntities> PhoneValue(
|
|
not_null<UserData*> user);
|
|
rpl::producer<TextWithEntities> BioValue(
|
|
not_null<UserData*> user);
|
|
rpl::producer<TextWithEntities> UsernameValue(
|
|
not_null<UserData*> user);
|
|
rpl::producer<TextWithEntities> AboutValue(
|
|
not_null<PeerData*> peer);
|
|
rpl::producer<QString> LinkValue(
|
|
not_null<PeerData*> peer);
|
|
rpl::producer<bool> NotificationsEnabledValue(
|
|
not_null<PeerData*> peer);
|
|
rpl::producer<bool> IsContactValue(
|
|
not_null<UserData*> user);
|
|
rpl::producer<bool> CanInviteBotToGroupValue(
|
|
not_null<UserData*> user);
|
|
rpl::producer<bool> CanShareContactValue(
|
|
not_null<UserData*> user);
|
|
rpl::producer<bool> CanAddContactValue(
|
|
not_null<UserData*> user);
|
|
rpl::producer<bool> AmInChannelValue(
|
|
not_null<ChannelData*> channel);
|
|
rpl::producer<int> MembersCountValue(
|
|
not_null<PeerData*> peer);
|
|
rpl::producer<int> AdminsCountValue(
|
|
not_null<ChannelData*> channel);
|
|
rpl::producer<int> RestrictedCountValue(
|
|
not_null<ChannelData*> channel);
|
|
rpl::producer<int> KickedCountValue(
|
|
not_null<ChannelData*> channel);
|
|
rpl::producer<int> SharedMediaCountValue(
|
|
not_null<PeerData*> peer,
|
|
PeerData *migrated,
|
|
Storage::SharedMediaType type);
|
|
rpl::producer<int> CommonGroupsCountValue(
|
|
not_null<UserData*> user);
|
|
rpl::producer<bool> CanAddMemberValue(
|
|
not_null<PeerData*> peer);
|
|
rpl::producer<bool> VerifiedValue(
|
|
not_null<PeerData*> peer);
|
|
|
|
rpl::producer<int> FeedChannelsCountValue(
|
|
not_null<Data::Feed*> feed);
|
|
|
|
} // namespace Profile
|
|
} // namespace Info
|