2002-11-21 03:45:03 +08:00
|
|
|
/* The GIMP -- an image manipulation program
|
|
|
|
* Copyright (C) 1995-1997 Spencer Kimball and Peter Mattis
|
|
|
|
*
|
2002-11-23 05:08:04 +08:00
|
|
|
* gimppropwidgets.c
|
2004-04-18 23:12:42 +08:00
|
|
|
* Copyright (C) 2002-2004 Michael Natterer <mitch@gimp.org>
|
|
|
|
* Sven Neumann <sven@gimp.org>
|
2002-11-23 05:08:04 +08:00
|
|
|
*
|
2002-11-21 03:45:03 +08:00
|
|
|
* This program is free software; you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
* the Free Software Foundation; either version 2 of the License, or
|
|
|
|
* (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with this program; if not, write to the Free Software
|
|
|
|
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "config.h"
|
|
|
|
|
2002-12-01 22:53:17 +08:00
|
|
|
#include <string.h>
|
2006-09-15 01:11:24 +08:00
|
|
|
#include <stdlib.h>
|
2002-12-01 22:53:17 +08:00
|
|
|
|
2002-11-21 03:45:03 +08:00
|
|
|
#include <gtk/gtk.h>
|
|
|
|
|
2004-07-27 03:56:47 +08:00
|
|
|
#include "libgimpcolor/gimpcolor.h"
|
2002-11-21 03:45:03 +08:00
|
|
|
#include "libgimpmath/gimpmath.h"
|
|
|
|
#include "libgimpbase/gimpbase.h"
|
2005-01-26 03:11:26 +08:00
|
|
|
#include "libgimpconfig/gimpconfig.h"
|
2002-11-21 03:45:03 +08:00
|
|
|
#include "libgimpwidgets/gimpwidgets.h"
|
|
|
|
|
|
|
|
#include "widgets-types.h"
|
|
|
|
|
2003-02-19 00:52:37 +08:00
|
|
|
#include "core/gimpviewable.h"
|
|
|
|
|
2002-11-24 06:22:21 +08:00
|
|
|
#include "gimpcolorpanel.h"
|
2003-02-19 00:52:37 +08:00
|
|
|
#include "gimpdnd.h"
|
2004-08-25 01:16:46 +08:00
|
|
|
#include "gimpview.h"
|
2002-11-21 03:45:03 +08:00
|
|
|
#include "gimppropwidgets.h"
|
2003-02-08 01:12:21 +08:00
|
|
|
#include "gimpwidgets-constructors.h"
|
2002-11-21 03:45:03 +08:00
|
|
|
|
2003-03-26 00:38:19 +08:00
|
|
|
#include "gimp-intl.h"
|
2002-11-21 03:45:03 +08:00
|
|
|
|
|
|
|
|
2002-11-23 05:08:04 +08:00
|
|
|
/* utility function prototypes */
|
|
|
|
|
2003-10-24 00:58:16 +08:00
|
|
|
static void set_param_spec (GObject *object,
|
|
|
|
GtkWidget *widget,
|
|
|
|
GParamSpec *param_spec);
|
|
|
|
static GParamSpec * get_param_spec (GObject *object);
|
|
|
|
|
|
|
|
static GParamSpec * find_param_spec (GObject *object,
|
|
|
|
const gchar *property_name,
|
|
|
|
const gchar *strloc);
|
|
|
|
static GParamSpec * check_param_spec (GObject *object,
|
|
|
|
const gchar *property_name,
|
|
|
|
GType type,
|
|
|
|
const gchar *strloc);
|
|
|
|
|
|
|
|
static void connect_notify (GObject *config,
|
|
|
|
const gchar *property_name,
|
|
|
|
GCallback callback,
|
|
|
|
gpointer callback_data);
|
2002-11-23 05:08:04 +08:00
|
|
|
|
|
|
|
|
2005-02-05 04:47:42 +08:00
|
|
|
/****************/
|
|
|
|
/* paint menu */
|
|
|
|
/****************/
|
2004-04-19 07:48:30 +08:00
|
|
|
|
|
|
|
static void gimp_prop_paint_menu_callback (GtkWidget *widget,
|
2005-02-05 04:47:42 +08:00
|
|
|
GObject *config);
|
|
|
|
static void gimp_prop_paint_menu_notify (GObject *config,
|
|
|
|
GParamSpec *param_spec,
|
|
|
|
GtkWidget *menu);
|
2003-07-07 21:37:19 +08:00
|
|
|
|
2005-02-04 06:31:55 +08:00
|
|
|
/**
|
2005-02-05 04:47:42 +08:00
|
|
|
* gimp_prop_paint_mode_menu_new:
|
2006-08-04 17:41:09 +08:00
|
|
|
* @config: #GimpConfig object to which property is attached.
|
|
|
|
* @property_name: Name of Enum property.
|
|
|
|
* @with_behind_mode: Whether to include "Behind" mode in the menu.
|
2005-02-04 06:31:55 +08:00
|
|
|
*
|
2005-02-05 04:47:42 +08:00
|
|
|
* Creates a #GimpPaintModeMenu widget to display and set the specified
|
|
|
|
* Enum property, for which the enum must be #GimpLayerModeEffects.
|
2005-02-04 06:31:55 +08:00
|
|
|
*
|
2005-02-05 04:47:42 +08:00
|
|
|
* Return value: The newly created #GimpPaintModeMenu widget.
|
2005-02-04 06:31:55 +08:00
|
|
|
*
|
|
|
|
* Since GIMP 2.4
|
|
|
|
*/
|
2003-07-07 21:37:19 +08:00
|
|
|
GtkWidget *
|
2005-02-05 04:47:42 +08:00
|
|
|
gimp_prop_paint_mode_menu_new (GObject *config,
|
|
|
|
const gchar *property_name,
|
|
|
|
gboolean with_behind_mode)
|
2003-07-07 21:37:19 +08:00
|
|
|
{
|
|
|
|
GParamSpec *param_spec;
|
2005-02-05 04:47:42 +08:00
|
|
|
GtkWidget *menu;
|
|
|
|
gint value;
|
2003-07-07 21:37:19 +08:00
|
|
|
|
|
|
|
param_spec = check_param_spec (config, property_name,
|
2005-02-05 04:47:42 +08:00
|
|
|
G_TYPE_PARAM_ENUM, G_STRFUNC);
|
2003-07-07 21:37:19 +08:00
|
|
|
if (! param_spec)
|
|
|
|
return NULL;
|
|
|
|
|
|
|
|
g_object_get (config,
|
|
|
|
property_name, &value,
|
|
|
|
NULL);
|
|
|
|
|
2005-02-09 04:07:08 +08:00
|
|
|
menu = gimp_paint_mode_menu_new (with_behind_mode);
|
|
|
|
|
|
|
|
gimp_int_combo_box_connect (GIMP_INT_COMBO_BOX (menu),
|
|
|
|
value,
|
|
|
|
G_CALLBACK (gimp_prop_paint_menu_callback),
|
|
|
|
config);
|
2003-07-07 21:37:19 +08:00
|
|
|
|
2005-02-05 04:47:42 +08:00
|
|
|
set_param_spec (G_OBJECT (menu), menu, param_spec);
|
2003-07-07 21:37:19 +08:00
|
|
|
|
|
|
|
connect_notify (config, property_name,
|
2005-02-05 04:47:42 +08:00
|
|
|
G_CALLBACK (gimp_prop_paint_menu_notify),
|
|
|
|
menu);
|
2003-07-07 21:37:19 +08:00
|
|
|
|
2005-02-05 04:47:42 +08:00
|
|
|
return menu;
|
2003-07-07 21:37:19 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2005-02-05 04:47:42 +08:00
|
|
|
gimp_prop_paint_menu_callback (GtkWidget *widget,
|
2003-07-07 21:37:19 +08:00
|
|
|
GObject *config)
|
|
|
|
{
|
2005-02-09 04:07:08 +08:00
|
|
|
GParamSpec *param_spec;
|
|
|
|
gint value;
|
2003-07-07 21:37:19 +08:00
|
|
|
|
2005-02-09 04:07:08 +08:00
|
|
|
param_spec = get_param_spec (G_OBJECT (widget));
|
|
|
|
if (! param_spec)
|
|
|
|
return;
|
2003-07-07 21:37:19 +08:00
|
|
|
|
2005-02-09 04:07:08 +08:00
|
|
|
if (gimp_int_combo_box_get_active (GIMP_INT_COMBO_BOX (widget), &value))
|
|
|
|
{
|
|
|
|
g_object_set (config,
|
|
|
|
param_spec->name, value,
|
|
|
|
NULL);
|
2005-02-05 04:47:42 +08:00
|
|
|
}
|
2003-07-07 21:37:19 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2005-02-05 04:47:42 +08:00
|
|
|
gimp_prop_paint_menu_notify (GObject *config,
|
2003-07-07 21:37:19 +08:00
|
|
|
GParamSpec *param_spec,
|
2005-02-05 04:47:42 +08:00
|
|
|
GtkWidget *menu)
|
2003-07-07 21:37:19 +08:00
|
|
|
{
|
2005-02-05 04:47:42 +08:00
|
|
|
gint value;
|
2003-07-07 21:37:19 +08:00
|
|
|
|
|
|
|
g_object_get (config,
|
|
|
|
param_spec->name, &value,
|
|
|
|
NULL);
|
|
|
|
|
2005-02-09 04:07:08 +08:00
|
|
|
g_signal_handlers_block_by_func (menu,
|
|
|
|
gimp_prop_paint_menu_callback,
|
|
|
|
config);
|
|
|
|
|
|
|
|
gimp_int_combo_box_set_active (GIMP_INT_COMBO_BOX (menu), value);
|
|
|
|
|
|
|
|
g_signal_handlers_unblock_by_func (menu,
|
|
|
|
gimp_prop_paint_menu_callback,
|
|
|
|
config);
|
|
|
|
|
2003-07-07 21:37:19 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2002-11-24 06:22:21 +08:00
|
|
|
/******************/
|
|
|
|
/* color button */
|
|
|
|
/******************/
|
|
|
|
|
|
|
|
static void gimp_prop_color_button_callback (GtkWidget *widget,
|
|
|
|
GObject *config);
|
|
|
|
static void gimp_prop_color_button_notify (GObject *config,
|
|
|
|
GParamSpec *param_spec,
|
|
|
|
GtkWidget *button);
|
|
|
|
|
2005-02-04 06:31:55 +08:00
|
|
|
/**
|
|
|
|
* gimp_prop_color_button_new:
|
2006-08-04 17:41:09 +08:00
|
|
|
* @config: #GimpConfig object to which property is attached.
|
|
|
|
* @property_name: Name of #GimpRGB property.
|
|
|
|
* @title: Title of the #GimpColorPanel that is to be created
|
|
|
|
* @width: Width of color button.
|
|
|
|
* @height: Height of color button.
|
|
|
|
* @type: How transparency is represented.
|
2005-02-04 06:31:55 +08:00
|
|
|
*
|
2006-08-04 17:41:09 +08:00
|
|
|
* Creates a #GimpColorPanel to set and display the value of a #GimpRGB
|
2005-02-04 06:31:55 +08:00
|
|
|
* property. Pressing the button brings up a color selector dialog.
|
|
|
|
*
|
|
|
|
* Return value: A new #GimpColorPanel widget.
|
|
|
|
*
|
|
|
|
* Since GIMP 2.4
|
|
|
|
*/
|
2002-11-24 06:22:21 +08:00
|
|
|
GtkWidget *
|
|
|
|
gimp_prop_color_button_new (GObject *config,
|
|
|
|
const gchar *property_name,
|
|
|
|
const gchar *title,
|
|
|
|
gint width,
|
|
|
|
gint height,
|
|
|
|
GimpColorAreaType type)
|
|
|
|
{
|
|
|
|
GParamSpec *param_spec;
|
|
|
|
GtkWidget *button;
|
|
|
|
GimpRGB *value;
|
|
|
|
|
|
|
|
param_spec = check_param_spec (config, property_name,
|
2004-07-27 03:56:47 +08:00
|
|
|
GIMP_TYPE_PARAM_RGB, G_STRFUNC);
|
2002-11-24 06:22:21 +08:00
|
|
|
if (! param_spec)
|
|
|
|
return NULL;
|
|
|
|
|
|
|
|
g_object_get (config,
|
|
|
|
property_name, &value,
|
|
|
|
NULL);
|
|
|
|
|
|
|
|
button = gimp_color_panel_new (title, value, type, width, height);
|
|
|
|
|
|
|
|
g_free (value);
|
|
|
|
|
2003-01-26 04:29:42 +08:00
|
|
|
set_param_spec (G_OBJECT (button), button, param_spec);
|
2002-11-24 06:22:21 +08:00
|
|
|
|
2005-05-28 00:51:39 +08:00
|
|
|
g_signal_connect (button, "color-changed",
|
2006-04-12 20:49:29 +08:00
|
|
|
G_CALLBACK (gimp_prop_color_button_callback),
|
|
|
|
config);
|
2002-11-24 06:22:21 +08:00
|
|
|
|
|
|
|
connect_notify (config, property_name,
|
|
|
|
G_CALLBACK (gimp_prop_color_button_notify),
|
|
|
|
button);
|
|
|
|
|
|
|
|
return button;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
gimp_prop_color_button_callback (GtkWidget *button,
|
|
|
|
GObject *config)
|
|
|
|
{
|
|
|
|
GParamSpec *param_spec;
|
|
|
|
GimpRGB value;
|
|
|
|
|
|
|
|
param_spec = get_param_spec (G_OBJECT (button));
|
|
|
|
if (! param_spec)
|
|
|
|
return;
|
|
|
|
|
|
|
|
gimp_color_button_get_color (GIMP_COLOR_BUTTON (button), &value);
|
|
|
|
|
|
|
|
g_signal_handlers_block_by_func (config,
|
|
|
|
gimp_prop_color_button_notify,
|
|
|
|
button);
|
|
|
|
|
|
|
|
g_object_set (config,
|
|
|
|
param_spec->name, &value,
|
|
|
|
NULL);
|
|
|
|
|
|
|
|
g_signal_handlers_unblock_by_func (config,
|
|
|
|
gimp_prop_color_button_notify,
|
|
|
|
button);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
gimp_prop_color_button_notify (GObject *config,
|
|
|
|
GParamSpec *param_spec,
|
|
|
|
GtkWidget *button)
|
|
|
|
{
|
|
|
|
GimpRGB *value;
|
|
|
|
|
|
|
|
g_object_get (config,
|
|
|
|
param_spec->name, &value,
|
|
|
|
NULL);
|
|
|
|
|
2003-01-06 06:07:10 +08:00
|
|
|
g_signal_handlers_block_by_func (button,
|
2002-11-24 06:22:21 +08:00
|
|
|
gimp_prop_color_button_callback,
|
|
|
|
config);
|
|
|
|
|
|
|
|
gimp_color_button_set_color (GIMP_COLOR_BUTTON (button), value);
|
|
|
|
|
|
|
|
g_free (value);
|
|
|
|
|
2003-01-06 06:07:10 +08:00
|
|
|
g_signal_handlers_unblock_by_func (button,
|
2002-11-24 06:22:21 +08:00
|
|
|
gimp_prop_color_button_callback,
|
|
|
|
config);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2003-02-19 00:52:37 +08:00
|
|
|
/*************/
|
2006-01-17 18:08:50 +08:00
|
|
|
/* view */
|
2003-02-19 00:52:37 +08:00
|
|
|
/*************/
|
|
|
|
|
2006-01-17 18:08:50 +08:00
|
|
|
static void gimp_prop_view_drop (GtkWidget *menu,
|
|
|
|
gint x,
|
|
|
|
gint y,
|
|
|
|
GimpViewable *viewable,
|
|
|
|
gpointer data);
|
|
|
|
static void gimp_prop_view_notify (GObject *config,
|
|
|
|
GParamSpec *param_spec,
|
|
|
|
GtkWidget *view);
|
2003-02-19 00:52:37 +08:00
|
|
|
|
2005-02-04 06:31:55 +08:00
|
|
|
/**
|
2006-01-17 18:08:50 +08:00
|
|
|
* gimp_prop_view_new:
|
2006-08-04 17:41:09 +08:00
|
|
|
* @config: #GimpConfig object to which property is attached.
|
2006-08-30 05:44:51 +08:00
|
|
|
* @context: a #Gimpcontext.
|
2006-08-04 17:41:09 +08:00
|
|
|
* @property_name: Name of #GimpViewable property.
|
|
|
|
* @size: Width and height of preview display.
|
2005-02-04 06:31:55 +08:00
|
|
|
*
|
2006-08-04 17:41:09 +08:00
|
|
|
* Creates a widget to display the value of a #GimpViewable property.
|
2005-02-04 06:31:55 +08:00
|
|
|
*
|
|
|
|
* Return value: A new #GimpView widget.
|
|
|
|
*
|
|
|
|
* Since GIMP 2.4
|
|
|
|
*/
|
2003-02-19 00:52:37 +08:00
|
|
|
GtkWidget *
|
2006-01-17 18:08:50 +08:00
|
|
|
gimp_prop_view_new (GObject *config,
|
|
|
|
const gchar *property_name,
|
2006-08-30 05:44:51 +08:00
|
|
|
GimpContext *context,
|
2006-01-17 18:08:50 +08:00
|
|
|
gint size)
|
2003-02-19 00:52:37 +08:00
|
|
|
{
|
|
|
|
GParamSpec *param_spec;
|
2006-01-17 18:08:50 +08:00
|
|
|
GtkWidget *view;
|
2003-02-19 00:52:37 +08:00
|
|
|
GimpViewable *viewable;
|
|
|
|
|
|
|
|
param_spec = check_param_spec (config, property_name,
|
2004-05-12 16:13:33 +08:00
|
|
|
G_TYPE_PARAM_OBJECT, G_STRFUNC);
|
2003-02-19 00:52:37 +08:00
|
|
|
if (! param_spec)
|
|
|
|
return NULL;
|
|
|
|
|
|
|
|
if (! g_type_is_a (param_spec->value_type, GIMP_TYPE_VIEWABLE))
|
|
|
|
{
|
|
|
|
g_warning ("%s: property '%s' of %s is not a GimpViewable",
|
2004-05-12 16:13:33 +08:00
|
|
|
G_STRFUNC, property_name,
|
2003-02-19 00:52:37 +08:00
|
|
|
g_type_name (G_TYPE_FROM_INSTANCE (config)));
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
2006-08-30 05:44:51 +08:00
|
|
|
view = gimp_view_new_by_types (context,
|
|
|
|
GIMP_TYPE_VIEW,
|
2006-01-17 18:08:50 +08:00
|
|
|
param_spec->value_type,
|
|
|
|
size, 0, FALSE);
|
2003-02-19 00:52:37 +08:00
|
|
|
|
2006-01-17 18:08:50 +08:00
|
|
|
if (! view)
|
2003-02-19 00:52:37 +08:00
|
|
|
{
|
2006-01-17 18:08:50 +08:00
|
|
|
g_warning ("%s: cannot create view for type '%s'",
|
2004-05-12 16:13:33 +08:00
|
|
|
G_STRFUNC, g_type_name (param_spec->value_type));
|
2003-02-19 00:52:37 +08:00
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
g_object_get (config,
|
|
|
|
property_name, &viewable,
|
|
|
|
NULL);
|
|
|
|
|
|
|
|
if (viewable)
|
|
|
|
{
|
2006-01-17 18:08:50 +08:00
|
|
|
gimp_view_set_viewable (GIMP_VIEW (view), viewable);
|
2003-02-19 00:52:37 +08:00
|
|
|
g_object_unref (viewable);
|
|
|
|
}
|
|
|
|
|
2006-01-17 18:08:50 +08:00
|
|
|
set_param_spec (G_OBJECT (view), view, param_spec);
|
2003-02-19 00:52:37 +08:00
|
|
|
|
2006-01-17 18:08:50 +08:00
|
|
|
gimp_dnd_viewable_dest_add (view, param_spec->value_type,
|
|
|
|
gimp_prop_view_drop,
|
2003-02-19 00:52:37 +08:00
|
|
|
config);
|
|
|
|
|
|
|
|
connect_notify (config, property_name,
|
2006-01-17 18:08:50 +08:00
|
|
|
G_CALLBACK (gimp_prop_view_notify),
|
|
|
|
view);
|
2003-02-19 00:52:37 +08:00
|
|
|
|
2006-01-17 18:08:50 +08:00
|
|
|
return view;
|
2003-02-19 00:52:37 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2006-01-17 18:08:50 +08:00
|
|
|
gimp_prop_view_drop (GtkWidget *view,
|
|
|
|
gint x,
|
|
|
|
gint y,
|
|
|
|
GimpViewable *viewable,
|
|
|
|
gpointer data)
|
2003-02-19 00:52:37 +08:00
|
|
|
{
|
|
|
|
GObject *config;
|
|
|
|
GParamSpec *param_spec;
|
|
|
|
|
2006-01-17 18:08:50 +08:00
|
|
|
param_spec = get_param_spec (G_OBJECT (view));
|
2003-02-19 00:52:37 +08:00
|
|
|
if (! param_spec)
|
|
|
|
return;
|
|
|
|
|
|
|
|
config = G_OBJECT (data);
|
|
|
|
|
|
|
|
g_object_set (config,
|
|
|
|
param_spec->name, viewable,
|
|
|
|
NULL);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2006-01-17 18:08:50 +08:00
|
|
|
gimp_prop_view_notify (GObject *config,
|
|
|
|
GParamSpec *param_spec,
|
|
|
|
GtkWidget *view)
|
2003-02-19 00:52:37 +08:00
|
|
|
{
|
|
|
|
GimpViewable *viewable;
|
|
|
|
|
|
|
|
g_object_get (config,
|
|
|
|
param_spec->name, &viewable,
|
|
|
|
NULL);
|
|
|
|
|
2006-01-17 18:08:50 +08:00
|
|
|
gimp_view_set_viewable (GIMP_VIEW (view), viewable);
|
2003-02-19 00:52:37 +08:00
|
|
|
|
|
|
|
if (viewable)
|
|
|
|
g_object_unref (viewable);
|
|
|
|
}
|
|
|
|
|
2003-02-04 07:54:19 +08:00
|
|
|
|
2002-11-23 05:08:04 +08:00
|
|
|
/*******************************/
|
|
|
|
/* private utility functions */
|
|
|
|
/*******************************/
|
|
|
|
|
|
|
|
static GQuark param_spec_quark = 0;
|
|
|
|
|
|
|
|
static void
|
|
|
|
set_param_spec (GObject *object,
|
2003-01-26 04:29:42 +08:00
|
|
|
GtkWidget *widget,
|
|
|
|
GParamSpec *param_spec)
|
2002-11-23 05:08:04 +08:00
|
|
|
{
|
2003-10-15 19:04:31 +08:00
|
|
|
if (object)
|
|
|
|
{
|
|
|
|
if (! param_spec_quark)
|
|
|
|
param_spec_quark = g_quark_from_static_string ("gimp-config-param-spec");
|
2002-11-23 05:08:04 +08:00
|
|
|
|
2003-10-15 19:04:31 +08:00
|
|
|
g_object_set_qdata (object, param_spec_quark, param_spec);
|
|
|
|
}
|
2003-01-26 04:29:42 +08:00
|
|
|
|
|
|
|
if (widget)
|
|
|
|
{
|
|
|
|
const gchar *blurb = g_param_spec_get_blurb (param_spec);
|
|
|
|
|
|
|
|
if (blurb)
|
2003-02-09 08:22:42 +08:00
|
|
|
gimp_help_set_help_data (widget, gettext (blurb), NULL);
|
2003-01-26 04:29:42 +08:00
|
|
|
}
|
2002-11-23 05:08:04 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
static GParamSpec *
|
|
|
|
get_param_spec (GObject *object)
|
|
|
|
{
|
|
|
|
if (! param_spec_quark)
|
|
|
|
param_spec_quark = g_quark_from_static_string ("gimp-config-param-spec");
|
|
|
|
|
|
|
|
return g_object_get_qdata (object, param_spec_quark);
|
|
|
|
}
|
|
|
|
|
|
|
|
static GParamSpec *
|
|
|
|
find_param_spec (GObject *object,
|
|
|
|
const gchar *property_name,
|
|
|
|
const gchar *strloc)
|
|
|
|
{
|
|
|
|
GParamSpec *param_spec;
|
|
|
|
|
|
|
|
param_spec = g_object_class_find_property (G_OBJECT_GET_CLASS (object),
|
|
|
|
property_name);
|
|
|
|
|
|
|
|
if (! param_spec)
|
|
|
|
g_warning ("%s: %s has no property named '%s'",
|
|
|
|
strloc,
|
|
|
|
g_type_name (G_TYPE_FROM_INSTANCE (object)),
|
|
|
|
property_name);
|
|
|
|
|
|
|
|
return param_spec;
|
|
|
|
}
|
|
|
|
|
|
|
|
static GParamSpec *
|
|
|
|
check_param_spec (GObject *object,
|
|
|
|
const gchar *property_name,
|
|
|
|
GType type,
|
|
|
|
const gchar *strloc)
|
|
|
|
{
|
|
|
|
GParamSpec *param_spec;
|
|
|
|
|
|
|
|
param_spec = find_param_spec (object, property_name, strloc);
|
|
|
|
|
|
|
|
if (param_spec && ! g_type_is_a (G_TYPE_FROM_INSTANCE (param_spec), type))
|
|
|
|
{
|
|
|
|
g_warning ("%s: property '%s' of %s is not a %s",
|
|
|
|
strloc,
|
|
|
|
param_spec->name,
|
|
|
|
g_type_name (param_spec->owner_type),
|
|
|
|
g_type_name (type));
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
return param_spec;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
connect_notify (GObject *config,
|
|
|
|
const gchar *property_name,
|
|
|
|
GCallback callback,
|
|
|
|
gpointer callback_data)
|
|
|
|
{
|
|
|
|
gchar *notify_name;
|
|
|
|
|
|
|
|
notify_name = g_strconcat ("notify::", property_name, NULL);
|
|
|
|
|
|
|
|
g_signal_connect_object (config, notify_name, callback, callback_data, 0);
|
|
|
|
|
|
|
|
g_free (notify_name);
|
|
|
|
}
|
2006-09-15 01:11:24 +08:00
|
|
|
|
|
|
|
|
2006-09-23 02:27:21 +08:00
|
|
|
typedef struct
|
|
|
|
{
|
|
|
|
GObject *config;
|
|
|
|
const gchar *numerator_property;
|
|
|
|
const gchar *denominator_property;
|
|
|
|
const gchar *fixed_aspect_property;
|
|
|
|
const gchar *width_property;
|
|
|
|
const gchar *height_property;
|
|
|
|
} AspectData;
|
|
|
|
|
2006-09-22 04:16:25 +08:00
|
|
|
static void gimp_prop_numeric_entry_notify (GObject *config,
|
|
|
|
GParamSpec *param_spec,
|
|
|
|
GtkEntry *entry);
|
2006-09-15 01:11:24 +08:00
|
|
|
|
2006-09-22 04:16:25 +08:00
|
|
|
static void gimp_prop_numeric_entry_callback (GtkWidget *widget,
|
|
|
|
GObject *config);
|
|
|
|
|
|
|
|
static gboolean gimp_prop_numeric_entry_focus_out (GtkWidget *widget,
|
|
|
|
GdkEventFocus *event,
|
|
|
|
GObject *config);
|
2006-09-23 02:27:21 +08:00
|
|
|
static void gimp_prop_aspect_ratio_flip (GtkWidget *widget,
|
|
|
|
gpointer data);
|
2006-09-15 01:11:24 +08:00
|
|
|
|
|
|
|
/**
|
|
|
|
* gimp_prop_aspect_ratio_new:
|
|
|
|
* @config: Object to which property is attached.
|
|
|
|
* @numerator_property: Name of double property controlled by the first entry.
|
|
|
|
* @denominator_property: Name of double property controlled by the second entry.
|
|
|
|
* @digits: Number of digits after decimal point to display.
|
|
|
|
*
|
|
|
|
* Creates a pair of entries separated by a ":" label. Intended to provide
|
|
|
|
* a gui for setting an aspect ratio.
|
|
|
|
*
|
|
|
|
* Return value: A new #HBox, containing the entries and label.
|
|
|
|
*
|
|
|
|
* Since GIMP 2.4
|
|
|
|
*/
|
2006-09-23 02:27:21 +08:00
|
|
|
void
|
2006-09-15 01:11:24 +08:00
|
|
|
gimp_prop_aspect_ratio_new (GObject *config,
|
|
|
|
const gchar *numerator_property,
|
|
|
|
const gchar *denominator_property,
|
2006-09-23 02:27:21 +08:00
|
|
|
const char *fixed_aspect_property,
|
|
|
|
const gchar *width_property,
|
|
|
|
const gchar *height_property,
|
|
|
|
gint digits,
|
|
|
|
GtkTable *table,
|
|
|
|
gint row0,
|
|
|
|
gint col0)
|
2006-09-15 01:11:24 +08:00
|
|
|
{
|
2006-09-23 02:27:21 +08:00
|
|
|
AspectData *aspect_data;
|
2006-09-15 01:11:24 +08:00
|
|
|
GParamSpec *param_spec;
|
|
|
|
GtkWidget *label;
|
|
|
|
GtkWidget *entry;
|
2006-09-23 02:27:21 +08:00
|
|
|
GtkWidget *button;
|
2006-09-22 04:16:25 +08:00
|
|
|
gdouble numerator;
|
|
|
|
gdouble denominator;
|
|
|
|
gchar num_string[20];
|
2006-09-15 01:11:24 +08:00
|
|
|
|
2006-09-22 04:16:25 +08:00
|
|
|
g_object_get (config,
|
|
|
|
numerator_property, &numerator,
|
|
|
|
denominator_property, &denominator,
|
|
|
|
NULL);
|
|
|
|
|
2006-09-23 02:27:21 +08:00
|
|
|
aspect_data = g_new0 (AspectData, 1);
|
|
|
|
aspect_data->config = config;
|
|
|
|
aspect_data->numerator_property = numerator_property;
|
|
|
|
aspect_data->denominator_property = denominator_property;
|
|
|
|
aspect_data->fixed_aspect_property = fixed_aspect_property;
|
|
|
|
aspect_data->width_property = width_property;
|
|
|
|
aspect_data->height_property = height_property;
|
|
|
|
|
2006-09-15 01:11:24 +08:00
|
|
|
/* numerator entry */
|
|
|
|
param_spec = find_param_spec (config, numerator_property, G_STRFUNC);
|
|
|
|
if (! param_spec)
|
2006-09-23 02:27:21 +08:00
|
|
|
return;
|
2006-09-15 01:11:24 +08:00
|
|
|
entry = gtk_entry_new ();
|
|
|
|
gtk_entry_set_width_chars (GTK_ENTRY (entry), 5);
|
2006-09-22 04:16:25 +08:00
|
|
|
sprintf (num_string, "%lg", numerator);
|
|
|
|
gtk_entry_set_text (GTK_ENTRY (entry), num_string);
|
2006-09-23 02:27:21 +08:00
|
|
|
gtk_table_attach_defaults (GTK_TABLE (table), entry,
|
|
|
|
col0, col0 + 1, row0, row0 + 1);
|
2006-09-15 01:11:24 +08:00
|
|
|
set_param_spec (G_OBJECT (entry), entry, param_spec);
|
|
|
|
g_signal_connect (entry, "activate",
|
|
|
|
G_CALLBACK (gimp_prop_numeric_entry_callback),
|
|
|
|
config);
|
2006-09-22 04:16:25 +08:00
|
|
|
g_signal_connect (entry, "focus-out-event",
|
|
|
|
G_CALLBACK (gimp_prop_numeric_entry_focus_out),
|
|
|
|
config);
|
2006-09-15 01:11:24 +08:00
|
|
|
connect_notify (config, numerator_property,
|
|
|
|
G_CALLBACK (gimp_prop_numeric_entry_notify),
|
|
|
|
entry);
|
|
|
|
gtk_widget_show (entry);
|
|
|
|
|
|
|
|
/* ":" label */
|
|
|
|
label = gtk_label_new (":");
|
2006-09-23 02:27:21 +08:00
|
|
|
gtk_table_attach_defaults (GTK_TABLE (table), label,
|
|
|
|
col0 + 1, col0 + 2, row0, row0 + 1);
|
2006-09-15 01:11:24 +08:00
|
|
|
gtk_widget_show (label);
|
|
|
|
|
|
|
|
/* denominator entry */
|
|
|
|
param_spec = find_param_spec (config, denominator_property, G_STRFUNC);
|
|
|
|
if (! param_spec)
|
2006-09-23 02:27:21 +08:00
|
|
|
return;
|
2006-09-15 01:11:24 +08:00
|
|
|
entry = gtk_entry_new ();
|
|
|
|
gtk_entry_set_width_chars (GTK_ENTRY (entry), 5);
|
2006-09-22 04:16:25 +08:00
|
|
|
sprintf (num_string, "%lg", denominator);
|
|
|
|
gtk_entry_set_text (GTK_ENTRY (entry), num_string);
|
2006-09-23 02:27:21 +08:00
|
|
|
gtk_table_attach_defaults (GTK_TABLE (table), entry,
|
|
|
|
col0 + 2, col0 + 3, row0, row0 + 1);
|
2006-09-15 01:11:24 +08:00
|
|
|
set_param_spec (G_OBJECT (entry), entry, param_spec);
|
|
|
|
g_signal_connect (entry, "activate",
|
|
|
|
G_CALLBACK (gimp_prop_numeric_entry_callback),
|
|
|
|
config);
|
2006-09-22 04:16:25 +08:00
|
|
|
g_signal_connect (entry, "focus-out-event",
|
|
|
|
G_CALLBACK (gimp_prop_numeric_entry_focus_out),
|
|
|
|
config);
|
2006-09-15 01:11:24 +08:00
|
|
|
connect_notify (config, denominator_property,
|
|
|
|
G_CALLBACK (gimp_prop_numeric_entry_notify),
|
|
|
|
entry);
|
|
|
|
gtk_widget_show (entry);
|
|
|
|
|
2006-09-23 02:27:21 +08:00
|
|
|
/* flip button */
|
|
|
|
button = gtk_button_new_from_stock (GIMP_STOCK_FLIP_HORIZONTAL);
|
|
|
|
gtk_button_set_use_stock (GTK_BUTTON (button), TRUE);
|
|
|
|
gtk_table_attach_defaults (GTK_TABLE (table), button,
|
|
|
|
col0, col0 + 3, row0 + 1, row0 + 2);
|
|
|
|
g_signal_connect (button, "pressed",
|
|
|
|
G_CALLBACK (gimp_prop_aspect_ratio_flip),
|
|
|
|
aspect_data);
|
|
|
|
gtk_widget_show (button);
|
2006-09-15 01:11:24 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
gimp_prop_numeric_entry_notify (GObject *config,
|
|
|
|
GParamSpec *param_spec,
|
|
|
|
GtkEntry *entry)
|
|
|
|
{
|
|
|
|
gdouble value;
|
|
|
|
gchar text[20];
|
|
|
|
|
|
|
|
g_object_get (config, param_spec->name, &value, NULL);
|
|
|
|
|
|
|
|
sprintf (text, "%3lg", value);
|
|
|
|
|
|
|
|
gtk_entry_set_text (entry, text);
|
|
|
|
}
|
|
|
|
|
2006-09-22 04:16:25 +08:00
|
|
|
static gboolean
|
|
|
|
gimp_prop_numeric_entry_focus_out (GtkWidget *widget,
|
|
|
|
GdkEventFocus *event,
|
|
|
|
GObject *config)
|
|
|
|
{
|
|
|
|
gimp_prop_numeric_entry_callback (widget, config);
|
|
|
|
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
2006-09-15 01:11:24 +08:00
|
|
|
static void
|
|
|
|
gimp_prop_numeric_entry_callback (GtkWidget *widget,
|
|
|
|
GObject *config)
|
|
|
|
{
|
|
|
|
GParamSpec *param_spec;
|
|
|
|
gdouble value;
|
|
|
|
|
|
|
|
g_return_if_fail (GTK_IS_ENTRY (widget));
|
|
|
|
|
|
|
|
param_spec = get_param_spec (G_OBJECT (widget));
|
|
|
|
if (! param_spec)
|
|
|
|
return;
|
|
|
|
|
|
|
|
/* we use strtod instead of g_ascii_strtod because it uses the locale,
|
|
|
|
which is what we want here */
|
|
|
|
value = strtod (gtk_entry_get_text (GTK_ENTRY (widget)), NULL);
|
|
|
|
|
|
|
|
if (value != 0)
|
|
|
|
g_object_set (config,
|
|
|
|
param_spec->name, value,
|
|
|
|
NULL);
|
|
|
|
else
|
|
|
|
g_message ("Invalid value entered for aspect ratio.");
|
|
|
|
}
|
|
|
|
|
2006-09-23 02:27:21 +08:00
|
|
|
static void
|
|
|
|
gimp_prop_aspect_ratio_flip (GtkWidget *widget,
|
|
|
|
gpointer data)
|
|
|
|
{
|
|
|
|
AspectData *aspect_data = data;
|
|
|
|
gdouble numerator;
|
|
|
|
gdouble denominator;
|
|
|
|
gdouble height;
|
|
|
|
gdouble width;
|
|
|
|
gboolean fixed_aspect = FALSE;
|
|
|
|
|
|
|
|
if (aspect_data->fixed_aspect_property)
|
|
|
|
{
|
|
|
|
g_object_get (aspect_data->config,
|
|
|
|
aspect_data->fixed_aspect_property, &fixed_aspect,
|
|
|
|
NULL);
|
|
|
|
}
|
|
|
|
|
|
|
|
g_object_get (aspect_data->config,
|
|
|
|
aspect_data->numerator_property, &numerator,
|
|
|
|
aspect_data->denominator_property, &denominator,
|
|
|
|
NULL);
|
|
|
|
|
|
|
|
if (fixed_aspect)
|
|
|
|
{
|
|
|
|
if (aspect_data->width_property && aspect_data->height_property)
|
|
|
|
{
|
|
|
|
g_object_get (aspect_data->config,
|
|
|
|
aspect_data->width_property, &width,
|
|
|
|
aspect_data->height_property, &height,
|
|
|
|
NULL);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
g_object_set (aspect_data->config,
|
|
|
|
aspect_data->numerator_property, denominator,
|
|
|
|
aspect_data->denominator_property, numerator,
|
|
|
|
NULL);
|
|
|
|
|
|
|
|
if (fixed_aspect)
|
|
|
|
{
|
|
|
|
if (aspect_data->width_property && aspect_data->height_property)
|
|
|
|
{
|
|
|
|
g_object_set (aspect_data->config,
|
|
|
|
aspect_data->width_property, height,
|
|
|
|
aspect_data->height_property, width,
|
|
|
|
NULL);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|