Files
tdesktop/Telegram/SourceFiles/window/window_chat_preview.h
allhaileris afb81b8278
Some checks failed
Docker. / Ubuntu (push) Has been cancelled
User-agent updater. / User-agent (push) Failing after 15s
Lock Threads / lock (push) Failing after 10s
Waiting for answer. / waiting-for-answer (push) Failing after 22s
Close stale issues and PRs / stale (push) Successful in 13s
Needs user action. / needs-user-action (push) Failing after 8s
Can't reproduce. / cant-reproduce (push) Failing after 8s
init
2026-02-16 15:50:16 +03:00

54 lines
1.3 KiB
C++

/*
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/timer.h"
#include "base/unique_qptr.h"
#include "dialogs/dialogs_key.h"
namespace Ui {
class PopupMenu;
} // namespace Ui
namespace Window {
class SessionController;
class ChatPreviewManager final {
public:
ChatPreviewManager(not_null<SessionController*> controller);
bool show(
Dialogs::RowDescriptor row,
Fn<void(bool shown)> callback = nullptr,
QPointer<QWidget> parentOverride = nullptr,
std::optional<QPoint> positionOverride = {});
bool schedule(
Dialogs::RowDescriptor row,
Fn<void(bool shown)> callback = nullptr,
QPointer<QWidget> parentOverride = nullptr,
std::optional<QPoint> positionOverride = {});
void cancelScheduled();
private:
void showScheduled();
const not_null<SessionController*> _controller;
Dialogs::RowDescriptor _scheduled;
Fn<void(bool)> _scheduledCallback;
QPointer<QWidget> _scheduledParentOverride;
std::optional<QPoint> _scheduledPositionOverride;
base::Timer _timer;
rpl::lifetime _topicLifetime;
base::unique_qptr<Ui::PopupMenu> _menu;
};
} // namespace Window