exopy.tasks.configs.base_config_views module

Standard task configurers associated views.

class exopy.tasks.configs.base_config_views.BaseConfigView(parent=None, **kwargs)

Bases: enaml.widgets.container.Container

Base class for all task configurer views.

config

A value which allows objects of a given type or types.

Values will be tested using the PyObject_IsInstance C API call. This call is equivalent to isinstance(value, kind) and all the same rules apply.

The value of an Instance may be set to None.

name_field
name_label
class exopy.tasks.configs.base_config_views.PyConfigView(parent=None, **kwargs)

Bases: exopy.tasks.configs.base_config_views.BaseConfigView

View for the standard python task configurer.

loop

A value which allows objects of a given type or types.

Values will be tested using the PyObject_IsInstance C API call. This call is equivalent to isinstance(value, kind) and all the same rules apply.

The value of an Instance may be set to None.

class exopy.tasks.configs.base_config_views.TemplateConfigView(parent=None, **kwargs)

Bases: exopy.tasks.configs.base_config_views.BaseConfigView

View for the template configurer.