FJMovieEditor Pré-Alpha
A GTK video editor for GNOME. Designed for Artists to do, special effects, compositing and animation.

trunk/libfjme/plug-ins.c File Reference

#include "basic.h"
#include "plug-ins.h"
Include dependency graph for plug-ins.c:

Functions

iPluginLoadPlugin (const gchar *file_name, gpointer data)
 Loads a plugin in dynamic library.
iPluginaddPlugin (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.
iPluginaddEffect (iPlugin *p, Layer *l)
 Clones a plugin to be an effect of video.
void setupEffect (iPlugin *p, Layer *l)
iPluginaddConfig (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.
iPluginfindInternalPlugin (gchar *iname)
 Looks for a plugin (internal) by the name used internally only.
iPluginfindPluginByWidget (GtkWidget *widget)
 Search plugin for the pointer to a GtkWidget.

Function Documentation

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.

Author:
Fabio J. Gonzalez
Precondition:
If you are calling from a plugin, set the global variable, cmain to be equal to iPlugin::m (p-> m). adding and deleting pointers.

Here is the caller graph for this function:

iPlugin* addEffect ( iPlugin p,
Layer l 
)

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;

Author:
Fabio J. Gonzalez
Precondition:
If you are calling from a plugin, set the global variable, cmain to be equal to iPlugin::m (p-> m). adding and deleting pointers.

Here is the caller graph for this function:

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.

Author:
Fabio J. Gonzalez
Precondition:
If you are calling from a plugin, set the global variable, cmain to be equal to iPlugin::m (p-> m). adding and deleting pointers.

Here is the caller graph for this function:

void delPlugin ( iPlugin p)

Delete the plugin causing it can no longer be used by this program.

Author:
Fabio J. Gonzalez
Precondition:
If you are calling from a plugin, set the global variable, cmain to be equal to iPlugin::m (p-> m). adding and deleting pointers.
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.

Author:
Fabio J. Gonzalez
Precondition:
If you are calling from a plugin, set the global variable, cmain to be equal to iPlugin::m (p-> m). adding and deleting pointers.

Here is the caller graph for this function:

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.

Author:
Fabio J. Gonzalez
Precondition:
If you are calling from a plugin, set the global variable, cmain to be equal to iPlugin::m (p-> m). adding and deleting pointers.
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.

Author:
Fabio J. Gonzalez
Precondition:
If you are calling from a plugin, set the global variable, cmain to be equal to iPlugin::m (p-> m). adding and deleting pointers.
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.

Author:
Fabio J. Gonzalez
Precondition:
If you are calling from a plugin, set the global variable, cmain to be equal to iPlugin::m (p-> m). adding and deleting pointers.

Here is the call graph for this function:

Here is the caller graph for this function:

void setupEffect ( iPlugin p,
Layer l 
)

Here is the caller graph for this function:

All Data Structures Files Functions Variables Typedefs Defines