diff options
author | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2010-02-03 02:15:56 +0000 |
---|---|---|
committer | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2010-02-03 02:15:56 +0000 |
commit | 50b48aec6ddd451a6d1709c0942477b503457663 (patch) | |
tree | a9ece53ec06fd0a2819de7a2a6de997193566626 /src/k3bsplash.cpp | |
download | k3b-50b48aec6ddd451a6d1709c0942477b503457663.tar.gz k3b-50b48aec6ddd451a6d1709c0942477b503457663.zip |
Added abandoned KDE3 version of K3B
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/applications/k3b@1084400 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'src/k3bsplash.cpp')
-rw-r--r-- | src/k3bsplash.cpp | 129 |
1 files changed, 129 insertions, 0 deletions
diff --git a/src/k3bsplash.cpp b/src/k3bsplash.cpp new file mode 100644 index 0000000..dc49bf5 --- /dev/null +++ b/src/k3bsplash.cpp @@ -0,0 +1,129 @@ +/* + * + * $Id: k3bsplash.cpp 619556 2007-01-03 17:38:12Z trueg $ + * Copyright (C) 2003 Sebastian Trueg <[email protected]> + * + * This file is part of the K3b project. + * Copyright (C) 1998-2007 Sebastian Trueg <[email protected]> + * + * This program is free software; you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation; either version 2 of the License, or + * (at your option) any later version. + * See the file "COPYING" for the exact licensing terms. + */ + +#include "k3bsplash.h" + +#include <k3bthememanager.h> +#include <k3bapplication.h> + +#include <qapplication.h> +#include <qlabel.h> +#include <qpixmap.h> +#include <qevent.h> +#include <qstring.h> +#include <qfontmetrics.h> +#include <qpainter.h> + +#include <kstandarddirs.h> +#include <kapplication.h> +#include <kaboutdata.h> + + +K3bSplash::K3bSplash( QWidget* parent, const char* name ) + : QVBox( parent, name, + WStyle_Customize| + WDestructiveClose| + /* WStyle_Splash|*/ + WX11BypassWM| + WStyle_NoBorder| + WStyle_StaysOnTop ) +{ + setMargin( 0 ); + setSpacing( 0 ); + + QLabel* copyrightLabel = new QLabel( kapp->aboutData()->copyrightStatement(), this ); + copyrightLabel->setMargin( 5 ); + copyrightLabel->setPaletteBackgroundColor( black ); + copyrightLabel->setPaletteForegroundColor( white ); + copyrightLabel->setAlignment( AlignRight ); + + QLabel* picLabel = new QLabel( this ); + if( K3bTheme* theme = k3bappcore->themeManager()->currentTheme() ) { + picLabel->setPaletteBackgroundColor( theme->backgroundColor() ); + picLabel->setPixmap( theme->pixmap( K3bTheme::SPLASH ) ); + } + + m_infoBox = new QLabel( this ); + m_infoBox->setMargin( 5 ); + m_infoBox->setPaletteBackgroundColor( black ); + m_infoBox->setPaletteForegroundColor( white ); + + // Set geometry, with support for Xinerama systems + QRect r; + r.setSize(sizeHint()); + int ps = QApplication::desktop()->primaryScreen(); + r.moveCenter( QApplication::desktop()->screenGeometry(ps).center() ); + setGeometry(r); +} + + +K3bSplash::~K3bSplash() +{ +} + + +void K3bSplash::mousePressEvent( QMouseEvent* ) +{ + close(); +} + + +void K3bSplash::show() +{ + QVBox::show(); + // make sure the splash screen is shown immediately + qApp->processEvents(); +} + + +void K3bSplash::addInfo( const QString& s ) +{ + m_infoBox->setText( s ); + + qApp->processEvents(); +} + + +// void K3bSplash::paintEvent( QPaintEvent* e ) +// { +// // first let the window paint the background and the child widget +// QWidget::paintEvent( e ); + +// // now create the text we want to display +// // find the lower left corner and paint it on top of the pixmap +// QPainter p( this ); +// p.setPen( Qt::blue ); + +// QFontMetrics fm = p.fontMetrics(); + +// QString line1 = QString( "K3b version %1" ).arg(VERSION); +// QString line2( "(c) 2001 by Sebastian Trueg" ); +// QString line3( "licenced under the GPL" ); + +// QRect rect1 = fm.boundingRect( line1 ); +// QRect rect2 = fm.boundingRect( line2 ); +// QRect rect3 = fm.boundingRect( line3 ); + +// int textH = rect1.height() + rect2.height() + rect3.height() + 2 * fm.leading() + 2 + rect2.height() /*hack because the boundingRect method seems not to work properly! :-(*/; +// int textW = QMAX( rect1.width(), QMAX( rect2.width(), rect3.width() ) ) + 2; + +// int startX = 10; +// int startY = height() - 10 - textH; + +// p.drawText( startX, startY, textW, textH, 0, QString("%1\n%2\n%3").arg(line1).arg(line2).arg(line3) ); +// } + + +#include "k3bsplash.moc" |