// -*- C++ -*- /** * \file GuiProgressView.h * This file is part of LyX, the document processor. * 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. */ #ifndef GUIPROGRESSVIEW_H #define GUIPROGRESSVIEW_H #include "ui_ProgressViewUi.h" #include "DockView.h" #include class QHideEvent; class QShowEvent; namespace lyx { namespace frontend { class ProgressViewWidget : public QWidget, public Ui::ProgressViewUi { Q_OBJECT public: ProgressViewWidget(); private: }; class GuiProgressView : public DockView { Q_OBJECT public: GuiProgressView( GuiView & parent, ///< the main window where to dock. Qt::DockWidgetArea area = Qt::BottomDockWidgetArea, ///< Position of the dock (and also drawer) Qt::WindowFlags flags = 0); ~GuiProgressView(); /// Controller inherited method. ///@{ bool initialiseParams(std::string const &) override { return true; } void clearParams() override {} void dispatchParams() override {} bool isBufferDependent() const override { return false; } bool canApply() const override { return true; } bool canApplyToReadOnly() const override { return true; } void updateView() override {} bool wantInitialFocus() const override { return false; } void restoreSession() override; void saveSession(QSettings & settings) const override; ///@} private Q_SLOTS: void appendText(QString const & text); void appendLyXErrText(QString const & text); void clearText(); void debugMessageActivated(QTreeWidgetItem *, int); void debugSelectionChanged(); private: ProgressViewWidget * widget_; /// did the last message contained eoln? (lyxerr X statusbar conflicts) bool eol_last_; void levelChanged(); void showEvent(QShowEvent*) override; void hideEvent(QHideEvent*) override; }; } // namespace frontend } // namespace lyx #endif