コード例 #1
0
ファイル: output.py プロジェクト: stonewell/qtile
    def _render_surface(self, surface: Surface, sx: int, sy: int,
                        rdata: Tuple) -> None:
        texture = surface.get_texture()
        if texture is None:
            return

        now, window, wx, wy, opacity, scale = rdata
        x = (wx + sx) * scale
        y = (wy + sy) * scale
        width = surface.current.width * scale
        height = surface.current.height * scale
        transform_matrix = self.transform_matrix

        if window.borderwidth:
            bw = int(window.borderwidth * scale)

            if surface == window.surface.surface:
                outer_w = width + bw * 2
                outer_h = height + bw * 2
                num = len(window.bordercolor)
                bws = [bw // num] * num
                for i in range(bw % num):
                    bws[i] += 1
                coord = 0
                for i, bc in enumerate(window.bordercolor):
                    border = Box(
                        int(x + coord),
                        int(y + coord),
                        int(outer_w - coord * 2),
                        int(bws[i]),
                    )
                    self.renderer.render_rect(border, bc,
                                              transform_matrix)  # Top border
                    border.y = int(y + outer_h - bws[i] - coord)
                    self.renderer.render_rect(
                        border, bc, transform_matrix)  # Bottom border
                    border.y = int(y + coord)
                    border.width = int(bws[i])
                    border.height = int(outer_h - coord * 2)
                    self.renderer.render_rect(border, bc,
                                              transform_matrix)  # Left border
                    border.x = int(x + outer_w - bws[i] - coord)
                    self.renderer.render_rect(border, bc,
                                              transform_matrix)  # Right border
                    coord += bws[i]

            x += bw
            y += bw

        box = Box(
            int(x),
            int(y),
            int(width),
            int(height),
        )

        inverse = wlrOutput.transform_invert(surface.current.transform)
        matrix = Matrix.project_box(box, inverse, 0, transform_matrix)
        self.renderer.render_texture_with_matrix(texture, matrix, opacity)
        surface.send_frame_done(now)
コード例 #2
0
ファイル: server.py プロジェクト: SimpleAccess/pywlroots
    def _render_surface(
        self, surface: Surface, sx: int, sy: int, data: Tuple[Output, View, Timespec]
    ) -> None:
        output, view, now = data

        texture = surface.get_texture()
        if texture is None:
            return

        ox, oy = self._output_layout.output_coords(output)
        ox += view.x + sx
        oy += view.y + sy
        box = Box(
            int(ox * output.scale),
            int(oy * output.scale),
            int(surface.current.width * output.scale),
            int(surface.current.height * output.scale),
        )

        transform = surface.current.transform
        inverse = Output.transform_invert(transform)

        matrix = Matrix.project_box(box, inverse, 0, output.transform_matrix)

        self._renderer.render_texture_with_matrix(texture, matrix, 1)
        surface.send_frame_done(now)
コード例 #3
0
    def _render_surface(self, surface: Surface, sx: int, sy: int,
                        rdata: Tuple) -> None:
        texture = surface.get_texture()
        if texture is None:
            return

        now, window, wx, wy, opacity, scale = rdata
        x = (wx + sx) * scale
        y = (wy + sy) * scale
        width = surface.current.width * scale
        height = surface.current.height * scale
        transform_matrix = self.transform_matrix

        if window.borderwidth:
            bw = window.borderwidth * scale

            if surface == window.surface.surface:
                bc = window.bordercolor
                border = Box(
                    int(x),
                    int(y),
                    int(width + bw * 2),
                    int(bw),
                )
                x += bw
                y += bw
                self.renderer.render_rect(border, bc,
                                          transform_matrix)  # Top border
                border.y = int(y + height)
                self.renderer.render_rect(border, bc,
                                          transform_matrix)  # Bottom border
                border.y = int(y - bw)
                border.width = int(bw)
                border.height = int(height + bw * 2)
                self.renderer.render_rect(border, bc,
                                          transform_matrix)  # Left border
                border.x = int(x + width)
                self.renderer.render_rect(border, bc,
                                          transform_matrix)  # Right border
            else:
                x += bw
                y += bw

        box = Box(
            int(x),
            int(y),
            int(width),
            int(height),
        )

        inverse = wlrOutput.transform_invert(surface.current.transform)
        matrix = Matrix.project_box(box, inverse, 0, transform_matrix)
        self.renderer.render_texture_with_matrix(texture, matrix, opacity)
        surface.send_frame_done(now)
コード例 #4
0
ファイル: output.py プロジェクト: m-col/qtile
 def _render_dnd_icon(
     self, dnd: Dnd, now: Timespec, scale: float, transform_matrix: Matrix
 ) -> None:
     """Render the drag-n-drop icon if there is one."""
     icon = dnd.wlr_drag.icon
     if icon.mapped:
         texture = icon.surface.get_texture()
         if texture:
             box = Box(
                 int((dnd.x - self.x) * scale),
                 int((dnd.y - self.y) * scale),
                 int(icon.surface.current.width * scale),
                 int(icon.surface.current.height * scale),
             )
             inverse = wlrOutput.transform_invert(icon.surface.current.transform)
             matrix = Matrix.project_box(box, inverse, 0, transform_matrix)
             self.renderer.render_texture_with_matrix(texture, matrix, 1)
             icon.surface.send_frame_done(now)