hi, Im a newbie this gtk+ shit :) heres a sample of code...
....
v = gtk_hbox_new (FALSE, 0);
w = create_color_picker (_("Body Background"), &text_bg_color, &win->text_bg_gcp);
gtk_box_pack_start (GTK_BOX(v), w, 0, 0, 0);
w = create_color_picker (_("Body Foreground"), &text_fg_color, &win->text_fg_gcp);
gtk_box_pack_start (GTK_BOX(v), w, 0, 0, 0);
w = create_color_picker (_("Quoted Text 1"), &text_quoted_color[0], &win->text_quoted_gcp[0]);
gtk_box_pack_start (GTK_BOX(v), w, 0, 0, 0);
w = create_color_picker (_("Quoted Text 2"), &text_quoted_color[1], &win->text_quoted_gcp[1]);
gtk_box_pack_start (GTK_BOX(v), w, 0, 0, 0);
w = create_color_picker (_("URLs"), &text_url_color, &win->text_url_gcp);
gtk_box_pack_start (GTK_BOX(v), w, 0, 0, 0);
frame = gtk_frame_new (_("Colors"));
gtk_container_add (GTK_CONTAINER(frame), v);
gtk_box_pack_start (GTK_BOX(vbox), frame, FALSE, FALSE, GNOME_PAD_SMALL);
....
this creates 5 color_picker widgets horizontally.. what I want is a 2x2
+1 table rather..
Im gathering I do this via some sortof table, how would i do this?
--
id: 9DF3262C
key fingerprint: B556 04DA CFD9 78DD 9215 A970 8196 FB6D 9DF3 262C