aboutsummaryrefslogtreecommitdiffstats
path: root/contrib/python/ipython/py3/IPython/terminal/pt_inputhooks/gtk4.py
blob: 38fce01f8c35c5cb67661b31a1b9cff06b8f3e75 (plain) (blame)
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
""" 
prompt_toolkit input hook for GTK 4. 
""" 
 
from gi.repository import GLib 
 
 
class _InputHook: 
    def __init__(self, context): 
        self._quit = False 
        GLib.io_add_watch( 
            context.fileno(), GLib.PRIORITY_DEFAULT, GLib.IO_IN, self.quit 
        ) 
 
    def quit(self, *args, **kwargs): 
        self._quit = True 
        return False 
 
    def run(self): 
        context = GLib.MainContext.default() 
        while not self._quit: 
            context.iteration(True) 
 
 
def inputhook(context): 
    hook = _InputHook(context) 
    hook.run()