mirror of
https://github.com/AyuGram/AyuGramDesktop.git
synced 2025-04-30 13:03:58 +02:00
78 lines
1.7 KiB
C++
78 lines
1.7 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 Ui {
|
|
|
|
void StartFireworks(not_null<QWidget*> parent);
|
|
|
|
class Show;
|
|
class RpWidget;
|
|
class GenericBox;
|
|
class VerticalLayout;
|
|
|
|
struct BoostCounters {
|
|
int level = 0;
|
|
int boosts = 0;
|
|
int thisLevelBoosts = 0;
|
|
int nextLevelBoosts = 0; // Zero means no next level is available.
|
|
int mine = 0;
|
|
|
|
friend inline constexpr bool operator==(
|
|
BoostCounters,
|
|
BoostCounters) = default;
|
|
};
|
|
|
|
struct BoostBoxData {
|
|
QString name;
|
|
BoostCounters boost;
|
|
bool allowMulti = false;
|
|
};
|
|
|
|
void BoostBox(
|
|
not_null<GenericBox*> box,
|
|
BoostBoxData data,
|
|
Fn<void(Fn<void(BoostCounters)>)> boost);
|
|
|
|
void BoostBoxAlready(not_null<GenericBox*> box);
|
|
void GiftForBoostsBox(
|
|
not_null<GenericBox*> box,
|
|
QString channel,
|
|
int receive,
|
|
bool again);
|
|
void GiftedNoBoostsBox(not_null<GenericBox*> box);
|
|
void PremiumForBoostsBox(not_null<GenericBox*> box, Fn<void()> buyPremium);
|
|
|
|
struct AskBoostBoxData {
|
|
QString link;
|
|
BoostCounters boost;
|
|
int requiredLevel = 0;
|
|
};
|
|
|
|
void AskBoostBox(
|
|
not_null<GenericBox*> box,
|
|
AskBoostBoxData data,
|
|
Fn<void()> openStatistics,
|
|
Fn<void()> startGiveaway);
|
|
|
|
[[nodiscard]] object_ptr<RpWidget> MakeLinkLabel(
|
|
not_null<QWidget*> parent,
|
|
rpl::producer<QString> text,
|
|
rpl::producer<QString> link,
|
|
std::shared_ptr<Show> show,
|
|
object_ptr<RpWidget> right);
|
|
|
|
void FillBoostLimit(
|
|
rpl::producer<> showFinished,
|
|
not_null<VerticalLayout*> container,
|
|
rpl::producer<BoostCounters> data,
|
|
style::margins limitLinePadding);
|
|
|
|
} // namespace Ui
|