X-Git-Url: http://git.asbjorn.biz/?a=blobdiff_plain;f=lib%2Fpython%2Fprimitives.h;h=19d063a3b883fb6670c66da23a40ca5a745efe0b;hb=7aa6239f42b65e0cd200e251fc2c59037589e7a0;hp=e215344e431a1833b2759851ab07e1729c3ba1ba;hpb=a18cdd835cad27c679d6a9659836f035fc3a0b5c;p=swftools.git diff --git a/lib/python/primitives.h b/lib/python/primitives.h index e215344..19d063a 100644 --- a/lib/python/primitives.h +++ b/lib/python/primitives.h @@ -23,8 +23,10 @@ #ifndef __primitives_h__ #define __primitives_h__ -#undef HAVE_STAT #include +#undef HAVE_STAT + +#include "../rfxswf.h" /* exported to allow casting to this type */ extern PyTypeObject ColorClass; @@ -32,18 +34,29 @@ extern PyTypeObject BBoxClass; extern PyTypeObject CXFormClass; extern PyTypeObject GradientClass; extern PyTypeObject MatrixClass; +extern PyTypeObject LineStyleClass; +extern PyTypeObject FillStyleClass; PyObject* f_Color(PyObject* self, PyObject* args, PyObject* kwargs); PyObject* f_ColorTransform(PyObject* self, PyObject* args, PyObject* kwargs); PyObject* f_Gradient(PyObject* self, PyObject* args, PyObject* kwargs); PyObject* f_BBox(PyObject* self, PyObject* args, PyObject* kwargs); +PyObject* f_BBox2(SRECT bbox); PyObject* f_Matrix(PyObject* self, PyObject* args, PyObject* kwargs); +PyObject* f_FillStyle2(FILLSTYLE fs); +PyObject* f_SolidFillstyle(PyObject* self, PyObject* args, PyObject* kwargs); +PyObject* f_SolidFillstyle2(RGBA color); +PyObject* f_LineStyle(PyObject* self, PyObject* args, PyObject* kwargs); +PyObject* f_LineStyle2(RGBA color, int width); +PyObject* f_LineStyle3(LINESTYLE ls); RGBA color_getRGBA(PyObject*self); CXFORM colortransform_getCXForm(PyObject*self); GRADIENT gradient_getGradient(PyObject*self); -SRECT bbox_getBBox(PyObject*self); +SRECT bbox_getSRECT(PyObject*self); MATRIX matrix_getMatrix(PyObject*self); +FILLSTYLE fillstyle_getFillStyle(PyObject*self); +LINESTYLE linestyle_getLineStyle(PyObject*self); extern PyMethodDef* primitive_getMethods();