![]() |
FJMovieEditor Pré-Alpha
A GTK video editor for GNOME. Designed for Artists to do, special effects, compositing and animation.
|
00001 /* 00002 A GTK video editor Designed for Artists to do, special effects, compositing and animation. 00003 Copyright (C) 2011 Fabio J. Gonzalez 00004 00005 This program is free software: you can redistribute it and/or modify 00006 it under the terms of the GNU General Public License as published by 00007 the Free Software Foundation, either version 3 of the License, or 00008 (at your option) any later version. 00009 00010 This program is distributed in the hope that it will be useful, 00011 but WITHOUT ANY WARRANTY; without even the implied warranty of 00012 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 00013 GNU General Public License for more details. 00014 00015 You should have received a copy of the GNU General Public License 00016 along with this program. If not, see <http://www.gnu.org/licenses/>. 00017 */ 00018 00019 //include all library files 00020 #ifndef FJME_ANIMATEDUTILS_H 00021 #define FJME_ANIMATEDUTILS_H 1 00022 00023 #define findTrackers() \ 00024 findPlugin( NULL, NULL, NULL, NULL, "tracker" ) 00025 00026 /* 00027 * For convenience I created a "plugin system". 00028 * This system works internally (with just the 00029 * following functions), or externally (dynamically loaded plugins). 00030 */ 00031 00032 /* 00033 * When the plugin is created is called 00034 * _init each table has to render the 00035 * video (the video window). 00036 */ 00037 00038 void AnmEntry_Init(iPlugin* p); 00039 void AnmEntry_Frame(iPlugin* p); 00040 00041 void AnmToggleButton_Init(iPlugin* p); 00042 void AnmToggleButton_Frame(iPlugin* p); 00043 00044 void AnmSpinButton_Init(iPlugin* p); 00045 void AnmSpinButton_Frame(iPlugin* p); 00046 00047 void AnmCheckButton_Init(iPlugin* p); 00048 void AnmCheckButton_Frame(iPlugin* p); 00049 00050 void AnmRadioButton_Init(iPlugin* p); 00051 void AnmRadioButton_Frame(iPlugin* p); 00052 00053 void AnmTracker_Init(iPlugin* p); 00054 void AnmTracker_Frame(iPlugin* p); 00055 00056 void AnmColor_Init(iPlugin* p); 00057 void AnmColor_Frame(iPlugin* p); 00058 00059 void AnmLayersList_Init(iPlugin* p); 00060 void AnmLayersList_Frame(iPlugin* p); 00061 00062 /* 00063 * Functions to be called to make 00064 * a GUI with automatically animated 00065 * types 00066 */ 00067 GtkWidget* addAnmEntry(gdouble* AnimatedValue); 00068 GtkWidget* addAnmToggleButton(gdouble* AnimatedValue); 00069 GtkWidget* addAnmSpinButton(gdouble* AnimatedValue); 00070 GtkWidget* addAnmCheckButton(gdouble* AnimatedValue); 00071 GtkWidget* addAnmRadioButton(gdouble* AnimatedValue); 00072 GtkWidget* addAnmColorButton(gdouble* r, gdouble* g, gdouble* b); 00073 00074 GtkWidget* addAnmLayersList(gdouble* v); 00075 00076 Layer* AnmLayersListGetSelected(GtkWidget*); 00077 00078 iPlugin* addAnmTracker(gdouble* x, gdouble* y); 00079 00080 /* 00081 * Some things are standard in this system, 00082 * for example: User can use the keyboard to 00083 * handle the insertion of keyframes. 00084 */ 00085 gboolean AnmEntry_frame_insert(GtkWidget* widget, gpointer data); 00086 gboolean AnmToggleButton_frame_insert(GtkWidget* widget, gpointer data); 00087 gboolean AnmSpinButton_frame_insert(GtkWidget* widget, gpointer data); 00088 gboolean AnmCheckButton_frame_insert(GtkWidget* widget, gpointer data); 00089 gboolean AnmRadioButton_frame_insert(GtkWidget* widget, gpointer data); 00090 gboolean AnmColor_frame_insert(GtkWidget* widget, gpointer data); 00091 gboolean AnmLayersList_frame_insert(GtkWidget* widget, gpointer data); 00092 00093 gboolean AnmEntry_frame_delete(GtkWidget* widget, gpointer data); 00094 gboolean AnmToggleButton_frame_delete(GtkWidget* widget, gpointer data); 00095 gboolean AnmSpinButton_frame_delete(GtkWidget* widget, gpointer data); 00096 gboolean AnmCheckButton_frame_delete(GtkWidget* widget, gpointer data); 00097 gboolean AnmRadioButton_frame_delete(GtkWidget* widget, gpointer data); 00098 gboolean AnmColor_frame_delete(GtkWidget* widget, gpointer data); 00099 gboolean AnmLayersList_frame_delete(GtkWidget* widget, gpointer data); 00100 00101 #endif 00102