aboutsummaryrefslogtreecommitdiff
path: root/lib/python/Screens/NetworkSetup.py
blob: 37d2c850ae05f42e95735c0b591b23f9711dc60d (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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
from Screen import Screen
from Components.ActionMap import NumberActionMap
from Components.ConfigList import ConfigList
from Components.config import config
from Components.config import getConfigListEntry
from Components.Network import iNetwork
from Components.Label import Label

class NetworkSetup(Screen):
	def __init__(self, session):
		Screen.__init__(self, session)
        
		self["actions"] = NumberActionMap(["SetupActions"],
		{
			"ok": self.keySave,
			"cancel": self.keyCancel,
			"left": self.keyLeft,
			"right": self.keyRight,
			"1": self.keyNumberGlobal,
			"2": self.keyNumberGlobal,
			"3": self.keyNumberGlobal,
			"4": self.keyNumberGlobal,
			"5": self.keyNumberGlobal,
			"6": self.keyNumberGlobal,
			"7": self.keyNumberGlobal,
			"8": self.keyNumberGlobal,
			"9": self.keyNumberGlobal,
			"0": self.keyNumberGlobal
		}, -1)

		self.list = []
		self["config"] = ConfigList(self.list)
		self.createSetup()
        
		self["introduction"] = Label(_("Press OK to activate the settings."))
        
	def createSetup(self):
		self.list = []
        
		self.dhcpEntry = getConfigListEntry(_("Use DHCP"), config.network.dhcp)
		self.list.append(self.dhcpEntry)
		self.list.append(getConfigListEntry(_('IP Address'), config.network.ip))
		if (config.network.dhcp.value == 0):
			self.list.append(getConfigListEntry(_('Netmask'), config.network.netmask))
			self.list.append(getConfigListEntry(_('Gateway'), config.network.gateway))
			self.list.append(getConfigListEntry(_('Nameserver'), config.network.dns))
        
		self["config"].list = self.list
		self["config"].l.setList(self.list)
        
	def newConfig(self):
		print self["config"].getCurrent()
		if self["config"].getCurrent() == self.dhcpEntry:
			self.createSetup()

	def keyLeft(self):
		self["config"].handleKey(config.key["prevElement"])
		self.newConfig()

	def keyRight(self):
		self["config"].handleKey(config.key["nextElement"])
		self.newConfig()
    
	def keyNumberGlobal(self, number):
		print "You pressed number " + str(number)
		if (self["config"].getCurrent()[1].parent.enabled == True):
			self["config"].handleKey(config.key[str(number)])
        
	def keySave(self):
		#for x in self["config"].list:
			#x[1].save()
        
		iNetwork.writeNetworkConfig()    
		iNetwork.activateNetworkConfig()
		self.close()

	def keyCancel(self):
		for x in self["config"].list:
			x[1].cancel()
		iNetwork.loadNetworkConfig()
		self.close()