ModelRailroadTimetablePlanner/src/viewmanager/sessionstartendrsviewer.h
2021-03-16 10:46:22 +01:00

30 lines
535 B
C++

#ifndef SESSIONSTARTENDRSVIEWER_H
#define SESSIONSTARTENDRSVIEWER_H
#include <QWidget>
class QTreeView;
class QComboBox;
class SessionStartEndModel;
class SessionStartEndRSViewer : public QWidget
{
Q_OBJECT
public:
explicit SessionStartEndRSViewer(QWidget *parent = nullptr);
private slots:
void orderChanged();
void modeChanged();
void exportSheet();
private:
SessionStartEndModel *model;
QTreeView *view;
QComboBox *modeCombo;
QComboBox *orderCombo;
};
#endif // SESSIONSTARTENDRSVIEWER_H