1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60
|
#ifndef LATEXLOGWIDGET_H
#define LATEXLOGWIDGET_H
#include "logeditor.h"
#include "latexlog.h"
#include <QSortFilterProxyModel>
#include "mostQtHeaders.h"
class LatexLogWidget : public QWidget
{
Q_OBJECT
public:
explicit LatexLogWidget(QWidget *parent = 0);
bool loadLogFile(const QString &logname, const QString &compiledFileName, QTextCodec* fallbackCodec);
LatexLogModel *getLogModel() { return logModel; }
bool logEntryNumberValid(int logEntryNumber);
bool logPresent();
void resetLog();
void selectLogEntry(int logEntryNumber);
void copy();
bool childHasFocus() const { return log->hasFocus() || errorTable->hasFocus(); }
QList<QAction *> displayActions();
signals:
void logEntryActivated(int);
void logLoaded();
void logResetted();
public slots:
private slots:
void clickedOnLogModelIndex(const QModelIndex &index);
void gotoLogEntry(int logEntryNumber);
void gotoLogLine(int logLine);
void copyMessage();
void copyAllMessages();
void copyAllMessagesWithLineNumbers();
void setWidgetVisibleFromAction(bool visible);
void setInfo(const QString &message);
void filterChanged(bool);
private:
LatexLogModel *logModel;
QSortFilterProxyModel *proxyModel;
bool logpresent;
QTableView *errorTable;
LogEditor *log;
QLabel *infoLabel;
QAction *displayTableAction, *displayLogAction, *filterErrorAction, *filterWarningAction, *filterBadBoxAction;
};
#endif // LATEXLOGWIDGET_H
|