2006-12-09 13:33:38 -08:00
|
|
|
/* GIMP - The GNU Image Manipulation Program
|
2001-06-26 05:09:43 -07: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
|
2001-06-26 05:09:43 -07: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
|
2001-06-26 05:09:43 -07: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/>.
|
2001-06-26 05:09:43 -07:00
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
#ifndef __EDIT_COMMANDS_H__
|
|
|
|
|
#define __EDIT_COMMANDS_H__
|
|
|
|
|
|
|
|
|
|
|
2005-09-04 17:37:25 -07:00
|
|
|
void edit_undo_cmd_callback (GtkAction *action,
|
|
|
|
|
gpointer data);
|
|
|
|
|
void edit_redo_cmd_callback (GtkAction *action,
|
|
|
|
|
gpointer data);
|
2006-06-12 19:03:44 -07:00
|
|
|
void edit_strong_undo_cmd_callback (GtkAction *action,
|
|
|
|
|
gpointer data);
|
|
|
|
|
void edit_strong_redo_cmd_callback (GtkAction *action,
|
|
|
|
|
gpointer data);
|
2005-09-04 17:37:25 -07:00
|
|
|
void edit_undo_clear_cmd_callback (GtkAction *action,
|
|
|
|
|
gpointer data);
|
2016-09-17 10:45:45 -07:00
|
|
|
|
2005-09-04 17:37:25 -07:00
|
|
|
void edit_cut_cmd_callback (GtkAction *action,
|
|
|
|
|
gpointer data);
|
|
|
|
|
void edit_copy_cmd_callback (GtkAction *action,
|
|
|
|
|
gpointer data);
|
|
|
|
|
void edit_copy_visible_cmd_callback (GtkAction *action,
|
|
|
|
|
gpointer data);
|
2016-09-17 10:45:45 -07:00
|
|
|
|
2005-09-04 17:37:25 -07:00
|
|
|
void edit_paste_cmd_callback (GtkAction *action,
|
2017-11-12 09:41:05 -08:00
|
|
|
gint value,
|
2008-08-07 09:25:46 -07:00
|
|
|
gpointer data);
|
2016-09-20 11:43:01 -07:00
|
|
|
void edit_paste_as_new_image_cmd_callback (GtkAction *action,
|
|
|
|
|
gpointer data);
|
2016-09-17 10:45:45 -07:00
|
|
|
|
2005-09-04 17:37:25 -07:00
|
|
|
void edit_named_cut_cmd_callback (GtkAction *action,
|
|
|
|
|
gpointer data);
|
|
|
|
|
void edit_named_copy_cmd_callback (GtkAction *action,
|
|
|
|
|
gpointer data);
|
|
|
|
|
void edit_named_copy_visible_cmd_callback (GtkAction *action,
|
|
|
|
|
gpointer data);
|
|
|
|
|
void edit_named_paste_cmd_callback (GtkAction *action,
|
|
|
|
|
gpointer data);
|
2016-09-17 10:45:45 -07:00
|
|
|
|
2005-09-04 17:37:25 -07:00
|
|
|
void edit_clear_cmd_callback (GtkAction *action,
|
|
|
|
|
gpointer data);
|
|
|
|
|
void edit_fill_cmd_callback (GtkAction *action,
|
|
|
|
|
gint value,
|
|
|
|
|
gpointer data);
|
2003-09-29 19:44:17 -07:00
|
|
|
|
2001-06-26 05:09:43 -07:00
|
|
|
|
|
|
|
|
#endif /* __EDIT_COMMANDS_H__ */
|