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
|
"""
UI related code for dialogs used by Mu.
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 logging
from PyQt5.QtCore import QSize
from PyQt5.QtWidgets import (QVBoxLayout, QListWidget, QLabel, QListWidgetItem,
QDialog, QDialogButtonBox, QPlainTextEdit,
QTabWidget, QWidget, QCheckBox, QLineEdit)
from mu.resources import load_icon
logger = logging.getLogger(__name__)
class ModeItem(QListWidgetItem):
"""
Represents an available mode listed for selection.
"""
def __init__(self, name, description, icon, parent=None):
super().__init__(parent)
self.name = name
self.description = description
self.icon = icon
text = "{}\n{}".format(name, description)
self.setText(text)
self.setIcon(load_icon(self.icon))
class ModeSelector(QDialog):
"""
Defines a UI for selecting the mode for Mu.
"""
def __init__(self, parent=None):
super().__init__(parent)
def setup(self, modes, current_mode):
self.setMinimumSize(600, 400)
self.setWindowTitle(_('Select Mode'))
widget_layout = QVBoxLayout()
label = QLabel(_('Please select the desired mode then click "OK". '
'Otherwise, click "Cancel".'))
label.setWordWrap(True)
widget_layout.addWidget(label)
self.setLayout(widget_layout)
self.mode_list = QListWidget()
self.mode_list.itemDoubleClicked.connect(self.select_and_accept)
widget_layout.addWidget(self.mode_list)
self.mode_list.setIconSize(QSize(48, 48))
for name, item in modes.items():
if not item.is_debugger:
litem = ModeItem(item.name, item.description, item.icon,
self.mode_list)
if item.icon == current_mode:
self.mode_list.setCurrentItem(litem)
self.mode_list.sortItems()
instructions = QLabel(_('Change mode at any time by clicking '
'the "Mode" button containing Mu\'s logo.'))
instructions.setWordWrap(True)
widget_layout.addWidget(instructions)
button_box = QDialogButtonBox(QDialogButtonBox.Ok |
QDialogButtonBox.Cancel)
button_box.accepted.connect(self.accept)
button_box.rejected.connect(self.reject)
widget_layout.addWidget(button_box)
def select_and_accept(self):
"""
Handler for when an item is double-clicked.
"""
self.accept()
def get_mode(self):
"""
Return details of the newly selected mode.
"""
if self.result() == QDialog.Accepted:
return self.mode_list.currentItem().icon
else:
raise RuntimeError('Mode change cancelled.')
class LogWidget(QWidget):
"""
Used to display Mu's logs.
"""
def setup(self, log):
widget_layout = QVBoxLayout()
self.setLayout(widget_layout)
label = QLabel(_('When reporting a bug, copy and paste the content of '
'the following log file.'))
label.setWordWrap(True)
widget_layout.addWidget(label)
self.log_text_area = QPlainTextEdit()
self.log_text_area.setReadOnly(True)
self.log_text_area.setLineWrapMode(QPlainTextEdit.NoWrap)
self.log_text_area.setPlainText(log)
widget_layout.addWidget(self.log_text_area)
class EnvironmentVariablesWidget(QWidget):
"""
Used for editing and displaying environment variables used with Python 3
mode.
"""
def setup(self, envars):
widget_layout = QVBoxLayout()
self.setLayout(widget_layout)
label = QLabel(_('The environment variables shown below will be '
'set each time you run a Python 3 script.\n\n'
'Each separate enviroment variable should be on a '
'new line and of the form:\nNAME=VALUE'))
label.setWordWrap(True)
widget_layout.addWidget(label)
self.text_area = QPlainTextEdit()
self.text_area.setLineWrapMode(QPlainTextEdit.NoWrap)
self.text_area.setPlainText(envars)
widget_layout.addWidget(self.text_area)
class MicrobitSettingsWidget(QWidget):
"""
Used for configuring how to interact with the micro:bit:
* Minification flag.
* Override runtime version to use.
"""
def setup(self, minify, custom_runtime_path):
widget_layout = QVBoxLayout()
self.setLayout(widget_layout)
self.minify = QCheckBox(_('Minify Python code before flashing?'))
self.minify.setChecked(minify)
widget_layout.addWidget(self.minify)
label = QLabel(_('Override the built-in MicroPython runtime with '
'the following hex file (empty means use the '
'default):'))
label.setWordWrap(True)
widget_layout.addWidget(label)
self.runtime_path = QLineEdit()
self.runtime_path.setText(custom_runtime_path)
widget_layout.addWidget(self.runtime_path)
widget_layout.addStretch()
class AdminDialog(QDialog):
"""
Displays administrative related information and settings (logs, environment
variables etc...).
"""
def __init__(self, parent=None):
super().__init__(parent)
def setup(self, log, settings):
self.setMinimumSize(600, 400)
self.setWindowTitle(_('Mu Administration'))
widget_layout = QVBoxLayout()
self.setLayout(widget_layout)
self.tabs = QTabWidget()
widget_layout.addWidget(self.tabs)
button_box = QDialogButtonBox(QDialogButtonBox.Ok)
button_box.accepted.connect(self.accept)
widget_layout.addWidget(button_box)
# Tabs
self.log_widget = LogWidget()
self.log_widget.setup(log)
self.tabs.addTab(self.log_widget, _("Current Log"))
self.envar_widget = EnvironmentVariablesWidget()
self.envar_widget.setup(settings.get('envars', ''))
self.tabs.addTab(self.envar_widget, _('Python3 Environment'))
self.log_widget.log_text_area.setFocus()
self.microbit_widget = MicrobitSettingsWidget()
self.microbit_widget.setup(settings.get('minify', False),
settings.get('microbit_runtime', ''))
self.tabs.addTab(self.microbit_widget, _('BBC micro:bit Settings'))
def settings(self):
"""
Return a dictionary representation of the raw settings information
generated by this dialog. Such settings will need to be processed /
checked in the "logic" layer of Mu.
"""
return {
'envars': self.envar_widget.text_area.toPlainText(),
'minify': self.microbit_widget.minify.isChecked(),
'microbit_runtime': self.microbit_widget.runtime_path.text(),
}
class FindReplaceDialog(QDialog):
"""
Display a dialog for getting:
* A term to find,
* An optional value to replace the search term,
* A flag to indicate if the user wishes to replace all.
"""
def __init__(self, parent=None):
super().__init__(parent)
def setup(self, find=None, replace=None, replace_flag=False):
self.setMinimumSize(600, 200)
self.setWindowTitle(_('Find / Replace'))
widget_layout = QVBoxLayout()
self.setLayout(widget_layout)
# Find.
find_label = QLabel(_('Find:'))
self.find_term = QLineEdit()
self.find_term.setText(find)
widget_layout.addWidget(find_label)
widget_layout.addWidget(self.find_term)
# Replace
replace_label = QLabel(_('Replace (optional):'))
self.replace_term = QLineEdit()
self.replace_term.setText(replace)
widget_layout.addWidget(replace_label)
widget_layout.addWidget(self.replace_term)
# Global replace.
self.replace_all_flag = QCheckBox(_('Replace all?'))
self.replace_all_flag.setChecked(replace_flag)
widget_layout.addWidget(self.replace_all_flag)
button_box = QDialogButtonBox(QDialogButtonBox.Ok |
QDialogButtonBox.Cancel)
button_box.accepted.connect(self.accept)
button_box.rejected.connect(self.reject)
widget_layout.addWidget(button_box)
def find(self):
"""
Return the value the user entered to find.
"""
return self.find_term.text()
def replace(self):
"""
Return the value the user entered for replace.
"""
return self.replace_term.text()
def replace_flag(self):
"""
Return the value of the global replace flag.
"""
return self.replace_all_flag.isChecked()
|