Mercurial > urwid-satext
view examples/file_dialog.py @ 151:6689aa54b20c default tip
refactoring from camelCase -> snake_case:
This libraries was using camelCase due for historical reasons (related to the use of
Twisted in the initial project).
This patch fixes it by using PEP8 compliant snake_case
author | Goffi <goffi@goffi.org> |
---|---|
date | Sat, 08 Apr 2023 15:38:18 +0200 |
parents | 287ff3e1edd1 |
children |
line wrap: on
line source
#!/usr/bin/python # -*- coding: utf-8 -*- import urwid from urwid_satext.files_management import FileDialog import time #These palette is optional, but it's easier to use with some colors :) const_PALETTE = [('title', 'black', 'light gray', 'standout,underline'), ('default', 'default', 'default'), ('default_focus', 'default,bold', 'default'), ('directory', 'dark cyan, bold', 'default'), ('directory_focus', 'dark cyan, bold', 'dark green'), ('separator', 'brown', 'default'), ] def ok_cb(filename): """This callback is called when a file is choosen""" #We print the filename in the middle of the screen new_widget = urwid.Filler(urwid.Text(filename,align='center')) loop.widget = new_widget loop.draw_screen() #5 seconds pause time.sleep(5) #see you raise urwid.ExitMainLoop() def cancel_cb(control): """This callback is called when user cancelled the dialog""" raise urwid.ExitMainLoop() def test_quit(input): """We leave if user press 'esc'""" if input in ('esc',): raise urwid.ExitMainLoop() fd = FileDialog(ok_cb, cancel_cb) loop = urwid.MainLoop(fd, const_PALETTE, unhandled_input=test_quit) loop.run()