/* 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 "base/weak_ptr.h" #include "base/timer.h" #include "base/object_ptr.h" #include "calls/calls_group_call.h" #include "ui/effects/animations.h" #include "ui/rp_widget.h" class Image; namespace Data { class PhotoMedia; class CloudImageView; } // namespace Data namespace Ui { class CallButton; class CallMuteButton; class IconButton; class FlatLabel; template class FadeWrap; template class PaddingWrap; class Window; class ScrollArea; class GenericBox; class LayerManager; namespace Platform { class TitleControls; } // namespace Platform } // namespace Ui namespace style { struct CallSignalBars; struct CallBodyLayout; } // namespace style namespace Calls { class Userpic; class SignalBars; class GroupMembers; enum class BoxContext { GroupCallPanel, MainWindow, }; void LeaveGroupCallBox( not_null box, not_null call, bool discardChecked, BoxContext context); class GroupPanel final { public: GroupPanel(not_null call); ~GroupPanel(); [[nodiscard]] bool isActive() const; void minimize(); void close(); void showAndActivate(); void closeBeforeDestroy(); private: using State = GroupCall::State; [[nodiscard]] not_null widget() const; void paint(QRect clip); void initWindow(); void initWidget(); void initControls(); void initWithCall(GroupCall *call); void initLayout(); void initGeometry(); bool handleClose(); void updateControlsGeometry(); void showControls(); void endCall(); void addMembers(); void kickMember(not_null user); void kickMemberSure(not_null user); [[nodiscard]] int computeMembersListTop() const; [[nodiscard]] std::optional computeTitleRect() const; void refreshTitle(); void migrate(not_null channel); void subscribeToPeerChanges(); GroupCall *_call = nullptr; not_null _peer; const std::unique_ptr _window; const std::unique_ptr _layerBg; #ifdef Q_OS_WIN std::unique_ptr _controls; #endif // Q_OS_WIN rpl::lifetime _callLifetime; object_ptr _title = { nullptr }; object_ptr _subtitle = { nullptr }; object_ptr _members; object_ptr _settings; std::unique_ptr _mute; object_ptr _hangup; rpl::lifetime _peerLifetime; }; } // namespace Calls