]> git.lyx.org Git - lyx.git/blob - src/frontends/qt2/QVCLogDialog.h
Lots and lots of little trivial bits.
[lyx.git] / src / frontends / qt2 / QVCLogDialog.h
1 // -*- C++ -*-
2 /**
3  * \file QVCLogDialog.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 QVCLOGDIALOG_H
13 #define QVCLOGDIALOG_H
14
15 #ifdef __GNUG__
16 #pragma interface
17 #endif
18
19 #include "ui/QVCLogDialogBase.h"
20
21 class QVCLog;
22
23 class QVCLogDialog : public QVCLogDialogBase
24 { Q_OBJECT
25
26 public:
27         QVCLogDialog(QVCLog * form);
28
29 protected slots:
30         virtual void updateClicked();
31
32 protected:
33         virtual void closeEvent(QCloseEvent * e);
34
35 private:
36         QVCLog * form_;
37 };
38
39 #endif // QVCLOGDIALOG_H