]> git.lyx.org Git - lyx.git/blob - src/frontends/qt4/GuiLog.h
Complete the removal of the embedding stuff. Maybe. It's hard to be sure we got every...
[lyx.git] / src / frontends / qt4 / GuiLog.h
1 // -*- C++ -*-
2 /**
3  * \file GuiLog.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  * \author Angus Leeming
9  *
10  * Full author contact details are available in file CREDITS.
11  */
12
13 #ifndef GUILOG_H
14 #define GUILOG_H
15
16 #include "GuiDialog.h"
17 #include "ui_LogUi.h"
18
19 #include "support/FileName.h"
20
21
22 namespace lyx {
23 namespace frontend {
24
25 class LogHighlighter;
26
27 class GuiLog : public GuiDialog, public Ui::LogUi
28 {
29         Q_OBJECT
30
31 public:
32         GuiLog(GuiView & lv);
33
34 private Q_SLOTS:
35         void updateContents();
36         // copy log to clipboard
37         void on_copyPB_clicked();
38
39 private:
40         /// Apply changes
41         void applyView() {}
42
43         /// log syntax highlighter
44         LogHighlighter * highlighter;
45
46         /** \param data should contain "<logtype> <logfile>"
47          *  where <logtype> is one of "latex", "literate", "lyx2lyx", "vc".
48          */
49         bool initialiseParams(std::string const & data);
50         ///
51         void clearParams();
52         ///
53         void dispatchParams() {}
54         ///
55         bool isBufferDependent() const { return true; }
56
57         /// The title displayed by the dialog reflects the \c LogType
58         docstring title() const;
59         /// put the log file into the ostream
60         void getContents(std::ostream & ss) const;
61
62 private:
63         /// Recognized log file-types
64         enum LogType {
65                 LatexLog,
66                 LiterateLog,
67                 Lyx2lyxLog,
68                 VCLog
69         };
70
71         LogType type_;
72         support::FileName logfile_;
73 };
74
75
76 } // namespace frontend
77 } // namespace lyx
78
79 #endif // GUILOG_H