美文网首页
Gtk 畸形窗体和移动窗体的一些办法

Gtk 畸形窗体和移动窗体的一些办法

作者: 霡霂976447044 | 来源:发表于2019-12-23 17:54 被阅读0次

畸形窗体可以通过设置窗体透明,再用cairo绘制图形。通过配置窗体的类型为POPUP 可以减少窗口管理器的干扰
注册motion-notify-event事件,判断state是否是按下了鼠标左键,如果按下就让窗体移动

demo

#!/usr/bin/python3

import sys
import cairo
import gi

gi.require_version('Gtk', '3.0')
from gi.repository import Gtk, Gdk

SIZE = 30


class AppWindow(Gtk.ApplicationWindow):

    def __init__(self, *args, **kwargs):
        super().__init__(*args, **kwargs)
        self.set_size_request(450, 550)
        screen = Gdk.Screen.get_default()
        visual = Gdk.Screen.get_rgba_visual(screen)
        print(Gdk.Screen.is_composited(screen))
        self.set_visual(visual)
        self.set_app_paintable(True)

        eventbox = Gtk.EventBox.new()
        eventbox.set_above_child(False)

        drawingarea = Gtk.DrawingArea()
        eventbox.connect('motion-notify-event', self.on_motion)
        eventbox.connect('button-press-event', self.on_press)
        eventbox.set_events(Gdk.EventMask.POINTER_MOTION_MASK)
        eventbox.add(drawingarea)

        self.add(eventbox)
        drawingarea.connect('draw', self.draw)

    def on_press(self, *args):
        import datetime
        print(str(args[1].type))

        print('args', *args, len(args))
        print('press', str(datetime.datetime.now()))

    def on_motion(self, *args):
        import datetime
        print(args)
        print(str(args[1].type))

        # print(Gdk.EventMotion.state)
        print(str(args[1].state))
        if args[1].state == Gdk.ModifierType.BUTTON1_MASK:
            print("你按下鼠标左键, dir(args[1])", dir(args[1]))
            self.move(args[1].x_root, args[1].y_root)
            print('x', args[1].x)

        print('args', *args, len(args))
        print('motion', str(datetime.datetime.now()))

    def triangle(self, ctx):
        ctx.move_to(SIZE, 0)
        ctx.rel_line_to(SIZE, 2 * SIZE)
        ctx.rel_line_to(-2 * SIZE, 0)
        ctx.close_path()

    def square(self, ctx):
        ctx.move_to(0, 0)
        ctx.rel_line_to(2 * SIZE, 0)
        ctx.rel_line_to(0, 2 * SIZE)
        ctx.rel_line_to(-2 * SIZE, 0)
        ctx.close_path()

    def bowtie(self, ctx):
        ctx.move_to(0, 0)
        ctx.rel_line_to(2 * SIZE, 2 * SIZE)
        ctx.rel_line_to(-2 * SIZE, 0)
        ctx.rel_line_to(2 * SIZE, -2 * SIZE)
        ctx.close_path()

    def inf(self, ctx):
        ctx.move_to(0, SIZE)
        ctx.rel_curve_to(0, SIZE, SIZE, SIZE, 2 * SIZE, 0)
        ctx.rel_curve_to(SIZE, -SIZE, 2 * SIZE, -SIZE, 2 * SIZE, 0)
        ctx.rel_curve_to(0, SIZE, -SIZE, SIZE, -2 * SIZE, 0)
        ctx.rel_curve_to(-SIZE, -SIZE, -2 * SIZE, -SIZE, -2 * SIZE, 0)
        ctx.close_path()

    def draw_shapes(self, ctx, x, y, fill):
        ctx.save()
        ctx.new_path()
        ctx.translate(x + SIZE, y + SIZE)
        self.bowtie(ctx)
        if fill:
            ctx.fill()
        else:
            ctx.stroke()
        ctx.new_path()
        ctx.translate(3 * SIZE, 0)
        self.square(ctx)
        if fill:
            ctx.fill()
        else:
            ctx.stroke()
        ctx.new_path()
        ctx.translate(3 * SIZE, 0)
        self.triangle(ctx)
        if fill:
            ctx.fill()
        else:
            ctx.stroke()
        ctx.new_path()
        ctx.translate(3 * SIZE, 0)
        self.inf(ctx)
        if fill:
            ctx.fill()
        else:
            ctx.stroke()
        ctx.restore()

    def fill_shapes(self, ctx, x, y):
        self.draw_shapes(ctx, x, y, True)

    def stroke_shapes(self, ctx, x, y):
        self.draw_shapes(ctx, x, y, False)

    def draw(self, da, ctx):
        ctx.set_source_rgb(0, 0, 0)
        ctx.set_line_width(SIZE / 4)
        ctx.set_tolerance(0.1)
        ctx.set_line_join(cairo.LINE_JOIN_ROUND)
        ctx.set_dash([SIZE / 4.0, SIZE / 4.0], 0)
        self.stroke_shapes(ctx, 0, 0)
        ctx.set_dash([], 0)
        self.stroke_shapes(ctx, 0, 3 * SIZE)
        ctx.set_line_join(cairo.LINE_JOIN_BEVEL)
        self.stroke_shapes(ctx, 0, 6 * SIZE)
        ctx.set_line_join(cairo.LINE_JOIN_MITER)
        self.stroke_shapes(ctx, 0, 9 * SIZE)
        self.fill_shapes(ctx, 0, 12 * SIZE)
        ctx.set_line_join(cairo.LINE_JOIN_BEVEL)
        self.fill_shapes(ctx, 0, 15 * SIZE)
        ctx.set_source_rgb(1, 0, 0)
        self.stroke_shapes(ctx, 0, 15 * SIZE)


