File indexing completed on 2024-04-21 03:40:43

0001 /*
0002     SPDX-FileCopyrightText: 2005-2006 Albert Astals Cid <aacid@kde.org>
0003 
0004     SPDX-License-Identifier: GPL-2.0-or-later
0005 */
0006 
0007 #ifndef COUNTER_H
0008 #define COUNTER_H
0009 
0010 class QPainter;
0011 class QSvgRenderer;
0012 class QColor;
0013 class counter
0014 {
0015     public:
0016         static void paint(QPainter &p, bool drawScore, int score, bool drawTimer, const QColor &c1, const QColor &c2, const QColor &c3, QSvgRenderer *renderer);
0017         static int width(bool drawTimer);
0018         static int height();
0019 };
0020 
0021 #endif