MITK-IGT
IGT Extension of MITK
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Modules Pages
QmitkComboBoxStepThrough.h
Go to the documentation of this file.
1/*============================================================================
2
3The Medical Imaging Interaction Toolkit (MITK)
4
5Copyright (c) German Cancer Research Center (DKFZ)
6All rights reserved.
7
8Use of this source code is governed by a 3-clause BSD license that can be
9found in the LICENSE file.
10
11============================================================================*/
12
13#ifndef QmitkComboBoxStepThrough_h
14#define QmitkComboBoxStepThrough_h
15
16#include <QComboBox>
17
24class QmitkComboBoxStepThrough : public QComboBox
25{
26 Q_OBJECT
27
28signals:
33 void SignalReachedEnd(bool);
34
40
41public slots:
46 void OnSetPreviousIndex();
47
52 void OnSetNextIndex();
53
54private slots:
58 void OnCurrentIndexChanged(int);
59
60public:
61 QmitkComboBoxStepThrough(QWidget* parent = nullptr);
63
64 // --> Overwritten superclass methods
65 void addItem( const QString & text, const QVariant & userData = QVariant() );
66 void addItem( const QIcon & icon, const QString & text, const QVariant & userData = QVariant() );
67 void addItems( const QStringList & texts );
68
69 void insertItem( int index, const QString & text, const QVariant & userData = QVariant() );
70 void insertItem( int index, const QIcon & icon, const QString & text, const QVariant & userData = QVariant() );
71 void insertItems( int index, const QStringList & list );
72 // Overwritten superclass methods <--
73
74private:
75 int m_LastMaxIndex;
76 int m_LastIndex;
77};
78
79#endif
Extension of QComboBox which offers stepping through the values.
QmitkComboBoxStepThrough(QWidget *parent=nullptr)
void addItem(const QString &text, const QVariant &userData=QVariant())
void insertItem(int index, const QString &text, const QVariant &userData=QVariant())
void insertItems(int index, const QStringList &list)
void addItems(const QStringList &texts)