]> git.lyx.org Git - lyx.git/blob - src/frontends/qt4/GuiProgressView.cpp
e9d249986adcd121be97e11425a417eacfb9980a
[lyx.git] / src / frontends / qt4 / GuiProgressView.cpp
1 // -*- C++ -*-
2 /**
3  * \file GuiProgressView.cpp
4  * This file is part of LyX, the document processor.
5  * Licence details can be found in the file COPYING.
6  *
7  * \author Peter Kümmel
8  * \author Pavel Sanda
9  * \author Jürgen Spitzmüller
10  *
11  * Full author contact details are available in file CREDITS.
12  */
13
14 #include <config.h>
15
16 #include "GuiProgressView.h"
17
18 #include "GuiApplication.h"
19 #include "qt_helpers.h"
20
21 #include "FuncRequest.h"
22
23 #include "support/convert.h"
24 #include "support/debug.h"
25
26 #include <QCheckBox>
27 #include <QDebug>
28 #include <QSettings>
29 #include <QTime>
30
31 using namespace std;
32 using namespace lyx::support;
33
34 namespace lyx {
35 namespace frontend {
36
37
38 ProgressViewWidget::ProgressViewWidget()
39 {
40         setupUi(this);
41 }
42
43
44 GuiProgressView::~GuiProgressView()
45 {
46         delete widget_;
47 }
48
49
50 GuiProgressView::GuiProgressView(GuiView & parent, Qt::DockWidgetArea area, 
51         Qt::WindowFlags flags)
52         : DockView(parent, "progress", qt_("Progress/Debug Messages"), area, flags)
53 {
54         widget_ = new ProgressViewWidget();
55         widget_->setMinimumHeight(150);
56         widget_->adjustSize();
57         setWidget(widget_);
58
59         QFont font(guiApp->typewriterFontName());
60         font.setKerning(false);
61         font.setFixedPitch(true);
62         font.setStyleHint(QFont::TypeWriter);
63         widget_->outTE->setFont(font);
64         widget_->tabWidget->widget(0)->setContentsMargins(-5, -7, 0, -7);
65
66         connect(widget_->debugNoneRB, SIGNAL(clicked()),
67                 this, SLOT(debugSelectionChanged()));
68         connect(widget_->debugSelectedRB, SIGNAL(clicked()),
69                 this, SLOT(debugSelectionChanged()));
70         connect(widget_->debugAnyRB, SIGNAL(clicked()),
71                 this, SLOT(debugSelectionChanged()));
72         widget_->debugMessagesTW->setEnabled(false);
73         widget_->debugNoneRB->setChecked(true);
74
75         // ignore Debug::NONE and Debug::ANY
76         int const level_count = Debug::levelCount() - 1;
77         QTreeWidgetItem * item = 0;
78         widget_->debugMessagesTW->setColumnCount(2);
79         widget_->debugMessagesTW->headerItem()->setText(0, qt_("Debug Level"));
80         widget_->debugMessagesTW->headerItem()->setText(1, qt_("Set"));
81         for (int i = 1 ; i < level_count; i++) {
82                 item = new QTreeWidgetItem(widget_->debugMessagesTW);
83                 Debug::Type const level = Debug::value(i);
84                 item->setText(0, qt_(Debug::description(level)));
85                 item->setData(0, Qt::UserRole, int(level));
86                 item->setText(1, qt_("No"));
87         }
88         widget_->debugMessagesTW->resizeColumnToContents(0);
89         widget_->debugMessagesTW->resizeColumnToContents(1);
90         connect(widget_->debugMessagesTW,
91                 SIGNAL(itemActivated(QTreeWidgetItem *, int)),
92                 this, SLOT(debugMessageActivated(QTreeWidgetItem *, int)));
93   
94         GuiProgress * progress =
95                 dynamic_cast<GuiProgress *>(ProgressInterface::instance());
96
97         if (progress) {
98                 connect(progress, SIGNAL(processStarted(QString const &)),
99                         this, SLOT(appendText(QString const &)));
100                 //connect(progress, SIGNAL(processFinished(QString const &)),
101                 //      this, SLOT(appendText(QString const &)));
102                 connect(progress, SIGNAL(appendMessage(QString const &)),
103                         this, SLOT(appendText(QString const &)));
104                 connect(progress, SIGNAL(appendLyXErrMessage(QString const &)),
105                         this, SLOT(appendLyXErrText(QString const &)));
106                 connect(progress, SIGNAL(appendError(QString const &)),
107                         this, SLOT(appendText(QString const &)));
108                 connect(progress, SIGNAL(clearMessages()), this, SLOT(clearText()));
109                 progress->lyxerrConnect();
110         }
111 }
112
113
114 void GuiProgressView::debugMessageActivated(QTreeWidgetItem * item, int)
115 {
116         if (item == 0)
117                 return;
118
119         QString const no = qt_("No");
120         QString const yes = qt_("Yes");
121
122         bool selected = (item->text(1) == yes);
123         item->setText(1, selected ? no : yes);
124
125         levelChanged();
126 }
127
128
129 void GuiProgressView::levelChanged()
130 {
131         int level = Debug::NONE;
132         QTreeWidgetItemIterator it(widget_->debugMessagesTW);
133         while (*it) {
134                 if ((*it)->text(1) == qt_("Yes"))
135                         level |= (*it)->data(0, Qt::UserRole).toInt();
136                 ++it;
137         }
138         dispatch(FuncRequest(LFUN_DEBUG_LEVEL_SET, convert<string>(level)));
139 }
140
141
142 void GuiProgressView::debugSelectionChanged()
143 {
144         int level = Debug::NONE;
145         if (widget_->debugAnyRB->isChecked())
146                 level = Debug::ANY;
147         else if (widget_->debugSelectedRB->isChecked()) {
148                 widget_->debugMessagesTW->setEnabled(true);
149                 levelChanged();
150                 return;
151         }
152         widget_->debugMessagesTW->setEnabled(false);
153         dispatch(FuncRequest(LFUN_DEBUG_LEVEL_SET, convert<string>(level)));
154 }
155
156
157 void GuiProgressView::clearText()
158 {
159         if (widget_->autoClearCB->isChecked())
160                 widget_->outTE->clear();
161 }
162
163
164 void GuiProgressView::appendLyXErrText(QString const & text)
165 {
166         widget_->outTE->moveCursor(QTextCursor::End);
167         widget_->outTE->insertPlainText(text);
168         widget_->outTE->ensureCursorVisible();
169
170         // Give the user a chance to disable debug messages because
171         // showing Debug::ANY messages completely blocks the GUI.
172         // Text is not always send as the whole line, so we must be
173         // careful about eolns.
174         if (text.endsWith("\n"))
175                 QApplication::processEvents();
176 }
177
178
179 void GuiProgressView::appendText(QString const & text)
180 {
181         if (text.isEmpty() || !widget_->sbarCB->isChecked())
182                 return;
183         QString str = QTime::currentTime().toString();
184         str += ": " + text;
185         if (!text.endsWith("\n"))
186                 str += "\n";
187
188         widget_->outTE->moveCursor(QTextCursor::End);
189         widget_->outTE->insertPlainText(str);
190         widget_->outTE->ensureCursorVisible();
191 }
192
193
194 void GuiProgressView::saveSession() const
195 {
196         Dialog::saveSession();
197         QSettings settings;
198         settings.setValue(
199                 sessionKey() + "/autoclear", widget_->autoClearCB->isChecked());
200         settings.setValue(
201                 sessionKey() + "/statusbarmsgs", widget_->sbarCB->isChecked());
202 }
203
204
205 void GuiProgressView::restoreSession()
206 {
207         DockView::restoreSession();
208         QSettings settings;
209         widget_->autoClearCB->setChecked(
210                 settings.value(sessionKey() + "/autoclear", true).toBool());
211         widget_->sbarCB->setChecked(
212                 settings.value(sessionKey() + "/statusbarmsgs", true).toBool());
213 }
214
215
216 void GuiProgressView::showEvent(QShowEvent*)
217 {
218         ProgressInterface::instance()->lyxerrConnect();
219 }
220
221
222 void GuiProgressView::hideEvent(QHideEvent*)
223 {
224         ProgressInterface::instance()->lyxerrDisconnect();
225 }
226
227
228 Dialog * createGuiProgressView(GuiView & guiview)
229 {
230 #ifdef Q_WS_MACX
231         return new GuiProgressView(guiview, Qt::RightDockWidgetArea, Qt::Drawer);
232 #else
233         return new GuiProgressView(guiview, Qt::BottomDockWidgetArea);
234 #endif
235 }
236
237
238
239 } // namespace frontend
240 } // namespace lyx
241
242 #include "moc_GuiProgressView.cpp"