1

我在设置绘图区域的透明背景时遇到问题。

我想要这个的原因是我有一个主窗口,背景是

def draw_pixbuf(self,widget, event):
    path = 'test.jpg'
    pixbuf = gtk.gdk.pixbuf_new_from_file(path)
    scaled_buf = pixbuf.scale_simple(800,480,gtk.gdk.INTERP_BILINEAR)
    widget.window.draw_pixbuf(widget.style.bg_gc[gtk.STATE_NORMAL],    scaled_buf, 0, 0, 0,0)
self.window = gtk.Window()
self.window.connect("delete-event", gtk.main_quit)
self.window.set_decorated(False)
self.window.set_position(gtk.WIN_POS_CENTER_ALWAYS)
self.window.set_size_request(800,480)
hbbox = gtk.HBox()
hbbox.connect('expose-event', self.draw_pixbuf)

所以我的 HBox 有这个背景,里面有两个固定容器——一个按钮和一个绘图区域。

fix = gtk.Fixed()
image = gtk.Image()
image.set_from_file("close.png")
event_box = gtk.EventBox()
event_box.add(image)
event_box.set_size_request(30,30)
event_box.set_visible_window(False)
event_box.connect("button_press_event",gtk.mainquit)
fix.put(event_box,140,0)

self.darea = gtk.DrawingArea()

self.darea.set_size_request(450,300)  
self.darea.connect("expose-event", self.expose)
fix2 = gtk.Fixed()
fix2.put(self.darea,175,90)
hbbox.pack_start(fix2, True, False, 10)
hbbox.pack_end(fix, True, False, 10)
#hbbox.pack_start(self.darea,True,False,10)
self.window.add(hbbox)
self.window.show_all()

但是绘图区域用自己的默认背景(灰色)覆盖了 HBox 的背景。我可以通过 modify_bg 函数更改背景,但我希望它透明地在 HBox 的背景上写入 cairo 动画文本。

所以目标是拥有窗口的背景图像并将 caito 动画文本绘制到其上,而不是灰色矩形(绘图区域的背景)。

我是 GTK 的新手,所以也许我错过了一些重要的事情。

我希望你能帮忙。谢谢你。

4

1 回答 1

1

我也没有找到解决方案并切换到开罗(Pycairo)

在此处查看更多信息:GTK 可绘制区域透明背景色

于 2015-11-14T17:45:47.813 回答