navigate Logo

Getting Started

  • Computer Considerations
  • Computer Power Configuration
  • Software Installation
  • Launching Navigate
  • Configuring Navigate
  • Acquiring Data
  • Smart Acquisition Routines

User Guide

  • Supported Hardware
  • Supported File Formats
  • User Interface Walkthrough
  • Setting Up a Microscope
  • Acquiring Data
  • Case Studies

Development

  • Contributing Guidelines
  • Developer Install
  • Software Architecture
  • Developer Architecture Concepts
  • Feature Container
  • REST API
  • Plugin Architecture
  • Adding New Hardware

Troubleshooting & Known Issues

  • Troubleshooting
  • Known Issues

Plugins

  • navigate Plugin Template
  • navigate Confocal Projection
  • navigate at Scale
  • navigate Constant Velocity Acquisition
  • navigate MMCore
  • navigate ilastik Server
  • navigate Photoactivation

Reference

  • Implemented Microscopes
  • Software API
    • navigate.config
    • navigate.controller
      • navigate.controller.configuration_controller
      • navigate.controller.configurator
      • navigate.controller.controller
      • navigate.controller.sub_controllers
        • navigate.controller.sub_controllers.acquire_bar
        • navigate.controller.sub_controllers.adaptive_optics
        • navigate.controller.sub_controllers.autofocus
        • navigate.controller.sub_controllers.camera_map
        • navigate.controller.sub_controllers.camera_settings
        • navigate.controller.sub_controllers.camera_view
        • navigate.controller.sub_controllers.channels_settings
        • navigate.controller.sub_controllers.channels_tab
        • navigate.controller.sub_controllers.diagnostics_popup
        • navigate.controller.sub_controllers.feature_advanced_setting
        • navigate.controller.sub_controllers.features_popup
        • navigate.controller.sub_controllers.gui
        • navigate.controller.sub_controllers.histogram
        • navigate.controller.sub_controllers.ilastik
        • navigate.controller.sub_controllers.keystrokes
        • navigate.controller.sub_controllers.menus
        • navigate.controller.sub_controllers.microscope_popup
        • navigate.controller.sub_controllers.multiposition
        • navigate.controller.sub_controllers.plugins
        • navigate.controller.sub_controllers.stages
        • navigate.controller.sub_controllers.stages_advanced
        • navigate.controller.sub_controllers.tiling
        • navigate.controller.sub_controllers.waveform_popup
        • navigate.controller.sub_controllers.waveform_tab
      • navigate.controller.thread_pool
    • navigate.controller.configurator
    • navigate.log_files
    • navigate.model
    • navigate.tools
    • navigate.view
navigate
  • Software API
  • navigate.controller
  • navigate.controller.sub_controllers
  • navigate.controller.sub_controllers.channels_settings
  • navigate.controller.sub_controllers.channels_settings.ChannelSettingController
  • View page source

navigate.controller.sub_controllers.channels_settings.ChannelSettingController

class navigate.controller.sub_controllers.channels_settings.ChannelSettingController(view, parent_controller=None, configuration_controller=None)

Bases: GUIController

Controller for the channel setting widgets.

__init__(view, parent_controller=None, configuration_controller=None)

Initialize the ChannelSettingController.

Parameters:
  • view (navigate.view.channel_setting_view.ChannelSettingView) – The view for the channel setting widgets.

  • parent_controller (navigate.controller.main_controller.MainController) – The parent controller.

  • configuration_controller (ConfigurationController) – The configuration controller.

Methods

__init__(view[, parent_controller, ...])

Initialize the ChannelSettingController.

channel_callback(channel_id, widget_name)

Callback function for the channel widgets.

execute(command, *args)

This function is called when a command is passed from a child process.

get_index(dropdown_name, value)

Get the index of the value in the dropdown list.

get_vals_by_channel(index)

Get the values of the channel widgets by channel id.

initialize()

Populates the laser and filter wheel options in the View.

