]> git.lyx.org Git - lyx.git/blob - src/frontends/qt4/QChangesDialog.h
renaming in frontends/qt4/ui: s/Q//g
[lyx.git] / src / frontends / qt4 / QChangesDialog.h
1 // -*- C++ -*-
2 /**
3  * \file QChangesDialog.h
4  * This file is part of LyX, the document processor.
5  * Licence details can be found in the file COPYING.
6  *
7  * \author John Levon
8  *
9  * Full author contact details are available in file CREDITS.
10  */
11
12 #ifndef QCHANGESDIALOG_H
13 #define QCHANGESDIALOG_H
14
15 #include "ui/ChangesUi.h"
16
17 #include <QCloseEvent>
18 #include <QDialog>
19
20 namespace lyx {
21 namespace frontend {
22
23 class QChanges;
24
25 class QChangesDialog : public QDialog, public Ui::QChangesUi {
26         Q_OBJECT
27 public:
28
29         QChangesDialog(QChanges * form);
30
31 protected Q_SLOTS:
32
33         virtual void nextPressed();
34         virtual void acceptPressed();
35         virtual void rejectPressed();
36
37 protected:
38         virtual void closeEvent(QCloseEvent * e);
39
40 private:
41         QChanges * form_;
42 };
43
44 } // namespace frontend
45 } // namespace lyx
46
47 #endif // QCHANGESDIALOG_H