tdesktop/Telegram/SourceFiles/window/window_peer_menu.h

117 lines
3.1 KiB
C
Raw Normal View History

2017-11-06 18:03:20 +00:00
/*
This file is part of Telegram Desktop,
the official desktop application for the Telegram messaging service.
2017-11-06 18:03:20 +00:00
For license and copyright information please follow this link:
https://github.com/telegramdesktop/tdesktop/blob/master/LEGAL
2017-11-06 18:03:20 +00:00
*/
#pragma once
#include "api/api_common.h"
#include "chat_helpers/send_context_menu.h"
#include "data/data_poll.h"
class History;
2019-06-12 13:26:04 +00:00
namespace Ui {
class RpWidget;
2019-09-18 11:19:05 +00:00
class GenericBox;
} // namespace Ui
namespace Data {
2019-04-15 11:54:03 +00:00
class Folder;
class Session;
} // namespace Data
namespace Dialogs {
class MainList;
struct EntryState;
} // namespace Dialogs
2017-11-06 18:03:20 +00:00
namespace Window {
2019-06-12 13:26:04 +00:00
class Controller;
class SessionController;
2019-07-25 18:55:11 +00:00
class SessionNavigation;
2017-11-07 11:53:05 +00:00
using PeerMenuCallback = Fn<QAction*(
2017-11-06 18:03:20 +00:00
const QString &text,
Fn<void()> handler)>;
2017-11-06 18:03:20 +00:00
void FillDialogsEntryMenu(
not_null<SessionController*> controller,
Dialogs::EntryState request,
2020-11-11 20:47:40 +00:00
const PeerMenuCallback &addAction);
2017-11-06 18:03:20 +00:00
void PeerMenuAddMuteAction(
not_null<PeerData*> peer,
const PeerMenuCallback &addAction);
void MenuAddMarkAsReadAllChatsAction(
not_null<Data::Session*> data,
const PeerMenuCallback &addAction);
void MenuAddMarkAsReadChatListAction(
Fn<not_null<Dialogs::MainList*>()> &&list,
const PeerMenuCallback &addAction);
2018-07-23 13:11:56 +00:00
void PeerMenuExportChat(not_null<PeerData*> peer);
void PeerMenuDeleteContact(not_null<UserData*> user);
2019-07-25 18:55:11 +00:00
void PeerMenuShareContactBox(
not_null<Window::SessionNavigation*> navigation,
not_null<UserData*> user);
void PeerMenuAddChannelMembers(
not_null<Window::SessionNavigation*> navigation,
not_null<ChannelData*> channel);
2018-03-06 17:07:42 +00:00
//void PeerMenuUngroupFeed(not_null<Data::Feed*> feed); // #feed
void PeerMenuCreatePoll(
2020-06-10 18:08:17 +00:00
not_null<Window::SessionController*> controller,
not_null<PeerData*> peer,
2020-11-11 20:47:40 +00:00
MsgId replyToId = 0,
PollData::Flags chosen = PollData::Flags(),
PollData::Flags disabled = PollData::Flags(),
Api::SendType sendType = Api::SendType::Normal,
SendMenu::Type sendMenuType = SendMenu::Type::Scheduled);
struct ClearChat {
};
struct ClearReply {
FullMsgId replyId;
};
2019-06-12 13:26:04 +00:00
void PeerMenuBlockUserBox(
2019-09-18 11:19:05 +00:00
not_null<Ui::GenericBox*> box,
2019-06-12 14:13:49 +00:00
not_null<Window::Controller*> window,
not_null<PeerData*> peer,
std::variant<v::null_t, bool> suggestReport,
std::variant<v::null_t, ClearChat, ClearReply> suggestClear);
void PeerMenuUnblockUserWithBotRestart(not_null<UserData*> user);
void ToggleHistoryArchived(not_null<History*> history, bool archived);
Fn<void()> ClearHistoryHandler(not_null<PeerData*> peer);
Fn<void()> DeleteAndLeaveHandler(not_null<PeerData*> peer);
QPointer<Ui::RpWidget> ShowForwardMessagesBox(
2019-07-25 18:55:11 +00:00
not_null<Window::SessionNavigation*> navigation,
MessageIdsList &&items,
FnMut<void()> &&successCallback = nullptr);
QPointer<Ui::RpWidget> ShowSendNowMessagesBox(
not_null<Window::SessionNavigation*> navigation,
not_null<History*> history,
MessageIdsList &&items,
FnMut<void()> &&successCallback = nullptr);
void ToggleMessagePinned(
not_null<Window::SessionNavigation*> navigation,
FullMsgId itemId,
bool pin);
void HidePinnedBar(
not_null<Window::SessionNavigation*> navigation,
not_null<PeerData*> peer,
Fn<void()> onHidden);
void UnpinAllMessages(
not_null<Window::SessionNavigation*> navigation,
not_null<History*> history);
2017-11-06 18:03:20 +00:00
} // namespace Window