populate_empty_values()

Populates the View with empty values.

populate_experiment_values(setting_dict)

Populates the View with the values from the setting dictionary.

register_event_listener(event_name, ...)

Register event listener in the parent_controller

set_experiment_values()

Sets values of widgets based on experiment setting

set_mode([mode])

Set the mode of the channel setting controller.

set_spinbox_range_limits(settings)

Set the range limits for the spinboxes in the View.

show_verbose_info(*info)

Prints verbose information to the console

update_experiment_values()

Update experiment values according to GUI

verify_experiment_values()

Verify channel settings and return warning info

Attributes

custom_events

Custom events for the controller

configuration_controller

The configuration controller.

mode

The mode of the channel setting controller.

in_initialization

Whether the channel setting controller is in initialization.

event_id

The event id.

channel_setting_dict

The channel setting dictionary.

channel_callback(channel_id, widget_name)

Callback function for the channel widgets.

In ‘live’ mode (when acquire mode is set to ‘continuous’) and a channel is selected, any change of the channel setting will influence devices instantly this function will call the central controller to response user’s request

Parameters:
  • channel_id (int) – The channel id.

  • widget_name (str) – The name of the widget.

Returns:

success – Whether the callback function is executed successfully.

Return type:

bool

execute(command, *args)

This function is called when a command is passed from a child process.

Parameters:
  • command (str) – command name

  • args (tuple) – command arguments

get_index(dropdown_name, value)

Get the index of the value in the dropdown list.

Parameters:
  • dropdown_name (str) – The name of the dropdown list.

  • value (str) – The value of the dropdown list.

Returns:

The index of the value in the dropdown list.

Return type:

int

get_vals_by_channel(index)

Get the values of the channel widgets by channel id.

This function return all the variables according channel_id

Parameters:

index (int) – The channel id.

Returns:

The values of the channel widgets.

Return type:

dict

initialize()

Populates the laser and filter wheel options in the View.

populate_empty_values()

Populates the View with empty values.

If the user changes the number of channels, the new channels need to be populated with a default value.

populate_experiment_values(setting_dict)

Populates the View with the values from the setting dictionary.

Set channel values according to channel id the value should be a dict { ‘channel_id’: {

‘is_selected’: True(False), ‘laser’: , ‘filter’: , ‘camera_exposure_time’: , ‘laser_power’: , ‘interval_time’:}

}

Parameters:

setting_dict (dict) – Dictionary containing the values for the experiment.

register_event_listener(event_name, event_handler)

Register event listener in the parent_controller

Parameters:
  • event_name (str) – event name

  • event_handler (function) – event handler

set_experiment_values()

Sets values of widgets based on experiment setting

setting_dict is a dictionary

set_mode(mode='stop')

Set the mode of the channel setting controller.

Parameters:

mode (str) – “stop” or “live”

set_spinbox_range_limits(settings)

Set the range limits for the spinboxes in the View.

This function will set the spinbox widget’s values of from_, to, step according to the settings

Parameters:

settings (dict) – Dictionary containing the range limits for the spinboxes.

show_verbose_info(*info)

Prints verbose information to the console

Parameters:

info (tuple) – information to be printed

update_experiment_values()

Update experiment values according to GUI

verify_experiment_values()

Verify channel settings and return warning info

Returns:

Warning info

Return type:

string

channel_setting_dict

The channel setting dictionary.

Type:

dict

configuration_controller

The configuration controller.

Type:

ConfigurationController

property custom_events

Custom events for the controller

event_id

The event id.

Type:

int

in_initialization

Whether the channel setting controller is in initialization.

Type:

bool

mode

The mode of the channel setting controller. Either ‘live’ or ‘stop’.

Type:

str

parent_controller

parent controller

Type:

Controller

view

GUI view

Type:

tkinter.Tk

Previous Next

© Copyright 2026, Dean Lab, UT Southwestern Medical Center.