aboutsummaryrefslogtreecommitdiff
path: root/lib/python/Screens/HarddiskSetup.py
diff options
context:
space:
mode:
authorRonny Strutz <ronny.strutz@multimedia-labs.de>2005-08-30 13:39:36 +0000
committerRonny Strutz <ronny.strutz@multimedia-labs.de>2005-08-30 13:39:36 +0000
commit58bb15bea1fb425c5192efe95090f6ff36b6e8d9 (patch)
tree7123787bc0a75d7142c3672180e92c2e8d9f46aa /lib/python/Screens/HarddiskSetup.py
parenta18ba5d26b53f40121b92d7de35c71d50c8a5d9f (diff)
downloadenigma2-58bb15bea1fb425c5192efe95090f6ff36b6e8d9.tar.gz
enigma2-58bb15bea1fb425c5192efe95090f6ff36b6e8d9.zip
hdd format (initialize) works now
actual theres no additional question when you use the red shortcut ;) (msgbox is missing)
Diffstat (limited to 'lib/python/Screens/HarddiskSetup.py')
-rw-r--r--lib/python/Screens/HarddiskSetup.py36
1 files changed, 36 insertions, 0 deletions
diff --git a/lib/python/Screens/HarddiskSetup.py b/lib/python/Screens/HarddiskSetup.py
index 45ce9543..a2b3ed4f 100644
--- a/lib/python/Screens/HarddiskSetup.py
+++ b/lib/python/Screens/HarddiskSetup.py
@@ -2,6 +2,40 @@ from Screen import Screen
from Components.ActionMap import ActionMap
from Components.Harddisk import harddiskmanager #global harddiskmanager
from Components.MenuList import MenuList
+from Components.Label import Label
+
+class HarddiskSetup(Screen):
+ def __init__(self, session, hdd):
+ Screen.__init__(self, session)
+ self.hdd = hdd
+
+ cap = hdd.capacity() / 1000 * 512 / 1000
+ capstr = "Capacity: %d.%03d GB" % (cap / 1000, cap % 1000)
+
+ self["model"] = Label("Model: " + hdd.model())
+ self["capacity"] = Label(capstr)
+
+ if hdd.index & 1:
+ busstr = "Slave"
+ else:
+ busstr = "Master"
+
+ self["bus"] = Label("Bus: " + busstr)
+ self["initialize"] = Label("Initialize")
+
+ self["actions"] = ActionMap(["OkCancelActions"],
+ {
+ "ok": self.close,
+ "cancel": self.close
+ })
+
+ self["shortcuts"] = ActionMap(["ShortcutActions"],
+ {
+ "red": self.hddInitialize
+ })
+
+ def hddInitialize(self):
+ self.hdd.initialize()
class HarddiskSelection(Screen):
def __init__(self, session):
@@ -16,5 +50,7 @@ class HarddiskSelection(Screen):
})
def okbuttonClick(self):
+ selection = self["hddlist"].getCurrent()
+ self.session.open(HarddiskSetup, selection[1])
print "ok"
pass