GemRepoAddDialog.h 680 B

12345678910111213141516171819202122232425262728293031
  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 <QDialog>
  11. #endif
  12. namespace O3DE::ProjectManager
  13. {
  14. QT_FORWARD_DECLARE_CLASS(FormLineEditWidget)
  15. class GemRepoAddDialog
  16. : public QDialog
  17. {
  18. public:
  19. explicit GemRepoAddDialog(QWidget* parent = nullptr);
  20. ~GemRepoAddDialog() = default;
  21. QString GetRepoPath();
  22. private:
  23. FormLineEditWidget* m_repoPath = nullptr;
  24. };
  25. } // namespace O3DE::ProjectManager