<br><br><div><span class="gmail_quote">2006/1/16, Lassi Syrjälä &lt;<a href="mailto:lassis@cc.jyu.fi">lassis@cc.jyu.fi</a>&gt;:</span><blockquote class="gmail_quote" style="border-left: 1px solid rgb(204, 204, 204); margin: 0pt 0pt 0pt 0.8ex; padding-left: 1ex;">
<br>Luca Donaggio kirjoitti 16.1.2006 kello 17.09:<br><br>&gt; It seems that the following doesn't work:<br>&gt;<br>&gt; [code]<br>&gt;<br>&gt; g_signal_connect (G_OBJECT (main), &quot;show&quot;,<br>&gt;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; G_CALLBACK (on_main_create),
<br>&gt;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; NULL);<br>&gt;<br>&gt;<br>&gt; [/end code]<br><br>Hi,<br><br>I'd assume it works, but only if you connect the handler before<br>showing the widget. &quot;Show&quot; is anyway not the most useful of signals,
<br>since it's synchronously and only ever emitted when you<br>gtk_widget_show (main). In this case, it probably gains you nothing,<br>since you could as well write:<br><br>gtk_widget_show (main);<br>on_main_create (main, NULL);
<br><br>Instead, you could try something like:<br><br>g_signal_connect_after (main, &quot;map&quot;, G_CALLBACK (on_main_create), NULL);<br><br>If that does not do the trick, adding a low priority idle function<br>with a return value of FALSE might help.
<br><br>BR,<br>Lassi<br><br></blockquote></div><br><br>Thanks a lot Lassi, g_signal_connect_after() works smoothly!<br><br>Luca Donaggio<br>