![]() |
FJMovieEditor Pré-Alpha
A GTK video editor for GNOME. Designed for Artists to do, special effects, compositing and animation.
|
Functions | |
iPlugin * | LoadPlugin (const gchar *file_name, gpointer data) |
Loads a plugin in dynamic library. | |
iPlugin * | addPlugin (PluginCallFunc init, PluginCallFunc frame, PluginCallFunc end, gpointer data) |
Adds an internal plugin. | |
void | delPlugin (iPlugin *p) |
Delete the plugin causing it can no longer be used by this program. | |
iPlugin * | addEffect (iPlugin *p, Layer *l) |
Clones a plugin to be an effect of video. | |
void | setupEffect (iPlugin *p, Layer *l) |
iPlugin * | addConfig (PluginCallFunc config, PluginCallFunc init, PluginCallFunc frame, PluginCallFunc end, iPlugin *p) |
Adds a plugin that needs to be configured before. | |
GList * | findPlugin (gchar *name, gchar *iname, gchar *path, gchar *layer_name, gchar *type) |
Returns one, plugin list, matching the search criteria. | |
iPlugin * | findInternalPlugin (gchar *iname) |
Looks for a plugin (internal) by the name used internally only. | |
iPlugin * | findPluginByWidget (GtkWidget *widget) |
Search plugin for the pointer to a GtkWidget. |
iPlugin* addConfig | ( | PluginCallFunc | config, |
PluginCallFunc | init, | ||
PluginCallFunc | frame, | ||
PluginCallFunc | end, | ||
iPlugin * | p | ||
) |
Adds a plugin that needs to be configured before.
All video effects should be added using this function. This function at present does not call the Init function, but the Setup function, to first configure the plugin. The Init function is only called when the effect of video, is applied to any layer (add effect). When the init function is called, all the data necessary to edit a video, are already set. Prior to the Init function is called, the effect is doubled and applied to a layer.
Clones a plugin to be an effect of video.
The plugin are unique for the entire program, so they are not ready for video effects. A video effect, requires that the same plugin, that is, added to many layers. The ability of a plugin, is a single layer. Because of the plugins are added at the beginning of the program, they can create menu entries, to be called later, but can not be applied to a layer, therefore it may not even exist. In brief:This function clones the plugin, the function calls Init; Causes Frame function is called every frame, set the variable Layer plugin, as the argument layer;
iPlugin* addPlugin | ( | PluginCallFunc | init, |
PluginCallFunc | frame, | ||
PluginCallFunc | end, | ||
gpointer | data | ||
) |
Adds an internal plugin.
This function is made to add a plugin. The Init function is called. This function also adds the plugin, so that the Frame function, is called every frame. End The function is called when the plugin is ready to be deleted, it can, for example, to frred the memory used. The argument called "data", causes the function to configure an existing plugin, where all parameters have already been configured.
void delPlugin | ( | iPlugin * | p | ) |
Delete the plugin causing it can no longer be used by this program.
iPlugin* findInternalPlugin | ( | gchar * | iname | ) |
Looks for a plugin (internal) by the name used internally only.
The plugins have several texts (gchar *) contained in them. One is the text, iname (Internal Name). This name is made to internal parts of the program to communicate. Suppose we are working on the basis of, the layers window. We want to add an event to the main video window. How do we find the video window (which is a plugin), among of so many plugins. This is the purpose of the internal name. If the function does not find the plugin returns NULL.
GList* findPlugin | ( | gchar * | name, |
gchar * | iname, | ||
gchar * | path, | ||
gchar * | layer_name, | ||
gchar * | type | ||
) |
Returns one, plugin list, matching the search criteria.
If you do not need a parameter, leave it as NULL, so that it will be ignored. If not found the searched data, returns NULL.
iPlugin* findPluginByWidget | ( | GtkWidget * | ) |
Search plugin for the pointer to a GtkWidget.
Within each plugin (iPlugin structure), there is a GtkWidget. You can get the whole plugin, and only, the widget it. Again, if can not find the plugin returns NULL.
iPlugin* LoadPlugin | ( | const gchar * | file_name, |
gpointer | data | ||
) |
Loads a plugin in dynamic library.
In this function the first argument is the file name, the second a pointer to one, iPlugin structure, existing. The external plugins (dynamic libraries outside the program) are added using this function.