Dennis, <br><br>Apologies for the slow response - a bit of a family emergency has been upon us. I&#39;ll be looking at the existing bugs such as this one that you are addressing very soon. Talk to you at the Feb CLUE if not before!<br>
<br>-Rick <br><br><div class="gmail_quote">On Jan 9, 2008 9:51 PM, Dennis J Perkins &lt;<a href="mailto:dennisjperkins@comcast.net">dennisjperkins@comcast.net</a>&gt; wrote:<br><blockquote class="gmail_quote" style="border-left: 1px solid rgb(204, 204, 204); margin: 0pt 0pt 0pt 0.8ex; padding-left: 1ex;">
Assuming that I remember what you showed me yesterday, I think these<br>might help you.<br><br>1. Clicking on the Close button does nothing.<br><br>You need to connect the &quot;destroy&quot; signal to a signal handler. &nbsp;You might<br>
need to do this for the &quot;delete&quot; event too, but I&#39;m not sure exactly<br>what this does. &nbsp;You probably want to use the same exit routine that is<br>calle from the menu.<br><br>Look for the line containing g_signal_connect (G_OBJECT (window),<br>
&quot;destroy&quot;, G_CALLBACK (destroy), NULL);<br><br><a href="http://www.gtk.org/tutorial/c39.html#SEC-HELLOWORLD" target="_blank">http://www.gtk.org/tutorial/c39.html#SEC-HELLOWORLD</a><br><br><br>2. You need to destroy the dialog when you are done. &nbsp;This is an example<br>
I got from the Internet.<br><br> &nbsp;GtkWidget * about_dlg;<br> &nbsp;about_dlg = create_aboutdialog ();<br> &nbsp;gtk_dialog_run (GTK_DIALOG (about_dlg ));<br> &nbsp;gtk_widget_destroy (about_dlg);<br><br>_______________________________________________<br>
clue-tech mailing list<br><a href="mailto:clue-tech@cluedenver.org">clue-tech@cluedenver.org</a><br><a href="http://www.cluedenver.org/mailman/listinfo/clue-tech" target="_blank">http://www.cluedenver.org/mailman/listinfo/clue-tech</a><br>
</blockquote></div><br>