X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2Ffrontends%2Fqt4%2FGuiProgressView.h;h=2c1d5fbe93bc1bc9afcfb03d726f79b3daf76b00;hb=425d092204118ea6c24c28e85fdf03fcf2bb51a4;hp=9a22b71307e59be2ffca9315b08b31c1ddebfdc4;hpb=0e85a05d42070dee5a6a27019044c7491a74c503;p=lyx.git diff --git a/src/frontends/qt4/GuiProgressView.h b/src/frontends/qt4/GuiProgressView.h index 9a22b71307..2c1d5fbe93 100644 --- a/src/frontends/qt4/GuiProgressView.h +++ b/src/frontends/qt4/GuiProgressView.h @@ -5,6 +5,7 @@ * Licence details can be found in the file COPYING. * * \author Peter Kümmel + * \author Pavel Sanda * * Full author contact details are available in file CREDITS. */ @@ -19,10 +20,17 @@ #include "GuiProgress.h" #include +#include + + +class QHideEvent; +class QShowEvent; + namespace lyx { namespace frontend { + class ProgressViewWidget : public QWidget, public Ui::ProgressViewUi { Q_OBJECT @@ -60,10 +68,17 @@ public: private Q_SLOTS: void appendText(QString const & text); + void appendLyXErrText(QString const & text); void clearText(); + void debugMessageActivated(QTreeWidgetItem *, int); + void debugSelectionChanged(); private: ProgressViewWidget * widget_; + + void levelChanged(); + void showEvent(QShowEvent*); + void hideEvent(QHideEvent*); };