示例#1
0
 def update_shapes(self, event=None):
     self.shape = Box(Box(
         Text(
             text=lambda: UML.model.stereotypes_str(
                 self.subject,
                 ("device", )
                 if isinstance(self.subject, UML.Device) else (),
             ),
             style={
                 "min-width": 0,
                 "min-height": 0
             },
         ),
         EditableText(
             text=lambda: self.subject.name or "",
             style={"font-weight": FontWeight.BOLD},
         ),
         style={"padding": (4, 4, 4, 4)},
     ),
                      *(self.show_stereotypes_attrs
                        and stereotype_compartments(self.subject) or []),
                      style={
                          "min-width": 100,
                          "min-height": 50
                      },
                      draw=draw_node)
示例#2
0
 def update_shapes(self, event=None):
     self.shape = Box(
         Box(
             Text(
                 text=lambda: UML.model.stereotypes_str(self.subject),
                 style={
                     "min-width": 0,
                     "min-height": 0
                 },
             ),
             EditableText(
                 text=lambda: self.subject.name or "",
                 style={"font-weight": FontWeight.BOLD},
             ),
             style={
                 "padding": (4, 34, 4, 4),
                 "min-height": 44
             },
             draw=draw_artifact_icon,
         ),
         *(self.show_stereotypes and stereotype_compartments(self.subject)
           or []),
         style={
             "min-width": 100,
             "min-height": 50,
             "vertical-align": VerticalAlign.TOP,
         },
         draw=draw_border)
示例#3
0
 def update_shapes(self, event=None):
     if self._folded == Folded.NONE:
         self.shape = Box(
             Box(
                 Text(
                     text=lambda: UML.model.stereotypes_str(
                         self.subject, ("interface", )),
                     style={
                         "min-width": 0,
                         "min-height": 0
                     },
                 ),
                 EditableText(
                     text=lambda: self.subject.name or "",
                     style={"font-weight": FontWeight.BOLD},
                 ),
                 Text(
                     text=lambda: from_package_str(self),
                     style={
                         "font": "sans 8",
                         "min-width": 0,
                         "min-height": 0
                     },
                 ),
                 style={"padding": (12, 4, 12, 4)},
             ),
             *(self.show_attributes and self.subject
               and [attributes_compartment(self.subject)] or []),
             *(self.show_operations and self.subject
               and [operations_compartment(self.subject)] or []),
             *(self.show_stereotypes_attrs
               and stereotype_compartments(self.subject) or []),
             style={
                 "min-width": 100,
                 "min-height": 50,
                 "vertical-align": VerticalAlign.TOP,
             },
             draw=draw_border,
         )
     else:
         self.shape = IconBox(
             Box(
                 style={
                     "min-width": self.min_width,
                     "min-height": self.min_height
                 },
                 draw=self.draw_interface_ball_and_socket,
             ),
             Text(
                 text=lambda: UML.model.stereotypes_str(self.subject),
                 style={
                     "min-width": 0,
                     "min-height": 0
                 },
             ),
             EditableText(
                 text=lambda: self.subject.name or "",
                 style={"font-weight": FontWeight.BOLD},
             ),
         )
示例#4
0
    def update_shapes(self, event=None):
        def additional_stereotypes():
            if isinstance(self.subject, UML.Stereotype):
                return ["stereotype"]
            elif UML.model.is_metaclass(self.subject):
                return ["metaclass"]
            else:
                return ()

        self.shape = Box(
            Box(
                Text(
                    text=lambda: UML.model.stereotypes_str(
                        self.subject, additional_stereotypes()
                    ),
                    style={"min-width": 0, "min-height": 0},
                ),
                EditableText(
                    text=lambda: self.subject.name or "",
                    style={
                        "font-weight": FontWeight.BOLD,
                        "font-style": FontStyle.ITALIC
                        if self.subject and self.subject.isAbstract
                        else FontStyle.NORMAL,
                    },
                ),
                Text(
                    text=lambda: from_package_str(self),
                    style={"font": "sans 8", "min-width": 0, "min-height": 0},
                ),
                style={"padding": (12, 4, 12, 4)},
            ),
            *(
                self.show_attributes
                and self.subject
                and [attributes_compartment(self.subject)]
                or []
            ),
            *(
                self.show_operations
                and self.subject
                and [operations_compartment(self.subject)]
                or []
            ),
            *(self.show_stereotypes and stereotype_compartments(self.subject) or []),
            style={
                "min-width": 100,
                "min-height": 50,
                "vertical-align": VerticalAlign.TOP,
            },
            draw=draw_border,
        )
示例#5
0
 def class_shape(self):
     return Box(
         Box(
             Text(
                 text=lambda: UML.model.stereotypes_str(
                     self.subject, ("interface",)
                 ),
                 style={"min-width": 0, "min-height": 0},
             ),
             EditableText(
                 text=lambda: self.subject.name or "",
                 style={"font-weight": FontWeight.BOLD},
             ),
             Text(
                 text=lambda: from_package_str(self),
                 style={"font": "sans 8", "min-width": 0, "min-height": 0},
             ),
             style={"padding": (12, 4, 12, 4)},
         ),
         *(
             self.show_attributes
             and self.subject
             and [attributes_compartment(self.subject)]
             or []
         ),
         *(
             self.show_operations
             and self.subject
             and [operations_compartment(self.subject)]
             or []
         ),
         *(self.show_stereotypes and stereotype_compartments(self.subject) or []),
         style={
             "min-width": 100,
             "min-height": 50,
             "vertical-align": VerticalAlign.TOP,
         },
         draw=draw_border,
     )