2017-09-25 09:02:55 +00:00
|
|
|
/*
|
|
|
|
This file is part of Telegram Desktop,
|
|
|
|
the official desktop version of Telegram messaging app, see https://telegram.org
|
|
|
|
|
|
|
|
Telegram Desktop is free software: you can redistribute it and/or modify
|
|
|
|
it under the terms of the GNU General Public License as published by
|
|
|
|
the Free Software Foundation, either version 3 of the License, or
|
|
|
|
(at your option) any later version.
|
|
|
|
|
|
|
|
It is distributed in the hope that it will be useful,
|
|
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
GNU General Public License for more details.
|
|
|
|
|
|
|
|
In addition, as a special exception, the copyright holders give permission
|
|
|
|
to link the code of portions of this program with the OpenSSL library.
|
|
|
|
|
|
|
|
Full license: https://github.com/telegramdesktop/tdesktop/blob/master/LICENSE
|
|
|
|
Copyright (c) 2014-2017 John Preston, https://desktop.telegram.org
|
|
|
|
*/
|
|
|
|
#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 Info {
|
|
|
|
namespace Profile {
|
|
|
|
|
2017-11-07 07:21:48 +00:00
|
|
|
inline auto ToSingleLine() {
|
|
|
|
return rpl::map([](const QString &text) {
|
|
|
|
return TextUtilities::SingleLine(text);
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2017-09-25 09:02:55 +00:00
|
|
|
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(
|
2017-09-25 09:02:55 +00:00
|
|
|
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);
|
2017-09-25 09:02:55 +00:00
|
|
|
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);
|
2017-09-25 09:02:55 +00:00
|
|
|
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);
|
2017-09-25 09:02:55 +00:00
|
|
|
rpl::producer<int> SharedMediaCountValue(
|
|
|
|
not_null<PeerData*> peer,
|
2017-10-31 18:25:22 +00:00
|
|
|
PeerData *migrated,
|
2017-09-25 09:02:55 +00:00
|
|
|
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);
|
2017-09-25 09:02:55 +00:00
|
|
|
|
|
|
|
} // namespace Profile
|
|
|
|
} // namespace Info
|