]> git.lyx.org Git - lyx.git/blob - src/frontends/qt4/GuiCompareHistory.h
Use <cstdint> instead of <boost/cstdint.hpp>
[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 slotButtonBox(QAbstractButton *);
38         ///
39         void selectRevback();
40         ///
41         void selectBetweenrev();
42 private:
43         ///
44         void updateContents();
45         ///
46         bool initialiseParams(std::string const &);
47         ///
48         bool isBufferDependent() const { return true; }
49         ///
50         void clearParams() {}
51         ///
52         void dispatchParams() {}
53         ///
54         void enableControls();
55
56 private:
57 };
58
59 } // namespace frontend
60 } // namespace lyx
61
62 #endif // GUICOMPAREHISTORY_H