aboutsummaryrefslogtreecommitdiffstats
path: root/src/plugins/projectexplorer/parseissuesdialog.h
diff options
context:
space:
mode:
authorChristian Kandeler <christian.kandeler@qt.io>2019-05-16 17:51:55 +0200
committerChristian Kandeler <christian.kandeler@qt.io>2019-05-20 08:56:03 +0000
commita8b9f8c955f257cfb8bad0524dd9bf7a0b6ab262 (patch)
tree4858247d7bea9bfb0189c9d14154509046ce102e /src/plugins/projectexplorer/parseissuesdialog.h
parentacc00801463ab5ca6a1c4f57677484172b58c3ad (diff)
Add the ability to parse existing build output
This allows users to take advantage of Creator's output parsers for output resulting from builds done outside the IDE, or stored from previous runs. It can also be helpful for interactive testing of (new) output parsers. Task-number: QTCREATORBUG-16017 Change-Id: I965c52fe4c5ce7b38f5ebf8f0495d9f291916373 Reviewed-by: hjk <hjk@qt.io>
Diffstat (limited to 'src/plugins/projectexplorer/parseissuesdialog.h')
-rw-r--r--src/plugins/projectexplorer/parseissuesdialog.h48
1 files changed, 48 insertions, 0 deletions
diff --git a/src/plugins/projectexplorer/parseissuesdialog.h b/src/plugins/projectexplorer/parseissuesdialog.h
new file mode 100644
index 00000000000..555727c3b99
--- /dev/null
+++ b/src/plugins/projectexplorer/parseissuesdialog.h
@@ -0,0 +1,48 @@
+/****************************************************************************
+**
+** Copyright (C) 2019 The Qt Company Ltd.
+** Contact: https://www.qt.io/licensing/
+**
+** This file is part of Qt Creator.
+**
+** Commercial License Usage
+** Licensees holding valid commercial Qt licenses may use this file in
+** accordance with the commercial license agreement provided with the
+** Software or, alternatively, in accordance with the terms contained in
+** a written agreement between you and The Qt Company. For licensing terms
+** and conditions see https://www.qt.io/terms-conditions. For further
+** information use the contact form at https://www.qt.io/contact-us.
+**
+** GNU General Public License Usage
+** Alternatively, this file may be used under the terms of the GNU
+** General Public License version 3 as published by the Free Software
+** Foundation with exceptions as appearing in the file LICENSE.GPL3-EXCEPT
+** included in the packaging of this file. Please review the following
+** information to ensure the GNU General Public License requirements will
+** be met: https://www.gnu.org/licenses/gpl-3.0.html.
+**
+****************************************************************************/
+
+#pragma once
+
+#include <QDialog>
+
+namespace ProjectExplorer {
+namespace Internal {
+
+class ParseIssuesDialog : public QDialog
+{
+ Q_OBJECT
+public:
+ ParseIssuesDialog(QWidget *parent = nullptr);
+ ~ParseIssuesDialog() override;
+
+private:
+ void accept() override;
+
+ class Private;
+ Private * const d;
+};
+
+} // namespace Internal
+} // namespace ProjectExplorer