Graphics/ModuleItem.py

changeset 0
de9c2efb9d02
child 12
1d8dd9706f46
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/Graphics/ModuleItem.py	Mon Dec 28 16:03:33 2009 +0000
@@ -0,0 +1,162 @@
+# -*- coding: utf-8 -*-
+
+# Copyright (c) 2007 - 2009 Detlev Offenbach <detlev@die-offenbachs.de>
+#
+
+"""
+Module implementing a module item.
+"""
+
+from PyQt4.QtCore import *
+from PyQt4.QtGui import *
+
+from UMLItem import UMLItem
+
+class ModuleModel(object):
+    """
+    Class implementing the module model.
+    """
+    def __init__(self, name, classlist=[]):
+        """
+        Constructor
+        
+        @param name the module name (string)
+        @param classlist list of class names (list of strings)
+        """
+        self.name = name
+        self.classlist = classlist
+        
+    def addClass(self, classname):
+        """
+        Method to add a class to the module model.
+        
+        @param classname class name to be added (string)
+        """
+        self.classlist.append(classname)
+        
+    def getClasses(self):
+        """
+        Method to retrieve the classes of the module.
+        
+        @return list of class names (list of strings)
+        """
+        return self.classlist[:]
+        
+    def getName(self):
+        """
+        Method to retrieve the module name.
+        
+        @return module name (string)
+        """
+        return self.name
+        
+class ModuleItem(UMLItem):
+    """
+    Class implementing a module item.
+    """
+    def __init__(self, model = None, x = 0, y = 0, rounded = False,
+                 parent = None, scene = None):
+        """
+        Constructor
+        
+        @param model module model containing the module data (ModuleModel)
+        @param x x-coordinate (integer)
+        @param y y-coordinate (integer)
+        @keyparam rounded flag indicating a rounded corner (boolean)
+        @keyparam parent reference to the parent object (QGraphicsItem)
+        @keyparam scene reference to the scene object (QGraphicsScene)
+        """
+        UMLItem.__init__(self, x, y, rounded, parent)
+        self.model = model
+        
+        scene.addItem(self)
+        
+        if self.model:
+            self.__createTexts()
+            self.__calculateSize()
+        
+    def __createTexts(self):
+        """
+        Private method to create the text items of the module item.
+        """
+        if self.model is None:
+            return
+        
+        boldFont = QFont(self.font)
+        boldFont.setBold(True)
+        
+        classes = self.model.getClasses()
+        
+        x = self.margin + self.rect().x()
+        y = self.margin + self.rect().y()
+        self.header = QGraphicsSimpleTextItem(self)
+        self.header.setFont(boldFont)
+        self.header.setText(self.model.getName())
+        self.header.setPos(x, y)
+        y += self.header.boundingRect().height() + self.margin
+        if classes:
+            txt = "\n".join(classes)
+        else:
+            txt = " "
+        self.classes = QGraphicsSimpleTextItem(self)
+        self.classes.setFont(self.font)
+        self.classes.setText(txt)
+        self.classes.setPos(x, y)
+        
+    def __calculateSize(self):
+        """
+        Private method to calculate the size of the module item.
+        """
+        if self.model is None:
+            return
+        
+        width = self.header.boundingRect().width()
+        height = self.header.boundingRect().height()
+        if self.classes:
+            width = max(width, self.classes.boundingRect().width())
+            height = height + self.classes.boundingRect().height()
+        self.setSize(width + 2 * self.margin, height + 2 * self.margin)
+    
+    def setModel(self, model):
+        """
+        Method to set the module model.
+        
+        @param model module model containing the module data (ModuleModel)
+        """
+        self.scene().removeItem(self.header)
+        self.header = None
+        if self.classes:
+            self.scene().removeItem(self.classes)
+            self.meths = None
+        self.model = model
+        self.__createTexts()
+        self.__calculateSize()
+        
+    def paint(self, painter, option, widget = None):
+        """
+        Public method to paint the item in local coordinates.
+        
+        @param painter reference to the painter object (QPainter)
+        @param option style options (QStyleOptionGraphicsItem)
+        @param widget optional reference to the widget painted on (QWidget)
+        """
+        pen = self.pen()
+        if (option.state & QStyle.State_Selected) == QStyle.State(QStyle.State_Selected):
+            pen.setWidth(2)
+        else:
+            pen.setWidth(1)
+        
+        painter.setPen(pen)
+        painter.setBrush(self.brush())
+        painter.setFont(self.font)
+        
+        offsetX = self.rect().x()
+        offsetY = self.rect().y()
+        w = self.rect().width()
+        h = self.rect().height()
+        
+        painter.drawRect(offsetX, offsetY, w, h)
+        y = self.margin + self.header.boundingRect().height()
+        painter.drawLine(offsetX, offsetY + y, offsetX + w - 1, offsetY + y)
+        
+        self.adjustAssociations()

eric ide

mercurial