]> git.lyx.org Git - lyx.git/blob - src/frontends/qt4/GuiCompareHistory.h
Also display the info about BibTeX databases in the TeX info panel.
[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 #include "qt_helpers.h"
18
19
20 namespace lyx {
21 namespace frontend {
22
23
24 class GuiCompareHistory : public GuiDialog, public Ui::CompareHistoryUi
25 {
26         Q_OBJECT
27
28 public:
29         ///
30         GuiCompareHistory(GuiView & lv);
31
32 private Q_SLOTS:
33         ///
34         void slotOK();
35         ///
36         void slotCancel();
37         ///
38         void selectRevback();
39         ///
40         void selectBetweenrev();
41 private:
42         ///
43         void updateContents();
44         ///
45         bool initialiseParams(std::string const &);
46         ///
47         bool isBufferDependent() const { return true; }
48         ///
49         void clearParams() {}
50         ///
51         void dispatchParams() {}
52         ///
53         void enableControls();
54         
55 private:
56 };
57
58 } // namespace frontend
59 } // namespace lyx
60
61 #endif // GUICOMPAREHISTORY_H