Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJuho Vepsalainen <bebraw@gmail.com>2008-12-01 22:02:27 +0300
committerJuho Vepsalainen <bebraw@gmail.com>2008-12-01 22:02:27 +0300
commit1ebf257bf4df7866dfd75c5e35e8cf14efa73bc8 (patch)
tree3e72e859d766b1bb1cad0b2d5d1bd2aec5bd0816 /source/blender/makesrna/intern/rna_vfont.c
parent6a73a27d8100f2f6292125cd8ea78573402a43cd (diff)
RNA: Curves and VFont
Implemented RNA wrappers for curves and VFont. Only issue I could not yet solve is related to struct CharInfo curinfo; . This particular line proved to be hard to wrap and I therefore marked it as a TODO should someone want to fix this issue. I also cleaned up makesrna.c a bit by unifying brush/meta parts under one call just the way it is done in the case of other wrappers.
Diffstat (limited to 'source/blender/makesrna/intern/rna_vfont.c')
-rwxr-xr-xsource/blender/makesrna/intern/rna_vfont.c52
1 files changed, 52 insertions, 0 deletions
diff --git a/source/blender/makesrna/intern/rna_vfont.c b/source/blender/makesrna/intern/rna_vfont.c
new file mode 100755
index 00000000000..aea084183d5
--- /dev/null
+++ b/source/blender/makesrna/intern/rna_vfont.c
@@ -0,0 +1,52 @@
+/**
+ * $Id$
+ *
+ * ***** BEGIN GPL LICENSE BLOCK *****
+ *
+ * This program is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU General Public License
+ * as published by the Free Software Foundation; either version 2
+ * of the License, or (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program; if not, write to the Free Software Foundation,
+ * Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+ *
+ * Contributor(s): Blender Foundation (2008), Juho Vepsäläinen
+ *
+ * ***** END GPL LICENSE BLOCK *****
+ */
+
+#include <stdlib.h>
+
+#include "RNA_define.h"
+#include "RNA_types.h"
+
+#include "rna_internal.h"
+
+#include "DNA_vfont_types.h"
+
+#ifdef RNA_RUNTIME
+
+#else
+
+void RNA_def_vfont(BlenderRNA *brna)
+{
+ StructRNA *srna;
+ PropertyRNA *prop;
+
+ srna= RNA_def_struct(brna, "VFont", "ID", "VFont");
+
+ /* number values */
+ prop= RNA_def_property(srna, "scale", PROP_FLOAT, PROP_NONE);
+ RNA_def_property_float_sdna(prop, NULL, "scale");
+ RNA_def_property_range(prop, 0.1f, 100.0f); /* TODO: check bounds! */
+ RNA_def_property_ui_text(prop, "Font Scale", "");
+}
+
+#endif