]> git.lyx.org Git - lyx.git/blob - src/frontends/qt4/GuiProgressView.cpp
* fix spelling in comments to please John.
[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_->debugMessagesTW->setSizePolicy(QSizePolicy::Ignored,
57                                                 QSizePolicy::Expanding);
58         widget_->adjustSize();
59         setWidget(widget_);
60
61         QFont font(guiApp->typewriterFontName());
62         font.setKerning(false);
63         font.setFixedPitch(true);
64         font.setStyleHint(QFont::TypeWriter);
65         widget_->outTE->setFont(font);
66         widget_->tabWidget->widget(0)->setContentsMargins(-5, -7, 0, -7);
67
68         connect(widget_->debugNoneRB, SIGNAL(clicked()),
69                 this, SLOT(debugSelectionChanged()));
70         connect(widget_->debugSelectedRB, SIGNAL(clicked()),
71                 this, SLOT(debugSelectionChanged()));
72         connect(widget_->debugAnyRB, SIGNAL(clicked()),
73                 this, SLOT(debugSelectionChanged()));
74         widget_->debugMessagesTW->setEnabled(false);
75         widget_->debugNoneRB->setChecked(true);
76
77         // ignore Debug::NONE and Debug::ANY
78         int const level_count = Debug::levelCount() - 1;
79         QTreeWidgetItem * item = 0;
80         widget_->debugMessagesTW->setColumnCount(2);
81         widget_->debugMessagesTW->headerItem()->setText(0, qt_("Debug Level"));
82         widget_->debugMessagesTW->headerItem()->setText(1, qt_("Set"));
83         for (int i = 1 ; i < level_count; i++) {
84                 item = new QTreeWidgetItem(widget_->debugMessagesTW);
85                 Debug::Type const level = Debug::value(i);
86                 item->setText(0, qt_(Debug::description(level)));
87                 item->setData(0, Qt::UserRole, int(level));
88                 item->setText(1, qt_("No"));
89         }
90         widget_->debugMessagesTW->resizeColumnToContents(0);
91         widget_->debugMessagesTW->resizeColumnToContents(1);
92         connect(widget_->debugMessagesTW,
93                 SIGNAL(itemActivated(QTreeWidgetItem *, int)),
94                 this, SLOT(debugMessageActivated(QTreeWidgetItem *, int)));
95   
96         GuiProgress * progress =
97                 dynamic_cast<GuiProgress *>(ProgressInterface::instance());
98
99         if (progress) {
100                 connect(progress, SIGNAL(processStarted(QString const &)),
101                         this, SLOT(appendText(QString const &)));
102                 //connect(progress, SIGNAL(processFinished(QString const &)),
103                 //      this, SLOT(appendText(QString const &)));
104                 connect(progress, SIGNAL(appendMessage(QString const &)),
105                         this, SLOT(appendText(QString const &)));
106                 connect(progress, SIGNAL(appendLyXErrMessage(QString const &)),
107                         this, SLOT(appendLyXErrText(QString const &)));
108                 connect(progress, SIGNAL(appendError(QString const &)),
109                         this, SLOT(appendText(QString const &)));
110                 connect(progress, SIGNAL(clearMessages()), this, SLOT(clearText()));
111                 progress->lyxerrConnect();
112         }
113 }
114
115
116 void GuiProgressView::debugMessageActivated(QTreeWidgetItem * item, int)
117 {
118         if (item == 0)
119                 return;
120
121         QString const no = qt_("No");
122         QString const yes = qt_("Yes");
123
124         bool selected = (item->text(1) == yes);
125         item->setText(1, selected ? no : yes);
126
127         levelChanged();
128 }
129
130
131 void GuiProgressView::levelChanged()
132 {
133         int level = Debug::NONE;
134         QTreeWidgetItemIterator it(widget_->debugMessagesTW);
135         while (*it) {
136                 if ((*it)->text(1) == qt_("Yes"))
137                         level |= (*it)->data(0, Qt::UserRole).toInt();
138                 ++it;
139         }
140         dispatch(FuncRequest(LFUN_DEBUG_LEVEL_SET, convert<string>(level)));
141 }
142
143
144 void GuiProgressView::debugSelectionChanged()
145 {
146         int level = Debug::NONE;
147         if (widget_->debugAnyRB->isChecked())
148                 level = Debug::ANY;
149         else if (widget_->debugSelectedRB->isChecked()) {
150                 widget_->debugMessagesTW->setEnabled(true);
151                 levelChanged();
152                 return;
153         }
154         widget_->debugMessagesTW->setEnabled(false);
155         dispatch(FuncRequest(LFUN_DEBUG_LEVEL_SET, convert<string>(level)));
156 }
157
158
159 void GuiProgressView::clearText()
160 {
161         if (widget_->autoClearCB->isChecked())
162                 widget_->outTE->clear();
163 }
164
165
166 void GuiProgressView::appendLyXErrText(QString const & text)
167 {
168         widget_->outTE->moveCursor(QTextCursor::End);
169         widget_->outTE->insertPlainText(text);
170         widget_->outTE->ensureCursorVisible();
171
172         // Give the user a chance to disable debug messages because
173         // showing Debug::ANY messages completely blocks the GUI.
174         // Text is not always send as the whole line, so we must be
175         // careful about eolns.
176         // WARNING: processing events could cause crashes!
177         // TODO: find a better solution
178         if (text.endsWith("\n"))
179                 QApplication::processEvents();
180 }
181
182
183 void GuiProgressView::appendText(QString const & text)
184 {
185         if (text.isEmpty() || !widget_->sbarCB->isChecked())
186                 return;
187         QString str = QTime::currentTime().toString();
188         str += ": " + text;
189         if (!text.endsWith("\n"))
190                 str += "\n";
191
192         widget_->outTE->moveCursor(QTextCursor::End);
193         widget_->outTE->insertPlainText(str);
194         widget_->outTE->ensureCursorVisible();
195 }
196
197
198 void GuiProgressView::saveSession() const
199 {
200         Dialog::saveSession();
201         QSettings settings;
202         settings.setValue(
203                 sessionKey() + "/autoclear", widget_->autoClearCB->isChecked());
204         settings.setValue(
205                 sessionKey() + "/statusbarmsgs", widget_->sbarCB->isChecked());
206 }
207
208
209 void GuiProgressView::restoreSession()
210 {
211         DockView::restoreSession();
212         QSettings settings;
213         widget_->autoClearCB->setChecked(
214                 settings.value(sessionKey() + "/autoclear", true).toBool());
215         widget_->sbarCB->setChecked(
216                 settings.value(sessionKey() + "/statusbarmsgs", true).toBool());
217 }
218
219
220 void GuiProgressView::showEvent(QShowEvent*)
221 {
222         ProgressInterface::instance()->lyxerrConnect();
223 }
224
225
226 void GuiProgressView::hideEvent(QHideEvent*)
227 {
228         ProgressInterface::instance()->lyxerrDisconnect();
229 }
230
231
232 Dialog * createGuiProgressView(GuiView & guiview)
233 {
234 #ifdef Q_WS_MACX
235         return new GuiProgressView(guiview, Qt::RightDockWidgetArea, Qt::Drawer);
236 #else
237         return new GuiProgressView(guiview, Qt::BottomDockWidgetArea);
238 #endif
239 }
240
241
242
243 } // namespace frontend
244 } // namespace lyx
245
246 #include "moc_GuiProgressView.cpp"