display panel with number or warnings and lines in output window, button for jumping to next warning

This commit is contained in:
Axel Kohlmeyer
2024-12-28 18:44:27 -05:00
parent f50b5d63f3
commit 73eeda3b1d
10 changed files with 82 additions and 7 deletions

View File

@ -17,6 +17,7 @@
#include <QPlainTextEdit>
class FlagWarnings;
class QLabel;
class LogWindow : public QPlainTextEdit {
Q_OBJECT
@ -30,6 +31,7 @@ private slots:
void quit();
void save_as();
void stop_run();
void next_warning();
protected:
void closeEvent(QCloseEvent *event) override;
@ -41,6 +43,7 @@ private:
QString filename;
static const QString yaml_regex;
FlagWarnings *warnings;
QLabel *summary;
};
#endif