File indexing completed on 2024-04-28 04:03:30

0001 /*
0002     SPDX-FileCopyrightText: 2003 Russell Steffen <rsteffen@bayarea.net>
0003     SPDX-FileCopyrightText: 2003 Stephan Zehetner <s.zehetner@nevox.org>
0004     SPDX-FileCopyrightText: 2006 Dmitry Suzdalev <dimsuz@gmail.com>
0005     SPDX-FileCopyrightText: 2006 Inge Wallin <inge@lysator.liu.se>
0006     SPDX-FileCopyrightText: 2006 Pierre Ducroquet <pinaraf@gmail.com>
0007 
0008     SPDX-License-Identifier: GPL-2.0-or-later
0009 */
0010 
0011 #ifndef KONQUEST_SCOREDLG_H
0012 #define KONQUEST_SCOREDLG_H
0013 
0014 #include <QDialog>
0015 
0016 #include "../players/player.h"
0017 #include "../view/standingswidget.h"
0018 
0019 
0020 class ScoreDlg : public QDialog
0021 {
0022 
0023 public:
0024     ScoreDlg( QWidget *parent, const QString& title, 
0025               const QList<Player *> &players );
0026     ~ScoreDlg() override;
0027 
0028 private:
0029     StandingsWidget *m_standingsWidget;
0030 
0031 };
0032 
0033 #endif // KONQUEST_SCOREDLG_H