mirror of https://github.com/GNOME/gimp.git
498 lines
14 KiB
C
498 lines
14 KiB
C
/* The GIMP -- an image manipulation program
|
|
* Copyright (C) 1995 Spencer Kimball and Peter Mattis
|
|
*
|
|
* This program is free software; you can redistribute it and/or modify
|
|
* it under the terms of the GNU General Public License as published by
|
|
* the Free Software Foundation; either version 2 of the License, or
|
|
* (at your option) any later version.
|
|
*
|
|
* This program is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
* GNU General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU General Public License
|
|
* along with this program; if not, write to the Free Software
|
|
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
|
|
*/
|
|
#include <stdlib.h>
|
|
#include <string.h>
|
|
#include <math.h>
|
|
#include "appenv.h"
|
|
#include "actionarea.h"
|
|
#include "buildmenu.h"
|
|
#include "drawable.h"
|
|
#include "general.h"
|
|
#include "gdisplay.h"
|
|
#include "histogram_tool.h"
|
|
#include "image_map.h"
|
|
#include "interface.h"
|
|
|
|
#include "libgimp/gimpintl.h"
|
|
|
|
#define TEXT_WIDTH 45
|
|
|
|
/* the histogram structures */
|
|
|
|
typedef struct _HistogramTool HistogramTool;
|
|
struct _HistogramTool
|
|
{
|
|
int x, y; /* coords for last mouse click */
|
|
};
|
|
|
|
|
|
/* the histogram tool options */
|
|
static ToolOptions *histogram_tool_options = NULL;
|
|
|
|
/* the histogram tool dialog */
|
|
static HistogramToolDialog *histogram_tool_dialog = NULL;
|
|
|
|
|
|
/* histogram_tool action functions */
|
|
static void histogram_tool_button_press (Tool *, GdkEventButton *, gpointer);
|
|
static void histogram_tool_button_release (Tool *, GdkEventButton *, gpointer);
|
|
static void histogram_tool_motion (Tool *, GdkEventMotion *, gpointer);
|
|
static void histogram_tool_cursor_update (Tool *, GdkEventMotion *, gpointer);
|
|
static void histogram_tool_control (Tool *, int, gpointer);
|
|
|
|
static HistogramToolDialog * histogram_tool_new_dialog (void);
|
|
static void histogram_tool_close_callback (GtkWidget *, gpointer);
|
|
static gint histogram_tool_delete_callback (GtkWidget *, GdkEvent *, gpointer);
|
|
static void histogram_tool_value_callback (GtkWidget *, gpointer);
|
|
static void histogram_tool_red_callback (GtkWidget *, gpointer);
|
|
static void histogram_tool_green_callback (GtkWidget *, gpointer);
|
|
static void histogram_tool_blue_callback (GtkWidget *, gpointer);
|
|
|
|
static void histogram_tool_dialog_update (HistogramToolDialog *, int, int);
|
|
|
|
|
|
/* histogram_tool machinery */
|
|
|
|
void
|
|
histogram_tool_histogram_range (HistogramWidget *w,
|
|
int start,
|
|
int end,
|
|
void *user_data)
|
|
{
|
|
HistogramToolDialog *htd;
|
|
double pixels;
|
|
double count;
|
|
|
|
htd = (HistogramToolDialog *) user_data;
|
|
|
|
if (htd == NULL || htd->hist == NULL
|
|
|| gimp_histogram_nchannels(htd->hist) <= 0)
|
|
return;
|
|
|
|
pixels = gimp_histogram_get_count(htd->hist, 0, 255);
|
|
count = gimp_histogram_get_count(htd->hist, start, end);
|
|
|
|
|
|
htd->mean = gimp_histogram_get_mean(htd->hist, htd->channel, start, end);
|
|
htd->std_dev = gimp_histogram_get_std_dev(htd->hist, htd->channel,
|
|
start, end);
|
|
htd->median = gimp_histogram_get_median(htd->hist, htd->channel, start, end);
|
|
htd->pixels = pixels;
|
|
htd->count = count;
|
|
htd->percentile = count / pixels;
|
|
|
|
if (htd->shell)
|
|
histogram_tool_dialog_update (htd, start, end);
|
|
}
|
|
|
|
static void
|
|
histogram_tool_dialog_update (HistogramToolDialog *htd,
|
|
int start,
|
|
int end)
|
|
{
|
|
char text[12];
|
|
|
|
/* mean */
|
|
sprintf (text, "%3.1f", htd->mean);
|
|
gtk_label_set_text (GTK_LABEL (htd->info_labels[0]), text);
|
|
|
|
/* std dev */
|
|
sprintf (text, "%3.1f", htd->std_dev);
|
|
gtk_label_set_text (GTK_LABEL (htd->info_labels[1]), text);
|
|
|
|
/* median */
|
|
sprintf (text, "%3.1f", htd->median);
|
|
gtk_label_set_text (GTK_LABEL (htd->info_labels[2]), text);
|
|
|
|
/* pixels */
|
|
sprintf (text, "%8.1f", htd->pixels);
|
|
gtk_label_set_text (GTK_LABEL (htd->info_labels[3]), text);
|
|
|
|
/* intensity */
|
|
if (start == end)
|
|
sprintf (text, "%d", start);
|
|
else
|
|
sprintf (text, "%d..%d", start, end);
|
|
gtk_label_set_text (GTK_LABEL (htd->info_labels[4]), text);
|
|
|
|
/* count */
|
|
sprintf (text, "%8.1f", htd->count);
|
|
gtk_label_set_text (GTK_LABEL (htd->info_labels[5]), text);
|
|
|
|
/* percentile */
|
|
sprintf (text, "%2.2f", htd->percentile * 100);
|
|
gtk_label_set_text (GTK_LABEL (htd->info_labels[6]), text);
|
|
}
|
|
|
|
/* histogram_tool action functions */
|
|
|
|
static void
|
|
histogram_tool_button_press (Tool *tool,
|
|
GdkEventButton *bevent,
|
|
gpointer gdisp_ptr)
|
|
{
|
|
GDisplay *gdisp;
|
|
|
|
gdisp = gdisp_ptr;
|
|
tool->drawable = gimage_active_drawable (gdisp->gimage);
|
|
}
|
|
|
|
static void
|
|
histogram_tool_button_release (Tool *tool,
|
|
GdkEventButton *bevent,
|
|
gpointer gdisp_ptr)
|
|
{
|
|
}
|
|
|
|
static void
|
|
histogram_tool_motion (Tool *tool,
|
|
GdkEventMotion *mevent,
|
|
gpointer gdisp_ptr)
|
|
{
|
|
}
|
|
|
|
static void
|
|
histogram_tool_cursor_update (Tool *tool,
|
|
GdkEventMotion *mevent,
|
|
gpointer gdisp_ptr)
|
|
{
|
|
GDisplay *gdisp;
|
|
|
|
gdisp = (GDisplay *) gdisp_ptr;
|
|
gdisplay_install_tool_cursor (gdisp, GDK_TOP_LEFT_ARROW);
|
|
}
|
|
|
|
static void
|
|
histogram_tool_control (Tool *tool,
|
|
int action,
|
|
gpointer gdisp_ptr)
|
|
{
|
|
switch (action)
|
|
{
|
|
case PAUSE :
|
|
break;
|
|
case RESUME :
|
|
break;
|
|
case HALT :
|
|
if (histogram_tool_dialog)
|
|
histogram_tool_close_callback (NULL, (gpointer) histogram_tool_dialog);
|
|
break;
|
|
}
|
|
}
|
|
|
|
Tool *
|
|
tools_new_histogram_tool ()
|
|
{
|
|
Tool * tool;
|
|
HistogramTool * private;
|
|
|
|
/* The tool options */
|
|
if (! histogram_tool_options)
|
|
{
|
|
histogram_tool_options = tool_options_new (_("Histogram Options"));
|
|
tools_register (HISTOGRAM, histogram_tool_options);
|
|
}
|
|
|
|
tool = (Tool *) g_malloc (sizeof (Tool));
|
|
private = (HistogramTool *) g_malloc (sizeof (HistogramTool));
|
|
|
|
tool->type = HISTOGRAM;
|
|
tool->state = INACTIVE;
|
|
tool->scroll_lock = 1; /* Disallow scrolling */
|
|
tool->auto_snap_to = TRUE;
|
|
tool->private = (void *) private;
|
|
|
|
tool->button_press_func = histogram_tool_button_press;
|
|
tool->button_release_func = histogram_tool_button_release;
|
|
tool->motion_func = histogram_tool_motion;
|
|
tool->arrow_keys_func = standard_arrow_keys_func; tool->modifier_key_func = standard_modifier_key_func;
|
|
tool->cursor_update_func = histogram_tool_cursor_update;
|
|
tool->control_func = histogram_tool_control;
|
|
tool->preserve = FALSE;
|
|
|
|
return tool;
|
|
}
|
|
|
|
void
|
|
tools_free_histogram_tool (Tool *tool)
|
|
{
|
|
HistogramTool * hist;
|
|
|
|
hist = (HistogramTool *) tool->private;
|
|
|
|
/* Close the histogram dialog */
|
|
if (histogram_tool_dialog)
|
|
histogram_tool_close_callback (NULL, (gpointer) histogram_tool_dialog);
|
|
|
|
g_free (hist);
|
|
}
|
|
|
|
void
|
|
histogram_tool_initialize (GDisplay *gdisp)
|
|
{
|
|
PixelRegion PR;
|
|
if (drawable_indexed (gimage_active_drawable (gdisp->gimage)))
|
|
{
|
|
g_message ("Histogram does not operate on indexed drawables.");
|
|
return;
|
|
}
|
|
|
|
/* The histogram_tool dialog */
|
|
if (!histogram_tool_dialog)
|
|
histogram_tool_dialog = histogram_tool_new_dialog ();
|
|
else if (!GTK_WIDGET_VISIBLE (histogram_tool_dialog->shell))
|
|
gtk_widget_show (histogram_tool_dialog->shell);
|
|
|
|
histogram_tool_dialog->drawable = gimage_active_drawable (gdisp->gimage);
|
|
histogram_tool_dialog->color = drawable_color (histogram_tool_dialog->drawable);
|
|
|
|
/* hide or show the channel menu based on image type */
|
|
if (histogram_tool_dialog->color)
|
|
gtk_widget_show (histogram_tool_dialog->channel_menu);
|
|
else
|
|
gtk_widget_hide (histogram_tool_dialog->channel_menu);
|
|
|
|
/* calculate the histogram */
|
|
pixel_region_init(&PR, drawable_data (histogram_tool_dialog->drawable), 0, 0,
|
|
drawable_width(histogram_tool_dialog->drawable),
|
|
drawable_height(histogram_tool_dialog->drawable),
|
|
FALSE);
|
|
gimp_histogram_calculate(histogram_tool_dialog->hist, &PR, NULL);
|
|
|
|
histogram_widget_update (histogram_tool_dialog->histogram,
|
|
histogram_tool_dialog->hist);
|
|
histogram_widget_range (histogram_tool_dialog->histogram, 0, 255);
|
|
}
|
|
|
|
|
|
/***************************/
|
|
/* Histogram Tool dialog */
|
|
/***************************/
|
|
|
|
static HistogramToolDialog *
|
|
histogram_tool_new_dialog ()
|
|
{
|
|
HistogramToolDialog *htd;
|
|
GtkWidget *vbox;
|
|
GtkWidget *vbox2;
|
|
GtkWidget *frame;
|
|
GtkWidget *table;
|
|
GtkWidget *label;
|
|
GtkWidget *option_menu;
|
|
GtkWidget *menu;
|
|
int i;
|
|
int x, y;
|
|
|
|
static ActionAreaItem action_items[] =
|
|
{
|
|
{ "Close", histogram_tool_close_callback, NULL, NULL }
|
|
};
|
|
static char * histogram_info_names[7] =
|
|
{
|
|
N_("Mean:"),
|
|
N_("Std Dev:"),
|
|
N_("Median:"),
|
|
N_("Pixels:"),
|
|
N_("Intensity:"),
|
|
N_("Count:"),
|
|
N_("Percentile:")
|
|
};
|
|
static MenuItem color_option_items[] =
|
|
{
|
|
{ "Value", 0, 0, histogram_tool_value_callback, NULL, NULL, NULL },
|
|
{ "Red", 0, 0, histogram_tool_red_callback, NULL, NULL, NULL },
|
|
{ "Green", 0, 0, histogram_tool_green_callback, NULL, NULL, NULL },
|
|
{ "Blue", 0, 0, histogram_tool_blue_callback, NULL, NULL, NULL },
|
|
{ NULL, 0, 0, NULL, NULL, NULL, NULL }
|
|
};
|
|
|
|
htd = (HistogramToolDialog *) g_malloc (sizeof (HistogramToolDialog));
|
|
htd->channel = HISTOGRAM_VALUE;
|
|
|
|
for (i = 0; i < 4; i++)
|
|
color_option_items [i].user_data = (gpointer) htd;
|
|
|
|
htd->hist = gimp_histogram_new();
|
|
|
|
/* The shell and main vbox */
|
|
htd->shell = gtk_dialog_new ();
|
|
gtk_window_set_wmclass (GTK_WINDOW (htd->shell), "histogram", "Gimp");
|
|
gtk_window_set_title (GTK_WINDOW (htd->shell), "Histogram");
|
|
|
|
/* handle the wm close signal */
|
|
gtk_signal_connect (GTK_OBJECT (htd->shell), "delete_event",
|
|
(GtkSignalFunc) histogram_tool_delete_callback,
|
|
htd);
|
|
|
|
vbox = gtk_vbox_new (FALSE, 2);
|
|
gtk_container_set_border_width (GTK_CONTAINER (vbox), 2);
|
|
gtk_container_add (GTK_CONTAINER (GTK_DIALOG (htd->shell)->vbox), vbox);
|
|
|
|
/* The vbox for the menu and histogram */
|
|
vbox2 = gtk_vbox_new (FALSE, 2);
|
|
gtk_box_pack_start (GTK_BOX (vbox), vbox2, FALSE, FALSE, 0);
|
|
|
|
/* The option menu for selecting channels */
|
|
htd->channel_menu = gtk_hbox_new (FALSE, 6);
|
|
gtk_box_pack_start (GTK_BOX (vbox2), htd->channel_menu, FALSE, FALSE, 0);
|
|
|
|
label = gtk_label_new ("Information on Channel:");
|
|
gtk_box_pack_start (GTK_BOX (htd->channel_menu), label, FALSE, FALSE, 0);
|
|
|
|
menu = build_menu (color_option_items, NULL);
|
|
option_menu = gtk_option_menu_new ();
|
|
gtk_box_pack_start (GTK_BOX (htd->channel_menu), option_menu, FALSE, FALSE, 0);
|
|
|
|
gtk_widget_show (label);
|
|
gtk_widget_show (option_menu);
|
|
gtk_widget_show (htd->channel_menu);
|
|
gtk_option_menu_set_menu (GTK_OPTION_MENU (option_menu), menu);
|
|
|
|
/* The histogram tool histogram */
|
|
frame = gtk_frame_new (NULL);
|
|
gtk_frame_set_shadow_type (GTK_FRAME (frame), GTK_SHADOW_ETCHED_IN);
|
|
gtk_box_pack_start (GTK_BOX (vbox2), frame, FALSE, FALSE, 0);
|
|
|
|
htd->histogram = histogram_widget_new (HISTOGRAM_WIDTH, HISTOGRAM_HEIGHT);
|
|
|
|
gtk_signal_connect (GTK_OBJECT (htd->histogram), "rangechanged",
|
|
(GtkSignalFunc) histogram_tool_histogram_range,
|
|
(void*)htd);
|
|
|
|
gtk_container_add (GTK_CONTAINER (frame), GTK_WIDGET(htd->histogram));
|
|
gtk_widget_show (GTK_WIDGET(htd->histogram));
|
|
gtk_widget_show (frame);
|
|
gtk_widget_show (vbox2);
|
|
|
|
/* The table containing histogram information */
|
|
table = gtk_table_new (4, 4, TRUE);
|
|
gtk_table_set_col_spacings (GTK_TABLE (table), 6);
|
|
gtk_box_pack_start (GTK_BOX (vbox), table, FALSE, FALSE, 0);
|
|
|
|
/* the labels for histogram information */
|
|
for (i = 0; i < 7; i++)
|
|
{
|
|
y = (i % 4);
|
|
x = (i / 4) * 2;
|
|
|
|
label = gtk_label_new (gettext(histogram_info_names[i]));
|
|
gtk_misc_set_alignment (GTK_MISC (label), 1.0, 0.5);
|
|
gtk_table_attach (GTK_TABLE (table), label, x, x + 1, y, y + 1,
|
|
GTK_FILL, GTK_FILL, 2, 2);
|
|
gtk_widget_show (label);
|
|
|
|
htd->info_labels[i] = gtk_label_new ("0");
|
|
gtk_misc_set_alignment (GTK_MISC (htd->info_labels[i]), 0.0, 0.5);
|
|
gtk_table_attach (GTK_TABLE (table), htd->info_labels[i],
|
|
x + 1, x + 2, y, y + 1,
|
|
GTK_FILL, GTK_FILL, 2, 2);
|
|
gtk_widget_show (htd->info_labels[i]);
|
|
}
|
|
|
|
/* The action area */
|
|
action_items[0].user_data = htd;
|
|
build_action_area (GTK_DIALOG (htd->shell), action_items, 1, 0);
|
|
|
|
gtk_widget_show (table);
|
|
gtk_widget_show (vbox);
|
|
gtk_widget_show (htd->shell);
|
|
|
|
return htd;
|
|
}
|
|
|
|
static void
|
|
histogram_tool_close_callback (GtkWidget *widget,
|
|
gpointer client_data)
|
|
{
|
|
HistogramToolDialog *htd;
|
|
|
|
htd = (HistogramToolDialog *) client_data;
|
|
if (GTK_WIDGET_VISIBLE (htd->shell))
|
|
gtk_widget_hide (htd->shell);
|
|
}
|
|
|
|
static gint
|
|
histogram_tool_delete_callback (GtkWidget *widget,
|
|
GdkEvent *event,
|
|
gpointer client_data)
|
|
{
|
|
histogram_tool_close_callback (widget, client_data);
|
|
|
|
return TRUE;
|
|
}
|
|
|
|
static void
|
|
histogram_tool_value_callback (GtkWidget *w,
|
|
gpointer client_data)
|
|
{
|
|
HistogramToolDialog *htd;
|
|
|
|
htd = (HistogramToolDialog *) client_data;
|
|
|
|
if (htd->channel != HISTOGRAM_VALUE)
|
|
{
|
|
htd->channel = HISTOGRAM_VALUE;
|
|
histogram_widget_channel (htd->histogram, htd->channel);
|
|
}
|
|
}
|
|
|
|
static void
|
|
histogram_tool_red_callback (GtkWidget *w,
|
|
gpointer client_data)
|
|
{
|
|
HistogramToolDialog *htd;
|
|
|
|
htd = (HistogramToolDialog *) client_data;
|
|
|
|
if (htd->channel != HISTOGRAM_RED)
|
|
{
|
|
htd->channel = HISTOGRAM_RED;
|
|
histogram_widget_channel (htd->histogram, htd->channel);
|
|
}
|
|
}
|
|
|
|
static void
|
|
histogram_tool_green_callback (GtkWidget *w,
|
|
gpointer client_data)
|
|
{
|
|
HistogramToolDialog *htd;
|
|
|
|
htd = (HistogramToolDialog *) client_data;
|
|
|
|
if (htd->channel != HISTOGRAM_GREEN)
|
|
{
|
|
htd->channel = HISTOGRAM_GREEN;
|
|
histogram_widget_channel (htd->histogram, htd->channel);
|
|
}
|
|
}
|
|
|
|
static void
|
|
histogram_tool_blue_callback (GtkWidget *w,
|
|
gpointer client_data)
|
|
{
|
|
HistogramToolDialog *htd;
|
|
|
|
htd = (HistogramToolDialog *) client_data;
|
|
|
|
if (htd->channel != HISTOGRAM_BLUE)
|
|
{
|
|
htd->channel = HISTOGRAM_BLUE;
|
|
histogram_widget_channel (htd->histogram, htd->channel);
|
|
}
|
|
}
|