Krazy/EBN: qMin is better than QMIN
[kphotoalbum.git] / MainWindow / ImageCounter.cpp
blob26ba34d059473c93f2fbdbd069de543781afc781
1 /* Copyright (C) 2003-2006 Jesper K. Pedersen <blackie@kde.org>
3 This program is free software; you can redistribute it and/or
4 modify it under the terms of the GNU General Public
5 License as published by the Free Software Foundation; either
6 version 2 of the License, or (at your option) any later version.
8 This program is distributed in the hope that it will be useful,
9 but WITHOUT ANY WARRANTY; without even the implied warranty of
10 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
11 General Public License for more details.
13 You should have received a copy of the GNU General Public License
14 along with this program; see the file COPYING. If not, write to
15 the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
16 Boston, MA 02110-1301, USA.
19 #include "ImageCounter.h"
20 #include <klocale.h>
21 #include <QLabel>
23 MainWindow::ImageCounter::ImageCounter( QWidget* parent )
24 :QLabel( parent )
26 setText( QString::fromLatin1( "---" ) );
27 setMargin( 5 );
30 void MainWindow::ImageCounter::setMatchCount( uint matches )
32 setText( i18np( "Showing 1 thumbnail", "Showing %1 thumbnails", matches ) );
35 void MainWindow::ImageCounter::setTotal( uint c )
37 setText( i18n( "Total: %1", c) );
40 void MainWindow::ImageCounter::showBrowserMatches(uint matches )
42 setText( i18np( "1 match", "%1 matches", matches ) );
45 #include "ImageCounter.moc"