#include "general.h"
#include <ETL/handle>
#include <map>
#include "string.h"
#include <utility>
#include "vector.h"
#include "color.h"
#include "layer.h"
#include "canvas.h"
Go to the source code of this file.
Namespaces | |
namespace | synfig |
Classes | |
class | synfig::Module |
Defines | |
#define | MODULE_DESC_BEGIN(x) struct x##_modclass : public synfig::Module { x##_modclass(synfig::ProgressCallback *callback=NULL); |
Marks the start of a module description. | |
#define | MODULE_NAME(x) virtual const char * Name() { return x; } |
Sets the localized name of the module. | |
#define | MODULE_DESCRIPTION(x) virtual const char * Desc() { return x; } |
Sets a localized description of the module. | |
#define | MODULE_AUTHOR(x) virtual const char * Author() { return x; } |
Sets the name of the module's author. | |
#define | MODULE_VERSION(x) virtual const char * Version() { return x; } |
Sets the version string for the module. | |
#define | MODULE_COPYRIGHT(x) virtual const char * Copyright() { return x; } |
Sets the copyright string for the module. | |
#define | MODULE_CONSTRUCTOR(x) bool constructor_(synfig::ProgressCallback *cb) { return x(cb); } |
Describes the module's construction function. | |
#define | MODULE_DESTRUCTOR(x) virtual void destructor_() { return x(); } |
Describes the module's destruction function. | |
#define | MODULE_DESC_END }; |
Marks the end of a module description. | |
#define | MODULE_INVENTORY_BEGIN(x) |
Marks the start of a module's inventory. | |
#define | BEGIN_LAYERS { |
Marks the start of the layers in the module's inventory. | |
#define | LAYER(class) synfig::Layer::register_in_book(synfig::Layer::BookEntry(class::create,class::name__,class::local_name__,class::category__,class::cvs_id__,class::version__)); |
DEPRECATED - use (). | |
#define | LAYER_ALIAS(class, alias) synfig::Layer::register_in_book(synfig::Layer::BookEntry(class::create,alias,alias,_("Do Not Use"),class::cvs_id__,class::version__)); |
#define | END_LAYERS } |
Marks the end of the layers in the module's inventory. | |
#define | BEGIN_TARGETS { |
Marks the start of the targets in the module's inventory. | |
#define | TARGET(x) synfig::Target::book()[synfig::String(x::name__)]=std::pair<synfig::Target::Factory,synfig::String>(x::create,synfig::String(x::ext__));synfig::Target::ext_book()[synfig::String(x::ext__)]=x::name__; |
#define | TARGET_EXT(x, y) synfig::Target::ext_book()[synfig::String(y)]=x::name__; |
#define | END_TARGETS } |
Marks the end of the targets in the module's inventory. | |
#define | BEGIN_IMPORTERS { |
Marks the start of the importers in the module's inventory. | |
#define | IMPORTER(x) synfig::Importer::book()[synfig::String(x::ext__)]=x::create; |
#define | IMPORTER_EXT(x, y) synfig::Importer::book()[synfig::String(y)]=x::create; |
#define | END_IMPORTERS } |
Marks the end of the importers in the module's inventory. | |
#define | MODULE_INVENTORY_END } |
Marks the end of a module's inventory. |
#define MODULE_DESC_BEGIN | ( | x | ) | struct x##_modclass : public synfig::Module { x##_modclass(synfig::ProgressCallback *callback=NULL); |
Marks the start of a module description.
#define MODULE_NAME | ( | x | ) | virtual const char * Name() { return x; } |
Sets the localized name of the module.
#define MODULE_DESCRIPTION | ( | x | ) | virtual const char * Desc() { return x; } |
Sets a localized description of the module.
#define MODULE_AUTHOR | ( | x | ) | virtual const char * Author() { return x; } |
Sets the name of the module's author.
#define MODULE_VERSION | ( | x | ) | virtual const char * Version() { return x; } |
Sets the version string for the module.
#define MODULE_COPYRIGHT | ( | x | ) | virtual const char * Copyright() { return x; } |
Sets the copyright string for the module.
#define MODULE_CONSTRUCTOR | ( | x | ) | bool constructor_(synfig::ProgressCallback *cb) { return x(cb); } |
Describes the module's construction function.
#define MODULE_DESTRUCTOR | ( | x | ) | virtual void destructor_() { return x(); } |
Describes the module's destruction function.
#define MODULE_DESC_END }; |
Marks the end of a module description.
#define MODULE_INVENTORY_BEGIN | ( | x | ) |
Value:
extern "C" { \ synfig::Module* x##_LTX_new_instance(synfig::ProgressCallback *cb) \ { if(SYNFIG_CHECK_VERSION()){x##_modclass *mod=new x##_modclass(cb); mod->constructor_(cb); return mod; }\ if(cb)cb->error(#x": Unable to load module due to version mismatch."); return NULL; } \ }; x##_modclass::x##_modclass(synfig::ProgressCallback *cb) {
#define BEGIN_LAYERS { |
Marks the start of the layers in the module's inventory.
#define LAYER | ( | class | ) | synfig::Layer::register_in_book(synfig::Layer::BookEntry(class::create,class::name__,class::local_name__,class::category__,class::cvs_id__,class::version__)); |
DEPRECATED - use ().
#define LAYER_ALIAS | ( | class, | |||
alias | ) | synfig::Layer::register_in_book(synfig::Layer::BookEntry(class::create,alias,alias,_("Do Not Use"),class::cvs_id__,class::version__)); |
#define END_LAYERS } |
Marks the end of the layers in the module's inventory.
#define BEGIN_TARGETS { |
Marks the start of the targets in the module's inventory.
#define TARGET | ( | x | ) | synfig::Target::book()[synfig::String(x::name__)]=std::pair<synfig::Target::Factory,synfig::String>(x::create,synfig::String(x::ext__));synfig::Target::ext_book()[synfig::String(x::ext__)]=x::name__; |
#define TARGET_EXT | ( | x, | |||
y | ) | synfig::Target::ext_book()[synfig::String(y)]=x::name__; |
#define END_TARGETS } |
Marks the end of the targets in the module's inventory.
#define BEGIN_IMPORTERS { |
Marks the start of the importers in the module's inventory.
#define IMPORTER | ( | x | ) | synfig::Importer::book()[synfig::String(x::ext__)]=x::create; |
#define IMPORTER_EXT | ( | x, | |||
y | ) | synfig::Importer::book()[synfig::String(y)]=x::create; |
#define END_IMPORTERS } |
Marks the end of the importers in the module's inventory.
#define MODULE_INVENTORY_END } |
Marks the end of a module's inventory.