Index: /umitGUI/HIGWidgets.py
===================================================================
--- /umitGUI/HIGWidgets.py (revision 4)
+++ /umitGUI/HIGWidgets.py (revision 7)
@@ -14,4 +14,6 @@
 # along with this program; if not, write to the Free Software
 # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
+
+import gtk
 
 class HIGWindow(gtk.Window):
@@ -61,2 +63,8 @@
 def HIG_box_space_holder():
 	return gtk.Label("    ")
+
+if __name__ == '__main__':
+	w = HIGWindow()
+	w.connect("delete-event", lambda w, p: gtk.main_quit())
+	w.show()
+	gtk.main()
