TrackViewExportKeyTimeDlg.h 838 B

1234567891011121314151617181920212223242526272829303132333435363738
  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_TRACKVIEWEXPORTKEYTIMEDLG_H
  9. #define CRYINCLUDE_EDITOR_TRACKVIEWEXPORTKEYTIMEDLG_H
  10. #pragma once
  11. #if !defined(Q_MOC_RUN)
  12. #include <QDialog>
  13. #endif
  14. namespace Ui
  15. {
  16. class TrackViewExportKeyTimeDlg;
  17. }
  18. class CTrackViewExportKeyTimeDlg
  19. : public QDialog
  20. {
  21. Q_OBJECT
  22. public:
  23. CTrackViewExportKeyTimeDlg(QWidget* parent = nullptr);
  24. virtual ~CTrackViewExportKeyTimeDlg();
  25. bool IsAnimationExportChecked() const;
  26. bool IsSoundExportChecked() const;
  27. private:
  28. QScopedPointer<Ui::TrackViewExportKeyTimeDlg> m_ui;
  29. };
  30. #endif // CRYINCLUDE_EDITOR_TRACKVIEWEXPORTKEYTIMEDLG_H