mirror of https://github.com/GNOME/gimp.git
90 lines
2.5 KiB
C
90 lines
2.5 KiB
C
#include "config.h"
|
|
|
|
#include <gtk/gtk.h>
|
|
|
|
#include <libgimp/gimp.h>
|
|
#include <libgimp/gimpui.h>
|
|
|
|
#include "gimpressionist.h"
|
|
#include "color.h"
|
|
|
|
#include "libgimp/stdplugins-intl.h"
|
|
|
|
|
|
#define NUMCOLORRADIO 2
|
|
|
|
static GtkWidget *colorradio[NUMCOLORRADIO];
|
|
static GtkObject *colornoiseadjust = NULL;
|
|
|
|
void
|
|
color_restore (void)
|
|
{
|
|
gtk_toggle_button_set_active
|
|
(GTK_TOGGLE_BUTTON (colorradio[pcvals.color_type]), TRUE);
|
|
|
|
gtk_adjustment_set_value (GTK_ADJUSTMENT (colornoiseadjust),
|
|
pcvals.color_noise);
|
|
}
|
|
|
|
int
|
|
color_type_input (int in)
|
|
{
|
|
return CLAMP_UP_TO (in, NUMCOLORRADIO);
|
|
}
|
|
|
|
void
|
|
create_colorpage (GtkNotebook *notebook)
|
|
{
|
|
GtkWidget *vbox;
|
|
GtkWidget *label, *table;
|
|
GtkWidget *frame;
|
|
|
|
label = gtk_label_new_with_mnemonic (_("Co_lor"));
|
|
|
|
vbox = gtk_vbox_new (FALSE, 12);
|
|
gtk_container_set_border_width (GTK_CONTAINER (vbox), 12);
|
|
gtk_widget_show (vbox);
|
|
|
|
frame = gimp_int_radio_group_new (TRUE, _("Color"),
|
|
G_CALLBACK (gimp_radio_button_update),
|
|
&pcvals.color_type, 0,
|
|
|
|
_("A_verage under brush"),
|
|
COLOR_TYPE_AVERAGE, &colorradio[COLOR_TYPE_AVERAGE],
|
|
_("C_enter of brush"),
|
|
COLOR_TYPE_CENTER, &colorradio[COLOR_TYPE_CENTER],
|
|
|
|
NULL);
|
|
|
|
gimp_help_set_help_data
|
|
(colorradio[COLOR_TYPE_AVERAGE],
|
|
_("Color is computed from the average of all pixels under the brush"),
|
|
NULL);
|
|
gimp_help_set_help_data
|
|
(colorradio[COLOR_TYPE_CENTER],
|
|
_("Samples the color from the pixel in the center of the brush"), NULL);
|
|
gtk_box_pack_start (GTK_BOX (vbox), frame, FALSE, FALSE, 0);
|
|
gtk_widget_show (frame);
|
|
|
|
table = gtk_table_new (1, 3, FALSE);
|
|
gtk_table_set_col_spacings (GTK_TABLE (table), 6);
|
|
gtk_box_pack_start (GTK_BOX (vbox), table, FALSE, FALSE, 0);
|
|
gtk_widget_show (table);
|
|
|
|
colornoiseadjust =
|
|
gimp_scale_entry_new (GTK_TABLE (table), 0, 0,
|
|
_("Color _noise:"),
|
|
100, -1, pcvals.color_noise,
|
|
0.0, 100.0, 1.0, 5.0, 0,
|
|
TRUE, 0, 0,
|
|
_("Adds random noise to the color"),
|
|
NULL);
|
|
g_signal_connect (colornoiseadjust, "value_changed",
|
|
G_CALLBACK (gimp_double_adjustment_update),
|
|
&pcvals.color_noise);
|
|
|
|
color_restore ();
|
|
|
|
gtk_notebook_append_page_menu (notebook, vbox, label, NULL);
|
|
}
|