Show More
@@ -1,139 +1,141 b'' | |||||
1 | """ |
|
1 | """ | |
2 | Frontend class that uses IPython0 to prefilter the inputs. |
|
2 | Frontend class that uses IPython0 to prefilter the inputs. | |
3 |
|
3 | |||
4 | Using the IPython0 mechanism gives us access to the magics. |
|
4 | Using the IPython0 mechanism gives us access to the magics. | |
5 | """ |
|
5 | """ | |
6 | __docformat__ = "restructuredtext en" |
|
6 | __docformat__ = "restructuredtext en" | |
7 |
|
7 | |||
8 | #------------------------------------------------------------------------------- |
|
8 | #------------------------------------------------------------------------------- | |
9 | # Copyright (C) 2008 The IPython Development Team |
|
9 | # Copyright (C) 2008 The IPython Development Team | |
10 | # |
|
10 | # | |
11 | # Distributed under the terms of the BSD License. The full license is in |
|
11 | # Distributed under the terms of the BSD License. The full license is in | |
12 | # the file COPYING, distributed as part of this software. |
|
12 | # the file COPYING, distributed as part of this software. | |
13 | #------------------------------------------------------------------------------- |
|
13 | #------------------------------------------------------------------------------- | |
14 |
|
14 | |||
15 | #------------------------------------------------------------------------------- |
|
15 | #------------------------------------------------------------------------------- | |
16 | # Imports |
|
16 | # Imports | |
17 | #------------------------------------------------------------------------------- |
|
17 | #------------------------------------------------------------------------------- | |
18 | import sys |
|
18 | import sys | |
19 |
|
19 | |||
20 | from linefrontendbase import LineFrontEndBase, common_prefix |
|
20 | from linefrontendbase import LineFrontEndBase, common_prefix | |
21 |
|
21 | |||
22 | from IPython.ipmaker import make_IPython |
|
22 | from IPython.ipmaker import make_IPython | |
23 | from IPython.ipapi import IPApi |
|
23 | from IPython.ipapi import IPApi | |
24 | from IPython.kernel.core.sync_output_trap import SyncOutputTrap |
|
24 | from IPython.kernel.core.sync_output_trap import SyncOutputTrap | |
25 |
|
25 | |||
26 | from IPython.genutils import Term |
|
26 | from IPython.genutils import Term | |
27 |
|
27 | |||
28 | #------------------------------------------------------------------------------- |
|
28 | #------------------------------------------------------------------------------- | |
29 | # Utility functions (temporary, should be moved out of here) |
|
29 | # Utility functions (temporary, should be moved out of here) | |
30 | #------------------------------------------------------------------------------- |
|
30 | #------------------------------------------------------------------------------- | |
31 | import os |
|
31 | import os | |
32 | def xterm_system(command): |
|
32 | def xterm_system(command): | |
33 | """ Run a command in a separate console window. |
|
33 | """ Run a command in a separate console window. | |
34 | """ |
|
34 | """ | |
35 | os.system(""" |
|
35 | os.system(""" | |
36 | xterm -title "%s" -e \'/bin/sh -c "%s ; |
|
36 | xterm -title "%s" -e \'/bin/sh -c "%s ; | |
37 | printf \\"\\\\n\\"; |
|
37 | printf \\"\\\\n\\"; | |
38 | printf \\"press a key to close\\" ; |
|
38 | printf \\"press a key to close\\" ; | |
39 | printf \\"\x1b]0;%s (finished -- press a key to close)\x07\\" ; |
|
39 | printf \\"\x1b]0;%s (finished -- press a key to close)\x07\\" ; | |
40 | read foo;"\' |
|
40 | read foo;"\' | |
41 | """ % (command, command, command) ) |
|
41 | """ % (command, command, command) ) | |
42 |
|
42 | |||
43 | #------------------------------------------------------------------------------- |
|
43 | #------------------------------------------------------------------------------- | |
44 | # Frontend class using ipython0 to do the prefiltering. |
|
44 | # Frontend class using ipython0 to do the prefiltering. | |
45 | #------------------------------------------------------------------------------- |
|
45 | #------------------------------------------------------------------------------- | |
46 | class PrefilterFrontEnd(LineFrontEndBase): |
|
46 | class PrefilterFrontEnd(LineFrontEndBase): | |
47 |
|
47 | |||
48 | def __init__(self, *args, **kwargs): |
|
48 | def __init__(self, *args, **kwargs): | |
49 | LineFrontEndBase.__init__(self, *args, **kwargs) |
|
49 | LineFrontEndBase.__init__(self, *args, **kwargs) | |
50 | # Instanciate an IPython0 interpreter to be able to use the |
|
50 | # Instanciate an IPython0 interpreter to be able to use the | |
51 | # prefiltering. |
|
51 | # prefiltering. | |
52 | self.ipython0 = make_IPython() |
|
52 | self.ipython0 = make_IPython() | |
53 | # Set the pager: |
|
53 | # Set the pager: | |
54 | self.ipython0.set_hook('show_in_pager', |
|
54 | self.ipython0.set_hook('show_in_pager', | |
55 | lambda s, string: self.write("\n"+string)) |
|
55 | lambda s, string: self.write("\n"+string)) | |
56 | self.ipython0.write = self.write |
|
56 | self.ipython0.write = self.write | |
57 | self._ip = _ip = IPApi(self.ipython0) |
|
57 | self._ip = _ip = IPApi(self.ipython0) | |
58 | # XXX: Hack: mix the two namespaces |
|
58 | # XXX: Hack: mix the two namespaces | |
59 | self.shell.user_ns = self.ipython0.user_ns |
|
59 | self.shell.user_ns = self.ipython0.user_ns | |
60 | self.shell.user_global_ns = self.ipython0.user_global_ns |
|
60 | self.shell.user_global_ns = self.ipython0.user_global_ns | |
61 | # Make sure the raw system call doesn't get called, as we don't |
|
61 | # Make sure the raw system call doesn't get called, as we don't | |
62 | # have a stdin accessible. |
|
62 | # have a stdin accessible. | |
63 | self._ip.system = xterm_system |
|
63 | self._ip.system = xterm_system | |
64 | # Redefine a serie of magics to avoid os.system: |
|
64 | # Redefine a serie of magics to avoid os.system: | |
65 | # FIXME: I am redefining way too much magics. |
|
65 | # FIXME: I am redefining way too much magics. | |
66 | for alias_name, (_, alias_value) in \ |
|
66 | for alias_name, (_, alias_value) in \ | |
67 | _ip.IP.shell.alias_table.iteritems(): |
|
67 | _ip.IP.shell.alias_table.iteritems(): | |
68 | magic = lambda s : _ip.magic('sx %s %s' % (alias_value, s)) |
|
68 | magic = lambda s : _ip.magic('sx %s %s' % (alias_value, s)) | |
69 | setattr(_ip.IP, 'magic_%s' % alias_name, magic) |
|
69 | setattr(_ip.IP, 'magic_%s' % alias_name, magic) | |
70 | # FIXME: I should create a real file-like object dedicated to this |
|
70 | # FIXME: I should create a real file-like object dedicated to this | |
71 | # terminal |
|
71 | # terminal | |
72 | self.shell.output_trap = SyncOutputTrap(write_out=self.write, |
|
72 | self.shell.output_trap = SyncOutputTrap(write_out=self.write, | |
73 | write_err=self.write) |
|
73 | write_err=self.write) | |
74 |
|
74 | |||
|
75 | import pydoc | |||
|
76 | pydoc.help.output = self.shell.output_trap.out | |||
75 |
|
77 | |||
76 |
|
78 | |||
77 | def prefilter_input(self, input_string): |
|
79 | def prefilter_input(self, input_string): | |
78 | """ Using IPython0 to prefilter the commands. |
|
80 | """ Using IPython0 to prefilter the commands. | |
79 | """ |
|
81 | """ | |
80 | input_string = LineFrontEndBase.prefilter_input(self, input_string) |
|
82 | input_string = LineFrontEndBase.prefilter_input(self, input_string) | |
81 | filtered_lines = [] |
|
83 | filtered_lines = [] | |
82 | # The IPython0 prefilters sometime produce output. We need to |
|
84 | # The IPython0 prefilters sometime produce output. We need to | |
83 | # capture it. |
|
85 | # capture it. | |
84 | self.capture_output() |
|
86 | self.capture_output() | |
85 | self.last_result = dict(number=self.prompt_number) |
|
87 | self.last_result = dict(number=self.prompt_number) | |
86 | try: |
|
88 | try: | |
87 | for line in input_string.split('\n'): |
|
89 | for line in input_string.split('\n'): | |
88 | filtered_lines.append(self.ipython0.prefilter(line, False)) |
|
90 | filtered_lines.append(self.ipython0.prefilter(line, False)) | |
89 | except: |
|
91 | except: | |
90 | # XXX: probably not the right thing to do. |
|
92 | # XXX: probably not the right thing to do. | |
91 | self.ipython0.showsyntaxerror() |
|
93 | self.ipython0.showsyntaxerror() | |
92 | self.after_execute() |
|
94 | self.after_execute() | |
93 | finally: |
|
95 | finally: | |
94 | self.release_output() |
|
96 | self.release_output() | |
95 |
|
97 | |||
96 | filtered_string = '\n'.join(filtered_lines) |
|
98 | filtered_string = '\n'.join(filtered_lines) | |
97 | return filtered_string |
|
99 | return filtered_string | |
98 |
|
100 | |||
99 |
|
101 | |||
100 | def show_traceback(self): |
|
102 | def show_traceback(self): | |
101 | self.capture_output() |
|
103 | self.capture_output() | |
102 | self.ipython0.showtraceback() |
|
104 | self.ipython0.showtraceback() | |
103 | self.release_output() |
|
105 | self.release_output() | |
104 |
|
106 | |||
105 |
|
107 | |||
106 | def capture_output(self): |
|
108 | def capture_output(self): | |
107 | """ Capture all the output mechanism we can think of. |
|
109 | """ Capture all the output mechanism we can think of. | |
108 | """ |
|
110 | """ | |
109 | self.__old_cout_write = Term.cout.write |
|
111 | self.__old_cout_write = Term.cout.write | |
110 | self.__old_err_write = Term.cerr.write |
|
112 | self.__old_err_write = Term.cerr.write | |
111 | Term.cout.write = self.write |
|
113 | Term.cout.write = self.write | |
112 | Term.cerr.write = self.write |
|
114 | Term.cerr.write = self.write | |
113 | self.__old_stdout = sys.stdout |
|
115 | self.__old_stdout = sys.stdout | |
114 | self.__old_stderr= sys.stderr |
|
116 | self.__old_stderr= sys.stderr | |
115 | sys.stdout = Term.cout |
|
117 | sys.stdout = Term.cout | |
116 | sys.stderr = Term.cerr |
|
118 | sys.stderr = Term.cerr | |
117 | # FIXME: I still need to provide the writelines method |
|
119 | ||
118 |
|
120 | |||
119 | def release_output(self): |
|
121 | def release_output(self): | |
120 | """ Release all the different captures we have made, |
|
122 | """ Release all the different captures we have made, | |
121 | and flush the buffers. |
|
123 | and flush the buffers. | |
122 | """ |
|
124 | """ | |
123 | Term.cout.write = self.__old_cout_write |
|
125 | Term.cout.write = self.__old_cout_write | |
124 | Term.cerr.write = self.__old_err_write |
|
126 | Term.cerr.write = self.__old_err_write | |
125 | sys.stdout = self.__old_stdout |
|
127 | sys.stdout = self.__old_stdout | |
126 | sys.stderr = self.__old_stderr |
|
128 | sys.stderr = self.__old_stderr | |
127 |
|
129 | |||
128 |
|
130 | |||
129 | def complete(self, line): |
|
131 | def complete(self, line): | |
130 | word = line.split('\n')[-1].split(' ')[-1] |
|
132 | word = line.split('\n')[-1].split(' ')[-1] | |
131 | completions = self.ipython0.complete(word) |
|
133 | completions = self.ipython0.complete(word) | |
132 | key = lambda x: x.replace('_', '') |
|
134 | key = lambda x: x.replace('_', '') | |
133 | completions.sort(key=key) |
|
135 | completions.sort(key=key) | |
134 | if completions: |
|
136 | if completions: | |
135 | prefix = common_prefix(completions) |
|
137 | prefix = common_prefix(completions) | |
136 | line = line[:-len(word)] + prefix |
|
138 | line = line[:-len(word)] + prefix | |
137 | return line, completions |
|
139 | return line, completions | |
138 |
|
140 | |||
139 |
|
141 |
@@ -1,252 +1,254 b'' | |||||
1 | # encoding: utf-8 -*- test-case-name: |
|
1 | # encoding: utf-8 -*- test-case-name: | |
2 | # FIXME: Need to add tests. |
|
2 | # FIXME: Need to add tests. | |
3 | # ipython1.frontend.cocoa.tests.test_cocoa_frontend -*- |
|
3 | # ipython1.frontend.cocoa.tests.test_cocoa_frontend -*- | |
4 |
|
4 | |||
5 | """Classes to provide a Wx frontend to the |
|
5 | """Classes to provide a Wx frontend to the | |
6 | IPython.kernel.core.interpreter. |
|
6 | IPython.kernel.core.interpreter. | |
7 |
|
7 | |||
8 | """ |
|
8 | """ | |
9 |
|
9 | |||
10 | __docformat__ = "restructuredtext en" |
|
10 | __docformat__ = "restructuredtext en" | |
11 |
|
11 | |||
12 | #------------------------------------------------------------------------------- |
|
12 | #------------------------------------------------------------------------------- | |
13 | # Copyright (C) 2008 The IPython Development Team |
|
13 | # Copyright (C) 2008 The IPython Development Team | |
14 | # |
|
14 | # | |
15 | # Distributed under the terms of the BSD License. The full license is in |
|
15 | # Distributed under the terms of the BSD License. The full license is in | |
16 | # the file COPYING, distributed as part of this software. |
|
16 | # the file COPYING, distributed as part of this software. | |
17 | #------------------------------------------------------------------------------- |
|
17 | #------------------------------------------------------------------------------- | |
18 |
|
18 | |||
19 | #------------------------------------------------------------------------------- |
|
19 | #------------------------------------------------------------------------------- | |
20 | # Imports |
|
20 | # Imports | |
21 | #------------------------------------------------------------------------------- |
|
21 | #------------------------------------------------------------------------------- | |
22 |
|
22 | |||
23 |
|
23 | |||
24 | import wx |
|
24 | import wx | |
25 | import re |
|
25 | import re | |
26 | from wx import stc |
|
26 | from wx import stc | |
27 | from console_widget import ConsoleWidget |
|
27 | from console_widget import ConsoleWidget | |
28 | import __builtin__ |
|
28 | import __builtin__ | |
29 | from time import sleep |
|
29 | from time import sleep | |
30 |
|
30 | |||
31 | from IPython.frontend.prefilterfrontend import PrefilterFrontEnd |
|
31 | from IPython.frontend.prefilterfrontend import PrefilterFrontEnd | |
32 |
|
32 | |||
33 | #_COMMAND_BG = '#FAFAF1' # Nice green |
|
33 | #_COMMAND_BG = '#FAFAF1' # Nice green | |
34 | _RUNNING_BUFFER_BG = '#FDFFD3' # Nice yellow |
|
34 | _RUNNING_BUFFER_BG = '#FDFFD3' # Nice yellow | |
35 | _ERROR_BG = '#FFF1F1' # Nice red |
|
35 | _ERROR_BG = '#FFF1F1' # Nice red | |
36 |
|
36 | |||
37 | _RUNNING_BUFFER_MARKER = 31 |
|
37 | _RUNNING_BUFFER_MARKER = 31 | |
38 | _ERROR_MARKER = 30 |
|
38 | _ERROR_MARKER = 30 | |
39 |
|
39 | |||
40 | #------------------------------------------------------------------------------- |
|
40 | #------------------------------------------------------------------------------- | |
41 | # Classes to implement the Wx frontend |
|
41 | # Classes to implement the Wx frontend | |
42 | #------------------------------------------------------------------------------- |
|
42 | #------------------------------------------------------------------------------- | |
43 | class WxController(PrefilterFrontEnd, ConsoleWidget): |
|
43 | class WxController(PrefilterFrontEnd, ConsoleWidget): | |
44 |
|
44 | |||
45 | output_prompt = \ |
|
45 | output_prompt = \ | |
46 | '\x01\x1b[0;31m\x02Out[\x01\x1b[1;31m\x02%i\x01\x1b[0;31m\x02]: \x01\x1b[0m\x02' |
|
46 | '\x01\x1b[0;31m\x02Out[\x01\x1b[1;31m\x02%i\x01\x1b[0;31m\x02]: \x01\x1b[0m\x02' | |
47 |
|
47 | |||
48 | #-------------------------------------------------------------------------- |
|
48 | #-------------------------------------------------------------------------- | |
49 | # Public API |
|
49 | # Public API | |
50 | #-------------------------------------------------------------------------- |
|
50 | #-------------------------------------------------------------------------- | |
51 |
|
51 | |||
52 | def __init__(self, parent, id=wx.ID_ANY, pos=wx.DefaultPosition, |
|
52 | def __init__(self, parent, id=wx.ID_ANY, pos=wx.DefaultPosition, | |
53 | size=wx.DefaultSize, style=wx.CLIP_CHILDREN, |
|
53 | size=wx.DefaultSize, style=wx.CLIP_CHILDREN, | |
54 | *args, **kwds): |
|
54 | *args, **kwds): | |
55 | """ Create Shell instance. |
|
55 | """ Create Shell instance. | |
56 | """ |
|
56 | """ | |
57 | ConsoleWidget.__init__(self, parent, id, pos, size, style) |
|
57 | ConsoleWidget.__init__(self, parent, id, pos, size, style) | |
58 | PrefilterFrontEnd.__init__(self) |
|
58 | PrefilterFrontEnd.__init__(self) | |
59 |
|
59 | |||
60 | # Capture Character keys |
|
60 | # Capture Character keys | |
61 | self.Bind(wx.EVT_KEY_DOWN, self._on_key_down) |
|
61 | self.Bind(wx.EVT_KEY_DOWN, self._on_key_down) | |
62 |
|
62 | |||
63 | # Marker for running buffer. |
|
63 | # Marker for running buffer. | |
64 | self.MarkerDefine(_RUNNING_BUFFER_MARKER, stc.STC_MARK_BACKGROUND, |
|
64 | self.MarkerDefine(_RUNNING_BUFFER_MARKER, stc.STC_MARK_BACKGROUND, | |
65 | background=_RUNNING_BUFFER_BG) |
|
65 | background=_RUNNING_BUFFER_BG) | |
66 | # Marker for tracebacks. |
|
66 | # Marker for tracebacks. | |
67 | self.MarkerDefine(_ERROR_MARKER, stc.STC_MARK_BACKGROUND, |
|
67 | self.MarkerDefine(_ERROR_MARKER, stc.STC_MARK_BACKGROUND, | |
68 | background=_ERROR_BG) |
|
68 | background=_ERROR_BG) | |
69 |
|
69 | |||
70 |
|
70 | |||
71 |
|
71 | |||
72 | def do_completion(self): |
|
72 | def do_completion(self): | |
73 | """ Do code completion. |
|
73 | """ Do code completion. | |
74 | """ |
|
74 | """ | |
75 | line = self.get_current_edit_buffer() |
|
75 | line = self.get_current_edit_buffer() | |
76 | new_line, completions = self.complete(line) |
|
76 | new_line, completions = self.complete(line) | |
77 | if len(completions)>1: |
|
77 | if len(completions)>1: | |
78 | self.write_completion(completions) |
|
78 | self.write_completion(completions) | |
79 | self.replace_current_edit_buffer(new_line) |
|
79 | self.replace_current_edit_buffer(new_line) | |
80 |
|
80 | |||
81 |
|
81 | |||
82 | def do_calltip(self): |
|
82 | def do_calltip(self): | |
83 | separators = re.compile('[\s\{\}\[\]\(\)\= ,:]') |
|
83 | separators = re.compile('[\s\{\}\[\]\(\)\= ,:]') | |
84 | symbol = self.get_current_edit_buffer() |
|
84 | symbol = self.get_current_edit_buffer() | |
85 | symbol_string = separators.split(symbol)[-1] |
|
85 | symbol_string = separators.split(symbol)[-1] | |
86 | base_symbol_string = symbol_string.split('.')[0] |
|
86 | base_symbol_string = symbol_string.split('.')[0] | |
87 | if base_symbol_string in self.shell.user_ns: |
|
87 | if base_symbol_string in self.shell.user_ns: | |
88 | symbol = self.shell.user_ns[base_symbol_string] |
|
88 | symbol = self.shell.user_ns[base_symbol_string] | |
89 | elif base_symbol_string in self.shell.user_global_ns: |
|
89 | elif base_symbol_string in self.shell.user_global_ns: | |
90 | symbol = self.shell.user_global_ns[base_symbol_string] |
|
90 | symbol = self.shell.user_global_ns[base_symbol_string] | |
91 | elif base_symbol_string in __builtin__.__dict__: |
|
91 | elif base_symbol_string in __builtin__.__dict__: | |
92 | symbol = __builtin__.__dict__[base_symbol_string] |
|
92 | symbol = __builtin__.__dict__[base_symbol_string] | |
93 | else: |
|
93 | else: | |
94 | return False |
|
94 | return False | |
95 | for name in symbol_string.split('.')[1:] + ['__doc__']: |
|
95 | for name in symbol_string.split('.')[1:] + ['__doc__']: | |
96 | symbol = getattr(symbol, name) |
|
96 | symbol = getattr(symbol, name) | |
97 | try: |
|
97 | try: | |
98 | self.AutoCompCancel() |
|
98 | self.AutoCompCancel() | |
99 | wx.Yield() |
|
99 | wx.Yield() | |
100 | self.CallTipShow(self.GetCurrentPos(), symbol) |
|
100 | self.CallTipShow(self.GetCurrentPos(), symbol) | |
101 | except: |
|
101 | except: | |
102 | # The retrieve symbol couldn't be converted to a string |
|
102 | # The retrieve symbol couldn't be converted to a string | |
103 | pass |
|
103 | pass | |
104 |
|
104 | |||
105 |
|
105 | |||
106 | def popup_completion(self, create=False): |
|
106 | def popup_completion(self, create=False): | |
107 | """ Updates the popup completion menu if it exists. If create is |
|
107 | """ Updates the popup completion menu if it exists. If create is | |
108 | true, open the menu. |
|
108 | true, open the menu. | |
109 | """ |
|
109 | """ | |
110 | line = self.get_current_edit_buffer() |
|
110 | line = self.get_current_edit_buffer() | |
111 | if (self.AutoCompActive() and not line[-1] == '.') \ |
|
111 | if (self.AutoCompActive() and not line[-1] == '.') \ | |
112 | or create==True: |
|
112 | or create==True: | |
113 | suggestion, completions = self.complete(line) |
|
113 | suggestion, completions = self.complete(line) | |
114 | offset=0 |
|
114 | offset=0 | |
115 | if completions: |
|
115 | if completions: | |
116 | complete_sep = re.compile('[\s\{\}\[\]\(\)\= ,:]') |
|
116 | complete_sep = re.compile('[\s\{\}\[\]\(\)\= ,:]') | |
117 | residual = complete_sep.split(line)[-1] |
|
117 | residual = complete_sep.split(line)[-1] | |
118 | offset = len(residual) |
|
118 | offset = len(residual) | |
119 | self.pop_completion(completions, offset=offset) |
|
119 | self.pop_completion(completions, offset=offset) | |
120 |
|
120 | |||
121 |
|
121 | |||
122 | def raw_input(self, prompt): |
|
122 | def raw_input(self, prompt): | |
123 | """ A replacement from python's raw_input. |
|
123 | """ A replacement from python's raw_input. | |
124 | """ |
|
124 | """ | |
125 | self.new_prompt(prompt) |
|
125 | self.new_prompt(prompt) | |
126 | self.waiting = True |
|
126 | self.waiting = True | |
127 | self.__old_on_enter = self._on_enter |
|
127 | self.__old_on_enter = self._on_enter | |
128 | def my_on_enter(): |
|
128 | def my_on_enter(): | |
129 | self.waiting = False |
|
129 | self.waiting = False | |
130 | self._on_enter = my_on_enter |
|
130 | self._on_enter = my_on_enter | |
131 | # XXX: Busy waiting, ugly. |
|
131 | # XXX: Busy waiting, ugly. | |
132 | while self.waiting: |
|
132 | while self.waiting: | |
133 | wx.Yield() |
|
133 | wx.Yield() | |
134 | sleep(0.1) |
|
134 | sleep(0.1) | |
135 | self._on_enter = self.__old_on_enter |
|
135 | self._on_enter = self.__old_on_enter | |
136 | return self.get_current_edit_buffer().rstrip('\n') |
|
136 | return self.get_current_edit_buffer().rstrip('\n') | |
137 |
|
137 | |||
138 |
|
138 | |||
139 | def execute(self, python_string, raw_string=None): |
|
139 | def execute(self, python_string, raw_string=None): | |
140 | self.CallTipCancel() |
|
140 | self.CallTipCancel() | |
141 | self._cursor = wx.BusyCursor() |
|
141 | self._cursor = wx.BusyCursor() | |
142 | if raw_string is None: |
|
142 | if raw_string is None: | |
143 | raw_string = python_string |
|
143 | raw_string = python_string | |
144 | end_line = self.current_prompt_line \ |
|
144 | end_line = self.current_prompt_line \ | |
145 | + max(1, len(raw_string.split('\n'))-1) |
|
145 | + max(1, len(raw_string.split('\n'))-1) | |
146 | for i in range(self.current_prompt_line, end_line): |
|
146 | for i in range(self.current_prompt_line, end_line): | |
147 | self.MarkerAdd(i, _RUNNING_BUFFER_MARKER) |
|
147 | self.MarkerAdd(i, _RUNNING_BUFFER_MARKER) | |
148 | # Update the display: |
|
148 | # Update the display: | |
149 | wx.Yield() |
|
149 | wx.Yield() | |
150 | ## Remove the trailing "\n" for cleaner display |
|
150 | ## Remove the trailing "\n" for cleaner display | |
151 | #self.SetSelection(self.GetLength()-1, self.GetLength()) |
|
151 | #self.SetSelection(self.GetLength()-1, self.GetLength()) | |
152 | #self.ReplaceSelection('') |
|
152 | #self.ReplaceSelection('') | |
153 | self.GotoPos(self.GetLength()) |
|
153 | self.GotoPos(self.GetLength()) | |
154 | self.__old_raw_input = __builtin__.raw_input |
|
154 | self.__old_raw_input = __builtin__.raw_input | |
155 | __builtin__.raw_input = self.raw_input |
|
155 | __builtin__.raw_input = self.raw_input | |
156 | PrefilterFrontEnd.execute(self, python_string, raw_string=raw_string) |
|
156 | PrefilterFrontEnd.execute(self, python_string, raw_string=raw_string) | |
157 | __builtin__.raw_input = self.__old_raw_input |
|
157 | __builtin__.raw_input = self.__old_raw_input | |
158 |
|
158 | |||
159 |
|
159 | |||
160 | def after_execute(self): |
|
160 | def after_execute(self): | |
161 | PrefilterFrontEnd.after_execute(self) |
|
161 | PrefilterFrontEnd.after_execute(self) | |
162 | if hasattr(self, '_cursor'): |
|
162 | if hasattr(self, '_cursor'): | |
163 | del self._cursor |
|
163 | del self._cursor | |
164 |
|
164 | |||
165 |
|
165 | |||
166 | def show_traceback(self): |
|
166 | def show_traceback(self): | |
167 | start_line = self.GetCurrentLine() |
|
167 | start_line = self.GetCurrentLine() | |
168 | PrefilterFrontEnd.show_traceback(self) |
|
168 | PrefilterFrontEnd.show_traceback(self) | |
169 | wx.Yield() |
|
169 | wx.Yield() | |
170 | for i in range(start_line, self.GetCurrentLine()): |
|
170 | for i in range(start_line, self.GetCurrentLine()): | |
171 | self.MarkerAdd(i, _ERROR_MARKER) |
|
171 | self.MarkerAdd(i, _ERROR_MARKER) | |
172 |
|
172 | |||
173 |
|
173 | |||
174 | #-------------------------------------------------------------------------- |
|
174 | #-------------------------------------------------------------------------- | |
175 | # Private API |
|
175 | # Private API | |
176 | #-------------------------------------------------------------------------- |
|
176 | #-------------------------------------------------------------------------- | |
177 |
|
177 | |||
178 |
|
178 | |||
179 | def _on_key_down(self, event, skip=True): |
|
179 | def _on_key_down(self, event, skip=True): | |
180 | """ Capture the character events, let the parent |
|
180 | """ Capture the character events, let the parent | |
181 | widget handle them, and put our logic afterward. |
|
181 | widget handle them, and put our logic afterward. | |
182 | """ |
|
182 | """ | |
183 | current_line_number = self.GetCurrentLine() |
|
183 | current_line_number = self.GetCurrentLine() | |
|
184 | # Calltips | |||
184 | if event.KeyCode == ord('('): |
|
185 | if event.KeyCode == ord('('): | |
185 | event.Skip() |
|
186 | event.Skip() | |
186 | self.do_calltip() |
|
187 | self.do_calltip() | |
187 | elif self.AutoCompActive(): |
|
188 | elif self.AutoCompActive(): | |
188 | event.Skip() |
|
189 | event.Skip() | |
189 | if event.KeyCode in (wx.WXK_BACK, wx.WXK_DELETE): |
|
190 | if event.KeyCode in (wx.WXK_BACK, wx.WXK_DELETE): | |
190 | wx.CallAfter(self.popup_completion, create=True) |
|
191 | wx.CallAfter(self.popup_completion, create=True) | |
191 | elif not event.KeyCode in (wx.WXK_UP, wx.WXK_DOWN, wx.WXK_LEFT, |
|
192 | elif not event.KeyCode in (wx.WXK_UP, wx.WXK_DOWN, wx.WXK_LEFT, | |
192 | wx.WXK_RIGHT): |
|
193 | wx.WXK_RIGHT): | |
193 | wx.CallAfter(self.popup_completion) |
|
194 | wx.CallAfter(self.popup_completion) | |
194 | else: |
|
195 | else: | |
195 | # Up history |
|
196 | # Up history | |
196 | if event.KeyCode == wx.WXK_UP and ( |
|
197 | if event.KeyCode == wx.WXK_UP and ( | |
197 | ( current_line_number == self.current_prompt_line and |
|
198 | ( current_line_number == self.current_prompt_line and | |
198 | event.Modifiers in (wx.MOD_NONE, wx.MOD_WIN) ) |
|
199 | event.Modifiers in (wx.MOD_NONE, wx.MOD_WIN) ) | |
199 | or event.ControlDown() ): |
|
200 | or event.ControlDown() ): | |
200 | new_buffer = self.get_history_previous( |
|
201 | new_buffer = self.get_history_previous( | |
201 | self.get_current_edit_buffer()) |
|
202 | self.get_current_edit_buffer()) | |
202 | if new_buffer is not None: |
|
203 | if new_buffer is not None: | |
203 | self.replace_current_edit_buffer(new_buffer) |
|
204 | self.replace_current_edit_buffer(new_buffer) | |
204 | if self.GetCurrentLine() > self.current_prompt_line: |
|
205 | if self.GetCurrentLine() > self.current_prompt_line: | |
205 | # Go to first line, for seemless history up. |
|
206 | # Go to first line, for seemless history up. | |
206 | self.GotoPos(self.current_prompt_pos) |
|
207 | self.GotoPos(self.current_prompt_pos) | |
207 | # Down history |
|
208 | # Down history | |
208 | elif event.KeyCode == wx.WXK_DOWN and ( |
|
209 | elif event.KeyCode == wx.WXK_DOWN and ( | |
209 | ( current_line_number == self.LineCount -1 and |
|
210 | ( current_line_number == self.LineCount -1 and | |
210 | event.Modifiers in (wx.MOD_NONE, wx.MOD_WIN) ) |
|
211 | event.Modifiers in (wx.MOD_NONE, wx.MOD_WIN) ) | |
211 | or event.ControlDown() ): |
|
212 | or event.ControlDown() ): | |
212 | new_buffer = self.get_history_next() |
|
213 | new_buffer = self.get_history_next() | |
213 | if new_buffer is not None: |
|
214 | if new_buffer is not None: | |
214 | self.replace_current_edit_buffer(new_buffer) |
|
215 | self.replace_current_edit_buffer(new_buffer) | |
|
216 | # Tab-completion | |||
215 | elif event.KeyCode == ord('\t'): |
|
217 | elif event.KeyCode == ord('\t'): | |
216 | last_line = self.get_current_edit_buffer().split('\n')[-1] |
|
218 | last_line = self.get_current_edit_buffer().split('\n')[-1] | |
217 | if not re.match(r'^\s*$', last_line): |
|
219 | if not re.match(r'^\s*$', last_line): | |
218 | self.do_completion() |
|
220 | self.do_completion() | |
219 | else: |
|
221 | else: | |
220 | event.Skip() |
|
222 | event.Skip() | |
221 | else: |
|
223 | else: | |
222 | ConsoleWidget._on_key_down(self, event, skip=skip) |
|
224 | ConsoleWidget._on_key_down(self, event, skip=skip) | |
223 |
|
225 | |||
224 |
|
226 | |||
225 | def _on_key_up(self, event, skip=True): |
|
227 | def _on_key_up(self, event, skip=True): | |
226 | if event.KeyCode == 59: |
|
228 | if event.KeyCode == 59: | |
227 | # Intercepting '.' |
|
229 | # Intercepting '.' | |
228 | event.Skip() |
|
230 | event.Skip() | |
229 | self.popup_completion(create=True) |
|
231 | self.popup_completion(create=True) | |
230 | else: |
|
232 | else: | |
231 | ConsoleWidget._on_key_up(self, event, skip=skip) |
|
233 | ConsoleWidget._on_key_up(self, event, skip=skip) | |
232 |
|
234 | |||
233 |
|
235 | |||
234 | if __name__ == '__main__': |
|
236 | if __name__ == '__main__': | |
235 | class MainWindow(wx.Frame): |
|
237 | class MainWindow(wx.Frame): | |
236 | def __init__(self, parent, id, title): |
|
238 | def __init__(self, parent, id, title): | |
237 | wx.Frame.__init__(self, parent, id, title, size=(300,250)) |
|
239 | wx.Frame.__init__(self, parent, id, title, size=(300,250)) | |
238 | self._sizer = wx.BoxSizer(wx.VERTICAL) |
|
240 | self._sizer = wx.BoxSizer(wx.VERTICAL) | |
239 | self.shell = WxController(self) |
|
241 | self.shell = WxController(self) | |
240 | self._sizer.Add(self.shell, 1, wx.EXPAND) |
|
242 | self._sizer.Add(self.shell, 1, wx.EXPAND) | |
241 | self.SetSizer(self._sizer) |
|
243 | self.SetSizer(self._sizer) | |
242 | self.SetAutoLayout(1) |
|
244 | self.SetAutoLayout(1) | |
243 | self.Show(True) |
|
245 | self.Show(True) | |
244 |
|
246 | |||
245 | app = wx.PySimpleApp() |
|
247 | app = wx.PySimpleApp() | |
246 | frame = MainWindow(None, wx.ID_ANY, 'Ipython') |
|
248 | frame = MainWindow(None, wx.ID_ANY, 'Ipython') | |
247 | frame.shell.SetFocus() |
|
249 | frame.shell.SetFocus() | |
248 | frame.SetSize((680, 460)) |
|
250 | frame.SetSize((680, 460)) | |
249 | self = frame.shell |
|
251 | self = frame.shell | |
250 |
|
252 | |||
251 | app.MainLoop() |
|
253 | app.MainLoop() | |
252 |
|
254 |
General Comments 0
You need to be logged in to leave comments.
Login now