#define fxDefaultPageDuration - fixedOne
#define fxDefaultTransDuration fixedOne
typedef OPAQUE_64_BITS PDTrans;
ASBool PDTransEqual(PDTrans pdtOne, PDTrans pdtTwo);
pdtOne | A transition to test for equality.
|
pdtTwo | A transition to test for equality.
|
PDTrans PDTransFromCosObj(CosObj coLayer);
coLayer | The dictionary Cos object to convert to a transition.
|
obj. is raised if the transition is not valid as determined by PDTransIsValid().
|
CosObj PDTransGetCosObj(PDTrans pdl);
pdl | The transition whose Cos object is obtained.
|
NULL Cos object if the transition is invalid as determined by PDTransIsValid(). ASFixed PDTransGetDuration(PDTrans pdt);
pdt | IN/OUT The transition for which the duration is obtained.
|
1 second). ASAtom PDTransGetSubtype(PDTrans pdt);
pdt | IN/OUT The transition whose subtype is obtained.
|
ASBool PDTransIsValid(PDTrans pdt);
pdt | The transition dictionary whose validity is tested.
|
PDTrans PDTransNew(PDDoc pdd, ASAtom asaSubtype, ASFixed fxDuration);
pdd | |
asaSubtype | The transition subtype to create. It must be one of the transition effects described under "Presentations" in the ISO 32000-1:2008, Document Management-Portable Document Format-Part 1: PDF 1.7, section 12.4.4, page 377. You can find this document on the web store of the International Standards Organization (ISO). All implementations that support transitions are required to support these transitions at a minimum. Plug-ins can register new types or provide a new handler for an existing type. |
fxDuration | The transition duration, in seconds.
|
is raised if the transition is not valid as determined by PDTransIsValid().
|
PDTrans PDTransNewFromCosDoc(CosDoc cd, ASAtom asaSubtype, ASFixed fxDuration);
cd | The CosDoc to which the transition is added.
|
asaSubtype | The transition subtype to create. This subtype is returned by the AVTransHandlerGetTypeProc() callback in AVTransHandler.
|
fxDuration | The transition duration, in seconds.
|
is raised if the transition is not valid as determined by PDTransIsValid().
|
NULL transition. This can be used in conjunction with PDTransEqual() to determine whether a transition is NULL. PDTrans PDTransNull(void);
NULL transition.