Show More
@@ -447,29 +447,30 b' class ConsoleWidget(editwindow.EditWindow):' | |||
|
447 | 447 | # different callbacks share local variables? |
|
448 | 448 | |
|
449 | 449 | # Intercept some specific keys. |
|
450 | if event.KeyCode == ord('L') and event.ControlDown() : | |
|
450 | key_code = event.GetKeyCode() | |
|
451 | if key_code == ord('L') and event.ControlDown() : | |
|
451 | 452 | self.scroll_to_bottom() |
|
452 |
elif |
|
|
453 | elif key_code == ord('K') and event.ControlDown() : | |
|
453 | 454 | self.input_buffer = '' |
|
454 |
elif |
|
|
455 | elif key_code == ord('A') and event.ControlDown() : | |
|
455 | 456 | self.GotoPos(self.GetLength()) |
|
456 | 457 | self.SetSelectionStart(self.current_prompt_pos) |
|
457 | 458 | self.SetSelectionEnd(self.GetCurrentPos()) |
|
458 | 459 | catched = True |
|
459 |
elif |
|
|
460 | elif key_code == ord('E') and event.ControlDown() : | |
|
460 | 461 | self.GotoPos(self.GetLength()) |
|
461 | 462 | catched = True |
|
462 |
elif |
|
|
463 | elif key_code == wx.WXK_PAGEUP: | |
|
463 | 464 | self.ScrollPages(-1) |
|
464 |
elif |
|
|
465 | elif key_code == wx.WXK_PAGEDOWN: | |
|
465 | 466 | self.ScrollPages(1) |
|
466 |
elif |
|
|
467 | elif key_code == wx.WXK_HOME: | |
|
467 | 468 | self.GotoPos(self.GetLength()) |
|
468 |
elif |
|
|
469 | elif key_code == wx.WXK_END: | |
|
469 | 470 | self.GotoPos(self.GetLength()) |
|
470 |
elif |
|
|
471 | elif key_code == wx.WXK_UP and event.ShiftDown(): | |
|
471 | 472 | self.ScrollLines(-1) |
|
472 |
elif |
|
|
473 | elif key_code == wx.WXK_DOWN and event.ShiftDown(): | |
|
473 | 474 | self.ScrollLines(1) |
|
474 | 475 | else: |
|
475 | 476 | catched = False |
@@ -477,13 +478,12 b' class ConsoleWidget(editwindow.EditWindow):' | |||
|
477 | 478 | if self.AutoCompActive(): |
|
478 | 479 | event.Skip() |
|
479 | 480 | else: |
|
480 |
if |
|
|
481 | event.Modifiers in (wx.MOD_NONE, wx.MOD_WIN, | |
|
482 | wx.MOD_SHIFT): | |
|
481 | if key_code in (13, wx.WXK_NUMPAD_ENTER): | |
|
482 | # XXX: not catching modifiers, to be wx2.6-compatible | |
|
483 | 483 | catched = True |
|
484 | 484 | if not self.enter_catched: |
|
485 | 485 | self.CallTipCancel() |
|
486 |
if event. |
|
|
486 | if event.ShiftDown(): | |
|
487 | 487 | # Try to force execution |
|
488 | 488 | self.GotoPos(self.GetLength()) |
|
489 | 489 | self.write('\n' + self.continuation_prompt(), |
@@ -493,19 +493,18 b' class ConsoleWidget(editwindow.EditWindow):' | |||
|
493 | 493 | self._on_enter() |
|
494 | 494 | self.enter_catched = True |
|
495 | 495 | |
|
496 |
elif |
|
|
497 | if event.Modifiers in (wx.MOD_NONE, wx.MOD_WIN): | |
|
496 | elif key_code == wx.WXK_HOME: | |
|
497 | if not event.ShiftDown(): | |
|
498 | 498 | self.GotoPos(self.current_prompt_pos) |
|
499 | 499 | catched = True |
|
500 | ||
|
501 | elif event.Modifiers == wx.MOD_SHIFT: | |
|
500 | else: | |
|
502 | 501 | # FIXME: This behavior is not ideal: if the selection |
|
503 | 502 | # is already started, it will jump. |
|
504 | 503 | self.SetSelectionStart(self.current_prompt_pos) |
|
505 | 504 | self.SetSelectionEnd(self.GetCurrentPos()) |
|
506 | 505 | catched = True |
|
507 | 506 | |
|
508 |
elif |
|
|
507 | elif key_code == wx.WXK_UP: | |
|
509 | 508 | if self.GetCurrentLine() > self.current_prompt_line: |
|
510 | 509 | if self.GetCurrentLine() == self.current_prompt_line + 1 \ |
|
511 | 510 | and self.GetColumn(self.GetCurrentPos()) < \ |
@@ -515,18 +514,18 b' class ConsoleWidget(editwindow.EditWindow):' | |||
|
515 | 514 | event.Skip() |
|
516 | 515 | catched = True |
|
517 | 516 | |
|
518 |
elif |
|
|
517 | elif key_code in (wx.WXK_LEFT, wx.WXK_BACK): | |
|
519 | 518 | if not self._keep_cursor_in_buffer(self.GetCurrentPos() - 1): |
|
520 | 519 | event.Skip() |
|
521 | 520 | catched = True |
|
522 | 521 | |
|
523 |
elif |
|
|
522 | elif key_code == wx.WXK_RIGHT: | |
|
524 | 523 | if not self._keep_cursor_in_buffer(self.GetCurrentPos() + 1): |
|
525 | 524 | event.Skip() |
|
526 | 525 | catched = True |
|
527 | 526 | |
|
528 | 527 | |
|
529 |
elif |
|
|
528 | elif key_code == wx.WXK_DELETE: | |
|
530 | 529 | if not self._keep_cursor_in_buffer(self.GetCurrentPos() - 1): |
|
531 | 530 | event.Skip() |
|
532 | 531 | catched = True |
@@ -535,7 +534,7 b' class ConsoleWidget(editwindow.EditWindow):' | |||
|
535 | 534 | # Put the cursor back in the edit region |
|
536 | 535 | if not self._keep_cursor_in_buffer(): |
|
537 | 536 | if not (self.GetCurrentPos() == self.GetLength() |
|
538 |
and |
|
|
537 | and key_code == wx.WXK_DELETE): | |
|
539 | 538 | event.Skip() |
|
540 | 539 | catched = True |
|
541 | 540 |
@@ -389,7 +389,8 b' class WxController(ConsoleWidget, PrefilterFrontEnd):' | |||
|
389 | 389 | """ |
|
390 | 390 | # FIXME: This method needs to be broken down in smaller ones. |
|
391 | 391 | current_line_num = self.GetCurrentLine() |
|
392 | if event.KeyCode in (ord('c'), ord('C')) and event.ControlDown(): | |
|
392 | key_code = event.GetKeyCode() | |
|
393 | if key_code in (ord('c'), ord('C')) and event.ControlDown(): | |
|
393 | 394 | # Capture Control-C |
|
394 | 395 | if self._input_state == 'subprocess': |
|
395 | 396 | if self.debug: |
@@ -403,40 +404,39 b' class WxController(ConsoleWidget, PrefilterFrontEnd):' | |||
|
403 | 404 | # XXX: We need to make really sure we |
|
404 | 405 | # get back to a prompt. |
|
405 | 406 | elif self._input_state == 'subprocess' and ( |
|
406 |
( |
|
|
407 | not event.ControlDown() ) | |
|
407 | ( key_code <256 and not event.ControlDown() ) | |
|
408 | 408 | or |
|
409 |
( |
|
|
409 | ( key_code in (ord('d'), ord('D')) and | |
|
410 | 410 | event.ControlDown())): |
|
411 | 411 | # We are running a process, we redirect keys. |
|
412 | 412 | ConsoleWidget._on_key_down(self, event, skip=skip) |
|
413 |
char = chr( |
|
|
413 | char = chr(key_code) | |
|
414 | 414 | # Deal with some inconsistency in wx keycodes: |
|
415 | 415 | if char == '\r': |
|
416 | 416 | char = '\n' |
|
417 | 417 | elif not event.ShiftDown(): |
|
418 | 418 | char = char.lower() |
|
419 |
if event.ControlDown() and |
|
|
419 | if event.ControlDown() and key_code in (ord('d'), ord('D')): | |
|
420 | 420 | char = '\04' |
|
421 | 421 | self._running_process.process.stdin.write(char) |
|
422 | 422 | self._running_process.process.stdin.flush() |
|
423 |
elif |
|
|
423 | elif key_code in (ord('('), 57, 53): | |
|
424 | 424 | # Calltips |
|
425 | 425 | event.Skip() |
|
426 | 426 | self.do_calltip() |
|
427 |
elif self.AutoCompActive() and not |
|
|
427 | elif self.AutoCompActive() and not key_code == ord('\t'): | |
|
428 | 428 | event.Skip() |
|
429 |
if |
|
|
429 | if key_code in (wx.WXK_BACK, wx.WXK_DELETE): | |
|
430 | 430 | wx.CallAfter(self._popup_completion, create=True) |
|
431 |
elif not |
|
|
431 | elif not key_code in (wx.WXK_UP, wx.WXK_DOWN, wx.WXK_LEFT, | |
|
432 | 432 | wx.WXK_RIGHT, wx.WXK_ESCAPE): |
|
433 | 433 | wx.CallAfter(self._popup_completion) |
|
434 | 434 | else: |
|
435 | 435 | # Up history |
|
436 |
if |
|
|
437 | ( current_line_num == self.current_prompt_line and | |
|
438 | event.Modifiers in (wx.MOD_NONE, wx.MOD_WIN) ) | |
|
439 |
|
|
|
436 | if key_code == wx.WXK_UP and ( | |
|
437 | event.ControlDown() or | |
|
438 | current_line_num == self.current_prompt_line | |
|
439 | ): | |
|
440 | 440 | new_buffer = self.get_history_previous( |
|
441 | 441 | self.input_buffer) |
|
442 | 442 | if new_buffer is not None: |
@@ -445,23 +445,24 b' class WxController(ConsoleWidget, PrefilterFrontEnd):' | |||
|
445 | 445 | # Go to first line, for seemless history up. |
|
446 | 446 | self.GotoPos(self.current_prompt_pos) |
|
447 | 447 | # Down history |
|
448 |
elif |
|
|
449 | ( current_line_num == self.LineCount -1 and | |
|
450 | event.Modifiers in (wx.MOD_NONE, wx.MOD_WIN) ) | |
|
451 |
|
|
|
448 | elif key_code == wx.WXK_DOWN and ( | |
|
449 | event.ControlDown() or | |
|
450 | current_line_num == self.LineCount -1 | |
|
451 | ): | |
|
452 | 452 | new_buffer = self.get_history_next() |
|
453 | 453 | if new_buffer is not None: |
|
454 | 454 | self.input_buffer = new_buffer |
|
455 | 455 | # Tab-completion |
|
456 |
elif |
|
|
456 | elif key_code == ord('\t'): | |
|
457 | 457 | current_line, current_line_num = self.CurLine |
|
458 |
if not re.match(r'^\s*$', |
|
|
458 | if not re.match(r'^%s\s*$' % self.continuation_prompt(), | |
|
459 | current_line): | |
|
459 | 460 | self.complete_current_input() |
|
460 | 461 | if self.AutoCompActive(): |
|
461 | 462 | wx.CallAfter(self._popup_completion, create=True) |
|
462 | 463 | else: |
|
463 | 464 | event.Skip() |
|
464 |
elif |
|
|
465 | elif key_code == wx.WXK_BACK: | |
|
465 | 466 | # If characters where erased, check if we have to |
|
466 | 467 | # remove a line. |
|
467 | 468 | # XXX: What about DEL? |
@@ -496,7 +497,7 b' class WxController(ConsoleWidget, PrefilterFrontEnd):' | |||
|
496 | 497 | def _on_key_up(self, event, skip=True): |
|
497 | 498 | """ Called when any key is released. |
|
498 | 499 | """ |
|
499 | if event.KeyCode in (59, ord('.')): | |
|
500 | if event.GetKeyCode() in (59, ord('.')): | |
|
500 | 501 | # Intercepting '.' |
|
501 | 502 | event.Skip() |
|
502 | 503 | wx.CallAfter(self._popup_completion, create=True) |
|
1 | NO CONTENT: modified file chmod 100755 => 100644 |
General Comments 0
You need to be logged in to leave comments.
Login now