Screens

A class responsible for displaying a single screen. It needs to be passed a GUI object and has one public method: show().

Interface

class src.data_acquisition.screens.Screen(*, gui: Gui)[source]

Bases: ABC

abstractmethod show() None[source]

Displays the screen using the provided GUI.

How to subclass

Subclasses should implement the following methods:

  • show()

Available properties and methods:

  • _gui: Gui

Catalog