]> git.lyx.org Git - lyx.git/blobdiff - src/frontends/qt4/GuiProgressView.cpp
* fix spelling in comments to please John.
[lyx.git] / src / frontends / qt4 / GuiProgressView.cpp
index fa01557e0c1e59c25a470c4988f5849842104906..004c70e86a69b1348dd07b434bd23c2775caa846 100644 (file)
@@ -5,6 +5,8 @@
  * Licence details can be found in the file COPYING.
  *
  * \author Peter Kümmel
+ * \author Pavel Sanda
+ * \author Jürgen Spitzmüller
  *
  * Full author contact details are available in file CREDITS.
  */
 
 #include "GuiProgressView.h"
 
+#include "GuiApplication.h"
 #include "qt_helpers.h"
 
+#include "FuncRequest.h"
+
+#include "support/convert.h"
 #include "support/debug.h"
 
+#include <QCheckBox>
+#include <QDebug>
+#include <QSettings>
 #include <QTime>
 
+using namespace std;
+using namespace lyx::support;
 
 namespace lyx {
 namespace frontend {
 
 
+ProgressViewWidget::ProgressViewWidget()
+{
+       setupUi(this);
+}
 
 
-GuiProgressView::GuiProgressView(GuiView & parent, Qt::DockWidgetArea area, 
-       Qt::WindowFlags flags) : DockView(parent, "progress", "Progress monitoring", area, flags)
+GuiProgressView::~GuiProgressView()
 {
-       setWindowTitle(qt_("Progress monitoring"));
-       setWidget(&text_edit);
-       text_edit.setReadOnly(true);
+       delete widget_;
+}
+
 
-       GuiProgress* progress = dynamic_cast<GuiProgress*>(support::ProgressInterface::instance());
+GuiProgressView::GuiProgressView(GuiView & parent, Qt::DockWidgetArea area, 
+       Qt::WindowFlags flags)
+       : DockView(parent, "progress", qt_("Progress/Debug Messages"), area, flags)
+{
+       widget_ = new ProgressViewWidget();
+       widget_->setMinimumHeight(150);
+       widget_->debugMessagesTW->setSizePolicy(QSizePolicy::Ignored,
+                                               QSizePolicy::Expanding);
+       widget_->adjustSize();
+       setWidget(widget_);
+
+       QFont font(guiApp->typewriterFontName());
+       font.setKerning(false);
+       font.setFixedPitch(true);
+       font.setStyleHint(QFont::TypeWriter);
+       widget_->outTE->setFont(font);
+       widget_->tabWidget->widget(0)->setContentsMargins(-5, -7, 0, -7);
+
+       connect(widget_->debugNoneRB, SIGNAL(clicked()),
+               this, SLOT(debugSelectionChanged()));
+       connect(widget_->debugSelectedRB, SIGNAL(clicked()),
+               this, SLOT(debugSelectionChanged()));
+       connect(widget_->debugAnyRB, SIGNAL(clicked()),
+               this, SLOT(debugSelectionChanged()));
+       widget_->debugMessagesTW->setEnabled(false);
+       widget_->debugNoneRB->setChecked(true);
+
+       // ignore Debug::NONE and Debug::ANY
+       int const level_count = Debug::levelCount() - 1;
+       QTreeWidgetItem * item = 0;
+       widget_->debugMessagesTW->setColumnCount(2);
+       widget_->debugMessagesTW->headerItem()->setText(0, qt_("Debug Level"));
+       widget_->debugMessagesTW->headerItem()->setText(1, qt_("Set"));
+       for (int i = 1 ; i < level_count; i++) {
+               item = new QTreeWidgetItem(widget_->debugMessagesTW);
+               Debug::Type const level = Debug::value(i);
+               item->setText(0, qt_(Debug::description(level)));
+               item->setData(0, Qt::UserRole, int(level));
+               item->setText(1, qt_("No"));
+       }
+       widget_->debugMessagesTW->resizeColumnToContents(0);
+       widget_->debugMessagesTW->resizeColumnToContents(1);
+       connect(widget_->debugMessagesTW,
+               SIGNAL(itemActivated(QTreeWidgetItem *, int)),
+               this, SLOT(debugMessageActivated(QTreeWidgetItem *, int)));
+  
+       GuiProgress * progress =
+               dynamic_cast<GuiProgress *>(ProgressInterface::instance());
 
        if (progress) {
-               connect(progress, SIGNAL(processStarted(QString const &)), this, SLOT(appendText(QString const &)));
-               //connect(progress, SIGNAL(processFinished(QString const &)), this, SLOT(appendText(QString const &)));
-               connect(progress, SIGNAL(appendMessage(QString const &)), this, SLOT(appendText(QString const &)));
-               connect(progress, SIGNAL(appendError(QString const &)), this, SLOT(appendText(QString const &)));
+               connect(progress, SIGNAL(processStarted(QString const &)),
+                       this, SLOT(appendText(QString const &)));
+               //connect(progress, SIGNAL(processFinished(QString const &)),
+               //      this, SLOT(appendText(QString const &)));
+               connect(progress, SIGNAL(appendMessage(QString const &)),
+                       this, SLOT(appendText(QString const &)));
+               connect(progress, SIGNAL(appendLyXErrMessage(QString const &)),
+                       this, SLOT(appendLyXErrText(QString const &)));
+               connect(progress, SIGNAL(appendError(QString const &)),
+                       this, SLOT(appendText(QString const &)));
                connect(progress, SIGNAL(clearMessages()), this, SLOT(clearText()));
+               progress->lyxerrConnect();
+       }
+}
+
+
+void GuiProgressView::debugMessageActivated(QTreeWidgetItem * item, int)
+{
+       if (item == 0)
+               return;
+
+       QString const no = qt_("No");
+       QString const yes = qt_("Yes");
+
+       bool selected = (item->text(1) == yes);
+       item->setText(1, selected ? no : yes);
+
+       levelChanged();
+}
+
+
+void GuiProgressView::levelChanged()
+{
+       int level = Debug::NONE;
+       QTreeWidgetItemIterator it(widget_->debugMessagesTW);
+       while (*it) {
+               if ((*it)->text(1) == qt_("Yes"))
+                       level |= (*it)->data(0, Qt::UserRole).toInt();
+               ++it;
        }
+       dispatch(FuncRequest(LFUN_DEBUG_LEVEL_SET, convert<string>(level)));
+}
+
+
+void GuiProgressView::debugSelectionChanged()
+{
+       int level = Debug::NONE;
+       if (widget_->debugAnyRB->isChecked())
+               level = Debug::ANY;
+       else if (widget_->debugSelectedRB->isChecked()) {
+               widget_->debugMessagesTW->setEnabled(true);
+               levelChanged();
+               return;
+       }
+       widget_->debugMessagesTW->setEnabled(false);
+       dispatch(FuncRequest(LFUN_DEBUG_LEVEL_SET, convert<string>(level)));
 }
 
 
 void GuiProgressView::clearText()
 {
-       text_edit.clear();
+       if (widget_->autoClearCB->isChecked())
+               widget_->outTE->clear();
+}
+
+
+void GuiProgressView::appendLyXErrText(QString const & text)
+{
+       widget_->outTE->moveCursor(QTextCursor::End);
+       widget_->outTE->insertPlainText(text);
+       widget_->outTE->ensureCursorVisible();
+
+       // Give the user a chance to disable debug messages because
+       // showing Debug::ANY messages completely blocks the GUI.
+       // Text is not always send as the whole line, so we must be
+       // careful about eolns.
+       // WARNING: processing events could cause crashes!
+       // TODO: find a better solution
+       if (text.endsWith("\n"))
+               QApplication::processEvents();
 }
 
 
 void GuiProgressView::appendText(QString const & text)
 {
-       if (text.isEmpty())
+       if (text.isEmpty() || !widget_->sbarCB->isChecked())
                return;
-       QString time = QTime::currentTime().toString();
-       text_edit.insertPlainText(time + ": " + text + "\n");
-       text_edit.ensureCursorVisible();
+       QString str = QTime::currentTime().toString();
+       str += ": " + text;
+       if (!text.endsWith("\n"))
+               str += "\n";
+
+       widget_->outTE->moveCursor(QTextCursor::End);
+       widget_->outTE->insertPlainText(str);
+       widget_->outTE->ensureCursorVisible();
+}
+
+
+void GuiProgressView::saveSession() const
+{
+       Dialog::saveSession();
+       QSettings settings;
+       settings.setValue(
+               sessionKey() + "/autoclear", widget_->autoClearCB->isChecked());
+       settings.setValue(
+               sessionKey() + "/statusbarmsgs", widget_->sbarCB->isChecked());
 }
 
 
+void GuiProgressView::restoreSession()
+{
+       DockView::restoreSession();
+       QSettings settings;
+       widget_->autoClearCB->setChecked(
+               settings.value(sessionKey() + "/autoclear", true).toBool());
+       widget_->sbarCB->setChecked(
+               settings.value(sessionKey() + "/statusbarmsgs", true).toBool());
+}
+
+
+void GuiProgressView::showEvent(QShowEvent*)
+{
+       ProgressInterface::instance()->lyxerrConnect();
+}
+
+
+void GuiProgressView::hideEvent(QHideEvent*)
+{
+       ProgressInterface::instance()->lyxerrDisconnect();
+}
+
 
 Dialog * createGuiProgressView(GuiView & guiview)
 {