summaryrefslogtreecommitdiffstats
path: root/iw/congrats.py
diff options
context:
space:
mode:
authorpnfisher <pnfisher>1999-08-17 15:11:19 +0000
committerpnfisher <pnfisher>1999-08-17 15:11:19 +0000
commitd8ad37b30feeaf286df5fae92f636a5a2da53623 (patch)
tree6a184a361d1e7bc21048bf607bfeeb95a2cdd194 /iw/congrats.py
parent2edf71e3abbe9af417a879109fb158e1f8475f04 (diff)
downloadanaconda-d8ad37b30feeaf286df5fae92f636a5a2da53623.tar.gz
anaconda-d8ad37b30feeaf286df5fae92f636a5a2da53623.tar.xz
anaconda-d8ad37b30feeaf286df5fae92f636a5a2da53623.zip
added
Diffstat (limited to 'iw/congrats.py')
-rw-r--r--iw/congrats.py19
1 files changed, 19 insertions, 0 deletions
diff --git a/iw/congrats.py b/iw/congrats.py
new file mode 100644
index 000000000..59e92a71d
--- /dev/null
+++ b/iw/congrats.py
@@ -0,0 +1,19 @@
+from gtk import *
+from iw import *
+
+class CongratulationWindow (InstallWindow):
+
+ def __init__ (self, ics):
+ InstallWindow.__init__ (self, ics)
+
+ ics.setTitle ("Congratulations")
+ ics.setPrevEnabled (0)
+ ics.setNextEnabled (1)
+
+ def getScreen (self):
+ label = GtkLabel("install done")
+
+ box = GtkVBox (FALSE, 10)
+ box.pack_start (label, TRUE, TRUE, 0)
+
+ return box