Skip to content

Commit

Permalink
Merge pull request #98 from neutrons/resolve_docs_warnings
Browse files Browse the repository at this point in the history
adding individual docstrings for each signal
  • Loading branch information
jmborr authored Jul 17, 2024
2 parents a78c516 + e19351e commit 0778686
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions reflectivity_ui/interfaces/main_window.py
Original file line number Diff line number Diff line change
Expand Up @@ -33,11 +33,22 @@ class MainWindow(QtWidgets.QMainWindow):

# UI events
file_loaded_signal = QtCore.pyqtSignal()
"""Signal emitted when a file is loaded."""

initiate_projection_plot = QtCore.pyqtSignal(bool)
"""Signal to initiate the projection plot."""

initiate_reflectivity_plot = QtCore.pyqtSignal(bool)
"""Signal to initiate the reflectivity plot."""

update_specular_viewer = QtCore.pyqtSignal()
"""Signal to update the specular viewer."""

update_off_specular_viewer = QtCore.pyqtSignal()
"""Signal to update the off-specular viewer."""

update_gisans_viewer = QtCore.pyqtSignal()
"""Signal to update the GISANS viewer."""

def __init__(self):
"""
Expand Down

0 comments on commit 0778686

Please sign in to comment.