Thanks Conny and Kimmo,<br><br>here are my progresses:<br><br>I&#39;m able to draw to the GtkWindow using Cairo only if I do it in a callback attached to the expose event of the window itself, but I&#39;m still getting no transparency!<br>
I&#39;m sure this is the problem with the window manager that Kimmo pointed out, but I don&#39;t know how to set the override-redirect flag apart from passing the correct value inside a GdkWindowAttr struct when manually creating a GdkWindow with gdk_window_new(), but I&#39;m not doing this manually, so I&#39;m lost here!<br>
<br>Luca Donaggio<br><br><div class="gmail_quote">2009/10/30 Kimmo Hämäläinen <span dir="ltr">&lt;<a href="mailto:kimmo.hamalainen@nokia.com">kimmo.hamalainen@nokia.com</a>&gt;</span><br><blockquote class="gmail_quote" style="border-left: 1px solid rgb(204, 204, 204); margin: 0pt 0pt 0pt 0.8ex; padding-left: 1ex;">
<div class="im">On Thu, 2009-10-29 at 17:29 +0100, ext Luca Donaggio wrote:<br>
&gt; I&#39;m trying to create a transparent, non-decorated popup GtkWindow on<br>
&gt; top af my app HildonWindow and draw something on its underlying<br>
&gt; GdkWindow object using cairo.<br>
&gt; All I was able to obtain so far is a black (or whatever is the<br>
&gt; background colour of the selected theme) rectangle -ie it&#39;s not<br>
&gt; transparent and everything I paint in its GdkWindow with Cairo is not<br>
&gt; showed at all.<br>
<br>
</div>You may hit (at least) this hard-coded limitation:<br>
<a href="http://maemo.gitorious.org/fremantle-hildon-%0Adesktop/libmatchbox2/blobs/master/matchbox/core/mb-wm-client.c#line173" target="_blank">http://maemo.gitorious.org/fremantle-hildon-<br>
desktop/libmatchbox2/blobs/master/matchbox/core/mb-wm-client.c#line173</a><br>
<br>
Currently alpha in dialogs and application windows is ignored because it<br>
allows for optimisations in the compositor. But if you set the override-<br>
redirect flag for the window, that should go around that (because the<br>
type of your window would be MBWMClientTypeOverride).<br>
<font color="#888888"><br>
-Kimmo<br>
</font><div><div></div><div class="h5"><br>
&gt; Here is the code I&#39;m using:<br>
&gt;<br>
&gt; void create_image_details(GtkWidget *callerobj,app_data_t *myapp) {<br>
&gt;     PangoLayout *textbuff;<br>
&gt;     cairo_t *cr;<br>
&gt;     gint x0, y0, r, txtwidth, txtheight;<br>
&gt;<br>
&gt;     /* For the widget itself let&#39;s use a GtkWindow */<br>
&gt;     if ((myapp-&gt;imgparamwin != NULL) &amp; GTK_IS_WINDOW(myapp-<br>
&gt; &gt;imgparamwin)) gtk_widget_destroy(myapp-&gt;imgparamwin);<br>
&gt;     myapp-&gt;imgparamwin = gtk_window_new(GTK_WINDOW_POPUP);<br>
&gt;     gtk_window_set_decorated(GTK_WINDOW (myapp-&gt;imgparamwin),FALSE);<br>
&gt;     gtk_window_set_opacity(GTK_WINDOW (myapp-&gt;imgparamwin),0);<br>
&gt;     gtk_widget_set_app_paintable(myapp-&gt;imgparamwin,TRUE);<br>
&gt;     gtk_widget_realize(myapp-&gt;imgparamwin);<br>
&gt;     /* gdk_window_set_back_pixmap(myapp-&gt;imgparamwin-<br>
&gt; &gt;window,NULL,FALSE); */<br>
&gt;     /* Get the Cairo context */<br>
&gt;     cr = gdk_cairo_create(GDK_DRAWABLE (myapp-&gt;imgparamwin-&gt;window));<br>
&gt;     textbuff = pango_cairo_create_layout(cr);<br>
&gt;     pango_layout_set_markup(textbuff,myapp-&gt;imgparam,-1);<br>
&gt;     pango_layout_get_pixel_size(textbuff,&amp;txtwidth,&amp;txtheight);<br>
&gt;     /* Draw a rounded rectangle */<br>
&gt;<br>
&gt; [cairo stuff is here]<br>
&gt;<br>
&gt;     cairo_destroy(cr);<br>
&gt;     g_object_unref(textbuff);<br>
&gt;     /* Show the widget */<br>
&gt;     gtk_window_resize(GTK_WINDOW (myapp-&gt;imgparamwin),txtwidth + (r *<br>
&gt; 2),txtheight + (r * 2));<br>
&gt;     gtk_window_move(GTK_WINDOW (myapp-&gt;imgparamwin),30,30);<br>
&gt;     gdk_window_reparent(myapp-&gt;imgparamwin-&gt;window,myapp-&gt;image-<br>
&gt; &gt;window,30,30);<br>
&gt;     gtk_widget_show_all(myapp-&gt;imgparamwin);<br>
&gt; }<br>
&gt;<br>
&gt; The window dimension after the gtk_window_resize() are correct -ie the<br>
&gt; dimension of the PangoLayout containing the text to be rendered, so<br>
&gt; something is definitely going on under the hood... but nothing is<br>
&gt; displayed!<br>
&gt; If I add some widget to the popoup window (for example a GtkLabel with<br>
&gt; some text in it), it&#39;s rendered correctly, but, of course it&#39;s not<br>
&gt; transparent!<br>
&gt;<br>
&gt; Any help, as always, is much appreciated!<br>
&gt;<br>
&gt; Luca Donaggio<br>
<br>
</div></div></blockquote></div><br>