ATLAS Offline Software
Loading...
Searching...
No Matches
VP1SelectEvent.h
Go to the documentation of this file.
1/*
2 Copyright (C) 2002-2023 CERN for the benefit of the ATLAS collaboration
3*/
4
6// //
7// Header file for class VP1SelectEvent //
8// //
9// Description: Dialog for the selection of a specific event in a file //
10// //
11// Author: Sebastian Andreas Merkt (sebastian.andreas.merkt@cern.ch) //
12// Initial version: August 2018 //
13// //
15
16#ifndef VP1SELECTEVENT_H
17#define VP1SELECTEVENT_H
18
19#include <QDialog>
20#include <QPushButton>
21#include <QDialogButtonBox>
22#include <QSpinBox>
23
24class VP1SelectEvent : public QDialog
25{
26 Q_OBJECT
27public:
28 explicit VP1SelectEvent(int totEvtNr, int evtNr, QWidget *parent = 0);
29
30public Q_SLOTS:
31
32private:
33 void passEvtNr();
34 void reject();
35
36 QPushButton* m_cancelButton;
37 QPushButton* m_openButton;
38 QDialogButtonBox* m_buttonBox;
39 QSpinBox* m_spinBox;
40};
41
42#endif // VP1SELECTEVENT_H
QPushButton * m_openButton
VP1SelectEvent(int totEvtNr, int evtNr, QWidget *parent=0)
QDialogButtonBox * m_buttonBox
QPushButton * m_cancelButton
QSpinBox * m_spinBox