2006-12-09 13:33:38 -08:00
|
|
|
/* GIMP - The GNU Image Manipulation Program
|
2002-02-27 05:57:49 -08:00
|
|
|
* Copyright (C) 1995 Spencer Kimball and Peter Mattis
|
|
|
|
|
*
|
2009-01-17 14:28:01 -08:00
|
|
|
* This program is free software: you can redistribute it and/or modify
|
2002-02-27 05:57:49 -08:00
|
|
|
* it under the terms of the GNU General Public License as published by
|
2009-01-17 14:28:01 -08:00
|
|
|
* the Free Software Foundation; either version 3 of the License, or
|
2002-02-27 05:57:49 -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-11 14:47:19 -07:00
|
|
|
* along with this program. If not, see <https://www.gnu.org/licenses/>.
|
2002-02-27 05:57:49 -08:00
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
#include "config.h"
|
|
|
|
|
|
2013-10-14 16:58:39 -07:00
|
|
|
#include <gdk-pixbuf/gdk-pixbuf.h>
|
2012-03-29 10:19:01 -07:00
|
|
|
#include <gegl.h>
|
2002-02-27 05:57:49 -08:00
|
|
|
|
|
|
|
|
#include "core-types.h"
|
|
|
|
|
|
2004-08-31 06:20:57 -07:00
|
|
|
#include "paint/gimppaintoptions.h"
|
|
|
|
|
|
2002-02-27 05:57:49 -08:00
|
|
|
#include "gimp.h"
|
|
|
|
|
#include "gimppaintinfo.h"
|
|
|
|
|
|
|
|
|
|
|
2010-06-24 03:58:22 -07:00
|
|
|
static void gimp_paint_info_dispose (GObject *object);
|
2005-12-10 11:24:36 -08:00
|
|
|
static void gimp_paint_info_finalize (GObject *object);
|
|
|
|
|
static gchar * gimp_paint_info_get_description (GimpViewable *viewable,
|
|
|
|
|
gchar **tooltip);
|
2002-02-27 05:57:49 -08:00
|
|
|
|
|
|
|
|
|
2006-05-15 02:46:31 -07:00
|
|
|
G_DEFINE_TYPE (GimpPaintInfo, gimp_paint_info, GIMP_TYPE_VIEWABLE)
|
2002-02-27 05:57:49 -08:00
|
|
|
|
2005-12-10 11:24:36 -08:00
|
|
|
#define parent_class gimp_paint_info_parent_class
|
2002-02-27 05:57:49 -08:00
|
|
|
|
|
|
|
|
|
|
|
|
|
static void
|
|
|
|
|
gimp_paint_info_class_init (GimpPaintInfoClass *klass)
|
|
|
|
|
{
|
2005-10-09 16:05:25 -07:00
|
|
|
GObjectClass *object_class = G_OBJECT_CLASS (klass);
|
|
|
|
|
GimpViewableClass *viewable_class = GIMP_VIEWABLE_CLASS (klass);
|
2002-02-27 05:57:49 -08:00
|
|
|
|
2010-06-24 03:58:22 -07:00
|
|
|
object_class->dispose = gimp_paint_info_dispose;
|
2003-09-27 06:46:30 -07:00
|
|
|
object_class->finalize = gimp_paint_info_finalize;
|
|
|
|
|
|
|
|
|
|
viewable_class->get_description = gimp_paint_info_get_description;
|
2002-02-27 05:57:49 -08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static void
|
|
|
|
|
gimp_paint_info_init (GimpPaintInfo *paint_info)
|
|
|
|
|
{
|
|
|
|
|
paint_info->gimp = NULL;
|
|
|
|
|
paint_info->paint_type = G_TYPE_NONE;
|
2003-02-14 06:14:29 -08:00
|
|
|
paint_info->blurb = NULL;
|
2002-02-27 05:57:49 -08:00
|
|
|
paint_info->paint_options = NULL;
|
|
|
|
|
}
|
|
|
|
|
|
2010-06-24 03:58:22 -07:00
|
|
|
static void
|
|
|
|
|
gimp_paint_info_dispose (GObject *object)
|
|
|
|
|
{
|
|
|
|
|
GimpPaintInfo *paint_info = GIMP_PAINT_INFO (object);
|
|
|
|
|
|
|
|
|
|
if (paint_info->paint_options)
|
|
|
|
|
{
|
2010-06-26 14:22:53 -07:00
|
|
|
g_object_run_dispose (G_OBJECT (paint_info->paint_options));
|
2017-07-15 09:38:01 -07:00
|
|
|
g_clear_object (&paint_info->paint_options);
|
2010-06-24 03:58:22 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
G_OBJECT_CLASS (parent_class)->dispose (object);
|
|
|
|
|
}
|
|
|
|
|
|
2002-02-27 05:57:49 -08:00
|
|
|
static void
|
|
|
|
|
gimp_paint_info_finalize (GObject *object)
|
|
|
|
|
{
|
2005-10-09 16:05:25 -07:00
|
|
|
GimpPaintInfo *paint_info = GIMP_PAINT_INFO (object);
|
2002-02-27 05:57:49 -08:00
|
|
|
|
2017-07-15 09:38:01 -07:00
|
|
|
g_clear_pointer (&paint_info->blurb, g_free);
|
2003-02-14 06:14:29 -08:00
|
|
|
|
2002-02-27 05:57:49 -08:00
|
|
|
G_OBJECT_CLASS (parent_class)->finalize (object);
|
|
|
|
|
}
|
|
|
|
|
|
2003-09-27 06:46:30 -07:00
|
|
|
static gchar *
|
|
|
|
|
gimp_paint_info_get_description (GimpViewable *viewable,
|
|
|
|
|
gchar **tooltip)
|
|
|
|
|
{
|
|
|
|
|
GimpPaintInfo *paint_info = GIMP_PAINT_INFO (viewable);
|
|
|
|
|
|
|
|
|
|
return g_strdup (paint_info->blurb);
|
|
|
|
|
}
|
|
|
|
|
|
2002-02-27 05:57:49 -08:00
|
|
|
GimpPaintInfo *
|
|
|
|
|
gimp_paint_info_new (Gimp *gimp,
|
|
|
|
|
GType paint_type,
|
2003-02-05 06:39:40 -08:00
|
|
|
GType paint_options_type,
|
2005-12-27 10:57:01 -08:00
|
|
|
const gchar *identifier,
|
|
|
|
|
const gchar *blurb,
|
2014-05-06 16:01:56 -07:00
|
|
|
const gchar *icon_name)
|
2002-02-27 05:57:49 -08:00
|
|
|
{
|
|
|
|
|
GimpPaintInfo *paint_info;
|
|
|
|
|
|
|
|
|
|
g_return_val_if_fail (GIMP_IS_GIMP (gimp), NULL);
|
2005-12-27 10:57:01 -08:00
|
|
|
g_return_val_if_fail (identifier != NULL, NULL);
|
2003-02-14 06:14:29 -08:00
|
|
|
g_return_val_if_fail (blurb != NULL, NULL);
|
2014-05-06 16:01:56 -07:00
|
|
|
g_return_val_if_fail (icon_name != NULL, NULL);
|
2002-02-27 05:57:49 -08:00
|
|
|
|
|
|
|
|
paint_info = g_object_new (GIMP_TYPE_PAINT_INFO,
|
2014-05-06 16:01:56 -07:00
|
|
|
"name", identifier,
|
|
|
|
|
"icon-name", icon_name,
|
2002-02-27 05:57:49 -08:00
|
|
|
NULL);
|
|
|
|
|
|
2003-02-05 06:39:40 -08:00
|
|
|
paint_info->gimp = gimp;
|
|
|
|
|
paint_info->paint_type = paint_type;
|
|
|
|
|
paint_info->paint_options_type = paint_options_type;
|
2003-02-14 06:14:29 -08:00
|
|
|
paint_info->blurb = g_strdup (blurb);
|
2003-08-30 06:22:20 -07:00
|
|
|
|
2004-08-31 06:20:57 -07:00
|
|
|
paint_info->paint_options = gimp_paint_options_new (paint_info);
|
2002-02-27 05:57:49 -08:00
|
|
|
|
|
|
|
|
return paint_info;
|
|
|
|
|
}
|
2005-12-27 10:57:01 -08:00
|
|
|
|
|
|
|
|
void
|
|
|
|
|
gimp_paint_info_set_standard (Gimp *gimp,
|
|
|
|
|
GimpPaintInfo *paint_info)
|
|
|
|
|
{
|
|
|
|
|
g_return_if_fail (GIMP_IS_GIMP (gimp));
|
|
|
|
|
g_return_if_fail (! paint_info || GIMP_IS_PAINT_INFO (paint_info));
|
|
|
|
|
|
2018-06-01 03:59:52 -07:00
|
|
|
g_set_object (&gimp->standard_paint_info, paint_info);
|
2005-12-27 10:57:01 -08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
GimpPaintInfo *
|
|
|
|
|
gimp_paint_info_get_standard (Gimp *gimp)
|
|
|
|
|
{
|
|
|
|
|
g_return_val_if_fail (GIMP_IS_GIMP (gimp), NULL);
|
|
|
|
|
|
|
|
|
|
return gimp->standard_paint_info;
|
|
|
|
|
}
|