4.5. manager.qobjectComponent

qobjectComponent.py

Platform:
Windows, Linux, Mac Os X.
Description:
This module defines the QObjectComponent class.

Others:

4.5.1. Module Attributes

manager.qobjectComponent.LOGGER

4.5.2. Classes

class manager.qobjectComponent.QObjectComponent(parent=None, name=None, *args, **kwargs)[source]

Bases: PyQt4.QtCore.QObject

This class is the base class for Manager package QObject Components.

Parameters:
  • parent – Object parent. ( QObject )
  • name – Component name. ( String )
  • *args – Arguments. ( * )
  • **kwargs – Keywords arguments. ( ** )
componentActivated

This signal is emited by the QObjectComponent class when the Component is activated. ( pyqtSignal )

componentDeactivated

This signal is emited by the QObjectComponent class when the Component is deactivated. ( pyqtSignal )

componentInitialized

This signal is emited by the QObjectComponent class when the Component is initialized. ( pyqtSignal )

componentUninitialized

This signal is emited by the QObjectComponent class when the Component is uninitialized. ( pyqtSignal )

name[source]

This method is the property for self.__name attribute.

Returns:self.__name. ( String )
activated[source]

This method is the property for self.__activated attribute.

Returns:self.__activated. ( Boolean )
initialized[source]

This method is the property for self.__initialized attribute.

Returns:self.__initialized. ( Boolean )
deactivatable[source]

This method is the property for self.__deactivatable attribute.

Returns:self.__deactivatable. ( Boolean )
activate()[source]

This method sets Component activation state.

Returns:Method success. ( Boolean )
deactivate()[source]

This method unsets Component activation state.

Returns:Method success. ( Boolean )
initialize()[source]

This method initializes the Component.

uninitialize()[source]

This method uninitializes the Component.

Table Of Contents

Previous topic

4.4. manager.globals.constants

Next topic

4.6. manager.qwidgetComponent

This Page