]> git.lyx.org Git - lyx.git/blob - src/frontends/qt4/GuiCompareHistory.h
Improve wording (#10670)
[lyx.git] / src / frontends / qt4 / GuiCompareHistory.h
1 // -*- C++ -*-
2 /**
3  * \file GuiCompareHistory.h
4  * This file is part of LyX, the document processor.
5  * Licence details can be found in the file COPYING.
6  *
7  * \author Pavel Sanda
8  *
9  * Full author contact details are available in file CREDITS.
10  */
11
12 #ifndef GUICOMPAREHISTORY_H
13 #define GUICOMPAREHISTORY_H
14
15 #include "GuiDialog.h"
16 #include "ui_CompareHistoryUi.h"
17
18
19 namespace lyx {
20 namespace frontend {
21
22
23 class GuiCompareHistory : public GuiDialog, public Ui::CompareHistoryUi
24 {
25         Q_OBJECT
26
27 public:
28         ///
29         GuiCompareHistory(GuiView & lv);
30
31 private Q_SLOTS:
32         ///
33         void slotOK();
34         ///
35         void slotCancel();
36         ///
37         void selectRevback();
38         ///
39         void selectBetweenrev();
40 private:
41         ///
42         void updateContents();
43         ///
44         bool initialiseParams(std::string const &);
45         ///
46         bool isBufferDependent() const { return true; }
47         ///
48         void clearParams() {}
49         ///
50         void dispatchParams() {}
51         ///
52         void enableControls();
53         
54 private:
55 };
56
57 } // namespace frontend
58 } // namespace lyx
59
60 #endif // GUICOMPAREHISTORY_H