| 123456789101112131415161718192021222324252627282930313233343536373839404142434445 |
- /*
- 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
- namespace Ui {
- class GenericBox;
- class NumberInput;
- class SettingsButton;
- struct InviteLinkFields {
- QString link;
- QString label;
- TimeId expireDate = 0;
- int usageLimit = 0;
- int subscriptionCredits = 0;
- bool requestApproval = false;
- bool isGroup = false;
- bool isPublic = false;
- };
- struct InviteLinkSubscriptionToggle final {
- not_null<Ui::SettingsButton*> button;
- not_null<Ui::NumberInput*> amount;
- };
- void EditInviteLinkBox(
- not_null<Ui::GenericBox*> box,
- Fn<InviteLinkSubscriptionToggle()> fillSubscription,
- const InviteLinkFields &data,
- Fn<void(InviteLinkFields)> done);
- void CreateInviteLinkBox(
- not_null<Ui::GenericBox*> box,
- Fn<InviteLinkSubscriptionToggle()> fillSubscription,
- bool isGroup,
- bool isPublic,
- Fn<void(InviteLinkFields)> done);
- } // namespace Ui
|