Newer
Older
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
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
layout.addWidget(label)
Hlayout.setSpacing(20)
Hlayout.addWidget(self.creat_color_button(Execution_Time_Color))
Hlayout.addWidget(self.creat_color_button(Latency_Color))
Hlayout.addWidget(
self.creat_color_button(
ColorDataType(
current_color=Latency_Color.DEFAULT,
DEFAULT=QColor('skyblue'),
name="Latency Color per Type",
)
)
)
groupbox.setLayout(Hlayout)
layout.addWidget(groupbox)
label = QLabel("Signal Colors:")
layout.addWidget(label)
groupbox = QGroupBox()
Hlayout = QHBoxLayout()
Hlayout.setSpacing(20)
Signal_button = self.creat_color_button(Signal_Color)
Signal_button.setStyleSheet(
f"color: {QColor(255,255,255,0).name()}; background-color: {Signal_Color.DEFAULT.name()}"
)
Hlayout.addWidget(Signal_button)
Hlayout.addWidget(self.creat_color_button(Signal_Warning_Color))
Hlayout.addWidget(self.creat_color_button(Active_Color))
groupbox.setLayout(Hlayout)
layout.addWidget(groupbox)
Reset_Color_button = ColorButton(QColor('silver'))
Reset_Color_button.setText('Reset All Color settings')
Reset_Color_button.pressed.connect(self.reset_color_clicked)
layout.addWidget(Reset_Color_button)
label = QLabel("Font Settings:")
layout.addWidget(label)
groupbox = QGroupBox()
Hlayout = QHBoxLayout()
Hlayout.setSpacing(10)
Font_button = ColorButton(QColor('moccasin'))
Font_button.setText('Font Settings')
Hlayout.addWidget(Font_button)
Font_color_button = ColorButton(QColor('moccasin'))
Font_color_button.setText('Font Color')
Font_color_button.pressed.connect(self.font_color_clicked)
Hlayout.addWidget(Font_color_button)
groupbox2 = QGroupBox()
Hlayout2 = QHBoxLayout()
icon = QIcon.fromTheme("format-text-italic")
Italicbutton = (
ColorButton(QColor('silver'))
if Font.italic
else ColorButton(QColor('snow'))
)
Italicbutton.setIcon(icon)
Italicbutton.pressed.connect(lambda: self.Italic_font_clicked(Italicbutton))
Hlayout2.addWidget(Italicbutton)
icon = QIcon.fromTheme("format-text-bold")
Boldbutton = (
ColorButton(QColor('silver')) if Font.bold else ColorButton(QColor('snow'))
)
Boldbutton.setIcon(icon)
Boldbutton.pressed.connect(lambda: self.Bold_font_clicked(Boldbutton))
Hlayout2.addWidget(Boldbutton)
groupbox2.setLayout(Hlayout2)
Hlayout.addWidget(groupbox2)
groupbox2 = QGroupBox()
Hlayout2 = QHBoxLayout()
Font_Size_input = QLineEdit()
Font_button.pressed.connect(
lambda: self.font_clicked(Font_Size_input, Italicbutton, Boldbutton)
)
icon = QIcon.fromTheme("list-add")
Incr_button = ColorButton(QColor('smoke'))
Incr_button.setIcon(icon)
Incr_button.pressed.connect(lambda: self.Incr_font_clicked(Font_Size_input))
Incr_button.setShortcut(QCoreApplication.translate("MainWindow", "Ctrl++"))
Hlayout2.addWidget(Incr_button)
Font_Size_input.setPlaceholderText('Font Size')
Font_Size_input.setText(f'Font Size: {Font.size}')
Font_Size_input.setValidator(QIntValidator(0, 99))
Font_Size_input.setAlignment(Qt.AlignCenter)
Font_Size_input.textChanged.connect(
lambda: self.set_fontSize_clicked(Font_Size_input.text())
)
Font_Size_input.textChanged.connect(
lambda: self.set_fontSize_clicked(Font_Size_input.text())
)
Hlayout2.addWidget(Font_Size_input)
icon = QIcon.fromTheme("list-remove")
Decr_button = ColorButton(QColor('smoke'))
Decr_button.setIcon(icon)
Decr_button.pressed.connect(lambda: self.Decr_font_clicked(Font_Size_input))
Decr_button.setShortcut(QCoreApplication.translate("MainWindow", "Ctrl+-"))
Hlayout2.addWidget(Decr_button)
groupbox2.setLayout(Hlayout2)
Hlayout.addWidget(groupbox2)
groupbox.setLayout(Hlayout)
layout.addWidget(groupbox)
Reset_Font_button = ColorButton(QColor('silver'))
Reset_Font_button.setText('Reset All Font Settings')
Reset_Font_button.pressed.connect(
lambda: self.reset_font_clicked(Font_Size_input, Italicbutton, Boldbutton)
)
layout.addWidget(Reset_Font_button)
label = QLabel("")
layout.addWidget(label)
Reset_button = ColorButton(QColor('salmon'))
Reset_button.setText('Reset All Settings')
Reset_button.pressed.connect(
lambda: self.reset_all_clicked(Font_Size_input, Italicbutton, Boldbutton)
)
layout.addWidget(Reset_button)
dialog.setLayout(layout)
buttonBox = QDialogButtonBox(QDialogButtonBox.Ok | QDialogButtonBox.Close)
buttonBox.ButtonLayout(QDialogButtonBox.MacLayout)
buttonBox.accepted.connect(dialog.accept)
buttonBox.rejected.connect(dialog.close)
layout.addWidget(buttonBox)
dialog.exec_()
def creat_color_button(self, color: ColorDataType) -> ColorButton:
"""Create a colored button to be used to modify a certain color
color_type: ColorDataType
The color_type assigned to the butten to be created.
"""
button = ColorButton(color.DEFAULT)
button.setText(color.name)
if color.name == "Latency Color":
button.pressed.connect(
lambda: self.set_latency_color_by_type_name(all=True)
)
elif color.name == "Latency Color per Type":
button.pressed.connect(
lambda: self.set_latency_color_by_type_name(all=False)
)
else:
button.pressed.connect(lambda: self.Color_button_clicked(color))
return button
def set_latency_color_by_type_name(self, all: bool):
"""Set latency color based on operation type names
all: bool
Indicates if the color of all type names to be modified.
"""
if Latency_Color.changed:
current_color = Latency_Color.current_color
else:
current_color = Latency_Color.DEFAULT
# Prompt user to select operation type if not setting color for all types
if not all:
used_types = self._schedule.get_used_type_names()
type, ok = QInputDialog.getItem(
self, "Select Operation Type", "Type", used_types, editable=False
)
else:
type = "all operations"
ok = False
# Open a color dialog to get the selected color
if all or ok:
color = QColorDialog.getColor(
current_color, self, f"Select the color of {type}"
)
# If a valid color is selected, update color settings and graph
if color.isValid():
if all:
Latency_Color.changed = True
self._color_changed_perType = False
self.changed_operation_colors.clear()
Latency_Color.current_color = color
# Save color settings for each operation type
else:
self._color_changed_perType = True
self.changed_operation_colors[type] = color
self.color_pref_update()
self.update_statusbar("Preferences Updated")
def color_pref_update(self):
"""Update preferences of Latency color per type"""
for type in self._schedule.get_used_type_names():
if Latency_Color.changed and not self._color_changed_perType:
self._color_per_type[type] = Latency_Color.current_color
elif not Latency_Color.changed and not self._color_changed_perType:
self._color_per_type[type] = Latency_Color.DEFAULT
elif not Latency_Color.changed and self._color_changed_perType:
if type in self.changed_operation_colors.keys():
self._color_per_type[type] = self.changed_operation_colors[type]
else:
self._color_per_type[type] = Latency_Color.DEFAULT
else:
if type in self.changed_operation_colors.keys():
self._color_per_type[type] = self.changed_operation_colors[type]
else:
self._color_per_type[type] = Latency_Color.current_color
self.Save_colortype()
def Save_colortype(self):
"""Save preferences of Latency color per type in settings"""
settings = QSettings()
for key, color in self._color_per_type.items():
self._graph._color_change(color, key)
self.converted_colorPerType[key] = color.name()
settings.setValue(
f"scheduler/preferences/{Latency_Color.name}",
Latency_Color.current_color,
)
settings.setValue(
f"scheduler/preferences/{Latency_Color.name}_changed", Latency_Color.changed
)
settings.setValue(
f"scheduler/preferences/{Latency_Color.name}/perType",
self.converted_colorPerType,
)
settings.setValue(
f"scheduler/preferences/{Latency_Color.name}/perType_changed",
self._color_changed_perType,
)
def Color_button_clicked(self, color_type: ColorDataType):
"""Open a color dialog to select a color based on the specified color type
color_type: ColorDataType
The color_type to be changed.
"""
settings = QSettings()
if color_type.changed:
current_color = color_type.current_color
else:
current_color = color_type.DEFAULT
color = QColorDialog.getColor(current_color, self, f"Select {color_type.name}")
# If a valid color is selected, update the current color and settings
if color.isValid():
color_type.current_color = color
# colorbutton.set_color(color)
color_type.changed = (
False if color_type.current_color == color_type.DEFAULT else True
)
settings.setValue(f"scheduler/preferences/{color_type.name}", color.name())
settings.sync()
self._graph._signals.reopen.emit()
self.update_statusbar("Preferences Updated")
def font_clicked(
self, Sizeline: QLineEdit, italicbutton: ColorButton, boldbutton: ColorButton
):
"""Open a font dialog to select a font and update the current font
Sizeline: QLineEdit
The line displaying the text size to be matched with the chosen font.
italicbutton: ColorButton
The button displaying the italic state to be matched with the chosen font.
boldbutton: ColorButton
The button displaying the bold state to be matched with the chosen font.
"""
if Font.changed:
current_font = Font.current_font
else:
current_font = Font.DEFAULT
(ok, font) = QFontDialog.getFont(current_font, self)
if ok:
Font.current_font = font
Font.size = int(font.pointSizeF())
Font.bold = font.bold()
Font.italic = font.italic()
self.Update_font()
self.Match_Dialog_Font(Sizeline, italicbutton, boldbutton)
self.update_statusbar("Preferences Updated")
def Update_font(self):
"""Update font preferences based on current Font settings"""
settings = QSettings()
Font.changed = (
False
if (
Font.current_font == Font.DEFAULT
and Font.size == int(Font.DEFAULT.pointSizeF())
and Font.italic == Font.DEFAULT.italic()
and Font.bold == Font.DEFAULT.bold()
)
else True
)
settings.setValue("scheduler/preferences/font", Font.current_font.toString())
settings.setValue("scheduler/preferences/fontSize", Font.size)
settings.setValue("scheduler/preferences/fontBold", Font.bold)
settings.setValue("scheduler/preferences/fontItalic", Font.italic)
settings.sync()
self.load_preferences()
def load_preferences(self):
"Load the last saved preferences from settings"
settings = QSettings()
Latency_Color.current_color = QColor(
settings.value(
f"scheduler/preferences/{Latency_Color.name}",
defaultValue=Latency_Color.DEFAULT,
type=str,
)
)
Latency_Color.changed = settings.value(
f"scheduler/preferences/{Latency_Color.name}_changed", False, bool
)
self.converted_colorPerType = settings.value(
f"scheduler/preferences/{Latency_Color.name}/perType",
self.converted_colorPerType,
)
self._color_changed_perType = settings.value(
f"scheduler/preferences/{Latency_Color.name}/perType_changed", False, bool
)
settings.sync()
for key, color_str in self.converted_colorPerType.items():
color = QColor(color_str)
self._color_per_type[key] = color
Match = (
(color == Latency_Color.current_color)
if Latency_Color.changed
else (color == Latency_Color.DEFAULT)
)
if self._color_changed_perType and not Match:
self.changed_operation_colors[key] = color
self.color_pref_update()
if Font.changed:
Font.current_font.setPointSizeF(Font.size)
Font.current_font.setItalic(Font.italic)
Font.current_font.setBold(Font.bold)
self._graph._font_change(Font.current_font)
self._graph._font_color_change(Font.color)
else:
self._graph._font_change(Font.DEFAULT)
self._graph._font_color_change(Font.DEFAULT_COLOR)
self.update_statusbar("Saved Preferences Loaded")
def font_color_clicked(self):
"""Select a font color and update preferences"""
settings = QSettings()
color = QColorDialog.getColor(Font.color, self, "Select Font Color")
if color.isValid():
Font.color = color
Font.changed = True
settings.setValue("scheduler/preferences/fontColor", Font.color.name())
settings.sync()
self._graph._font_color_change(Font.color)
def set_fontSize_clicked(self, size):
"""Set the font size to the specified size and update the font
size
The font size to be set.
"""
Font.size = int(size) if (not size == "") else 6
Font.current_font.setPointSizeF(Font.size)
self.Update_font()
def Italic_font_clicked(self, button: ColorButton):
"""Toggle the font style to italic if not already italic, otherwise remove italic
button: ColorButton
The clicked button. Used to indicate state on/off.
"""
Font.italic = not Font.italic
Font.current_font.setItalic(Font.italic)
(
button.set_color(QColor('silver'))
if Font.italic
else button.set_color(QColor('snow'))
)
self.Update_font()
def Bold_font_clicked(self, button: ColorButton):
"""Toggle the font style to bold if not already bold, otherwise unbold
button: ColorButton
The clicked button. Used to indicate state on/off.
"""
Font.bold = not Font.bold
Font.current_font.setBold(Font.bold)
Font.current_font.setWeight(50)
(
button.set_color(QColor('silver'))
if Font.bold
else button.set_color(QColor('snow'))
)
self.Update_font()
def Incr_font_clicked(self, line: QLineEdit):
"""
Increase the font size by 1.
line: QLineEdit
The line displaying the text size to be matched.
"""
(
line.setText(str(Font.size + 1))
if Font.size <= 71
else line.setText(str(Font.size))
)
def Decr_font_clicked(self, line: QLineEdit):
"""
Decrease the font size by 1.
line: QLineEdit
The line displaying the text size to be matched.
"""
(
line.setText(str(Font.size - 1))
if Font.size >= 7
else line.setText(str(Font.size))
)
def reset_color_clicked(self):
"""Reset the color settings"""
settings = QSettings()
Latency_Color.changed = False
Active_Color.changed = False
Signal_Warning_Color.changed = False
Signal_Color.changed = False
Execution_Time_Color.changed = False
self._color_changed_perType = False
self.color_pref_update()
settings.beginGroup("scheduler/preferences")
settings.setValue(Latency_Color.name, Latency_Color.DEFAULT.name())
settings.setValue(Signal_Color.name, Signal_Color.DEFAULT.name())
settings.setValue(Active_Color.name, Active_Color.DEFAULT.name())
settings.setValue(
Signal_Warning_Color.name, Signal_Warning_Color.DEFAULT.name()
)
settings.setValue(
Execution_Time_Color.name, Execution_Time_Color.DEFAULT.name()
)
settings.endGroup()
self._graph._color_change(Latency_Color.DEFAULT, "all operations")
self._graph._signals.reopen.emit()
self.load_preferences()
def reset_font_clicked(
self, Sizeline: QLineEdit, italicbutton: ColorButton, boldbutton: ColorButton
):
"""Reset the font settings.
Sizeline: QLineEdit
The line displaying the text size to be matched with the chosen font.
italicbutton: ColorButton
The button displaying the italic state to be matched with the chosen font.
boldbutton: ColorButton
The button displaying the bold state to be matched with the chosen font.
"""
Font.current_font = QFont("Times", 12)
Font.changed = False
Font.color = Font.DEFAULT_COLOR
Font.size = int(Font.DEFAULT.pointSizeF())
Font.bold = Font.DEFAULT.bold()
Font.italic = Font.DEFAULT.italic()
self.Update_font()
self.load_preferences()
self.Match_Dialog_Font(Sizeline, italicbutton, boldbutton)
def reset_all_clicked(
self, Sizeline: QLineEdit, italicbutton: ColorButton, boldbutton: ColorButton
):
"""Reset both the color and the font settings"""
self.reset_color_clicked()
self.reset_font_clicked(Sizeline, italicbutton, boldbutton)
def Match_Dialog_Font(
self, Sizeline: QLineEdit, italicbutton: ColorButton, boldbutton: ColorButton
):
"""Update the widgets on the pref dialog to match the current font
Sizeline: QLineEdit
The line displaying the text size to be matched with the current font.
italicbutton: ColorButton
The button displaying the italic state to be matched with the current font.
boldbutton: ColorButton
The button displaying the bold state to be matched with the current font.
"""
Sizeline.setText(str(Font.size))
(
italicbutton.set_color(QColor('silver'))
if Font.italic
else italicbutton.set_color(QColor('snow'))
)
(
boldbutton.set_color(QColor('silver'))
if Font.bold
else boldbutton.set_color(QColor('snow'))
)
def _show_execution_times_for_type(self, type_name):
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
self._execution_time_plot(type_name)
def _closed_execution_times_for_type(self, type_name):
self._execution_time_plot_dialogs[type_name] = None
def _execution_time_plot(self, type_name: str) -> None:
self._execution_time_plot_dialogs[type_name] = MPLWindow(
f"Execution times for {type_name}"
)
self._execution_time_plot_dialogs[type_name].finished.connect(
lambda b=0, x=type_name: self._closed_execution_times_for_type(x)
)
self._update_execution_times_for_type(type_name)
self._execution_time_plot_dialogs[type_name].show()
def _update_execution_times_for_type(self, type_name):
if self._execution_time_plot_dialogs[type_name]:
self._execution_time_plot_dialogs[type_name].axes.clear()
self._schedule.get_operations().get_by_type_name(type_name).plot(
self._execution_time_plot_dialogs[type_name].axes
)
self._execution_time_plot_dialogs[type_name].redraw()
def _show_execution_times_for_variables(self):
self._execution_time_for_variables = MPLWindow("Execution times for variables")
self._execution_time_for_variables.finished.connect(
self._execution_times_for_variables_closed
self._update_execution_times_for_variables()
self._execution_time_for_variables.show()
def _update_execution_times_for_variables(self):
if self._execution_time_for_variables:
self._execution_time_for_variables.axes.clear()
self._schedule.get_memory_variables().plot(
self._execution_time_for_variables.axes, allow_excessive_lifetimes=True
)
self._execution_time_for_variables.redraw()
@Slot()
def _execution_times_for_variables_closed(self):
self._execution_time_for_variables = None
def _show_ports_accesses_for_storage(self):
self._ports_accesses_for_storage = MPLWindow(
"Port accesses for storage", subplots=(3, 1)
)
self._ports_accesses_for_storage.finished.connect(
self._ports_accesses_for_storage_closed
)
self._update_ports_accesses_for_storage()
self._ports_accesses_for_storage.show()
def _update_ports_accesses_for_storage(self) -> None:
if self._ports_accesses_for_storage:
for ax in self._ports_accesses_for_storage.axes:
ax.clear()
mem_vars = self._schedule.get_memory_variables()
_, mem_vars = mem_vars.split_on_length()
mem_vars.plot_port_accesses(self._ports_accesses_for_storage.axes)
self._ports_accesses_for_storage.redraw()
@Slot()
def _ports_accesses_for_storage_closed(self) -> None:
self._ports_accesses_for_storage = None
@Slot()
@Slot(str)
def _schedule_changed(self, type_name: Optional[str] = None):
self._update_execution_times_for_variables()
self._update_ports_accesses_for_storage()
for key, dialog in self._execution_time_plot_dialogs.items():
if dialog:
self._update_execution_times_for_type(key)
def _update_recent_file_list(self):
rfp = cast(deque, settings.value("scheduler/recentFiles"))
# print(rfp)
if rfp:
dequelen = len(rfp)
if dequelen > 0:
for i in range(dequelen):
action = self._recent_files_actions[i]
action.setText(rfp[i])
action.setData(QFileInfo(rfp[i]))
action.setVisible(True)
for i in range(dequelen, self._max_recent_files):
self._recent_files_actions[i].setVisible(False)
def _open_recent_file(self, action):
if action.data().filePath().endswith('.bsc'):
self._open_schedule_file(action.data().filePath())
else:
self._load_from_file(action.data().filePath())
def _add_recent_file(self, filename):
rfp = cast(deque, settings.value("scheduler/recentFiles"))
if filename not in rfp:
rfp.append(filename)
rfp = deque(maxlen=self._max_recent_files)
rfp.append(filename)
settings.setValue("scheduler/recentFiles", rfp)
def _zoom_to_fit(self, event=None):
"""Callback for zoom to fit schedule in window."""
self.view.fitInView(self._scene.sceneRect(), Qt.AspectRatioMode.KeepAspectRatio)
def _toggle_statusbar(self, event=None) -> None:
"""Callback for toggling the status bar."""
self.statusbar.setVisible(self.actionStatus_bar.isChecked())
def _toggle_execution_time_warning(self, event=None) -> None:
"""Callback for toggling the status bar."""
self._show_incorrect_execution_time = (
self.action_incorrect_execution_time.isChecked()
)
self._graph.set_warnings(self._show_incorrect_execution_time)
def _toggle_port_number(self, event=None) -> None:
"""Callback for toggling the status bar."""
self._show_port_numbers = self.action_show_port_numbers.isChecked()
self._graph.set_port_numbers(self._show_port_numbers)
def _toggle_fullscreen(self, event=None):
"""Callback for toggling full screen mode."""
if self.isFullScreen():
self.showNormal()
self.actionToggle_full_screen.setIcon(get_icon('full-screen'))
else:
self.showFullScreen()
self.actionToggle_full_screen.setIcon(get_icon('full-screen-exit'))
@overload
def start_scheduler(schedule: Schedule) -> Schedule: ...
@overload
def start_scheduler(schedule: None) -> Optional[Schedule]: ...
@overload
def start_scheduler() -> Optional[Schedule]: ...
def start_scheduler(schedule: Optional[Schedule] = None) -> Optional[Schedule]:
"""
Start scheduler GUI.
Parameters
----------
schedule : Schedule, optional
The schedule to start the editor with.
Returns
-------
Schedule
The edited schedule.
"""
if not QApplication.instance():
app = QApplication(sys.argv)
else:
app = QApplication.instance()
# Enforce a light palette regardless of laptop theme
palette = QPalette()
palette.setColor(QPalette.ColorRole.Window, QtCore.Qt.white)
palette.setColor(QPalette.ColorRole.WindowText, QtCore.Qt.black)
palette.setColor(QPalette.ColorRole.ButtonText, QtCore.Qt.black)
palette.setColor(QPalette.ColorRole.Base, QtCore.Qt.white)
palette.setColor(QPalette.ColorRole.AlternateBase, QtCore.Qt.lightGray)
palette.setColor(QPalette.ColorRole.Text, QtCore.Qt.black)
app.setPalette(palette)
window = ScheduleMainWindow()
if schedule:
window.open(schedule)
app.exec_()
return window.schedule