Hello,<br>
<br>
The next code doesn't cath the HILDON_WIZARD_DIALOG_PREVIOUS and HILDON_WIZARD_DIALOG_NEXT.<br>
How can I fix?<br>
<br>
void on_wizard_response(HildonWizardDialog *wizard,<br>
&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;int response_id, gpointer user_data)<br>
{<br>
&nbsp;&nbsp; &nbsp;printf(&quot;response_id: %d\n&quot;, response_id);<br>
}<br>
<br>
HildonWizardDialog *wizard = HILDON_WIZARD_DIALOG(<br>
&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;hildon_wizard_dialog_new( GTK_WINDOW(parent),<br>
&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&quot;x&quot;, notebook ) );<br>
g_signal_connect( (gpointer)wizard, &quot;response&quot;,<br>
&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;G_CALLBACK(on_wizard_response), NULL );<br>
gtk_widget_show_all( GTK_WIDGET(wizard) );&nbsp;&nbsp;
&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;//and
why show_all ???<br>
<br>
Thanks,<br>
Laci<br>
<br>