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 "colormaps.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 "image_map.h"
# include "interface.h"
# include "levels.h"
1999-02-16 16:53:54 +08:00
# include "gimplut.h"
1997-11-25 06:05:25 +08:00
1998-12-16 08:37:09 +08:00
# include "libgimp/gimpintl.h"
1997-11-25 06:05:25 +08:00
# define LOW_INPUT 0x1
# define GAMMA 0x2
# define HIGH_INPUT 0x4
# define LOW_OUTPUT 0x8
# define HIGH_OUTPUT 0x10
# define INPUT_LEVELS 0x20
# define OUTPUT_LEVELS 0x40
# define INPUT_SLIDERS 0x80
# define OUTPUT_SLIDERS 0x100
# define DRAW 0x200
# define ALL 0xFFF
# define TEXT_WIDTH 45
# define DA_WIDTH 256
# define DA_HEIGHT 25
# define GRADIENT_HEIGHT 15
# define CONTROL_HEIGHT DA_HEIGHT - GRADIENT_HEIGHT
# define HISTOGRAM_WIDTH 256
# define HISTOGRAM_HEIGHT 150
# define LEVELS_DA_MASK GDK_EXPOSURE_MASK | \
GDK_ENTER_NOTIFY_MASK | \
GDK_BUTTON_PRESS_MASK | \
GDK_BUTTON_RELEASE_MASK | \
GDK_BUTTON1_MOTION_MASK | \
GDK_POINTER_MOTION_HINT_MASK
typedef struct _Levels Levels ;
struct _Levels
{
int x , y ; /* coords for last mouse click */
} ;
typedef struct _LevelsDialog LevelsDialog ;
struct _LevelsDialog
{
GtkWidget * shell ;
GtkWidget * low_input_text ;
GtkWidget * gamma_text ;
GtkWidget * high_input_text ;
GtkWidget * low_output_text ;
GtkWidget * high_output_text ;
GtkWidget * input_levels_da [ 2 ] ;
GtkWidget * output_levels_da [ 2 ] ;
GtkWidget * 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
HistogramWidget * histogram ;
GimpHistogram * hist ;
1997-11-25 06:05:25 +08:00
1998-01-22 15:02:57 +08:00
GimpDrawable * drawable ;
1997-11-25 06:05:25 +08:00
ImageMap image_map ;
int color ;
int channel ;
int low_input [ 5 ] ;
double gamma [ 5 ] ;
int high_input [ 5 ] ;
int low_output [ 5 ] ;
int high_output [ 5 ] ;
gint preview ;
int active_slider ;
int slider_pos [ 5 ] ; /* positions for the five sliders */
1999-02-16 16:53:54 +08:00
unsigned char input [ 5 ] [ 256 ] ; /* this is used only by the gui */
1997-11-25 06:05:25 +08:00
1999-02-16 16:53:54 +08:00
GimpLut * lut ;
1997-11-25 06:05:25 +08:00
} ;
/* levels action functions */
static void levels_button_press ( Tool * , GdkEventButton * , gpointer ) ;
static void levels_button_release ( Tool * , GdkEventButton * , gpointer ) ;
static void levels_motion ( Tool * , GdkEventMotion * , gpointer ) ;
static void levels_cursor_update ( Tool * , GdkEventMotion * , gpointer ) ;
static void levels_control ( Tool * , int , gpointer ) ;
static LevelsDialog * levels_new_dialog ( void ) ;
static void levels_calculate_transfers ( LevelsDialog * ) ;
static void levels_update ( LevelsDialog * , int ) ;
static void levels_preview ( LevelsDialog * ) ;
static void levels_value_callback ( GtkWidget * , gpointer ) ;
static void levels_red_callback ( GtkWidget * , gpointer ) ;
static void levels_green_callback ( GtkWidget * , gpointer ) ;
static void levels_blue_callback ( GtkWidget * , gpointer ) ;
static void levels_alpha_callback ( GtkWidget * , gpointer ) ;
static void levels_auto_levels_callback ( GtkWidget * , gpointer ) ;
static void levels_ok_callback ( GtkWidget * , gpointer ) ;
static void levels_cancel_callback ( GtkWidget * , gpointer ) ;
static gint levels_delete_callback ( GtkWidget * , GdkEvent * , gpointer ) ;
static void levels_preview_update ( GtkWidget * , gpointer ) ;
static void levels_low_input_text_update ( GtkWidget * , gpointer ) ;
static void levels_gamma_text_update ( GtkWidget * , gpointer ) ;
static void levels_high_input_text_update ( GtkWidget * , gpointer ) ;
static void levels_low_output_text_update ( GtkWidget * , gpointer ) ;
static void levels_high_output_text_update ( GtkWidget * , gpointer ) ;
static gint levels_input_da_events ( GtkWidget * , GdkEvent * , LevelsDialog * ) ;
static gint levels_output_da_events ( GtkWidget * , GdkEvent * , LevelsDialog * ) ;
static void * levels_options = NULL ;
static LevelsDialog * levels_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 levels_histogram_range ( HistogramWidget * , int , int ,
void * ) ;
1997-11-25 06:05:25 +08:00
static Argument * levels_invoker ( Argument * ) ;
/* levels machinery */
1999-02-16 16:53:54 +08:00
static float
levels_lut_func ( LevelsDialog * ld ,
int nchannels , int channel , float value )
1997-11-25 06:05:25 +08:00
{
1999-02-16 16:53:54 +08:00
double inten ;
int j ;
1997-11-25 06:05:25 +08:00
1999-02-16 16:53:54 +08:00
if ( nchannels = = 1 )
j = 0 ;
else
j = channel + 1 ;
inten = value ;
/* For color images this runs through the loop with j = channel +1
the first time and j = 0 the second time */
/* For bw images this runs through the loop with j = 0 the first and
only time */
for ( ; j > = 0 ; j - = ( channel + 1 ) )
{
/* don't apply the overall curve to the alpha channel */
if ( j = = 0 & & ( nchannels = = 2 | | nchannels = = 4 )
& & channel = = nchannels - 1 )
return inten ;
/* determine input intensity */
if ( ld - > high_input [ j ] ! = ld - > low_input [ j ] )
inten = ( double ) ( 255.0 * inten - ld - > low_input [ j ] ) /
( double ) ( ld - > high_input [ j ] - ld - > low_input [ j ] ) ;
else
inten = ( double ) ( 255.0 * inten - ld - > low_input [ j ] ) ;
if ( ld - > gamma [ j ] ! = 0.0 )
1999-03-20 12:41:59 +08:00
{
if ( inten > = 0.0 )
inten = pow ( inten , ( 1.0 / ld - > gamma [ j ] ) ) ;
else
inten = - pow ( - inten , ( 1.0 / ld - > gamma [ j ] ) ) ;
}
1997-11-25 06:05:25 +08:00
1999-02-16 16:53:54 +08:00
/* determine the output intensity */
if ( ld - > high_output [ j ] > = ld - > low_output [ j ] )
inten = ( double ) ( inten * ( ld - > high_output [ j ] - ld - > low_output [ j ] ) +
ld - > low_output [ j ] ) ;
else if ( ld - > high_output [ j ] < ld - > low_output [ j ] )
inten = ( double ) ( ld - > low_output [ j ] - inten *
( ld - > low_output [ j ] - ld - > high_output [ j ] ) ) ;
1997-11-25 06:05:25 +08:00
1999-02-16 16:53:54 +08:00
inten / = 255.0 ;
}
return inten ;
1997-11-25 06:05:25 +08:00
}
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
levels_histogram_range ( HistogramWidget * h ,
int start ,
1997-11-25 06:05:25 +08:00
int end ,
void * user_data )
{
LevelsDialog * ld ;
ld = ( LevelsDialog * ) 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
histogram_widget_range ( ld - > histogram , - 1 , - 1 ) ;
1997-11-25 06:05:25 +08:00
}
/* levels action functions */
static void
levels_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
levels_button_release ( Tool * tool ,
GdkEventButton * bevent ,
gpointer gdisp_ptr )
{
}
static void
levels_motion ( Tool * tool ,
GdkEventMotion * mevent ,
gpointer gdisp_ptr )
{
}
static void
levels_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
levels_control ( Tool * tool ,
int action ,
gpointer gdisp_ptr )
{
Levels * _levels ;
_levels = ( Levels * ) tool - > private ;
switch ( action )
{
case PAUSE :
break ;
case RESUME :
break ;
case HALT :
if ( levels_dialog )
{
1998-03-31 15:23:50 +08:00
active_tool - > preserve = TRUE ;
1997-11-25 06:05:25 +08:00
image_map_abort ( levels_dialog - > image_map ) ;
1998-03-31 15:23:50 +08:00
active_tool - > preserve = FALSE ;
1997-11-25 06:05:25 +08:00
levels_dialog - > image_map = NULL ;
levels_cancel_callback ( NULL , ( gpointer ) levels_dialog ) ;
}
break ;
}
}
Tool *
tools_new_levels ( )
{
Tool * tool ;
Levels * private ;
/* The tool options */
if ( ! levels_options )
1998-12-16 08:37:09 +08:00
levels_options = tools_register_no_options ( LEVELS , _ ( " Levels Options " ) ) ;
1997-11-25 06:05:25 +08:00
tool = ( Tool * ) g_malloc ( sizeof ( Tool ) ) ;
private = ( Levels * ) g_malloc ( sizeof ( Levels ) ) ;
tool - > type = LEVELS ;
tool - > state = INACTIVE ;
tool - > scroll_lock = 1 ; /* Disallow scrolling */
tool - > auto_snap_to = TRUE ;
tool - > private = ( void * ) private ;
tool - > button_press_func = levels_button_press ;
tool - > button_release_func = levels_button_release ;
tool - > motion_func = levels_motion ;
tool - > arrow_keys_func = standard_arrow_keys_func ;
tool - > cursor_update_func = levels_cursor_update ;
tool - > control_func = levels_control ;
1998-03-31 15:23:50 +08:00
tool - > preserve = FALSE ;
1998-04-02 12:51:44 +08:00
tool - > gdisp_ptr = NULL ;
tool - > drawable = NULL ;
1997-11-25 06:05:25 +08:00
return tool ;
}
void
tools_free_levels ( Tool * tool )
{
Levels * _levels ;
_levels = ( Levels * ) tool - > private ;
/* Close the color select dialog */
if ( levels_dialog )
1998-04-02 12:51:44 +08:00
levels_cancel_callback ( NULL , ( gpointer ) levels_dialog ) ;
1997-11-25 06:05:25 +08:00
g_free ( _levels ) ;
}
static MenuItem color_option_items [ ] =
{
1998-12-16 08:37:09 +08:00
{ N_ ( " Value " ) , 0 , 0 , levels_value_callback , NULL , NULL , NULL } ,
{ N_ ( " Red " ) , 0 , 0 , levels_red_callback , NULL , NULL , NULL } ,
{ N_ ( " Green " ) , 0 , 0 , levels_green_callback , NULL , NULL , NULL } ,
{ N_ ( " Blue " ) , 0 , 0 , levels_blue_callback , NULL , NULL , NULL } ,
{ N_ ( " Alpha " ) , 0 , 0 , levels_alpha_callback , NULL , NULL , NULL } ,
1997-11-25 06:05:25 +08:00
{ NULL , 0 , 0 , NULL , NULL , NULL , NULL }
} ;
void
1998-06-22 04:17:21 +08:00
levels_initialize ( GDisplay * gdisp )
1997-11-25 06:05:25 +08:00
{
int i ;
if ( drawable_indexed ( gimage_active_drawable ( gdisp - > gimage ) ) )
{
1998-12-16 08:37:09 +08:00
g_message ( _ ( " Levels for indexed drawables cannot be adjusted. " ) ) ;
1997-11-25 06:05:25 +08:00
return ;
}
/* The levels dialog */
if ( ! levels_dialog )
levels_dialog = levels_new_dialog ( ) ;
else
if ( ! GTK_WIDGET_VISIBLE ( levels_dialog - > shell ) )
gtk_widget_show ( levels_dialog - > shell ) ;
/* Initialize the values */
levels_dialog - > channel = HISTOGRAM_VALUE ;
for ( i = 0 ; i < 5 ; i + + )
{
levels_dialog - > low_input [ i ] = 0 ;
levels_dialog - > gamma [ i ] = 1.0 ;
levels_dialog - > high_input [ i ] = 255 ;
levels_dialog - > low_output [ i ] = 0 ;
levels_dialog - > high_output [ i ] = 255 ;
}
1998-01-22 15:02:57 +08:00
levels_dialog - > drawable = gimage_active_drawable ( gdisp - > gimage ) ;
levels_dialog - > color = drawable_color ( levels_dialog - > drawable ) ;
1998-06-22 04:17:21 +08:00
levels_dialog - > image_map = image_map_create ( gdisp , levels_dialog - > drawable ) ;
1997-11-25 06:05:25 +08:00
/* check for alpha channel */
1998-01-22 15:02:57 +08:00
if ( drawable_has_alpha ( levels_dialog - > drawable ) )
1997-11-25 06:05:25 +08:00
gtk_widget_set_sensitive ( color_option_items [ 4 ] . widget , TRUE ) ;
else
gtk_widget_set_sensitive ( color_option_items [ 4 ] . widget , FALSE ) ;
/* hide or show the channel menu based on image type */
if ( levels_dialog - > color )
for ( i = 0 ; i < 4 ; i + + )
gtk_widget_set_sensitive ( color_option_items [ i ] . widget , TRUE ) ;
else
for ( i = 1 ; i < 4 ; i + + )
gtk_widget_set_sensitive ( color_option_items [ i ] . widget , FALSE ) ;
/* set the current selection */
gtk_option_menu_set_history ( GTK_OPTION_MENU ( levels_dialog - > channel_menu ) , 0 ) ;
levels_update ( levels_dialog , LOW_INPUT | GAMMA | HIGH_INPUT | LOW_OUTPUT | HIGH_OUTPUT | DRAW ) ;
levels_update ( levels_dialog , INPUT_LEVELS | OUTPUT_LEVELS ) ;
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_drawable ( levels_dialog - > hist ,
levels_dialog - > drawable ) ;
histogram_widget_update ( levels_dialog - > histogram , levels_dialog - > hist ) ;
histogram_widget_range ( levels_dialog - > histogram , - 1 , - 1 ) ;
1997-11-25 06:05:25 +08:00
}
void
levels_free ( )
{
if ( levels_dialog )
{
if ( levels_dialog - > image_map )
{
1998-03-31 15:23:50 +08:00
active_tool - > preserve = TRUE ;
1997-11-25 06:05:25 +08:00
image_map_abort ( levels_dialog - > image_map ) ;
1998-03-31 15:23:50 +08:00
active_tool - > preserve = FALSE ;
1997-11-25 06:05:25 +08:00
levels_dialog - > image_map = NULL ;
}
gtk_widget_destroy ( levels_dialog - > shell ) ;
}
}
/****************************/
/* Select by Color dialog */
/****************************/
/* the action area structure */
static ActionAreaItem action_items [ ] =
{
1998-12-16 08:37:09 +08:00
{ N_ ( " Auto Levels " ) , levels_auto_levels_callback , NULL , NULL } ,
{ N_ ( " OK " ) , levels_ok_callback , NULL , NULL } ,
{ N_ ( " Cancel " ) , levels_cancel_callback , NULL , NULL }
1997-11-25 06:05:25 +08:00
} ;
1998-03-19 06:35:31 +08:00
static LevelsDialog *
1997-11-25 06:05:25 +08:00
levels_new_dialog ( )
{
LevelsDialog * ld ;
GtkWidget * vbox ;
GtkWidget * hbox ;
GtkWidget * vbox2 ;
GtkWidget * label ;
GtkWidget * frame ;
GtkWidget * toggle ;
GtkWidget * channel_hbox ;
GtkWidget * menu ;
int i ;
ld = g_malloc ( sizeof ( LevelsDialog ) ) ;
ld - > preview = TRUE ;
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
ld - > lut = gimp_lut_new ( ) ;
ld - > hist = gimp_histogram_new ( ) ;
1999-02-16 16:53:54 +08:00
1997-11-25 06:05:25 +08:00
for ( i = 0 ; i < 5 ; i + + )
color_option_items [ i ] . user_data = ( gpointer ) ld ;
/* The shell and main vbox */
ld - > shell = gtk_dialog_new ( ) ;
1998-01-26 06:13:00 +08:00
gtk_window_set_wmclass ( GTK_WINDOW ( ld - > shell ) , " levels " , " Gimp " ) ;
1998-12-16 08:37:09 +08:00
gtk_window_set_title ( GTK_WINDOW ( ld - > shell ) , _ ( " Levels " ) ) ;
1997-11-25 06:05:25 +08:00
/* handle the wm close signal */
gtk_signal_connect ( GTK_OBJECT ( ld - > shell ) , " delete_event " ,
GTK_SIGNAL_FUNC ( levels_delete_callback ) ,
ld ) ;
vbox = gtk_vbox_new ( FALSE , 2 ) ;
1998-12-04 07:01:44 +08:00
gtk_container_set_border_width ( GTK_CONTAINER ( vbox ) , 2 ) ;
1997-11-25 06:05:25 +08:00
gtk_box_pack_start ( GTK_BOX ( GTK_DIALOG ( ld - > shell ) - > vbox ) , vbox , TRUE , TRUE , 0 ) ;
/* The option menu for selecting channels */
channel_hbox = gtk_hbox_new ( FALSE , 2 ) ;
gtk_box_pack_start ( GTK_BOX ( vbox ) , channel_hbox , FALSE , FALSE , 0 ) ;
1998-12-16 08:37:09 +08:00
label = gtk_label_new ( _ ( " Modify Levels for Channel: " ) ) ;
1997-11-25 06:05:25 +08:00
gtk_box_pack_start ( GTK_BOX ( channel_hbox ) , label , FALSE , FALSE , 0 ) ;
menu = build_menu ( color_option_items , NULL ) ;
ld - > channel_menu = gtk_option_menu_new ( ) ;
gtk_box_pack_start ( GTK_BOX ( channel_hbox ) , ld - > channel_menu , FALSE , FALSE , 2 ) ;
gtk_widget_show ( label ) ;
gtk_widget_show ( ld - > channel_menu ) ;
gtk_widget_show ( channel_hbox ) ;
gtk_option_menu_set_menu ( GTK_OPTION_MENU ( ld - > channel_menu ) , menu ) ;
/* Horizontal box for levels text widget */
hbox = gtk_hbox_new ( TRUE , 2 ) ;
gtk_box_pack_start ( GTK_BOX ( vbox ) , hbox , FALSE , FALSE , 0 ) ;
1998-12-16 08:37:09 +08:00
label = gtk_label_new ( _ ( " Input Levels: " ) ) ;
1997-11-25 06:05:25 +08:00
gtk_box_pack_start ( GTK_BOX ( hbox ) , label , FALSE , FALSE , 0 ) ;
gtk_widget_show ( label ) ;
/* low input text */
ld - > low_input_text = gtk_entry_new ( ) ;
gtk_entry_set_text ( GTK_ENTRY ( ld - > low_input_text ) , " 0 " ) ;
gtk_widget_set_usize ( ld - > low_input_text , TEXT_WIDTH , 25 ) ;
gtk_box_pack_start ( GTK_BOX ( hbox ) , ld - > low_input_text , FALSE , FALSE , 0 ) ;
gtk_signal_connect ( GTK_OBJECT ( ld - > low_input_text ) , " changed " ,
( GtkSignalFunc ) levels_low_input_text_update ,
ld ) ;
gtk_widget_show ( ld - > low_input_text ) ;
/* input gamma text */
ld - > gamma_text = gtk_entry_new ( ) ;
gtk_entry_set_text ( GTK_ENTRY ( ld - > gamma_text ) , " 1.0 " ) ;
gtk_widget_set_usize ( ld - > gamma_text , TEXT_WIDTH , 25 ) ;
gtk_box_pack_start ( GTK_BOX ( hbox ) , ld - > gamma_text , FALSE , FALSE , 0 ) ;
gtk_signal_connect ( GTK_OBJECT ( ld - > gamma_text ) , " changed " ,
( GtkSignalFunc ) levels_gamma_text_update ,
ld ) ;
gtk_widget_show ( ld - > gamma_text ) ;
gtk_widget_show ( hbox ) ;
/* high input text */
ld - > high_input_text = gtk_entry_new ( ) ;
gtk_entry_set_text ( GTK_ENTRY ( ld - > high_input_text ) , " 255 " ) ;
gtk_widget_set_usize ( ld - > high_input_text , TEXT_WIDTH , 25 ) ;
gtk_box_pack_start ( GTK_BOX ( hbox ) , ld - > high_input_text , FALSE , 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
1997-11-25 06:05:25 +08:00
gtk_signal_connect ( GTK_OBJECT ( ld - > high_input_text ) , " changed " ,
( GtkSignalFunc ) levels_high_input_text_update ,
ld ) ;
gtk_widget_show ( ld - > high_input_text ) ;
gtk_widget_show ( hbox ) ;
/* The levels histogram */
hbox = gtk_hbox_new ( TRUE , 2 ) ;
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
ld - > histogram = histogram_widget_new ( HISTOGRAM_WIDTH , HISTOGRAM_HEIGHT ) ;
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
gtk_signal_connect ( GTK_OBJECT ( ld - > histogram ) , " rangechanged " ,
( GtkSignalFunc ) levels_histogram_range ,
( void * ) ld ) ;
gtk_container_add ( GTK_CONTAINER ( frame ) , GTK_WIDGET ( ld - > histogram ) ) ;
gtk_widget_show ( GTK_WIDGET ( ld - > histogram ) ) ;
1997-11-25 06:05:25 +08:00
gtk_widget_show ( frame ) ;
gtk_widget_show ( hbox ) ;
/* The input levels drawing area */
hbox = gtk_hbox_new ( TRUE , 2 ) ;
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 , FALSE , FALSE , 0 ) ;
vbox2 = gtk_vbox_new ( FALSE , 2 ) ;
gtk_container_add ( GTK_CONTAINER ( frame ) , vbox2 ) ;
ld - > input_levels_da [ 0 ] = gtk_preview_new ( GTK_PREVIEW_GRAYSCALE ) ;
gtk_preview_size ( GTK_PREVIEW ( ld - > input_levels_da [ 0 ] ) , DA_WIDTH , GRADIENT_HEIGHT ) ;
gtk_widget_set_events ( ld - > input_levels_da [ 0 ] , LEVELS_DA_MASK ) ;
gtk_signal_connect ( GTK_OBJECT ( ld - > input_levels_da [ 0 ] ) , " event " ,
( GtkSignalFunc ) levels_input_da_events ,
ld ) ;
gtk_box_pack_start ( GTK_BOX ( vbox2 ) , ld - > input_levels_da [ 0 ] , FALSE , TRUE , 0 ) ;
ld - > input_levels_da [ 1 ] = gtk_drawing_area_new ( ) ;
gtk_drawing_area_size ( GTK_DRAWING_AREA ( ld - > input_levels_da [ 1 ] ) , DA_WIDTH , CONTROL_HEIGHT ) ;
gtk_widget_set_events ( ld - > input_levels_da [ 1 ] , LEVELS_DA_MASK ) ;
gtk_signal_connect ( GTK_OBJECT ( ld - > input_levels_da [ 1 ] ) , " event " ,
( GtkSignalFunc ) levels_input_da_events ,
ld ) ;
gtk_box_pack_start ( GTK_BOX ( vbox2 ) , ld - > input_levels_da [ 1 ] , FALSE , TRUE , 0 ) ;
gtk_widget_show ( ld - > input_levels_da [ 0 ] ) ;
gtk_widget_show ( ld - > input_levels_da [ 1 ] ) ;
gtk_widget_show ( vbox2 ) ;
gtk_widget_show ( frame ) ;
gtk_widget_show ( hbox ) ;
/* Horizontal box for levels text widget */
hbox = gtk_hbox_new ( TRUE , 2 ) ;
gtk_box_pack_start ( GTK_BOX ( vbox ) , hbox , FALSE , FALSE , 0 ) ;
1998-12-16 08:37:09 +08:00
label = gtk_label_new ( _ ( " Output Levels: " ) ) ;
1997-11-25 06:05:25 +08:00
gtk_box_pack_start ( GTK_BOX ( hbox ) , label , FALSE , FALSE , 0 ) ;
gtk_widget_show ( label ) ;
/* low output text */
ld - > low_output_text = gtk_entry_new ( ) ;
gtk_entry_set_text ( GTK_ENTRY ( ld - > low_output_text ) , " 0 " ) ;
gtk_widget_set_usize ( ld - > low_output_text , TEXT_WIDTH , 25 ) ;
gtk_box_pack_start ( GTK_BOX ( hbox ) , ld - > low_output_text , FALSE , FALSE , 0 ) ;
gtk_signal_connect ( GTK_OBJECT ( ld - > low_output_text ) , " changed " ,
( GtkSignalFunc ) levels_low_output_text_update ,
ld ) ;
gtk_widget_show ( ld - > low_output_text ) ;
/* high output text */
ld - > high_output_text = gtk_entry_new ( ) ;
gtk_entry_set_text ( GTK_ENTRY ( ld - > high_output_text ) , " 255 " ) ;
gtk_widget_set_usize ( ld - > high_output_text , TEXT_WIDTH , 25 ) ;
gtk_box_pack_start ( GTK_BOX ( hbox ) , ld - > high_output_text , FALSE , FALSE , 0 ) ;
gtk_signal_connect ( GTK_OBJECT ( ld - > high_output_text ) , " changed " ,
( GtkSignalFunc ) levels_high_output_text_update ,
ld ) ;
gtk_widget_show ( ld - > high_output_text ) ;
gtk_widget_show ( hbox ) ;
/* The output levels drawing area */
hbox = gtk_hbox_new ( TRUE , 2 ) ;
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 , FALSE , FALSE , 0 ) ;
vbox2 = gtk_vbox_new ( FALSE , 2 ) ;
gtk_container_add ( GTK_CONTAINER ( frame ) , vbox2 ) ;
ld - > output_levels_da [ 0 ] = gtk_preview_new ( GTK_PREVIEW_GRAYSCALE ) ;
gtk_preview_size ( GTK_PREVIEW ( ld - > output_levels_da [ 0 ] ) , DA_WIDTH , GRADIENT_HEIGHT ) ;
gtk_widget_set_events ( ld - > output_levels_da [ 0 ] , LEVELS_DA_MASK ) ;
gtk_signal_connect ( GTK_OBJECT ( ld - > output_levels_da [ 0 ] ) , " event " ,
( GtkSignalFunc ) levels_output_da_events ,
ld ) ;
gtk_box_pack_start ( GTK_BOX ( vbox2 ) , ld - > output_levels_da [ 0 ] , FALSE , TRUE , 0 ) ;
ld - > output_levels_da [ 1 ] = gtk_preview_new ( GTK_PREVIEW_GRAYSCALE ) ;
gtk_preview_size ( GTK_PREVIEW ( ld - > output_levels_da [ 1 ] ) , DA_WIDTH , CONTROL_HEIGHT ) ;
gtk_widget_set_events ( ld - > output_levels_da [ 1 ] , LEVELS_DA_MASK ) ;
gtk_signal_connect ( GTK_OBJECT ( ld - > output_levels_da [ 1 ] ) , " event " ,
( GtkSignalFunc ) levels_output_da_events ,
ld ) ;
gtk_box_pack_start ( GTK_BOX ( vbox2 ) , ld - > output_levels_da [ 1 ] , FALSE , TRUE , 0 ) ;
gtk_widget_show ( ld - > output_levels_da [ 0 ] ) ;
gtk_widget_show ( ld - > output_levels_da [ 1 ] ) ;
gtk_widget_show ( vbox2 ) ;
gtk_widget_show ( frame ) ;
gtk_widget_show ( hbox ) ;
/* Horizontal box for preview */
hbox = gtk_hbox_new ( TRUE , 2 ) ;
gtk_box_pack_start ( GTK_BOX ( vbox ) , hbox , FALSE , FALSE , 0 ) ;
/* The preview toggle */
1998-12-16 08:37:09 +08:00
toggle = gtk_check_button_new_with_label ( _ ( " Preview " ) ) ;
1999-01-16 01:35:04 +08:00
gtk_toggle_button_set_active ( GTK_TOGGLE_BUTTON ( toggle ) , ld - > preview ) ;
1997-11-25 06:05:25 +08:00
gtk_box_pack_start ( GTK_BOX ( hbox ) , toggle , TRUE , FALSE , 0 ) ;
gtk_signal_connect ( GTK_OBJECT ( toggle ) , " toggled " ,
( GtkSignalFunc ) levels_preview_update ,
ld ) ;
gtk_widget_show ( label ) ;
gtk_widget_show ( toggle ) ;
gtk_widget_show ( hbox ) ;
/* The action area */
action_items [ 0 ] . user_data = ld ;
action_items [ 1 ] . user_data = ld ;
action_items [ 2 ] . user_data = ld ;
build_action_area ( GTK_DIALOG ( ld - > shell ) , action_items , 3 , 0 ) ;
gtk_widget_show ( vbox ) ;
gtk_widget_show ( ld - > shell ) ;
return ld ;
}
static void
levels_draw_slider ( GdkWindow * window ,
GdkGC * border_gc ,
GdkGC * fill_gc ,
int xpos )
{
int y ;
for ( y = 0 ; y < CONTROL_HEIGHT ; y + + )
gdk_draw_line ( window , fill_gc , xpos - y / 2 , y ,
xpos + y / 2 , y ) ;
gdk_draw_line ( window , border_gc , xpos , 0 ,
xpos - ( CONTROL_HEIGHT - 1 ) / 2 , CONTROL_HEIGHT - 1 ) ;
gdk_draw_line ( window , border_gc , xpos , 0 ,
xpos + ( CONTROL_HEIGHT - 1 ) / 2 , CONTROL_HEIGHT - 1 ) ;
gdk_draw_line ( window , border_gc , xpos - ( CONTROL_HEIGHT - 1 ) / 2 , CONTROL_HEIGHT - 1 ,
xpos + ( CONTROL_HEIGHT - 1 ) / 2 , CONTROL_HEIGHT - 1 ) ;
}
static void
levels_erase_slider ( GdkWindow * window ,
int xpos )
{
gdk_window_clear_area ( window , xpos - ( CONTROL_HEIGHT - 1 ) / 2 , 0 ,
CONTROL_HEIGHT - 1 , CONTROL_HEIGHT ) ;
}
static void
levels_calculate_transfers ( LevelsDialog * ld )
{
double inten ;
int i , j ;
/* Recalculate the levels arrays */
for ( j = 0 ; j < 5 ; j + + )
{
for ( i = 0 ; i < 256 ; i + + )
{
/* determine input intensity */
if ( ld - > high_input [ j ] ! = ld - > low_input [ j ] )
inten = ( double ) ( i - ld - > low_input [ j ] ) /
( double ) ( ld - > high_input [ j ] - ld - > low_input [ j ] ) ;
else
inten = ( double ) ( i - ld - > low_input [ j ] ) ;
inten = BOUNDS ( inten , 0.0 , 1.0 ) ;
if ( ld - > gamma [ j ] ! = 0.0 )
inten = pow ( inten , ( 1.0 / ld - > gamma [ j ] ) ) ;
ld - > input [ j ] [ i ] = ( unsigned char ) ( inten * 255.0 + 0.5 ) ;
}
}
}
static void
levels_update ( LevelsDialog * ld ,
int update )
{
char text [ 12 ] ;
int i ;
/* Recalculate the transfer arrays */
levels_calculate_transfers ( ld ) ;
1999-02-16 16:53:54 +08:00
/* set up the lut */
gimp_lut_setup ( ld - > lut , ( GimpLutFunc ) levels_lut_func ,
( void * ) ld , gimp_drawable_bytes ( ld - > drawable ) ) ;
1997-11-25 06:05:25 +08:00
if ( update & LOW_INPUT )
{
sprintf ( text , " %d " , ld - > low_input [ ld - > channel ] ) ;
gtk_entry_set_text ( GTK_ENTRY ( ld - > low_input_text ) , text ) ;
}
if ( update & GAMMA )
{
sprintf ( text , " %2.2f " , ld - > gamma [ ld - > channel ] ) ;
gtk_entry_set_text ( GTK_ENTRY ( ld - > gamma_text ) , text ) ;
}
if ( update & HIGH_INPUT )
{
sprintf ( text , " %d " , ld - > high_input [ ld - > channel ] ) ;
gtk_entry_set_text ( GTK_ENTRY ( ld - > high_input_text ) , text ) ;
}
if ( update & LOW_OUTPUT )
{
sprintf ( text , " %d " , ld - > low_output [ ld - > channel ] ) ;
gtk_entry_set_text ( GTK_ENTRY ( ld - > low_output_text ) , text ) ;
}
if ( update & HIGH_OUTPUT )
{
sprintf ( text , " %d " , ld - > high_output [ ld - > channel ] ) ;
gtk_entry_set_text ( GTK_ENTRY ( ld - > high_output_text ) , text ) ;
}
if ( update & INPUT_LEVELS )
{
for ( i = 0 ; i < GRADIENT_HEIGHT ; i + + )
gtk_preview_draw_row ( GTK_PREVIEW ( ld - > input_levels_da [ 0 ] ) ,
ld - > input [ ld - > channel ] , 0 , i , DA_WIDTH ) ;
if ( update & DRAW )
gtk_widget_draw ( ld - > input_levels_da [ 0 ] , NULL ) ;
}
if ( update & OUTPUT_LEVELS )
{
unsigned char buf [ DA_WIDTH ] ;
for ( i = 0 ; i < DA_WIDTH ; i + + )
buf [ i ] = i ;
for ( i = 0 ; i < GRADIENT_HEIGHT ; i + + )
gtk_preview_draw_row ( GTK_PREVIEW ( ld - > output_levels_da [ 0 ] ) ,
buf , 0 , i , DA_WIDTH ) ;
if ( update & DRAW )
gtk_widget_draw ( ld - > output_levels_da [ 0 ] , NULL ) ;
}
if ( update & INPUT_SLIDERS )
{
double width , mid , tmp ;
levels_erase_slider ( ld - > input_levels_da [ 1 ] - > window , ld - > slider_pos [ 0 ] ) ;
levels_erase_slider ( ld - > input_levels_da [ 1 ] - > window , ld - > slider_pos [ 1 ] ) ;
levels_erase_slider ( ld - > input_levels_da [ 1 ] - > window , ld - > slider_pos [ 2 ] ) ;
ld - > slider_pos [ 0 ] = DA_WIDTH * ( ( double ) ld - > low_input [ ld - > channel ] / 255.0 ) ;
ld - > slider_pos [ 2 ] = DA_WIDTH * ( ( double ) ld - > high_input [ ld - > channel ] / 255.0 ) ;
width = ( double ) ( ld - > slider_pos [ 2 ] - ld - > slider_pos [ 0 ] ) / 2.0 ;
mid = ld - > slider_pos [ 0 ] + width ;
tmp = log10 ( 1.0 / ld - > gamma [ ld - > channel ] ) ;
ld - > slider_pos [ 1 ] = ( int ) ( mid + width * tmp + 0.5 ) ;
levels_draw_slider ( ld - > input_levels_da [ 1 ] - > window ,
ld - > input_levels_da [ 1 ] - > style - > black_gc ,
ld - > input_levels_da [ 1 ] - > style - > dark_gc [ GTK_STATE_NORMAL ] ,
ld - > slider_pos [ 1 ] ) ;
levels_draw_slider ( ld - > input_levels_da [ 1 ] - > window ,
ld - > input_levels_da [ 1 ] - > style - > black_gc ,
ld - > input_levels_da [ 1 ] - > style - > black_gc ,
ld - > slider_pos [ 0 ] ) ;
levels_draw_slider ( ld - > input_levels_da [ 1 ] - > window ,
ld - > input_levels_da [ 1 ] - > style - > black_gc ,
ld - > input_levels_da [ 1 ] - > style - > white_gc ,
ld - > slider_pos [ 2 ] ) ;
}
if ( update & OUTPUT_SLIDERS )
{
levels_erase_slider ( ld - > output_levels_da [ 1 ] - > window , ld - > slider_pos [ 3 ] ) ;
levels_erase_slider ( ld - > output_levels_da [ 1 ] - > window , ld - > slider_pos [ 4 ] ) ;
ld - > slider_pos [ 3 ] = DA_WIDTH * ( ( double ) ld - > low_output [ ld - > channel ] / 255.0 ) ;
ld - > slider_pos [ 4 ] = DA_WIDTH * ( ( double ) ld - > high_output [ ld - > channel ] / 255.0 ) ;
levels_draw_slider ( ld - > output_levels_da [ 1 ] - > window ,
ld - > output_levels_da [ 1 ] - > style - > black_gc ,
ld - > output_levels_da [ 1 ] - > style - > black_gc ,
ld - > slider_pos [ 3 ] ) ;
levels_draw_slider ( ld - > output_levels_da [ 1 ] - > window ,
ld - > output_levels_da [ 1 ] - > style - > black_gc ,
ld - > output_levels_da [ 1 ] - > style - > white_gc ,
ld - > slider_pos [ 4 ] ) ;
}
}
static void
levels_preview ( LevelsDialog * ld )
{
if ( ! ld - > image_map )
1998-12-16 08:37:09 +08:00
g_warning ( _ ( " No image map " ) ) ;
1998-03-31 15:23:50 +08:00
active_tool - > preserve = TRUE ;
1999-02-16 16:53:54 +08:00
image_map_apply ( ld - > image_map , ( ImageMapApplyFunc ) gimp_lut_process_2 ,
( void * ) ld - > lut ) ;
1998-03-31 15:23:50 +08:00
active_tool - > preserve = FALSE ;
1997-11-25 06:05:25 +08:00
}
static void
levels_value_callback ( GtkWidget * w ,
gpointer client_data )
{
LevelsDialog * ld ;
ld = ( LevelsDialog * ) client_data ;
if ( ld - > channel ! = HISTOGRAM_VALUE )
{
ld - > 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 ( ld - > histogram , ld - > channel ) ;
1997-11-25 06:05:25 +08:00
levels_update ( ld , ALL ) ;
}
}
static void
levels_red_callback ( GtkWidget * w ,
gpointer client_data )
{
LevelsDialog * ld ;
ld = ( LevelsDialog * ) client_data ;
if ( ld - > channel ! = HISTOGRAM_RED )
{
ld - > 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 ( ld - > histogram , ld - > channel ) ;
1997-11-25 06:05:25 +08:00
levels_update ( ld , ALL ) ;
}
}
static void
levels_green_callback ( GtkWidget * w ,
gpointer client_data )
{
LevelsDialog * ld ;
ld = ( LevelsDialog * ) client_data ;
if ( ld - > channel ! = HISTOGRAM_GREEN )
{
ld - > 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 ( ld - > histogram , ld - > channel ) ;
1997-11-25 06:05:25 +08:00
levels_update ( ld , ALL ) ;
}
}
static void
levels_blue_callback ( GtkWidget * w ,
gpointer client_data )
{
LevelsDialog * ld ;
ld = ( LevelsDialog * ) client_data ;
if ( ld - > channel ! = HISTOGRAM_BLUE )
{
ld - > 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 ( ld - > histogram , ld - > channel ) ;
1997-11-25 06:05:25 +08:00
levels_update ( ld , ALL ) ;
}
}
static void
levels_alpha_callback ( GtkWidget * w ,
gpointer client_data )
{
LevelsDialog * ld ;
ld = ( LevelsDialog * ) client_data ;
if ( ld - > channel ! = HISTOGRAM_ALPHA )
{
ld - > channel = HISTOGRAM_ALPHA ;
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 ( ld - > histogram , ld - > channel ) ;
1997-11-25 06:05:25 +08:00
levels_update ( ld , ALL ) ;
}
}
static void
levels_adjust_channel ( LevelsDialog * ld ,
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
GimpHistogram * hist ,
1997-11-25 06:05:25 +08:00
int channel )
{
int i ;
double count , new_count , percentage , next_percentage ;
ld - > gamma [ channel ] = 1.0 ;
ld - > low_output [ channel ] = 0 ;
ld - > high_output [ channel ] = 255 ;
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
count = gimp_histogram_get_count ( hist , 0 , 255 ) ;
1997-11-25 06:05:25 +08:00
if ( count = = 0.0 )
{
ld - > low_input [ channel ] = 0 ;
ld - > high_input [ channel ] = 0 ;
}
else
{
/* Set the low input */
new_count = 0.0 ;
for ( i = 0 ; i < 255 ; i + + )
{
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
new_count + = gimp_histogram_get_value ( hist , channel , i ) ;
1997-11-25 06:05:25 +08:00
percentage = new_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
next_percentage = ( new_count + gimp_histogram_get_value ( hist ,
channel ,
i + 1 ) ) /
count ;
1997-11-25 06:05:25 +08:00
if ( fabs ( percentage - 0.006 ) < fabs ( next_percentage - 0.006 ) )
{
ld - > low_input [ channel ] = i + 1 ;
break ;
}
}
/* Set the high input */
new_count = 0.0 ;
for ( i = 255 ; i > 0 ; i - - )
{
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
new_count + = gimp_histogram_get_value ( hist , channel , i ) ;
1997-11-25 06:05:25 +08:00
percentage = new_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
next_percentage = ( new_count + gimp_histogram_get_value ( hist ,
channel ,
i - 1 ) ) / count ;
1997-11-25 06:05:25 +08:00
if ( fabs ( percentage - 0.006 ) < fabs ( next_percentage - 0.006 ) )
{
ld - > high_input [ channel ] = i - 1 ;
break ;
}
}
}
}
static void
levels_auto_levels_callback ( GtkWidget * widget ,
gpointer client_data )
{
LevelsDialog * ld ;
int channel ;
ld = ( LevelsDialog * ) client_data ;
if ( ld - > color )
{
/* Set the overall value to defaults */
ld - > low_input [ HISTOGRAM_VALUE ] = 0 ;
ld - > gamma [ HISTOGRAM_VALUE ] = 1.0 ;
ld - > high_input [ HISTOGRAM_VALUE ] = 255 ;
ld - > low_output [ HISTOGRAM_VALUE ] = 0 ;
ld - > high_output [ HISTOGRAM_VALUE ] = 255 ;
for ( channel = 0 ; channel < 3 ; channel + + )
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
levels_adjust_channel ( ld , ld - > hist , channel + 1 ) ;
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
levels_adjust_channel ( ld , ld - > hist , HISTOGRAM_VALUE ) ;
1997-11-25 06:05:25 +08:00
levels_update ( ld , ALL ) ;
if ( ld - > preview )
levels_preview ( ld ) ;
}
static void
levels_ok_callback ( GtkWidget * widget ,
gpointer client_data )
{
LevelsDialog * ld ;
ld = ( LevelsDialog * ) client_data ;
if ( GTK_WIDGET_VISIBLE ( ld - > shell ) )
gtk_widget_hide ( ld - > shell ) ;
1998-03-31 15:23:50 +08:00
active_tool - > preserve = TRUE ;
1997-11-25 06:05:25 +08:00
if ( ! ld - > preview )
1999-02-16 16:53:54 +08:00
{
gimp_lut_setup ( ld - > lut , ( GimpLutFunc ) levels_lut_func ,
( void * ) ld , gimp_drawable_bytes ( ld - > drawable ) ) ;
image_map_apply ( ld - > image_map , ( ImageMapApplyFunc ) gimp_lut_process_2 ,
( void * ) ld - > lut ) ;
}
1997-11-25 06:05:25 +08:00
if ( ld - > image_map )
image_map_commit ( ld - > image_map ) ;
1998-03-31 15:23:50 +08:00
active_tool - > preserve = FALSE ;
1997-11-25 06:05:25 +08:00
ld - > image_map = NULL ;
}
static gint
levels_delete_callback ( GtkWidget * w ,
GdkEvent * e ,
gpointer client_data )
{
levels_cancel_callback ( w , client_data ) ;
1998-03-13 06:01:43 +08:00
return TRUE ;
1997-11-25 06:05:25 +08:00
}
static void
levels_cancel_callback ( GtkWidget * widget ,
gpointer client_data )
{
LevelsDialog * ld ;
ld = ( LevelsDialog * ) client_data ;
if ( GTK_WIDGET_VISIBLE ( ld - > shell ) )
gtk_widget_hide ( ld - > shell ) ;
if ( ld - > image_map )
{
1998-03-31 15:23:50 +08:00
active_tool - > preserve = TRUE ;
1997-11-25 06:05:25 +08:00
image_map_abort ( ld - > image_map ) ;
1998-03-31 15:23:50 +08:00
active_tool - > preserve = TRUE ;
1997-11-25 06:05:25 +08:00
gdisplays_flush ( ) ;
}
ld - > image_map = NULL ;
}
static void
levels_preview_update ( GtkWidget * w ,
gpointer data )
{
LevelsDialog * ld ;
ld = ( LevelsDialog * ) data ;
if ( GTK_TOGGLE_BUTTON ( w ) - > active )
{
ld - > preview = TRUE ;
levels_preview ( ld ) ;
}
else
ld - > preview = FALSE ;
}
static void
levels_low_input_text_update ( GtkWidget * w ,
gpointer data )
{
LevelsDialog * ld ;
char * str ;
int value ;
str = gtk_entry_get_text ( GTK_ENTRY ( w ) ) ;
ld = ( LevelsDialog * ) data ;
value = BOUNDS ( ( ( int ) atof ( str ) ) , 0 , ld - > high_input [ ld - > channel ] ) ;
if ( value ! = ld - > low_input [ ld - > channel ] )
{
ld - > low_input [ ld - > channel ] = value ;
levels_update ( ld , INPUT_LEVELS | INPUT_SLIDERS | DRAW ) ;
if ( ld - > preview )
levels_preview ( ld ) ;
}
}
static void
levels_gamma_text_update ( GtkWidget * w ,
gpointer data )
{
LevelsDialog * ld ;
char * str ;
double value ;
str = gtk_entry_get_text ( GTK_ENTRY ( w ) ) ;
ld = ( LevelsDialog * ) data ;
value = BOUNDS ( ( atof ( str ) ) , 0.1 , 10.0 ) ;
if ( value ! = ld - > gamma [ ld - > channel ] )
{
ld - > gamma [ ld - > channel ] = value ;
levels_update ( ld , INPUT_LEVELS | INPUT_SLIDERS | DRAW ) ;
if ( ld - > preview )
levels_preview ( ld ) ;
}
}
static void
levels_high_input_text_update ( GtkWidget * w ,
gpointer data )
{
LevelsDialog * ld ;
char * str ;
int value ;
str = gtk_entry_get_text ( GTK_ENTRY ( w ) ) ;
ld = ( LevelsDialog * ) data ;
value = BOUNDS ( ( ( int ) atof ( str ) ) , ld - > low_input [ ld - > channel ] , 255 ) ;
if ( value ! = ld - > high_input [ ld - > channel ] )
{
ld - > high_input [ ld - > channel ] = value ;
levels_update ( ld , INPUT_LEVELS | INPUT_SLIDERS | DRAW ) ;
if ( ld - > preview )
levels_preview ( ld ) ;
}
}
static void
levels_low_output_text_update ( GtkWidget * w ,
gpointer data )
{
LevelsDialog * ld ;
char * str ;
int value ;
str = gtk_entry_get_text ( GTK_ENTRY ( w ) ) ;
ld = ( LevelsDialog * ) data ;
value = BOUNDS ( ( ( int ) atof ( str ) ) , 0 , 255 ) ;
if ( value ! = ld - > low_output [ ld - > channel ] )
{
ld - > low_output [ ld - > channel ] = value ;
levels_update ( ld , OUTPUT_LEVELS | OUTPUT_SLIDERS | DRAW ) ;
if ( ld - > preview )
levels_preview ( ld ) ;
}
}
static void
levels_high_output_text_update ( GtkWidget * w ,
gpointer data )
{
LevelsDialog * ld ;
char * str ;
int value ;
str = gtk_entry_get_text ( GTK_ENTRY ( w ) ) ;
ld = ( LevelsDialog * ) data ;
value = BOUNDS ( ( ( int ) atof ( str ) ) , 0 , 255 ) ;
if ( value ! = ld - > high_output [ ld - > channel ] )
{
ld - > high_output [ ld - > channel ] = value ;
levels_update ( ld , OUTPUT_LEVELS | OUTPUT_SLIDERS | DRAW ) ;
if ( ld - > preview )
levels_preview ( ld ) ;
}
}
static gint
levels_input_da_events ( GtkWidget * widget ,
GdkEvent * event ,
LevelsDialog * ld )
{
GdkEventButton * bevent ;
GdkEventMotion * mevent ;
char text [ 12 ] ;
double width , mid , tmp ;
int x , distance ;
int i ;
int update = FALSE ;
switch ( event - > type )
{
case GDK_EXPOSE :
if ( widget = = ld - > input_levels_da [ 1 ] )
levels_update ( ld , INPUT_SLIDERS ) ;
break ;
case GDK_BUTTON_PRESS :
gtk_grab_add ( widget ) ;
bevent = ( GdkEventButton * ) event ;
distance = G_MAXINT ;
for ( i = 0 ; i < 3 ; i + + )
if ( fabs ( bevent - > x - ld - > slider_pos [ i ] ) < distance )
{
ld - > active_slider = i ;
distance = fabs ( bevent - > x - ld - > slider_pos [ i ] ) ;
}
x = bevent - > x ;
update = TRUE ;
break ;
case GDK_BUTTON_RELEASE :
gtk_grab_remove ( widget ) ;
switch ( ld - > active_slider )
{
case 0 : /* low input */
levels_update ( ld , LOW_INPUT | GAMMA | DRAW ) ;
break ;
case 1 : /* gamma */
levels_update ( ld , GAMMA ) ;
break ;
case 2 : /* high input */
levels_update ( ld , HIGH_INPUT | GAMMA | DRAW ) ;
break ;
}
if ( ld - > preview )
levels_preview ( ld ) ;
break ;
case GDK_MOTION_NOTIFY :
mevent = ( GdkEventMotion * ) event ;
gdk_window_get_pointer ( widget - > window , & x , NULL , NULL ) ;
update = TRUE ;
break ;
default :
break ;
}
if ( update )
{
switch ( ld - > active_slider )
{
case 0 : /* low input */
ld - > low_input [ ld - > channel ] = ( ( double ) x / ( double ) DA_WIDTH ) * 255.0 ;
ld - > low_input [ ld - > channel ] = BOUNDS ( ld - > low_input [ ld - > channel ] , 0 ,
ld - > high_input [ ld - > channel ] ) ;
break ;
case 1 : /* gamma */
width = ( double ) ( ld - > slider_pos [ 2 ] - ld - > slider_pos [ 0 ] ) / 2.0 ;
mid = ld - > slider_pos [ 0 ] + width ;
x = BOUNDS ( x , ld - > slider_pos [ 0 ] , ld - > slider_pos [ 2 ] ) ;
tmp = ( double ) ( x - mid ) / width ;
ld - > gamma [ ld - > channel ] = 1.0 / pow ( 10 , tmp ) ;
/* round the gamma value to the nearest 1/100th */
sprintf ( text , " %2.2f " , ld - > gamma [ ld - > channel ] ) ;
ld - > gamma [ ld - > channel ] = atof ( text ) ;
break ;
case 2 : /* high input */
ld - > high_input [ ld - > channel ] = ( ( double ) x / ( double ) DA_WIDTH ) * 255.0 ;
ld - > high_input [ ld - > channel ] = BOUNDS ( ld - > high_input [ ld - > channel ] ,
ld - > low_input [ ld - > channel ] , 255 ) ;
break ;
}
levels_update ( ld , INPUT_SLIDERS | INPUT_LEVELS | DRAW ) ;
}
return FALSE ;
}
static gint
levels_output_da_events ( GtkWidget * widget ,
GdkEvent * event ,
LevelsDialog * ld )
{
GdkEventButton * bevent ;
GdkEventMotion * mevent ;
int x , distance ;
int i ;
int update = FALSE ;
switch ( event - > type )
{
case GDK_EXPOSE :
if ( widget = = ld - > output_levels_da [ 1 ] )
levels_update ( ld , OUTPUT_SLIDERS ) ;
break ;
case GDK_BUTTON_PRESS :
bevent = ( GdkEventButton * ) event ;
distance = G_MAXINT ;
for ( i = 3 ; i < 5 ; i + + )
if ( fabs ( bevent - > x - ld - > slider_pos [ i ] ) < distance )
{
ld - > active_slider = i ;
distance = fabs ( bevent - > x - ld - > slider_pos [ i ] ) ;
}
x = bevent - > x ;
update = TRUE ;
break ;
case GDK_BUTTON_RELEASE :
switch ( ld - > active_slider )
{
case 3 : /* low output */
levels_update ( ld , LOW_OUTPUT | DRAW ) ;
break ;
case 4 : /* high output */
levels_update ( ld , HIGH_OUTPUT | DRAW ) ;
break ;
}
if ( ld - > preview )
levels_preview ( ld ) ;
break ;
case GDK_MOTION_NOTIFY :
mevent = ( GdkEventMotion * ) event ;
gdk_window_get_pointer ( widget - > window , & x , NULL , NULL ) ;
update = TRUE ;
break ;
default :
break ;
}
if ( update )
{
switch ( ld - > active_slider )
{
case 3 : /* low output */
ld - > low_output [ ld - > channel ] = ( ( double ) x / ( double ) DA_WIDTH ) * 255.0 ;
ld - > low_output [ ld - > channel ] = BOUNDS ( ld - > low_output [ ld - > channel ] , 0 , 255 ) ;
break ;
case 4 : /* high output */
ld - > high_output [ ld - > channel ] = ( ( double ) x / ( double ) DA_WIDTH ) * 255.0 ;
ld - > high_output [ ld - > channel ] = BOUNDS ( ld - > high_output [ ld - > channel ] , 0 , 255 ) ;
break ;
}
levels_update ( ld , OUTPUT_SLIDERS | DRAW ) ;
}
return FALSE ;
}
/* The levels procedure definition */
ProcArg levels_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 ,
" low_input " ,
" intensity of lowest input: (0 <= low_input <= 255) "
} ,
{ PDB_INT32 ,
" high_input " ,
" intensity of highest input: (0 <= high_input <= 255) "
} ,
{ PDB_FLOAT ,
" gamma " ,
" gamma correction factor: (0.1 <= gamma <= 10) "
} ,
{ PDB_INT32 ,
" low_output " ,
" intensity of lowest output: (0 <= low_input <= 255) "
} ,
{ PDB_INT32 ,
" high_output " ,
" intensity of highest output: (0 <= high_input <= 255) "
}
} ;
ProcRecord levels_proc =
{
" gimp_levels " ,
" Modifies intensity levels in the specified drawable " ,
" This tool allows intensity levels in the specified drawable to be remapped according to a set of parameters. The low/high input levels specify an initial mapping from the source intensities. The gamma value determines how intensities between the low and high input intensities are interpolated. A gamma value of 1.0 results in a linear interpolation. Higher gamma values result in more high-level intensities. Lower gamma values result in more low-level intensities. The low/high output levels constrain the final intensity mapping--that is, no final intensity will be lower than the low output level and no final intensity will be higher than the high output level. This tool is only valid on RGB color and grayscale images. It will not operate on indexed drawables. " ,
" 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
7 ,
1997-11-25 06:05:25 +08:00
levels_args ,
/* Output arguments */
0 ,
NULL ,
/* Exec method */
{ { levels_invoker } } ,
} ;
static Argument *
levels_invoker ( Argument * args )
{
PixelRegion srcPR , destPR ;
int success = TRUE ;
LevelsDialog ld ;
1998-01-22 15:02:57 +08:00
GimpDrawable * drawable ;
1997-11-25 06:05:25 +08:00
int channel ;
int low_input ;
int high_input ;
double gamma ;
int low_output ;
int high_output ;
int int_value ;
double fp_value ;
int x1 , y1 , x2 , y2 ;
int i ;
1998-01-22 15:02:57 +08:00
drawable = NULL ;
1997-11-25 06:05:25 +08:00
low_input = 0 ;
high_input = 0 ;
gamma = 1.0 ;
low_output = 0 ;
high_output = 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 ;
1997-11-25 06:05:25 +08:00
}
1998-02-01 09:58:47 +08:00
/* make sure the drawable is not indexed color */
if ( success )
success = ! drawable_indexed ( 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 input */
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_input = int_value ;
else
success = FALSE ;
}
/* high input */
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_input = int_value ;
else
success = FALSE ;
}
/* gamma */
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
fp_value = args [ 4 ] . value . pdb_float ;
1997-11-25 06:05:25 +08:00
if ( fp_value > = 0.1 & & fp_value < = 10.0 )
gamma = fp_value ;
else
success = FALSE ;
}
/* low output */
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 [ 5 ] . value . pdb_int ;
1997-11-25 06:05:25 +08:00
if ( int_value > = 0 & & int_value < 256 )
low_output = int_value ;
else
success = FALSE ;
}
/* high output */
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 [ 6 ] . value . pdb_int ;
1997-11-25 06:05:25 +08:00
if ( int_value > = 0 & & int_value < 256 )
high_output = int_value ;
else
success = FALSE ;
}
/* arrange to modify the levels */
if ( success )
{
for ( i = 0 ; i < 5 ; i + + )
{
ld . low_input [ i ] = 0 ;
ld . gamma [ i ] = 1.0 ;
ld . high_input [ i ] = 255 ;
ld . low_output [ i ] = 0 ;
ld . high_output [ i ] = 255 ;
}
1999-02-16 16:53:54 +08:00
ld . lut = gimp_lut_new ( ) ;
1997-11-25 06:05:25 +08:00
ld . channel = channel ;
1998-01-22 15:02:57 +08:00
ld . color = drawable_color ( drawable ) ;
1997-11-25 06:05:25 +08:00
ld . low_input [ channel ] = low_input ;
ld . high_input [ channel ] = high_input ;
ld . gamma [ channel ] = gamma ;
ld . low_output [ channel ] = low_output ;
ld . high_output [ channel ] = high_output ;
1999-02-16 16:53:54 +08:00
/* setup the lut */
gimp_lut_setup ( ld . lut , ( GimpLutFunc ) levels_lut_func ,
( void * ) & ld , gimp_drawable_bytes ( drawable ) ) ;
1997-11-25 06:05:25 +08:00
/* The application should occur only within selection bounds */
1998-01-22 15:02:57 +08:00
drawable_mask_bounds ( drawable , & x1 , & y1 , & x2 , & y2 ) ;
1997-11-25 06:05:25 +08:00
1998-01-22 15:02:57 +08:00
pixel_region_init ( & srcPR , drawable_data ( drawable ) , x1 , y1 , ( x2 - x1 ) , ( y2 - y1 ) , FALSE ) ;
pixel_region_init ( & destPR , drawable_shadow ( drawable ) , x1 , y1 , ( x2 - x1 ) , ( y2 - y1 ) , TRUE ) ;
1997-11-25 06:05:25 +08:00
1999-02-16 16:53:54 +08:00
pixel_regions_process_parallel ( ( p_func ) gimp_lut_process , ld . lut ,
2 , & srcPR , & destPR ) ;
1997-11-25 06:05:25 +08:00
1999-02-16 16:53:54 +08:00
gimp_lut_free ( ld . lut ) ;
1998-01-22 15:02:57 +08:00
drawable_merge_shadow ( drawable , TRUE ) ;
drawable_update ( drawable , x1 , y1 , ( x2 - x1 ) , ( y2 - y1 ) ) ;
1997-11-25 06:05:25 +08:00
}
return procedural_db_return_args ( & levels_proc , success ) ;
}