forked from qt-creator/qt-creator
Remove unused headers. Use using namespace and drop unneeded namespace scopes. Replace QVector with QList. Return default constructed objects in default return statements. Avoid empty arg brackets in some lambdas. Use default member initializers. Change-Id: I11e62a291be3fa5bde4156e7a316765ee697b852 Reviewed-by: <github-actions-qt-creator@cristianadam.eu> Reviewed-by: Alessandro Portale <alessandro.portale@qt.io>
26 lines
623 B
C++
26 lines
623 B
C++
// Copyright (C) 2019 Klarälvdalens Datakonsult AB, a KDAB Group company,
|
|
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only WITH Qt-GPL-exception-1.0
|
|
|
|
#pragma once
|
|
|
|
#include <utils/itemviews.h>
|
|
|
|
namespace CtfVisualizer::Internal {
|
|
|
|
class CtfStatisticsModel;
|
|
|
|
class CtfStatisticsView : public Utils::TreeView
|
|
{
|
|
Q_OBJECT
|
|
public:
|
|
explicit CtfStatisticsView(CtfStatisticsModel *model, QWidget *parent = nullptr);
|
|
~CtfStatisticsView() override = default;
|
|
|
|
void selectByTitle(const QString &title);
|
|
|
|
signals:
|
|
void eventTypeSelected(const QString &title);
|
|
};
|
|
|
|
} // CtfVisualizer::Internal
|