]> git.lyx.org Git - lyx.git/blob - src/frontends/qt4/GuiViewSource.cpp
Remove the .aux and .bbl files and update the citation labels
[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 "Buffer.h"
21 #include "BufferParams.h"
22 #include "BufferView.h"
23 #include "Cursor.h"
24 #include "Format.h"
25 #include "Paragraph.h"
26 #include "TexRow.h"
27
28 #include "support/debug.h"
29 #include "support/lassert.h"
30 #include "support/docstream.h"
31 #include "support/gettext.h"
32
33 #include <boost/crc.hpp>
34
35 #include <QSettings>
36 #include <QTextCursor>
37 #include <QTextDocument>
38 #include <QVariant>
39
40 using namespace std;
41
42 namespace lyx {
43 namespace frontend {
44
45 ViewSourceWidget::ViewSourceWidget()
46         :       bv_(0), document_(new QTextDocument(this)),
47                 highlighter_(new LaTeXHighlighter(document_)),
48                 force_getcontent_(true)
49 {
50         setupUi(this);
51
52         connect(contentsCO, SIGNAL(activated(int)),
53                 this, SLOT(contentsChanged()));
54         connect(autoUpdateCB, SIGNAL(toggled(bool)),
55                 updatePB, SLOT(setDisabled(bool)));
56         connect(autoUpdateCB, SIGNAL(toggled(bool)),
57                 this, SLOT(updateView()));
58         connect(updatePB, SIGNAL(clicked()),
59                 this, SLOT(updateView()));
60         connect(outputFormatCO, SIGNAL(activated(int)),
61                 this, SLOT(setViewFormat()));
62
63         // setting a document at this point trigger an assertion in Qt
64         // so we disable the signals here:
65         document_->blockSignals(true);
66         viewSourceTV->setDocument(document_);
67         document_->blockSignals(false);
68         viewSourceTV->setReadOnly(true);
69         ///dialog_->viewSourceTV->setAcceptRichText(false);
70         // this is personal. I think source code should be in fixed-size font
71         QFont font(guiApp->typewriterFontName());
72         font.setKerning(false);
73         font.setFixedPitch(true);
74         font.setStyleHint(QFont::TypeWriter);
75         viewSourceTV->setFont(font);
76         // again, personal taste
77         viewSourceTV->setWordWrapMode(QTextOption::NoWrap);
78 }
79
80
81 static size_t crcCheck(docstring const & s)
82 {
83         boost::crc_32_type crc;
84         crc.process_bytes(&s[0], sizeof(char_type) * s.size());
85         return crc.checksum();
86 }
87
88
89 /** get the source code of selected paragraphs, or the whole document
90         \param fullSource get full source code
91         \return true if the content has changed since last call.
92  */
93 static bool getContent(BufferView const * view, Buffer::OutputWhat output,
94                        QString & qstr, string const format, bool force_getcontent)
95 {
96         // get the *top* level paragraphs that contain the cursor,
97         // or the selected text
98         pit_type par_begin;
99         pit_type par_end;
100
101         if (!view->cursor().selection()) {
102                 par_begin = view->cursor().bottom().pit();
103                 par_end = par_begin;
104         } else {
105                 par_begin = view->cursor().selectionBegin().bottom().pit();
106                 par_end = view->cursor().selectionEnd().bottom().pit();
107         }
108         if (par_begin > par_end)
109                 swap(par_begin, par_end);
110         odocstringstream ostr;
111         view->buffer().getSourceCode(ostr, format, par_begin, par_end + 1, output);
112         docstring s = ostr.str();
113         static size_t crc = 0;
114         size_t newcrc = crcCheck(s);
115         if (newcrc == crc && !force_getcontent)
116                 return false;
117         crc = newcrc;
118         qstr = toqstr(s);
119         return true;
120 }
121
122
123 void ViewSourceWidget::setBufferView(BufferView const * bv)
124 {
125         if (bv_ != bv)
126                 force_getcontent_ = true;
127         bv_ = bv;
128         setEnabled(bv ?  true : false);
129 }
130
131
132 void ViewSourceWidget::contentsChanged()
133 {
134         if (autoUpdateCB->isChecked())
135                 updateView();
136 }
137
138
139 void ViewSourceWidget::setViewFormat()
140 {
141         view_format_ = outputFormatCO->itemData(
142               outputFormatCO->currentIndex()).toString();
143         updateView();
144 }
145
146 void ViewSourceWidget::updateView()
147 {
148         if (!bv_) {
149                 document_->setPlainText(QString());
150                 setEnabled(false);
151                 return;
152         }
153
154         setEnabled(true);
155
156         string const format = fromqstr(view_format_);
157
158         QString content;
159         Buffer::OutputWhat output = Buffer::CurrentParagraph;
160         if (contentsCO->currentIndex() == 1)
161                 output = Buffer::FullSource;
162         else if (contentsCO->currentIndex() == 2)
163                 output = Buffer::OnlyPreamble;
164         else if (contentsCO->currentIndex() == 3)
165                 output = Buffer::OnlyBody;
166
167         if (getContent(bv_, output, content, format, force_getcontent_))
168                 document_->setPlainText(content);
169
170         CursorSlice beg = bv_->cursor().selectionBegin().bottom();
171         CursorSlice end = bv_->cursor().selectionEnd().bottom();
172         int const begrow = bv_->buffer().texrow().
173                 getRowFromIdPos(beg.paragraph().id(), beg.pos());
174         int endrow = bv_->buffer().texrow().
175                 getRowFromIdPos(end.paragraph().id(), end.pos());
176         int const nextendrow = bv_->buffer().texrow().
177                 getRowFromIdPos(end.paragraph().id(), end.pos() + 1);
178         if (endrow != nextendrow)
179                 endrow = nextendrow - 1;
180
181         QTextCursor c = QTextCursor(viewSourceTV->document());
182         c.movePosition(QTextCursor::NextBlock, QTextCursor::MoveAnchor, begrow);
183         c.select(QTextCursor::BlockUnderCursor);
184         c.movePosition(QTextCursor::NextBlock, QTextCursor::KeepAnchor,
185                 endrow - begrow + 1);
186         viewSourceTV->setTextCursor(c);
187 }
188
189
190 void ViewSourceWidget::updateDefaultFormat()
191 {
192         if (!bv_)
193                 return;
194
195         outputFormatCO->blockSignals(true);
196         outputFormatCO->clear();
197         outputFormatCO->addItem(qt_("Default"),
198                                 QVariant(QString("default")));
199
200         int index = 0;
201         typedef vector<Format const *> Formats;
202         Formats formats = bv_->buffer().params().exportableFormats(true);
203         Formats::const_iterator cit = formats.begin();
204         Formats::const_iterator end = formats.end();
205         for (; cit != end; ++cit) {
206                 QString const fname = toqstr((*cit)->name());
207                 outputFormatCO->addItem(qt_((*cit)->prettyname()),
208                                 QVariant(fname));
209                 if (fname == view_format_)
210                     index = outputFormatCO->count() -1;
211         }
212         outputFormatCO->setCurrentIndex(index);
213         outputFormatCO->blockSignals(false);
214 }
215
216
217 GuiViewSource::GuiViewSource(GuiView & parent,
218                 Qt::DockWidgetArea area, Qt::WindowFlags flags)
219         : DockView(parent, "view-source", qt_("LaTeX Source"), area, flags)
220 {
221         widget_ = new ViewSourceWidget();
222         setWidget(widget_);
223 }
224
225
226 GuiViewSource::~GuiViewSource()
227 {
228         delete widget_;
229 }
230
231
232 void GuiViewSource::updateView()
233 {
234         if (widget_->autoUpdateCB->isChecked()) {
235                 widget_->setBufferView(bufferview());
236                 widget_->updateView();
237         }
238 }
239
240
241 void GuiViewSource::enableView(bool enable)
242 {
243         widget_->setBufferView(bufferview());
244         widget_->updateDefaultFormat();
245         if (!enable)
246                 // In the opposite case, updateView() will be called anyway.
247                 widget_->updateView();
248 }
249
250
251 bool GuiViewSource::initialiseParams(string const & /*source*/)
252 {
253         setWindowTitle(title());
254         return true;
255 }
256
257
258 QString GuiViewSource::title() const
259 {
260         switch (docType()) {
261                 case LATEX:
262                         return qt_("LaTeX Source");
263                 case DOCBOOK:
264                         return qt_("DocBook Source");
265                 case LITERATE:
266                         return qt_("Literate Source");
267         }
268         LASSERT(false, /**/);
269         return QString();
270 }
271
272
273 void GuiViewSource::saveSession() const
274 {
275         Dialog::saveSession();
276         QSettings settings;
277         // see below
278         // settings.setValue(
279         //      sessionKey() + "/output", widget_->contentsCO->currentIndex());
280         settings.setValue(
281                 sessionKey() + "/autoupdate", widget_->autoUpdateCB->isChecked());
282 }
283
284
285 void GuiViewSource::restoreSession()
286 {
287         DockView::restoreSession();
288         // FIXME: Full source updating is too slow to be done at startup.
289         //widget_->outputCO-setCurrentIndex(
290         //      settings.value(sessionKey() + "/output", false).toInt());
291         widget_->contentsCO->setCurrentIndex(0);
292         QSettings settings;
293         widget_->autoUpdateCB->setChecked(
294                 settings.value(sessionKey() + "/autoupdate", true).toBool());
295         widget_->updateView();
296 }
297
298
299 Dialog * createGuiViewSource(GuiView & lv)
300 {
301         return new GuiViewSource(lv);
302 }
303
304
305 } // namespace frontend
306 } // namespace lyx
307
308 #include "moc_GuiViewSource.cpp"