2006-12-10 05:33:38 +08:00
|
|
|
/* GIMP - The GNU Image Manipulation Program
|
2000-04-29 09:46:27 +08:00
|
|
|
* Copyright (C) 1999 Manish Singh <yosh@gimp.org>
|
|
|
|
*
|
2009-01-18 06:28:01 +08:00
|
|
|
* This program is free software: you can redistribute it and/or modify
|
2000-04-29 09:46:27 +08:00
|
|
|
* it under the terms of the GNU General Public License as published by
|
2009-01-18 06:28:01 +08:00
|
|
|
* the Free Software Foundation; either version 3 of the License, or
|
2000-04-29 09:46:27 +08:00
|
|
|
* (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
|
2018-07-12 05:27:07 +08:00
|
|
|
* along with this program. If not, see <https://www.gnu.org/licenses/>.
|
2000-04-29 09:46:27 +08:00
|
|
|
*/
|
2002-03-15 06:42:50 +08:00
|
|
|
|
2000-04-29 09:46:27 +08:00
|
|
|
#include "config.h"
|
|
|
|
|
2012-05-03 09:36:22 +08:00
|
|
|
#include <gegl.h>
|
2000-05-05 21:29:46 +08:00
|
|
|
#include <gtk/gtk.h>
|
|
|
|
|
2011-04-28 21:50:39 +08:00
|
|
|
#include "libgimpcolor/gimpcolor.h"
|
2005-02-05 22:10:20 +08:00
|
|
|
#include "libgimpconfig/gimpconfig.h"
|
2002-03-15 06:42:50 +08:00
|
|
|
#include "libgimpmath/gimpmath.h"
|
2002-10-21 22:15:02 +08:00
|
|
|
#include "libgimpmodule/gimpmodule.h"
|
2002-03-15 06:42:50 +08:00
|
|
|
#include "libgimpwidgets/gimpwidgets.h"
|
2000-05-27 09:30:21 +08:00
|
|
|
|
2002-10-30 23:12:30 +08:00
|
|
|
#include "libgimp/libgimp-intl.h"
|
2000-05-05 21:29:46 +08:00
|
|
|
|
|
|
|
|
2004-07-04 08:21:03 +08:00
|
|
|
#define DEFAULT_CONTRAST 1.0
|
2002-10-23 22:55:07 +08:00
|
|
|
|
|
|
|
|
2008-01-10 06:22:10 +08:00
|
|
|
#define CDISPLAY_TYPE_CONTRAST (cdisplay_contrast_get_type ())
|
2002-10-20 18:14:17 +08:00
|
|
|
#define CDISPLAY_CONTRAST(obj) (G_TYPE_CHECK_INSTANCE_CAST ((obj), CDISPLAY_TYPE_CONTRAST, CdisplayContrast))
|
|
|
|
#define CDISPLAY_CONTRAST_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST ((klass), CDISPLAY_TYPE_CONTRAST, CdisplayContrastClass))
|
|
|
|
#define CDISPLAY_IS_CONTRAST(obj) (G_TYPE_CHECK_INSTANCE_TYPE ((obj), CDISPLAY_TYPE_CONTRAST))
|
|
|
|
#define CDISPLAY_IS_CONTRAST_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE ((klass), CDISPLAY_TYPE_CONTRAST))
|
|
|
|
|
2000-04-29 09:46:27 +08:00
|
|
|
|
2002-10-20 18:14:17 +08:00
|
|
|
typedef struct _CdisplayContrast CdisplayContrast;
|
|
|
|
typedef struct _CdisplayContrastClass CdisplayContrastClass;
|
2000-04-29 09:46:27 +08:00
|
|
|
|
2002-10-20 18:14:17 +08:00
|
|
|
struct _CdisplayContrast
|
2000-04-29 09:46:27 +08:00
|
|
|
{
|
2002-10-20 18:14:17 +08:00
|
|
|
GimpColorDisplay parent_instance;
|
2000-04-29 09:46:27 +08:00
|
|
|
|
2002-10-20 18:14:17 +08:00
|
|
|
gdouble contrast;
|
2000-04-29 09:46:27 +08:00
|
|
|
};
|
|
|
|
|
2002-10-20 18:14:17 +08:00
|
|
|
struct _CdisplayContrastClass
|
2000-05-04 17:14:43 +08:00
|
|
|
{
|
2002-10-20 18:14:17 +08:00
|
|
|
GimpColorDisplayClass parent_instance;
|
2000-04-29 09:46:27 +08:00
|
|
|
};
|
|
|
|
|
2002-10-20 18:14:17 +08:00
|
|
|
|
2004-07-04 08:21:03 +08:00
|
|
|
enum
|
|
|
|
{
|
|
|
|
PROP_0,
|
|
|
|
PROP_CONTRAST
|
|
|
|
};
|
|
|
|
|
|
|
|
|
2023-05-22 09:51:36 +08:00
|
|
|
GType cdisplay_contrast_get_type (void);
|
2011-01-23 15:28:33 +08:00
|
|
|
|
|
|
|
static void cdisplay_contrast_set_property (GObject *object,
|
|
|
|
guint property_id,
|
|
|
|
const GValue *value,
|
|
|
|
GParamSpec *pspec);
|
|
|
|
static void cdisplay_contrast_get_property (GObject *object,
|
|
|
|
guint property_id,
|
|
|
|
GValue *value,
|
|
|
|
GParamSpec *pspec);
|
|
|
|
|
2013-11-02 08:37:52 +08:00
|
|
|
static void cdisplay_contrast_convert_buffer (GimpColorDisplay *display,
|
|
|
|
GeglBuffer *buffer,
|
|
|
|
GeglRectangle *area);
|
2011-01-23 15:28:33 +08:00
|
|
|
static void cdisplay_contrast_set_contrast (CdisplayContrast *contrast,
|
|
|
|
gdouble value);
|
2002-10-20 18:14:17 +08:00
|
|
|
|
|
|
|
|
2003-11-19 07:44:35 +08:00
|
|
|
static const GimpModuleInfo cdisplay_contrast_info =
|
2000-05-04 17:14:43 +08:00
|
|
|
{
|
2003-01-03 01:44:28 +08:00
|
|
|
GIMP_MODULE_ABI_VERSION,
|
2000-04-29 09:46:27 +08:00
|
|
|
N_("High Contrast color display filter"),
|
2006-01-12 08:50:44 +08:00
|
|
|
"Jay Cox <jaycox@gimp.org>",
|
2000-10-16 20:07:55 +08:00
|
|
|
"v0.2",
|
2000-04-29 09:46:27 +08:00
|
|
|
"(c) 2000, released under the GPL",
|
2000-10-16 20:07:55 +08:00
|
|
|
"October 14, 2000"
|
2000-04-29 09:46:27 +08:00
|
|
|
};
|
|
|
|
|
2013-01-18 03:57:50 +08:00
|
|
|
|
2008-01-10 06:22:10 +08:00
|
|
|
G_DEFINE_DYNAMIC_TYPE (CdisplayContrast, cdisplay_contrast,
|
|
|
|
GIMP_TYPE_COLOR_DISPLAY)
|
2002-10-20 18:14:17 +08:00
|
|
|
|
|
|
|
|
2002-10-20 20:40:30 +08:00
|
|
|
G_MODULE_EXPORT const GimpModuleInfo *
|
|
|
|
gimp_module_query (GTypeModule *module)
|
|
|
|
{
|
|
|
|
return &cdisplay_contrast_info;
|
|
|
|
}
|
|
|
|
|
2002-10-20 18:14:17 +08:00
|
|
|
G_MODULE_EXPORT gboolean
|
2002-10-20 20:40:30 +08:00
|
|
|
gimp_module_register (GTypeModule *module)
|
2000-04-29 09:46:27 +08:00
|
|
|
{
|
2008-01-10 06:22:10 +08:00
|
|
|
cdisplay_contrast_register_type (module);
|
2002-10-20 18:14:17 +08:00
|
|
|
|
|
|
|
return TRUE;
|
2000-04-29 09:46:27 +08:00
|
|
|
}
|
|
|
|
|
2002-10-20 18:14:17 +08:00
|
|
|
static void
|
|
|
|
cdisplay_contrast_class_init (CdisplayContrastClass *klass)
|
2000-04-29 09:46:27 +08:00
|
|
|
{
|
2004-07-04 08:21:03 +08:00
|
|
|
GObjectClass *object_class = G_OBJECT_CLASS (klass);
|
|
|
|
GimpColorDisplayClass *display_class = GIMP_COLOR_DISPLAY_CLASS (klass);
|
2000-04-29 09:46:27 +08:00
|
|
|
|
2011-01-23 15:28:33 +08:00
|
|
|
object_class->get_property = cdisplay_contrast_get_property;
|
|
|
|
object_class->set_property = cdisplay_contrast_set_property;
|
2004-07-04 08:21:03 +08:00
|
|
|
|
2016-04-17 07:11:39 +08:00
|
|
|
GIMP_CONFIG_PROP_DOUBLE (object_class, PROP_CONTRAST,
|
|
|
|
"contrast",
|
2017-11-05 21:42:04 +08:00
|
|
|
_("Contrast cycles"),
|
2016-04-17 07:11:39 +08:00
|
|
|
NULL,
|
|
|
|
0.01, 10.0, DEFAULT_CONTRAST,
|
|
|
|
0);
|
2000-04-29 09:46:27 +08:00
|
|
|
|
2011-01-23 15:28:33 +08:00
|
|
|
display_class->name = _("Contrast");
|
|
|
|
display_class->help_id = "gimp-colordisplay-contrast";
|
2017-03-05 23:01:59 +08:00
|
|
|
display_class->icon_name = GIMP_ICON_DISPLAY_FILTER_CONTRAST;
|
2006-10-02 01:31:42 +08:00
|
|
|
|
2013-11-02 08:37:52 +08:00
|
|
|
display_class->convert_buffer = cdisplay_contrast_convert_buffer;
|
2000-04-29 09:46:27 +08:00
|
|
|
}
|
|
|
|
|
2008-01-10 06:22:10 +08:00
|
|
|
static void
|
|
|
|
cdisplay_contrast_class_finalize (CdisplayContrastClass *klass)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
cdisplay_contrast_init (CdisplayContrast *contrast)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2000-04-29 09:46:27 +08:00
|
|
|
static void
|
2004-07-04 08:21:03 +08:00
|
|
|
cdisplay_contrast_get_property (GObject *object,
|
|
|
|
guint property_id,
|
|
|
|
GValue *value,
|
|
|
|
GParamSpec *pspec)
|
2000-04-29 09:46:27 +08:00
|
|
|
{
|
2003-11-22 00:46:17 +08:00
|
|
|
CdisplayContrast *contrast = CDISPLAY_CONTRAST (object);
|
2000-04-29 09:46:27 +08:00
|
|
|
|
2004-07-04 08:21:03 +08:00
|
|
|
switch (property_id)
|
2000-04-29 09:46:27 +08:00
|
|
|
{
|
2004-07-04 08:21:03 +08:00
|
|
|
case PROP_CONTRAST:
|
|
|
|
g_value_set_double (value, contrast->contrast);
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
G_OBJECT_WARN_INVALID_PROPERTY_ID (object, property_id, pspec);
|
|
|
|
break;
|
2000-04-29 09:46:27 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2004-07-04 08:21:03 +08:00
|
|
|
static void
|
|
|
|
cdisplay_contrast_set_property (GObject *object,
|
|
|
|
guint property_id,
|
|
|
|
const GValue *value,
|
|
|
|
GParamSpec *pspec)
|
|
|
|
{
|
|
|
|
CdisplayContrast *contrast = CDISPLAY_CONTRAST (object);
|
|
|
|
|
|
|
|
switch (property_id)
|
|
|
|
{
|
|
|
|
case PROP_CONTRAST:
|
|
|
|
cdisplay_contrast_set_contrast (contrast, g_value_get_double (value));
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
G_OBJECT_WARN_INVALID_PROPERTY_ID (object, property_id, pspec);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
2002-10-20 18:14:17 +08:00
|
|
|
|
2013-11-02 08:37:52 +08:00
|
|
|
static void
|
|
|
|
cdisplay_contrast_convert_buffer (GimpColorDisplay *display,
|
|
|
|
GeglBuffer *buffer,
|
|
|
|
GeglRectangle *area)
|
|
|
|
{
|
|
|
|
CdisplayContrast *contrast = CDISPLAY_CONTRAST (display);
|
|
|
|
GeglBufferIterator *iter;
|
|
|
|
gfloat c;
|
|
|
|
|
|
|
|
c = contrast->contrast * 2 * G_PI;
|
|
|
|
|
|
|
|
iter = gegl_buffer_iterator_new (buffer, area, 0,
|
|
|
|
babl_format ("R'G'B'A float"),
|
2018-09-11 07:37:01 +08:00
|
|
|
GEGL_ACCESS_READWRITE, GEGL_ABYSS_NONE, 1);
|
2013-11-02 08:37:52 +08:00
|
|
|
|
|
|
|
while (gegl_buffer_iterator_next (iter))
|
|
|
|
{
|
2018-09-11 07:37:01 +08:00
|
|
|
gfloat *data = iter->items[0].data;
|
2013-11-02 08:37:52 +08:00
|
|
|
gint count = iter->length;
|
|
|
|
|
|
|
|
while (count--)
|
|
|
|
{
|
|
|
|
*data = 0.5 * (1.0 + sin (c * *data)); data++;
|
|
|
|
*data = 0.5 * (1.0 + sin (c * *data)); data++;
|
|
|
|
*data = 0.5 * (1.0 + sin (c * *data)); data++;
|
|
|
|
|
|
|
|
data++;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2002-10-20 18:14:17 +08:00
|
|
|
static void
|
2004-07-04 08:21:03 +08:00
|
|
|
cdisplay_contrast_set_contrast (CdisplayContrast *contrast,
|
|
|
|
gdouble value)
|
2002-10-20 18:14:17 +08:00
|
|
|
{
|
2004-07-04 08:21:03 +08:00
|
|
|
if (value <= 0.0)
|
|
|
|
value = 1.0;
|
2002-10-20 18:14:17 +08:00
|
|
|
|
2004-07-04 08:21:03 +08:00
|
|
|
if (value != contrast->contrast)
|
2002-10-20 18:14:17 +08:00
|
|
|
{
|
2004-07-04 08:21:03 +08:00
|
|
|
contrast->contrast = value;
|
|
|
|
|
|
|
|
g_object_notify (G_OBJECT (contrast), "contrast");
|
|
|
|
gimp_color_display_changed (GIMP_COLOR_DISPLAY (contrast));
|
2002-10-20 18:14:17 +08:00
|
|
|
}
|
|
|
|
}
|