init
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
Needs user action. / needs-user-action (push) Failing after 8s
Can't reproduce. / cant-reproduce (push) Failing after 8s
Close stale issues and PRs / stale (push) Has been cancelled
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
Needs user action. / needs-user-action (push) Failing after 8s
Can't reproduce. / cant-reproduce (push) Failing after 8s
Close stale issues and PRs / stale (push) Has been cancelled
This commit is contained in:
54
Telegram/SourceFiles/window/window_chat_preview.h
Normal file
54
Telegram/SourceFiles/window/window_chat_preview.h
Normal file
@@ -0,0 +1,54 @@
|
||||
/*
|
||||
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
|
||||
Reference in New Issue
Block a user