summaryrefslogtreecommitdiffstats
path: root/kpercentage/kpercentage/ksplashscreen.h
diff options
context:
space:
mode:
authortoma <toma@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2009-11-25 17:56:58 +0000
committertoma <toma@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2009-11-25 17:56:58 +0000
commitce599e4f9f94b4eb00c1b5edb85bce5431ab3df2 (patch)
treed3bb9f5d25a2dc09ca81adecf39621d871534297 /kpercentage/kpercentage/ksplashscreen.h
downloadtdeedu-ce599e4f9f94b4eb00c1b5edb85bce5431ab3df2.tar.gz
tdeedu-ce599e4f9f94b4eb00c1b5edb85bce5431ab3df2.zip
Copy the KDE 3.5 branch to branches/trinity for new KDE 3.5 features.
BUG:215923 git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdeedu@1054174 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'kpercentage/kpercentage/ksplashscreen.h')
-rw-r--r--kpercentage/kpercentage/ksplashscreen.h52
1 files changed, 52 insertions, 0 deletions
diff --git a/kpercentage/kpercentage/ksplashscreen.h b/kpercentage/kpercentage/ksplashscreen.h
new file mode 100644
index 00000000..3c051242
--- /dev/null
+++ b/kpercentage/kpercentage/ksplashscreen.h
@@ -0,0 +1,52 @@
+/***************************************************************************
+ splashscreen.h - description
+ -------------------
+ begin : Fri Nov 30 2001
+ copyright : (C) 2001 by Matthias Messmer &
+ Carsten Niehaus &
+ Robert Gogolok
+ email : bmlmessmer@web.de &
+ cniehaus@gmx.de &
+ mail@robert-gogolok.de
+***************************************************************************/
+
+/***************************************************************************
+ * *
+ * 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. *
+ * *
+ ***************************************************************************/
+
+#ifndef SPLASHSCREEN_H
+#define SPLASHSCREEN_H
+
+// KDE includes
+
+class QWidget;
+class KPercentage;
+
+/**
+ * Spashscreen
+ *
+ * @author Matthias Messmer & Robert Gogolok
+ */
+class KSplashScreen : public KDialog
+{
+ Q_OBJECT
+
+ public:
+ /** constructor */
+ KSplashScreen( KPercentage *percentage, const char *name );
+
+ public slots: // public slots
+ /* called after some time to hide the splash and show the main window */
+ void showPercentage();
+
+ private:
+ /** The KPercentage central window */
+ KPercentage *percentage_window;
+};
+
+#endif