<br><br><div><span class="gmail_quote">2006/1/16, Lassi Syrjälä <<a href="mailto:lassis@cc.jyu.fi">lassis@cc.jyu.fi</a>>:</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>> It seems that the following doesn't work:<br>><br>> [code]<br>><br>> g_signal_connect (G_OBJECT (main), "show",<br>> G_CALLBACK (on_main_create),
<br>> NULL);<br>><br>><br>> [/end code]<br><br>Hi,<br><br>I'd assume it works, but only if you connect the handler before<br>showing the widget. "Show" 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, "map", 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>