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 __SELECT_COMMANDS_H__
|
|
|
|
|
#define __SELECT_COMMANDS_H__
|
|
|
|
|
|
|
|
|
|
|
2004-10-20 16:14:24 -07:00
|
|
|
void select_all_cmd_callback (GtkAction *action,
|
|
|
|
|
gpointer data);
|
|
|
|
|
void select_none_cmd_callback (GtkAction *action,
|
|
|
|
|
gpointer data);
|
2016-01-25 14:07:33 -08:00
|
|
|
void select_invert_cmd_callback (GtkAction *action,
|
|
|
|
|
gpointer data);
|
2004-10-20 16:14:24 -07:00
|
|
|
void select_float_cmd_callback (GtkAction *action,
|
|
|
|
|
gpointer data);
|
|
|
|
|
void select_feather_cmd_callback (GtkAction *action,
|
|
|
|
|
gpointer data);
|
|
|
|
|
void select_sharpen_cmd_callback (GtkAction *action,
|
|
|
|
|
gpointer data);
|
|
|
|
|
void select_shrink_cmd_callback (GtkAction *action,
|
|
|
|
|
gpointer data);
|
|
|
|
|
void select_grow_cmd_callback (GtkAction *action,
|
|
|
|
|
gpointer data);
|
2016-01-25 14:07:33 -08:00
|
|
|
void select_border_cmd_callback (GtkAction *action,
|
|
|
|
|
gpointer data);
|
2016-01-24 09:43:35 -08:00
|
|
|
void select_flood_cmd_callback (GtkAction *action,
|
|
|
|
|
gpointer data);
|
2004-10-20 16:14:24 -07:00
|
|
|
void select_save_cmd_callback (GtkAction *action,
|
|
|
|
|
gpointer data);
|
2016-03-15 12:52:22 -07:00
|
|
|
|
|
|
|
|
void select_fill_cmd_callback (GtkAction *action,
|
|
|
|
|
gpointer data);
|
|
|
|
|
void select_fill_last_vals_cmd_callback (GtkAction *action,
|
|
|
|
|
gpointer data);
|
2004-10-20 16:14:24 -07:00
|
|
|
void select_stroke_cmd_callback (GtkAction *action,
|
|
|
|
|
gpointer data);
|
|
|
|
|
void select_stroke_last_vals_cmd_callback (GtkAction *action,
|
|
|
|
|
gpointer data);
|
2004-05-12 11:36:33 -07:00
|
|
|
|
2001-06-26 05:09:43 -07:00
|
|
|
|
|
|
|
|
#endif /* __SELECT_COMMANDS_H__ */
|