2006-12-10 05:33:38 +08:00
|
|
|
/* GIMP - The GNU Image Manipulation Program
|
2002-03-21 01:46:13 +08:00
|
|
|
* 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 __PLUG_IN_COMMANDS_H__
|
|
|
|
#define __PLUG_IN_COMMANDS_H__
|
|
|
|
|
|
|
|
|
2006-04-05 16:38:33 +08:00
|
|
|
void plug_in_run_cmd_callback (GtkAction *action,
|
|
|
|
GimpPlugInProcedure *proc,
|
|
|
|
gpointer data);
|
|
|
|
void plug_in_repeat_cmd_callback (GtkAction *action,
|
|
|
|
gint value,
|
|
|
|
gpointer data);
|
2006-10-30 06:03:59 +08:00
|
|
|
void plug_in_history_cmd_callback (GtkAction *action,
|
|
|
|
GimpPlugInProcedure *proc,
|
|
|
|
gpointer data);
|
2004-07-27 05:07:15 +08:00
|
|
|
|
2006-04-05 16:38:33 +08:00
|
|
|
void plug_in_reset_all_cmd_callback (GtkAction *action,
|
|
|
|
gpointer data);
|
2002-03-21 01:46:13 +08:00
|
|
|
|
|
|
|
|
|
|
|
#endif /* __PLUG_IN_COMMANDS_H__ */
|