]> git.lyx.org Git - lyx.git/blob - src/frontends/qt4/GuiChanges.h
cosmetics
[lyx.git] / src / frontends / qt4 / GuiChanges.h
1 // -*- C++ -*-
2 /**
3  * \file GuiChanges.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 GUICHANGES_H
13 #define GUICHANGES_H
14
15 #include "GuiDialog.h"
16 #include "ControlChanges.h"
17 #include "ui_ChangesUi.h"
18
19 namespace lyx {
20 namespace frontend {
21
22 class GuiChangesDialog : public GuiDialog, public Ui::ChangesUi
23 {
24         Q_OBJECT
25
26 public:
27         GuiChangesDialog(LyXView & lv);
28
29 protected Q_SLOTS:
30         void nextPressed();
31         void acceptPressed();
32         void rejectPressed();
33
34 private:
35         void closeEvent(QCloseEvent * e);
36         ControlChanges & controller();
37         void updateContents();
38 };
39
40 } // namespace frontend
41 } // namespace lyx
42
43 #endif // GUICHANGES_H