]> git.lyx.org Git - lyx.git/blob - src/frontends/kde/logdlg.h
small cleanup, doxygen, formatting changes
[lyx.git] / src / frontends / kde / logdlg.h
1 /**
2  * \file logdlg.h
3  * Copyright 2001 the LyX Team
4  * Read the file COPYING
5  *
6  * \author John Levon
7  */
8
9 #ifndef LOGDLG_H
10 #define LOGDLG_H
11
12 #include <config.h>
13 #include "support/lstrings.h"
14  
15 #include "dlg/logdlgdata.h"
16
17 class DialogBase;
18
19 class LogDialog : public LogDialogData
20 {
21         Q_OBJECT
22
23 public:
24         LogDialog (DialogBase * f, QWidget * parent = NULL, char const * name = NULL);
25
26         virtual ~LogDialog();
27
28         void setLogText(string const & text);
29 private:
30         DialogBase * form_;
31 protected slots:
32         virtual void closePressed();
33         virtual void updatePressed();
34 };
35 #endif // LOGDLG_H