Skip to content

initialize charts

This is boilerplate code for the initial setup of the GUI plots, once a specific type of plot has been chosen. Note that chart-specific update logic within each type of plot is specified in its own corresponding file.

For instance: For spike rate plots, refer to python file such as view > plot > spike_rate.py

Contains one main function setup_layout, and a supporting function for each type of GUI layout, i.e. (1) Spike Finding - a combination of different plots (2) Noise - only electrode noise related plots (3) Spike Search - only channel trace plots (4) Diagnostic (not developed yet)

setup_layout(app, layout, CURRENT_THEME, themes, NUM_CHANNELS_PER_BUFFER)

Runs initial setup to load all the charts and their basic information for a given layout (i.e. Spike Finding, Trace Search, Noise, etc.)

Parameters:

Name Type Description Default
app

reference to the MainWindow container

required
layout str

name of window type (list specified by SessionStartupGUI.settings["visStyle"])

required
CURRENT_THEME str required
themes dict required

Returns:

Type Description
(bool) whether set up was successful (int) NUM_CHANNELS_PER_BUFFER
Source code in src/controller/modes/init_charts.py
def setup_layout(app, layout: str, CURRENT_THEME: str, themes: dict, NUM_CHANNELS_PER_BUFFER: int):
    """ Runs initial setup to load all the charts and their basic information for a given layout
    (i.e. Spike Finding, Trace Search, Noise, etc.)

    Args:
        app: reference to the MainWindow container
        layout: name of window type (list specified by SessionStartupGUI.settings["visStyle"])
        CURRENT_THEME:
        themes:

    Returns:
        (bool) whether set up was successful
        (int) NUM_CHANNELS_PER_BUFFER:
    """
    app.buttons = {}

    # Load layout based on QtDesigner .ui file



    if layout == "Spike Finding":
        from src.controller.modes.mode_spikefinding import setup_spike_finding
        setup_spike_finding(app, CURRENT_THEME, themes, NUM_CHANNELS_PER_BUFFER)

    elif layout == "Trace Search":
        from src.controller.modes.mode_tracesearch import setup_trace_search
        setup_trace_search(app, CURRENT_THEME, themes, NUM_CHANNELS_PER_BUFFER)

    elif layout == "Noise":
        from src.controller.modes.mode_noise import setup_noise_plots
        setup_noise_plots(app, CURRENT_THEME, themes, NUM_CHANNELS_PER_BUFFER)

    ### EMILY >>>>
    elif layout == "Compression":
        from src.controller.modes.mode_compression import setup_compression_plots
        setup_compression_plots(app, CURRENT_THEME, themes, NUM_CHANNELS_PER_BUFFER)
    ### EMILY <<<<

    else: return False
    update_theme(app, CURRENT_THEME)

    return True