Re: The HIG and Layout



On Wed, 2003-10-22 at 23:03, Jacob Kolding wrote:

http://developer.gnome.org/projects/gup/hig/1.0/images/layout2.png

How many Frames Tables HBoxes VBoxes in what order and with what spacing
and border width are required to obtain the above layout?

Its a Vbox with a label ("Actions") and an hbox in it.
the hbox then has a label spacer which is just 4 spaces "    "
and another vbox in it.
that vbox then has the two check boxes
and a table in it.
the table has the three labels, the two option menus and the file entry
in it.

Spacings are 6 for pretty much everything.

so gtk_vbox_new (FALSE, 6)
gtk_hbox_new (FALSE, 6)
and gtk_table_set_col_spacings (table, 6);
gtk_table_set_row_spacings (table, 6);

should do it.
-- 
"Miss Celine Dion sings lovesongs while our cities burn"




[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]