mirror of
https://git.lyx.org/repos/lyx.git
synced 2025-01-17 21:36:00 +00:00
c293be56bd
In particular, the directory frontends/qt4 is renamed to frontends/qt. Many configurations file have to be updated. All mentions of qt4 in the source have been audited, and changed to qt if necessary. The only part that has not been updated is the CMake build system.
97 lines
2.2 KiB
C++
97 lines
2.2 KiB
C++
// -*- C++ -*-
|
|
/**
|
|
* \file GuiProgress.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 GUIPROGRESS_H
|
|
#define GUIPROGRESS_H
|
|
|
|
#include "support/ProgressInterface.h"
|
|
|
|
#include <QTimer>
|
|
|
|
#include <sstream>
|
|
|
|
|
|
namespace lyx {
|
|
namespace frontend {
|
|
|
|
|
|
class GuiProgress :
|
|
public QObject,
|
|
public lyx::support::ProgressInterface
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
GuiProgress();
|
|
~GuiProgress();
|
|
|
|
void lyxerrConnect();
|
|
void lyxerrDisconnect();
|
|
void lyxerrFlush();
|
|
|
|
int prompt(docstring const & title, docstring const & question,
|
|
int default_button, int cancel_button,
|
|
docstring const & b1, docstring const & b2);
|
|
|
|
static QString currentTime();
|
|
|
|
Q_SIGNALS:
|
|
|
|
// ProgressInterface
|
|
void processStarted(QString const &);
|
|
void processFinished(QString const &);
|
|
void appendMessage(QString const &);
|
|
void appendError(QString const &);
|
|
void clearMessages();
|
|
void appendLyXErrMessage(QString const & text);
|
|
|
|
|
|
void clearMessageText();
|
|
void updateStatusBarMessage(QString const &);
|
|
void triggerFlush();
|
|
|
|
// Alert interface
|
|
void warning(QString const & title, QString const & message);
|
|
void toggleWarning(QString const & title, QString const & msg, QString const & formatted);
|
|
void error(QString const & title, QString const & message, QString const & details = QString());
|
|
void information(QString const & title, QString const & message);
|
|
|
|
private Q_SLOTS:
|
|
void doProcessStarted(QString const &);
|
|
void doProcessFinished(QString const &);
|
|
void doAppendMessage(QString const &);
|
|
void doAppendError(QString const &);
|
|
void doClearMessages();
|
|
|
|
void doWarning(QString const &, QString const &);
|
|
void doToggleWarning(QString const & title, QString const & msg, QString const & formatted);
|
|
void doError(QString const &, QString const &, QString const &);
|
|
void doInformation(QString const &, QString const &);
|
|
|
|
void updateWithLyXErr();
|
|
void startFlushing();
|
|
|
|
|
|
private:
|
|
void appendText(QString const &);
|
|
std::ostringstream lyxerr_stream_;
|
|
QTimer flushDelay_;
|
|
};
|
|
|
|
|
|
|
|
} // namespace frontend
|
|
} // namespace lyx
|
|
|
|
#endif
|
|
|