Remember to un-check "Enable Gnome Support" and un-check
Gettext Support from the project options.

Set the name (frm_kbi) and the title.  Insert a 3 row 
vertical packing box.  Place a list widget in the top,
a horizontal packing box with 2 columns in the middle,
and a status bar in the bottom row of the vertical packing
box.  Place a button in each of the cells of the
horizontal packing box.

Call the list widget lst_reports.  The name of the 
horizontal packing box should be set to hbox_buttons.
The button on the left is cmd_close and the one on the
right is cmd_open.  Their labels should be "Close" and
"Open", respectively.

For hbox_buttons, "Homogenous" should be set to "No", "Expand"
should be "No", and "Fill" and "Pack Start" should both be "Yes".
For both command buttons, set "Expand" and "Pack Start" to "Yes" 
as well as "Fill".

Lastly, set the "clicked" signal for each of the two command
buttons, as well as the "show" event for the form.
Set the delete_event on the form as the place for the 
gtk_main_quit() call (and it might as well be put there
at this time).

If you want to do a quick compile at this point, don't forget
to comment out lines 23 and 24 in main.c (the lines with
PACKAGE_DATA_DIR and PACKAGE_SRC_DIR).  Also, move frm_kbi
to be global in scope in main.c.




