calls_group_scheduled_labels.h 609 B

123456789101112131415161718192021222324252627
  1. /*
  2. This file is part of Telegram Desktop,
  3. the official desktop application for the Telegram messaging service.
  4. For license and copyright information please follow this link:
  5. https://github.com/telegramdesktop/tdesktop/blob/master/LEGAL
  6. */
  7. #pragma once
  8. #include "base/object_ptr.h"
  9. namespace Ui {
  10. class RpWidget;
  11. } // namespace Ui
  12. namespace Calls::Group::Ui {
  13. using namespace ::Ui;
  14. [[nodiscard]] rpl::producer<QString> StartsWhenText(
  15. rpl::producer<TimeId> date);
  16. [[nodiscard]] object_ptr<RpWidget> CreateGradientLabel(
  17. QWidget *parent,
  18. rpl::producer<QString> text);
  19. } // namespace Calls::Group::Ui