]> git.lyx.org Git - lyx.git/blob - src/frontends/qt4/GuiViewSource.cpp
* a configuration value for the mouse wheel scrolling speed:
[lyx.git] / src / frontends / qt4 / GuiViewSource.cpp
1 /**
2  * \file GuiViewSource.cpp
3  * This file is part of LyX, the document processor.
4  * Licence details can be found in the file COPYING.
5  *
6  * \author John Levon
7  * \author Bo Peng
8  * \author Abdelrazak Younes
9  *
10  * Full author contact details are available in file CREDITS.
11  */
12
13 #include <config.h>
14
15 #include "GuiApplication.h"
16 #include "GuiViewSource.h"
17 #include "LaTeXHighlighter.h"
18 #include "qt_helpers.h"
19
20 #include "BufferView.h"
21 #include "Buffer.h"
22 #include "Cursor.h"
23 #include "Paragraph.h"
24 #include "TexRow.h"
25
26 #include "support/docstream.h"
27 #include "support/gettext.h"
28
29 #include <QTextCursor>
30 #include <QTextDocument>
31
32 using namespace std;
33
34 namespace lyx {
35 namespace frontend {
36
37 ViewSourceWidget::ViewSourceWidget(GuiViewSource & controller)
38         :       controller_(controller), document_(new QTextDocument(this)),
39                 highlighter_(new LaTeXHighlighter(document_))
40 {
41         setupUi(this);
42         setWindowTitle(qt_("LaTeX Source"));
43
44         connect(viewFullSourceCB, SIGNAL(clicked()),
45                 this, SLOT(updateView()));
46         connect(autoUpdateCB, SIGNAL(toggled(bool)),
47                 updatePB, SLOT(setDisabled(bool)));
48         connect(updatePB, SIGNAL(clicked()),
49                 this, SLOT(updateView()));
50
51         // setting a document at this point trigger an assertion in Qt
52         // so we disable the signals here:
53         document_->blockSignals(true);
54         viewSourceTV->setDocument(document_);
55         document_->blockSignals(false);
56         viewSourceTV->setReadOnly(true);
57         ///dialog_->viewSourceTV->setAcceptRichText(false);
58         // this is personal. I think source code should be in fixed-size font
59         QFont font(guiApp->typewriterFontName());
60         font.setKerning(false);
61         font.setFixedPitch(true);
62         font.setStyleHint(QFont::TypeWriter);
63         viewSourceTV->setFont(font);
64         // again, personal taste
65         viewSourceTV->setWordWrapMode(QTextOption::NoWrap);
66 }
67
68
69 void ViewSourceWidget::updateView()
70 {
71         if (autoUpdateCB->isChecked())
72                 update(viewFullSourceCB->isChecked());
73
74         GuiViewSource::Row row = controller_.getRows();
75         QTextCursor c = QTextCursor(viewSourceTV->document());
76         c.movePosition(QTextCursor::NextBlock, QTextCursor::MoveAnchor, row.begin);
77         c.select(QTextCursor::BlockUnderCursor);
78         c.movePosition(QTextCursor::NextBlock, QTextCursor::KeepAnchor,
79                 row.end - row.begin + 1);
80         viewSourceTV->setTextCursor(c);
81 }
82
83
84 void ViewSourceWidget::update(bool full_source)
85 {
86         document_->setPlainText(controller_.getContent(full_source));
87 }
88
89
90 GuiViewSource::GuiViewSource(GuiView & parent,
91                 Qt::DockWidgetArea area, Qt::WindowFlags flags)
92         : DockView(parent, "view-source", area, flags)
93 {
94         widget_ = new ViewSourceWidget(*this);
95         setWidget(widget_);
96         setWindowTitle(widget_->windowTitle());
97 }
98
99
100 GuiViewSource::~GuiViewSource()
101 {
102         delete widget_;
103 }
104
105
106 void GuiViewSource::updateView()
107 {
108         widget_->updateView();
109 }
110
111
112 bool GuiViewSource::initialiseParams(string const & /*source*/)
113 {
114         setWindowTitle(title());
115         return true;
116 }
117
118
119 QString GuiViewSource::getContent(bool fullSource)
120 {
121         // get the *top* level paragraphs that contain the cursor,
122         // or the selected text
123         pit_type par_begin;
124         pit_type par_end;
125
126         BufferView * view = bufferview();
127         if (!view->cursor().selection()) {
128                 par_begin = view->cursor().bottom().pit();
129                 par_end = par_begin;
130         } else {
131                 par_begin = view->cursor().selectionBegin().bottom().pit();
132                 par_end = view->cursor().selectionEnd().bottom().pit();
133         }
134         if (par_begin > par_end)
135                 swap(par_begin, par_end);
136         odocstringstream ostr;
137         view->buffer().getSourceCode(ostr, par_begin, par_end + 1, fullSource);
138         return toqstr(ostr.str());
139 }
140
141
142 GuiViewSource::Row GuiViewSource::getRows() const
143 {
144         BufferView const * view = bufferview();
145         CursorSlice beg = view->cursor().selectionBegin().bottom();
146         CursorSlice end = view->cursor().selectionEnd().bottom();
147
148         int begrow = view->buffer().texrow().
149                 getRowFromIdPos(beg.paragraph().id(), beg.pos());
150         int endrow = view->buffer().texrow().
151                 getRowFromIdPos(end.paragraph().id(), end.pos());
152         int nextendrow = view->buffer().texrow().
153                 getRowFromIdPos(end.paragraph().id(), end.pos() + 1);
154         Row row;
155         row.begin = begrow;
156         row.end = endrow == nextendrow ? endrow : (nextendrow - 1);
157         return row;
158 }
159
160
161 QString GuiViewSource::title() const
162 {
163         switch (docType()) {
164                 case LATEX:
165                         return qt_("LaTeX Source");
166                 case DOCBOOK:
167                         return qt_("DocBook Source");
168                 case LITERATE:
169                         return qt_("Literate Source");
170         }
171         BOOST_ASSERT(false);
172         return QString();
173 }
174
175
176 Dialog * createGuiViewSource(GuiView & lv)
177 {
178         return new GuiViewSource(lv);
179 }
180
181
182 } // namespace frontend
183 } // namespace lyx
184
185 #include "GuiViewSource_moc.cpp"