예제 #1
0
 def process_draw(self, gc: wx.GraphicsContext):
     gc.PushState()
     gc.Translate(self.x, self.y)
     if self.series is not None and len(self.series) > 1:
         gc.SetPen(self.pen)
         gc.StrokeLines(self.series)
     gc.PopState()
예제 #2
0
 def process_draw(self, gc: wx.GraphicsContext):
     gc.PushState()
     if self.background_brush is not None:
         gc.SetBrush(self.background_brush)
         gc.DrawRectangle(self.left, self.right, self.width, self.height)
     gc.DrawBitmap(self.bitmap, self.left, self.top, self.width,
                   self.height)
     gc.PopState()
예제 #3
0
 def render_cutcode(self,
                    cutcode: CutCode,
                    gc: wx.GraphicsContext,
                    x: int = 0,
                    y: int = 0):
     last_point = None
     p = gc.CreatePath()
     for cut in cutcode:
         start = cut.start()
         end = cut.end()
         if last_point != start:
             p.MoveToPoint(start[0] + x, start[1] + y)
         if isinstance(cut, LineCut):
             p.AddLineToPoint(end[0] + x, end[1] + y)
         elif isinstance(cut, QuadCut):
             p.AddQuadCurveToPoint(cut.control[0] + x, cut.control[1] + y,
                                   end[0] + x, end[1] + y)
         elif isinstance(cut, CubicCut):
             p.AddCurveToPoint(
                 cut.control1[0] + x,
                 cut.control1[1] + y,
                 cut.control2[0] + x,
                 cut.control2[1] + y,
                 end[0] + x,
                 end[1] + y,
             )
         elif isinstance(cut, RasterCut):
             image = cut.image
             try:
                 matrix = Matrix(image.transform)
             except AttributeError:
                 matrix = Matrix()
             step = cut.settings.raster_step
             matrix.post_scale(step, step)
             matrix.post_translate(x, y)
             gc.PushState()
             gc.ConcatTransform(
                 wx.GraphicsContext.CreateMatrix(gc, ZMatrix(matrix)))
             cache = None
             cache_id = -1
             try:
                 cache = cut.cache
                 cache_id = cut.cache_id
             except AttributeError:
                 pass
             if cache_id != id(image.image):
                 cache = None
             if cache is None:
                 # max_allowed = 2048
                 cut.c_width, cut.c_height = image.image.size
                 cut.cache = self.make_thumbnail(image.image)
                 cut.cache_id = id(image.image)
             gc.DrawBitmap(cut.cache, 0, 0, cut.c_width, cut.c_height)
             gc.PopState()
         last_point = end
     gc.StrokePath(p)
     del p
예제 #4
0
 def process_draw(self, gc: wx.GraphicsContext):
     gc.PushState()
     gc.DrawBitmap(self.bitmap, self.left, self.top, self.width,
                   self.height)
     gc.PopState()
예제 #5
0
    def draw_cutcode(self,
                     cutcode: CutCode,
                     gc: wx.GraphicsContext,
                     x: int = 0,
                     y: int = 0):
        """
        Draw cutcode object into wxPython graphics code.

        This code accepts x,y offset values. The cutcode laser offset can be set with a
        command with the rest of the cutcode remaining the same. So drawing the cutcode
        requires knowing what, if any offset is currently being applied.

        @param cutcode: flat cutcode object to draw.
        @param gc: wx.graphics context
        @param x: offset in x direction
        @param y: offset in y direction
        @return:
        """
        p = None
        last_point = None
        color = None
        for cut in cutcode:
            c = cut.line_color
            if c is not color:
                color = c
                last_point = None
                if p is not None:
                    gc.StrokePath(p)
                    del p
                p = gc.CreatePath()
                self.set_pen(gc, c, width=7.0, alpha=127)
            start = cut.start
            end = cut.end
            if p is None:
                p = gc.CreatePath()
            if last_point != start:
                p.MoveToPoint(start[0] + x, start[1] + y)
            if isinstance(cut, LineCut):
                # Standard line cut. Applies to path object.
                p.AddLineToPoint(end[0] + x, end[1] + y)
            elif isinstance(cut, QuadCut):
                # Standard quadratic bezier cut
                p.AddQuadCurveToPoint(cut.c()[0] + x,
                                      cut.c()[1] + y, end[0] + x, end[1] + y)
            elif isinstance(cut, CubicCut):
                # Standard cubic bezier cut
                p.AddCurveToPoint(
                    cut.c1()[0] + x,
                    cut.c1()[1] + y,
                    cut.c2()[0] + x,
                    cut.c2()[1] + y,
                    end[0] + x,
                    end[1] + y,
                )
            elif isinstance(cut, RasterCut):
                # Rastercut object.
                image = cut.image
                gc.PushState()
                matrix = Matrix.scale(cut.step_x, cut.step_y)
                matrix.post_translate(cut.offset_x + x,
                                      cut.offset_y + y)  # Adjust image xy
                gc.ConcatTransform(
                    wx.GraphicsContext.CreateMatrix(gc, ZMatrix(matrix)))
                try:
                    cache = cut.cache
                    cache_id = cut.cache_id
                except AttributeError:
                    cache = None
                    cache_id = -1
                if cache_id != id(image):
                    # Cached image is invalid.
                    cache = None
                if cache is None:
                    # No valid cache. Generate.
                    cut.c_width, cut.c_height = image.size
                    try:
                        cut.cache = self.make_thumbnail(image, maximum=5000)
                    except (MemoryError, RuntimeError):
                        cut.cache = None
                    cut.cache_id = id(image)
                if cut.cache is not None:
                    # Cache exists and is valid.
                    gc.DrawBitmap(cut.cache, 0, 0, cut.c_width, cut.c_height)
                else:
                    # Image was too large to cache, draw a red rectangle instead.
                    gc.SetBrush(wx.RED_BRUSH)
                    gc.DrawRectangle(0, 0, cut.c_width, cut.c_height)
                    gc.DrawBitmap(icons8_image_50.GetBitmap(), 0, 0,
                                  cut.c_width, cut.c_height)
                gc.PopState()
            elif isinstance(cut, RawCut):
                pass
            elif isinstance(cut, PlotCut):
                p.MoveToPoint(start[0] + x, start[1] + y)
                for px, py, pon in cut.plot:
                    if pon == 0:
                        p.MoveToPoint(px + x, py + y)
                    else:
                        p.AddLineToPoint(px + x, py + y)
            elif isinstance(cut, DwellCut):
                pass
            elif isinstance(cut, WaitCut):
                pass
            elif isinstance(cut, InputCut):
                pass
            elif isinstance(cut, OutputCut):
                pass
            last_point = end
        if p is not None:
            gc.StrokePath(p)
            del p