Krazy/EBN: qMin is better than QMIN
[kphotoalbum.git] / MainWindow / SplashScreen.cpp
blob01e90c9913ce29ea5daf6d73408ec83ffd2ffd88
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 "SplashScreen.h"
20 #include <KComponentData>
21 #include "Utilities/Util.h"
22 #include <kstandarddirs.h>
23 #include <kglobal.h>
24 #include <kaboutdata.h>
25 #include <qpainter.h>
26 #include <qregexp.h>
27 #include <kdebug.h>
29 MainWindow::SplashScreen* MainWindow::SplashScreen::_instance = 0;
31 MainWindow::SplashScreen::SplashScreen()
32 :KSplashScreen(Utilities::locateDataFile(QString::fromLatin1("pics/splash-large.png")))
34 _instance = this;
37 MainWindow::SplashScreen* MainWindow::SplashScreen::instance()
39 return _instance;
42 void MainWindow::SplashScreen::done()
44 _instance = 0;
45 (void) close();
46 deleteLater();
49 void MainWindow::SplashScreen::message( const QString& message )
51 _message = message;
52 repaint();
55 void MainWindow::SplashScreen::drawContents( QPainter * painter )
57 painter->save();
58 QFont font = painter->font();
59 font.setPointSize( 10 );
60 painter->setFont( font );
62 // Version String
63 QString txt;
64 QString version = KGlobal::mainComponent().aboutData()->version();
66 if ( QRegExp( QString::fromLatin1("[0-9.-]+") ).exactMatch( version ) )
67 txt = i18n( "Version %1" , version );
68 else
69 txt = i18n( "Version: %1" , version );
70 painter->drawText( QRect( QPoint(230, 265), QSize( 150, 25 )), Qt::AlignRight | Qt::AlignTop, txt );
72 // Message
73 painter->drawText( QRect( QPoint(20, 265), QSize( 300, 25 )), Qt::AlignLeft | Qt::AlignTop, _message );
74 painter->restore();
77 #include "SplashScreen.moc"