![]() |
FJMovieEditor Pré-Alpha
A GTK video editor for GNOME. Designed for Artists to do, special effects, compositing and animation.
|
#include <glib.h>
#include <gtk/gtk.h>
#include <gst/gst.h>
#include "basic.h"
#include "config.h"
#include "main.h"
#include "window.h"
#include "VideoFilters.h"
#include "tools.h"
#include "Utils.h"
#include "SharedDataSystem.h"
#include "LoadSave.h"
#include "custom_config.h"
#include "EmbeddedPythonConsole.h"
#include "plug-ins.h"
#include <Python.h>
Functions | |
void | LoadInternalPlugin () |
Adds the internal plugins. | |
void | LoadExternalPlugin () |
Adds the external plugins. | |
gpointer | DrawTrackerIcon () |
Renders an icon to the Tracker. | |
void | LoadImages () |
Load from file, but also creates shared images (using iShared). | |
void | process_args (void) |
int | main (int argc, char **argv) |
gpointer DrawTrackerIcon | ( | ) |
Renders an icon to the Tracker.
This function contains a procedure to draw a picture. It returns a GdkPixbuf containing the image.
void LoadExternalPlugin | ( | ) |
Adds the external plugins.
Here are added all the plugins, which, are the functions within this program, containing something that needs to be called at startup. For example, the functions of video effects settings for them to add, to the menus. Remember that external plugins are dynamic libraries.
void LoadImages | ( | ) |
Load from file, but also creates shared images (using iShared).
This function adjusts their names to be accessed in the future. Avoid having a lot of copies of it into memory(See SharedDataSystem.c).
void LoadInternalPlugin | ( | ) |
Adds the internal plugins.
Here are added all the plugins, which, are the functions within this program, containing something that needs to be called at startup. For example, the functions of video effects settings for them to add, to the menus.
int main | ( | int | argc, |
char ** | argv | ||
) |
void process_args | ( | void | ) |