]> git.lyx.org Git - lyx.git/blob - src/frontends/qt2/QChangesDialog.h
Martin's changes to the Note inset.
[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 class QChanges;
18
19 class QChangesDialog : public QChangesDialogBase {
20         Q_OBJECT
21 public:
22         QChangesDialog(QChanges * form);
23
24 protected slots:
25
26         virtual void nextPressed();
27         virtual void acceptPressed();
28         virtual void rejectPressed();
29
30 protected:
31         virtual void closeEvent(QCloseEvent * e);
32
33 private:
34         QChanges * form_;
35 };
36
37 #endif // QCHANGESDIALOG_H