2006-12-10 05:33:38 +08:00
|
|
|
/* GIMP - The GNU Image Manipulation Program
|
2004-04-16 20:09:46 +08:00
|
|
|
* Copyright (C) 1995 Spencer Kimball and Peter Mattis
|
|
|
|
*
|
|
|
|
* gimpenumaction.h
|
|
|
|
* Copyright (C) 2004 Michael Natterer <mitch@gimp.org>
|
|
|
|
*
|
2009-01-18 06:28:01 +08:00
|
|
|
* This program is free software: you can redistribute it and/or modify
|
2004-04-16 20:09:46 +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
|
2004-04-16 20:09:46 +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
|
2009-01-18 06:28:01 +08:00
|
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
2004-04-16 20:09:46 +08:00
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef __GIMP_ENUM_ACTION_H__
|
|
|
|
#define __GIMP_ENUM_ACTION_H__
|
|
|
|
|
|
|
|
|
2004-05-20 04:56:37 +08:00
|
|
|
#include "gimpaction.h"
|
2004-04-16 20:09:46 +08:00
|
|
|
|
|
|
|
|
|
|
|
#define GIMP_TYPE_ENUM_ACTION (gimp_enum_action_get_type ())
|
|
|
|
#define GIMP_ENUM_ACTION(obj) (G_TYPE_CHECK_INSTANCE_CAST ((obj), GIMP_TYPE_ENUM_ACTION, GimpEnumAction))
|
|
|
|
#define GIMP_ENUM_ACTION_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST ((klass), GIMP_TYPE_ENUM_ACTION, GimpEnumActionClass))
|
|
|
|
#define GIMP_IS_ENUM_ACTION(obj) (G_TYPE_CHECK_INSTANCE_TYPE ((obj), GIMP_TYPE_ENUM_ACTION))
|
|
|
|
#define GIMP_IS_ENUM_ACTION_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE ((obj), GIMP_TYPE_ENUM_ACTION))
|
|
|
|
#define GIMP_ENUM_ACTION_GET_CLASS(obj) (G_TYPE_INSTANCE_GET_CLASS((obj), GIMP_TYPE_ENUM_ACTION, GimpEnumActionClass))
|
|
|
|
|
|
|
|
|
|
|
|
typedef struct _GimpEnumActionClass GimpEnumActionClass;
|
|
|
|
|
|
|
|
struct _GimpEnumAction
|
|
|
|
{
|
2004-05-20 04:56:37 +08:00
|
|
|
GimpAction parent_instance;
|
2004-04-16 20:09:46 +08:00
|
|
|
|
2004-05-20 04:56:37 +08:00
|
|
|
gint value;
|
2004-11-19 00:04:41 +08:00
|
|
|
gboolean value_variable;
|
2004-04-16 20:09:46 +08:00
|
|
|
};
|
|
|
|
|
|
|
|
struct _GimpEnumActionClass
|
|
|
|
{
|
2004-05-20 04:56:37 +08:00
|
|
|
GimpActionClass parent_class;
|
2004-04-16 20:09:46 +08:00
|
|
|
|
|
|
|
void (* selected) (GimpEnumAction *action,
|
|
|
|
gint value);
|
|
|
|
};
|
|
|
|
|
|
|
|
|
2005-04-17 07:48:29 +08:00
|
|
|
GType gimp_enum_action_get_type (void) G_GNUC_CONST;
|
|
|
|
|
2004-04-16 20:09:46 +08:00
|
|
|
GimpEnumAction * gimp_enum_action_new (const gchar *name,
|
|
|
|
const gchar *label,
|
|
|
|
const gchar *tooltip,
|
|
|
|
const gchar *stock_id,
|
2004-11-19 00:04:41 +08:00
|
|
|
gint value,
|
|
|
|
gboolean value_variable);
|
2004-06-23 22:39:48 +08:00
|
|
|
void gimp_enum_action_selected (GimpEnumAction *action,
|
|
|
|
gint value);
|
2004-04-16 20:09:46 +08:00
|
|
|
|
|
|
|
|
|
|
|
#endif /* __GIMP_ENUM_ACTION_H__ */
|