-
Notifications
You must be signed in to change notification settings - Fork 231
/
Copy pathbuffer.py
executable file
·561 lines (452 loc) · 19.1 KB
/
buffer.py
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
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
#!/usr/bin/env python3
# -*- coding: utf-8 -*-
# Copyright (C) 2018 Andy Stewart
#
# Author: Andy Stewart <lazycat.manatee@gmail.com>
# Maintainer: Andy Stewart <lazycat.manatee@gmail.com>
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>.
import abc
import string
import time
from core.utils import *
from PyQt6.QtCore import QEvent, Qt, QThread, pyqtSignal
from PyQt6.QtGui import QColor, QCursor, QFocusEvent, QKeyEvent
from PyQt6.QtWidgets import QApplication, QGraphicsScene
QT_KEY_DICT = {}
# Build char event.
for char in string.ascii_lowercase:
upper_char = char.upper()
QT_KEY_DICT[char] = eval("Qt.Key.Key_{}".format(upper_char))
QT_KEY_DICT[upper_char] = eval("Qt.Key.Key_{}".format(upper_char))
# Build number event.
for number in range(0, 10):
QT_KEY_DICT[str(number)] = eval("Qt.Key.Key_{}".format(number))
QT_KEY_DICT.update({
''':''': Qt.Key.Key_Colon,
''';''': Qt.Key.Key_Semicolon,
'''.''': Qt.Key.Key_Period,
''',''': Qt.Key.Key_Comma,
'''+''': Qt.Key.Key_Plus,
'''-''': Qt.Key.Key_Minus,
'''=''': Qt.Key.Key_Equal,
'''_''': Qt.Key.Key_Underscore,
'''[''': Qt.Key.Key_BracketLeft,
''']''': Qt.Key.Key_BracketRight,
'''(''': Qt.Key.Key_BraceLeft,
''')''': Qt.Key.Key_BraceRight,
'''{''': Qt.Key.Key_ParenLeft,
'''}''': Qt.Key.Key_ParenRight,
'''<''': Qt.Key.Key_Less,
'''>''': Qt.Key.Key_Greater,
'''@''': Qt.Key.Key_At,
'''\\''': Qt.Key.Key_Backslash,
'''|''': Qt.Key.Key_Bar,
'''/''': Qt.Key.Key_Slash,
'''#''': Qt.Key.Key_NumberSign,
'''$''': Qt.Key.Key_Dollar,
'''?''': Qt.Key.Key_Question,
'''"''': Qt.Key.Key_QuoteDbl,
'''`''': Qt.Key.Key_QuoteLeft,
'''%''': Qt.Key.Key_Percent,
'''^''': Qt.Key.Key_AsciiCircum,
'''&''': Qt.Key.Key_Ampersand,
'''*''': Qt.Key.Key_Asterisk,
'''~''': Qt.Key.Key_AsciiTilde,
'''!''': Qt.Key.Key_Exclam,
'''\'''': Qt.Key.Key_Apostrophe,
'''SPC''': Qt.Key.Key_Space,
'''RET''': Qt.Key.Key_Return,
'''DEL''': Qt.Key.Key_Backspace,
'''TAB''': Qt.Key.Key_Tab,
'''<backtab>''': Qt.Key.Key_Backtab,
'''<home>''': Qt.Key.Key_Home,
'''<end>''': Qt.Key.Key_End,
'''<left>''': Qt.Key.Key_Left,
'''<right>''': Qt.Key.Key_Right,
'''<up>''': Qt.Key.Key_Up,
'''<down>''': Qt.Key.Key_Down,
'''<prior>''': Qt.Key.Key_PageUp,
'''<next>''': Qt.Key.Key_PageDown,
'''<delete>''': Qt.Key.Key_Delete,
'''<backspace>''': Qt.Key.Key_Backspace,
'''<return>''': Qt.Key.Key_Return,
'''<escape>''': Qt.Key.Key_Escape
})
# NOTE:
# We need convert return or backspace to correct text,
# otherwise EAF browser will crash when user type return/backspace key.
QT_TEXT_DICT = {
"SPC": " ",
"<return>": "RET",
"<backtab>": "",
"<home>": "",
"<end>": "",
"<left>": "",
"<right>": "",
"<up>": "",
"<down>": "",
"<prior>": "",
"<next>": "",
"<delete>": "",
"<backspace>": "",
"<escape>": ""
}
QT_MODIFIER_DICT = {
"C": Qt.KeyboardModifier.ControlModifier,
"M": Qt.KeyboardModifier.AltModifier,
"S": Qt.KeyboardModifier.ShiftModifier,
"s": Qt.KeyboardModifier.MetaModifier
}
class Buffer(QGraphicsScene):
__metaclass__ = abc.ABCMeta
aspect_ratio_change = pyqtSignal()
enter_fullscreen_request = pyqtSignal()
exit_fullscreen_request = pyqtSignal()
def __init__(self, buffer_id, url, arguments, fit_to_view):
super(QGraphicsScene, self).__init__()
self.buffer_id = buffer_id
self.url = url
self.arguments = arguments
self.fit_to_view = fit_to_view
self.title = ""
self.current_event_string = ""
self.buffer_widget = None
self.is_fullscreen = False
self.aspect_ratio = 0
self.vertical_padding_ratio = 1.0 / 8
self.fetch_marker_input_thread = None
self.fetch_search_input_thread = None
self.theme_mode = get_emacs_theme_mode()
self.theme_foreground_color = get_emacs_theme_foreground()
self.theme_background_color = get_emacs_theme_background()
self.enter_fullscreen_request.connect(self.enable_fullscreen)
self.exit_fullscreen_request.connect(self.disable_fullscreen)
def base_class_name(self):
return self.__class__.__bases__[0].__name__
def build_all_methods(self, origin_class):
''' Build all methods.'''
method_list = [func for func in dir(origin_class) if callable(getattr(origin_class, func)) and not func.startswith("__")]
for func_name in method_list:
func_attr = getattr(origin_class, func_name)
if hasattr(func_attr, "interactive"):
self.build_interactive_method(
origin_class,
func_name,
getattr(func_attr, "new_name"),
getattr(func_attr, "insert_or_do"))
def build_interactive_method(self, origin_class, class_method_name, new_method_name=None, insert_or_do=False):
''' Build interactive methods.'''
new_name = class_method_name if new_method_name is None else new_method_name
if (not hasattr(self, class_method_name)) or hasattr(getattr(self, class_method_name), "abstract"):
self.__dict__.update({new_name: getattr(origin_class, class_method_name)})
if insert_or_do:
self.build_insert_or_do(new_name)
def build_insert_or_do(self, method_name):
''' Build insert or do.'''
def _do ():
if self.is_focus(): # type: ignore
self.send_key(self.current_event_string)
else:
getattr(self, method_name)()
setattr(self, "insert_or_{}".format(method_name), _do)
def toggle_fullscreen(self):
''' Toggle full screen.'''
if self.is_fullscreen:
self.exit_fullscreen_request.emit()
else:
self.enter_fullscreen_request.emit()
def enable_fullscreen(self):
''' Enable full screen.'''
self.is_fullscreen = True
eval_in_emacs('eaf--enter-fullscreen-request', [])
def disable_fullscreen(self):
''' Disable full screen.'''
self.is_fullscreen = False
eval_in_emacs('eaf--exit_fullscreen_request', [])
def move_cursor_to_corner(self):
'''
Move cursor to bottom right corner of screen.
'''
screen = QApplication.instance().primaryScreen() # type: ignore
try:
QCursor().setPos(screen, screen.size().width() - 1, screen.size().height() - 1)
except:
# Moves the cursor the primary screen to the global screen position (x, y).
# Sometimes, setPos(QScreen, Int, Int) API don't exists.
QCursor().setPos(screen.size().width() - 1, screen.size().height() - 1)
def move_cursor_to_nearest_border(self):
'''
Move cursor to nearest border of current buffer.
'''
# get current cursor position
cursor_pos = QCursor().pos()
# get current screen
screen = QApplication.instance().primaryScreen() # type: ignore
c_x, c_y = cursor_pos.x(), cursor_pos.y()
sc_width, sc_height = screen.size().width(), screen.size().height()
left_dist, right_dist = c_x, sc_width - c_x
top_dist, bottom_dist = c_y, sc_height - c_y
min_dist = min(left_dist, right_dist, top_dist, bottom_dist)
# move cursor to nearest border
if min_dist == left_dist:
QCursor().setPos(0, c_y)
elif min_dist == right_dist:
QCursor().setPos(sc_width-1, c_y)
elif min_dist == top_dist:
QCursor().setPos(c_x, 0)
elif min_dist == bottom_dist:
QCursor().setPos(c_x, sc_height-1)
def set_aspect_ratio(self, aspect_ratio):
''' Set aspect ratio.'''
self.aspect_ratio = aspect_ratio
self.aspect_ratio_change.emit()
def add_widget(self, widget):
''' Add widget.'''
# Init background color before addWidget.
if not hasattr(self, "background_color"):
self.background_color = QColor(self.theme_background_color)
self.buffer_widget = widget
self.addWidget(self.buffer_widget)
self.buffer_widget.installEventFilter(self)
self.buffer_widget.buffer = self
def destroy_buffer(self):
''' Destroy buffer.'''
if self.buffer_widget is not None:
self.buffer_widget.deleteLater()
def change_title(self, new_title):
''' Change title.'''
if new_title != "about:blank":
self.title = new_title
eval_in_emacs('eaf--update-buffer-details', [self.buffer_id, new_title, self.url])
@interactive(insert_or_do=True)
def close_buffer(self):
''' Close buffer.'''
eval_in_emacs('eaf-request-kill-buffer', [self.buffer_id])
@abstract
def all_views_hide(self):
pass
@abstract
def some_view_show(self):
pass
@abstract
def resize_view(self):
(_, _, width, height) = get_emacs_func_result("eaf-get-window-size-by-buffer-id", [self.buffer_id])
self.buffer_widget.resize(width, height)
def get_key_event_widgets(self):
''' Get key event widgets.'''
return [self.buffer_widget]
def send_input_message(self, message, callback_tag, input_type="string", initial_content="", completion_list=[]):
''' Send an input message to Emacs side for the user to respond.
MESSAGE is a message string that would be sent to the user.
CALLBACK_TAG is the reference tag when handle_input_message is invoked.
INPUT_TYPE must be one of "string", "file", "yes-or-no", "marker" or "search".
INITIAL_CONTENT is the intial content of the user response, it is only useful when INPUT_TYPE is "string".
'''
input_message(self.buffer_id, message, callback_tag, input_type, initial_content, completion_list)
if input_type == "marker" and (not hasattr(getattr(self, "fetch_marker_callback"), "abstract")):
self.start_marker_input_monitor_thread(callback_tag)
elif input_type == "search":
self.start_search_input_monitor_thread(callback_tag)
@abstract
def fetch_marker_callback(self):
pass
def start_marker_input_monitor_thread(self, callback_tag):
self.fetch_marker_input_thread = FetchMarkerInputThread(callback_tag, self.fetch_marker_callback())
self.fetch_marker_input_thread.match_marker.connect(self.handle_input_response)
self.fetch_marker_input_thread.start()
def stop_marker_input_monitor_thread(self):
if self.fetch_marker_input_thread is not None and self.fetch_marker_input_thread.isRunning():
self.fetch_marker_input_thread.stop()
# NOTE:
# We need call QThread.wait() function before reset QThread object to None.
# Set to None will trigger Python GC release QThread object, if QThread is still running,
# Segment falut "QThread: Destroyed while thread is still running" will throw, it will crash EAF.
self.fetch_marker_input_thread.wait()
self.fetch_marker_input_thread = None
def start_search_input_monitor_thread(self, callback_tag):
self.fetch_search_input_thread = FetchSearchInputThread(callback_tag)
self.fetch_search_input_thread.search_changed.connect(self.handle_input_response)
self.fetch_search_input_thread.search_finish.connect(self.handle_search_finish)
self.fetch_search_input_thread.start()
def stop_search_input_monitor_thread(self):
if self.fetch_search_input_thread is not None and self.fetch_search_input_thread.isRunning():
self.fetch_search_input_thread.stop()
# NOTE:
# We need call QThread.wait() function before reset QThread object to None.
# Set to None will trigger Python GC release QThread object, if QThread is still running,
# Segment falut "QThread: Destroyed while thread is still running" will throw, it will crash EAF.
self.fetch_search_input_thread.wait()
self.fetch_search_input_thread = None
@abstract
def handle_input_response(self, callback_tag, result_content):
pass
@abstract
def action_quit(self):
pass
@abstract
def cancel_input_response(self, callback_tag):
pass
@abstract
def handle_search_forward(self, callback_tag):
pass
@abstract
def handle_search_backward(self, callback_tag):
pass
@abstract
def handle_search_finish(self, callback_tag):
pass
@abstract
def scroll_other_buffer(self, scroll_direction, scroll_type):
pass
def save_session_data(self):
return ""
@abstract
def restore_session_data(self, session_data):
pass
@abstract
def update_with_data(self, update_data):
pass
@abstract
def eval_js_function(self, function_name, function_arguments):
''' Eval JavaScript function.'''
pass
@abstract
def execute_js_function(self, function_name, function_arguments):
''' Execute JavaScript function and return result.'''
return None
@abstract
def eval_js_code(self, function_name, function_arguments):
''' Eval JavaScript function.'''
pass
@abstract
def execute_js_code(self, function_name, function_arguments):
''' Execute JavaScript function and return result.'''
return None
def execute_function(self, function_name):
''' Call function.'''
return getattr(self, function_name)()
def execute_function_with_args(self, function_name, *args, **kwargs):
''' Call function with arguments.'''
return getattr(self, function_name)(*args, **kwargs)
@abstract
def send_key_filter(self, event_string):
pass
@PostGui()
def send_key(self, event_string):
''' Fake key event.'''
# Init.
text = QT_TEXT_DICT.get(event_string, event_string)
modifier = Qt.KeyboardModifier.NoModifier
if event_string == "<backtab>" or (len(event_string) == 1 and event_string.isupper()):
modifier = Qt.KeyboardModifier.ShiftModifier
# NOTE: don't ignore text argument, otherwise QWebEngineView not respond key event.
try:
key_press = QKeyEvent(QEvent.Type.KeyPress, QT_KEY_DICT[event_string], modifier, text)
except:
key_press = QKeyEvent(QEvent.Type.KeyPress, Qt.Key.Key_unknown, modifier, text)
for widget in self.get_key_event_widgets():
post_event(widget, key_press)
self.send_key_filter(event_string)
@PostGui()
def send_key_sequence(self, event_string):
''' Fake key sequence.'''
event_list = event_string.split("-")
if len(event_list) > 1:
widget = self.buffer_widget.focusProxy()
last_char = event_list[-1]
last_key = last_char.lower() if len(last_char) == 1 else last_char
modifier_keys = [QT_MODIFIER_DICT.get(modifier) for modifier in event_list[0:-1]]
modifier_flags = Qt.KeyboardModifier.NoModifier
for modifier in modifier_keys:
modifier_flags |= modifier
text = QT_TEXT_DICT.get(last_key, last_key)
key_event = QKeyEvent(QEvent.Type.KeyPress, QT_KEY_DICT[last_key], modifier_flags, text)
post_event(widget, key_event)
def get_url(self):
''' Get url.'''
return self.url
def get_clipboard_text(self):
''' Get text from system clipboard.'''
return get_clipboard_text()
def set_clipboard_text(self, text):
''' Set text to system clipboard.'''
set_clipboard_text(text)
@interactive(insert_or_do=True)
def save_as_bookmark(self):
''' Save as bookmark.'''
eval_in_emacs('bookmark-set', [])
@interactive(insert_or_do=True)
def select_left_tab(self):
''' Select left tab.'''
eval_in_emacs('eaf-goto-left-tab', [])
@interactive(insert_or_do=True)
def select_right_tab(self):
''' Select right tab.'''
eval_in_emacs('eaf-goto-right-tab', [])
@interactive
def update_theme(self):
self.theme_mode = get_emacs_theme_mode()
self.theme_foreground_color = get_emacs_theme_foreground()
self.theme_background_color = get_emacs_theme_background()
def focus_widget(self, event=None):
'''Focus buffer widget.'''
if event is None:
event = QFocusEvent(QEvent.Type.FocusIn, Qt.FocusReason.MouseFocusReason)
post_event(self.buffer_widget.focusProxy(), event) # type: ignore
# Activate emacs window when call focus widget, avoid first char is not
eval_in_emacs('eaf-activate-emacs-window', [])
class FetchMarkerInputThread(QThread):
match_marker = pyqtSignal(str, str)
def __init__(self, callback_tag, markers):
QThread.__init__(self)
self.callback_tag = callback_tag
self.running_flag = True
self.marker_quit_keys = get_emacs_var("eaf-marker-quit-keys") or ""
self.markers = markers
def run(self):
while self.running_flag:
if self.markers:
minibuffer_input = get_emacs_func_result("minibuffer-contents-no-properties", [])
marker_input_quit = minibuffer_input and len(minibuffer_input) > 0 and minibuffer_input[-1] in self.marker_quit_keys
marker_input_finish = minibuffer_input in self.markers
if marker_input_quit or marker_input_finish:
self.running_flag = False
eval_in_emacs('exit-minibuffer', [])
message_to_emacs("Quit marker selection." if marker_input_quit else "Marker selected.")
time.sleep(0.1)
def stop(self):
self.running_flag = False
class FetchSearchInputThread(QThread):
search_changed = pyqtSignal(str, str)
search_finish = pyqtSignal(str)
def __init__(self, callback_tag):
QThread.__init__(self)
self.search_string = ""
self.callback_tag = callback_tag
self.running_flag = True
def run(self):
while self.running_flag:
in_minibuffer = get_emacs_func_result("minibufferp", [])
if in_minibuffer:
minibuffer_input = get_emacs_func_result("minibuffer-contents-no-properties", [])
if minibuffer_input != self.search_string:
self.search_changed.emit(self.callback_tag, minibuffer_input)
self.search_string = minibuffer_input
else:
self.stop()
time.sleep(0.1)
def stop(self):
self.search_finish.emit(self.callback_tag)
self.running_flag = False