|
|
/* $%KEC10%$ Generated by KEncoder ****************************************************************************** * File Name : splash.h - application header file * Created on : Friday, June 21, 2002 * Product id : KitClasses version 1.0 - KInterDev Add-on Classes for KDE * - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - * Copyright : © 2002 by Bruce Hunt Supporting Cast * Email : SuppCast@users.sourceforge.net * Web site : http://kinterdev.sourceforge.net ****************************************************************************** * This program is being provided under the LICENSING terms and conditions as * specified in the file "COPYING" which has been included with this software * package. This program is distributed WITHOUT ANY WARRANTY, without even the * implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. ****************************************************************************** * M o d i f i c a t i o n L o g * *****************************************************************************/ #ifndef KIT_SPLASH_H #define KIT_SPLASH_H #include/** * A generic splash screen loader. Just pass the splash file name to the constructor * and KitSplash will handle the rest. * * @short A generic splash screen loader. * @author Bruce Hunt */ class KitSplash : public QWidget { Q_OBJECT public: /** * Constructor. * @param splash the name of your splash screen image file. * This file must located where KIconLoader can find it. * ( eg. "{appdir}/pics" ) */ KitSplash( const char * splash, QWidget * parent=0, const char * name=0 ); /** * Destructor. */ ~KitSplash(); }; #endif
Generated by: bhunt on Lurch on Sun Nov 24 02:45:27 2002, using kdoc 2.0a54. |