gimprc.in gimprc.win32 set default image size back to 256x256, default to
* gimprc.in * gimprc.win32 * app/gimprc.c: set default image size back to 256x256, default to local paint options and info-window-follows-mouse. * app/brightness_contrast.c * app/docindex.c * app/hue_saturation.c: picky changes on some labels. * app/tips_dialog.c: applied (sort of) gimp-quinet-20000504-0, which replaces the message "Show tip next time" in the Tip Of The Day dialog with "Show tip next time GIMP starts". --Sven
This commit is contained in:
15
ChangeLog
15
ChangeLog
@ -1,3 +1,18 @@
|
|||||||
|
2000-05-07 Sven Neumann <sven@gimp.org>
|
||||||
|
|
||||||
|
* gimprc.in
|
||||||
|
* gimprc.win32
|
||||||
|
* app/gimprc.c: set default image size back to 256x256, default
|
||||||
|
to local paint options and info-window-follows-mouse.
|
||||||
|
|
||||||
|
* app/brightness_contrast.c
|
||||||
|
* app/docindex.c
|
||||||
|
* app/hue_saturation.c: picky changes on some labels.
|
||||||
|
|
||||||
|
* app/tips_dialog.c: applied (sort of) gimp-quinet-20000504-0,
|
||||||
|
which replaces the message "Show tip next time" in the
|
||||||
|
Tip Of The Day dialog with "Show tip next time GIMP starts".
|
||||||
|
|
||||||
2000-05-06 Nick Lamb <njl195@zepler.org.uk>
|
2000-05-06 Nick Lamb <njl195@zepler.org.uk>
|
||||||
|
|
||||||
* plug-ins/bmp/bmpread.c: Fixed long standing "RLE" bug, but
|
* plug-ins/bmp/bmpread.c: Fixed long standing "RLE" bug, but
|
||||||
|
@ -381,7 +381,7 @@ hue_saturation_dialog_new (void)
|
|||||||
gtk_container_add (GTK_CONTAINER (GTK_DIALOG (hsd->shell)->vbox), main_vbox);
|
gtk_container_add (GTK_CONTAINER (GTK_DIALOG (hsd->shell)->vbox), main_vbox);
|
||||||
|
|
||||||
/* The main hbox containing hue partitions and sliders */
|
/* The main hbox containing hue partitions and sliders */
|
||||||
main_hbox = gtk_hbox_new (FALSE, 4);
|
main_hbox = gtk_hbox_new (FALSE, 12);
|
||||||
gtk_box_pack_start (GTK_BOX (main_vbox), main_hbox, FALSE, FALSE, 0);
|
gtk_box_pack_start (GTK_BOX (main_vbox), main_hbox, FALSE, FALSE, 0);
|
||||||
|
|
||||||
/* The table containing hue partitions */
|
/* The table containing hue partitions */
|
||||||
@ -451,7 +451,7 @@ hue_saturation_dialog_new (void)
|
|||||||
gtk_box_pack_start (GTK_BOX (vbox), table, FALSE, FALSE, 0);
|
gtk_box_pack_start (GTK_BOX (vbox), table, FALSE, FALSE, 0);
|
||||||
|
|
||||||
/* Create the hue scale widget */
|
/* Create the hue scale widget */
|
||||||
label = gtk_label_new (_("Hue"));
|
label = gtk_label_new (_("Hue:"));
|
||||||
gtk_misc_set_alignment (GTK_MISC (label), 1.0, 1.0);
|
gtk_misc_set_alignment (GTK_MISC (label), 1.0, 1.0);
|
||||||
gtk_table_attach (GTK_TABLE (table), label, 0, 1, 0, 1,
|
gtk_table_attach (GTK_TABLE (table), label, 0, 1, 0, 1,
|
||||||
GTK_SHRINK | GTK_FILL, GTK_SHRINK | GTK_FILL, 0, 0);
|
GTK_SHRINK | GTK_FILL, GTK_SHRINK | GTK_FILL, 0, 0);
|
||||||
@ -485,7 +485,7 @@ hue_saturation_dialog_new (void)
|
|||||||
gtk_widget_show (abox);
|
gtk_widget_show (abox);
|
||||||
|
|
||||||
/* Create the lightness scale widget */
|
/* Create the lightness scale widget */
|
||||||
label = gtk_label_new (_("Lightness"));
|
label = gtk_label_new (_("Lightness:"));
|
||||||
gtk_misc_set_alignment (GTK_MISC (label), 1.0, 1.0);
|
gtk_misc_set_alignment (GTK_MISC (label), 1.0, 1.0);
|
||||||
gtk_table_attach (GTK_TABLE (table), label, 0, 1, 1, 2,
|
gtk_table_attach (GTK_TABLE (table), label, 0, 1, 1, 2,
|
||||||
GTK_SHRINK | GTK_FILL, GTK_SHRINK | GTK_FILL, 0, 0);
|
GTK_SHRINK | GTK_FILL, GTK_SHRINK | GTK_FILL, 0, 0);
|
||||||
@ -519,7 +519,7 @@ hue_saturation_dialog_new (void)
|
|||||||
gtk_widget_show (abox);
|
gtk_widget_show (abox);
|
||||||
|
|
||||||
/* Create the saturation scale widget */
|
/* Create the saturation scale widget */
|
||||||
label = gtk_label_new (_("Saturation"));
|
label = gtk_label_new (_("Saturation:"));
|
||||||
gtk_misc_set_alignment (GTK_MISC (label), 1.0, 1.0);
|
gtk_misc_set_alignment (GTK_MISC (label), 1.0, 1.0);
|
||||||
gtk_table_attach (GTK_TABLE (table), label, 0, 1, 2, 3,
|
gtk_table_attach (GTK_TABLE (table), label, 0, 1, 2, 3,
|
||||||
GTK_SHRINK | GTK_FILL, GTK_SHRINK | GTK_FILL, 0, 0);
|
GTK_SHRINK | GTK_FILL, GTK_SHRINK | GTK_FILL, 0, 0);
|
||||||
|
@ -231,7 +231,7 @@ brightness_contrast_dialog_new (void)
|
|||||||
gtk_box_pack_start (GTK_BOX (vbox), table, FALSE, FALSE, 0);
|
gtk_box_pack_start (GTK_BOX (vbox), table, FALSE, FALSE, 0);
|
||||||
|
|
||||||
/* Create the brightness scale widget */
|
/* Create the brightness scale widget */
|
||||||
label = gtk_label_new (_("Brightness"));
|
label = gtk_label_new (_("Brightness:"));
|
||||||
gtk_misc_set_alignment (GTK_MISC (label), 1.0, 1.0);
|
gtk_misc_set_alignment (GTK_MISC (label), 1.0, 1.0);
|
||||||
gtk_table_attach (GTK_TABLE (table), label, 0, 1, 0, 1,
|
gtk_table_attach (GTK_TABLE (table), label, 0, 1, 0, 1,
|
||||||
GTK_SHRINK | GTK_FILL, GTK_SHRINK | GTK_FILL, 0, 0);
|
GTK_SHRINK | GTK_FILL, GTK_SHRINK | GTK_FILL, 0, 0);
|
||||||
@ -262,7 +262,7 @@ brightness_contrast_dialog_new (void)
|
|||||||
gtk_widget_show (abox);
|
gtk_widget_show (abox);
|
||||||
|
|
||||||
/* Create the contrast scale widget */
|
/* Create the contrast scale widget */
|
||||||
label = gtk_label_new (_("Contrast"));
|
label = gtk_label_new (_("Contrast:"));
|
||||||
gtk_misc_set_alignment (GTK_MISC (label), 1.0, 1.0);
|
gtk_misc_set_alignment (GTK_MISC (label), 1.0, 1.0);
|
||||||
gtk_table_attach (GTK_TABLE (table), label, 0, 1, 1, 2,
|
gtk_table_attach (GTK_TABLE (table), label, 0, 1, 1, 2,
|
||||||
GTK_SHRINK | GTK_FILL, GTK_SHRINK | GTK_FILL, 0, 0);
|
GTK_SHRINK | GTK_FILL, GTK_SHRINK | GTK_FILL, 0, 0);
|
||||||
|
@ -141,7 +141,8 @@ tips_dialog_create (void)
|
|||||||
gtk_box_pack_end (GTK_BOX (vbox), hbox, FALSE, FALSE, 0);
|
gtk_box_pack_end (GTK_BOX (vbox), hbox, FALSE, FALSE, 0);
|
||||||
gtk_widget_show (hbox);
|
gtk_widget_show (hbox);
|
||||||
|
|
||||||
button = gtk_check_button_new_with_label (_("Show tip next time"));
|
button =
|
||||||
|
gtk_check_button_new_with_label (_("Show tip next time GIMP starts"));
|
||||||
gtk_toggle_button_set_active (GTK_TOGGLE_BUTTON (button),
|
gtk_toggle_button_set_active (GTK_TOGGLE_BUTTON (button),
|
||||||
show_tips);
|
show_tips);
|
||||||
gtk_signal_connect (GTK_OBJECT (button), "toggled",
|
gtk_signal_connect (GTK_OBJECT (button), "toggled",
|
||||||
|
@ -112,7 +112,7 @@ static OpsButton ops_buttons[] =
|
|||||||
{ folder_xpm, idea_open_callback, open_ext_callbacks,
|
{ folder_xpm, idea_open_callback, open_ext_callbacks,
|
||||||
N_("Open the selected entry\n"
|
N_("Open the selected entry\n"
|
||||||
"<Shift> Raise window if already open\n"
|
"<Shift> Raise window if already open\n"
|
||||||
"<Control> Load Image dialog"), NULL,
|
"<Ctrl> Load Image dialog"), NULL,
|
||||||
NULL, 0 },
|
NULL, 0 },
|
||||||
{ raise_xpm, idea_up_callback, raise_ext_callbacks,
|
{ raise_xpm, idea_up_callback, raise_ext_callbacks,
|
||||||
N_("Move the selected entry up in the index\n"
|
N_("Move the selected entry up in the index\n"
|
||||||
|
@ -144,9 +144,8 @@ gboolean confirm_on_close = TRUE;
|
|||||||
gboolean save_session_info = TRUE;
|
gboolean save_session_info = TRUE;
|
||||||
gboolean save_device_status = FALSE;
|
gboolean save_device_status = FALSE;
|
||||||
gboolean always_restore_session = TRUE;
|
gboolean always_restore_session = TRUE;
|
||||||
gint default_width = 983;
|
gint default_width = 256;
|
||||||
gint default_height = 857;
|
gint default_height = 256;
|
||||||
/* temporary default size increase to stress test stuff. -- austin 7/11/99 */
|
|
||||||
gint default_type = RGB;
|
gint default_type = RGB;
|
||||||
gdouble default_xresolution = 72.0;
|
gdouble default_xresolution = 72.0;
|
||||||
gdouble default_yresolution = 72.0;
|
gdouble default_yresolution = 72.0;
|
||||||
@ -161,14 +160,14 @@ gdouble monitor_yres = 72.0;
|
|||||||
gboolean using_xserver_resolution = FALSE;
|
gboolean using_xserver_resolution = FALSE;
|
||||||
gint num_processors = 1;
|
gint num_processors = 1;
|
||||||
gchar *image_title_format = NULL;
|
gchar *image_title_format = NULL;
|
||||||
gboolean global_paint_options = TRUE;
|
gboolean global_paint_options = FALSE;
|
||||||
gboolean show_indicators = TRUE;
|
gboolean show_indicators = TRUE;
|
||||||
gint max_new_image_size = 33554432; /* 32 MB */
|
gint max_new_image_size = 33554432; /* 32 MB */
|
||||||
gint thumbnail_mode = 1;
|
gint thumbnail_mode = 1;
|
||||||
gboolean trust_dirty_flag = FALSE;
|
gboolean trust_dirty_flag = FALSE;
|
||||||
gboolean use_help = TRUE;
|
gboolean use_help = TRUE;
|
||||||
gboolean nav_window_per_display = FALSE;
|
gboolean nav_window_per_display = FALSE;
|
||||||
gboolean info_window_follows_mouse = FALSE;
|
gboolean info_window_follows_mouse = TRUE;
|
||||||
gint help_browser = HELP_BROWSER_GIMP;
|
gint help_browser = HELP_BROWSER_GIMP;
|
||||||
|
|
||||||
extern char * module_db_load_inhibit;
|
extern char * module_db_load_inhibit;
|
||||||
|
@ -141,7 +141,8 @@ tips_dialog_create (void)
|
|||||||
gtk_box_pack_end (GTK_BOX (vbox), hbox, FALSE, FALSE, 0);
|
gtk_box_pack_end (GTK_BOX (vbox), hbox, FALSE, FALSE, 0);
|
||||||
gtk_widget_show (hbox);
|
gtk_widget_show (hbox);
|
||||||
|
|
||||||
button = gtk_check_button_new_with_label (_("Show tip next time"));
|
button =
|
||||||
|
gtk_check_button_new_with_label (_("Show tip next time GIMP starts"));
|
||||||
gtk_toggle_button_set_active (GTK_TOGGLE_BUTTON (button),
|
gtk_toggle_button_set_active (GTK_TOGGLE_BUTTON (button),
|
||||||
show_tips);
|
show_tips);
|
||||||
gtk_signal_connect (GTK_OBJECT (button), "toggled",
|
gtk_signal_connect (GTK_OBJECT (button), "toggled",
|
||||||
|
@ -381,7 +381,7 @@ hue_saturation_dialog_new (void)
|
|||||||
gtk_container_add (GTK_CONTAINER (GTK_DIALOG (hsd->shell)->vbox), main_vbox);
|
gtk_container_add (GTK_CONTAINER (GTK_DIALOG (hsd->shell)->vbox), main_vbox);
|
||||||
|
|
||||||
/* The main hbox containing hue partitions and sliders */
|
/* The main hbox containing hue partitions and sliders */
|
||||||
main_hbox = gtk_hbox_new (FALSE, 4);
|
main_hbox = gtk_hbox_new (FALSE, 12);
|
||||||
gtk_box_pack_start (GTK_BOX (main_vbox), main_hbox, FALSE, FALSE, 0);
|
gtk_box_pack_start (GTK_BOX (main_vbox), main_hbox, FALSE, FALSE, 0);
|
||||||
|
|
||||||
/* The table containing hue partitions */
|
/* The table containing hue partitions */
|
||||||
@ -451,7 +451,7 @@ hue_saturation_dialog_new (void)
|
|||||||
gtk_box_pack_start (GTK_BOX (vbox), table, FALSE, FALSE, 0);
|
gtk_box_pack_start (GTK_BOX (vbox), table, FALSE, FALSE, 0);
|
||||||
|
|
||||||
/* Create the hue scale widget */
|
/* Create the hue scale widget */
|
||||||
label = gtk_label_new (_("Hue"));
|
label = gtk_label_new (_("Hue:"));
|
||||||
gtk_misc_set_alignment (GTK_MISC (label), 1.0, 1.0);
|
gtk_misc_set_alignment (GTK_MISC (label), 1.0, 1.0);
|
||||||
gtk_table_attach (GTK_TABLE (table), label, 0, 1, 0, 1,
|
gtk_table_attach (GTK_TABLE (table), label, 0, 1, 0, 1,
|
||||||
GTK_SHRINK | GTK_FILL, GTK_SHRINK | GTK_FILL, 0, 0);
|
GTK_SHRINK | GTK_FILL, GTK_SHRINK | GTK_FILL, 0, 0);
|
||||||
@ -485,7 +485,7 @@ hue_saturation_dialog_new (void)
|
|||||||
gtk_widget_show (abox);
|
gtk_widget_show (abox);
|
||||||
|
|
||||||
/* Create the lightness scale widget */
|
/* Create the lightness scale widget */
|
||||||
label = gtk_label_new (_("Lightness"));
|
label = gtk_label_new (_("Lightness:"));
|
||||||
gtk_misc_set_alignment (GTK_MISC (label), 1.0, 1.0);
|
gtk_misc_set_alignment (GTK_MISC (label), 1.0, 1.0);
|
||||||
gtk_table_attach (GTK_TABLE (table), label, 0, 1, 1, 2,
|
gtk_table_attach (GTK_TABLE (table), label, 0, 1, 1, 2,
|
||||||
GTK_SHRINK | GTK_FILL, GTK_SHRINK | GTK_FILL, 0, 0);
|
GTK_SHRINK | GTK_FILL, GTK_SHRINK | GTK_FILL, 0, 0);
|
||||||
@ -519,7 +519,7 @@ hue_saturation_dialog_new (void)
|
|||||||
gtk_widget_show (abox);
|
gtk_widget_show (abox);
|
||||||
|
|
||||||
/* Create the saturation scale widget */
|
/* Create the saturation scale widget */
|
||||||
label = gtk_label_new (_("Saturation"));
|
label = gtk_label_new (_("Saturation:"));
|
||||||
gtk_misc_set_alignment (GTK_MISC (label), 1.0, 1.0);
|
gtk_misc_set_alignment (GTK_MISC (label), 1.0, 1.0);
|
||||||
gtk_table_attach (GTK_TABLE (table), label, 0, 1, 2, 3,
|
gtk_table_attach (GTK_TABLE (table), label, 0, 1, 2, 3,
|
||||||
GTK_SHRINK | GTK_FILL, GTK_SHRINK | GTK_FILL, 0, 0);
|
GTK_SHRINK | GTK_FILL, GTK_SHRINK | GTK_FILL, 0, 0);
|
||||||
|
@ -141,7 +141,8 @@ tips_dialog_create (void)
|
|||||||
gtk_box_pack_end (GTK_BOX (vbox), hbox, FALSE, FALSE, 0);
|
gtk_box_pack_end (GTK_BOX (vbox), hbox, FALSE, FALSE, 0);
|
||||||
gtk_widget_show (hbox);
|
gtk_widget_show (hbox);
|
||||||
|
|
||||||
button = gtk_check_button_new_with_label (_("Show tip next time"));
|
button =
|
||||||
|
gtk_check_button_new_with_label (_("Show tip next time GIMP starts"));
|
||||||
gtk_toggle_button_set_active (GTK_TOGGLE_BUTTON (button),
|
gtk_toggle_button_set_active (GTK_TOGGLE_BUTTON (button),
|
||||||
show_tips);
|
show_tips);
|
||||||
gtk_signal_connect (GTK_OBJECT (button), "toggled",
|
gtk_signal_connect (GTK_OBJECT (button), "toggled",
|
||||||
|
@ -231,7 +231,7 @@ brightness_contrast_dialog_new (void)
|
|||||||
gtk_box_pack_start (GTK_BOX (vbox), table, FALSE, FALSE, 0);
|
gtk_box_pack_start (GTK_BOX (vbox), table, FALSE, FALSE, 0);
|
||||||
|
|
||||||
/* Create the brightness scale widget */
|
/* Create the brightness scale widget */
|
||||||
label = gtk_label_new (_("Brightness"));
|
label = gtk_label_new (_("Brightness:"));
|
||||||
gtk_misc_set_alignment (GTK_MISC (label), 1.0, 1.0);
|
gtk_misc_set_alignment (GTK_MISC (label), 1.0, 1.0);
|
||||||
gtk_table_attach (GTK_TABLE (table), label, 0, 1, 0, 1,
|
gtk_table_attach (GTK_TABLE (table), label, 0, 1, 0, 1,
|
||||||
GTK_SHRINK | GTK_FILL, GTK_SHRINK | GTK_FILL, 0, 0);
|
GTK_SHRINK | GTK_FILL, GTK_SHRINK | GTK_FILL, 0, 0);
|
||||||
@ -262,7 +262,7 @@ brightness_contrast_dialog_new (void)
|
|||||||
gtk_widget_show (abox);
|
gtk_widget_show (abox);
|
||||||
|
|
||||||
/* Create the contrast scale widget */
|
/* Create the contrast scale widget */
|
||||||
label = gtk_label_new (_("Contrast"));
|
label = gtk_label_new (_("Contrast:"));
|
||||||
gtk_misc_set_alignment (GTK_MISC (label), 1.0, 1.0);
|
gtk_misc_set_alignment (GTK_MISC (label), 1.0, 1.0);
|
||||||
gtk_table_attach (GTK_TABLE (table), label, 0, 1, 1, 2,
|
gtk_table_attach (GTK_TABLE (table), label, 0, 1, 1, 2,
|
||||||
GTK_SHRINK | GTK_FILL, GTK_SHRINK | GTK_FILL, 0, 0);
|
GTK_SHRINK | GTK_FILL, GTK_SHRINK | GTK_FILL, 0, 0);
|
||||||
|
@ -231,7 +231,7 @@ brightness_contrast_dialog_new (void)
|
|||||||
gtk_box_pack_start (GTK_BOX (vbox), table, FALSE, FALSE, 0);
|
gtk_box_pack_start (GTK_BOX (vbox), table, FALSE, FALSE, 0);
|
||||||
|
|
||||||
/* Create the brightness scale widget */
|
/* Create the brightness scale widget */
|
||||||
label = gtk_label_new (_("Brightness"));
|
label = gtk_label_new (_("Brightness:"));
|
||||||
gtk_misc_set_alignment (GTK_MISC (label), 1.0, 1.0);
|
gtk_misc_set_alignment (GTK_MISC (label), 1.0, 1.0);
|
||||||
gtk_table_attach (GTK_TABLE (table), label, 0, 1, 0, 1,
|
gtk_table_attach (GTK_TABLE (table), label, 0, 1, 0, 1,
|
||||||
GTK_SHRINK | GTK_FILL, GTK_SHRINK | GTK_FILL, 0, 0);
|
GTK_SHRINK | GTK_FILL, GTK_SHRINK | GTK_FILL, 0, 0);
|
||||||
@ -262,7 +262,7 @@ brightness_contrast_dialog_new (void)
|
|||||||
gtk_widget_show (abox);
|
gtk_widget_show (abox);
|
||||||
|
|
||||||
/* Create the contrast scale widget */
|
/* Create the contrast scale widget */
|
||||||
label = gtk_label_new (_("Contrast"));
|
label = gtk_label_new (_("Contrast:"));
|
||||||
gtk_misc_set_alignment (GTK_MISC (label), 1.0, 1.0);
|
gtk_misc_set_alignment (GTK_MISC (label), 1.0, 1.0);
|
||||||
gtk_table_attach (GTK_TABLE (table), label, 0, 1, 1, 2,
|
gtk_table_attach (GTK_TABLE (table), label, 0, 1, 1, 2,
|
||||||
GTK_SHRINK | GTK_FILL, GTK_SHRINK | GTK_FILL, 0, 0);
|
GTK_SHRINK | GTK_FILL, GTK_SHRINK | GTK_FILL, 0, 0);
|
||||||
|
@ -381,7 +381,7 @@ hue_saturation_dialog_new (void)
|
|||||||
gtk_container_add (GTK_CONTAINER (GTK_DIALOG (hsd->shell)->vbox), main_vbox);
|
gtk_container_add (GTK_CONTAINER (GTK_DIALOG (hsd->shell)->vbox), main_vbox);
|
||||||
|
|
||||||
/* The main hbox containing hue partitions and sliders */
|
/* The main hbox containing hue partitions and sliders */
|
||||||
main_hbox = gtk_hbox_new (FALSE, 4);
|
main_hbox = gtk_hbox_new (FALSE, 12);
|
||||||
gtk_box_pack_start (GTK_BOX (main_vbox), main_hbox, FALSE, FALSE, 0);
|
gtk_box_pack_start (GTK_BOX (main_vbox), main_hbox, FALSE, FALSE, 0);
|
||||||
|
|
||||||
/* The table containing hue partitions */
|
/* The table containing hue partitions */
|
||||||
@ -451,7 +451,7 @@ hue_saturation_dialog_new (void)
|
|||||||
gtk_box_pack_start (GTK_BOX (vbox), table, FALSE, FALSE, 0);
|
gtk_box_pack_start (GTK_BOX (vbox), table, FALSE, FALSE, 0);
|
||||||
|
|
||||||
/* Create the hue scale widget */
|
/* Create the hue scale widget */
|
||||||
label = gtk_label_new (_("Hue"));
|
label = gtk_label_new (_("Hue:"));
|
||||||
gtk_misc_set_alignment (GTK_MISC (label), 1.0, 1.0);
|
gtk_misc_set_alignment (GTK_MISC (label), 1.0, 1.0);
|
||||||
gtk_table_attach (GTK_TABLE (table), label, 0, 1, 0, 1,
|
gtk_table_attach (GTK_TABLE (table), label, 0, 1, 0, 1,
|
||||||
GTK_SHRINK | GTK_FILL, GTK_SHRINK | GTK_FILL, 0, 0);
|
GTK_SHRINK | GTK_FILL, GTK_SHRINK | GTK_FILL, 0, 0);
|
||||||
@ -485,7 +485,7 @@ hue_saturation_dialog_new (void)
|
|||||||
gtk_widget_show (abox);
|
gtk_widget_show (abox);
|
||||||
|
|
||||||
/* Create the lightness scale widget */
|
/* Create the lightness scale widget */
|
||||||
label = gtk_label_new (_("Lightness"));
|
label = gtk_label_new (_("Lightness:"));
|
||||||
gtk_misc_set_alignment (GTK_MISC (label), 1.0, 1.0);
|
gtk_misc_set_alignment (GTK_MISC (label), 1.0, 1.0);
|
||||||
gtk_table_attach (GTK_TABLE (table), label, 0, 1, 1, 2,
|
gtk_table_attach (GTK_TABLE (table), label, 0, 1, 1, 2,
|
||||||
GTK_SHRINK | GTK_FILL, GTK_SHRINK | GTK_FILL, 0, 0);
|
GTK_SHRINK | GTK_FILL, GTK_SHRINK | GTK_FILL, 0, 0);
|
||||||
@ -519,7 +519,7 @@ hue_saturation_dialog_new (void)
|
|||||||
gtk_widget_show (abox);
|
gtk_widget_show (abox);
|
||||||
|
|
||||||
/* Create the saturation scale widget */
|
/* Create the saturation scale widget */
|
||||||
label = gtk_label_new (_("Saturation"));
|
label = gtk_label_new (_("Saturation:"));
|
||||||
gtk_misc_set_alignment (GTK_MISC (label), 1.0, 1.0);
|
gtk_misc_set_alignment (GTK_MISC (label), 1.0, 1.0);
|
||||||
gtk_table_attach (GTK_TABLE (table), label, 0, 1, 2, 3,
|
gtk_table_attach (GTK_TABLE (table), label, 0, 1, 2, 3,
|
||||||
GTK_SHRINK | GTK_FILL, GTK_SHRINK | GTK_FILL, 0, 0);
|
GTK_SHRINK | GTK_FILL, GTK_SHRINK | GTK_FILL, 0, 0);
|
||||||
|
@ -381,7 +381,7 @@ hue_saturation_dialog_new (void)
|
|||||||
gtk_container_add (GTK_CONTAINER (GTK_DIALOG (hsd->shell)->vbox), main_vbox);
|
gtk_container_add (GTK_CONTAINER (GTK_DIALOG (hsd->shell)->vbox), main_vbox);
|
||||||
|
|
||||||
/* The main hbox containing hue partitions and sliders */
|
/* The main hbox containing hue partitions and sliders */
|
||||||
main_hbox = gtk_hbox_new (FALSE, 4);
|
main_hbox = gtk_hbox_new (FALSE, 12);
|
||||||
gtk_box_pack_start (GTK_BOX (main_vbox), main_hbox, FALSE, FALSE, 0);
|
gtk_box_pack_start (GTK_BOX (main_vbox), main_hbox, FALSE, FALSE, 0);
|
||||||
|
|
||||||
/* The table containing hue partitions */
|
/* The table containing hue partitions */
|
||||||
@ -451,7 +451,7 @@ hue_saturation_dialog_new (void)
|
|||||||
gtk_box_pack_start (GTK_BOX (vbox), table, FALSE, FALSE, 0);
|
gtk_box_pack_start (GTK_BOX (vbox), table, FALSE, FALSE, 0);
|
||||||
|
|
||||||
/* Create the hue scale widget */
|
/* Create the hue scale widget */
|
||||||
label = gtk_label_new (_("Hue"));
|
label = gtk_label_new (_("Hue:"));
|
||||||
gtk_misc_set_alignment (GTK_MISC (label), 1.0, 1.0);
|
gtk_misc_set_alignment (GTK_MISC (label), 1.0, 1.0);
|
||||||
gtk_table_attach (GTK_TABLE (table), label, 0, 1, 0, 1,
|
gtk_table_attach (GTK_TABLE (table), label, 0, 1, 0, 1,
|
||||||
GTK_SHRINK | GTK_FILL, GTK_SHRINK | GTK_FILL, 0, 0);
|
GTK_SHRINK | GTK_FILL, GTK_SHRINK | GTK_FILL, 0, 0);
|
||||||
@ -485,7 +485,7 @@ hue_saturation_dialog_new (void)
|
|||||||
gtk_widget_show (abox);
|
gtk_widget_show (abox);
|
||||||
|
|
||||||
/* Create the lightness scale widget */
|
/* Create the lightness scale widget */
|
||||||
label = gtk_label_new (_("Lightness"));
|
label = gtk_label_new (_("Lightness:"));
|
||||||
gtk_misc_set_alignment (GTK_MISC (label), 1.0, 1.0);
|
gtk_misc_set_alignment (GTK_MISC (label), 1.0, 1.0);
|
||||||
gtk_table_attach (GTK_TABLE (table), label, 0, 1, 1, 2,
|
gtk_table_attach (GTK_TABLE (table), label, 0, 1, 1, 2,
|
||||||
GTK_SHRINK | GTK_FILL, GTK_SHRINK | GTK_FILL, 0, 0);
|
GTK_SHRINK | GTK_FILL, GTK_SHRINK | GTK_FILL, 0, 0);
|
||||||
@ -519,7 +519,7 @@ hue_saturation_dialog_new (void)
|
|||||||
gtk_widget_show (abox);
|
gtk_widget_show (abox);
|
||||||
|
|
||||||
/* Create the saturation scale widget */
|
/* Create the saturation scale widget */
|
||||||
label = gtk_label_new (_("Saturation"));
|
label = gtk_label_new (_("Saturation:"));
|
||||||
gtk_misc_set_alignment (GTK_MISC (label), 1.0, 1.0);
|
gtk_misc_set_alignment (GTK_MISC (label), 1.0, 1.0);
|
||||||
gtk_table_attach (GTK_TABLE (table), label, 0, 1, 2, 3,
|
gtk_table_attach (GTK_TABLE (table), label, 0, 1, 2, 3,
|
||||||
GTK_SHRINK | GTK_FILL, GTK_SHRINK | GTK_FILL, 0, 0);
|
GTK_SHRINK | GTK_FILL, GTK_SHRINK | GTK_FILL, 0, 0);
|
||||||
|
@ -279,10 +279,11 @@
|
|||||||
(image-title-format "%D*%f-%p.%i (%t) %z%%")
|
(image-title-format "%D*%f-%p.%i (%t) %z%%")
|
||||||
|
|
||||||
# Global paint options
|
# Global paint options
|
||||||
# By default options for the paint tools are global, e.g. all paint tools
|
# By default options for the paint tools are local, e.g. all paint tools
|
||||||
# use the options you specify in the brushes dialog. You can change this
|
# use the options you specify in their tool options dialog. If you wish
|
||||||
# so each tool has its own settings by uncommenting the next line.
|
# to have global settings in the brushes dialog that affect all paint tools,
|
||||||
# (no-global-paint-options)
|
# you can change this by uncommenting the next line.
|
||||||
|
# (global-paint-options)
|
||||||
|
|
||||||
# Maximal new image size
|
# Maximal new image size
|
||||||
# To prevent mistakes Gimp will warn you if you try to create a very large
|
# To prevent mistakes Gimp will warn you if you try to create a very large
|
||||||
|
@ -259,10 +259,11 @@
|
|||||||
(image-title-format "%f-%p.%i (%t) %z%%")
|
(image-title-format "%f-%p.%i (%t) %z%%")
|
||||||
|
|
||||||
# Global paint options
|
# Global paint options
|
||||||
# By default options for the paint tools are global, e.g. all paint tools
|
# By default options for the paint tools are local, e.g. all paint tools
|
||||||
# use the options you specify in the brushes dialog. You can change this
|
# use the options you specify in their tool options dialog. If you wish
|
||||||
# so each tool has its own settings by uncommenting the next line.
|
# to have global settings in the brushes dialog that affect all paint tools,
|
||||||
# (no-global-paint-options)
|
# you can change this by uncommenting the next line.
|
||||||
|
# (global-paint-options)
|
||||||
|
|
||||||
# Maximal new image size
|
# Maximal new image size
|
||||||
# To prevent mistakes Gimp will warn you if you try to create a very large
|
# To prevent mistakes Gimp will warn you if you try to create a very large
|
||||||
|
@ -279,10 +279,11 @@
|
|||||||
(image-title-format "%D*%f-%p.%i (%t) %z%%")
|
(image-title-format "%D*%f-%p.%i (%t) %z%%")
|
||||||
|
|
||||||
# Global paint options
|
# Global paint options
|
||||||
# By default options for the paint tools are global, e.g. all paint tools
|
# By default options for the paint tools are local, e.g. all paint tools
|
||||||
# use the options you specify in the brushes dialog. You can change this
|
# use the options you specify in their tool options dialog. If you wish
|
||||||
# so each tool has its own settings by uncommenting the next line.
|
# to have global settings in the brushes dialog that affect all paint tools,
|
||||||
# (no-global-paint-options)
|
# you can change this by uncommenting the next line.
|
||||||
|
# (global-paint-options)
|
||||||
|
|
||||||
# Maximal new image size
|
# Maximal new image size
|
||||||
# To prevent mistakes Gimp will warn you if you try to create a very large
|
# To prevent mistakes Gimp will warn you if you try to create a very large
|
||||||
|
@ -259,10 +259,11 @@
|
|||||||
(image-title-format "%f-%p.%i (%t) %z%%")
|
(image-title-format "%f-%p.%i (%t) %z%%")
|
||||||
|
|
||||||
# Global paint options
|
# Global paint options
|
||||||
# By default options for the paint tools are global, e.g. all paint tools
|
# By default options for the paint tools are local, e.g. all paint tools
|
||||||
# use the options you specify in the brushes dialog. You can change this
|
# use the options you specify in their tool options dialog. If you wish
|
||||||
# so each tool has its own settings by uncommenting the next line.
|
# to have global settings in the brushes dialog that affect all paint tools,
|
||||||
# (no-global-paint-options)
|
# you can change this by uncommenting the next line.
|
||||||
|
# (global-paint-options)
|
||||||
|
|
||||||
# Maximal new image size
|
# Maximal new image size
|
||||||
# To prevent mistakes Gimp will warn you if you try to create a very large
|
# To prevent mistakes Gimp will warn you if you try to create a very large
|
||||||
|
@ -1,3 +1,7 @@
|
|||||||
|
2000-05-07 Sven Neumann <sven@gimp.org>
|
||||||
|
|
||||||
|
* de.po: updated german translation
|
||||||
|
|
||||||
2000-05-04 Kjartan Maraas <kmaraas@online.no>
|
2000-05-04 Kjartan Maraas <kmaraas@online.no>
|
||||||
|
|
||||||
* no.po: Updated Norwegian translation.
|
* no.po: Updated Norwegian translation.
|
||||||
|
Reference in New Issue
Block a user