X-Git-Url: http://git.asbjorn.biz/?a=blobdiff_plain;f=lib%2Frfxswf.h;h=67046f28f84decf1428293610f572d8c6744b2b2;hb=30b68dc4d9d219f77e73bbd1db59dd41fd27d1eb;hp=99590c915591f46a8c2ea57282c2e358daf87e8f;hpb=80cc20b7784cccc9d8baf9839f9781db6bb6f539;p=swftools.git diff --git a/lib/rfxswf.h b/lib/rfxswf.h index 99590c9..67046f2 100644 --- a/lib/rfxswf.h +++ b/lib/rfxswf.h @@ -326,11 +326,14 @@ SRECT swf_TurnRect(SRECT r, MATRIX* m); #define ST_DEFINEFONTALIGNZONES 73 /* version 8 */ #define ST_CSMTEXTSETTINGS 74 /* version 8 */ #define ST_DEFINEFONT3 75 /* version 8 */ +#define ST_SYMBOLCLASS 76 /* version 9 */ #define ST_METADATA 77 /* version 8 */ #define ST_DEFINESCALINGGRID 78 /* version 8 */ +#define ST_DOABC 82 /* version 9 */ #define ST_DEFINESHAPE4 83 /* version 8 */ #define ST_DEFINEMORPHSHAPE2 84 /* version 8 */ #define ST_SCENEDESCRIPTION 86 /* version 9 */ +#define ST_DEFINEBINARY 87 /* version 9 */ /* custom tags- only valid for swftools */ #define ST_REFLEX 777 /* to identify generator software */ @@ -554,6 +557,10 @@ int swf_FontEnumerate(SWF * swf,void (*FontCallback) (void*,U16,U8*), void*self) int swf_FontExtract(SWF * swf,int id,SWFFONT ** f); // Fetches all available information from DefineFont, DefineFontInfo, DefineText, ... // id = FontID, id=0 -> Extract first Font +int swf_FontExtract_DefineFont2(int id, SWFFONT * font, TAG * tag); +int swf_FontExtract_DefineFontInfo(int id, SWFFONT * f, TAG * t); +int swf_FontExtract_DefineFont(int id, SWFFONT * f, TAG * t); +int swf_FontExtract_GlyphNames(int id, SWFFONT * f, TAG * tag); int swf_FontIsItalic(SWFFONT * f); int swf_FontIsBold(SWFFONT * f); @@ -882,7 +889,7 @@ ActionTAG* action_BitLShift(ActionTAG*atag); ActionTAG* action_BitRShift(ActionTAG*atag); ActionTAG* action_BitURShift(ActionTAG*atag); ActionTAG* action_GotoFrame(ActionTAG*atag, U16 frame); -ActionTAG* action_GetUrl(ActionTAG*atag, char* url, char* label); +ActionTAG* action_GetUrl(ActionTAG*atag, const char* url, char* label); ActionTAG* action_StoreRegister(ActionTAG*atag, U8 reg); ActionTAG* action_Constantpool(ActionTAG*atag, char* constantpool); ActionTAG* action_WaitForFrame(ActionTAG*atag, U16 frame, U8 skip); @@ -985,7 +992,7 @@ void swf_Render_SetBackgroundColor(RENDERBUF*buf, RGBA color); RGBA* swf_Render(RENDERBUF*dest); void swf_RenderShape(RENDERBUF*dest, SHAPE2*shape, MATRIX*m, CXFORM*c, U16 depth,U16 clipdepth); void swf_RenderSWF(RENDERBUF*buf, SWF*swf); -void swf_Render_AddImage(RENDERBUF*buf, U16 id, RGBA*img, int width, int height); +void swf_Render_AddImage(RENDERBUF*buf, U16 id, RGBA*img, int width, int height); /* img is non-premultiplied */ void swf_Render_ClearCanvas(RENDERBUF*dest); void swf_Render_Delete(RENDERBUF*dest); @@ -1058,6 +1065,8 @@ void swf_SetFilter(TAG*tag, FILTER*f); FILTER*swf_GetFilter(TAG*tag); FILTER*swf_NewFilter(U8 type); +void AVM2_InsertStops(SWF*swf); + #ifdef __cplusplus } #endif