def draw(self, context): if not self.subject: return c = context.cairo # Width and height, adjusted for line width... ox = float(self._handles[NW].pos.x) oy = float(self._handles[NW].pos.y) w = self.width + ox h = self.height + oy ear = CommentItem.EAR c.move_to(w - ear, oy) line_to = c.line_to line_to(w - ear, oy + ear) line_to(w, oy + ear) line_to(w - ear, oy) line_to(ox, oy) line_to(ox, h) line_to(w, h) line_to(w, oy + ear) c.stroke() if self.subject.body: off = self.OFFSET # Do not print empty string, since cairo-win32 can't handle it. text_multiline(c, off, off, self.subject.body, self.style.font, self.width - ear, self.height)
def draw(self, context): if not self.subject: return c = context.cairo # Width and height, adjusted for line width... ox = float(self._handles[NW].pos.x) oy = float(self._handles[NW].pos.y) w = self.width + ox h = self.height + oy ear = CommentItem.EAR c.move_to(w - ear, oy) line_to = c.line_to line_to(w - ear, oy + ear) line_to(w, oy + ear) line_to(w - ear, oy) line_to(ox, oy) line_to(ox, h) line_to(w, h) line_to(w, oy + ear) c.stroke() if self.subject.body: off = self.OFFSET # Do not print empty string, since cairo-win32 can't handle it. text_multiline( c, off, off, self.subject.body, self.style.font, self.width - ear, self.height, )
def draw(self, context): """Draw name and multiplicity of the line end. """ if not self.subject: return cr = context.cairo text_multiline(cr, self._name_bounds[0], self._name_bounds[1], self._name, self.font) text_multiline(cr, self._mult_bounds[0], self._mult_bounds[1], self._mult, self.font) cr.stroke() if context.hovered or context.focused or context.draw_all: cr.set_line_width(0.5) b = self._name_bounds cr.rectangle(b.x, b.y, b.width, b.height) cr.stroke() b = self._mult_bounds cr.rectangle(b.x, b.y, b.width, b.height) cr.stroke()