mirror of
https://gitlab.gnome.org/GNOME/gimp.git
synced 2025-07-03 17:33:25 +00:00
moved the tool options closer to the tools and made the dialog a bit
* plug-ins/gfig/gfig-dialog.c: moved the tool options closer to the tools and made the dialog a bit smaller.
This commit is contained in:
parent
7cdebb23a1
commit
f64a405f76
2 changed files with 18 additions and 13 deletions
|
@ -1,3 +1,8 @@
|
|||
2004-11-10 DindinX <dindinx@gimp.org>
|
||||
|
||||
* plug-ins/gfig/gfig-dialog.c: moved the tool options closer to the
|
||||
tools and made the dialog a bit smaller.
|
||||
|
||||
2004-11-10 Sven Neumann <sven@gimp.org>
|
||||
|
||||
* plug-ins/common/mail.c: added a menu icon (compiled-in).
|
||||
|
|
|
@ -397,6 +397,17 @@ gfig_dialog (void)
|
|||
gtk_box_pack_start (GTK_BOX (main_hbox), right_vbox, FALSE, FALSE, 0);
|
||||
gtk_widget_show (right_vbox);
|
||||
|
||||
/* Tool options notebook */
|
||||
frame = gimp_frame_new ( _("Tool options"));
|
||||
gtk_box_pack_start (GTK_BOX (right_vbox), frame, FALSE, FALSE, 0);
|
||||
gtk_widget_show (frame);
|
||||
|
||||
notebook = gtk_notebook_new ();
|
||||
gtk_container_add (GTK_CONTAINER (frame), notebook);
|
||||
gtk_notebook_set_show_tabs (GTK_NOTEBOOK (notebook), FALSE);
|
||||
gtk_notebook_set_show_border (GTK_NOTEBOOK (notebook), FALSE);
|
||||
gtk_widget_show (notebook);
|
||||
|
||||
/* Style frame on right side */
|
||||
frame = gimp_frame_new ("Style");
|
||||
gtk_box_pack_start (GTK_BOX (right_vbox), frame, FALSE, FALSE, 0);
|
||||
|
@ -483,17 +494,6 @@ gfig_dialog (void)
|
|||
gtk_box_pack_start (GTK_BOX (vbox), combo, FALSE, FALSE, 0);
|
||||
gtk_widget_show (combo);
|
||||
|
||||
/* Tool options notebook */
|
||||
frame = gimp_frame_new ( _("Tool options"));
|
||||
gtk_box_pack_start (GTK_BOX (right_vbox), frame, FALSE, FALSE, 0);
|
||||
gtk_widget_show (frame);
|
||||
|
||||
notebook = gtk_notebook_new ();
|
||||
gtk_container_add (GTK_CONTAINER (frame), notebook);
|
||||
gtk_notebook_set_show_tabs (GTK_NOTEBOOK (notebook), FALSE);
|
||||
gtk_notebook_set_show_border (GTK_NOTEBOOK (notebook), FALSE);
|
||||
gtk_widget_show (notebook);
|
||||
|
||||
/* "show image" checkbutton at bottom of style frame */
|
||||
toggle = gtk_check_button_new_with_label (_("Show image"));
|
||||
gtk_toggle_button_set_active (GTK_TOGGLE_BUTTON (toggle),
|
||||
|
@ -1671,8 +1671,8 @@ num_sides_widget (gchar *d_title,
|
|||
|
||||
if (which_way)
|
||||
{
|
||||
GtkWidget *combo = gimp_int_combo_box_new (_("Clockwise"), 0,
|
||||
_("Anti-Clockwise"), 1,
|
||||
GtkWidget *combo = gimp_int_combo_box_new (_("Right"), 0,
|
||||
_("Left"), 1,
|
||||
NULL);
|
||||
|
||||
gimp_int_combo_box_set_active (GIMP_INT_COMBO_BOX (combo), *which_way);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue