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 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315
|
import logging
logger = logging.getLogger(__name__)
import urwid
import asyncio
class PopUpMixin(object):
def open_popup(self, view, title=None, width=75, height=75):
urwid.connect_signal(
view, "close_popup", self.close_popup
)
popup = PopUpFrame(self, view, title=title)
overlay = PopUpOverlay(
self, popup, view,
'center', ('relative', width),
'middle', ('relative', height)
)
self._w.original_widget = overlay
self.popup_visible = True
def close_popup(self, source):
self._w.original_widget = self.view
self.popup_visible = False
class PopUpFrame(urwid.WidgetWrap):
def __init__(self, parent, body, title = None):
self.parent = parent
self.line_box = urwid.LineBox(body)
super(PopUpFrame, self).__init__(self.line_box)
class PopUpOverlay(urwid.Overlay):
def __init__(self, parent, *args, **kwargs):
self.parent = parent
super(PopUpOverlay,self).__init__(*args, **kwargs)
def keypress(self, size, key):
key = super().keypress(size, key)
if key in [ "esc", "q" ]:
self.parent.close_popup()
else:
return key
class BasePopUp(urwid.WidgetWrap):
signals = ["close_popup"]
def selectable(self):
return True
class ChoiceDialog(BasePopUp):
choices = []
signals = ["select"]
def __init__(self, parent, prompt=None):
self.parent = parent
if prompt: self.prompt = prompt
self.text = urwid.Text(
self.prompt + " [%s]" %("".join(list(self.choices.keys()))), align="center"
)
super(ChoiceDialog, self).__init__(
urwid.Filler(urwid.Padding(self.text))
)
@property
def choices(self):
raise NotImplementedError
def keypress(self, size, key):
if key in list(self.choices.keys()):
self.choices[key]()
self._emit("select", key)
else:
return key
class SquareButton(urwid.Button):
button_left = urwid.Text("[")
button_right = urwid.Text("]")
def pack(self, size, focus=False):
cols = sum(
[ w.pack()[0] for w in [
self.button_left,
self._label,
self.button_right
]]) + self._w.dividechars*2
return ( cols, )
class OKCancelDialog(BasePopUp):
focus = None
def __init__(self, parent, focus=None, *args, **kwargs):
self.parent = parent
if focus is not None:
self.focus = focus
self.ok_button = SquareButton(("bold", "OK"))
urwid.connect_signal(
self.ok_button, "click",
lambda s: self.confirm()
)
self.cancel_button = SquareButton(("bold", "Cancel"))
urwid.connect_signal(
self.cancel_button, "click",
lambda s: self.cancel()
)
self.body = urwid.Pile([])
for name, widget in self.widgets.items():
setattr(self, name, widget)
self.body.contents.append(
(widget, self.body.options("weight", 1))
)
self.pile = urwid.Pile(
[
("pack", self.body),
("weight", 1, urwid.Padding(
urwid.Columns([
("weight", 1,
urwid.Padding(
self.ok_button, align="center", width=12)
),
("weight", 1,
urwid.Padding(
self.cancel_button, align="center", width=12)
)
]),
align="center"
)),
]
)
self.body_position = 0
if self.title:
self.pile.contents.insert(
0,
(urwid.Filler(
urwid.AttrMap(
urwid.Padding(
urwid.Text(self.title)
),
"header"
)
), self.pile.options("given", 2))
)
self.body_position += 1
self.pile.selectable = lambda: True
self.pile.focus_position = self.body_position
if self.focus:
if self.focus == "ok":
self.pile.set_focus_path(self.ok_focus_path)
elif self.focus == "cancel":
self.pile.set_focus_path(self.cancel_focus_path)
elif isinstance(self.focus, int):
return [self.body_position, self.focus]
else:
raise NotImplementedError
super(OKCancelDialog, self).__init__(
urwid.Filler(self.pile, valign="top")
)
@property
def title(self):
return None
@property
def widgets(self):
raise RuntimeError("must set widgets property")
def action(self):
raise RuntimeError("must override action method")
@property
def ok_focus_path(self):
return [self.body_position+1,0]
@property
def cancel_focus_path(self):
return [self.body_position+1,1]
@property
def focus_paths(self):
return [
[self.body_position, i]
for i in range(len(self.body.contents))
] + [
self.ok_focus_path,
self.cancel_focus_path
]
def cycle_focus(self, step):
path = self.pile.get_focus_path()[:2]
logger.info(f"{path}, {self.focus_paths}")
self.pile.set_focus_path(
self.focus_paths[
(self.focus_paths.index(path) + step) % len(self.focus_paths)
]
)
def confirm(self):
rv = self.action()
if asyncio.iscoroutine(rv):
asyncio.get_event_loop().create_task(rv)
self.close()
def cancel(self):
self.close()
def close(self):
self._emit("close_popup")
def selectable(self):
return True
def keypress(self, size, key):
if key == "meta enter":
self.confirm()
return
key = super().keypress(size, key)
if key == "enter":
self.confirm()
return
if key in ["tab", "shift tab"]:
self.cycle_focus(1 if key == "tab" else -1)
else:
return key
class ConfirmDialog(ChoiceDialog):
def __init__(self, parent, *args, **kwargs):
super(ConfirmDialog, self).__init__(parent, *args, **kwargs)
def action(self, value):
raise RuntimeError("must override action method")
@property
def prompt(self):
return "Are you sure?"
def confirm(self):
self.action()
self.close()
def cancel(self):
self.close()
def close(self):
self.parent.close_popup()
@property
def choices(self):
return {
"y": self.confirm,
"n": self.cancel
}
class BaseView(urwid.WidgetWrap):
focus_widgets = []
top_view = None
def __init__(self, view):
self.view = view
self.placeholder = urwid.WidgetPlaceholder(urwid.Filler(urwid.Text("")))
super(BaseView, self).__init__(self.placeholder)
self.placeholder.original_widget = self.view
def open_popup(self, view, title=None, width=("relative", 75), height=("relative", 75)):
urwid.connect_signal(
view, "close_popup", self.close_popup
)
popup = PopUpFrame(self, view, title=title)
overlay = PopUpOverlay(
self, popup, self.view,
'center', width,
'middle', height
)
self._w.original_widget = overlay
self.popup_visible = True
def close_popup(self, source=None):
self._w.original_widget = self.view
self.popup_visible = False
__all__ = [
"BaseView",
"BasePopUp",
"ChoiceDialog",
"SquareButton"
]
|