Is it possible in gtk3 to create a menu that is transparent? The underling window would use an image as it's background. I can use a color for the window background but not a image.

link|improve this question

38% accept rate
feedback

1 Answer

I attempted to do what you said using an example from the gdk2 reference by adding a background image first and then porting it to gtk3. I'm no expert at gtk at all, but I did make it somehow compile:

http://pastebin.com/0XwUW5k3 (note that there has to be a "background.png" in the same folder)

The transparent dark rectangle holding the widgets is most likely the box; I tried settings its background color to full transparency as well, but it didn't work, and you'd probably have to do the composing/drawing of it yourself if you wanted it to be completely transparent, but that's not something I'd suggest because it seems too complex..

Also, you might want to create a background image with an already fitting resolution for the window, then you could skip the scaling part. The scale function originally comes from this mailling-list thread

link|improve this answer
I should have been more clear, I'm trying to use the CSS capabilities in gtk3 to do this. – mike Jan 19 at 20:08
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.