summaryrefslogtreecommitdiffstats
path: root/iw/iw_gui.py
blob: f63820cca82c26bbab21f16c9dfefe09ebbc7db8 (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
from translate import _

class InstallWindow:

    htmlTag = None
    windowTitle = None

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

	if self.htmlTag:
	    ics.readHTML (self.htmlTag)

	if self.windowTitle:
	    ics.setTitle (_(self.windowTitle))

    def getNext (self):
	return None

    def renderCallback(self):
	return None

    def getPrev (self):
	return None

    def getScreen (self):
        pass

    def getICS (self):
        return self.ics

    def fixUp (self):
        pass