]> git.lyx.org Git - lyx.git/blobdiff - src/frontends/qt4/GuiProgressView.h
* fix spelling in comments to please John.
[lyx.git] / src / frontends / qt4 / GuiProgressView.h
index 81107521fde9c1895d44d30e818ae2fa8ea2baf3..2c1d5fbe93bc1bc9afcfb03d726f79b3daf76b00 100644 (file)
@@ -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.
  */
 #include "GuiProgress.h"
 
 #include <string>
+#include <QList>
+
+
+class QHideEvent;
+class QShowEvent;
 
-#include <QDockWidget>
-#include "qt_helpers.h" 
 
 namespace lyx {
 namespace frontend {
 
+
 class ProgressViewWidget : public QWidget, public Ui::ProgressViewUi
 {
        Q_OBJECT
@@ -57,14 +62,23 @@ public:
        bool canApplyToReadOnly() const { return true; }
        void updateView() {}
        bool wantInitialFocus() const { return false; }
+       void restoreSession();
+       void saveSession() const;
        ///@}
 
 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*);
 };