summaryrefslogtreecommitdiffstats
path: root/iw/welcome.py
blob: 44971cfc2fd563fe1f9ac50fe64b424f7211abf6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
from gtk import *
from iw import *
from gui import _

class WelcomeWindow (InstallWindow):		

    def __init__ (self, ics):
	InstallWindow.__init__ (self, ics)

        ics.setTitle (_("Welcome to Red Hat Linux!"))
        ics.setNextEnabled (1)
        ics.readHTML ("wel")
##         ics.setHTML("<HTML><BODY><CENTER><H2>Welcome to<br>Red Hat Linux!</H2></CENTER>"
##                     ""
##                     "<P>This installation process is outlined in detail in the "
##                     "Official Red Hat Linux Installation Guide available from "
##                     "Red Hat Software. If you have access to this manual, you "
##                     "should read the installation section before continuing.</P><P>"
##                     "If you have purchased Official Red Hat Linux, be sure to "
##                     "register your purchase through our web site, "
##                     "http://www.redhat.com/.</BODY></HTML>")
        

    def getScreen (self):
        label = GtkLabel ("(insert neat logo graphic here)")

        box = GtkVBox (FALSE, 10)
        box.pack_start (label, TRUE, TRUE, 0)

        try:
            im = GdkImlib.Image ("shadowman-200.png")
            im.render ()
            pix = im.make_pixmap ()
            box.pack_start (pix, TRUE, TRUE, 0)

        except:
            print "Unable to load shadowman-200.png"

        return box