forked from qt-creator/qt-creator
ClangTools: Introduce an info bar
...displaying status information and errors. Change-Id: I4f86b440b28e82786299700dee572e77de7334f3 Reviewed-by: Cristian Adam <cristian.adam@qt.io>
This commit is contained in:
@@ -70,10 +70,19 @@ public:
|
||||
const RunSettings &runSettings,
|
||||
const CppTools::ClangDiagnosticConfig &diagnosticConfig,
|
||||
const FileInfos &fileInfos,
|
||||
bool preventBuild);
|
||||
bool buildBeforeAnalysis);
|
||||
|
||||
bool success() const { return m_success; } // For testing.
|
||||
|
||||
int filesAnalyzed() const { return m_filesAnalyzed.size(); }
|
||||
int filesNotAnalyzed() const { return m_filesNotAnalyzed.size(); }
|
||||
int totalFilesToAnalyze() const { return m_fileInfos.size(); }
|
||||
|
||||
signals:
|
||||
void buildFailed();
|
||||
void runnerFinished();
|
||||
void startFailed();
|
||||
|
||||
protected:
|
||||
void onRunnerFinishedWithSuccess(const QString &filePath);
|
||||
void onRunnerFinishedWithFailure(const QString &errorMessage, const QString &errorDetails);
|
||||
|
||||
Reference in New Issue
Block a user