]> git.lyx.org Git - lyx.git/blob - src/frontends/qt4/GuiLog.h
5aa3f6041fcbb2674877b01898bbd44d336af479
[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         /// find content
39         void find();
40         /// jump to next error message
41         void on_nextErrorPB_clicked();
42         /// jump to next warning
43         void on_nextWarningPB_clicked();
44         /// open containing directory
45         void on_openDirPB_clicked();
46         /// Log type changed
47         void typeChanged(int);
48
49 private:
50         /// Apply changes
51         void applyView() {}
52
53         /// log syntax highlighter
54         LogHighlighter * highlighter;
55
56         /** \param data should contain "<logtype> <logfile>"
57          *  where <logtype> is one of "latex", "literate", "lyx2lyx", "vc".
58          */
59         bool initialiseParams(std::string const & data);
60         ///
61         void clearParams();
62         ///
63         void dispatchParams() {}
64         ///
65         bool isBufferDependent() const { return true; }
66
67         /// The title displayed by the dialog reflects the \c LogType
68         docstring title() const;
69         /// put the log file into the ostream
70         void getContents(std::ostream & ss) const;
71         /// go to the next occurence of the RegExp
72         void goTo(QRegExp const & exp) const;
73         /// does the document after cursor position contain the RegExp?
74         bool contains(QRegExp const & exp) const;
75
76 private:
77         /// Recognized log file-types
78         enum LogType {
79                 LatexLog,
80                 LiterateLog,
81                 Lyx2lyxLog,
82                 VCLog
83         };
84
85         LogType type_;
86         support::FileName logfile_;
87 };
88
89
90 } // namespace frontend
91 } // namespace lyx
92
93 #endif // GUILOG_H