mirror of https://github.com/GNOME/gimp.git
104 lines
2.5 KiB
C
104 lines
2.5 KiB
C
/* GIMP - The GNU 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
|
|
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
|
|
*/
|
|
|
|
#ifndef __SCRIPT_FU_TYPES_H__
|
|
#define __SCRIPT_FU_TYPES_H__
|
|
|
|
|
|
#include "script-fu-enums.h"
|
|
|
|
|
|
typedef struct
|
|
{
|
|
GtkAdjustment *adj;
|
|
gdouble value;
|
|
gdouble lower;
|
|
gdouble upper;
|
|
gdouble step;
|
|
gdouble page;
|
|
gint digits;
|
|
SFAdjustmentType type;
|
|
} SFAdjustment;
|
|
|
|
typedef struct
|
|
{
|
|
gchar *filename;
|
|
} SFFilename;
|
|
|
|
typedef struct
|
|
{
|
|
gchar *name;
|
|
gdouble opacity;
|
|
gint spacing;
|
|
GimpLayerModeEffects paint_mode;
|
|
} SFBrush;
|
|
|
|
typedef struct
|
|
{
|
|
GSList *list;
|
|
gint history;
|
|
} SFOption;
|
|
|
|
typedef struct
|
|
{
|
|
gchar *type_name;
|
|
gint history;
|
|
} SFEnum;
|
|
|
|
typedef union
|
|
{
|
|
gint32 sfa_image;
|
|
gint32 sfa_drawable;
|
|
gint32 sfa_layer;
|
|
gint32 sfa_channel;
|
|
gint32 sfa_vectors;
|
|
gint32 sfa_display;
|
|
GimpRGB sfa_color;
|
|
gint32 sfa_toggle;
|
|
gchar *sfa_value;
|
|
SFAdjustment sfa_adjustment;
|
|
SFFilename sfa_file;
|
|
gchar *sfa_font;
|
|
gchar *sfa_gradient;
|
|
gchar *sfa_palette;
|
|
gchar *sfa_pattern;
|
|
SFBrush sfa_brush;
|
|
SFOption sfa_option;
|
|
SFEnum sfa_enum;
|
|
} SFArgValue;
|
|
|
|
typedef struct
|
|
{
|
|
gchar *name;
|
|
gchar *menu_path;
|
|
gchar *blurb;
|
|
gchar *author;
|
|
gchar *copyright;
|
|
gchar *date;
|
|
gchar *img_types;
|
|
gint num_args;
|
|
SFArgType *arg_types;
|
|
gchar **arg_labels;
|
|
SFArgValue *arg_defaults;
|
|
SFArgValue *arg_values;
|
|
GimpParamDef *args; /* used only temporary until installed */
|
|
} SFScript;
|
|
|
|
|
|
#endif /* __SCRIPT_FU_TYPES__ */
|