Source code for umbra.components.factory.componentsManagerUi.nodes

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

"""
**nodes.py**

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

**Description:**
	This module defines the :class:`umbra.components.factory.componentsManagerUi.componentsManagerUi.ComponentsManagerUi`
	Component Interface class nodes.

**Others:**

"""

#**********************************************************************************************************************
#***	Future imports.
#**********************************************************************************************************************
from __future__ import unicode_literals

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

#**********************************************************************************************************************
#***	Internal imports.
#**********************************************************************************************************************
import foundations.exceptions
import foundations.verbose
import umbra.ui.nodes

#**********************************************************************************************************************
#***	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", "PathNode", "ComponentNode"]

LOGGER = foundations.verbose.installLogger()

#**********************************************************************************************************************
#***	Module classes and definitions.
#**********************************************************************************************************************
[docs]class PathNode(umbra.ui.nodes.GraphModelNode): """ This class factory defines :class:`umbra.components.factory.componentsManagerUi.componentsManagerUi.ComponentsManagerUi` Component Interface class Model path node. """ __family = "Path" """Node family. ( String )""" def __init__(self, name=None, parent=None, children=None, roles=None, nodeFlags=int(Qt.ItemIsSelectable | Qt.ItemIsEnabled), attributesFlags=int(Qt.ItemIsSelectable | Qt.ItemIsEnabled), **kwargs): """ .. Sphinx: Statements updated for auto-documentation purpose. :param name: Node name. ( String ) :param parent: Node parent. ( GraphModelNode ) :param children: Children. ( List ) :param roles: Roles. ( Dictionary ) :param nodeFlags: Node flags. ( Integer ) :param attributesFlags: Attributes flags. ( Integer ) :param \*\*kwargs: Keywords arguments. ( \*\* ) """ LOGGER.debug("> Initializing '{0}()' class.".format(self.__class__.__name__)) umbra.ui.nodes.GraphModelNode.__init__(self, name, parent, children, roles, nodeFlags, **kwargs) PathNode.__initializeNode(self, attributesFlags) #****************************************************************************************************************** #*** Class methods. #****************************************************************************************************************** def __initializeNode(self, attributesFlags=int(Qt.ItemIsSelectable | Qt.ItemIsEnabled)): """ This method initializes the node. :param attributesFlags: Attributes flags. ( Integer ) """ self["activated"] = umbra.ui.nodes.GraphModelAttribute(name="activated", flags=attributesFlags) self["category"] = umbra.ui.nodes.GraphModelAttribute(name="category", flags=attributesFlags) self["require"] = umbra.ui.nodes.GraphModelAttribute(name="require", flags=attributesFlags) self["version"] = umbra.ui.nodes.GraphModelAttribute(name="version", flags=attributesFlags)
[docs]class ComponentNode(umbra.ui.nodes.GraphModelNode): """ This class factory defines :class:`umbra.components.factory.componentsManagerUi.componentsManagerUi.ComponentsManagerUi` Component Interface class Model component node. """ __family = "Component" """Node family. ( String )""" def __init__(self, component, name=None, parent=None, children=None, roles=None, nodeFlags=int(Qt.ItemIsSelectable | Qt.ItemIsEnabled), attributesFlags=int(Qt.ItemIsSelectable | Qt.ItemIsEnabled), **kwargs): """ .. Sphinx: Statements updated for auto-documentation purpose. :param component: Component. ( Component / QWidgetComponent / QObjectComponent ) :param name: Node name. ( String ) :param parent: Node parent. ( GraphModelNode ) :param children: Children. ( List ) :param roles: Roles. ( Dictionary ) :param nodeFlags: Node flags. ( Integer ) :param attributesFlags: Attributes flags. ( Integer ) :param \*\*kwargs: Keywords arguments. ( \*\* ) """ LOGGER.debug("> Initializing '{0}()' class.".format(self.__class__.__name__)) umbra.ui.nodes.GraphModelNode.__init__(self, name, parent, children, roles, nodeFlags, **kwargs) # --- Setting class attributes. --- self.__component = component self.__toolTipText = """ <p><b>{0}</b></p> <p><b>Author: </b>{1}<br> <b>Category: </b>{2}<br> <b>Dependencies: </b>{3}<br> <b>Version: </b>{4}<br> <b>Description: </b>{5}<br></p> """ ComponentNode.__initializeNode(self, attributesFlags) #****************************************************************************************************************** #*** Attributes properties. #****************************************************************************************************************** @property def component(self): """ This method is the property for **self.__component** attribute. :return: self.__component. ( Component / QWidgetComponent / QObjectComponent ) """ return self.__component @component.setter @foundations.exceptions.handleExceptions(foundations.exceptions.ProgrammingError) def component(self, value): """ This method is the setter method for **self.__component** attribute. :param value: Attribute value. ( Component / QWidgetComponent / QObjectComponent ) """ raise foundations.exceptions.ProgrammingError( "{0} | '{1}' attribute is read only!".format(self.__class__.__name__, "component")) @component.deleter @foundations.exceptions.handleExceptions(foundations.exceptions.ProgrammingError)
[docs] def component(self): """ This method is the deleter method for **self.__component** attribute. """ raise foundations.exceptions.ProgrammingError( "{0} | '{1}' attribute is not deletable!".format(self.__class__.__name__, "component"))
@property def toolTipText(self): """ This method is the property for **self.__toolTipText** attribute. :return: self.__toolTipText. ( String ) """ return self.__toolTipText @toolTipText.setter @foundations.exceptions.handleExceptions(AssertionError) def toolTipText(self, value): """ This method is the setter method for **self.__toolTipText** attribute. :param value: Attribute value. ( String ) """ if value is not None: assert type(value) is unicode, "'{0}' attribute: '{1}' type is not 'unicode'!".format( "toolTipText", value) self.__toolTipText = value @toolTipText.deleter @foundations.exceptions.handleExceptions(foundations.exceptions.ProgrammingError)
[docs] def toolTipText(self): """ This method is the deleter method for **self.__toolTipText** attribute. """ raise foundations.exceptions.ProgrammingError( "{0} | '{1}' attribute is not deletable!".format(self.__class__.__name__, "toolTipText")) #****************************************************************************************************************** #*** Class methods. #******************************************************************************************************************
def __initializeNode(self, attributesFlags=int(Qt.ItemIsSelectable | Qt.ItemIsEnabled)): """ This method initializes the node. :param attributesFlags: Attributes flags. ( Integer ) """ attributes = dir(self.__component) for attribute in attributes: if attribute == "name": continue if not "_Profile__{0}".format(attribute) in attributes: continue value = getattr(self.__component, attribute) value = ", ".join(value) if type(value) in (tuple, list) else value roles = {Qt.DisplayRole : value, Qt.EditRole : value} self[attribute] = umbra.ui.nodes.GraphModelAttribute(attribute, value, roles, attributesFlags) self.updateToolTip()
[docs] def updateToolTip(self): """ This method updates the node tooltip. :return: Method success. ( Boolean ) """ self.roles[Qt.ToolTipRole] = self.__toolTipText.format(self.component.name, self.component.author, self.component.category, ", ".join(self.component.require), self.component.version, self.component.description) return True