mirror of
https://github.com/AyuGram/AyuGramDesktop.git
synced 2025-05-09 17:33:58 +02:00
47 lines
915 B
C++
47 lines
915 B
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 "dialogs/ui/dialogs_quick_action.h"
|
|
#include "ui/controls/swipe_handler_data.h"
|
|
|
|
namespace Lottie {
|
|
class Icon;
|
|
} // namespace Lottie
|
|
|
|
namespace Ui {
|
|
class RippleAnimation;
|
|
} // namespace Ui
|
|
|
|
namespace Dialogs::Ui {
|
|
|
|
using namespace ::Ui;
|
|
|
|
enum class QuickDialogActionLabel {
|
|
Mute,
|
|
Unmute,
|
|
Pin,
|
|
Unpin,
|
|
Read,
|
|
Unread,
|
|
Archive,
|
|
Unarchive,
|
|
Delete,
|
|
Disabled,
|
|
};
|
|
|
|
struct QuickActionContext {
|
|
::Ui::Controls::SwipeContextData data;
|
|
std::unique_ptr<Lottie::Icon> icon;
|
|
std::unique_ptr<Ui::RippleAnimation> ripple;
|
|
std::unique_ptr<Ui::RippleAnimation> rippleFg;
|
|
QuickDialogAction action;
|
|
crl::time finishedAt = 0;
|
|
};
|
|
|
|
} // namespace Dialogs::Ui
|