mirror of
https://github.com/AyuGram/AyuGramDesktop.git
synced 2025-04-30 04:55:39 +02:00
62 lines
1.2 KiB
C++
62 lines
1.2 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/object_ptr.h"
|
|
|
|
namespace style {
|
|
struct RoundCheckbox;
|
|
} // namespace style
|
|
|
|
namespace Ui {
|
|
|
|
class BoxContent;
|
|
class GenericBox;
|
|
class DynamicImage;
|
|
|
|
struct TextWithContext {
|
|
TextWithEntities text;
|
|
Text::MarkedContext context;
|
|
};
|
|
|
|
struct PaidReactionTop {
|
|
QString name;
|
|
std::shared_ptr<DynamicImage> photo;
|
|
uint64 barePeerId = 0;
|
|
int count = 0;
|
|
Fn<void()> click;
|
|
bool my = false;
|
|
};
|
|
|
|
struct PaidReactionBoxArgs {
|
|
int chosen = 0;
|
|
int max = 0;
|
|
|
|
std::vector<PaidReactionTop> top;
|
|
|
|
QString channel;
|
|
Fn<rpl::producer<TextWithContext>(rpl::producer<int> amount)> submit;
|
|
rpl::producer<StarsAmount> balanceValue;
|
|
Fn<void(int, uint64)> send;
|
|
};
|
|
|
|
void PaidReactionsBox(
|
|
not_null<GenericBox*> box,
|
|
PaidReactionBoxArgs &&args);
|
|
|
|
[[nodiscard]] object_ptr<BoxContent> MakePaidReactionBox(
|
|
PaidReactionBoxArgs &&args);
|
|
|
|
[[nodiscard]] QImage GenerateSmallBadgeImage(
|
|
QString text,
|
|
const style::icon &icon,
|
|
QColor bg,
|
|
QColor fg,
|
|
const style::RoundCheckbox *borderSt = nullptr);
|
|
|
|
} // namespace Ui
|