tdesktop/Telegram/SourceFiles/info/profile/info_profile_values.h

91 lines
2.3 KiB
C
Raw Normal View History

/*
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 : 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);
2017-11-10 17:51:59 +00:00
rpl::producer<QString> LinkValue(
not_null<PeerData*> peer);
rpl::producer<bool> NotificationsEnabledValue(
not_null<PeerData*> peer);
rpl::producer<bool> IsContactValue(
not_null<UserData*> user);
2017-11-07 11:53:05 +00:00
rpl::producer<bool> CanInviteBotToGroupValue(
not_null<UserData*> user);
rpl::producer<bool> CanShareContactValue(
not_null<UserData*> user);
rpl::producer<bool> CanAddContactValue(
not_null<UserData*> user);
2017-11-07 11:53:05 +00:00
rpl::producer<bool> AmInChannelValue(
not_null<ChannelData*> channel);
rpl::producer<int> MembersCountValue(
not_null<PeerData*> peer);
2017-11-08 16:45:30 +00:00
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);
2017-09-25 16:06:53 +00:00
rpl::producer<bool> CanAddMemberValue(
not_null<PeerData*> peer);
2017-11-06 14:13:56 +00:00
rpl::producer<bool> VerifiedValue(
not_null<PeerData*> peer);
rpl::producer<int> FeedChannelsCountValue(
not_null<Data::Feed*> feed);
} // namespace Profile
} // namespace Info