blob: a872cee36a0dcb54d8b41d72ab2ee58b3df38524 (
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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
|
"""
Enable Gtk4 to be used interactively by IPython.
"""
# -----------------------------------------------------------------------------
# Copyright (c) 2021, the IPython Development Team.
#
# Distributed under the terms of the Modified BSD License.
#
# The full license is in the file COPYING.txt, distributed with this software.
# -----------------------------------------------------------------------------
# -----------------------------------------------------------------------------
# Imports
# -----------------------------------------------------------------------------
import sys
from gi.repository import GLib
# -----------------------------------------------------------------------------
# Code
# -----------------------------------------------------------------------------
class _InputHook:
def __init__(self, context):
self._quit = False
GLib.io_add_watch(sys.stdin, 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_gtk4():
hook = _InputHook()
hook.run()
return 0
|