Source code for manager.qwidgetComponent

#!/usr/bin/env python
# -*- coding: utf-8 -*-

"""
**qwidgetComponent.py**

**Platform:**
	Windows, Linux, Mac Os X.

**Description:**
	This module defines the :class:`QWidgetComponent` class.

**Others:**

"""

#**********************************************************************************************************************
#***	External imports.
#**********************************************************************************************************************
from PyQt4.QtCore import pyqtSignal

#**********************************************************************************************************************
#***	Internal imports.
#**********************************************************************************************************************
import foundations.exceptions
import foundations.verbose
import foundations.ui.common

#**********************************************************************************************************************
#***	Module attributes.
#**********************************************************************************************************************
__author__ = "Thomas Mansencal"
__copyright__ = "Copyright (C) 2008 - 2013 - Thomas Mansencal"
__license__ = "GPL V3.0 - http://www.gnu.org/licenses/"
__maintainer__ = "Thomas Mansencal"
__email__ = "thomas.mansencal@gmail.com"
__status__ = "Production"

__all__ = ["LOGGER", "QWidgetComponentFactory"]

LOGGER = foundations.verbose.installLogger()

#**********************************************************************************************************************
#***	Module classes and definitions.
#**********************************************************************************************************************
[docs]def QWidgetComponentFactory(uiFile=None, *args, **kwargs): """ This definition is a class factory creating :class:`QWidgetComponent` classes using given ui file. :param uiFile: Ui file. ( String ) :param \*args: Arguments. ( \* ) :param \*\*kwargs: Keywords arguments. ( \*\* ) :return: QWidgetComponent class. ( QWidgetComponent ) """ class QWidgetComponent(foundations.ui.common.QWidgetFactory(uiFile=uiFile)): """ This class is the base class for **Manager** package QWidget Components. """ componentActivated = pyqtSignal() """ This signal is emited by the :class:`QObjectComponent` class when the Component is activated. ( pyqtSignal ) """ componentDeactivated = pyqtSignal() """ This signal is emited by the :class:`QObjectComponent` class when the Component is deactivated. ( pyqtSignal ) """ componentInitializedUi = pyqtSignal() """ This signal is emited by the :class:`QObjectComponent` class when the Component ui is initialized. ( pyqtSignal ) """ componentUninitializedUi = pyqtSignal() """ This signal is emited by the :class:`QObjectComponent` class when the Component ui is uninitialized. ( pyqtSignal ) """ def __init__(self, parent=None, name=None, *args, **kwargs): """ .. Sphinx: Statements updated for auto-documentation purpose. :param parent: Object parent. ( QObject ) :param name: Component name. ( String ) :param \*args: Arguments. ( \* ) :param \*\*kwargs: Keywords arguments. ( \*\* ) """ LOGGER.debug("> Initializing '{0}()' class.".format(self.__class__.__name__)) super(QWidgetComponent, self).__init__(parent, *args, **kwargs) # --- Setting class attributes. --- self.__name = None self.name = name self.__activated = False self.__initializedUi = False self.__deactivatable = True #************************************************************************************************************** #*** Attributes properties. #************************************************************************************************************** @property def name(self): """ This method is the property for **self.__name** attribute. :return: self.__name. ( String ) """ return self.__name @name.setter #*** Sphinx: Decorator commented for auto-documentation purpose. @foundations.exceptions.handleExceptions(AssertionError) def name(self, value): """ This method is the setter method for **self.__name** attribute. :param value: Attribute value. ( String ) """ if value is not None: assert type(value) in (str, unicode), "'{0}' attribute: '{1}' type is not 'str' or 'unicode'!".format( "name", value) self.__name = value @name.deleter #*** Sphinx: Decorator commented for auto-documentation purpose. @foundations.exceptions.handleExceptions(foundations.exceptions.ProgrammingError) def name(self): """ This method is the deleter method for **self.__name** attribute. """ raise foundations.exceptions.ProgrammingError("{0} | '{1}' attribute is not deletable!".format( self.__class__.__name__, "name")) @property def activated(self): """ This method is the property for **self.__activated** attribute. :return: self.__activated. ( String ) """ return self.__activated @activated.setter #*** Sphinx: Decorator commented for auto-documentation purpose. @foundations.exceptions.handleExceptions(AssertionError) def activated(self, value): """ This method is the setter method for **self.__activated** attribute. :param value: Attribute value. ( String ) """ if value is not None: assert type(value) is bool, "'{0}' attribute: '{1}' type is not 'bool'!".format("activated", value) self.componentActivated.emit() if value else self.componentDeactivated.emit() self.__activated = value @activated.deleter #*** Sphinx: Decorator commented for auto-documentation purpose. @foundations.exceptions.handleExceptions(foundations.exceptions.ProgrammingError) def activated(self): """ This method is the deleter method for **self.__activated** attribute. """ raise foundations.exceptions.ProgrammingError("{0} | '{1}' attribute is not deletable!".format( self.__class__.__name__, "activated")) @property def initializedUi(self): """ This method is the property for **self.__initializedUi** attribute. :return: self.__initializedUi. ( Boolean ) """ return self.__initializedUi @initializedUi.setter #*** Sphinx: Decorator commented for auto-documentation purpose. @foundations.exceptions.handleExceptions(AssertionError) def initializedUi(self, value): """ This method is the setter method for **self.__initializedUi** attribute. :param value: Attribute value. ( Boolean ) """ if value is not None: assert type(value) is bool, "'{0}' attribute: '{1}' type is not 'bool'!".format("initializedUi", value) self.componentInitializedUi.emit() if value else self.componentUninitializedUi.emit() self.__initializedUi = value @initializedUi.deleter #*** Sphinx: Decorator commented for auto-documentation purpose. @foundations.exceptions.handleExceptions(foundations.exceptions.ProgrammingError) def initializedUi(self): """ This method is the deleter method for **self.__initializedUi** attribute. """ raise foundations.exceptions.ProgrammingError( "{0} | '{1}' attribute is not deletable!".format(self.__class__.__name__, "initializedUi")) @property def deactivatable(self): """ This method is the property for **self.__deactivatable** attribute. :return: self.__deactivatable. ( String ) """ return self.__deactivatable @deactivatable.setter #*** Sphinx: Decorator commented for auto-documentation purpose. @foundations.exceptions.handleExceptions(AssertionError) def deactivatable(self, value): """ This method is the setter method for **self.__deactivatable** attribute. :param value: Attribute value. ( String ) """ if value is not None: assert type(value) is bool, "'{0}' attribute: '{1}' type is not 'bool'!".format("deactivatable", value) self.__deactivatable = value @deactivatable.deleter #*** Sphinx: Decorator commented for auto-documentation purpose. @foundations.exceptions.handleExceptions(foundations.exceptions.ProgrammingError) def deactivatable(self): """ This method is the deleter method for **self.__deactivatable** attribute. """ raise foundations.exceptions.ProgrammingError("{0} | '{1}' attribute is not deletable!".format( self.__class__.__name__, "deactivatable")) #************************************************************************************************************** #*** Class methods. #************************************************************************************************************** #*** Sphinx: Decorator commented for auto-documentation purpose. @foundations.exceptions.handleExceptions(NotImplementedError) def activate(self): """ This method sets Component activation state. :return: Method success. ( Boolean ) """ raise NotImplementedError("{0} | '{1}' must be implemented by '{2}' subclasses!".format( self.__class__.__name__, self.activate.__name__, self.__class__.__name__)) #*** Sphinx: Decorator commented for auto-documentation purpose. @foundations.exceptions.handleExceptions(NotImplementedError) def deactivate(self): """ This method unsets Component activation state. :return: Method success. ( Boolean ) """ raise NotImplementedError("{0} | '{1}' must be implemented by '{2}' subclasses!".format( self.__class__.__name__, self.deactivate.__name__, self.__class__.__name__)) #*** Sphinx: Decorator commented for auto-documentation purpose. @foundations.exceptions.handleExceptions(NotImplementedError) def initializeUi(self): """ This method initializes the Component ui. """ raise NotImplementedError("{0} | '{1}' must be implemented by '{2}' subclasses!".format( self.__class__.__name__, self.deactivate.__name__, self.__class__.__name__)) #*** Sphinx: Decorator commented for auto-documentation purpose. @foundations.exceptions.handleExceptions(NotImplementedError) def addWidget(self): """ This method adds the Component Widget ui. """ raise NotImplementedError("{0} | '{1}' must be implemented by '{2}' subclasses!".format( self.__class__.__name__, self.deactivate.__name__, self.__class__.__name__)) #*** Sphinx: Decorator commented for auto-documentation purpose. @foundations.exceptions.handleExceptions(NotImplementedError) def removeWidget(self): """ This method removes the Component Widget ui. """ raise NotImplementedError("{0} | '{1}' must be implemented by '{2}' subclasses!".format( self.__class__.__name__, self.deactivate.__name__, self.__class__.__name__)) #*** Sphinx: Decorator commented for auto-documentation purpose. @foundations.exceptions.handleExceptions(NotImplementedError) def uninitializeUi(self): """ This method uninitializes the Component ui. """ raise NotImplementedError("{0} | '{1}' must be implemented by '{2}' subclasses!".format( self.__class__.__name__, self.deactivate.__name__, self.__class__.__name__)) return QWidgetComponent