]> git.lyx.org Git - lyx.git/blob - src/frontends/qt2/QVCLog.h
port the various dialogs to display the contents of an external file to the new Dialo...
[lyx.git] / src / frontends / qt2 / QVCLog.h
1 // -*- C++ -*-
2 /**
3  * \file QVCLog.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 QVCLOG_H
13 #define QVCLOG_H
14
15
16 #include "QDialogView.h"
17
18
19 class ControlVCLog;
20 class QVCLogDialog;
21
22 ///
23 class QVCLog
24         : public QController<ControlVCLog, QView<QVCLogDialog> >
25 {
26 public:
27         ///
28         friend class QVCLogDialog;
29         ///
30         QVCLog(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 // QVCLOG_H