mirror of
https://gitlab.gnome.org/GNOME/gimp.git
synced 2025-07-03 09:23:24 +00:00
295 lines
7.9 KiB
C
295 lines
7.9 KiB
C
![]() |
/* LIBGIMP - The GIMP Library
|
||
|
* Copyright (C) 1995-2003 Peter Mattis and Spencer Kimball
|
||
|
*
|
||
|
* gimpresource_pdb.c
|
||
|
*
|
||
|
* This library is free software: you can redistribute it and/or
|
||
|
* modify it under the terms of the GNU Lesser General Public
|
||
|
* License as published by the Free Software Foundation; either
|
||
|
* version 3 of the License, or (at your option) any later version.
|
||
|
*
|
||
|
* This library 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
|
||
|
* Lesser General Public License for more details.
|
||
|
*
|
||
|
* You should have received a copy of the GNU Lesser General Public
|
||
|
* License along with this library. If not, see
|
||
|
* <https://www.gnu.org/licenses/>.
|
||
|
*/
|
||
|
|
||
|
/* NOTE: This file is auto-generated by pdbgen.pl */
|
||
|
|
||
|
#include "config.h"
|
||
|
|
||
|
#include "stamp-pdbgen.h"
|
||
|
|
||
|
#include "gimp.h"
|
||
|
|
||
|
|
||
|
/**
|
||
|
* SECTION: gimpresource
|
||
|
* @title: gimpresource
|
||
|
* @short_description: Functions to manipulate resources.
|
||
|
*
|
||
|
* Functions to manipulate resources.
|
||
|
**/
|
||
|
|
||
|
|
||
|
/**
|
||
|
* gimp_resource_id_is_valid:
|
||
|
* @resource_id: The resource ID to check.
|
||
|
*
|
||
|
* Returns TRUE if the resource ID is valid.
|
||
|
*
|
||
|
* This procedure checks if the given resource ID is valid and refers
|
||
|
* to an existing resource.
|
||
|
*
|
||
|
* Returns: Whether the resource ID is valid.
|
||
|
*
|
||
|
* Since: 3.0
|
||
|
**/
|
||
|
gboolean
|
||
|
gimp_resource_id_is_valid (gint resource_id)
|
||
|
{
|
||
|
GimpValueArray *args;
|
||
|
GimpValueArray *return_vals;
|
||
|
gboolean valid = FALSE;
|
||
|
|
||
|
args = gimp_value_array_new_from_types (NULL,
|
||
|
G_TYPE_INT, resource_id,
|
||
|
G_TYPE_NONE);
|
||
|
|
||
|
return_vals = gimp_pdb_run_procedure_array (gimp_get_pdb (),
|
||
|
"gimp-resource-id-is-valid",
|
||
|
args);
|
||
|
gimp_value_array_unref (args);
|
||
|
|
||
|
if (GIMP_VALUES_GET_ENUM (return_vals, 0) == GIMP_PDB_SUCCESS)
|
||
|
valid = GIMP_VALUES_GET_BOOLEAN (return_vals, 1);
|
||
|
|
||
|
gimp_value_array_unref (return_vals);
|
||
|
|
||
|
return valid;
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* gimp_resource_id_is_brush:
|
||
|
* @resource_id: The resource ID.
|
||
|
*
|
||
|
* Returns whether the resource ID is a brush.
|
||
|
*
|
||
|
* This procedure returns TRUE if the specified resource ID is a brush.
|
||
|
*
|
||
|
* Returns: TRUE if the resource ID is a brush, FALSE otherwise.
|
||
|
*
|
||
|
* Since: 3.0
|
||
|
**/
|
||
|
gboolean
|
||
|
gimp_resource_id_is_brush (gint resource_id)
|
||
|
{
|
||
|
GimpValueArray *args;
|
||
|
GimpValueArray *return_vals;
|
||
|
gboolean brush = FALSE;
|
||
|
|
||
|
args = gimp_value_array_new_from_types (NULL,
|
||
|
G_TYPE_INT, resource_id,
|
||
|
G_TYPE_NONE);
|
||
|
|
||
|
return_vals = gimp_pdb_run_procedure_array (gimp_get_pdb (),
|
||
|
"gimp-resource-id-is-brush",
|
||
|
args);
|
||
|
gimp_value_array_unref (args);
|
||
|
|
||
|
if (GIMP_VALUES_GET_ENUM (return_vals, 0) == GIMP_PDB_SUCCESS)
|
||
|
brush = GIMP_VALUES_GET_BOOLEAN (return_vals, 1);
|
||
|
|
||
|
gimp_value_array_unref (return_vals);
|
||
|
|
||
|
return brush;
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* gimp_resource_id_is_pattern:
|
||
|
* @resource_id: The resource ID.
|
||
|
*
|
||
|
* Returns whether the resource ID is a pattern.
|
||
|
*
|
||
|
* This procedure returns TRUE if the specified resource ID is a
|
||
|
* pattern.
|
||
|
*
|
||
|
* Returns: TRUE if the resource ID is a pattern, FALSE otherwise.
|
||
|
*
|
||
|
* Since: 3.0
|
||
|
**/
|
||
|
gboolean
|
||
|
gimp_resource_id_is_pattern (gint resource_id)
|
||
|
{
|
||
|
GimpValueArray *args;
|
||
|
GimpValueArray *return_vals;
|
||
|
gboolean pattern = FALSE;
|
||
|
|
||
|
args = gimp_value_array_new_from_types (NULL,
|
||
|
G_TYPE_INT, resource_id,
|
||
|
G_TYPE_NONE);
|
||
|
|
||
|
return_vals = gimp_pdb_run_procedure_array (gimp_get_pdb (),
|
||
|
"gimp-resource-id-is-pattern",
|
||
|
args);
|
||
|
gimp_value_array_unref (args);
|
||
|
|
||
|
if (GIMP_VALUES_GET_ENUM (return_vals, 0) == GIMP_PDB_SUCCESS)
|
||
|
pattern = GIMP_VALUES_GET_BOOLEAN (return_vals, 1);
|
||
|
|
||
|
gimp_value_array_unref (return_vals);
|
||
|
|
||
|
return pattern;
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* gimp_resource_id_is_gradient:
|
||
|
* @resource_id: The resource ID.
|
||
|
*
|
||
|
* Returns whether the resource ID is a gradient.
|
||
|
*
|
||
|
* This procedure returns TRUE if the specified resource ID is a
|
||
|
* gradient.
|
||
|
*
|
||
|
* Returns: TRUE if the resource ID is a gradient, FALSE otherwise.
|
||
|
*
|
||
|
* Since: 3.0
|
||
|
**/
|
||
|
gboolean
|
||
|
gimp_resource_id_is_gradient (gint resource_id)
|
||
|
{
|
||
|
GimpValueArray *args;
|
||
|
GimpValueArray *return_vals;
|
||
|
gboolean gradient = FALSE;
|
||
|
|
||
|
args = gimp_value_array_new_from_types (NULL,
|
||
|
G_TYPE_INT, resource_id,
|
||
|
G_TYPE_NONE);
|
||
|
|
||
|
return_vals = gimp_pdb_run_procedure_array (gimp_get_pdb (),
|
||
|
"gimp-resource-id-is-gradient",
|
||
|
args);
|
||
|
gimp_value_array_unref (args);
|
||
|
|
||
|
if (GIMP_VALUES_GET_ENUM (return_vals, 0) == GIMP_PDB_SUCCESS)
|
||
|
gradient = GIMP_VALUES_GET_BOOLEAN (return_vals, 1);
|
||
|
|
||
|
gimp_value_array_unref (return_vals);
|
||
|
|
||
|
return gradient;
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* gimp_resource_id_is_palette:
|
||
|
* @resource_id: The resource ID.
|
||
|
*
|
||
|
* Returns whether the resource ID is a palette.
|
||
|
*
|
||
|
* This procedure returns TRUE if the specified resource ID is a
|
||
|
* palette.
|
||
|
*
|
||
|
* Returns: TRUE if the resource ID is a palette, FALSE otherwise.
|
||
|
*
|
||
|
* Since: 3.0
|
||
|
**/
|
||
|
gboolean
|
||
|
gimp_resource_id_is_palette (gint resource_id)
|
||
|
{
|
||
|
GimpValueArray *args;
|
||
|
GimpValueArray *return_vals;
|
||
|
gboolean palette = FALSE;
|
||
|
|
||
|
args = gimp_value_array_new_from_types (NULL,
|
||
|
G_TYPE_INT, resource_id,
|
||
|
G_TYPE_NONE);
|
||
|
|
||
|
return_vals = gimp_pdb_run_procedure_array (gimp_get_pdb (),
|
||
|
"gimp-resource-id-is-palette",
|
||
|
args);
|
||
|
gimp_value_array_unref (args);
|
||
|
|
||
|
if (GIMP_VALUES_GET_ENUM (return_vals, 0) == GIMP_PDB_SUCCESS)
|
||
|
palette = GIMP_VALUES_GET_BOOLEAN (return_vals, 1);
|
||
|
|
||
|
gimp_value_array_unref (return_vals);
|
||
|
|
||
|
return palette;
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* gimp_resource_id_is_font:
|
||
|
* @resource_id: The resource ID.
|
||
|
*
|
||
|
* Returns whether the resource ID is a font.
|
||
|
*
|
||
|
* This procedure returns TRUE if the specified resource ID is a font.
|
||
|
*
|
||
|
* Returns: TRUE if the resource ID is a font, FALSE otherwise.
|
||
|
*
|
||
|
* Since: 3.0
|
||
|
**/
|
||
|
gboolean
|
||
|
gimp_resource_id_is_font (gint resource_id)
|
||
|
{
|
||
|
GimpValueArray *args;
|
||
|
GimpValueArray *return_vals;
|
||
|
gboolean font = FALSE;
|
||
|
|
||
|
args = gimp_value_array_new_from_types (NULL,
|
||
|
G_TYPE_INT, resource_id,
|
||
|
G_TYPE_NONE);
|
||
|
|
||
|
return_vals = gimp_pdb_run_procedure_array (gimp_get_pdb (),
|
||
|
"gimp-resource-id-is-font",
|
||
|
args);
|
||
|
gimp_value_array_unref (args);
|
||
|
|
||
|
if (GIMP_VALUES_GET_ENUM (return_vals, 0) == GIMP_PDB_SUCCESS)
|
||
|
font = GIMP_VALUES_GET_BOOLEAN (return_vals, 1);
|
||
|
|
||
|
gimp_value_array_unref (return_vals);
|
||
|
|
||
|
return font;
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* gimp_resource_get_name:
|
||
|
* @resource: The resource.
|
||
|
*
|
||
|
* Returns the resource's name.
|
||
|
*
|
||
|
* This procedure returns the resource's name.
|
||
|
*
|
||
|
* Returns: (transfer full): The resource's name.
|
||
|
* The returned value must be freed with g_free().
|
||
|
*
|
||
|
* Since: 3.0
|
||
|
**/
|
||
|
gchar *
|
||
|
gimp_resource_get_name (GimpResource *resource)
|
||
|
{
|
||
|
GimpValueArray *args;
|
||
|
GimpValueArray *return_vals;
|
||
|
gchar *name = NULL;
|
||
|
|
||
|
args = gimp_value_array_new_from_types (NULL,
|
||
|
GIMP_TYPE_RESOURCE, resource,
|
||
|
G_TYPE_NONE);
|
||
|
|
||
|
return_vals = gimp_pdb_run_procedure_array (gimp_get_pdb (),
|
||
|
"gimp-resource-get-name",
|
||
|
args);
|
||
|
gimp_value_array_unref (args);
|
||
|
|
||
|
if (GIMP_VALUES_GET_ENUM (return_vals, 0) == GIMP_PDB_SUCCESS)
|
||
|
name = GIMP_VALUES_DUP_STRING (return_vals, 1);
|
||
|
|
||
|
gimp_value_array_unref (return_vals);
|
||
|
|
||
|
return name;
|
||
|
}
|