mirror of
https://github.com/swift-project/pilotclient.git
synced 2026-04-27 19:25:49 +08:00
41 lines
923 B
C++
41 lines
923 B
C++
// SPDX-FileCopyrightText: Copyright (C) 2017 swift Project Community / Contributors
|
|
// SPDX-License-Identifier: GPL-3.0-or-later OR LicenseRef-swift-pilot-client-1
|
|
|
|
//! \file
|
|
|
|
#ifndef BLACKGUI_COMPONENTS_MATCHINGSTATISTICSCOMPONENT_H
|
|
#define BLACKGUI_COMPONENTS_MATCHINGSTATISTICSCOMPONENT_H
|
|
|
|
#include <QFrame>
|
|
#include <QScopedPointer>
|
|
|
|
namespace Ui
|
|
{
|
|
class CMatchingStatisticsComponent;
|
|
}
|
|
namespace BlackGui::Components
|
|
{
|
|
/*!
|
|
* Show statistics about matching results
|
|
*/
|
|
class CMatchingStatisticsComponent : public QFrame
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
//! Constructor
|
|
explicit CMatchingStatisticsComponent(QWidget *parent = nullptr);
|
|
|
|
//! Destructor
|
|
virtual ~CMatchingStatisticsComponent();
|
|
|
|
private:
|
|
//! Show statistics
|
|
void onGenerateClicked();
|
|
|
|
QScopedPointer<Ui::CMatchingStatisticsComponent> ui;
|
|
};
|
|
} // ns
|
|
|
|
#endif // guard
|