![]() |
FJMovieEditor Pré-Alpha
A GTK video editor for GNOME. Designed for Artists to do, special effects, compositing and animation.
|
Utilities to make life easier for users. These utilities. can be accessed from anywhere in the program. More...
Go to the source code of this file.
Data Structures | |
struct | AnmVector2d |
union | Vector2f |
A two-dimensional vector. More... | |
struct | AnmColor |
A color prepared to be animated. More... | |
Defines | |
#define | sq(x) (x*x) |
Multiplies a variable by itself. | |
#define | vec_distf(a, b) ( sqrt( sq(b.x - a.x) + sq(b.y - a.y) ) ) |
This macro is replaced by the distance between two vectors. | |
#define | between_square(x, y, a, b, width, height) |
Checks if the points x, y, are in the square a, b, width, height. | |
#define | setn(x, y) if(x == NULL) x = y |
Typedefs | |
typedef struct AnmVector2d | AnmVector2d |
Functions | |
AnmColor * | addAnmColor () |
Returns a animated color. | |
AnmColor * | AnmColorFromColorD (Pixeld *c) |
Returns a static color which can be accessed in the same way that a animated color. | |
Vector2f * | vector2f (gfloat x, gfloat y) |
Allocates memory for a 2D vector. | |
gboolean | draw_plugin (iPlugin *p) |
Draw a graphic plugin, on the screen. | |
gboolean | draw_plugin_custom (GdkPixbuf *pixels, iPlugin *p) |
Draws the plugin in a GdkPixbuf specified by User. | |
gchar * | fjme_data_directory () |
Returns the top data directory of FJME. | |
GtkWidget * | fjme_button_from_file (gchar *file) |
Utilities to make life easier for users. These utilities. can be accessed from anywhere in the program.
#define between_square | ( | x, | |
y, | |||
a, | |||
b, | |||
width, | |||
height | |||
) |
(x >= a && x < a+width && \ y >= b && y < b+height)
Checks if the points x, y, are in the square a, b, width, height.
#define setn | ( | x, | |
y | |||
) | if(x == NULL) x = y |
#define sq | ( | x | ) | (x*x) |
Multiplies a variable by itself.
#define vec_distf | ( | a, | |
b | |||
) | ( sqrt( sq(b.x - a.x) + sq(b.y - a.y) ) ) |
This macro is replaced by the distance between two vectors.
typedef struct AnmVector2d AnmVector2d |
AnmColor* addAnmColor | ( | ) |
Returns a animated color.
Returns a static color which can be accessed in the same way that a animated color.
gboolean draw_plugin | ( | iPlugin * | p | ) |
Draw a graphic plugin, on the screen.
Draw on the screen GdkPixbuf (pixels) contained in the structure iPlugin. This function considers the alpha channel of the GdkPixbuf (transparency), and adjusts the image size to the size specified in the structure iPlugin (width, height). If the variable "center", is set to true (default), the image is adjusted with the point (x, y) in the center. Otherwise, (x, y) is the place of the first pixel of the screen. Opacity is adjusted individually for each pixel.
gboolean draw_plugin_custom | ( | GdkPixbuf * | pixels, |
iPlugin * | p | ||
) |
Draws the plugin in a GdkPixbuf specified by User.
GtkWidget* fjme_button_from_file | ( | gchar * | file | ) |
gchar* fjme_data_directory | ( | ) |
Returns the top data directory of FJME.
Vector2f* vector2f | ( | gfloat | x, |
gfloat | y | ||
) |
Allocates memory for a 2D vector.