##// END OF EJS Templates
Merge branch 'epatters-qtfrontend' into kernelmanager
Brian Granger -
r2741:e34a2ef9 merge
parent child Browse files
Show More
This diff has been collapsed as it changes many lines, (683 lines changed) Show them Hide them
@@ -1,978 +1,1047 b''
1 1 # Standard library imports
2 2 import sys
3 3
4 4 # System library imports
5 5 from PyQt4 import QtCore, QtGui
6 6
7 7 # Local imports
8 8 from ansi_code_processor import QtAnsiCodeProcessor
9 9 from completion_widget import CompletionWidget
10 10
11 11
12 class ConsoleWidget(QtGui.QPlainTextEdit):
12 class ConsoleWidget(QtGui.QWidget):
13 13 """ Base class for console-type widgets. This class is mainly concerned with
14 14 dealing with the prompt, keeping the cursor inside the editing line, and
15 15 handling ANSI escape sequences.
16 16 """
17 17
18 18 # Whether to process ANSI escape codes.
19 19 ansi_codes = True
20 20
21 21 # The maximum number of lines of text before truncation.
22 22 buffer_size = 500
23 23
24 24 # Whether to use a CompletionWidget or plain text output for tab completion.
25 25 gui_completion = True
26 26
27 27 # Whether to override ShortcutEvents for the keybindings defined by this
28 28 # widget (Ctrl+n, Ctrl+a, etc). Enable this if you want this widget to take
29 29 # priority (when it has focus) over, e.g., window-level menu shortcuts.
30 30 override_shortcuts = False
31 31
32 # Signals that indicate ConsoleWidget state.
33 copy_available = QtCore.pyqtSignal(bool)
34 redo_available = QtCore.pyqtSignal(bool)
35 undo_available = QtCore.pyqtSignal(bool)
36
32 37 # Protected class variables.
33 38 _ctrl_down_remap = { QtCore.Qt.Key_B : QtCore.Qt.Key_Left,
34 39 QtCore.Qt.Key_F : QtCore.Qt.Key_Right,
35 40 QtCore.Qt.Key_A : QtCore.Qt.Key_Home,
36 41 QtCore.Qt.Key_E : QtCore.Qt.Key_End,
37 42 QtCore.Qt.Key_P : QtCore.Qt.Key_Up,
38 43 QtCore.Qt.Key_N : QtCore.Qt.Key_Down,
39 44 QtCore.Qt.Key_D : QtCore.Qt.Key_Delete, }
40 45 _shortcuts = set(_ctrl_down_remap.keys() +
41 46 [ QtCore.Qt.Key_C, QtCore.Qt.Key_V ])
42 47
43 48 #---------------------------------------------------------------------------
44 49 # 'QObject' interface
45 50 #---------------------------------------------------------------------------
46 51
47 def __init__(self, parent=None):
48 QtGui.QPlainTextEdit.__init__(self, parent)
52 def __init__(self, kind='plain', parent=None):
53 """ Create a ConsoleWidget.
54
55 Parameters
56 ----------
57 kind : str, optional [default 'plain']
58 The type of text widget to use. Valid values are 'plain', which
59 specifies a QPlainTextEdit, and 'rich', which specifies an
60 QTextEdit.
61
62 parent : QWidget, optional [default None]
63 The parent for this widget.
64 """
65 super(ConsoleWidget, self).__init__(parent)
66
67 # Create the underlying text widget.
68 self._control = self._create_control(kind)
49 69
50 70 # Initialize protected variables. Some variables contain useful state
51 71 # information for subclasses; they should be considered read-only.
52 72 self._ansi_processor = QtAnsiCodeProcessor()
53 self._completion_widget = CompletionWidget(self)
73 self._completion_widget = CompletionWidget(self._control)
54 74 self._continuation_prompt = '> '
55 75 self._continuation_prompt_html = None
56 76 self._executing = False
57 77 self._prompt = ''
58 78 self._prompt_html = None
59 79 self._prompt_pos = 0
60 80 self._reading = False
61 81 self._reading_callback = None
62 82 self._tab_width = 8
63 83
64 84 # Set a monospaced font.
65 85 self.reset_font()
66 86
67 # Define a custom context menu.
68 self._context_menu = QtGui.QMenu(self)
69
70 copy_action = QtGui.QAction('Copy', self)
71 copy_action.triggered.connect(self.copy)
72 self.copyAvailable.connect(copy_action.setEnabled)
73 self._context_menu.addAction(copy_action)
74
75 self._paste_action = QtGui.QAction('Paste', self)
76 self._paste_action.triggered.connect(self.paste)
77 self._context_menu.addAction(self._paste_action)
78 self._context_menu.addSeparator()
79
80 select_all_action = QtGui.QAction('Select All', self)
81 select_all_action.triggered.connect(self.selectAll)
82 self._context_menu.addAction(select_all_action)
83
84 def event(self, event):
85 """ Reimplemented to override shortcuts, if necessary.
86 """
87 # On Mac OS, it is always unnecessary to override shortcuts, hence the
88 # check below. Users should just use the Control key instead of the
89 # Command key.
90 if self.override_shortcuts and \
91 sys.platform != 'darwin' and \
92 event.type() == QtCore.QEvent.ShortcutOverride and \
93 self._control_down(event.modifiers()) and \
94 event.key() in self._shortcuts:
95 event.accept()
96 return True
97 else:
98 return QtGui.QPlainTextEdit.event(self, event)
99
100 #---------------------------------------------------------------------------
101 # 'QWidget' interface
102 #---------------------------------------------------------------------------
103
104 def contextMenuEvent(self, event):
105 """ Reimplemented to create a menu without destructive actions like
106 'Cut' and 'Delete'.
107 """
108 clipboard_empty = QtGui.QApplication.clipboard().text().isEmpty()
109 self._paste_action.setEnabled(not clipboard_empty)
110
111 self._context_menu.exec_(event.globalPos())
112
113 def dragMoveEvent(self, event):
114 """ Reimplemented to disable moving text by drag and drop.
115 """
116 event.ignore()
117
118 def keyPressEvent(self, event):
119 """ Reimplemented to create a console-like interface.
87 def eventFilter(self, obj, event):
88 """ Reimplemented to ensure a console-like behavior in the underlying
89 text widget.
120 90 """
121 intercepted = False
122 cursor = self.textCursor()
123 position = cursor.position()
124 key = event.key()
125 ctrl_down = self._control_down(event.modifiers())
126 alt_down = event.modifiers() & QtCore.Qt.AltModifier
127 shift_down = event.modifiers() & QtCore.Qt.ShiftModifier
128
129 # Even though we have reimplemented 'paste', the C++ level slot is still
130 # called by Qt. So we intercept the key press here.
131 if event.matches(QtGui.QKeySequence.Paste):
132 self.paste()
133 intercepted = True
134
135 elif ctrl_down:
136 if key in self._ctrl_down_remap:
137 ctrl_down = False
138 key = self._ctrl_down_remap[key]
139 event = QtGui.QKeyEvent(QtCore.QEvent.KeyPress, key,
140 QtCore.Qt.NoModifier)
141
142 elif key == QtCore.Qt.Key_K:
143 if self._in_buffer(position):
144 cursor.movePosition(QtGui.QTextCursor.EndOfLine,
145 QtGui.QTextCursor.KeepAnchor)
146 cursor.removeSelectedText()
147 intercepted = True
148
149 elif key == QtCore.Qt.Key_X:
150 intercepted = True
151
152 elif key == QtCore.Qt.Key_Y:
153 self.paste()
154 intercepted = True
155
156 elif alt_down:
157 if key == QtCore.Qt.Key_B:
158 self.setTextCursor(self._get_word_start_cursor(position))
159 intercepted = True
160
161 elif key == QtCore.Qt.Key_F:
162 self.setTextCursor(self._get_word_end_cursor(position))
163 intercepted = True
164
165 elif key == QtCore.Qt.Key_Backspace:
166 cursor = self._get_word_start_cursor(position)
167 cursor.setPosition(position, QtGui.QTextCursor.KeepAnchor)
168 cursor.removeSelectedText()
169 intercepted = True
170
171 elif key == QtCore.Qt.Key_D:
172 cursor = self._get_word_end_cursor(position)
173 cursor.setPosition(position, QtGui.QTextCursor.KeepAnchor)
174 cursor.removeSelectedText()
175 intercepted = True
176
177 if self._completion_widget.isVisible():
178 self._completion_widget.keyPressEvent(event)
179 intercepted = event.isAccepted()
180
181 else:
182 if key in (QtCore.Qt.Key_Return, QtCore.Qt.Key_Enter):
183 if self._reading:
184 self.appendPlainText('\n')
185 self._reading = False
186 if self._reading_callback:
187 self._reading_callback()
188 elif not self._executing:
189 self.execute(interactive=True)
190 intercepted = True
191
192 elif key == QtCore.Qt.Key_Up:
193 if self._reading or not self._up_pressed():
194 intercepted = True
195 else:
196 prompt_line = self._get_prompt_cursor().blockNumber()
197 intercepted = cursor.blockNumber() <= prompt_line
198
199 elif key == QtCore.Qt.Key_Down:
200 if self._reading or not self._down_pressed():
201 intercepted = True
202 else:
203 end_line = self._get_end_cursor().blockNumber()
204 intercepted = cursor.blockNumber() == end_line
205
206 elif key == QtCore.Qt.Key_Tab:
207 if self._reading:
208 intercepted = False
209 else:
210 intercepted = not self._tab_pressed()
211
212 elif key == QtCore.Qt.Key_Left:
213 intercepted = not self._in_buffer(position - 1)
91 if obj == self._control:
92 etype = event.type()
214 93
215 elif key == QtCore.Qt.Key_Home:
216 cursor.movePosition(QtGui.QTextCursor.StartOfLine)
217 start_line = cursor.blockNumber()
218 if start_line == self._get_prompt_cursor().blockNumber():
219 start_pos = self._prompt_pos
220 else:
221 start_pos = cursor.position()
222 start_pos += len(self._continuation_prompt)
223 if shift_down and self._in_buffer(position):
224 self._set_selection(position, start_pos)
225 else:
226 self._set_position(start_pos)
227 intercepted = True
94 # Disable moving text by drag and drop.
95 if etype == QtCore.QEvent.DragMove:
96 return True
228 97
229 elif key == QtCore.Qt.Key_Backspace and not alt_down:
98 elif etype == QtCore.QEvent.KeyPress:
99 return self._event_filter_keypress(event)
230 100
231 # Line deletion (remove continuation prompt)
232 len_prompt = len(self._continuation_prompt)
233 if not self._reading and \
234 cursor.columnNumber() == len_prompt and \
235 position != self._prompt_pos:
236 cursor.setPosition(position - len_prompt,
237 QtGui.QTextCursor.KeepAnchor)
238 cursor.removeSelectedText()
101 # On Mac OS, it is always unnecessary to override shortcuts, hence
102 # the check below. Users should just use the Control key instead of
103 # the Command key.
104 elif etype == QtCore.QEvent.ShortcutOverride:
105 if sys.platform != 'darwin' and \
106 self._control_key_down(event.modifiers()) and \
107 event.key() in self._shortcuts:
108 event.accept()
109 return False
239 110
240 # Regular backwards deletion
241 else:
242 anchor = cursor.anchor()
243 if anchor == position:
244 intercepted = not self._in_buffer(position - 1)
245 else:
246 intercepted = not self._in_buffer(min(anchor, position))
247
248 elif key == QtCore.Qt.Key_Delete:
249 anchor = cursor.anchor()
250 intercepted = not self._in_buffer(min(anchor, position))
251
252 # Don't move cursor if control is down to allow copy-paste using
253 # the keyboard in any part of the buffer.
254 if not ctrl_down:
255 self._keep_cursor_in_buffer()
256
257 if not intercepted:
258 QtGui.QPlainTextEdit.keyPressEvent(self, event)
259
260 #--------------------------------------------------------------------------
261 # 'QPlainTextEdit' interface
262 #--------------------------------------------------------------------------
111 return super(ConsoleWidget, self).eventFilter(obj, event)
263 112
264 def appendHtml(self, html):
265 """ Reimplemented to not append HTML as a new paragraph, which doesn't
266 make sense for a console widget.
267 """
268 cursor = self._get_end_cursor()
269 self._insert_html(cursor, html)
270
271 def appendPlainText(self, text):
272 """ Reimplemented to not append text as a new paragraph, which doesn't
273 make sense for a console widget. Also, if enabled, handle ANSI
274 codes.
275 """
276 cursor = self._get_end_cursor()
277 if self.ansi_codes:
278 for substring in self._ansi_processor.split_string(text):
279 format = self._ansi_processor.get_format()
280 cursor.insertText(substring, format)
281 else:
282 cursor.insertText(text)
113 #---------------------------------------------------------------------------
114 # 'ConsoleWidget' public interface
115 #---------------------------------------------------------------------------
283 116
284 117 def clear(self, keep_input=False):
285 """ Reimplemented to write a new prompt. If 'keep_input' is set,
118 """ Clear the console, then write a new prompt. If 'keep_input' is set,
286 119 restores the old input buffer when the new prompt is written.
287 120 """
288 QtGui.QPlainTextEdit.clear(self)
121 self._control.clear()
289 122 if keep_input:
290 123 input_buffer = self.input_buffer
291 124 self._show_prompt()
292 125 if keep_input:
293 126 self.input_buffer = input_buffer
294 127
295 def paste(self):
296 """ Reimplemented to ensure that text is pasted in the editing region.
128 def copy(self):
129 """ Copy the current selected text to the clipboard.
297 130 """
298 self._keep_cursor_in_buffer()
299 QtGui.QPlainTextEdit.paste(self)
300
301 def print_(self, printer):
302 """ Reimplemented to work around a bug in PyQt: the C++ level 'print_'
303 slot has the wrong signature.
304 """
305 QtGui.QPlainTextEdit.print_(self, printer)
306
307 #---------------------------------------------------------------------------
308 # 'ConsoleWidget' public interface
309 #---------------------------------------------------------------------------
131 self._control.copy()
310 132
311 133 def execute(self, source=None, hidden=False, interactive=False):
312 134 """ Executes source or the input buffer, possibly prompting for more
313 135 input.
314 136
315 137 Parameters:
316 138 -----------
317 139 source : str, optional
318 140
319 141 The source to execute. If not specified, the input buffer will be
320 142 used. If specified and 'hidden' is False, the input buffer will be
321 143 replaced with the source before execution.
322 144
323 145 hidden : bool, optional (default False)
324 146
325 147 If set, no output will be shown and the prompt will not be modified.
326 148 In other words, it will be completely invisible to the user that
327 149 an execution has occurred.
328 150
329 151 interactive : bool, optional (default False)
330 152
331 153 Whether the console is to treat the source as having been manually
332 154 entered by the user. The effect of this parameter depends on the
333 155 subclass implementation.
334 156
335 157 Raises:
336 158 -------
337 159 RuntimeError
338 160 If incomplete input is given and 'hidden' is True. In this case,
339 161 it not possible to prompt for more input.
340 162
341 163 Returns:
342 164 --------
343 165 A boolean indicating whether the source was executed.
344 166 """
345 167 if not hidden:
346 168 if source is not None:
347 169 self.input_buffer = source
348 170
349 self.appendPlainText('\n')
171 self._append_plain_text('\n')
350 172 self._executing_input_buffer = self.input_buffer
351 173 self._executing = True
352 174 self._prompt_finished()
353 175
354 176 real_source = self.input_buffer if source is None else source
355 177 complete = self._is_complete(real_source, interactive)
356 178 if complete:
357 179 if not hidden:
358 180 # The maximum block count is only in effect during execution.
359 181 # This ensures that _prompt_pos does not become invalid due to
360 182 # text truncation.
361 self.setMaximumBlockCount(self.buffer_size)
183 self._control.document().setMaximumBlockCount(self.buffer_size)
362 184 self._execute(real_source, hidden)
363 185 elif hidden:
364 186 raise RuntimeError('Incomplete noninteractive input: "%s"' % source)
365 187 else:
366 188 self._show_continuation_prompt()
367 189
368 190 return complete
369 191
370 192 def _get_input_buffer(self):
371 193 """ The text that the user has entered entered at the current prompt.
372 194 """
373 195 # If we're executing, the input buffer may not even exist anymore due to
374 196 # the limit imposed by 'buffer_size'. Therefore, we store it.
375 197 if self._executing:
376 198 return self._executing_input_buffer
377 199
378 200 cursor = self._get_end_cursor()
379 201 cursor.setPosition(self._prompt_pos, QtGui.QTextCursor.KeepAnchor)
380 202 input_buffer = str(cursor.selection().toPlainText())
381 203
382 204 # Strip out continuation prompts.
383 205 return input_buffer.replace('\n' + self._continuation_prompt, '\n')
384 206
385 207 def _set_input_buffer(self, string):
386 208 """ Replaces the text in the input buffer with 'string'.
387 209 """
388 210 # Remove old text.
389 211 cursor = self._get_end_cursor()
390 212 cursor.setPosition(self._prompt_pos, QtGui.QTextCursor.KeepAnchor)
391 213 cursor.removeSelectedText()
392 214
393 215 # Insert new text with continuation prompts.
394 216 lines = string.splitlines(True)
395 217 if lines:
396 self.appendPlainText(lines[0])
218 self._append_plain_text(lines[0])
397 219 for i in xrange(1, len(lines)):
398 220 if self._continuation_prompt_html is None:
399 self.appendPlainText(self._continuation_prompt)
221 self._append_plain_text(self._continuation_prompt)
400 222 else:
401 self.appendHtml(self._continuation_prompt_html)
402 self.appendPlainText(lines[i])
403 self.moveCursor(QtGui.QTextCursor.End)
223 self._append_html(self._continuation_prompt_html)
224 self._append_plain_text(lines[i])
225 self._control.moveCursor(QtGui.QTextCursor.End)
404 226
405 227 input_buffer = property(_get_input_buffer, _set_input_buffer)
406 228
407 229 def _get_input_buffer_cursor_line(self):
408 230 """ The text in the line of the input buffer in which the user's cursor
409 231 rests. Returns a string if there is such a line; otherwise, None.
410 232 """
411 233 if self._executing:
412 234 return None
413 cursor = self.textCursor()
235 cursor = self._control.textCursor()
414 236 if cursor.position() >= self._prompt_pos:
415 237 text = self._get_block_plain_text(cursor.block())
416 238 if cursor.blockNumber() == self._get_prompt_cursor().blockNumber():
417 239 return text[len(self._prompt):]
418 240 else:
419 241 return text[len(self._continuation_prompt):]
420 242 else:
421 243 return None
422 244
423 245 input_buffer_cursor_line = property(_get_input_buffer_cursor_line)
424 246
425 247 def _get_font(self):
426 248 """ The base font being used by the ConsoleWidget.
427 249 """
428 return self.document().defaultFont()
250 return self._control.document().defaultFont()
429 251
430 252 def _set_font(self, font):
431 253 """ Sets the base font for the ConsoleWidget to the specified QFont.
432 254 """
433 255 font_metrics = QtGui.QFontMetrics(font)
434 self.setTabStopWidth(self.tab_width * font_metrics.width(' '))
256 self._control.setTabStopWidth(self.tab_width * font_metrics.width(' '))
435 257
436 258 self._completion_widget.setFont(font)
437 self.document().setDefaultFont(font)
259 self._control.document().setDefaultFont(font)
438 260
439 261 font = property(_get_font, _set_font)
440 262
263 def paste(self):
264 """ Paste the contents of the clipboard into the input region.
265 """
266 self._keep_cursor_in_buffer()
267 self._control.paste()
268
269 def print_(self, printer):
270 """ Print the contents of the ConsoleWidget to the specified QPrinter.
271 """
272 self._control.print_(printer)
273
274 def redo(self):
275 """ Redo the last operation. If there is no operation to redo, nothing
276 happens.
277 """
278 self._control.redo()
279
441 280 def reset_font(self):
442 281 """ Sets the font to the default fixed-width font for this platform.
443 282 """
444 283 if sys.platform == 'win32':
445 284 name = 'Courier'
446 285 elif sys.platform == 'darwin':
447 286 name = 'Monaco'
448 287 else:
449 288 name = 'Monospace'
450 289 font = QtGui.QFont(name, QtGui.qApp.font().pointSize())
451 290 font.setStyleHint(QtGui.QFont.TypeWriter)
452 291 self._set_font(font)
453 292
293 def select_all(self):
294 """ Selects all the text in the buffer.
295 """
296 self._control.selectAll()
297
454 298 def _get_tab_width(self):
455 299 """ The width (in terms of space characters) for tab characters.
456 300 """
457 301 return self._tab_width
458 302
459 303 def _set_tab_width(self, tab_width):
460 304 """ Sets the width (in terms of space characters) for tab characters.
461 305 """
462 306 font_metrics = QtGui.QFontMetrics(self.font)
463 self.setTabStopWidth(tab_width * font_metrics.width(' '))
307 self._control.setTabStopWidth(tab_width * font_metrics.width(' '))
464 308
465 309 self._tab_width = tab_width
466 310
467 311 tab_width = property(_get_tab_width, _set_tab_width)
468
312
313 def undo(self):
314 """ Undo the last operation. If there is no operation to undo, nothing
315 happens.
316 """
317 self._control.undo()
318
469 319 #---------------------------------------------------------------------------
470 320 # 'ConsoleWidget' abstract interface
471 321 #---------------------------------------------------------------------------
472 322
473 323 def _is_complete(self, source, interactive):
474 324 """ Returns whether 'source' can be executed. When triggered by an
475 325 Enter/Return key press, 'interactive' is True; otherwise, it is
476 326 False.
477 327 """
478 328 raise NotImplementedError
479 329
480 330 def _execute(self, source, hidden):
481 331 """ Execute 'source'. If 'hidden', do not show any output.
482 332 """
483 333 raise NotImplementedError
484 334
485 335 def _prompt_started_hook(self):
486 336 """ Called immediately after a new prompt is displayed.
487 337 """
488 338 pass
489 339
490 340 def _prompt_finished_hook(self):
491 341 """ Called immediately after a prompt is finished, i.e. when some input
492 342 will be processed and a new prompt displayed.
493 343 """
494 344 pass
495 345
496 346 def _up_pressed(self):
497 347 """ Called when the up key is pressed. Returns whether to continue
498 348 processing the event.
499 349 """
500 350 return True
501 351
502 352 def _down_pressed(self):
503 353 """ Called when the down key is pressed. Returns whether to continue
504 354 processing the event.
505 355 """
506 356 return True
507 357
508 358 def _tab_pressed(self):
509 359 """ Called when the tab key is pressed. Returns whether to continue
510 360 processing the event.
511 361 """
512 362 return False
513 363
514 364 #--------------------------------------------------------------------------
515 365 # 'ConsoleWidget' protected interface
516 366 #--------------------------------------------------------------------------
517 367
368 def _append_html(self, html):
369 """ Appends html at the end of the console buffer.
370 """
371 cursor = self._get_end_cursor()
372 self._insert_html(cursor, html)
373
518 374 def _append_html_fetching_plain_text(self, html):
519 375 """ Appends 'html', then returns the plain text version of it.
520 376 """
521 377 anchor = self._get_end_cursor().position()
522 self.appendHtml(html)
378 self._append_html(html)
523 379 cursor = self._get_end_cursor()
524 380 cursor.setPosition(anchor, QtGui.QTextCursor.KeepAnchor)
525 381 return str(cursor.selection().toPlainText())
526 382
383 def _append_plain_text(self, text):
384 """ Appends plain text at the end of the console buffer, processing
385 ANSI codes if enabled.
386 """
387 cursor = self._get_end_cursor()
388 if self.ansi_codes:
389 for substring in self._ansi_processor.split_string(text):
390 format = self._ansi_processor.get_format()
391 cursor.insertText(substring, format)
392 else:
393 cursor.insertText(text)
394
527 395 def _append_plain_text_keeping_prompt(self, text):
528 396 """ Writes 'text' after the current prompt, then restores the old prompt
529 397 with its old input buffer.
530 398 """
531 399 input_buffer = self.input_buffer
532 self.appendPlainText('\n')
400 self._append_plain_text('\n')
533 401 self._prompt_finished()
534 402
535 self.appendPlainText(text)
403 self._append_plain_text(text)
536 404 self._show_prompt()
537 405 self.input_buffer = input_buffer
538 406
539 def _control_down(self, modifiers):
407 def _complete_with_items(self, cursor, items):
408 """ Performs completion with 'items' at the specified cursor location.
409 """
410 if len(items) == 1:
411 cursor.setPosition(self._control.textCursor().position(),
412 QtGui.QTextCursor.KeepAnchor)
413 cursor.insertText(items[0])
414 elif len(items) > 1:
415 if self.gui_completion:
416 self._completion_widget.show_items(cursor, items)
417 else:
418 text = self._format_as_columns(items)
419 self._append_plain_text_keeping_prompt(text)
420
421 def _control_key_down(self, modifiers):
540 422 """ Given a KeyboardModifiers flags object, return whether the Control
541 423 key is down (on Mac OS, treat the Command key as a synonym for
542 424 Control).
543 425 """
544 426 down = bool(modifiers & QtCore.Qt.ControlModifier)
545 427
546 428 # Note: on Mac OS, ControlModifier corresponds to the Command key while
547 429 # MetaModifier corresponds to the Control key.
548 430 if sys.platform == 'darwin':
549 431 down = down ^ bool(modifiers & QtCore.Qt.MetaModifier)
550 432
551 433 return down
552
553 def _complete_with_items(self, cursor, items):
554 """ Performs completion with 'items' at the specified cursor location.
434
435 def _create_control(self, kind):
436 """ Creates and sets the underlying text widget.
555 437 """
556 if len(items) == 1:
557 cursor.setPosition(self.textCursor().position(),
558 QtGui.QTextCursor.KeepAnchor)
559 cursor.insertText(items[0])
560 elif len(items) > 1:
561 if self.gui_completion:
562 self._completion_widget.show_items(cursor, items)
563 else:
564 text = self._format_as_columns(items)
565 self._append_plain_text_keeping_prompt(text)
438 layout = QtGui.QVBoxLayout(self)
439 layout.setMargin(0)
440 if kind == 'plain':
441 control = QtGui.QPlainTextEdit()
442 elif kind == 'rich':
443 control = QtGui.QTextEdit()
444 else:
445 raise ValueError("Kind %s unknown." % repr(kind))
446 layout.addWidget(control)
447
448 control.installEventFilter(self)
449 control.setContextMenuPolicy(QtCore.Qt.CustomContextMenu)
450 control.customContextMenuRequested.connect(self._show_context_menu)
451 control.copyAvailable.connect(self.copy_available)
452 control.redoAvailable.connect(self.redo_available)
453 control.undoAvailable.connect(self.undo_available)
454
455 return control
456
457 def _event_filter_keypress(self, event):
458 """ Filter key events for the underlying text widget to create a
459 console-like interface.
460 """
461 key = event.key()
462 ctrl_down = self._control_key_down(event.modifiers())
463
464 # If the key is remapped, return immediately.
465 if ctrl_down and key in self._ctrl_down_remap:
466 new_event = QtGui.QKeyEvent(QtCore.QEvent.KeyPress,
467 self._ctrl_down_remap[key],
468 QtCore.Qt.NoModifier)
469 QtGui.qApp.sendEvent(self._control, new_event)
470 return True
471
472 # If the completion widget accepts the key press, return immediately.
473 if self._completion_widget.isVisible():
474 self._completion_widget.keyPressEvent(event)
475 if event.isAccepted():
476 return True
477
478 # Otherwise, proceed normally and do not return early.
479 intercepted = False
480 cursor = self._control.textCursor()
481 position = cursor.position()
482 alt_down = event.modifiers() & QtCore.Qt.AltModifier
483 shift_down = event.modifiers() & QtCore.Qt.ShiftModifier
484
485 if event.matches(QtGui.QKeySequence.Paste):
486 # Call our paste instead of the underlying text widget's.
487 self.paste()
488 intercepted = True
489
490 elif ctrl_down:
491 if key == QtCore.Qt.Key_K:
492 if self._in_buffer(position):
493 cursor.movePosition(QtGui.QTextCursor.EndOfLine,
494 QtGui.QTextCursor.KeepAnchor)
495 cursor.removeSelectedText()
496 intercepted = True
497
498 elif key == QtCore.Qt.Key_X:
499 intercepted = True
500
501 elif key == QtCore.Qt.Key_Y:
502 self.paste()
503 intercepted = True
504
505 elif alt_down:
506 if key == QtCore.Qt.Key_B:
507 self._set_cursor(self._get_word_start_cursor(position))
508 intercepted = True
509
510 elif key == QtCore.Qt.Key_F:
511 self._set_cursor(self._get_word_end_cursor(position))
512 intercepted = True
513
514 elif key == QtCore.Qt.Key_Backspace:
515 cursor = self._get_word_start_cursor(position)
516 cursor.setPosition(position, QtGui.QTextCursor.KeepAnchor)
517 cursor.removeSelectedText()
518 intercepted = True
519
520 elif key == QtCore.Qt.Key_D:
521 cursor = self._get_word_end_cursor(position)
522 cursor.setPosition(position, QtGui.QTextCursor.KeepAnchor)
523 cursor.removeSelectedText()
524 intercepted = True
525
526 else:
527 if key in (QtCore.Qt.Key_Return, QtCore.Qt.Key_Enter):
528 if self._reading:
529 self._append_plain_text('\n')
530 self._reading = False
531 if self._reading_callback:
532 self._reading_callback()
533 elif not self._executing:
534 self.execute(interactive=True)
535 intercepted = True
536
537 elif key == QtCore.Qt.Key_Up:
538 if self._reading or not self._up_pressed():
539 intercepted = True
540 else:
541 prompt_line = self._get_prompt_cursor().blockNumber()
542 intercepted = cursor.blockNumber() <= prompt_line
543
544 elif key == QtCore.Qt.Key_Down:
545 if self._reading or not self._down_pressed():
546 intercepted = True
547 else:
548 end_line = self._get_end_cursor().blockNumber()
549 intercepted = cursor.blockNumber() == end_line
550
551 elif key == QtCore.Qt.Key_Tab:
552 if self._reading:
553 intercepted = False
554 else:
555 intercepted = not self._tab_pressed()
556
557 elif key == QtCore.Qt.Key_Left:
558 intercepted = not self._in_buffer(position - 1)
559
560 elif key == QtCore.Qt.Key_Home:
561 cursor.movePosition(QtGui.QTextCursor.StartOfLine)
562 start_line = cursor.blockNumber()
563 if start_line == self._get_prompt_cursor().blockNumber():
564 start_pos = self._prompt_pos
565 else:
566 start_pos = cursor.position()
567 start_pos += len(self._continuation_prompt)
568 if shift_down and self._in_buffer(position):
569 self._set_selection(position, start_pos)
570 else:
571 self._set_position(start_pos)
572 intercepted = True
573
574 elif key == QtCore.Qt.Key_Backspace and not alt_down:
575
576 # Line deletion (remove continuation prompt)
577 len_prompt = len(self._continuation_prompt)
578 if not self._reading and \
579 cursor.columnNumber() == len_prompt and \
580 position != self._prompt_pos:
581 cursor.setPosition(position - len_prompt,
582 QtGui.QTextCursor.KeepAnchor)
583 cursor.removeSelectedText()
584
585 # Regular backwards deletion
586 else:
587 anchor = cursor.anchor()
588 if anchor == position:
589 intercepted = not self._in_buffer(position - 1)
590 else:
591 intercepted = not self._in_buffer(min(anchor, position))
592
593 elif key == QtCore.Qt.Key_Delete:
594 anchor = cursor.anchor()
595 intercepted = not self._in_buffer(min(anchor, position))
596
597 # Don't move the cursor if control is down to allow copy-paste using
598 # the keyboard in any part of the buffer.
599 if not ctrl_down:
600 self._keep_cursor_in_buffer()
601
602 return intercepted
566 603
567 604 def _format_as_columns(self, items, separator=' '):
568 605 """ Transform a list of strings into a single string with columns.
569 606
570 607 Parameters
571 608 ----------
572 609 items : sequence of strings
573 610 The strings to process.
574 611
575 612 separator : str, optional [default is two spaces]
576 613 The string that separates columns.
577 614
578 615 Returns
579 616 -------
580 617 The formatted string.
581 618 """
582 619 # Note: this code is adapted from columnize 0.3.2.
583 620 # See http://code.google.com/p/pycolumnize/
584 621
585 622 font_metrics = QtGui.QFontMetrics(self.font)
586 623 displaywidth = max(5, (self.width() / font_metrics.width(' ')) - 1)
587 624
588 625 # Some degenerate cases.
589 626 size = len(items)
590 627 if size == 0:
591 628 return '\n'
592 629 elif size == 1:
593 630 return '%s\n' % str(items[0])
594 631
595 632 # Try every row count from 1 upwards
596 633 array_index = lambda nrows, row, col: nrows*col + row
597 634 for nrows in range(1, size):
598 635 ncols = (size + nrows - 1) // nrows
599 636 colwidths = []
600 637 totwidth = -len(separator)
601 638 for col in range(ncols):
602 639 # Get max column width for this column
603 640 colwidth = 0
604 641 for row in range(nrows):
605 642 i = array_index(nrows, row, col)
606 643 if i >= size: break
607 644 x = items[i]
608 645 colwidth = max(colwidth, len(x))
609 646 colwidths.append(colwidth)
610 647 totwidth += colwidth + len(separator)
611 648 if totwidth > displaywidth:
612 649 break
613 650 if totwidth <= displaywidth:
614 651 break
615 652
616 653 # The smallest number of rows computed and the max widths for each
617 654 # column has been obtained. Now we just have to format each of the rows.
618 655 string = ''
619 656 for row in range(nrows):
620 657 texts = []
621 658 for col in range(ncols):
622 659 i = row + nrows*col
623 660 if i >= size:
624 661 texts.append('')
625 662 else:
626 663 texts.append(items[i])
627 664 while texts and not texts[-1]:
628 665 del texts[-1]
629 666 for col in range(len(texts)):
630 667 texts[col] = texts[col].ljust(colwidths[col])
631 668 string += '%s\n' % str(separator.join(texts))
632 669 return string
633 670
634 671 def _get_block_plain_text(self, block):
635 672 """ Given a QTextBlock, return its unformatted text.
636 673 """
637 674 cursor = QtGui.QTextCursor(block)
638 675 cursor.movePosition(QtGui.QTextCursor.StartOfBlock)
639 676 cursor.movePosition(QtGui.QTextCursor.EndOfBlock,
640 677 QtGui.QTextCursor.KeepAnchor)
641 678 return str(cursor.selection().toPlainText())
679
680 def _get_cursor(self):
681 """ Convenience method that returns a cursor for the current position.
682 """
683 return self._control.textCursor()
642 684
643 685 def _get_end_cursor(self):
644 686 """ Convenience method that returns a cursor for the last character.
645 687 """
646 cursor = self.textCursor()
688 cursor = self._control.textCursor()
647 689 cursor.movePosition(QtGui.QTextCursor.End)
648 690 return cursor
649 691
650 692 def _get_prompt_cursor(self):
651 693 """ Convenience method that returns a cursor for the prompt position.
652 694 """
653 cursor = self.textCursor()
695 cursor = self._control.textCursor()
654 696 cursor.setPosition(self._prompt_pos)
655 697 return cursor
656 698
657 699 def _get_selection_cursor(self, start, end):
658 700 """ Convenience method that returns a cursor with text selected between
659 701 the positions 'start' and 'end'.
660 702 """
661 cursor = self.textCursor()
703 cursor = self._control.textCursor()
662 704 cursor.setPosition(start)
663 705 cursor.setPosition(end, QtGui.QTextCursor.KeepAnchor)
664 706 return cursor
665 707
666 708 def _get_word_start_cursor(self, position):
667 709 """ Find the start of the word to the left the given position. If a
668 710 sequence of non-word characters precedes the first word, skip over
669 711 them. (This emulates the behavior of bash, emacs, etc.)
670 712 """
671 document = self.document()
713 document = self._control.document()
672 714 position -= 1
673 715 while self._in_buffer(position) and \
674 716 not document.characterAt(position).isLetterOrNumber():
675 717 position -= 1
676 718 while self._in_buffer(position) and \
677 719 document.characterAt(position).isLetterOrNumber():
678 720 position -= 1
679 cursor = self.textCursor()
721 cursor = self._control.textCursor()
680 722 cursor.setPosition(position + 1)
681 723 return cursor
682 724
683 725 def _get_word_end_cursor(self, position):
684 726 """ Find the end of the word to the right the given position. If a
685 727 sequence of non-word characters precedes the first word, skip over
686 728 them. (This emulates the behavior of bash, emacs, etc.)
687 729 """
688 document = self.document()
730 document = self._control.document()
689 731 end = self._get_end_cursor().position()
690 732 while position < end and \
691 733 not document.characterAt(position).isLetterOrNumber():
692 734 position += 1
693 735 while position < end and \
694 736 document.characterAt(position).isLetterOrNumber():
695 737 position += 1
696 cursor = self.textCursor()
738 cursor = self._control.textCursor()
697 739 cursor.setPosition(position)
698 740 return cursor
699 741
700 742 def _insert_html(self, cursor, html):
701 743 """ Insert HTML using the specified cursor in such a way that future
702 744 formatting is unaffected.
703 745 """
704 746 cursor.insertHtml(html)
705 747
706 748 # After inserting HTML, the text document "remembers" the current
707 749 # formatting, which means that subsequent calls adding plain text
708 750 # will result in similar formatting, a behavior that we do not want. To
709 751 # prevent this, we make sure that the last character has no formatting.
710 752 cursor.movePosition(QtGui.QTextCursor.Left,
711 753 QtGui.QTextCursor.KeepAnchor)
712 754 if cursor.selection().toPlainText().trimmed().isEmpty():
713 755 # If the last character is whitespace, it doesn't matter how it's
714 756 # formatted, so just clear the formatting.
715 757 cursor.setCharFormat(QtGui.QTextCharFormat())
716 758 else:
717 759 # Otherwise, add an unformatted space.
718 760 cursor.movePosition(QtGui.QTextCursor.Right)
719 761 cursor.insertText(' ', QtGui.QTextCharFormat())
720 762
763 def _in_buffer(self, position):
764 """ Returns whether the given position is inside the editing region.
765 """
766 return position >= self._prompt_pos
767
768 def _keep_cursor_in_buffer(self):
769 """ Ensures that the cursor is inside the editing region. Returns
770 whether the cursor was moved.
771 """
772 cursor = self._control.textCursor()
773 if cursor.position() < self._prompt_pos:
774 cursor.movePosition(QtGui.QTextCursor.End)
775 self._control.setTextCursor(cursor)
776 return True
777 else:
778 return False
779
721 780 def _prompt_started(self):
722 781 """ Called immediately after a new prompt is displayed.
723 782 """
724 783 # Temporarily disable the maximum block count to permit undo/redo and
725 784 # to ensure that the prompt position does not change due to truncation.
726 self.setMaximumBlockCount(0)
727 self.setUndoRedoEnabled(True)
785 self._control.document().setMaximumBlockCount(0)
786 self._control.setUndoRedoEnabled(True)
728 787
729 self.setReadOnly(False)
730 self.moveCursor(QtGui.QTextCursor.End)
731 self.centerCursor()
788 self._control.setReadOnly(False)
789 self._control.moveCursor(QtGui.QTextCursor.End)
732 790
733 791 self._executing = False
734 792 self._prompt_started_hook()
735 793
736 794 def _prompt_finished(self):
737 795 """ Called immediately after a prompt is finished, i.e. when some input
738 796 will be processed and a new prompt displayed.
739 797 """
740 self.setUndoRedoEnabled(False)
741 self.setReadOnly(True)
798 self._control.setUndoRedoEnabled(False)
799 self._control.setReadOnly(True)
742 800 self._prompt_finished_hook()
743 801
744 802 def _readline(self, prompt='', callback=None):
745 803 """ Reads one line of input from the user.
746 804
747 805 Parameters
748 806 ----------
749 807 prompt : str, optional
750 808 The prompt to print before reading the line.
751 809
752 810 callback : callable, optional
753 811 A callback to execute with the read line. If not specified, input is
754 812 read *synchronously* and this method does not return until it has
755 813 been read.
756 814
757 815 Returns
758 816 -------
759 817 If a callback is specified, returns nothing. Otherwise, returns the
760 818 input string with the trailing newline stripped.
761 819 """
762 820 if self._reading:
763 821 raise RuntimeError('Cannot read a line. Widget is already reading.')
764 822
765 823 if not callback and not self.isVisible():
766 824 # If the user cannot see the widget, this function cannot return.
767 825 raise RuntimeError('Cannot synchronously read a line if the widget'
768 826 'is not visible!')
769 827
770 828 self._reading = True
771 829 self._show_prompt(prompt, newline=False)
772 830
773 831 if callback is None:
774 832 self._reading_callback = None
775 833 while self._reading:
776 834 QtCore.QCoreApplication.processEvents()
777 835 return self.input_buffer.rstrip('\n')
778 836
779 837 else:
780 838 self._reading_callback = lambda: \
781 839 callback(self.input_buffer.rstrip('\n'))
782 840
783 841 def _reset(self):
784 842 """ Clears the console and resets internal state variables.
785 843 """
786 QtGui.QPlainTextEdit.clear(self)
844 self._control.clear()
787 845 self._executing = self._reading = False
788 846
789 847 def _set_continuation_prompt(self, prompt, html=False):
790 848 """ Sets the continuation prompt.
791 849
792 850 Parameters
793 851 ----------
794 852 prompt : str
795 853 The prompt to show when more input is needed.
796 854
797 855 html : bool, optional (default False)
798 856 If set, the prompt will be inserted as formatted HTML. Otherwise,
799 857 the prompt will be treated as plain text, though ANSI color codes
800 858 will be handled.
801 859 """
802 860 if html:
803 861 self._continuation_prompt_html = prompt
804 862 else:
805 863 self._continuation_prompt = prompt
806 864 self._continuation_prompt_html = None
865
866 def _set_cursor(self, cursor):
867 """ Convenience method to set the current cursor.
868 """
869 self._control.setTextCursor(cursor)
807 870
808 871 def _set_position(self, position):
809 872 """ Convenience method to set the position of the cursor.
810 873 """
811 cursor = self.textCursor()
874 cursor = self._control.textCursor()
812 875 cursor.setPosition(position)
813 self.setTextCursor(cursor)
876 self._control.setTextCursor(cursor)
814 877
815 878 def _set_selection(self, start, end):
816 879 """ Convenience method to set the current selected text.
817 880 """
818 self.setTextCursor(self._get_selection_cursor(start, end))
881 self._control.setTextCursor(self._get_selection_cursor(start, end))
882
883 def _show_context_menu(self, pos):
884 """ Shows a context menu at the given QPoint (in widget coordinates).
885 """
886 menu = QtGui.QMenu()
887
888 copy_action = QtGui.QAction('Copy', menu)
889 copy_action.triggered.connect(self.copy)
890 copy_action.setEnabled(self._get_cursor().hasSelection())
891 copy_action.setShortcut(QtGui.QKeySequence.Copy)
892 menu.addAction(copy_action)
893
894 paste_action = QtGui.QAction('Paste', menu)
895 paste_action.triggered.connect(self.paste)
896 paste_action.setEnabled(self._control.canPaste())
897 paste_action.setShortcut(QtGui.QKeySequence.Paste)
898 menu.addAction(paste_action)
899 menu.addSeparator()
900
901 select_all_action = QtGui.QAction('Select All', menu)
902 select_all_action.triggered.connect(self.select_all)
903 menu.addAction(select_all_action)
904
905 menu.exec_(self._control.mapToGlobal(pos))
819 906
820 907 def _show_prompt(self, prompt=None, html=False, newline=True):
821 908 """ Writes a new prompt at the end of the buffer.
822 909
823 910 Parameters
824 911 ----------
825 912 prompt : str, optional
826 913 The prompt to show. If not specified, the previous prompt is used.
827 914
828 915 html : bool, optional (default False)
829 916 Only relevant when a prompt is specified. If set, the prompt will
830 917 be inserted as formatted HTML. Otherwise, the prompt will be treated
831 918 as plain text, though ANSI color codes will be handled.
832 919
833 920 newline : bool, optional (default True)
834 921 If set, a new line will be written before showing the prompt if
835 922 there is not already a newline at the end of the buffer.
836 923 """
837 924 # Insert a preliminary newline, if necessary.
838 925 if newline:
839 926 cursor = self._get_end_cursor()
840 927 if cursor.position() > 0:
841 928 cursor.movePosition(QtGui.QTextCursor.Left,
842 929 QtGui.QTextCursor.KeepAnchor)
843 930 if str(cursor.selection().toPlainText()) != '\n':
844 self.appendPlainText('\n')
931 self._append_plain_text('\n')
845 932
846 933 # Write the prompt.
847 934 if prompt is None:
848 935 if self._prompt_html is None:
849 self.appendPlainText(self._prompt)
936 self._append_plain_text(self._prompt)
850 937 else:
851 self.appendHtml(self._prompt_html)
938 self._append_html(self._prompt_html)
852 939 else:
853 940 if html:
854 941 self._prompt = self._append_html_fetching_plain_text(prompt)
855 942 self._prompt_html = prompt
856 943 else:
857 self.appendPlainText(prompt)
944 self._append_plain_text(prompt)
858 945 self._prompt = prompt
859 946 self._prompt_html = None
860 947
861 948 self._prompt_pos = self._get_end_cursor().position()
862 949 self._prompt_started()
863 950
864 951 def _show_continuation_prompt(self):
865 952 """ Writes a new continuation prompt at the end of the buffer.
866 953 """
867 954 if self._continuation_prompt_html is None:
868 self.appendPlainText(self._continuation_prompt)
955 self._append_plain_text(self._continuation_prompt)
869 956 else:
870 957 self._continuation_prompt = self._append_html_fetching_plain_text(
871 958 self._continuation_prompt_html)
872 959
873 960 self._prompt_started()
874 961
875 def _in_buffer(self, position):
876 """ Returns whether the given position is inside the editing region.
877 """
878 return position >= self._prompt_pos
879
880 def _keep_cursor_in_buffer(self):
881 """ Ensures that the cursor is inside the editing region. Returns
882 whether the cursor was moved.
883 """
884 cursor = self.textCursor()
885 if cursor.position() < self._prompt_pos:
886 cursor.movePosition(QtGui.QTextCursor.End)
887 self.setTextCursor(cursor)
888 return True
889 else:
890 return False
891
892 962
893 963 class HistoryConsoleWidget(ConsoleWidget):
894 964 """ A ConsoleWidget that keeps a history of the commands that have been
895 965 executed.
896 966 """
897 967
898 968 #---------------------------------------------------------------------------
899 # 'QObject' interface
969 # 'object' interface
900 970 #---------------------------------------------------------------------------
901 971
902 def __init__(self, parent=None):
903 super(HistoryConsoleWidget, self).__init__(parent)
904
972 def __init__(self, *args, **kw):
973 super(HistoryConsoleWidget, self).__init__(*args, **kw)
905 974 self._history = []
906 975 self._history_index = 0
907 976
908 977 #---------------------------------------------------------------------------
909 978 # 'ConsoleWidget' public interface
910 979 #---------------------------------------------------------------------------
911 980
912 981 def execute(self, source=None, hidden=False, interactive=False):
913 982 """ Reimplemented to the store history.
914 983 """
915 984 if not hidden:
916 985 history = self.input_buffer if source is None else source
917 986
918 987 executed = super(HistoryConsoleWidget, self).execute(
919 988 source, hidden, interactive)
920 989
921 990 if executed and not hidden:
922 991 self._history.append(history.rstrip())
923 992 self._history_index = len(self._history)
924 993
925 994 return executed
926 995
927 996 #---------------------------------------------------------------------------
928 997 # 'ConsoleWidget' abstract interface
929 998 #---------------------------------------------------------------------------
930 999
931 1000 def _up_pressed(self):
932 1001 """ Called when the up key is pressed. Returns whether to continue
933 1002 processing the event.
934 1003 """
935 1004 prompt_cursor = self._get_prompt_cursor()
936 if self.textCursor().blockNumber() == prompt_cursor.blockNumber():
1005 if self._get_cursor().blockNumber() == prompt_cursor.blockNumber():
937 1006 self.history_previous()
938 1007
939 1008 # Go to the first line of prompt for seemless history scrolling.
940 1009 cursor = self._get_prompt_cursor()
941 1010 cursor.movePosition(QtGui.QTextCursor.EndOfLine)
942 self.setTextCursor(cursor)
1011 self._set_cursor(cursor)
943 1012
944 1013 return False
945 1014 return True
946 1015
947 1016 def _down_pressed(self):
948 1017 """ Called when the down key is pressed. Returns whether to continue
949 1018 processing the event.
950 1019 """
951 1020 end_cursor = self._get_end_cursor()
952 if self.textCursor().blockNumber() == end_cursor.blockNumber():
1021 if self._get_cursor().blockNumber() == end_cursor.blockNumber():
953 1022 self.history_next()
954 1023 return False
955 1024 return True
956 1025
957 1026 #---------------------------------------------------------------------------
958 1027 # 'HistoryConsoleWidget' interface
959 1028 #---------------------------------------------------------------------------
960 1029
961 1030 def history_previous(self):
962 1031 """ If possible, set the input buffer to the previous item in the
963 1032 history.
964 1033 """
965 1034 if self._history_index > 0:
966 1035 self._history_index -= 1
967 1036 self.input_buffer = self._history[self._history_index]
968 1037
969 1038 def history_next(self):
970 1039 """ Set the input buffer to the next item in the history, or a blank
971 1040 line if there is no subsequent item.
972 1041 """
973 1042 if self._history_index < len(self._history):
974 1043 self._history_index += 1
975 1044 if self._history_index < len(self._history):
976 1045 self.input_buffer = self._history[self._history_index]
977 1046 else:
978 1047 self.input_buffer = ''
@@ -1,382 +1,384 b''
1 1 # Standard library imports
2 2 import signal
3 3 import sys
4 4
5 5 # System library imports
6 6 from pygments.lexers import PythonLexer
7 7 from PyQt4 import QtCore, QtGui
8 8 import zmq
9 9
10 10 # Local imports
11 11 from IPython.core.inputsplitter import InputSplitter
12 12 from call_tip_widget import CallTipWidget
13 13 from completion_lexer import CompletionLexer
14 14 from console_widget import HistoryConsoleWidget
15 15 from pygments_highlighter import PygmentsHighlighter
16 16
17 17
18 18 class FrontendHighlighter(PygmentsHighlighter):
19 19 """ A PygmentsHighlighter that can be turned on and off and that ignores
20 20 prompts.
21 21 """
22 22
23 23 def __init__(self, frontend):
24 super(FrontendHighlighter, self).__init__(frontend.document())
24 super(FrontendHighlighter, self).__init__(frontend._control.document())
25 25 self._current_offset = 0
26 26 self._frontend = frontend
27 27 self.highlighting_on = False
28 28
29 29 def highlightBlock(self, qstring):
30 30 """ Highlight a block of text. Reimplemented to highlight selectively.
31 31 """
32 32 if not self.highlighting_on:
33 33 return
34 34
35 35 # The input to this function is unicode string that may contain
36 36 # paragraph break characters, non-breaking spaces, etc. Here we acquire
37 37 # the string as plain text so we can compare it.
38 38 current_block = self.currentBlock()
39 39 string = self._frontend._get_block_plain_text(current_block)
40 40
41 41 # Decide whether to check for the regular or continuation prompt.
42 42 if current_block.contains(self._frontend._prompt_pos):
43 43 prompt = self._frontend._prompt
44 44 else:
45 45 prompt = self._frontend._continuation_prompt
46 46
47 47 # Don't highlight the part of the string that contains the prompt.
48 48 if string.startswith(prompt):
49 49 self._current_offset = len(prompt)
50 50 qstring.remove(0, len(prompt))
51 51 else:
52 52 self._current_offset = 0
53 53
54 54 PygmentsHighlighter.highlightBlock(self, qstring)
55 55
56 56 def setFormat(self, start, count, format):
57 57 """ Reimplemented to highlight selectively.
58 58 """
59 59 start += self._current_offset
60 60 PygmentsHighlighter.setFormat(self, start, count, format)
61 61
62 62
63 63 class FrontendWidget(HistoryConsoleWidget):
64 64 """ A Qt frontend for a generic Python kernel.
65 65 """
66 66
67 67 # Emitted when an 'execute_reply' is received from the kernel.
68 68 executed = QtCore.pyqtSignal(object)
69 69
70 70 #---------------------------------------------------------------------------
71 # 'QObject' interface
71 # 'object' interface
72 72 #---------------------------------------------------------------------------
73 73
74 def __init__(self, parent=None):
75 super(FrontendWidget, self).__init__(parent)
74 def __init__(self, *args, **kw):
75 super(FrontendWidget, self).__init__(*args, **kw)
76 76
77 77 # FrontendWidget protected variables.
78 self._call_tip_widget = CallTipWidget(self)
78 self._call_tip_widget = CallTipWidget(self._control)
79 79 self._completion_lexer = CompletionLexer(PythonLexer())
80 80 self._hidden = True
81 81 self._highlighter = FrontendHighlighter(self)
82 82 self._input_splitter = InputSplitter(input_mode='replace')
83 83 self._kernel_manager = None
84 84
85 85 # Configure the ConsoleWidget.
86 86 self.tab_width = 4
87 87 self._set_continuation_prompt('... ')
88 88
89 self.document().contentsChange.connect(self._document_contents_change)
89 # Connect signal handlers.
90 document = self._control.document()
91 document.contentsChange.connect(self._document_contents_change)
90 92
91 93 #---------------------------------------------------------------------------
92 94 # 'QWidget' interface
93 95 #---------------------------------------------------------------------------
94 96
95 97 def focusOutEvent(self, event):
96 98 """ Reimplemented to hide calltips.
97 99 """
98 100 self._call_tip_widget.hide()
99 101 super(FrontendWidget, self).focusOutEvent(event)
100 102
101 103 def keyPressEvent(self, event):
102 104 """ Reimplemented to allow calltips to process events and to send
103 105 signals to the kernel.
104 106 """
105 107 if self._executing and event.key() == QtCore.Qt.Key_C and \
106 108 self._control_down(event.modifiers()):
107 109 self._interrupt_kernel()
108 110 else:
109 111 if self._call_tip_widget.isVisible():
110 112 self._call_tip_widget.keyPressEvent(event)
111 113 super(FrontendWidget, self).keyPressEvent(event)
112 114
113 115 #---------------------------------------------------------------------------
114 116 # 'ConsoleWidget' abstract interface
115 117 #---------------------------------------------------------------------------
116 118
117 119 def _is_complete(self, source, interactive):
118 120 """ Returns whether 'source' can be completely processed and a new
119 121 prompt created. When triggered by an Enter/Return key press,
120 122 'interactive' is True; otherwise, it is False.
121 123 """
122 124 complete = self._input_splitter.push(source.expandtabs(4))
123 125 if interactive:
124 126 complete = not self._input_splitter.push_accepts_more()
125 127 return complete
126 128
127 129 def _execute(self, source, hidden):
128 130 """ Execute 'source'. If 'hidden', do not show any output.
129 131 """
130 132 self.kernel_manager.xreq_channel.execute(source)
131 133 self._hidden = hidden
132 134
133 135 def _prompt_started_hook(self):
134 136 """ Called immediately after a new prompt is displayed.
135 137 """
136 138 if not self._reading:
137 139 self._highlighter.highlighting_on = True
138 140
139 141 # Auto-indent if this is a continuation prompt.
140 142 if self._get_prompt_cursor().blockNumber() != \
141 143 self._get_end_cursor().blockNumber():
142 144 spaces = self._input_splitter.indent_spaces
143 self.appendPlainText('\t' * (spaces / self.tab_width))
144 self.appendPlainText(' ' * (spaces % self.tab_width))
145 self._append_plain_text('\t' * (spaces / self.tab_width))
146 self._append_plain_text(' ' * (spaces % self.tab_width))
145 147
146 148 def _prompt_finished_hook(self):
147 149 """ Called immediately after a prompt is finished, i.e. when some input
148 150 will be processed and a new prompt displayed.
149 151 """
150 152 if not self._reading:
151 153 self._highlighter.highlighting_on = False
152 154
153 155 def _tab_pressed(self):
154 156 """ Called when the tab key is pressed. Returns whether to continue
155 157 processing the event.
156 158 """
157 159 self._keep_cursor_in_buffer()
158 cursor = self.textCursor()
160 cursor = self._get_cursor()
159 161 return not self._complete()
160 162
161 163 #---------------------------------------------------------------------------
162 164 # 'FrontendWidget' interface
163 165 #---------------------------------------------------------------------------
164 166
165 167 def execute_file(self, path, hidden=False):
166 168 """ Attempts to execute file with 'path'. If 'hidden', no output is
167 169 shown.
168 170 """
169 171 self.execute('execfile("%s")' % path, hidden=hidden)
170 172
171 173 def _get_kernel_manager(self):
172 174 """ Returns the current kernel manager.
173 175 """
174 176 return self._kernel_manager
175 177
176 178 def _set_kernel_manager(self, kernel_manager):
177 179 """ Disconnect from the current kernel manager (if any) and set a new
178 180 kernel manager.
179 181 """
180 182 # Disconnect the old kernel manager, if necessary.
181 183 if self._kernel_manager is not None:
182 184 self._kernel_manager.started_channels.disconnect(
183 185 self._started_channels)
184 186 self._kernel_manager.stopped_channels.disconnect(
185 187 self._stopped_channels)
186 188
187 189 # Disconnect the old kernel manager's channels.
188 190 sub = self._kernel_manager.sub_channel
189 191 xreq = self._kernel_manager.xreq_channel
190 192 rep = self._kernel_manager.rep_channel
191 193 sub.message_received.disconnect(self._handle_sub)
192 194 xreq.execute_reply.disconnect(self._handle_execute_reply)
193 195 xreq.complete_reply.disconnect(self._handle_complete_reply)
194 196 xreq.object_info_reply.disconnect(self._handle_object_info_reply)
195 197 rep.input_requested.disconnect(self._handle_req)
196 198
197 199 # Handle the case where the old kernel manager is still listening.
198 200 if self._kernel_manager.channels_running:
199 201 self._stopped_channels()
200 202
201 203 # Set the new kernel manager.
202 204 self._kernel_manager = kernel_manager
203 205 if kernel_manager is None:
204 206 return
205 207
206 208 # Connect the new kernel manager.
207 209 kernel_manager.started_channels.connect(self._started_channels)
208 210 kernel_manager.stopped_channels.connect(self._stopped_channels)
209 211
210 212 # Connect the new kernel manager's channels.
211 213 sub = kernel_manager.sub_channel
212 214 xreq = kernel_manager.xreq_channel
213 215 rep = kernel_manager.rep_channel
214 216 sub.message_received.connect(self._handle_sub)
215 217 xreq.execute_reply.connect(self._handle_execute_reply)
216 218 xreq.complete_reply.connect(self._handle_complete_reply)
217 219 xreq.object_info_reply.connect(self._handle_object_info_reply)
218 220 rep.input_requested.connect(self._handle_req)
219 221
220 222 # Handle the case where the kernel manager started channels before
221 223 # we connected.
222 224 if kernel_manager.channels_running:
223 225 self._started_channels()
224 226
225 227 kernel_manager = property(_get_kernel_manager, _set_kernel_manager)
226 228
227 229 #---------------------------------------------------------------------------
228 230 # 'FrontendWidget' protected interface
229 231 #---------------------------------------------------------------------------
230 232
231 233 def _call_tip(self):
232 234 """ Shows a call tip, if appropriate, at the current cursor location.
233 235 """
234 236 # Decide if it makes sense to show a call tip
235 cursor = self.textCursor()
237 cursor = self._get_cursor()
236 238 cursor.movePosition(QtGui.QTextCursor.Left)
237 document = self.document()
239 document = self._control.document()
238 240 if document.characterAt(cursor.position()).toAscii() != '(':
239 241 return False
240 242 context = self._get_context(cursor)
241 243 if not context:
242 244 return False
243 245
244 246 # Send the metadata request to the kernel
245 247 name = '.'.join(context)
246 248 self._calltip_id = self.kernel_manager.xreq_channel.object_info(name)
247 self._calltip_pos = self.textCursor().position()
249 self._calltip_pos = self._get_cursor().position()
248 250 return True
249 251
250 252 def _complete(self):
251 253 """ Performs completion at the current cursor location.
252 254 """
253 255 # Decide if it makes sense to do completion
254 256 context = self._get_context()
255 257 if not context:
256 258 return False
257 259
258 260 # Send the completion request to the kernel
259 261 text = '.'.join(context)
260 262 self._complete_id = self.kernel_manager.xreq_channel.complete(
261 263 text, self.input_buffer_cursor_line, self.input_buffer)
262 self._complete_pos = self.textCursor().position()
264 self._complete_pos = self._get_cursor().position()
263 265 return True
264 266
265 267 def _get_banner(self):
266 268 """ Gets a banner to display at the beginning of a session.
267 269 """
268 270 banner = 'Python %s on %s\nType "help", "copyright", "credits" or ' \
269 271 '"license" for more information.'
270 272 return banner % (sys.version, sys.platform)
271 273
272 274 def _get_context(self, cursor=None):
273 275 """ Gets the context at the current cursor location.
274 276 """
275 277 if cursor is None:
276 cursor = self.textCursor()
278 cursor = self._get_cursor()
277 279 cursor.movePosition(QtGui.QTextCursor.StartOfLine,
278 280 QtGui.QTextCursor.KeepAnchor)
279 281 text = str(cursor.selection().toPlainText())
280 282 return self._completion_lexer.get_context(text)
281 283
282 284 def _interrupt_kernel(self):
283 285 """ Attempts to the interrupt the kernel.
284 286 """
285 287 if self.kernel_manager.has_kernel:
286 288 self.kernel_manager.signal_kernel(signal.SIGINT)
287 289 else:
288 self.appendPlainText('Kernel process is either remote or '
289 'unspecified. Cannot interrupt.\n')
290 self._append_plain_text('Kernel process is either remote or '
291 'unspecified. Cannot interrupt.\n')
290 292
291 293 def _show_interpreter_prompt(self):
292 294 """ Shows a prompt for the interpreter.
293 295 """
294 296 self._show_prompt('>>> ')
295 297
296 298 #------ Signal handlers ----------------------------------------------------
297 299
298 300 def _started_channels(self):
299 301 """ Called when the kernel manager has started listening.
300 302 """
301 303 self._reset()
302 self.appendPlainText(self._get_banner())
304 self._append_plain_text(self._get_banner())
303 305 self._show_interpreter_prompt()
304 306
305 307 def _stopped_channels(self):
306 308 """ Called when the kernel manager has stopped listening.
307 309 """
308 310 # FIXME: Print a message here?
309 311 pass
310 312
311 313 def _document_contents_change(self, position, removed, added):
312 314 """ Called whenever the document's content changes. Display a calltip
313 315 if appropriate.
314 316 """
315 317 # Calculate where the cursor should be *after* the change:
316 318 position += added
317 319
318 document = self.document()
319 if position == self.textCursor().position():
320 document = self._control.document()
321 if position == self._get_cursor().position():
320 322 self._call_tip()
321 323
322 324 def _handle_req(self, req):
323 325 # Make sure that all output from the SUB channel has been processed
324 326 # before entering readline mode.
325 327 self.kernel_manager.sub_channel.flush()
326 328
327 329 def callback(line):
328 330 self.kernel_manager.rep_channel.input(line)
329 331 self._readline(req['content']['prompt'], callback=callback)
330 332
331 333 def _handle_sub(self, omsg):
332 334 if self._hidden:
333 335 return
334 336 handler = getattr(self, '_handle_%s' % omsg['msg_type'], None)
335 337 if handler is not None:
336 338 handler(omsg)
337 339
338 340 def _handle_pyout(self, omsg):
339 self.appendPlainText(omsg['content']['data'] + '\n')
341 self._append_plain_text(omsg['content']['data'] + '\n')
340 342
341 343 def _handle_stream(self, omsg):
342 self.appendPlainText(omsg['content']['data'])
343 self.moveCursor(QtGui.QTextCursor.End)
344 self._append_plain_text(omsg['content']['data'])
345 self._control.moveCursor(QtGui.QTextCursor.End)
344 346
345 347 def _handle_execute_reply(self, reply):
346 348 if self._hidden:
347 349 return
348 350
349 351 # Make sure that all output from the SUB channel has been processed
350 352 # before writing a new prompt.
351 353 self.kernel_manager.sub_channel.flush()
352 354
353 355 status = reply['content']['status']
354 356 if status == 'error':
355 357 self._handle_execute_error(reply)
356 358 elif status == 'aborted':
357 359 text = "ERROR: ABORTED\n"
358 self.appendPlainText(text)
360 self._append_plain_text(text)
359 361 self._hidden = True
360 362 self._show_interpreter_prompt()
361 363 self.executed.emit(reply)
362 364
363 365 def _handle_execute_error(self, reply):
364 366 content = reply['content']
365 367 traceback = ''.join(content['traceback'])
366 self.appendPlainText(traceback)
368 self._append_plain_text(traceback)
367 369
368 370 def _handle_complete_reply(self, rep):
369 cursor = self.textCursor()
371 cursor = self._get_cursor()
370 372 if rep['parent_header']['msg_id'] == self._complete_id and \
371 373 cursor.position() == self._complete_pos:
372 374 text = '.'.join(self._get_context())
373 375 cursor.movePosition(QtGui.QTextCursor.Left, n=len(text))
374 376 self._complete_with_items(cursor, rep['content']['matches'])
375 377
376 378 def _handle_object_info_reply(self, rep):
377 cursor = self.textCursor()
379 cursor = self._get_cursor()
378 380 if rep['parent_header']['msg_id'] == self._calltip_id and \
379 381 cursor.position() == self._calltip_pos:
380 382 doc = rep['content']['docstring']
381 383 if doc:
382 384 self._call_tip_widget.show_docstring(doc)
@@ -1,206 +1,206 b''
1 1 # System library imports
2 2 from PyQt4 import QtCore, QtGui
3 3
4 4 # Local imports
5 5 from IPython.core.usage import default_banner
6 6 from frontend_widget import FrontendWidget
7 7
8 8
9 9 class IPythonWidget(FrontendWidget):
10 10 """ A FrontendWidget for an IPython kernel.
11 11 """
12 12
13 13 # The default stylesheet: black text on a white background.
14 14 default_stylesheet = """
15 15 .error { color: red; }
16 16 .in-prompt { color: navy; }
17 17 .in-prompt-number { font-weight: bold; }
18 18 .out-prompt { color: darkred; }
19 19 .out-prompt-number { font-weight: bold; }
20 20 """
21 21
22 22 # A dark stylesheet: white text on a black background.
23 23 dark_stylesheet = """
24 24 QPlainTextEdit { background-color: black; color: white }
25 25 QFrame { border: 1px solid grey; }
26 26 .error { color: red; }
27 27 .in-prompt { color: lime; }
28 28 .in-prompt-number { color: lime; font-weight: bold; }
29 29 .out-prompt { color: red; }
30 30 .out-prompt-number { color: red; font-weight: bold; }
31 31 """
32 32
33 33 # Default prompts.
34 34 in_prompt = '<br/>In [<span class="in-prompt-number">%i</span>]: '
35 35 out_prompt = 'Out[<span class="out-prompt-number">%i</span>]: '
36 36
37 37 #---------------------------------------------------------------------------
38 # 'QObject' interface
38 # 'object' interface
39 39 #---------------------------------------------------------------------------
40 40
41 def __init__(self, parent=None):
42 super(IPythonWidget, self).__init__(parent)
41 def __init__(self, *args, **kw):
42 super(IPythonWidget, self).__init__(*args, **kw)
43 43
44 44 # Initialize protected variables.
45 45 self._previous_prompt_blocks = []
46 46 self._prompt_count = 0
47 47
48 48 # Set a default stylesheet.
49 49 self.reset_styling()
50 50
51 51 #---------------------------------------------------------------------------
52 52 # 'FrontendWidget' interface
53 53 #---------------------------------------------------------------------------
54 54
55 55 def execute_file(self, path, hidden=False):
56 56 """ Reimplemented to use the 'run' magic.
57 57 """
58 58 self.execute('run %s' % path, hidden=hidden)
59 59
60 60 #---------------------------------------------------------------------------
61 61 # 'FrontendWidget' protected interface
62 62 #---------------------------------------------------------------------------
63 63
64 64 def _get_banner(self):
65 65 """ Reimplemented to return IPython's default banner.
66 66 """
67 67 return default_banner
68 68
69 69 def _show_interpreter_prompt(self):
70 70 """ Reimplemented for IPython-style prompts.
71 71 """
72 72 # Update old prompt numbers if necessary.
73 73 previous_prompt_number = self._prompt_count
74 74 if previous_prompt_number != self._prompt_count:
75 75 for i, (block, length) in enumerate(self._previous_prompt_blocks):
76 76 if block.isValid():
77 77 cursor = QtGui.QTextCursor(block)
78 78 cursor.movePosition(QtGui.QTextCursor.Right,
79 79 QtGui.QTextCursor.KeepAnchor, length-1)
80 80 if i == 0:
81 81 prompt = self._make_in_prompt(previous_prompt_number)
82 82 else:
83 83 prompt = self._make_out_prompt(previous_prompt_number)
84 84 self._insert_html(cursor, prompt)
85 85 self._previous_prompt_blocks = []
86 86
87 87 # Show a new prompt.
88 88 self._prompt_count += 1
89 89 self._show_prompt(self._make_in_prompt(self._prompt_count), html=True)
90 90 self._save_prompt_block()
91 91
92 92 # Update continuation prompt to reflect (possibly) new prompt length.
93 93 self._set_continuation_prompt(
94 94 self._make_continuation_prompt(self._prompt), html=True)
95 95
96 96 #------ Signal handlers ----------------------------------------------------
97 97
98 98 def _handle_execute_error(self, reply):
99 99 """ Reimplemented for IPython-style traceback formatting.
100 100 """
101 101 content = reply['content']
102 102 traceback_lines = content['traceback'][:]
103 103 traceback = ''.join(traceback_lines)
104 104 traceback = traceback.replace(' ', '&nbsp;')
105 105 traceback = traceback.replace('\n', '<br/>')
106 106
107 107 ename = content['ename']
108 108 ename_styled = '<span class="error">%s</span>' % ename
109 109 traceback = traceback.replace(ename, ename_styled)
110 110
111 self.appendHtml(traceback)
111 self._append_html(traceback)
112 112
113 113 def _handle_pyout(self, omsg):
114 114 """ Reimplemented for IPython-style "display hook".
115 115 """
116 self.appendHtml(self._make_out_prompt(self._prompt_count))
116 self._append_html(self._make_out_prompt(self._prompt_count))
117 117 self._save_prompt_block()
118 118
119 self.appendPlainText(omsg['content']['data'] + '\n')
119 self._append_plain_text(omsg['content']['data'] + '\n')
120 120
121 121 #---------------------------------------------------------------------------
122 122 # 'IPythonWidget' interface
123 123 #---------------------------------------------------------------------------
124 124
125 125 def reset_styling(self):
126 126 """ Restores the default IPythonWidget styling.
127 127 """
128 128 self.set_styling(self.default_stylesheet, syntax_style='default')
129 129 #self.set_styling(self.dark_stylesheet, syntax_style='monokai')
130 130
131 131 def set_styling(self, stylesheet, syntax_style=None):
132 132 """ Sets the IPythonWidget styling.
133 133
134 134 Parameters:
135 135 -----------
136 136 stylesheet : str
137 137 A CSS stylesheet. The stylesheet can contain classes for:
138 138 1. Qt: QPlainTextEdit, QFrame, QWidget, etc
139 139 2. Pygments: .c, .k, .o, etc (see PygmentsHighlighter)
140 140 3. IPython: .error, .in-prompt, .out-prompt, etc.
141 141
142 142 syntax_style : str or None [default None]
143 143 If specified, use the Pygments style with given name. Otherwise,
144 144 the stylesheet is queried for Pygments style information.
145 145 """
146 146 self.setStyleSheet(stylesheet)
147 self.document().setDefaultStyleSheet(stylesheet)
147 self._control.document().setDefaultStyleSheet(stylesheet)
148 148
149 149 if syntax_style is None:
150 150 self._highlighter.set_style_sheet(stylesheet)
151 151 else:
152 152 self._highlighter.set_style(syntax_style)
153 153
154 154 #---------------------------------------------------------------------------
155 155 # 'IPythonWidget' protected interface
156 156 #---------------------------------------------------------------------------
157 157
158 158 def _make_in_prompt(self, number):
159 159 """ Given a prompt number, returns an HTML In prompt.
160 160 """
161 161 body = self.in_prompt % number
162 162 return '<span class="in-prompt">%s</span>' % body
163 163
164 164 def _make_continuation_prompt(self, prompt):
165 165 """ Given a plain text version of an In prompt, returns an HTML
166 166 continuation prompt.
167 167 """
168 168 end_chars = '...: '
169 169 space_count = len(prompt.lstrip('\n')) - len(end_chars)
170 170 body = '&nbsp;' * space_count + end_chars
171 171 return '<span class="in-prompt">%s</span>' % body
172 172
173 173 def _make_out_prompt(self, number):
174 174 """ Given a prompt number, returns an HTML Out prompt.
175 175 """
176 176 body = self.out_prompt % number
177 177 return '<span class="out-prompt">%s</span>' % body
178 178
179 179 def _save_prompt_block(self):
180 180 """ Assuming a prompt has just been written at the end of the buffer,
181 181 store the QTextBlock that contains it and its length.
182 182 """
183 block = self.document().lastBlock()
183 block = self._control.document().lastBlock()
184 184 self._previous_prompt_blocks.append((block, block.length()))
185 185
186 186
187 187 if __name__ == '__main__':
188 188 from IPython.frontend.qt.kernelmanager import QtKernelManager
189 189
190 190 # Don't let Qt or ZMQ swallow KeyboardInterupts.
191 191 import signal
192 192 signal.signal(signal.SIGINT, signal.SIG_DFL)
193 193
194 194 # Create a KernelManager.
195 195 kernel_manager = QtKernelManager()
196 196 kernel_manager.start_kernel()
197 197 kernel_manager.start_channels()
198 198
199 199 # Launch the application.
200 200 app = QtGui.QApplication([])
201 201 widget = IPythonWidget()
202 202 widget.kernel_manager = kernel_manager
203 203 widget.setWindowTitle('Python')
204 204 widget.resize(640, 480)
205 205 widget.show()
206 206 app.exec_()
General Comments 0
You need to be logged in to leave comments. Login now