moved kdeaccessibility kdeaddons kdeadmin kdeartwork kdebindings kdeedu kdegames...
[kdeedu.git] / kpercentage / kpercentage / ksplashscreen.h
blob3c05124225a016e6dcb188048b27adc4423fabe2
1 /***************************************************************************
2 splashscreen.h - description
3 -------------------
4 begin : Fri Nov 30 2001
5 copyright : (C) 2001 by Matthias Messmer &
6 Carsten Niehaus &
7 Robert Gogolok
8 email : bmlmessmer@web.de &
9 cniehaus@gmx.de &
10 mail@robert-gogolok.de
11 ***************************************************************************/
13 /***************************************************************************
14 * *
15 * This program is free software; you can redistribute it and/or modify *
16 * it under the terms of the GNU General Public License as published by *
17 * the Free Software Foundation; either version 2 of the License, or *
18 * (at your option) any later version. *
19 * *
20 ***************************************************************************/
22 #ifndef SPLASHSCREEN_H
23 #define SPLASHSCREEN_H
25 // KDE includes
27 class QWidget;
28 class KPercentage;
30 /**
31 * Spashscreen
33 * @author Matthias Messmer & Robert Gogolok
35 class KSplashScreen : public KDialog
37 Q_OBJECT
39 public:
40 /** constructor */
41 KSplashScreen( KPercentage *percentage, const char *name );
43 public slots: // public slots
44 /* called after some time to hide the splash and show the main window */
45 void showPercentage();
47 private:
48 /** The KPercentage central window */
49 KPercentage *percentage_window;
52 #endif