class Application(Gtk.Application):

    def __init__(self, *args, **kwargs):
        super().__init__(*args, application_id="org.example.myapp",
                         **kwargs)
        self.window = None

    def do_activate(self):
        if not self.window:
            self.window = AppWindow(application=self,
                                    title="Drawing Areas", type=Gtk.WindowType.POPUP)
        self.window.show_all()
        self.window.present()


if __name__ == "__main__":
    app = Application()
    app.run(sys.argv)

相关文章

  • Gtk 畸形窗体和移动窗体的一些办法

    畸形窗体可以通过设置窗体透明,再用cairo绘制图形。通过配置窗体的类型为POPUP 可以减少窗口管理器的干扰注册...

  • Web测试中的界面测试用例设计(3)

    三:界面测试用例的设计方法 (1)窗体 a、窗体大小,大小要合适,控件布局合理; b、移动窗体。快速或慢速移动窗体...

  • 创建非矩形 WinForm 窗体

    创建非矩形窗体的过程有两个要素:创建成形的窗体,并编写某些编程逻辑的代码以允许移动和关闭窗体。 第二个步骤是必要的...

  • Gtk指针穿透窗体实现

    查看了一下Peek源码的实现,终于实现了指针穿透的效果主要使用Gdk.Window.input_shape_com...

  • 子窗体、主窗体传参

    在主窗体里面操纵子窗体的控件 子窗体 主窗体 主窗体点击事件操作 直接在主窗体里面操纵子窗体的控件,进行一系列操作...

  • C#窗体常用方法

    1.Show和ShowDialog方法: Show:显示无模式窗体 ShowDialog:显示模式对话窗体 窗体名...

  • c# 结业考机试宝典

    窗体属性 设置窗体名称:选中窗体文件>右键>重命名 设置窗体标题:title = 标题内容 设置为MDI父窗体:I...

  • C#窗体 2019-02-14

    一、窗体常用属性 窗体标题:Test 窗体名:Name 窗体图标:Icon 北京颜色:BackgroundC...

  • 2017-11-6学习总结

    星期一 多云 今天学习了模式窗体和非模式窗体。 知识点多,同样是窗体,比原来C++的时候的MFC窗体多了很多东...

  • C# 弹出窗口,TextBox控件交互,不同窗体参数传递

    主窗体是Form1,现在欲创建一个子窗体,并将子窗体上用户输入的数据传给主窗体。 创建新窗体 将该窗体命名为Par...

网友评论

      本文标题:Gtk 畸形窗体和移动窗体的一些办法

      本文链接:https://www.haomeiwen.com/subject/tvqtoctx.html