]> git.lyx.org Git - lyx.git/blob - src/frontends/qt2/QChangesDialog.h
some tabular fixes for the problems reported by Helge
[lyx.git] / src / frontends / qt2 / 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/QChangesDialogBase.h"
16
17 namespace lyx {
18 namespace frontend {
19
20 class QChanges;
21
22 class QChangesDialog : public QChangesDialogBase {
23         Q_OBJECT
24 public:
25         QChangesDialog(QChanges * form);
26
27 protected slots:
28
29         virtual void nextPressed();
30         virtual void acceptPressed();
31         virtual void rejectPressed();
32
33 protected:
34         virtual void closeEvent(QCloseEvent * e);
35
36 private:
37         QChanges * form_;
38 };
39
40 } // namespace frontend
41 } // namespace lyx
42
43 #endif // QCHANGESDIALOG_H