ProjectManagerWindow.h 836 B

1234567891011121314151617181920212223242526272829303132333435
  1. /*
  2. * Copyright (c) Contributors to the Open 3D Engine Project.
  3. * For complete copyright and license terms please see the LICENSE at the root of this distribution.
  4. *
  5. * SPDX-License-Identifier: Apache-2.0 OR MIT
  6. *
  7. */
  8. #pragma once
  9. #if !defined(Q_MOC_RUN)
  10. #include <QMainWindow>
  11. #include <QPointer>
  12. #include <AzCore/IO/Path/Path.h>
  13. #include <ScreenDefs.h>
  14. #endif
  15. namespace O3DE::ProjectManager
  16. {
  17. QT_FORWARD_DECLARE_CLASS(DownloadController);
  18. class ProjectManagerWindow
  19. : public QMainWindow
  20. {
  21. Q_OBJECT
  22. public:
  23. explicit ProjectManagerWindow(QWidget* parent, const AZ::IO::PathView& projectPath,
  24. ProjectManagerScreen startScreen = ProjectManagerScreen::Projects);
  25. private:
  26. QPointer<DownloadController> m_downloadController;
  27. };
  28. } // namespace O3DE::ProjectManager