File indexing completed on 2024-04-28 15:40:12

0001 // SPDX-FileCopyrightText: 2003-2022 Jesper K. Pedersen <blackie@kde.org>
0002 //
0003 // SPDX-License-Identifier: GPL-2.0-or-later
0004 
0005 #ifndef IMAGECOUNTER_H
0006 #define IMAGECOUNTER_H
0007 #include <qlabel.h>
0008 
0009 namespace MainWindow
0010 {
0011 
0012 class ImageCounter : public QLabel
0013 {
0014     Q_OBJECT
0015 
0016 public:
0017     explicit ImageCounter(QWidget *parent);
0018 
0019 public Q_SLOTS:
0020     void setMatchCount(int matches);
0021     void setSelectionCount(int selected);
0022     void setTotal(int);
0023     void showBrowserMatches(int matches);
0024 };
0025 }
0026 
0027 #endif /* IMAGECOUNTER_H */
0028 
0029 // vi:expandtab:tabstop=4 shiftwidth=4: