summaryrefslogtreecommitdiffstats
path: root/rescue.py
diff options
context:
space:
mode:
Diffstat (limited to 'rescue.py')
-rw-r--r--rescue.py15
1 files changed, 15 insertions, 0 deletions
diff --git a/rescue.py b/rescue.py
index f34a77c48..665c56c04 100644
--- a/rescue.py
+++ b/rescue.py
@@ -48,6 +48,12 @@ class RescueInterface:
def progressWindow(self, title, text, total):
return ProgressWindow(self.screen, title, text, total)
+ def detailedMessageWindow(self, title, text, longText=None, type="ok",
+ default=None, custom_icon=None,
+ custom_buttons=[]):
+ return self.messageWindow(title, text, type, default, custom_icon,
+ custom_buttons)
+
def messageWindow(self, title, text, type = "ok", default = None,
custom_icon=None, custom_buttons=[]):
if type == "ok":
@@ -95,6 +101,15 @@ class RescueInterface:
w.pop()
return (passphrase, isglobal)
+ def shutdown (self):
+ pass
+
+ def suspend(self):
+ pass
+
+ def resume(self):
+ pass
+
def __init__(self, screen):
self.screen = screen