SelectSequenceDialog.h 846 B

12345678910111213141516171819202122232425262728293031323334353637
  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. #ifndef CRYINCLUDE_EDITOR_SELECTSEQUENCEDIALOG_H
  9. #define CRYINCLUDE_EDITOR_SELECTSEQUENCEDIALOG_H
  10. #pragma once
  11. #if !defined(Q_MOC_RUN)
  12. #include "GenericSelectItemDialog.h"
  13. #endif
  14. // CSelectSequence dialog
  15. class CSelectSequenceDialog
  16. : public CGenericSelectItemDialog
  17. {
  18. Q_OBJECT
  19. public:
  20. CSelectSequenceDialog(QWidget* pParent = nullptr); // standard constructor
  21. virtual ~CSelectSequenceDialog() {}
  22. protected:
  23. void OnInitDialog() override;
  24. // Derived Dialogs should override this
  25. void GetItems(std::vector<SItem>& outItems) override;
  26. };
  27. #endif // CRYINCLUDE_EDITOR_SELECTSEQUENCEDIALOG_H