##// END OF EJS Templates
xxlimited_35 module now has the same name in repr in Py 3.11...
xxlimited_35 module now has the same name in repr in Py 3.11 See https://github.com/python/cpython/commit/a87c9b538fbfc42883417c4d5e69f1a5922690e3

File last commit:

r26875:5f90ef7c
r27698:d858213d
Show More
gui-gtk4.py
37 lines | 716 B | text/x-python | PythonLexer
#!/usr/bin/env python
"""Simple Gtk example to manually test event loop integration.
This is meant to run tests manually in ipython as:
In [1]: %gui gtk4
In [2]: %run gui-gtk4.py
"""
import gi
gi.require_version("Gtk", "4.0")
from gi.repository import Gtk, GLib # noqa
def hello_world(widget, data=None):
print("Hello World")
def close_request_cb(widget, data=None):
global running
running = False
running = True
window = Gtk.Window()
window.connect("close-request", close_request_cb)
button = Gtk.Button(label="Hello World")
button.connect("clicked", hello_world, None)
window.set_child(button)
window.show()
context = GLib.MainContext.default()
while running:
context.iteration(True)