show_animation.h 501 B

1234567891011121314151617181920
  1. // This file is part of Desktop App Toolkit,
  2. // a set of libraries for developing nice desktop applications.
  3. //
  4. // For license and copyright information please follow this link:
  5. // https://github.com/desktop-app/legal/blob/master/LEGAL
  6. //
  7. #pragma once
  8. namespace Ui {
  9. class RpWidget;
  10. } // namespace Ui
  11. namespace Ui::Animations {
  12. using Widgets = std::vector<not_null<Ui::RpWidget*>>;
  13. void ShowWidgets(const Widgets &targets);
  14. void HideWidgets(const Widgets &targets);
  15. } // namespace Ui::Animations