2006-12-09 21:33:38 +00:00
|
|
|
/* GIMP - The GNU Image Manipulation Program
|
2002-02-25 17:58:50 +00:00
|
|
|
* Copyright (C) 1995 Spencer Kimball and Peter Mattis
|
|
|
|
*
|
2009-01-17 22:28:01 +00:00
|
|
|
* This program is free software: you can redistribute it and/or modify
|
2002-02-25 17:58:50 +00:00
|
|
|
* it under the terms of the GNU General Public License as published by
|
2009-01-17 22:28:01 +00:00
|
|
|
* the Free Software Foundation; either version 3 of the License, or
|
2002-02-25 17:58:50 +00: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 23:27:07 +02:00
|
|
|
* along with this program. If not, see <https://www.gnu.org/licenses/>.
|
2002-02-25 17:58:50 +00:00
|
|
|
*/
|
|
|
|
|
2024-08-04 20:11:53 +02:00
|
|
|
#ifndef __PATHS_COMMANDS_H__
|
|
|
|
#define __PATHS_COMMANDS_H__
|
2002-02-25 17:58:50 +00:00
|
|
|
|
|
|
|
|
2024-08-04 20:11:53 +02:00
|
|
|
void paths_edit_cmd_callback (GimpAction *action,
|
|
|
|
GVariant *value,
|
|
|
|
gpointer data);
|
|
|
|
void paths_edit_attributes_cmd_callback (GimpAction *action,
|
|
|
|
GVariant *value,
|
|
|
|
gpointer data);
|
|
|
|
void paths_new_cmd_callback (GimpAction *action,
|
|
|
|
GVariant *value,
|
|
|
|
gpointer data);
|
|
|
|
void paths_new_last_vals_cmd_callback (GimpAction *action,
|
|
|
|
GVariant *value,
|
|
|
|
gpointer data);
|
2004-05-25 14:37:02 +00:00
|
|
|
|
2024-08-04 20:11:53 +02:00
|
|
|
void paths_raise_cmd_callback (GimpAction *action,
|
|
|
|
GVariant *value,
|
|
|
|
gpointer data);
|
|
|
|
void paths_raise_to_top_cmd_callback (GimpAction *action,
|
|
|
|
GVariant *value,
|
|
|
|
gpointer data);
|
|
|
|
void paths_lower_cmd_callback (GimpAction *action,
|
|
|
|
GVariant *value,
|
|
|
|
gpointer data);
|
|
|
|
void paths_lower_to_bottom_cmd_callback (GimpAction *action,
|
|
|
|
GVariant *value,
|
|
|
|
gpointer data);
|
2004-05-25 14:37:02 +00:00
|
|
|
|
2024-08-04 20:11:53 +02:00
|
|
|
void paths_duplicate_cmd_callback (GimpAction *action,
|
|
|
|
GVariant *value,
|
|
|
|
gpointer data);
|
|
|
|
void paths_delete_cmd_callback (GimpAction *action,
|
|
|
|
GVariant *value,
|
|
|
|
gpointer data);
|
|
|
|
void paths_merge_visible_cmd_callback (GimpAction *action,
|
|
|
|
GVariant *value,
|
|
|
|
gpointer data);
|
|
|
|
void paths_to_selection_cmd_callback (GimpAction *action,
|
|
|
|
GVariant *value,
|
|
|
|
gpointer data);
|
|
|
|
void paths_selection_to_paths_cmd_callback (GimpAction *action,
|
|
|
|
GVariant *value,
|
|
|
|
gpointer data);
|
2016-03-15 20:52:22 +01:00
|
|
|
|
2024-08-04 20:11:53 +02:00
|
|
|
void paths_fill_cmd_callback (GimpAction *action,
|
|
|
|
GVariant *value,
|
|
|
|
gpointer data);
|
|
|
|
void paths_fill_last_vals_cmd_callback (GimpAction *action,
|
|
|
|
GVariant *value,
|
|
|
|
gpointer data);
|
|
|
|
void paths_stroke_cmd_callback (GimpAction *action,
|
|
|
|
GVariant *value,
|
|
|
|
gpointer data);
|
|
|
|
void paths_stroke_last_vals_cmd_callback (GimpAction *action,
|
|
|
|
GVariant *value,
|
|
|
|
gpointer data);
|
2004-05-25 14:37:02 +00:00
|
|
|
|
2024-08-04 20:11:53 +02:00
|
|
|
void paths_copy_cmd_callback (GimpAction *action,
|
|
|
|
GVariant *value,
|
|
|
|
gpointer data);
|
|
|
|
void paths_paste_cmd_callback (GimpAction *action,
|
|
|
|
GVariant *value,
|
|
|
|
gpointer data);
|
|
|
|
void paths_export_cmd_callback (GimpAction *action,
|
|
|
|
GVariant *value,
|
|
|
|
gpointer data);
|
|
|
|
void paths_import_cmd_callback (GimpAction *action,
|
|
|
|
GVariant *value,
|
|
|
|
gpointer data);
|
2002-02-25 17:58:50 +00:00
|
|
|
|
2024-08-04 20:11:53 +02:00
|
|
|
void paths_visible_cmd_callback (GimpAction *action,
|
|
|
|
GVariant *value,
|
|
|
|
gpointer data);
|
|
|
|
void paths_lock_content_cmd_callback (GimpAction *action,
|
|
|
|
GVariant *value,
|
|
|
|
gpointer data);
|
|
|
|
void paths_lock_position_cmd_callback (GimpAction *action,
|
|
|
|
GVariant *value,
|
|
|
|
gpointer data);
|
2004-09-15 13:24:45 +00:00
|
|
|
|
2024-08-04 20:11:53 +02:00
|
|
|
void paths_color_tag_cmd_callback (GimpAction *action,
|
|
|
|
GVariant *value,
|
|
|
|
gpointer data);
|
2016-10-29 16:50:13 +02:00
|
|
|
|
2024-08-04 20:11:53 +02:00
|
|
|
void paths_select_cmd_callback (GimpAction *action,
|
|
|
|
GVariant *value,
|
|
|
|
gpointer data);
|
2017-07-18 13:23:23 +02:00
|
|
|
|
2019-07-04 01:11:48 +02:00
|
|
|
|
2024-08-04 20:11:53 +02:00
|
|
|
#endif /* __PATHS_COMMANDS_H__ */
|