DUNE-DAQ
DUNE Trigger and Data Acquisition software
Loading...
Searching...
No Matches
CommitDialog.hpp
Go to the documentation of this file.
1// DUNE DAQ modification notice:
2// This file has been modified from the original ATLAS dbe source for the DUNE DAQ project.
3// Fork baseline commit: dbe-02-12-17 (2022-05-12).
4// Renamed since fork: yes (from dbe/CommitDialog.h to include/dbe/CommitDialog.hpp).
5
6#ifndef COMMITDIALOG_H
7#define COMMITDIALOG_H
8
10#include <QDialog>
12#include "ui_CommitDialog.h"
13
14#include <memory>
15
16namespace dbe
17{
18
19namespace Ui
20{
21class CommitDialog;
22} // namespace Ui
23
24class CommitDialog: public QDialog, private Ui::CommitDialog
25{
26 Q_OBJECT
27public:
29 CommitDialog ( QWidget * parent = 0 );
30
31 void SetController();
32 QString GetCommitMessage() const;
33
34private:
35 std::unique_ptr<dbe::Ui::CommitDialog> ui;
36
37private slots:
38 void CommitMessageEdited ();
39 void OkCommitMessage();
41};
42
43} // namespace dbe
44#endif // COMMITDIALOG_H
~CommitDialog()
Including DBE.
CommitDialog(QWidget *parent=0)
std::unique_ptr< dbe::Ui::CommitDialog > ui
QString GetCommitMessage() const
Include QT Headers.