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
|
import time
import gi
gi.require_version("Gtk", "4.0")
from gi.repository import Gio, GLib, Gtk
class DownloadWindow(Gtk.ApplicationWindow):
def __init__(self, *args, **kwargs):
super().__init__(
*args,
**kwargs,
default_width=500,
default_height=400,
title="Async I/O Example",
)
self.cancellable = Gio.Cancellable()
self.cancel_button = Gtk.Button(label="Cancel")
self.cancel_button.connect("clicked", self.on_cancel_clicked)
self.cancel_button.set_sensitive(False)
self.start_button = Gtk.Button(label="Load")
self.start_button.connect("clicked", self.on_start_clicked)
textview = Gtk.TextView(vexpand=True)
self.textbuffer = textview.get_buffer()
scrolled = Gtk.ScrolledWindow()
scrolled.set_child(textview)
box = Gtk.Box(
orientation=Gtk.Orientation.VERTICAL,
spacing=6,
margin_start=12,
margin_end=12,
margin_top=12,
margin_bottom=12,
)
box.append(self.start_button)
box.append(self.cancel_button)
box.append(scrolled)
self.set_child(box)
def append_text(self, text):
iter_ = self.textbuffer.get_end_iter()
self.textbuffer.insert(iter_, f"[{time.time()}] {text}\n")
def on_start_clicked(self, button):
button.set_sensitive(False)
self.cancel_button.set_sensitive(True)
self.append_text("Start clicked...")
file_ = Gio.File.new_for_uri("https://pygobject.gnome.org/")
file_.load_contents_async(self.cancellable, self.on_ready_callback, None)
def on_cancel_clicked(self, button):
self.append_text("Cancel clicked...")
self.cancellable.cancel()
def on_ready_callback(self, source_object, result, user_data):
try:
_success, content, _etag = source_object.load_contents_finish(result)
except GLib.GError as e:
self.append_text(f"Error: {e.message}")
else:
content_text = content[:100].decode("utf-8")
self.append_text(f"Got content: {content_text}...")
finally:
self.cancellable.reset()
self.cancel_button.set_sensitive(False)
self.start_button.set_sensitive(True)
class Application(Gtk.Application):
def do_activate(self):
window = DownloadWindow(application=self)
window.present()
def main():
app = Application()
app.run()
if __name__ == "__main__":
main()
|