UiAnimViewNewSequenceDialog.h 730 B

123456789101112131415161718192021222324252627282930313233343536373839
  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 <QScopedPointer>
  11. #include <QDialog>
  12. #endif
  13. namespace Ui {
  14. class CUiAVNewSequenceDialog;
  15. }
  16. class CUiAVNewSequenceDialog
  17. : public QDialog
  18. {
  19. Q_OBJECT
  20. public:
  21. CUiAVNewSequenceDialog(QWidget* pParent = 0);
  22. virtual ~CUiAVNewSequenceDialog();
  23. const QString& GetSequenceName() const { return m_sequenceName; };
  24. protected:
  25. virtual void OnOK();
  26. private:
  27. QString m_sequenceName;
  28. QScopedPointer<Ui::CUiAVNewSequenceDialog> ui;
  29. };