]> git.lyx.org Git - lyx.git/blob - src/frontends/qt2/QLog.h
Minipage is no more (long live the box inset)
[lyx.git] / src / frontends / qt2 / QLog.h
1 // -*- C++ -*-
2 /**
3  * \file QLog.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 QLOG_H
13 #define QLOG_H
14
15
16 #include "QDialogView.h"
17
18
19 class ControlLog;
20 class QLogDialog;
21
22 ///
23 class QLog
24         : public QController<ControlLog, QView<QLogDialog> >
25 {
26 public:
27         ///
28         friend class QLogDialog;
29         ///
30         QLog(Dialog &);
31 private:
32         /// Apply changes
33         virtual void apply() {}
34         /// update
35         virtual void update_contents();
36         /// build the dialog
37         virtual void build_dialog();
38 };
39
40 #endif // QLOG_H