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