pic_scanner.gui.models.element_bases.metas

Classes

AutoBuildMeta

Metaclass for classes that should build themselves upon instantiation when the auto_build

AutoBuildRunMeta

Metaclass for classes that should build and run themselves upon instantiation when the auto_build

Module Contents

class pic_scanner.gui.models.element_bases.metas.AutoBuildMeta

Bases: abc.ABCMeta

Metaclass for classes that should build themselves upon instantiation when the auto_build attribute is True.

This metaclass overrides the __call__ method to build the instance if the auto_build attribute is True.

class pic_scanner.gui.models.element_bases.metas.AutoBuildRunMeta

Bases: abc.ABCMeta

Metaclass for classes that should build and run themselves upon instantiation when the auto_build and auto_run attributes are True.

This metaclass overrides the __call__ method to build and run the instance if the auto_build and auto_run attributes are True.