EnterPreviewToolbar.h 504 B

123456789101112131415161718192021222324252627282930
  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 <QToolBar>
  11. #endif
  12. class EditorWindow;
  13. class QPushButton;
  14. class EnterPreviewToolbar
  15. : public QToolBar
  16. {
  17. Q_OBJECT
  18. public:
  19. explicit EnterPreviewToolbar(EditorWindow* parent);
  20. private:
  21. QPushButton* m_previewButton;
  22. };