]> git.lyx.org Git - lyx.git/blob - src/frontends/qt4/GuiViewSource.h
Whitespace.
[lyx.git] / src / frontends / qt4 / GuiViewSource.h
1 // -*- C++ -*-
2 /**
3  * \file GuiViewSource.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 Bo Peng
9  * \author Abdelrazak Younes
10  *
11  * Full author contact details are available in file CREDITS.
12  */
13
14 #ifndef GUIVIEWSOURCE_H
15 #define GUIVIEWSOURCE_H
16
17 #include "ui_ViewSourceUi.h"
18
19 #include "DockView.h"
20 #include "GuiView.h"
21 #include "qt_helpers.h"
22
23 #include <QDockWidget>
24 #include <QString>
25 #include <QTextCharFormat>
26
27 class QTextDocument;
28
29 namespace lyx {
30 namespace frontend {
31
32 class GuiViewSource;
33 class LaTeXHighlighter;
34
35 class ViewSourceWidget : public QWidget, public Ui::ViewSourceUi
36 {
37         Q_OBJECT
38
39 public:
40         ViewSourceWidget();
41         ///
42         void setBufferView(BufferView const * bv);
43
44 public Q_SLOTS:
45         // update content
46         void updateView();
47
48 private:
49         ///
50         BufferView const * bv_;
51         ///
52         QTextDocument * document_;
53         /// LaTeX syntax highlighter
54         LaTeXHighlighter * highlighter_;
55 };
56
57
58 class GuiViewSource : public DockView
59 {
60         Q_OBJECT
61
62 public:
63         GuiViewSource(
64                 GuiView & parent, ///< the main window where to dock.
65                 Qt::DockWidgetArea area = Qt::BottomDockWidgetArea, ///< Position of the dock (and also drawer)
66                 Qt::WindowFlags flags = 0);
67
68         ~GuiViewSource();
69
70         /// Controller inherited method.
71         ///@{
72         bool initialiseParams(std::string const & source);
73         void clearParams() {}
74         void dispatchParams() {}
75         bool isBufferDependent() const { return true; }
76         bool canApply() const { return true; }
77         bool canApplyToReadOnly() const { return true; }
78         void updateView();
79         void enableView(bool enable);
80         void saveSession() const;
81         void restoreSession();
82         bool wantInitialFocus() const { return false; }
83         ///@}
84
85         /// The title displayed by the dialog reflects source type.
86         QString title() const;
87
88 private:
89         /// The encapsulated widget.
90         ViewSourceWidget * widget_;
91 };
92
93 } // namespace frontend
94 } // namespace lyx
95
96 #endif // GUIVIEWSOURCE_H