Source code for src.plots.erp.erp_view
#!/usr/bin/env python
# -*- coding: utf-8 -*-
"""
ERP view
"""
from PyQt5.QtWidgets import QWidget, QGridLayout, QPushButton, QLabel
from utils.elements_selector.elements_selector_controller import multipleSelectorController
from utils.view.error_window import errorWindow
__author__ = "Lemahieu Antoine"
__copyright__ = "Copyright 2022"
__credits__ = ["Lemahieu Antoine"]
__license__ = "GNU General Public License v3.0"
__maintainer__ = "Lemahieu Antoine"
__email__ = "Antoine.Lemahieu@ulb.be"
__status__ = "Dev"
[docs]class erpView(QWidget):
def __init__(self, all_channels_names):
"""
Window displaying the parameters for computing the ERPs on the dataset.
:param all_channels_names: All the channels' names
:type all_channels_names: list of str
"""
super().__init__()
self.erp_listener = None
self.all_channels_names = all_channels_names
self.channels_selector_controller = None
self.channels_selected = None
self.channels_selection_opened = False
self.setWindowTitle("Event Related Potentials")
self.grid_layout = QGridLayout()
self.setLayout(self.grid_layout)
self.channels_selection_button = QPushButton("&Channels ...", self)
self.channels_selection_button.clicked.connect(self.channels_selection_trigger)
self.cancel = QPushButton("&Cancel", self)
self.cancel.clicked.connect(self.cancel_erp_trigger)
self.confirm = QPushButton("&Confirm", self)
self.confirm.clicked.connect(self.confirm_erp_trigger)
self.grid_layout.addWidget(QLabel("Channels : "), 0, 0)
self.grid_layout.addWidget(self.channels_selection_button, 0, 1)
self.grid_layout.addWidget(self.cancel, 1, 0)
self.grid_layout.addWidget(self.confirm, 1, 1)
"""
Triggers
"""
[docs] def cancel_erp_trigger(self):
"""
Send the information to the controller that the computation is cancelled.
"""
self.erp_listener.cancel_button_clicked()
[docs] def confirm_erp_trigger(self):
"""
Retrieve the parameters and send the information to the controller.
"""
if self.channels_selection_opened:
if len(self.channels_selected) >= 1:
# Need at least 1 channels, because with 0 we have no info.
self.erp_listener.confirm_button_clicked(self.channels_selected)
else:
error_message = "Please select at least 1 channel in the 'channel selection' menu before starting the computation. \n" \
"Otherwise we do not have enough information do compute the ERPs"
error_window = errorWindow(error_message)
error_window.show()
else:
error_message = "Please select a channel in the 'channel selection' menu before starting the computation."
error_window = errorWindow(error_message)
error_window.show()
[docs] def channels_selection_trigger(self):
"""
Open the multiple selector window.
The user can select multiple channels.
"""
title = "Select the channels used for the ERP computation :"
self.channels_selector_controller = multipleSelectorController(self.all_channels_names, title, box_checked=True)
self.channels_selector_controller.set_listener(self.erp_listener)
self.channels_selection_opened = True
"""
Setters
"""
[docs] def set_listener(self, listener):
"""
Set the listener to the controller.
:param listener: Listener to the controller.
:type listener: erpController
"""
self.erp_listener = listener
[docs] def set_channels_selected(self, channels_selected):
"""
Set the channels selected in the multiple selector window.
:param channels_selected: Channels selected.
:type channels_selected: list of str
"""
self.channels_selected = channels_selected