1997-11-25 06:05:25 +08:00
/* 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
1998-04-13 13:44:11 +08:00
* Foundation , Inc . , 59 Temple Place - Suite 330 , Boston , MA 02111 - 1307 , USA .
1997-11-25 06:05:25 +08:00
*/
# 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"
added gimphistogram*, histogramwidget*, removed histogram.[ch]
* app/Makefile.am: added gimphistogram*, histogramwidget*,
removed histogram.[ch]
* app/histogram.[ch]: removed. replaced with histogramwidget.[ch].
* app/{gimphistogramP.h, gimphistogram.h, gimphistogram.c}: new
functions that calculate histograms in parallel and perform
calculations on them.
* app/histogramwidget.[ch]: Same as old histogram.[ch], only it is
now a real widget, and it uses GimpHistograms instead of arrays of
values.
* app/curves.c: #include gimphistogram.h instead of histogram.h.
* app/equalize.c: use GimpHistogram and GimpLut.
* app/gimpbrush.c, app/gimpimage.c, app/gimpset.c: use
GTK_RUN_FIRST in calls to gimp_signal_new.
* app/histogram_tool.c, app/levels.c, app/threshold.c: modified to
use the new HistogramWidget.
* app/paint_funcs.c: removed some unused variables.
* app/preferences_dialog.c: only display the num-processor field
if we are configured --with-mp
* plug-ins/gee/gee.c: removed a couple of c++ style comments.
1999-03-01 13:11:19 +08:00
# include "histogramwidget.h"
# include "gimphistogram.h"
1997-11-25 06:05:25 +08:00
# include "histogram_tool.h"
# include "image_map.h"
# include "interface.h"
1998-12-16 08:37:09 +08:00
# include "libgimp/gimpintl.h"
1997-11-25 06:05:25 +08:00
# define TEXT_WIDTH 45
# define HISTOGRAM_WIDTH 256
# define HISTOGRAM_HEIGHT 150
typedef struct _HistogramTool HistogramTool ;
struct _HistogramTool
{
int x , y ; /* coords for last mouse click */
} ;
typedef struct _HistogramToolDialog HistogramToolDialog ;
struct _HistogramToolDialog
{
added gimphistogram*, histogramwidget*, removed histogram.[ch]
* app/Makefile.am: added gimphistogram*, histogramwidget*,
removed histogram.[ch]
* app/histogram.[ch]: removed. replaced with histogramwidget.[ch].
* app/{gimphistogramP.h, gimphistogram.h, gimphistogram.c}: new
functions that calculate histograms in parallel and perform
calculations on them.
* app/histogramwidget.[ch]: Same as old histogram.[ch], only it is
now a real widget, and it uses GimpHistograms instead of arrays of
values.
* app/curves.c: #include gimphistogram.h instead of histogram.h.
* app/equalize.c: use GimpHistogram and GimpLut.
* app/gimpbrush.c, app/gimpimage.c, app/gimpset.c: use
GTK_RUN_FIRST in calls to gimp_signal_new.
* app/histogram_tool.c, app/levels.c, app/threshold.c: modified to
use the new HistogramWidget.
* app/paint_funcs.c: removed some unused variables.
* app/preferences_dialog.c: only display the num-processor field
if we are configured --with-mp
* plug-ins/gee/gee.c: removed a couple of c++ style comments.
1999-03-01 13:11:19 +08:00
GtkWidget * shell ;
GtkWidget * info_labels [ 7 ] ;
GtkWidget * channel_menu ;
HistogramWidget * histogram ;
GimpHistogram * hist ;
1997-11-25 06:05:25 +08:00
double mean ;
double std_dev ;
double median ;
double pixels ;
double count ;
double percentile ;
1998-01-22 15:02:57 +08:00
GimpDrawable * drawable ;
1997-11-25 06:05:25 +08:00
ImageMap image_map ;
int channel ;
int color ;
} ;
/* 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 ) ;
1998-04-14 05:59:28 +08:00
static void histogram_tool_close_callback ( GtkWidget * , gpointer ) ;
1997-11-25 06:05:25 +08:00
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_options = NULL ;
static HistogramToolDialog * histogram_tool_dialog = NULL ;
added gimphistogram*, histogramwidget*, removed histogram.[ch]
* app/Makefile.am: added gimphistogram*, histogramwidget*,
removed histogram.[ch]
* app/histogram.[ch]: removed. replaced with histogramwidget.[ch].
* app/{gimphistogramP.h, gimphistogram.h, gimphistogram.c}: new
functions that calculate histograms in parallel and perform
calculations on them.
* app/histogramwidget.[ch]: Same as old histogram.[ch], only it is
now a real widget, and it uses GimpHistograms instead of arrays of
values.
* app/curves.c: #include gimphistogram.h instead of histogram.h.
* app/equalize.c: use GimpHistogram and GimpLut.
* app/gimpbrush.c, app/gimpimage.c, app/gimpset.c: use
GTK_RUN_FIRST in calls to gimp_signal_new.
* app/histogram_tool.c, app/levels.c, app/threshold.c: modified to
use the new HistogramWidget.
* app/paint_funcs.c: removed some unused variables.
* app/preferences_dialog.c: only display the num-processor field
if we are configured --with-mp
* plug-ins/gee/gee.c: removed a couple of c++ style comments.
1999-03-01 13:11:19 +08:00
static void histogram_tool_histogram_range ( HistogramWidget * , int , int ,
void * ) ;
1997-11-25 06:05:25 +08:00
static void histogram_tool_dialog_update ( HistogramToolDialog * , int , int ) ;
static Argument * histogram_invoker ( Argument * args ) ;
static char * histogram_info_names [ 7 ] =
{
1998-12-16 08:37:09 +08:00
N_ ( " Mean: " ) ,
N_ ( " Std Dev: " ) ,
N_ ( " Median: " ) ,
N_ ( " Pixels: " ) ,
N_ ( " Intensity: " ) ,
N_ ( " Count: " ) ,
N_ ( " Percentile: " )
1997-11-25 06:05:25 +08:00
} ;
/* histogram_tool machinery */
static void
added gimphistogram*, histogramwidget*, removed histogram.[ch]
* app/Makefile.am: added gimphistogram*, histogramwidget*,
removed histogram.[ch]
* app/histogram.[ch]: removed. replaced with histogramwidget.[ch].
* app/{gimphistogramP.h, gimphistogram.h, gimphistogram.c}: new
functions that calculate histograms in parallel and perform
calculations on them.
* app/histogramwidget.[ch]: Same as old histogram.[ch], only it is
now a real widget, and it uses GimpHistograms instead of arrays of
values.
* app/curves.c: #include gimphistogram.h instead of histogram.h.
* app/equalize.c: use GimpHistogram and GimpLut.
* app/gimpbrush.c, app/gimpimage.c, app/gimpset.c: use
GTK_RUN_FIRST in calls to gimp_signal_new.
* app/histogram_tool.c, app/levels.c, app/threshold.c: modified to
use the new HistogramWidget.
* app/paint_funcs.c: removed some unused variables.
* app/preferences_dialog.c: only display the num-processor field
if we are configured --with-mp
* plug-ins/gee/gee.c: removed a couple of c++ style comments.
1999-03-01 13:11:19 +08:00
histogram_tool_histogram_range ( HistogramWidget * w ,
int start ,
1997-11-25 06:05:25 +08:00
int end ,
void * user_data )
{
HistogramToolDialog * htd ;
double pixels ;
double count ;
htd = ( HistogramToolDialog * ) user_data ;
added gimphistogram*, histogramwidget*, removed histogram.[ch]
* app/Makefile.am: added gimphistogram*, histogramwidget*,
removed histogram.[ch]
* app/histogram.[ch]: removed. replaced with histogramwidget.[ch].
* app/{gimphistogramP.h, gimphistogram.h, gimphistogram.c}: new
functions that calculate histograms in parallel and perform
calculations on them.
* app/histogramwidget.[ch]: Same as old histogram.[ch], only it is
now a real widget, and it uses GimpHistograms instead of arrays of
values.
* app/curves.c: #include gimphistogram.h instead of histogram.h.
* app/equalize.c: use GimpHistogram and GimpLut.
* app/gimpbrush.c, app/gimpimage.c, app/gimpset.c: use
GTK_RUN_FIRST in calls to gimp_signal_new.
* app/histogram_tool.c, app/levels.c, app/threshold.c: modified to
use the new HistogramWidget.
* app/paint_funcs.c: removed some unused variables.
* app/preferences_dialog.c: only display the num-processor field
if we are configured --with-mp
* plug-ins/gee/gee.c: removed a couple of c++ style comments.
1999-03-01 13:11:19 +08:00
if ( htd = = NULL | | htd - > hist = = NULL
| | gimp_histogram_nchannels ( htd - > hist ) < = 0 )
return ;
1997-11-25 06:05:25 +08:00
added gimphistogram*, histogramwidget*, removed histogram.[ch]
* app/Makefile.am: added gimphistogram*, histogramwidget*,
removed histogram.[ch]
* app/histogram.[ch]: removed. replaced with histogramwidget.[ch].
* app/{gimphistogramP.h, gimphistogram.h, gimphistogram.c}: new
functions that calculate histograms in parallel and perform
calculations on them.
* app/histogramwidget.[ch]: Same as old histogram.[ch], only it is
now a real widget, and it uses GimpHistograms instead of arrays of
values.
* app/curves.c: #include gimphistogram.h instead of histogram.h.
* app/equalize.c: use GimpHistogram and GimpLut.
* app/gimpbrush.c, app/gimpimage.c, app/gimpset.c: use
GTK_RUN_FIRST in calls to gimp_signal_new.
* app/histogram_tool.c, app/levels.c, app/threshold.c: modified to
use the new HistogramWidget.
* app/paint_funcs.c: removed some unused variables.
* app/preferences_dialog.c: only display the num-processor field
if we are configured --with-mp
* plug-ins/gee/gee.c: removed a couple of c++ style comments.
1999-03-01 13:11:19 +08:00
pixels = gimp_histogram_get_count ( htd - > hist , 0 , 255 ) ;
count = gimp_histogram_get_count ( htd - > hist , start , end ) ;
1997-11-25 06:05:25 +08:00
added gimphistogram*, histogramwidget*, removed histogram.[ch]
* app/Makefile.am: added gimphistogram*, histogramwidget*,
removed histogram.[ch]
* app/histogram.[ch]: removed. replaced with histogramwidget.[ch].
* app/{gimphistogramP.h, gimphistogram.h, gimphistogram.c}: new
functions that calculate histograms in parallel and perform
calculations on them.
* app/histogramwidget.[ch]: Same as old histogram.[ch], only it is
now a real widget, and it uses GimpHistograms instead of arrays of
values.
* app/curves.c: #include gimphistogram.h instead of histogram.h.
* app/equalize.c: use GimpHistogram and GimpLut.
* app/gimpbrush.c, app/gimpimage.c, app/gimpset.c: use
GTK_RUN_FIRST in calls to gimp_signal_new.
* app/histogram_tool.c, app/levels.c, app/threshold.c: modified to
use the new HistogramWidget.
* app/paint_funcs.c: removed some unused variables.
* app/preferences_dialog.c: only display the num-processor field
if we are configured --with-mp
* plug-ins/gee/gee.c: removed a couple of c++ style comments.
1999-03-01 13:11:19 +08:00
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 ) ;
1997-11-25 06:05:25 +08:00
htd - > pixels = pixels ;
htd - > count = count ;
added gimphistogram*, histogramwidget*, removed histogram.[ch]
* app/Makefile.am: added gimphistogram*, histogramwidget*,
removed histogram.[ch]
* app/histogram.[ch]: removed. replaced with histogramwidget.[ch].
* app/{gimphistogramP.h, gimphistogram.h, gimphistogram.c}: new
functions that calculate histograms in parallel and perform
calculations on them.
* app/histogramwidget.[ch]: Same as old histogram.[ch], only it is
now a real widget, and it uses GimpHistograms instead of arrays of
values.
* app/curves.c: #include gimphistogram.h instead of histogram.h.
* app/equalize.c: use GimpHistogram and GimpLut.
* app/gimpbrush.c, app/gimpimage.c, app/gimpset.c: use
GTK_RUN_FIRST in calls to gimp_signal_new.
* app/histogram_tool.c, app/levels.c, app/threshold.c: modified to
use the new HistogramWidget.
* app/paint_funcs.c: removed some unused variables.
* app/preferences_dialog.c: only display the num-processor field
if we are configured --with-mp
* plug-ins/gee/gee.c: removed a couple of c++ style comments.
1999-03-01 13:11:19 +08:00
htd - > percentile = count / pixels ;
1997-11-25 06:05:25 +08:00
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 ) ;
1999-01-11 05:54:02 +08:00
gtk_label_set_text ( GTK_LABEL ( htd - > info_labels [ 0 ] ) , text ) ;
1997-11-25 06:05:25 +08:00
/* std dev */
sprintf ( text , " %3.1f " , htd - > std_dev ) ;
1999-01-11 05:54:02 +08:00
gtk_label_set_text ( GTK_LABEL ( htd - > info_labels [ 1 ] ) , text ) ;
1997-11-25 06:05:25 +08:00
/* median */
sprintf ( text , " %3.1f " , htd - > median ) ;
1999-01-11 05:54:02 +08:00
gtk_label_set_text ( GTK_LABEL ( htd - > info_labels [ 2 ] ) , text ) ;
1997-11-25 06:05:25 +08:00
/* pixels */
sprintf ( text , " %8.1f " , htd - > pixels ) ;
1999-01-11 05:54:02 +08:00
gtk_label_set_text ( GTK_LABEL ( htd - > info_labels [ 3 ] ) , text ) ;
1997-11-25 06:05:25 +08:00
/* intensity */
if ( start = = end )
sprintf ( text , " %d " , start ) ;
else
sprintf ( text , " %d..%d " , start , end ) ;
1999-01-11 05:54:02 +08:00
gtk_label_set_text ( GTK_LABEL ( htd - > info_labels [ 4 ] ) , text ) ;
1997-11-25 06:05:25 +08:00
/* count */
sprintf ( text , " %8.1f " , htd - > count ) ;
1999-01-11 05:54:02 +08:00
gtk_label_set_text ( GTK_LABEL ( htd - > info_labels [ 5 ] ) , text ) ;
1997-11-25 06:05:25 +08:00
/* percentile */
sprintf ( text , " %2.2f " , htd - > percentile * 100 ) ;
1999-01-11 05:54:02 +08:00
gtk_label_set_text ( GTK_LABEL ( htd - > info_labels [ 6 ] ) , text ) ;
1997-11-25 06:05:25 +08:00
}
/* histogram_tool action functions */
static void
histogram_tool_button_press ( Tool * tool ,
GdkEventButton * bevent ,
gpointer gdisp_ptr )
{
1998-04-02 12:51:44 +08:00
GDisplay * gdisp ;
gdisp = gdisp_ptr ;
tool - > drawable = gimage_active_drawable ( gdisp - > gimage ) ;
1997-11-25 06:05:25 +08:00
}
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 )
1998-04-14 05:59:28 +08:00
histogram_tool_close_callback ( NULL , ( gpointer ) histogram_tool_dialog ) ;
1997-11-25 06:05:25 +08:00
break ;
}
}
Tool *
tools_new_histogram_tool ( )
{
Tool * tool ;
HistogramTool * private ;
/* The tool options */
if ( ! histogram_tool_options )
histogram_tool_options = tools_register_no_options ( HISTOGRAM , " Histogram 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 - > cursor_update_func = histogram_tool_cursor_update ;
tool - > control_func = histogram_tool_control ;
1998-03-31 15:23:50 +08:00
tool - > preserve = FALSE ;
1997-11-25 06:05:25 +08:00
return tool ;
}
void
tools_free_histogram_tool ( Tool * tool )
{
HistogramTool * hist ;
hist = ( HistogramTool * ) tool - > private ;
/* Close the histogram dialog */
if ( histogram_tool_dialog )
1998-04-14 05:59:28 +08:00
histogram_tool_close_callback ( NULL , ( gpointer ) histogram_tool_dialog ) ;
1997-11-25 06:05:25 +08:00
g_free ( hist ) ;
}
void
1998-06-22 04:17:21 +08:00
histogram_tool_initialize ( GDisplay * gdisp )
1997-11-25 06:05:25 +08:00
{
added gimphistogram*, histogramwidget*, removed histogram.[ch]
* app/Makefile.am: added gimphistogram*, histogramwidget*,
removed histogram.[ch]
* app/histogram.[ch]: removed. replaced with histogramwidget.[ch].
* app/{gimphistogramP.h, gimphistogram.h, gimphistogram.c}: new
functions that calculate histograms in parallel and perform
calculations on them.
* app/histogramwidget.[ch]: Same as old histogram.[ch], only it is
now a real widget, and it uses GimpHistograms instead of arrays of
values.
* app/curves.c: #include gimphistogram.h instead of histogram.h.
* app/equalize.c: use GimpHistogram and GimpLut.
* app/gimpbrush.c, app/gimpimage.c, app/gimpset.c: use
GTK_RUN_FIRST in calls to gimp_signal_new.
* app/histogram_tool.c, app/levels.c, app/threshold.c: modified to
use the new HistogramWidget.
* app/paint_funcs.c: removed some unused variables.
* app/preferences_dialog.c: only display the num-processor field
if we are configured --with-mp
* plug-ins/gee/gee.c: removed a couple of c++ style comments.
1999-03-01 13:11:19 +08:00
PixelRegion PR ;
1997-11-25 06:05:25 +08:00
if ( drawable_indexed ( gimage_active_drawable ( gdisp - > gimage ) ) )
{
1998-05-28 17:03:57 +08:00
g_message ( " Histogram does not operate on indexed drawables. " ) ;
1997-11-25 06:05:25 +08:00
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 ) ;
1998-01-22 15:02:57 +08:00
histogram_tool_dialog - > drawable = gimage_active_drawable ( gdisp - > gimage ) ;
histogram_tool_dialog - > color = drawable_color ( histogram_tool_dialog - > drawable ) ;
1997-11-25 06:05:25 +08:00
/* 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 ) ;
added gimphistogram*, histogramwidget*, removed histogram.[ch]
* app/Makefile.am: added gimphistogram*, histogramwidget*,
removed histogram.[ch]
* app/histogram.[ch]: removed. replaced with histogramwidget.[ch].
* app/{gimphistogramP.h, gimphistogram.h, gimphistogram.c}: new
functions that calculate histograms in parallel and perform
calculations on them.
* app/histogramwidget.[ch]: Same as old histogram.[ch], only it is
now a real widget, and it uses GimpHistograms instead of arrays of
values.
* app/curves.c: #include gimphistogram.h instead of histogram.h.
* app/equalize.c: use GimpHistogram and GimpLut.
* app/gimpbrush.c, app/gimpimage.c, app/gimpset.c: use
GTK_RUN_FIRST in calls to gimp_signal_new.
* app/histogram_tool.c, app/levels.c, app/threshold.c: modified to
use the new HistogramWidget.
* app/paint_funcs.c: removed some unused variables.
* app/preferences_dialog.c: only display the num-processor field
if we are configured --with-mp
* plug-ins/gee/gee.c: removed a couple of c++ style comments.
1999-03-01 13:11:19 +08:00
/* 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 ) ;
1997-11-25 06:05:25 +08:00
}
1998-04-14 05:59:28 +08:00
/***************************/
/* Histogram Tool dialog */
/***************************/
1997-11-25 06:05:25 +08:00
/* the action area structure */
static ActionAreaItem action_items [ ] =
{
1998-04-14 05:59:28 +08:00
{ " Close " , histogram_tool_close_callback , NULL , NULL }
1997-11-25 06:05:25 +08:00
} ;
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 }
} ;
1998-03-19 06:35:31 +08:00
static HistogramToolDialog *
1997-11-25 06:05:25 +08:00
histogram_tool_new_dialog ( )
{
HistogramToolDialog * htd ;
GtkWidget * vbox ;
GtkWidget * hbox ;
GtkWidget * frame ;
GtkWidget * table ;
GtkWidget * label ;
GtkWidget * option_menu ;
GtkWidget * menu ;
int i ;
int x , y ;
htd = ( HistogramToolDialog * ) g_malloc ( sizeof ( HistogramToolDialog ) ) ;
htd - > channel = HISTOGRAM_VALUE ;
for ( i = 0 ; i < 4 ; i + + )
color_option_items [ i ] . user_data = ( gpointer ) htd ;
added gimphistogram*, histogramwidget*, removed histogram.[ch]
* app/Makefile.am: added gimphistogram*, histogramwidget*,
removed histogram.[ch]
* app/histogram.[ch]: removed. replaced with histogramwidget.[ch].
* app/{gimphistogramP.h, gimphistogram.h, gimphistogram.c}: new
functions that calculate histograms in parallel and perform
calculations on them.
* app/histogramwidget.[ch]: Same as old histogram.[ch], only it is
now a real widget, and it uses GimpHistograms instead of arrays of
values.
* app/curves.c: #include gimphistogram.h instead of histogram.h.
* app/equalize.c: use GimpHistogram and GimpLut.
* app/gimpbrush.c, app/gimpimage.c, app/gimpset.c: use
GTK_RUN_FIRST in calls to gimp_signal_new.
* app/histogram_tool.c, app/levels.c, app/threshold.c: modified to
use the new HistogramWidget.
* app/paint_funcs.c: removed some unused variables.
* app/preferences_dialog.c: only display the num-processor field
if we are configured --with-mp
* plug-ins/gee/gee.c: removed a couple of c++ style comments.
1999-03-01 13:11:19 +08:00
htd - > hist = gimp_histogram_new ( ) ;
1997-11-25 06:05:25 +08:00
/* The shell and main vbox */
htd - > shell = gtk_dialog_new ( ) ;
1998-01-26 06:13:00 +08:00
gtk_window_set_wmclass ( GTK_WINDOW ( htd - > shell ) , " histogram " , " Gimp " ) ;
1997-11-25 06:05:25 +08:00
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 , 1 ) ;
1998-12-04 07:01:44 +08:00
gtk_container_set_border_width ( GTK_CONTAINER ( vbox ) , 1 ) ;
1997-11-25 06:05:25 +08:00
gtk_box_pack_start ( GTK_BOX ( GTK_DIALOG ( htd - > shell ) - > vbox ) , vbox , TRUE , TRUE , 0 ) ;
/* The option menu for selecting channels */
htd - > channel_menu = gtk_hbox_new ( TRUE , 1 ) ;
gtk_box_pack_start ( GTK_BOX ( vbox ) , 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 , 2 ) ;
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 */
hbox = gtk_hbox_new ( TRUE , 1 ) ;
gtk_box_pack_start ( GTK_BOX ( vbox ) , hbox , TRUE , FALSE , 0 ) ;
frame = gtk_frame_new ( NULL ) ;
gtk_frame_set_shadow_type ( GTK_FRAME ( frame ) , GTK_SHADOW_ETCHED_IN ) ;
gtk_box_pack_start ( GTK_BOX ( hbox ) , frame , TRUE , FALSE , 0 ) ;
added gimphistogram*, histogramwidget*, removed histogram.[ch]
* app/Makefile.am: added gimphistogram*, histogramwidget*,
removed histogram.[ch]
* app/histogram.[ch]: removed. replaced with histogramwidget.[ch].
* app/{gimphistogramP.h, gimphistogram.h, gimphistogram.c}: new
functions that calculate histograms in parallel and perform
calculations on them.
* app/histogramwidget.[ch]: Same as old histogram.[ch], only it is
now a real widget, and it uses GimpHistograms instead of arrays of
values.
* app/curves.c: #include gimphistogram.h instead of histogram.h.
* app/equalize.c: use GimpHistogram and GimpLut.
* app/gimpbrush.c, app/gimpimage.c, app/gimpset.c: use
GTK_RUN_FIRST in calls to gimp_signal_new.
* app/histogram_tool.c, app/levels.c, app/threshold.c: modified to
use the new HistogramWidget.
* app/paint_funcs.c: removed some unused variables.
* app/preferences_dialog.c: only display the num-processor field
if we are configured --with-mp
* plug-ins/gee/gee.c: removed a couple of c++ style comments.
1999-03-01 13:11:19 +08:00
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 ) ) ;
1997-11-25 06:05:25 +08:00
gtk_widget_show ( frame ) ;
gtk_widget_show ( hbox ) ;
/* The table containing histogram information */
table = gtk_table_new ( 4 , 4 , TRUE ) ;
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 ;
1998-12-16 08:37:09 +08:00
label = gtk_label_new ( gettext ( histogram_info_names [ i ] ) ) ;
1997-11-25 06:05:25 +08:00
gtk_misc_set_alignment ( GTK_MISC ( label ) , 0.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.5 , 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 ;
1998-04-14 05:59:28 +08:00
build_action_area ( GTK_DIALOG ( htd - > shell ) , action_items , 1 , 0 ) ;
1997-11-25 06:05:25 +08:00
gtk_widget_show ( table ) ;
gtk_widget_show ( vbox ) ;
gtk_widget_show ( htd - > shell ) ;
return htd ;
}
static void
1998-04-14 05:59:28 +08:00
histogram_tool_close_callback ( GtkWidget * widget ,
1997-11-25 06:05:25 +08:00
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 )
{
1998-04-14 05:59:28 +08:00
histogram_tool_close_callback ( widget , client_data ) ;
1997-11-25 06:05:25 +08:00
1998-03-13 06:01:43 +08:00
return TRUE ;
1997-11-25 06:05:25 +08:00
}
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 ;
added gimphistogram*, histogramwidget*, removed histogram.[ch]
* app/Makefile.am: added gimphistogram*, histogramwidget*,
removed histogram.[ch]
* app/histogram.[ch]: removed. replaced with histogramwidget.[ch].
* app/{gimphistogramP.h, gimphistogram.h, gimphistogram.c}: new
functions that calculate histograms in parallel and perform
calculations on them.
* app/histogramwidget.[ch]: Same as old histogram.[ch], only it is
now a real widget, and it uses GimpHistograms instead of arrays of
values.
* app/curves.c: #include gimphistogram.h instead of histogram.h.
* app/equalize.c: use GimpHistogram and GimpLut.
* app/gimpbrush.c, app/gimpimage.c, app/gimpset.c: use
GTK_RUN_FIRST in calls to gimp_signal_new.
* app/histogram_tool.c, app/levels.c, app/threshold.c: modified to
use the new HistogramWidget.
* app/paint_funcs.c: removed some unused variables.
* app/preferences_dialog.c: only display the num-processor field
if we are configured --with-mp
* plug-ins/gee/gee.c: removed a couple of c++ style comments.
1999-03-01 13:11:19 +08:00
histogram_widget_channel ( htd - > histogram , htd - > channel ) ;
1997-11-25 06:05:25 +08:00
}
}
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 ;
added gimphistogram*, histogramwidget*, removed histogram.[ch]
* app/Makefile.am: added gimphistogram*, histogramwidget*,
removed histogram.[ch]
* app/histogram.[ch]: removed. replaced with histogramwidget.[ch].
* app/{gimphistogramP.h, gimphistogram.h, gimphistogram.c}: new
functions that calculate histograms in parallel and perform
calculations on them.
* app/histogramwidget.[ch]: Same as old histogram.[ch], only it is
now a real widget, and it uses GimpHistograms instead of arrays of
values.
* app/curves.c: #include gimphistogram.h instead of histogram.h.
* app/equalize.c: use GimpHistogram and GimpLut.
* app/gimpbrush.c, app/gimpimage.c, app/gimpset.c: use
GTK_RUN_FIRST in calls to gimp_signal_new.
* app/histogram_tool.c, app/levels.c, app/threshold.c: modified to
use the new HistogramWidget.
* app/paint_funcs.c: removed some unused variables.
* app/preferences_dialog.c: only display the num-processor field
if we are configured --with-mp
* plug-ins/gee/gee.c: removed a couple of c++ style comments.
1999-03-01 13:11:19 +08:00
histogram_widget_channel ( htd - > histogram , htd - > channel ) ;
1997-11-25 06:05:25 +08:00
}
}
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 ;
added gimphistogram*, histogramwidget*, removed histogram.[ch]
* app/Makefile.am: added gimphistogram*, histogramwidget*,
removed histogram.[ch]
* app/histogram.[ch]: removed. replaced with histogramwidget.[ch].
* app/{gimphistogramP.h, gimphistogram.h, gimphistogram.c}: new
functions that calculate histograms in parallel and perform
calculations on them.
* app/histogramwidget.[ch]: Same as old histogram.[ch], only it is
now a real widget, and it uses GimpHistograms instead of arrays of
values.
* app/curves.c: #include gimphistogram.h instead of histogram.h.
* app/equalize.c: use GimpHistogram and GimpLut.
* app/gimpbrush.c, app/gimpimage.c, app/gimpset.c: use
GTK_RUN_FIRST in calls to gimp_signal_new.
* app/histogram_tool.c, app/levels.c, app/threshold.c: modified to
use the new HistogramWidget.
* app/paint_funcs.c: removed some unused variables.
* app/preferences_dialog.c: only display the num-processor field
if we are configured --with-mp
* plug-ins/gee/gee.c: removed a couple of c++ style comments.
1999-03-01 13:11:19 +08:00
histogram_widget_channel ( htd - > histogram , htd - > channel ) ;
1997-11-25 06:05:25 +08:00
}
}
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 ;
added gimphistogram*, histogramwidget*, removed histogram.[ch]
* app/Makefile.am: added gimphistogram*, histogramwidget*,
removed histogram.[ch]
* app/histogram.[ch]: removed. replaced with histogramwidget.[ch].
* app/{gimphistogramP.h, gimphistogram.h, gimphistogram.c}: new
functions that calculate histograms in parallel and perform
calculations on them.
* app/histogramwidget.[ch]: Same as old histogram.[ch], only it is
now a real widget, and it uses GimpHistograms instead of arrays of
values.
* app/curves.c: #include gimphistogram.h instead of histogram.h.
* app/equalize.c: use GimpHistogram and GimpLut.
* app/gimpbrush.c, app/gimpimage.c, app/gimpset.c: use
GTK_RUN_FIRST in calls to gimp_signal_new.
* app/histogram_tool.c, app/levels.c, app/threshold.c: modified to
use the new HistogramWidget.
* app/paint_funcs.c: removed some unused variables.
* app/preferences_dialog.c: only display the num-processor field
if we are configured --with-mp
* plug-ins/gee/gee.c: removed a couple of c++ style comments.
1999-03-01 13:11:19 +08:00
histogram_widget_channel ( htd - > histogram , htd - > channel ) ;
1997-11-25 06:05:25 +08:00
}
}
/* The histogram procedure definition */
ProcArg histogram_args [ ] =
{
{ PDB_DRAWABLE ,
" drawable " ,
" the drawable "
} ,
{ PDB_INT32 ,
" channel " ,
" the channel to modify: { VALUE (0), RED (1), GREEN (2), BLUE (3), GRAY (0) } "
} ,
{ PDB_INT32 ,
" start_range " ,
" start of the intensity measurement range "
} ,
{ PDB_INT32 ,
" end_range " ,
" end of the intensity measurement range "
}
} ;
ProcArg histogram_out_args [ ] =
{
{ PDB_FLOAT ,
" mean " ,
" mean intensity value "
} ,
{ PDB_FLOAT ,
" std_dev " ,
" standard deviation of intensity values "
} ,
{ PDB_FLOAT ,
" median " ,
" median intensity value "
} ,
{ PDB_FLOAT ,
" pixels " ,
" alpha-weighted pixel count for entire image "
} ,
{ PDB_FLOAT ,
" count " ,
" alpha-weighted pixel count for range "
} ,
{ PDB_FLOAT ,
" percentile " ,
" percentile that range falls under "
}
} ;
ProcRecord histogram_proc =
{
" gimp_histogram " ,
" Returns information on the intensity histogram for the specified drawable " ,
" This tool makes it possible to gather information about the intensity histogram of a drawable. A channel to examine is first specified. This can be either value, red, green, or blue, depending on whether the drawable is of type color or grayscale. The drawable may not be indexed. Second, a range of intensities are specified. The gimp_histogram function returns statistics based on the pixels in the drawable that fall under this range of values. Mean, standard deviation, median, number of pixels, and percentile are all returned. Additionally, the total count of pixels in the image is returned. Counts of pixels are weighted by any associated alpha values and by the current selection mask. That is, pixels that lie outside an active selection mask will not be counted. Similarly, pixels with transparent alpha values will not be counted. " ,
" Spencer Kimball & Peter Mattis " ,
" Spencer Kimball & Peter Mattis " ,
" 1995-1996 " ,
PDB_INTERNAL ,
/* Input arguments */
API-mega-break-it-all patch part one: removed the unnecessary PDB_IMAGE
* airbrush.c, blend.c, brightness_contrast.c, bucket_fill.c
by_color_select.c, channel_ops.c, clone.c, color_balance.c
color_picker.c, convolve.c, curves.c, desaturate.c, edit_cmds.c
equalize.c, eraser.c, flip_tool.c, fuzzy_select.c,
gimage_mask_cmds.c histogram_tool.c, hue_saturation.c, invert.c,
levels.c, pencil.c paintbrush.c, perspective_tool.c, posterize.c,
rotate_tool.c scale_tool.c, shear_tool.c, text_tool.c, threshold.c:
API-mega-break-it-all patch part one: removed the unnecessary
PDB_IMAGE argument from many functions.
Affected functions:
gimp_airbrush gimp_blend gimp_brightness_contrast gimp_bucket_fill
gimp_by_color_select gimp_channel_ops_offset gimp_clone gimp_color_balance
gimp_color_picker gimp_convolve gimp_curves_explicit gimp_curves_spline
gimp_desaturate gimp_edit_clear gimp_edit_copy gimp_edit_cut gimp_edit_fill
gimp_edit_paste gimp_edit_stroke gimp_equalize gimp_eraser
gimp_eraser_extended gimp_flip gimp_fuzzy_select gimp_histogram
gimp_hue_saturation gimp_invert gimp_levels gimp_paintbrush
gimp_paintbrush_extended gimp_pencil gimp_perspective gimp_posterize
gimp_rotate gimp_scale gimp_selection_float gimp_selection_layer_alpha
gimp_selection_load gimp_shear gimp_threshold
1998-11-14 04:40:00 +08:00
4 ,
1997-11-25 06:05:25 +08:00
histogram_args ,
/* Output arguments */
6 ,
histogram_out_args ,
/* Exec method */
{ { histogram_invoker } } ,
} ;
static Argument *
histogram_invoker ( Argument * args )
{
Argument * return_args ;
PixelRegion srcPR , maskPR ;
int success = TRUE ;
HistogramToolDialog htd ;
GImage * gimage ;
Channel * mask ;
1998-01-22 15:02:57 +08:00
GimpDrawable * drawable ;
1997-11-25 06:05:25 +08:00
int channel ;
int low_range ;
int high_range ;
int int_value ;
int no_mask ;
int x1 , y1 , x2 , y2 ;
int off_x , off_y ;
1998-01-22 15:02:57 +08:00
drawable = NULL ;
1997-11-25 06:05:25 +08:00
low_range = 0 ;
high_range = 0 ;
/* the drawable */
if ( success )
{
API-mega-break-it-all patch part one: removed the unnecessary PDB_IMAGE
* airbrush.c, blend.c, brightness_contrast.c, bucket_fill.c
by_color_select.c, channel_ops.c, clone.c, color_balance.c
color_picker.c, convolve.c, curves.c, desaturate.c, edit_cmds.c
equalize.c, eraser.c, flip_tool.c, fuzzy_select.c,
gimage_mask_cmds.c histogram_tool.c, hue_saturation.c, invert.c,
levels.c, pencil.c paintbrush.c, perspective_tool.c, posterize.c,
rotate_tool.c scale_tool.c, shear_tool.c, text_tool.c, threshold.c:
API-mega-break-it-all patch part one: removed the unnecessary
PDB_IMAGE argument from many functions.
Affected functions:
gimp_airbrush gimp_blend gimp_brightness_contrast gimp_bucket_fill
gimp_by_color_select gimp_channel_ops_offset gimp_clone gimp_color_balance
gimp_color_picker gimp_convolve gimp_curves_explicit gimp_curves_spline
gimp_desaturate gimp_edit_clear gimp_edit_copy gimp_edit_cut gimp_edit_fill
gimp_edit_paste gimp_edit_stroke gimp_equalize gimp_eraser
gimp_eraser_extended gimp_flip gimp_fuzzy_select gimp_histogram
gimp_hue_saturation gimp_invert gimp_levels gimp_paintbrush
gimp_paintbrush_extended gimp_pencil gimp_perspective gimp_posterize
gimp_rotate gimp_scale gimp_selection_float gimp_selection_layer_alpha
gimp_selection_load gimp_shear gimp_threshold
1998-11-14 04:40:00 +08:00
int_value = args [ 0 ] . value . pdb_int ;
1998-01-22 15:02:57 +08:00
drawable = drawable_get_ID ( int_value ) ;
API-mega-break-it-all patch part one: removed the unnecessary PDB_IMAGE
* airbrush.c, blend.c, brightness_contrast.c, bucket_fill.c
by_color_select.c, channel_ops.c, clone.c, color_balance.c
color_picker.c, convolve.c, curves.c, desaturate.c, edit_cmds.c
equalize.c, eraser.c, flip_tool.c, fuzzy_select.c,
gimage_mask_cmds.c histogram_tool.c, hue_saturation.c, invert.c,
levels.c, pencil.c paintbrush.c, perspective_tool.c, posterize.c,
rotate_tool.c scale_tool.c, shear_tool.c, text_tool.c, threshold.c:
API-mega-break-it-all patch part one: removed the unnecessary
PDB_IMAGE argument from many functions.
Affected functions:
gimp_airbrush gimp_blend gimp_brightness_contrast gimp_bucket_fill
gimp_by_color_select gimp_channel_ops_offset gimp_clone gimp_color_balance
gimp_color_picker gimp_convolve gimp_curves_explicit gimp_curves_spline
gimp_desaturate gimp_edit_clear gimp_edit_copy gimp_edit_cut gimp_edit_fill
gimp_edit_paste gimp_edit_stroke gimp_equalize gimp_eraser
gimp_eraser_extended gimp_flip gimp_fuzzy_select gimp_histogram
gimp_hue_saturation gimp_invert gimp_levels gimp_paintbrush
gimp_paintbrush_extended gimp_pencil gimp_perspective gimp_posterize
gimp_rotate gimp_scale gimp_selection_float gimp_selection_layer_alpha
gimp_selection_load gimp_shear gimp_threshold
1998-11-14 04:40:00 +08:00
if ( drawable = = NULL )
success = FALSE ;
else
gimage = drawable_gimage ( drawable ) ;
1997-11-25 06:05:25 +08:00
}
/* channel */
if ( success )
{
API-mega-break-it-all patch part one: removed the unnecessary PDB_IMAGE
* airbrush.c, blend.c, brightness_contrast.c, bucket_fill.c
by_color_select.c, channel_ops.c, clone.c, color_balance.c
color_picker.c, convolve.c, curves.c, desaturate.c, edit_cmds.c
equalize.c, eraser.c, flip_tool.c, fuzzy_select.c,
gimage_mask_cmds.c histogram_tool.c, hue_saturation.c, invert.c,
levels.c, pencil.c paintbrush.c, perspective_tool.c, posterize.c,
rotate_tool.c scale_tool.c, shear_tool.c, text_tool.c, threshold.c:
API-mega-break-it-all patch part one: removed the unnecessary
PDB_IMAGE argument from many functions.
Affected functions:
gimp_airbrush gimp_blend gimp_brightness_contrast gimp_bucket_fill
gimp_by_color_select gimp_channel_ops_offset gimp_clone gimp_color_balance
gimp_color_picker gimp_convolve gimp_curves_explicit gimp_curves_spline
gimp_desaturate gimp_edit_clear gimp_edit_copy gimp_edit_cut gimp_edit_fill
gimp_edit_paste gimp_edit_stroke gimp_equalize gimp_eraser
gimp_eraser_extended gimp_flip gimp_fuzzy_select gimp_histogram
gimp_hue_saturation gimp_invert gimp_levels gimp_paintbrush
gimp_paintbrush_extended gimp_pencil gimp_perspective gimp_posterize
gimp_rotate gimp_scale gimp_selection_float gimp_selection_layer_alpha
gimp_selection_load gimp_shear gimp_threshold
1998-11-14 04:40:00 +08:00
int_value = args [ 1 ] . value . pdb_int ;
1997-11-25 06:05:25 +08:00
if ( success )
{
1998-01-22 15:02:57 +08:00
if ( drawable_gray ( drawable ) )
1997-11-25 06:05:25 +08:00
{
if ( int_value ! = 0 )
success = FALSE ;
}
1998-01-22 15:02:57 +08:00
else if ( drawable_color ( drawable ) )
1997-11-25 06:05:25 +08:00
{
if ( int_value < 0 | | int_value > 3 )
success = FALSE ;
}
else
success = FALSE ;
}
channel = int_value ;
}
/* low range */
if ( success )
{
API-mega-break-it-all patch part one: removed the unnecessary PDB_IMAGE
* airbrush.c, blend.c, brightness_contrast.c, bucket_fill.c
by_color_select.c, channel_ops.c, clone.c, color_balance.c
color_picker.c, convolve.c, curves.c, desaturate.c, edit_cmds.c
equalize.c, eraser.c, flip_tool.c, fuzzy_select.c,
gimage_mask_cmds.c histogram_tool.c, hue_saturation.c, invert.c,
levels.c, pencil.c paintbrush.c, perspective_tool.c, posterize.c,
rotate_tool.c scale_tool.c, shear_tool.c, text_tool.c, threshold.c:
API-mega-break-it-all patch part one: removed the unnecessary
PDB_IMAGE argument from many functions.
Affected functions:
gimp_airbrush gimp_blend gimp_brightness_contrast gimp_bucket_fill
gimp_by_color_select gimp_channel_ops_offset gimp_clone gimp_color_balance
gimp_color_picker gimp_convolve gimp_curves_explicit gimp_curves_spline
gimp_desaturate gimp_edit_clear gimp_edit_copy gimp_edit_cut gimp_edit_fill
gimp_edit_paste gimp_edit_stroke gimp_equalize gimp_eraser
gimp_eraser_extended gimp_flip gimp_fuzzy_select gimp_histogram
gimp_hue_saturation gimp_invert gimp_levels gimp_paintbrush
gimp_paintbrush_extended gimp_pencil gimp_perspective gimp_posterize
gimp_rotate gimp_scale gimp_selection_float gimp_selection_layer_alpha
gimp_selection_load gimp_shear gimp_threshold
1998-11-14 04:40:00 +08:00
int_value = args [ 2 ] . value . pdb_int ;
1997-11-25 06:05:25 +08:00
if ( int_value > = 0 & & int_value < 256 )
low_range = int_value ;
else
success = FALSE ;
}
/* high range */
if ( success )
{
API-mega-break-it-all patch part one: removed the unnecessary PDB_IMAGE
* airbrush.c, blend.c, brightness_contrast.c, bucket_fill.c
by_color_select.c, channel_ops.c, clone.c, color_balance.c
color_picker.c, convolve.c, curves.c, desaturate.c, edit_cmds.c
equalize.c, eraser.c, flip_tool.c, fuzzy_select.c,
gimage_mask_cmds.c histogram_tool.c, hue_saturation.c, invert.c,
levels.c, pencil.c paintbrush.c, perspective_tool.c, posterize.c,
rotate_tool.c scale_tool.c, shear_tool.c, text_tool.c, threshold.c:
API-mega-break-it-all patch part one: removed the unnecessary
PDB_IMAGE argument from many functions.
Affected functions:
gimp_airbrush gimp_blend gimp_brightness_contrast gimp_bucket_fill
gimp_by_color_select gimp_channel_ops_offset gimp_clone gimp_color_balance
gimp_color_picker gimp_convolve gimp_curves_explicit gimp_curves_spline
gimp_desaturate gimp_edit_clear gimp_edit_copy gimp_edit_cut gimp_edit_fill
gimp_edit_paste gimp_edit_stroke gimp_equalize gimp_eraser
gimp_eraser_extended gimp_flip gimp_fuzzy_select gimp_histogram
gimp_hue_saturation gimp_invert gimp_levels gimp_paintbrush
gimp_paintbrush_extended gimp_pencil gimp_perspective gimp_posterize
gimp_rotate gimp_scale gimp_selection_float gimp_selection_layer_alpha
gimp_selection_load gimp_shear gimp_threshold
1998-11-14 04:40:00 +08:00
int_value = args [ 3 ] . value . pdb_int ;
1997-11-25 06:05:25 +08:00
if ( int_value > = 0 & & int_value < 256 )
high_range = int_value ;
else
success = FALSE ;
}
/* arrange to calculate the histogram */
if ( success )
{
htd . shell = NULL ;
htd . channel = channel ;
1998-01-22 15:02:57 +08:00
htd . drawable = drawable ;
htd . color = drawable_color ( drawable ) ;
added gimphistogram*, histogramwidget*, removed histogram.[ch]
* app/Makefile.am: added gimphistogram*, histogramwidget*,
removed histogram.[ch]
* app/histogram.[ch]: removed. replaced with histogramwidget.[ch].
* app/{gimphistogramP.h, gimphistogram.h, gimphistogram.c}: new
functions that calculate histograms in parallel and perform
calculations on them.
* app/histogramwidget.[ch]: Same as old histogram.[ch], only it is
now a real widget, and it uses GimpHistograms instead of arrays of
values.
* app/curves.c: #include gimphistogram.h instead of histogram.h.
* app/equalize.c: use GimpHistogram and GimpLut.
* app/gimpbrush.c, app/gimpimage.c, app/gimpset.c: use
GTK_RUN_FIRST in calls to gimp_signal_new.
* app/histogram_tool.c, app/levels.c, app/threshold.c: modified to
use the new HistogramWidget.
* app/paint_funcs.c: removed some unused variables.
* app/preferences_dialog.c: only display the num-processor field
if we are configured --with-mp
* plug-ins/gee/gee.c: removed a couple of c++ style comments.
1999-03-01 13:11:19 +08:00
htd . histogram = histogram_widget_new ( HISTOGRAM_WIDTH ,
HISTOGRAM_HEIGHT ) ;
gtk_signal_connect ( GTK_OBJECT ( htd . histogram ) , " rangechanged " ,
( GtkSignalFunc ) histogram_tool_histogram_range ,
( void * ) & htd ) ;
1997-11-25 06:05:25 +08:00
/* The information collection should occur only within selection bounds */
1998-01-22 15:02:57 +08:00
no_mask = ( drawable_mask_bounds ( drawable , & x1 , & y1 , & x2 , & y2 ) = = FALSE ) ;
drawable_offsets ( drawable , & off_x , & off_y ) ;
1997-11-25 06:05:25 +08:00
/* Configure the src from the drawable data */
1998-01-22 15:02:57 +08:00
pixel_region_init ( & srcPR , drawable_data ( drawable ) ,
1997-11-25 06:05:25 +08:00
x1 , y1 , ( x2 - x1 ) , ( y2 - y1 ) , FALSE ) ;
/* Configure the mask from the gimage's selection mask */
mask = gimage_get_mask ( gimage ) ;
1998-01-22 15:02:57 +08:00
pixel_region_init ( & maskPR , drawable_data ( GIMP_DRAWABLE ( mask ) ) ,
1997-11-25 06:05:25 +08:00
x1 + off_x , y1 + off_y , ( x2 - x1 ) , ( y2 - y1 ) , FALSE ) ;
/* Apply the image transformation to the pixels */
added gimphistogram*, histogramwidget*, removed histogram.[ch]
* app/Makefile.am: added gimphistogram*, histogramwidget*,
removed histogram.[ch]
* app/histogram.[ch]: removed. replaced with histogramwidget.[ch].
* app/{gimphistogramP.h, gimphistogram.h, gimphistogram.c}: new
functions that calculate histograms in parallel and perform
calculations on them.
* app/histogramwidget.[ch]: Same as old histogram.[ch], only it is
now a real widget, and it uses GimpHistograms instead of arrays of
values.
* app/curves.c: #include gimphistogram.h instead of histogram.h.
* app/equalize.c: use GimpHistogram and GimpLut.
* app/gimpbrush.c, app/gimpimage.c, app/gimpset.c: use
GTK_RUN_FIRST in calls to gimp_signal_new.
* app/histogram_tool.c, app/levels.c, app/threshold.c: modified to
use the new HistogramWidget.
* app/paint_funcs.c: removed some unused variables.
* app/preferences_dialog.c: only display the num-processor field
if we are configured --with-mp
* plug-ins/gee/gee.c: removed a couple of c++ style comments.
1999-03-01 13:11:19 +08:00
htd . hist = gimp_histogram_new ( ) ;
1997-11-25 06:05:25 +08:00
if ( no_mask )
added gimphistogram*, histogramwidget*, removed histogram.[ch]
* app/Makefile.am: added gimphistogram*, histogramwidget*,
removed histogram.[ch]
* app/histogram.[ch]: removed. replaced with histogramwidget.[ch].
* app/{gimphistogramP.h, gimphistogram.h, gimphistogram.c}: new
functions that calculate histograms in parallel and perform
calculations on them.
* app/histogramwidget.[ch]: Same as old histogram.[ch], only it is
now a real widget, and it uses GimpHistograms instead of arrays of
values.
* app/curves.c: #include gimphistogram.h instead of histogram.h.
* app/equalize.c: use GimpHistogram and GimpLut.
* app/gimpbrush.c, app/gimpimage.c, app/gimpset.c: use
GTK_RUN_FIRST in calls to gimp_signal_new.
* app/histogram_tool.c, app/levels.c, app/threshold.c: modified to
use the new HistogramWidget.
* app/paint_funcs.c: removed some unused variables.
* app/preferences_dialog.c: only display the num-processor field
if we are configured --with-mp
* plug-ins/gee/gee.c: removed a couple of c++ style comments.
1999-03-01 13:11:19 +08:00
gimp_histogram_calculate ( htd . hist , & srcPR , NULL ) ;
1997-11-25 06:05:25 +08:00
else
added gimphistogram*, histogramwidget*, removed histogram.[ch]
* app/Makefile.am: added gimphistogram*, histogramwidget*,
removed histogram.[ch]
* app/histogram.[ch]: removed. replaced with histogramwidget.[ch].
* app/{gimphistogramP.h, gimphistogram.h, gimphistogram.c}: new
functions that calculate histograms in parallel and perform
calculations on them.
* app/histogramwidget.[ch]: Same as old histogram.[ch], only it is
now a real widget, and it uses GimpHistograms instead of arrays of
values.
* app/curves.c: #include gimphistogram.h instead of histogram.h.
* app/equalize.c: use GimpHistogram and GimpLut.
* app/gimpbrush.c, app/gimpimage.c, app/gimpset.c: use
GTK_RUN_FIRST in calls to gimp_signal_new.
* app/histogram_tool.c, app/levels.c, app/threshold.c: modified to
use the new HistogramWidget.
* app/paint_funcs.c: removed some unused variables.
* app/preferences_dialog.c: only display the num-processor field
if we are configured --with-mp
* plug-ins/gee/gee.c: removed a couple of c++ style comments.
1999-03-01 13:11:19 +08:00
gimp_histogram_calculate ( htd . hist , & srcPR , & maskPR ) ;
1997-11-25 06:05:25 +08:00
/* calculate the statistics */
added gimphistogram*, histogramwidget*, removed histogram.[ch]
* app/Makefile.am: added gimphistogram*, histogramwidget*,
removed histogram.[ch]
* app/histogram.[ch]: removed. replaced with histogramwidget.[ch].
* app/{gimphistogramP.h, gimphistogram.h, gimphistogram.c}: new
functions that calculate histograms in parallel and perform
calculations on them.
* app/histogramwidget.[ch]: Same as old histogram.[ch], only it is
now a real widget, and it uses GimpHistograms instead of arrays of
values.
* app/curves.c: #include gimphistogram.h instead of histogram.h.
* app/equalize.c: use GimpHistogram and GimpLut.
* app/gimpbrush.c, app/gimpimage.c, app/gimpset.c: use
GTK_RUN_FIRST in calls to gimp_signal_new.
* app/histogram_tool.c, app/levels.c, app/threshold.c: modified to
use the new HistogramWidget.
* app/paint_funcs.c: removed some unused variables.
* app/preferences_dialog.c: only display the num-processor field
if we are configured --with-mp
* plug-ins/gee/gee.c: removed a couple of c++ style comments.
1999-03-01 13:11:19 +08:00
histogram_tool_histogram_range ( htd . histogram , low_range , high_range ,
& htd ) ;
1997-11-25 06:05:25 +08:00
return_args = procedural_db_return_args ( & histogram_proc , success ) ;
return_args [ 1 ] . value . pdb_float = htd . mean ;
return_args [ 2 ] . value . pdb_float = htd . std_dev ;
return_args [ 3 ] . value . pdb_float = htd . median ;
return_args [ 4 ] . value . pdb_float = htd . pixels ;
return_args [ 5 ] . value . pdb_float = htd . count ;
return_args [ 6 ] . value . pdb_float = htd . percentile ;
}
else
return_args = procedural_db_return_args ( & histogram_proc , success ) ;
return return_args ;
}