// 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 #include 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; }; } // ns #endif // guard