1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57
|
/* gap_mov_exec.h
* 1997.11.01 hof (Wolfgang Hofer)
*
* GAP ... Gimp Animation Plugins
*
* basic anim functions
*
*/
/* The GIMP -- an image manipulation program
* 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.
*/
/* revision history:
* gimp 1.3.20c; 2003/09/23 hof: changed startangle from int to gdouble
* gimp 1.3.5a; 2002/04/20 hof: API cleanup
* gimp 1.1.29b; 2000/11/25 hof: NONINTEACTIV PDB interface for Movepath
* gimp 1.1.20a; 2000/04/25 hof: support for keyframes, anim_preview
* 0.96.00; 1998/06/27 hof: added gap animation sizechange plugins
* (moved range_ops to separate .h file)
* 0.94.01; 1998/04/27 hof: added flatten_mode to plugin: gap_range_to_multilayer
* 0.90.00; hof: 1.st (pre) release
*/
#ifndef _GAP_MOV_EXEC_H
#define _GAP_MOV_EXEC_H
#include "libgimp/gimp.h"
#include "gap_mov_dialog.h"
gint32 gap_mov_exec_move_path(GimpRunMode run_mode, gint32 image_id, GapMovValues *pvals, gchar *pointfile, gint rotation_follow, gdouble startangle);
gint32 gap_mov_exec_anim_preview(GapMovValues *pvals_orig, GapAnimInfo *ainfo_ptr, gint preview_frame_nr);
gchar *gap_mov_exec_chk_keyframes(GapMovValues *pvals);
gint gap_mov_exec_conv_keyframe_to_rel(gint abs_keyframe, GapMovValues *pvals);
gint gap_mov_exec_conv_keyframe_to_abs(gint rel_keyframe, GapMovValues *pvals);
gint gap_mov_exec_gap_save_pointfile(char *filename, GapMovValues *pvals);
gint gap_mov_exec_gap_load_pointfile(char *filename, GapMovValues *pvals);
void gap_mov_exec_calculate_rotate_follow(GapMovValues *pvals, gdouble startangle);
void gap_mov_exec_set_handle_offsets(GapMovValues *val_ptr, GapMovCurrent *cur_ptr);
#endif
|