37 lines
802 B
Python
37 lines
802 B
Python
#!/usr/bin/env python
|
|
# vim:fileencoding=utf-8
|
|
# License: GPL v3 Copyright: 2018, Kovid Goyal <kovid at kovidgoyal.net>
|
|
|
|
|
|
class Handler:
|
|
|
|
def initialize(self, screen_size, quit_loop, wakeup):
|
|
self.screen_size, self.quit_loop = screen_size, quit_loop
|
|
self.wakeup = wakeup
|
|
|
|
def on_resize(self, screen_size):
|
|
self.screen_size = screen_size
|
|
|
|
def on_term(self):
|
|
self.quit_loop(1)
|
|
|
|
def on_text(self, text, in_bracketed_paste=False):
|
|
pass
|
|
|
|
def on_key(self, key_event):
|
|
pass
|
|
|
|
def on_mouse(self, mouse_event):
|
|
pass
|
|
|
|
def on_interrupt(self):
|
|
pass
|
|
|
|
def on_eot(self):
|
|
pass
|
|
|
|
def write(self, data):
|
|
if isinstance(data, str):
|
|
data = data.encode('utf-8')
|
|
self.write_buf.append(data)
|