1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031
|
"""
Contains the main Window definition for Mu's UI.
Copyright (c) 2015-2017 Nicholas H.Tollervey and others (see the AUTHORS file).
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program. If not, see <http://www.gnu.org/licenses/>.
"""
import sys
import logging
import serial
import os.path
from PyQt5.QtCore import QSize, Qt, pyqtSignal, QTimer, QIODevice
from PyQt5.QtWidgets import (QToolBar, QAction, QDesktopWidget, QWidget,
QVBoxLayout, QTabWidget, QFileDialog, QMessageBox,
QLabel, QMainWindow, QStatusBar, QDockWidget,
QShortcut)
from PyQt5.QtGui import QKeySequence, QStandardItemModel
from PyQt5.QtSerialPort import QSerialPort
from mu import __version__
from mu.interface.dialogs import ModeSelector, AdminDialog, FindReplaceDialog
from mu.interface.themes import (DayTheme, NightTheme, ContrastTheme,
DEFAULT_FONT_SIZE)
from mu.interface.panes import (DebugInspector, DebugInspectorItem,
PythonProcessPane, JupyterREPLPane,
MicroPythonREPLPane, FileSystemPane,
PlotterPane)
from mu.interface.editor import EditorPane
from mu.resources import load_icon, load_pixmap
logger = logging.getLogger(__name__)
class ButtonBar(QToolBar):
"""
Represents the bar of buttons across the top of the editor and defines
their behaviour.
"""
def __init__(self, parent):
super().__init__(parent)
self.setMovable(False)
self.setIconSize(QSize(64, 64))
self.setToolButtonStyle(3)
self.setContextMenuPolicy(Qt.PreventContextMenu)
self.setObjectName("StandardToolBar")
self.reset()
def reset(self):
"""
Resets the button states.
"""
self.slots = {}
self.clear()
def change_mode(self, mode):
self.reset()
self.addAction(name="modes", display_name=_("Mode"),
tool_text=_("Change Mu's mode of behaviour."))
self.addSeparator()
self.addAction(name="new", display_name=_("New"),
tool_text=_("Create a new Python script."))
self.addAction(name="load", display_name=_("Load"),
tool_text=_("Load a Python script."))
self.addAction(name="save", display_name=_("Save"),
tool_text=_("Save the current Python script."))
self.addSeparator()
for action in mode.actions():
self.addAction(name=action['name'],
display_name=action['display_name'],
tool_text=action['description'])
self.addSeparator()
self.addAction(name="zoom-in", display_name=_('Zoom-in'),
tool_text=_("Zoom in (to make the text bigger)."))
self.addAction(name="zoom-out", display_name=_('Zoom-out'),
tool_text=_("Zoom out (to make the text smaller)."))
self.addAction(name="theme", display_name=_('Theme'),
tool_text=_("Toggle theme between day, night or "
"high contrast."))
self.addSeparator()
self.addAction(name="check", display_name=_('Check'),
tool_text=_("Check your code for mistakes."))
self.addAction(name="help", display_name=_('Help'),
tool_text=_("Show help about Mu in a browser."))
self.addAction(name="quit", display_name=_('Quit'),
tool_text=_("Quit Mu."))
def set_responsive_mode(self, width, height):
"""
Compact button bar for when window is very small.
"""
font_size = DEFAULT_FONT_SIZE
if width < 940 and height > 600:
self.setIconSize(QSize(48, 48))
elif height < 600 and width < 940:
font_size = 10
self.setIconSize(QSize(32, 32))
else:
self.setIconSize(QSize(64, 64))
stylesheet = "QWidget{font-size: " + str(font_size) + "px;}"
self.setStyleSheet(stylesheet)
def addAction(self, name, display_name, tool_text):
"""
Creates an action associated with an icon and name and adds it to the
widget's slots.
"""
action = QAction(load_icon(name), display_name, self,
toolTip=tool_text)
super().addAction(action)
self.slots[name] = action
def connect(self, name, handler, shortcut=None):
"""
Connects a named slot to a handler function and optional hot-key
shortcuts.
"""
self.slots[name].pyqtConfigure(triggered=handler)
if shortcut:
self.slots[name].setShortcut(QKeySequence(shortcut))
class FileTabs(QTabWidget):
"""
Extend the base class so we can override the removeTab behaviour.
"""
def __init__(self):
super(FileTabs, self).__init__()
self.setTabsClosable(True)
self.tabCloseRequested.connect(self.removeTab)
self.currentChanged.connect(self.change_tab)
def removeTab(self, tab_id):
"""
Ask the user before closing the file.
"""
window = self.nativeParentWidget()
modified = self.widget(tab_id).isModified()
if modified:
msg = ('There is un-saved work, closing the tab will cause you '
'to lose it.')
if window.show_confirmation(msg) == QMessageBox.Cancel:
return
super(FileTabs, self).removeTab(tab_id)
def change_tab(self, tab_id):
"""
Update the application title to reflect the name of the file in the
currently selected tab.
"""
current_tab = self.widget(tab_id)
window = self.nativeParentWidget()
if current_tab:
window.update_title(current_tab.label)
else:
window.update_title(None)
class Window(QMainWindow):
"""
Defines the look and characteristics of the application's main window.
"""
title = _("Mu {}").format(__version__)
icon = "icon"
timer = None
usb_checker = None
serial = None
repl = None
plotter = None
zooms = ('xs', 's', 'm', 'l', 'xl', 'xxl', 'xxxl') # levels of zoom.
zoom_position = 2 # current level of zoom (as position in zooms tuple).
_zoom_in = pyqtSignal(str)
_zoom_out = pyqtSignal(str)
close_serial = pyqtSignal()
write_to_serial = pyqtSignal(bytes)
data_received = pyqtSignal(bytes)
open_file = pyqtSignal(str)
load_theme = pyqtSignal(str)
previous_folder = None
def set_zoom(self):
"""
Sets the zoom to current zoom_position level.
"""
self._zoom_in.emit(self.zooms[self.zoom_position])
def zoom_in(self):
"""
Handles zooming in.
"""
self.zoom_position = min(self.zoom_position + 1, len(self.zooms) - 1)
self._zoom_in.emit(self.zooms[self.zoom_position])
def zoom_out(self):
"""
Handles zooming out.
"""
self.zoom_position = max(self.zoom_position - 1, 0)
self._zoom_out.emit(self.zooms[self.zoom_position])
def connect_zoom(self, widget):
"""
Connects a referenced widget to the zoom related signals and sets
the zoom of the widget to the current zoom level.
"""
self._zoom_in.connect(widget.set_zoom)
self._zoom_out.connect(widget.set_zoom)
widget.set_zoom(self.zooms[self.zoom_position])
@property
def current_tab(self):
"""
Returns the currently focussed tab.
"""
return self.tabs.currentWidget()
def set_read_only(self, is_readonly):
"""
Set all tabs read-only.
"""
self.read_only_tabs = is_readonly
for tab in self.widgets:
tab.setReadOnly(is_readonly)
def get_load_path(self, folder, extensions='*'):
"""
Displays a dialog for selecting a file to load. Returns the selected
path. Defaults to start in the referenced folder.
"""
path, _ = QFileDialog.getOpenFileName(
self.widget, 'Open file',
folder if self.previous_folder is None else self.previous_folder,
extensions)
self.previous_folder = os.path.dirname(path)
logger.debug('Getting load path: {}'.format(path))
return path
def get_save_path(self, folder):
"""
Displays a dialog for selecting a file to save. Returns the selected
path. Defaults to start in the referenced folder.
"""
path, _ = QFileDialog.getSaveFileName(
self.widget, 'Save file',
folder if self.previous_folder is None else self.previous_folder)
self.previous_folder = os.path.dirname(path)
logger.debug('Getting save path: {}'.format(path))
return path
def get_microbit_path(self, folder):
"""
Displays a dialog for locating the location of the BBC micro:bit in the
host computer's filesystem. Returns the selected path. Defaults to
start in the referenced folder.
"""
path = QFileDialog.getExistingDirectory(
self.widget, 'Locate BBC micro:bit',
folder if self.previous_folder is None else self.previous_folder,
QFileDialog.ShowDirsOnly)
self.previous_folder = os.path.dirname(path)
logger.debug('Getting micro:bit path: {}'.format(path))
return path
def add_tab(self, path, text, api, newline):
"""
Adds a tab with the referenced path and text to the editor.
"""
new_tab = EditorPane(path, text, newline)
new_tab.connect_margin(self.breakpoint_toggle)
new_tab_index = self.tabs.addTab(new_tab, new_tab.label)
new_tab.set_api(api)
@new_tab.modificationChanged.connect
def on_modified():
modified_tab_index = self.tabs.currentIndex()
self.tabs.setTabText(modified_tab_index, new_tab.label)
self.update_title(new_tab.label)
@new_tab.open_file.connect
def on_open_file(file):
# Bubble the signal up
self.open_file.emit(file)
self.tabs.setCurrentIndex(new_tab_index)
self.connect_zoom(new_tab)
self.set_theme(self.theme)
new_tab.setFocus()
if self.read_only_tabs:
new_tab.setReadOnly(self.read_only_tabs)
return new_tab
def focus_tab(self, tab):
index = self.tabs.indexOf(tab)
self.tabs.setCurrentIndex(index)
tab.setFocus()
@property
def tab_count(self):
"""
Returns the number of active tabs.
"""
return self.tabs.count()
@property
def widgets(self):
"""
Returns a list of references to the widgets representing tabs in the
editor.
"""
return [self.tabs.widget(i) for i in range(self.tab_count)]
@property
def modified(self):
"""
Returns a boolean indication if there are any modified tabs in the
editor.
"""
for widget in self.widgets:
if widget.isModified():
return True
return False
def on_serial_read(self):
"""
Called when the connected device is ready to send data via the serial
connection. It reads all the available data, emits the data_received
signal with the received bytes and, if appropriate, emits the
tuple_received signal with the tuple created from the bytes received.
"""
data = bytes(self.serial.readAll()) # get all the available bytes.
self.data_received.emit(data)
def on_stdout_write(self, data):
"""
Called when either a running script or the REPL write to STDOUT.
"""
self.data_received.emit(data)
def open_serial_link(self, port):
"""
Creates a new serial link instance.
"""
self.input_buffer = []
self.serial = QSerialPort()
self.serial.setPortName(port)
if self.serial.open(QIODevice.ReadWrite):
self.serial.setDataTerminalReady(True)
if not self.serial.isDataTerminalReady():
# Using pyserial as a 'hack' to open the port and set DTR
# as QtSerial does not seem to work on some Windows :(
# See issues #281 and #302 for details.
self.serial.close()
pyser = serial.Serial(port) # open serial port w/pyserial
pyser.dtr = True
pyser.close()
self.serial.open(QIODevice.ReadWrite)
self.serial.setBaudRate(115200)
self.serial.readyRead.connect(self.on_serial_read)
else:
msg = _("Cannot connect to device on port {}").format(port)
raise IOError(msg)
def close_serial_link(self):
"""
Close and clean up the currently open serial link.
"""
if self.serial:
self.serial.close()
self.serial = None
def add_filesystem(self, home, file_manager):
"""
Adds the file system pane to the application.
"""
self.fs_pane = FileSystemPane(home)
@self.fs_pane.open_file.connect
def on_open_file(file):
# Bubble the signal up
self.open_file.emit(file)
self.fs = QDockWidget(_('Filesystem on micro:bit'))
self.fs.setWidget(self.fs_pane)
self.fs.setFeatures(QDockWidget.DockWidgetMovable)
self.fs.setAllowedAreas(Qt.BottomDockWidgetArea)
self.addDockWidget(Qt.BottomDockWidgetArea, self.fs)
self.fs_pane.setFocus()
file_manager.on_list_files.connect(self.fs_pane.on_ls)
self.fs_pane.list_files.connect(file_manager.ls)
self.fs_pane.microbit_fs.put.connect(file_manager.put)
self.fs_pane.microbit_fs.delete.connect(file_manager.delete)
self.fs_pane.microbit_fs.list_files.connect(file_manager.ls)
self.fs_pane.local_fs.get.connect(file_manager.get)
self.fs_pane.local_fs.list_files.connect(file_manager.ls)
file_manager.on_put_file.connect(self.fs_pane.microbit_fs.on_put)
file_manager.on_delete_file.connect(self.fs_pane.microbit_fs.on_delete)
file_manager.on_get_file.connect(self.fs_pane.local_fs.on_get)
file_manager.on_list_fail.connect(self.fs_pane.on_ls_fail)
file_manager.on_put_fail.connect(self.fs_pane.on_put_fail)
file_manager.on_delete_fail.connect(self.fs_pane.on_delete_fail)
file_manager.on_get_fail.connect(self.fs_pane.on_get_fail)
self.connect_zoom(self.fs_pane)
return self.fs_pane
def add_micropython_repl(self, port, name, force_interrupt=True):
"""
Adds a MicroPython based REPL pane to the application.
"""
if not self.serial:
self.open_serial_link(port)
if force_interrupt:
# Send a Control-B / exit raw mode.
self.serial.write(b'\x02')
# Send a Control-C / keyboard interrupt.
self.serial.write(b'\x03')
repl_pane = MicroPythonREPLPane(serial=self.serial)
self.data_received.connect(repl_pane.process_bytes)
self.add_repl(repl_pane, name)
def add_micropython_plotter(self, port, name, mode):
"""
Adds a plotter that reads data from a serial connection.
"""
if not self.serial:
self.open_serial_link(port)
plotter_pane = PlotterPane()
self.data_received.connect(plotter_pane.process_bytes)
plotter_pane.data_flood.connect(mode.on_data_flood)
self.add_plotter(plotter_pane, name)
def add_python3_plotter(self, mode):
"""
Add a plotter that reads from either the REPL or a running script.
Since this function will only be called when either the REPL or a
running script are running (but not at the same time), it'll just grab
data emitted by the REPL or script via data_received.
"""
plotter_pane = PlotterPane()
self.data_received.connect(plotter_pane.process_bytes)
plotter_pane.data_flood.connect(mode.on_data_flood)
self.add_plotter(plotter_pane, _('Python3 data tuple'))
def add_jupyter_repl(self, kernel_manager, kernel_client):
"""
Adds a Jupyter based REPL pane to the application.
"""
kernel_client.start_channels()
ipython_widget = JupyterREPLPane()
ipython_widget.kernel_manager = kernel_manager
ipython_widget.kernel_client = kernel_client
ipython_widget.on_append_text.connect(self.on_stdout_write)
self.add_repl(ipython_widget, _('Python3 (Jupyter)'))
def add_repl(self, repl_pane, name):
"""
Adds the referenced REPL pane to the application.
"""
self.repl_pane = repl_pane
self.repl = QDockWidget(_('{} REPL').format(name))
self.repl.setWidget(repl_pane)
self.repl.setFeatures(QDockWidget.DockWidgetMovable)
self.repl.setAllowedAreas(Qt.BottomDockWidgetArea |
Qt.LeftDockWidgetArea |
Qt.RightDockWidgetArea)
self.addDockWidget(Qt.BottomDockWidgetArea, self.repl)
self.connect_zoom(self.repl_pane)
self.repl_pane.set_theme(self.theme)
self.repl_pane.setFocus()
def add_plotter(self, plotter_pane, name):
"""
Adds the referenced plotter pane to the application.
"""
self.plotter_pane = plotter_pane
self.plotter = QDockWidget(_('{} Plotter').format(name))
self.plotter.setWidget(plotter_pane)
self.plotter.setFeatures(QDockWidget.DockWidgetMovable)
self.plotter.setAllowedAreas(Qt.BottomDockWidgetArea |
Qt.LeftDockWidgetArea |
Qt.RightDockWidgetArea)
self.addDockWidget(Qt.BottomDockWidgetArea, self.plotter)
self.plotter_pane.set_theme(self.theme)
self.plotter_pane.setFocus()
def add_python3_runner(self, script_name, working_directory,
interactive=False, debugger=False,
command_args=None, runner=None, envars=None,
python_args=None):
"""
Display console output for the referenced Python script.
The script will be run within the workspace_path directory.
If interactive is True (default is False) the Python process will
run in interactive mode (dropping the user into the REPL when the
script completes).
If debugger is True (default is False) the script will be run within
a debug runner session. The debugger overrides the interactive flag
(you cannot run the debugger in interactive mode).
If there is a list of command_args (the default is None) then these
will be passed as further arguments into the command run in the
new process.
If runner is given, this is used as the command to start the Python
process.
If envars is given, these will become part of the environment context
of the new chlid process.
If python_args is given, these will be passed as arguments to the
Python runtime used to launch the child process.
"""
self.process_runner = PythonProcessPane(self)
self.runner = QDockWidget(_("Running: {}").format(
os.path.basename(script_name)))
self.runner.setWidget(self.process_runner)
self.runner.setFeatures(QDockWidget.DockWidgetMovable)
self.runner.setAllowedAreas(Qt.BottomDockWidgetArea |
Qt.LeftDockWidgetArea |
Qt.RightDockWidgetArea)
self.addDockWidget(Qt.BottomDockWidgetArea, self.runner)
self.process_runner.start_process(script_name, working_directory,
interactive, debugger, command_args,
envars, runner, python_args)
self.process_runner.setFocus()
self.process_runner.on_append_text.connect(self.on_stdout_write)
self.connect_zoom(self.process_runner)
return self.process_runner
def add_debug_inspector(self):
"""
Display a debug inspector to view the call stack.
"""
self.debug_inspector = DebugInspector()
self.debug_model = QStandardItemModel()
self.debug_inspector.setModel(self.debug_model)
self.inspector = QDockWidget(_('Debug Inspector'))
self.inspector.setWidget(self.debug_inspector)
self.inspector.setFeatures(QDockWidget.DockWidgetMovable)
self.inspector.setAllowedAreas(Qt.BottomDockWidgetArea |
Qt.LeftDockWidgetArea |
Qt.RightDockWidgetArea)
self.addDockWidget(Qt.RightDockWidgetArea, self.inspector)
self.connect_zoom(self.debug_inspector)
def update_debug_inspector(self, locals_dict):
"""
Given the contents of a dict representation of the locals in the
current stack frame, update the debug inspector with the new values.
"""
excluded_names = ['__builtins__', '__debug_code__',
'__debug_script__', ]
names = sorted([x for x in locals_dict if x not in excluded_names])
self.debug_model.clear()
self.debug_model.setHorizontalHeaderLabels([_('Name'), _('Value'), ])
for name in names:
try:
# DANGER!
val = eval(locals_dict[name])
except Exception:
val = None
if isinstance(val, list):
# Show a list consisting of rows of position/value
list_item = DebugInspectorItem(name)
for i, i_val in enumerate(val):
list_item.appendRow([
DebugInspectorItem(str(i)),
DebugInspectorItem(repr(i_val))
])
self.debug_model.appendRow([
list_item,
DebugInspectorItem(_('(A list of {} items.)')
.format(len(val)))
])
elif isinstance(val, dict):
# Show a dict consisting of rows of key/value pairs.
dict_item = DebugInspectorItem(name)
for k, k_val in val.items():
dict_item.appendRow([
DebugInspectorItem(repr(k)),
DebugInspectorItem(repr(k_val))
])
self.debug_model.appendRow([
dict_item,
DebugInspectorItem(_('(A dict of {} items.)')
.format(len(val)))
])
else:
self.debug_model.appendRow([
DebugInspectorItem(name),
DebugInspectorItem(locals_dict[name]),
])
def remove_filesystem(self):
"""
Removes the file system pane from the application.
"""
if hasattr(self, 'fs') and self.fs:
self.fs_pane = None
self.fs.setParent(None)
self.fs.deleteLater()
self.fs = None
def remove_repl(self):
"""
Removes the REPL pane from the application.
"""
if self.repl:
self.repl_pane = None
self.repl.setParent(None)
self.repl.deleteLater()
self.repl = None
if not self.plotter:
self.close_serial_link()
def remove_plotter(self):
"""
Removes the plotter pane from the application.
"""
if self.plotter:
self.plotter_pane = None
self.plotter.setParent(None)
self.plotter.deleteLater()
self.plotter = None
if not self.repl:
self.close_serial_link()
def remove_python_runner(self):
"""
Removes the runner pane from the application.
"""
if hasattr(self, 'runner') and self.runner:
self.process_runner = None
self.runner.setParent(None)
self.runner.deleteLater()
self.runner = None
def remove_debug_inspector(self):
"""
Removes the debug inspector pane from the application.
"""
if hasattr(self, 'inspector') and self.inspector:
self.debug_inspector = None
self.debug_model = None
self.inspector.setParent(None)
self.inspector.deleteLater()
self.inspector = None
def set_theme(self, theme):
"""
Sets the theme for the REPL and editor tabs.
"""
self.theme = theme
self.load_theme.emit(theme)
if theme == 'contrast':
new_theme = ContrastTheme
new_icon = 'theme_day'
elif theme == 'night':
new_theme = NightTheme
new_icon = 'theme_contrast'
else:
new_theme = DayTheme
new_icon = 'theme'
for widget in self.widgets:
widget.set_theme(new_theme)
self.button_bar.slots['theme'].setIcon(load_icon(new_icon))
if hasattr(self, 'repl') and self.repl:
self.repl_pane.set_theme(theme)
if hasattr(self, 'plotter') and self.plotter:
self.plotter_pane.set_theme(theme)
def show_admin(self, log, settings):
"""
Display the administrative dialog with referenced content of the log
and settings. Return a dictionary of the settings that may have been
changed by the admin dialog.
"""
admin_box = AdminDialog(self)
admin_box.setup(log, settings)
admin_box.exec()
return admin_box.settings()
def show_message(self, message, information=None, icon=None):
"""
Displays a modal message to the user.
If information is passed in this will be set as the additional
informative text in the modal dialog.
Since this mechanism will be used mainly for warning users that
something is awry the default icon is set to "Warning". It's possible
to override the icon to one of the following settings: NoIcon,
Question, Information, Warning or Critical.
"""
message_box = QMessageBox(self)
message_box.setText(message)
message_box.setWindowTitle('Mu')
if information:
message_box.setInformativeText(information)
if icon and hasattr(message_box, icon):
message_box.setIcon(getattr(message_box, icon))
else:
message_box.setIcon(message_box.Warning)
logger.debug(message)
logger.debug(information)
message_box.exec()
def show_confirmation(self, message, information=None, icon=None):
"""
Displays a modal message to the user to which they need to confirm or
cancel.
If information is passed in this will be set as the additional
informative text in the modal dialog.
Since this mechanism will be used mainly for warning users that
something is awry the default icon is set to "Warning". It's possible
to override the icon to one of the following settings: NoIcon,
Question, Information, Warning or Critical.
"""
message_box = QMessageBox(self)
message_box.setText(message)
message_box.setWindowTitle(_('Mu'))
if information:
message_box.setInformativeText(information)
if icon and hasattr(message_box, icon):
message_box.setIcon(getattr(message_box, icon))
else:
message_box.setIcon(message_box.Warning)
message_box.setStandardButtons(message_box.Cancel | message_box.Ok)
message_box.setDefaultButton(message_box.Cancel)
logger.debug(message)
logger.debug(information)
return message_box.exec()
def update_title(self, filename=None):
"""
Updates the title bar of the application. If a filename (representing
the name of the file currently the focus of the editor) is supplied,
append it to the end of the title.
"""
title = self.title
if filename:
title += ' - ' + filename
self.setWindowTitle(title)
def autosize_window(self):
"""
Makes the editor 80% of the width*height of the screen and centres it.
"""
screen = QDesktopWidget().screenGeometry()
w = int(screen.width() * 0.8)
h = int(screen.height() * 0.8)
self.resize(w, h)
size = self.geometry()
self.move((screen.width() - size.width()) // 2,
(screen.height() - size.height()) // 2)
def reset_annotations(self):
"""
Resets the state of annotations on the current tab.
"""
self.current_tab.reset_annotations()
def annotate_code(self, feedback, annotation_type):
"""
Given a list of annotations about the code in the current tab, add
the annotations to the editor window so the user can make appropriate
changes.
"""
self.current_tab.annotate_code(feedback, annotation_type)
def show_annotations(self):
"""
Show the annotations added to the current tab.
"""
self.current_tab.show_annotations()
def setup(self, breakpoint_toggle, theme):
"""
Sets up the window.
Defines the various attributes of the window and defines how the user
interface is laid out.
"""
self.theme = theme
self.breakpoint_toggle = breakpoint_toggle
# Give the window a default icon, title and minimum size.
self.setWindowIcon(load_icon(self.icon))
self.update_title()
self.read_only_tabs = False
self.setMinimumSize(820, 400)
self.setTabPosition(Qt.AllDockWidgetAreas, QTabWidget.North)
self.widget = QWidget()
widget_layout = QVBoxLayout()
self.widget.setLayout(widget_layout)
self.button_bar = ButtonBar(self.widget)
self.tabs = FileTabs()
self.tabs.setMovable(True)
self.setCentralWidget(self.tabs)
self.status_bar = StatusBar(parent=self)
self.setStatusBar(self.status_bar)
self.addToolBar(self.button_bar)
self.show()
self.autosize_window()
def resizeEvent(self, resizeEvent):
"""
Respond to window getting too small for the button bar to fit well.
"""
size = resizeEvent.size()
self.button_bar.set_responsive_mode(size.width(), size.height())
def select_mode(self, modes, current_mode):
"""
Display the mode selector dialog and return the result.
"""
mode_select = ModeSelector(self)
mode_select.setup(modes, current_mode)
mode_select.exec()
try:
return mode_select.get_mode()
except Exception:
return None
def change_mode(self, mode):
"""
Given a an object representing a mode, recreates the button bar with
the expected functionality.
"""
self.button_bar.change_mode(mode)
# Update the autocomplete / tooltip APIs for each tab to the new mode.
api = mode.api()
for widget in self.widgets:
widget.set_api(api)
def set_usb_checker(self, duration, callback):
"""
Sets up a timer that polls for USB changes via the "callback" every
"duration" seconds.
"""
self.usb_checker = QTimer()
self.usb_checker.timeout.connect(callback)
self.usb_checker.start(duration * 1000)
def set_timer(self, duration, callback):
"""
Set a repeating timer to call "callback" every "duration" seconds.
"""
self.timer = QTimer()
self.timer.timeout.connect(callback)
self.timer.start(duration * 1000) # Measured in milliseconds.
def stop_timer(self):
"""
Stop the repeating timer.
"""
if self.timer:
self.timer.stop()
self.timer = None
def connect_tab_rename(self, handler, shortcut):
"""
Connect the double-click event on a tab and the keyboard shortcut to
the referenced handler (causing the Save As dialog).
"""
self.tabs.shortcut = QShortcut(QKeySequence(shortcut), self)
self.tabs.shortcut.activated.connect(handler)
self.tabs.tabBarDoubleClicked.connect(handler)
def open_directory_from_os(self, path):
"""
Given the path to a directory, open the OS's built in filesystem
explorer for that path. Works with Windows, OSX and Linux.
"""
if sys.platform == 'win32':
# Windows
os.startfile(path)
elif sys.platform == 'darwin':
# OSX
os.system('open "{}"'.format(path))
else:
# Assume freedesktop.org on unix-y.
os.system('xdg-open "{}"'.format(path))
def connect_find_replace(self, handler, shortcut):
"""
Create a keyboard shortcut and associate it with a handler for doing
a find and replace.
"""
self.find_replace_shortcut = QShortcut(QKeySequence(shortcut), self)
self.find_replace_shortcut.activated.connect(handler)
def show_find_replace(self, find, replace, global_replace):
"""
Display the find/replace dialog. If the dialog's OK button was clicked
return a tuple containing the find term, replace term and global
replace flag.
"""
finder = FindReplaceDialog(self)
finder.setup(find, replace, global_replace)
if finder.exec():
return (finder.find(), finder.replace(), finder.replace_flag())
def replace_text(self, target_text, replace, global_replace):
"""
Given target_text, replace the first instance after the cursor with
"replace". If global_replace is true, replace all instances of
"target". Returns the number of times replacement has occurred.
"""
if not self.current_tab:
return 0
if global_replace:
counter = 0
found = self.current_tab.findFirst(target_text, True, True,
False, False, line=0, index=0)
if found:
counter += 1
self.current_tab.replace(replace)
while self.current_tab.findNext():
self.current_tab.replace(replace)
counter += 1
return counter
else:
found = self.current_tab.findFirst(target_text, True, True, False,
True)
if found:
self.current_tab.replace(replace)
return 1
else:
return 0
def highlight_text(self, target_text):
"""
Highlight the first match from the current position of the cursor in
the current tab for the target_text. Returns True if there's a match.
"""
if self.current_tab:
return self.current_tab.findFirst(target_text, True, True, False,
True)
else:
return False
def connect_toggle_comments(self, handler, shortcut):
"""
Create a keyboard shortcut and associate it with a handler for toggling
comments on highlighted lines.
"""
self.toggle_comments_shortcut = QShortcut(QKeySequence(shortcut), self)
self.toggle_comments_shortcut.activated.connect(handler)
def toggle_comments(self):
"""
Toggle comments on/off for all selected line in the currently active
tab.
"""
if self.current_tab:
self.current_tab.toggle_comments()
class StatusBar(QStatusBar):
"""
Defines the look and behaviour of the status bar along the bottom of the
UI.
"""
def __init__(self, parent=None, mode='python'):
super().__init__(parent)
self.mode = mode
# Mode selector.
self.mode_label = QLabel()
self.mode_label.setToolTip(_("Mu's current mode of behaviour."))
self.addPermanentWidget(self.mode_label)
self.set_mode(mode)
# Logs viewer
self.logs_label = QLabel()
self.logs_label.setObjectName('AdministrationLabel')
self.logs_label.setPixmap(load_pixmap('logs').scaledToHeight(24))
self.logs_label.setToolTip(_('Mu Administration'))
self.addPermanentWidget(self.logs_label)
def connect_logs(self, handler, shortcut):
"""
Connect the mouse press event and keyboard shortcut for the log widget
to the referenced handler function.
"""
self.logs_label.shortcut = QShortcut(QKeySequence(shortcut),
self.parent())
self.logs_label.shortcut.activated.connect(handler)
self.logs_label.mousePressEvent = handler
def connect_mode(self, handler, shortcut):
"""
Connect the mouse press event and keyboard shortcut for the mode widget
to the referenced handler function.
"""
self.mode_label.shortcut = QShortcut(QKeySequence(shortcut),
self.parent())
self.mode_label.shortcut.activated.connect(handler)
self.mode_label.mousePressEvent = handler
def set_message(self, message, pause=5000):
"""
Displays a message in the status bar for a certain period of time.
"""
self.showMessage(message, pause)
def set_mode(self, mode):
"""
Updates the mode label to the new mode.
"""
self.mode_label.setText(mode.capitalize())
|