TrackViewDoubleSpinBox.cpp 640 B

12345678910111213141516171819202122232425262728
  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. #include "EditorDefs.h"
  9. #include "TrackViewDoubleSpinBox.h"
  10. CTrackViewDoubleSpinBox::CTrackViewDoubleSpinBox(QWidget* parent)
  11. : AzQtComponents::DoubleSpinBox(parent)
  12. {
  13. }
  14. CTrackViewDoubleSpinBox::~CTrackViewDoubleSpinBox()
  15. {
  16. }
  17. void CTrackViewDoubleSpinBox::stepBy(int steps)
  18. {
  19. AzQtComponents::DoubleSpinBox::stepBy(steps);
  20. Q_EMIT stepByFinished();
  21. }
  22. #include <TrackView/moc_TrackViewDoubleSpinBox.cpp>