Medical Imaging Interaction Toolkit  2018.4.99-389bf124
Medical Imaging Interaction Toolkit
QmitkPrimitiveMovieNavigatorWidget.h
Go to the documentation of this file.
1 /*============================================================================
2 
3 The Medical Imaging Interaction Toolkit (MITK)
4 
5 Copyright (c) German Cancer Research Center (DKFZ)
6 All rights reserved.
7 
8 Use of this source code is governed by a 3-clause BSD license that can be
9 found in the LICENSE file.
10 
11 ============================================================================*/
12 
13 #ifndef QMITKPRIMITIVEMOVIENAVIGATORWIDGET_H_
14 #define QMITKPRIMITIVEMOVIENAVIGATORWIDGET_H_
15 
17 #include <QTimer>
18 #include <QWidget>
19 #include <ui_QmitkPrimitiveMovieNavigatorWidget.h>
20 
22 {
23  Q_OBJECT
24 
25 public:
26  QmitkPrimitiveMovieNavigatorWidget(QWidget *parent = nullptr, Qt::WindowFlags fl = nullptr);
28 
29  virtual int getTimerInterval();
30 
31 public slots:
32  virtual void Refetch();
33  virtual void SetStepper(mitk::Stepper *stepper);
34  virtual void goButton_clicked();
35  virtual void stopButton_clicked();
36  virtual void spinBoxValueChanged(int value);
37  virtual void setTimerInterval(int timerIntervalInMS);
38 
39 protected:
40  Ui::QmitkPrimitiveMovieNavigator m_Controls;
43  QTimer *m_Timer;
45 
46 private slots:
47  virtual void next();
48 };
49 
50 #endif
#define MITKQTWIDGETSEXT_EXPORT
Helper class to step through a list.
Definition: mitkStepper.h:47