2020-11-24 12:54:20 +00:00
|
|
|
/*
|
|
|
|
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
|
|
|
|
*/
|
|
|
|
#include "calls/calls_group_panel.h"
|
|
|
|
|
2020-11-25 14:09:59 +00:00
|
|
|
#include "calls/calls_group_members.h"
|
2020-11-28 14:07:36 +00:00
|
|
|
#include "calls/calls_group_settings.h"
|
2020-11-24 12:54:20 +00:00
|
|
|
#include "ui/widgets/buttons.h"
|
|
|
|
#include "ui/widgets/window.h"
|
2020-11-28 12:00:06 +00:00
|
|
|
#include "ui/widgets/call_button.h"
|
|
|
|
#include "ui/widgets/call_mute_button.h"
|
2020-11-28 14:07:36 +00:00
|
|
|
#include "ui/widgets/checkbox.h"
|
2020-11-27 14:50:41 +00:00
|
|
|
#include "ui/layers/layer_manager.h"
|
2020-11-28 14:07:36 +00:00
|
|
|
#include "ui/layers/generic_box.h"
|
2020-11-28 18:17:13 +00:00
|
|
|
#include "ui/text/text_utilities.h"
|
|
|
|
#include "ui/toast/toast.h"
|
2020-12-01 14:28:01 +00:00
|
|
|
#include "info/profile/info_profile_values.h" // Info::Profile::Value.
|
2020-11-24 12:54:20 +00:00
|
|
|
#include "core/application.h"
|
|
|
|
#include "lang/lang_keys.h"
|
2020-11-28 14:07:36 +00:00
|
|
|
#include "data/data_channel.h"
|
2020-11-28 18:17:13 +00:00
|
|
|
#include "data/data_user.h"
|
|
|
|
#include "data/data_group_call.h"
|
|
|
|
#include "data/data_session.h"
|
|
|
|
#include "main/main_session.h"
|
2020-11-25 14:09:59 +00:00
|
|
|
#include "base/event_filter.h"
|
2020-11-28 18:17:13 +00:00
|
|
|
#include "boxes/peers/edit_participants_box.h"
|
2020-11-24 12:54:20 +00:00
|
|
|
#include "app.h"
|
2020-11-30 11:31:32 +00:00
|
|
|
#include "apiwrap.h" // api().kickParticipant.
|
2020-11-24 12:54:20 +00:00
|
|
|
#include "styles/style_calls.h"
|
2020-11-28 14:07:36 +00:00
|
|
|
#include "styles/style_layers.h"
|
2020-11-24 12:54:20 +00:00
|
|
|
|
|
|
|
#ifdef Q_OS_WIN
|
|
|
|
#include "ui/platform/win/ui_window_title_win.h"
|
|
|
|
#endif // Q_OS_WIN
|
|
|
|
|
|
|
|
#include <QtWidgets/QDesktopWidget>
|
|
|
|
#include <QtWidgets/QApplication>
|
|
|
|
#include <QtGui/QWindow>
|
|
|
|
|
|
|
|
namespace Calls {
|
2020-11-28 18:17:13 +00:00
|
|
|
namespace {
|
|
|
|
|
|
|
|
class InviteController final : public ParticipantsBoxController {
|
|
|
|
public:
|
|
|
|
InviteController(
|
|
|
|
not_null<ChannelData*> channel,
|
|
|
|
base::flat_set<not_null<UserData*>> alreadyIn,
|
|
|
|
int fullInCount);
|
|
|
|
|
|
|
|
void prepare() override;
|
|
|
|
|
|
|
|
void rowClicked(not_null<PeerListRow*> row) override;
|
|
|
|
base::unique_qptr<Ui::PopupMenu> rowContextMenu(
|
|
|
|
QWidget *parent,
|
|
|
|
not_null<PeerListRow*> row) override;
|
|
|
|
|
|
|
|
void itemDeselectedHook(not_null<PeerData*> peer) override;
|
|
|
|
|
|
|
|
std::variant<int, not_null<UserData*>> inviteSelectedUsers(
|
|
|
|
not_null<PeerListBox*> box,
|
|
|
|
not_null<GroupCall*> call) const;
|
|
|
|
|
|
|
|
private:
|
|
|
|
void updateTitle() const;
|
|
|
|
[[nodiscard]] int alreadyInCount() const;
|
|
|
|
[[nodiscard]] bool isAlreadyIn(not_null<UserData*> user) const;
|
|
|
|
[[nodiscard]] int fullCount() const;
|
|
|
|
|
|
|
|
std::unique_ptr<PeerListRow> createRow(
|
|
|
|
not_null<UserData*> user) const override;
|
|
|
|
|
|
|
|
const not_null<ChannelData*> _channel;
|
|
|
|
const base::flat_set<not_null<UserData*>> _alreadyIn;
|
|
|
|
const int _fullInCount = 0;
|
|
|
|
mutable base::flat_set<not_null<UserData*>> _skippedUsers;
|
|
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
InviteController::InviteController(
|
|
|
|
not_null<ChannelData*> channel,
|
|
|
|
base::flat_set<not_null<UserData*>> alreadyIn,
|
|
|
|
int fullInCount)
|
|
|
|
: ParticipantsBoxController(CreateTag{}, nullptr, channel, Role::Members)
|
|
|
|
, _channel(channel)
|
|
|
|
, _alreadyIn(std::move(alreadyIn))
|
|
|
|
, _fullInCount(std::max(fullInCount, int(_alreadyIn.size()))) {
|
|
|
|
_skippedUsers.emplace(channel->session().user());
|
|
|
|
}
|
|
|
|
|
|
|
|
void InviteController::prepare() {
|
|
|
|
ParticipantsBoxController::prepare();
|
|
|
|
updateTitle();
|
|
|
|
}
|
|
|
|
|
|
|
|
void InviteController::rowClicked(not_null<PeerListRow*> row) {
|
|
|
|
delegate()->peerListSetRowChecked(row, !row->checked());
|
|
|
|
updateTitle();
|
|
|
|
}
|
|
|
|
|
|
|
|
base::unique_qptr<Ui::PopupMenu> InviteController::rowContextMenu(
|
|
|
|
QWidget *parent,
|
|
|
|
not_null<PeerListRow*> row) {
|
|
|
|
return nullptr;
|
|
|
|
}
|
|
|
|
|
|
|
|
void InviteController::itemDeselectedHook(not_null<PeerData*> peer) {
|
|
|
|
updateTitle();
|
|
|
|
}
|
|
|
|
|
|
|
|
int InviteController::alreadyInCount() const {
|
|
|
|
return std::max(_fullInCount, int(_alreadyIn.size()));
|
|
|
|
}
|
|
|
|
|
|
|
|
bool InviteController::isAlreadyIn(not_null<UserData*> user) const {
|
|
|
|
return _alreadyIn.contains(user);
|
|
|
|
}
|
|
|
|
|
|
|
|
int InviteController::fullCount() const {
|
|
|
|
return alreadyInCount() + delegate()->peerListSelectedRowsCount();
|
|
|
|
}
|
|
|
|
|
|
|
|
std::unique_ptr<PeerListRow> InviteController::createRow(
|
|
|
|
not_null<UserData*> user) const {
|
|
|
|
if (user->isSelf() || user->isBot()) {
|
|
|
|
if (_skippedUsers.emplace(user).second) {
|
|
|
|
updateTitle();
|
|
|
|
}
|
|
|
|
return nullptr;
|
|
|
|
}
|
|
|
|
auto result = std::make_unique<PeerListRow>(user);
|
|
|
|
if (isAlreadyIn(user)) {
|
|
|
|
result->setDisabledState(PeerListRow::State::DisabledChecked);
|
|
|
|
}
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
|
|
|
void InviteController::updateTitle() const {
|
|
|
|
const auto inOrInvited = fullCount() - 1; // minus self
|
|
|
|
const auto canBeInvited = std::max({
|
|
|
|
delegate()->peerListFullRowsCount(), // minus self and bots
|
|
|
|
_channel->membersCount() - int(_skippedUsers.size()), // self + bots
|
|
|
|
inOrInvited
|
|
|
|
});
|
|
|
|
const auto additional = canBeInvited
|
|
|
|
? qsl("%1 / %2").arg(inOrInvited).arg(canBeInvited)
|
|
|
|
: QString();
|
|
|
|
delegate()->peerListSetTitle(tr::lng_group_call_invite_title());
|
|
|
|
delegate()->peerListSetAdditionalTitle(rpl::single(additional));
|
|
|
|
}
|
|
|
|
|
|
|
|
std::variant<int, not_null<UserData*>> InviteController::inviteSelectedUsers(
|
|
|
|
not_null<PeerListBox*> box,
|
|
|
|
not_null<GroupCall*> call) const {
|
|
|
|
const auto rows = box->peerListCollectSelectedRows();
|
|
|
|
const auto users = ranges::view::all(
|
|
|
|
rows
|
|
|
|
) | ranges::view::transform([](not_null<PeerData*> peer) {
|
|
|
|
Expects(peer->isUser());
|
|
|
|
Expects(!peer->isSelf());
|
|
|
|
|
|
|
|
return not_null<UserData*>(peer->asUser());
|
|
|
|
}) | ranges::to_vector;
|
|
|
|
return call->inviteUsers(users);
|
|
|
|
}
|
|
|
|
|
|
|
|
} // namespace
|
2020-11-24 12:54:20 +00:00
|
|
|
|
2020-11-28 14:07:36 +00:00
|
|
|
void LeaveGroupCallBox(
|
|
|
|
not_null<Ui::GenericBox*> box,
|
|
|
|
not_null<GroupCall*> call,
|
|
|
|
bool discardChecked,
|
|
|
|
BoxContext context) {
|
|
|
|
box->setTitle(tr::lng_group_call_leave_title());
|
2020-11-29 18:26:49 +00:00
|
|
|
const auto inCall = (context == BoxContext::GroupCallPanel);
|
2020-11-28 14:07:36 +00:00
|
|
|
box->addRow(object_ptr<Ui::FlatLabel>(
|
|
|
|
box.get(),
|
|
|
|
tr::lng_group_call_leave_sure(),
|
2020-11-29 18:26:49 +00:00
|
|
|
(inCall ? st::groupCallBoxLabel : st::boxLabel)));
|
2020-11-28 14:07:36 +00:00
|
|
|
const auto discard = call->channel()->canManageCall()
|
|
|
|
? box->addRow(object_ptr<Ui::Checkbox>(
|
|
|
|
box.get(),
|
|
|
|
tr::lng_group_call_end(),
|
|
|
|
discardChecked,
|
2020-11-29 18:26:49 +00:00
|
|
|
(inCall ? st::groupCallCheckbox : st::defaultBoxCheckbox),
|
|
|
|
(inCall ? st::groupCallCheck : st::defaultCheck)),
|
2020-11-28 14:07:36 +00:00
|
|
|
style::margins(
|
|
|
|
st::boxRowPadding.left(),
|
|
|
|
st::boxRowPadding.left(),
|
|
|
|
st::boxRowPadding.right(),
|
|
|
|
st::boxRowPadding.bottom()))
|
|
|
|
: nullptr;
|
|
|
|
const auto weak = base::make_weak(call.get());
|
|
|
|
box->addButton(tr::lng_group_call_leave(), [=] {
|
|
|
|
const auto discardCall = (discard && discard->checked());
|
|
|
|
box->closeBox();
|
|
|
|
|
|
|
|
if (!weak) {
|
|
|
|
return;
|
|
|
|
} else if (discardCall) {
|
|
|
|
call->discard();
|
|
|
|
} else {
|
|
|
|
call->hangup();
|
|
|
|
}
|
|
|
|
});
|
|
|
|
box->addButton(tr::lng_cancel(), [=] { box->closeBox(); });
|
|
|
|
}
|
|
|
|
|
2020-11-24 12:54:20 +00:00
|
|
|
GroupPanel::GroupPanel(not_null<GroupCall*> call)
|
|
|
|
: _call(call)
|
|
|
|
, _channel(call->channel())
|
|
|
|
, _window(std::make_unique<Ui::Window>(Core::App().getModalParent()))
|
2020-11-27 14:50:41 +00:00
|
|
|
, _layerBg(std::make_unique<Ui::LayerManager>(_window->body()))
|
2020-11-24 12:54:20 +00:00
|
|
|
#ifdef Q_OS_WIN
|
|
|
|
, _controls(std::make_unique<Ui::Platform::TitleControls>(
|
|
|
|
_window.get(),
|
2020-12-06 13:53:17 +00:00
|
|
|
st::groupCallTitle))
|
2020-11-24 12:54:20 +00:00
|
|
|
#endif // Q_OS_WIN
|
2020-11-25 14:09:59 +00:00
|
|
|
, _members(widget(), call)
|
2020-11-28 12:00:06 +00:00
|
|
|
, _settings(widget(), st::groupCallSettings)
|
|
|
|
, _mute(std::make_unique<Ui::CallMuteButton>(
|
|
|
|
widget(),
|
2020-12-06 15:01:37 +00:00
|
|
|
Core::App().appDeactivatedValue(),
|
2020-11-28 12:00:06 +00:00
|
|
|
Ui::CallMuteButtonState{
|
|
|
|
.text = tr::lng_group_call_connecting(tr::now),
|
|
|
|
.type = Ui::CallMuteButtonType::Connecting,
|
|
|
|
}))
|
2020-11-30 12:11:24 +00:00
|
|
|
, _hangup(widget(), st::groupCallHangup) {
|
2020-11-29 18:26:49 +00:00
|
|
|
_layerBg->setStyleOverrides(&st::groupCallBox, &st::groupCallLayerBox);
|
2020-11-30 09:39:35 +00:00
|
|
|
_settings->setColorOverrides(_mute->colorOverrides());
|
2020-11-29 18:26:49 +00:00
|
|
|
|
2020-11-24 12:54:20 +00:00
|
|
|
initWindow();
|
|
|
|
initWidget();
|
|
|
|
initControls();
|
|
|
|
initLayout();
|
|
|
|
showAndActivate();
|
|
|
|
}
|
|
|
|
|
|
|
|
GroupPanel::~GroupPanel() = default;
|
|
|
|
|
|
|
|
void GroupPanel::showAndActivate() {
|
2020-11-25 14:09:59 +00:00
|
|
|
if (_window->isHidden()) {
|
|
|
|
_window->show();
|
|
|
|
}
|
2020-11-24 12:54:20 +00:00
|
|
|
_window->raise();
|
|
|
|
_window->setWindowState(_window->windowState() | Qt::WindowActive);
|
|
|
|
_window->activateWindow();
|
|
|
|
_window->setFocus();
|
|
|
|
}
|
|
|
|
|
|
|
|
void GroupPanel::initWindow() {
|
|
|
|
_window->setAttribute(Qt::WA_OpaquePaintEvent);
|
|
|
|
_window->setAttribute(Qt::WA_NoSystemBackground);
|
|
|
|
_window->setWindowIcon(
|
|
|
|
QIcon(QPixmap::fromImage(Image::Empty()->original(), Qt::ColorOnly)));
|
|
|
|
_window->setTitleStyle(st::callTitle);
|
2020-12-01 14:28:01 +00:00
|
|
|
|
|
|
|
Info::Profile::NameValue(
|
|
|
|
_channel
|
|
|
|
) | rpl::start_with_next([=](const TextWithEntities &name) {
|
|
|
|
_window->setTitle(name.text);
|
|
|
|
}, _window->lifetime());
|
2020-11-24 12:54:20 +00:00
|
|
|
|
2020-11-25 14:09:59 +00:00
|
|
|
base::install_event_filter(_window.get(), [=](not_null<QEvent*> e) {
|
|
|
|
if (e->type() == QEvent::Close && handleClose()) {
|
|
|
|
e->ignore();
|
|
|
|
return base::EventFilterResult::Cancel;
|
2020-11-24 12:54:20 +00:00
|
|
|
}
|
2020-11-25 14:09:59 +00:00
|
|
|
return base::EventFilterResult::Continue;
|
|
|
|
});
|
2020-11-24 12:54:20 +00:00
|
|
|
|
|
|
|
_window->setBodyTitleArea([=](QPoint widgetPoint) {
|
|
|
|
using Flag = Ui::WindowTitleHitTestFlag;
|
2020-11-30 07:57:55 +00:00
|
|
|
const auto titleRect = QRect(
|
|
|
|
0,
|
|
|
|
0,
|
|
|
|
widget()->width(),
|
|
|
|
computeMembersListTop());
|
|
|
|
return titleRect.contains(widgetPoint)
|
|
|
|
? (Flag::Move | Flag::Maximize)
|
|
|
|
: Flag::None;
|
2020-11-24 12:54:20 +00:00
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
void GroupPanel::initWidget() {
|
|
|
|
widget()->setMouseTracking(true);
|
|
|
|
|
|
|
|
widget()->paintRequest(
|
|
|
|
) | rpl::start_with_next([=](QRect clip) {
|
|
|
|
paint(clip);
|
|
|
|
}, widget()->lifetime());
|
|
|
|
|
|
|
|
widget()->sizeValue(
|
|
|
|
) | rpl::skip(1) | rpl::start_with_next([=] {
|
|
|
|
updateControlsGeometry();
|
2020-11-28 14:07:36 +00:00
|
|
|
|
2020-11-28 18:17:13 +00:00
|
|
|
// title geometry depends on _controls->geometry,
|
|
|
|
// which is not updated here yet.
|
|
|
|
crl::on_main(widget(), [=] { refreshTitle(); });
|
|
|
|
}, widget()->lifetime());
|
2020-11-28 14:07:36 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void GroupPanel::hangup(bool discardCallChecked) {
|
|
|
|
if (!_call) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
_layerBg->showBox(Box(
|
|
|
|
LeaveGroupCallBox,
|
|
|
|
_call,
|
|
|
|
discardCallChecked,
|
|
|
|
BoxContext::GroupCallPanel));
|
|
|
|
}
|
|
|
|
|
2020-11-24 12:54:20 +00:00
|
|
|
void GroupPanel::initControls() {
|
2020-11-28 12:00:06 +00:00
|
|
|
_mute->clicks(
|
|
|
|
) | rpl::filter([=](Qt::MouseButton button) {
|
2020-12-06 10:13:50 +00:00
|
|
|
return (button == Qt::LeftButton)
|
|
|
|
&& _call
|
|
|
|
&& (_call->muted() != MuteState::ForceMuted);
|
2020-11-28 12:00:06 +00:00
|
|
|
}) | rpl::start_with_next([=] {
|
2020-12-06 10:13:50 +00:00
|
|
|
_call->setMuted((_call->muted() == MuteState::Muted)
|
|
|
|
? MuteState::Active
|
|
|
|
: MuteState::Muted);
|
2020-11-28 12:00:06 +00:00
|
|
|
}, _mute->lifetime());
|
|
|
|
|
2020-11-28 14:07:36 +00:00
|
|
|
_hangup->setClickedCallback([=] { hangup(false); });
|
2020-11-24 12:54:20 +00:00
|
|
|
_settings->setClickedCallback([=] {
|
2020-11-28 16:18:51 +00:00
|
|
|
if (_call) {
|
|
|
|
_layerBg->showBox(Box(GroupCallSettingsBox, _call));
|
|
|
|
}
|
2020-11-24 12:54:20 +00:00
|
|
|
});
|
2020-11-28 12:00:06 +00:00
|
|
|
|
|
|
|
_settings->setText(tr::lng_menu_settings());
|
|
|
|
_hangup->setText(tr::lng_box_leave());
|
|
|
|
|
|
|
|
_members->desiredHeightValue(
|
|
|
|
) | rpl::start_with_next([=] {
|
|
|
|
updateControlsGeometry();
|
|
|
|
}, _members->lifetime());
|
|
|
|
|
2020-11-24 12:54:20 +00:00
|
|
|
initWithCall(_call);
|
|
|
|
}
|
|
|
|
|
|
|
|
void GroupPanel::initWithCall(GroupCall *call) {
|
|
|
|
_callLifetime.destroy();
|
|
|
|
_call = call;
|
|
|
|
if (!_call) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
_channel = _call->channel();
|
|
|
|
|
2020-11-28 12:00:06 +00:00
|
|
|
call->levelUpdates(
|
|
|
|
) | rpl::filter([=](const LevelUpdate &update) {
|
|
|
|
return update.self;
|
|
|
|
}) | rpl::start_with_next([=](const LevelUpdate &update) {
|
|
|
|
_mute->setLevel(update.value);
|
2020-11-24 12:54:20 +00:00
|
|
|
}, _callLifetime);
|
2020-11-25 14:09:59 +00:00
|
|
|
|
2020-11-27 15:51:24 +00:00
|
|
|
_members->toggleMuteRequests(
|
|
|
|
) | rpl::start_with_next([=](GroupMembers::MuteRequest request) {
|
|
|
|
if (_call) {
|
|
|
|
_call->toggleMute(request.user, request.mute);
|
|
|
|
}
|
|
|
|
}, _callLifetime);
|
2020-11-28 12:00:06 +00:00
|
|
|
|
2020-11-30 11:31:32 +00:00
|
|
|
_members->kickMemberRequests(
|
|
|
|
) | rpl::start_with_next([=](not_null<UserData*> user) {
|
|
|
|
kickMember(user);
|
|
|
|
}, _callLifetime);
|
|
|
|
|
2020-11-28 18:17:13 +00:00
|
|
|
_members->addMembersRequests(
|
|
|
|
) | rpl::start_with_next([=] {
|
|
|
|
if (_call) {
|
|
|
|
addMembers();
|
|
|
|
}
|
|
|
|
}, _callLifetime);
|
|
|
|
|
2020-11-28 12:00:06 +00:00
|
|
|
using namespace rpl::mappers;
|
|
|
|
rpl::combine(
|
2020-12-06 10:13:50 +00:00
|
|
|
_call->mutedValue() | MapPushToTalkToActive(),
|
2020-11-28 12:00:06 +00:00
|
|
|
_call->stateValue() | rpl::map(
|
2020-11-28 14:07:36 +00:00
|
|
|
_1 == State::Creating
|
|
|
|
|| _1 == State::Joining
|
|
|
|
|| _1 == State::Connecting
|
2020-11-28 12:00:06 +00:00
|
|
|
)
|
2020-12-06 10:13:50 +00:00
|
|
|
) | rpl::distinct_until_changed(
|
2020-11-28 12:00:06 +00:00
|
|
|
) | rpl::start_with_next([=](MuteState mute, bool connecting) {
|
|
|
|
_mute->setState(Ui::CallMuteButtonState{
|
|
|
|
.text = (connecting
|
|
|
|
? tr::lng_group_call_connecting(tr::now)
|
|
|
|
: mute == MuteState::ForceMuted
|
|
|
|
? tr::lng_group_call_force_muted(tr::now)
|
2020-12-06 10:13:50 +00:00
|
|
|
: mute == MuteState::Muted
|
2020-11-30 12:38:00 +00:00
|
|
|
? tr::lng_group_call_unmute(tr::now)
|
|
|
|
: tr::lng_group_call_you_are_live(tr::now)),
|
2020-11-28 12:00:06 +00:00
|
|
|
.type = (connecting
|
|
|
|
? Ui::CallMuteButtonType::Connecting
|
|
|
|
: mute == MuteState::ForceMuted
|
|
|
|
? Ui::CallMuteButtonType::ForceMuted
|
|
|
|
: mute == MuteState::Muted
|
|
|
|
? Ui::CallMuteButtonType::Muted
|
|
|
|
: Ui::CallMuteButtonType::Active),
|
|
|
|
});
|
|
|
|
}, _callLifetime);
|
2020-11-24 12:54:20 +00:00
|
|
|
}
|
|
|
|
|
2020-11-28 18:17:13 +00:00
|
|
|
void GroupPanel::addMembers() {
|
|
|
|
const auto real = _channel->call();
|
|
|
|
if (!_call || !real || real->id() != _call->id()) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
auto alreadyIn = _channel->owner().invitedToCallUsers(real->id());
|
|
|
|
for (const auto &participant : real->participants()) {
|
|
|
|
alreadyIn.emplace(participant.user);
|
|
|
|
}
|
|
|
|
alreadyIn.emplace(_channel->session().user());
|
|
|
|
auto controller = std::make_unique<InviteController>(
|
|
|
|
_channel,
|
|
|
|
std::move(alreadyIn),
|
|
|
|
real->fullCount());
|
2020-11-29 18:26:49 +00:00
|
|
|
controller->setStyleOverrides(
|
|
|
|
&st::groupCallInviteMembersList,
|
|
|
|
&st::groupCallMultiSelect);
|
|
|
|
|
2020-11-28 18:17:13 +00:00
|
|
|
const auto weak = base::make_weak(_call);
|
|
|
|
auto initBox = [=, controller = controller.get()](
|
|
|
|
not_null<PeerListBox*> box) {
|
|
|
|
box->addButton(tr::lng_group_call_invite_button(), [=] {
|
|
|
|
if (const auto call = weak.get()) {
|
|
|
|
const auto result = controller->inviteSelectedUsers(box, call);
|
|
|
|
|
|
|
|
if (const auto user = std::get_if<not_null<UserData*>>(&result)) {
|
|
|
|
Ui::Toast::Show(
|
|
|
|
widget(),
|
|
|
|
Ui::Toast::Config{
|
|
|
|
.text = tr::lng_group_call_invite_done_user(
|
|
|
|
tr::now,
|
|
|
|
lt_user,
|
|
|
|
Ui::Text::Bold((*user)->firstName),
|
|
|
|
Ui::Text::WithEntities),
|
|
|
|
.st = &st::defaultToast,
|
|
|
|
});
|
|
|
|
} else if (const auto count = std::get_if<int>(&result)) {
|
|
|
|
if (*count > 0) {
|
|
|
|
Ui::Toast::Show(
|
|
|
|
widget(),
|
|
|
|
Ui::Toast::Config{
|
|
|
|
.text = tr::lng_group_call_invite_done_many(
|
|
|
|
tr::now,
|
|
|
|
lt_count,
|
|
|
|
*count,
|
|
|
|
Ui::Text::RichLangValue),
|
|
|
|
.st = &st::defaultToast,
|
|
|
|
});
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
Unexpected("Result in GroupCall::inviteUsers.");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
box->closeBox();
|
|
|
|
});
|
|
|
|
box->addButton(tr::lng_cancel(), [=] { box->closeBox(); });
|
|
|
|
};
|
|
|
|
_layerBg->showBox(Box<PeerListBox>(std::move(controller), initBox));
|
|
|
|
}
|
|
|
|
|
2020-11-30 11:31:32 +00:00
|
|
|
void GroupPanel::kickMember(not_null<UserData*> user) {
|
|
|
|
_layerBg->showBox(Box([=](not_null<Ui::GenericBox*> box) {
|
|
|
|
box->addRow(
|
|
|
|
object_ptr<Ui::FlatLabel>(
|
|
|
|
box.get(),
|
|
|
|
tr::lng_profile_sure_kick(
|
|
|
|
tr::now,
|
|
|
|
lt_user,
|
|
|
|
user->firstName),
|
|
|
|
st::groupCallBoxLabel),
|
|
|
|
style::margins(
|
|
|
|
st::boxRowPadding.left(),
|
|
|
|
st::boxPadding.top(),
|
|
|
|
st::boxRowPadding.right(),
|
|
|
|
st::boxPadding.bottom()));
|
|
|
|
box->addButton(tr::lng_box_remove(), [=] {
|
|
|
|
box->closeBox();
|
|
|
|
kickMemberSure(user);
|
|
|
|
});
|
|
|
|
box->addButton(tr::lng_cancel(), [=] { box->closeBox(); });
|
|
|
|
}));
|
|
|
|
}
|
|
|
|
|
|
|
|
void GroupPanel::kickMemberSure(not_null<UserData*> user) {
|
|
|
|
const auto currentRestrictedRights = [&]() -> MTPChatBannedRights {
|
|
|
|
const auto it = _channel->mgInfo->lastRestricted.find(user);
|
|
|
|
return (it != _channel->mgInfo->lastRestricted.cend())
|
|
|
|
? it->second.rights
|
|
|
|
: MTP_chatBannedRights(MTP_flags(0), MTP_int(0));
|
|
|
|
}();
|
|
|
|
|
|
|
|
_channel->session().api().kickParticipant(
|
|
|
|
_channel,
|
|
|
|
user,
|
|
|
|
currentRestrictedRights);
|
|
|
|
}
|
|
|
|
|
2020-11-24 12:54:20 +00:00
|
|
|
void GroupPanel::initLayout() {
|
|
|
|
initGeometry();
|
|
|
|
|
|
|
|
#ifdef Q_OS_WIN
|
|
|
|
_controls->raise();
|
|
|
|
#endif // Q_OS_WIN
|
|
|
|
}
|
|
|
|
|
|
|
|
void GroupPanel::showControls() {
|
|
|
|
Expects(_call != nullptr);
|
|
|
|
|
|
|
|
widget()->showChildren();
|
|
|
|
}
|
|
|
|
|
|
|
|
void GroupPanel::closeBeforeDestroy() {
|
|
|
|
_window->close();
|
|
|
|
initWithCall(nullptr);
|
|
|
|
}
|
|
|
|
|
|
|
|
void GroupPanel::initGeometry() {
|
|
|
|
const auto center = Core::App().getPointForCallPanelCenter();
|
|
|
|
const auto rect = QRect(0, 0, st::groupCallWidth, st::groupCallHeight);
|
|
|
|
_window->setGeometry(rect.translated(center - rect.center()));
|
|
|
|
_window->setMinimumSize(rect.size());
|
|
|
|
_window->show();
|
|
|
|
updateControlsGeometry();
|
|
|
|
}
|
|
|
|
|
2020-11-26 13:04:11 +00:00
|
|
|
int GroupPanel::computeMembersListTop() const {
|
|
|
|
#ifdef Q_OS_WIN
|
|
|
|
return st::callTitleButton.height + st::groupCallMembersMargin.top() / 2;
|
|
|
|
#elif defined Q_OS_MAC // Q_OS_WIN
|
|
|
|
return st::groupCallMembersMargin.top() * 2;
|
|
|
|
#else // Q_OS_WIN || Q_OS_MAC
|
|
|
|
return st::groupCallMembersMargin.top();
|
|
|
|
#endif // Q_OS_WIN || Q_OS_MAC
|
|
|
|
}
|
|
|
|
|
|
|
|
std::optional<QRect> GroupPanel::computeTitleRect() const {
|
|
|
|
#ifdef Q_OS_WIN
|
|
|
|
const auto controls = _controls->geometry();
|
|
|
|
return QRect(0, 0, controls.x(), controls.height());
|
|
|
|
#else // Q_OS_WIN
|
|
|
|
return std::nullopt;
|
|
|
|
#endif // Q_OS_WIN
|
|
|
|
}
|
|
|
|
|
2020-11-24 12:54:20 +00:00
|
|
|
void GroupPanel::updateControlsGeometry() {
|
|
|
|
if (widget()->size().isEmpty()) {
|
|
|
|
return;
|
|
|
|
}
|
2020-11-25 14:09:59 +00:00
|
|
|
const auto desiredHeight = _members->desiredHeight();
|
2020-11-26 13:04:11 +00:00
|
|
|
const auto membersWidthAvailable = widget()->width()
|
|
|
|
- st::groupCallMembersMargin.left()
|
|
|
|
- st::groupCallMembersMargin.right();
|
|
|
|
const auto membersWidthMin = st::groupCallWidth
|
2020-11-25 14:09:59 +00:00
|
|
|
- st::groupCallMembersMargin.left()
|
|
|
|
- st::groupCallMembersMargin.right();
|
2020-11-26 13:04:11 +00:00
|
|
|
const auto membersWidth = std::clamp(
|
|
|
|
membersWidthAvailable,
|
|
|
|
membersWidthMin,
|
|
|
|
st::groupCallMembersWidthMax);
|
2020-11-28 12:00:06 +00:00
|
|
|
const auto muteTop = widget()->height() - st::groupCallMuteBottomSkip;
|
|
|
|
const auto buttonsTop = widget()->height() - st::groupCallButtonBottomSkip;
|
2020-11-26 13:04:11 +00:00
|
|
|
const auto membersTop = computeMembersListTop();
|
2020-11-28 12:00:06 +00:00
|
|
|
const auto availableHeight = muteTop
|
2020-11-25 14:09:59 +00:00
|
|
|
- membersTop
|
|
|
|
- st::groupCallMembersMargin.bottom();
|
|
|
|
_members->setGeometry(
|
2020-11-27 14:50:41 +00:00
|
|
|
(widget()->width() - membersWidth) / 2,
|
2020-11-25 14:09:59 +00:00
|
|
|
membersTop,
|
|
|
|
membersWidth,
|
|
|
|
std::min(desiredHeight, availableHeight));
|
2020-11-28 12:00:06 +00:00
|
|
|
const auto muteSize = _mute->innerSize().width();
|
|
|
|
const auto fullWidth = muteSize
|
|
|
|
+ 2 * _settings->width()
|
|
|
|
+ 2 * st::groupCallButtonSkip;
|
|
|
|
_mute->moveInner({ (widget()->width() - muteSize) / 2, muteTop });
|
|
|
|
_settings->moveToLeft((widget()->width() - fullWidth) / 2, buttonsTop);
|
|
|
|
_hangup->moveToRight((widget()->width() - fullWidth) / 2, buttonsTop);
|
2020-11-26 13:04:11 +00:00
|
|
|
refreshTitle();
|
|
|
|
}
|
|
|
|
|
|
|
|
void GroupPanel::refreshTitle() {
|
|
|
|
if (const auto titleRect = computeTitleRect()) {
|
|
|
|
if (!_title) {
|
|
|
|
_title.create(
|
|
|
|
widget(),
|
2020-12-01 14:28:01 +00:00
|
|
|
Info::Profile::NameValue(_channel),
|
2020-11-26 13:04:11 +00:00
|
|
|
st::groupCallHeaderLabel);
|
2020-11-27 14:50:41 +00:00
|
|
|
_title->setAttribute(Qt::WA_TransparentForMouseEvents);
|
2020-11-26 13:04:11 +00:00
|
|
|
}
|
|
|
|
const auto best = _title->naturalWidth();
|
|
|
|
const auto from = (widget()->width() - best) / 2;
|
|
|
|
const auto top = (computeMembersListTop() - _title->height()) / 2;
|
|
|
|
const auto left = titleRect->x();
|
|
|
|
if (from >= left && from + best <= left + titleRect->width()) {
|
|
|
|
_title->resizeToWidth(best);
|
|
|
|
_title->moveToLeft(from, top);
|
|
|
|
} else if (titleRect->width() < best) {
|
|
|
|
_title->resizeToWidth(titleRect->width());
|
|
|
|
_title->moveToLeft(left, top);
|
|
|
|
} else if (from < left) {
|
|
|
|
_title->resizeToWidth(best);
|
|
|
|
_title->moveToLeft(left, top);
|
|
|
|
} else {
|
|
|
|
_title->resizeToWidth(best);
|
|
|
|
_title->moveToLeft(left + titleRect->width() - best, top);
|
|
|
|
}
|
|
|
|
} else if (_title) {
|
|
|
|
_title.destroy();
|
|
|
|
}
|
2020-11-24 12:54:20 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void GroupPanel::paint(QRect clip) {
|
|
|
|
Painter p(widget());
|
|
|
|
|
|
|
|
auto region = QRegion(clip);
|
|
|
|
for (const auto rect : region) {
|
2020-11-25 14:09:59 +00:00
|
|
|
p.fillRect(rect, st::groupCallBg);
|
2020-11-24 12:54:20 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-11-25 14:09:59 +00:00
|
|
|
bool GroupPanel::handleClose() {
|
2020-11-24 12:54:20 +00:00
|
|
|
if (_call) {
|
2020-11-25 14:09:59 +00:00
|
|
|
_window->hide();
|
|
|
|
return true;
|
2020-11-24 12:54:20 +00:00
|
|
|
}
|
2020-11-25 14:09:59 +00:00
|
|
|
return false;
|
2020-11-24 12:54:20 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
not_null<Ui::RpWidget*> GroupPanel::widget() const {
|
|
|
|
return _window->body();
|
|
|
|
}
|
|
|
|
|
|
|
|
} // namespace Calls
|