Source code for src.menubar.menubar_listener
#!/usr/bin/env python
# -*- coding: utf-8 -*-
"""
Main controller
"""
from abc import ABC, abstractmethod
__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 menubarListener(ABC):
"""
Listener doing the connection between the controller and the view for displaying the menubar
It retrieves the information from the view to send it to the controller.
"""
"""
File menu
"""
# Events
# Export
# Save
# Study
# Other
"""
Edit Menu
"""
"""
Tools menu
"""
"""
Plot menu
"""
"""
Connectivity menu
"""
"""
Classification menu
"""
"""
Statistics menu
"""
"""
Study menu
"""
"""
Dataset menu
"""
"""
Help menu
"""