]> git.lyx.org Git - lyx.git/blob - src/frontends/qt2/QVCLog.h
Lots and lots of little trivial bits.
[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 #ifdef __GNUG__
16 #pragma interface
17 #endif
18
19 #include "Qt2Base.h"
20
21 class ControlVCLog;
22 class QVCLogDialog;
23
24 ///
25 class QVCLog
26         : public Qt2CB<ControlVCLog, Qt2DB<QVCLogDialog> >
27 {
28 public:
29         ///
30         friend class QVCLogDialog;
31         ///
32         QVCLog();
33
34 private:
35         /// Apply changes
36         virtual void apply() {};
37         /// update
38         virtual void update_contents();
39         /// build the dialog
40         virtual void build_dialog();
41 };
42
43 #endif // QVCLOG_H