An interface, for so far as Python supports it. To add support for a
flipbook this needs to be subclassed and the 3 methods implemented. The
default implementation just raises an exception so any sub implementer
will soon find out whether his implementation works.
|
|
|
|
|
|
|
|
path(self)
Return the executable path required to run a flipbook. |
source code
|
|
|
|
|
|
|
|
|
|
run(self,
path,
frameRanges,
views,
options)
Execute the flipbook on a path. |
source code
|
|
|
|
|
|
|
dialogKnobs(self,
dialog)
This is called when the user has selected this flipbook application,
and will be interested in any knobs that you might have to show for
custom settings. |
source code
|
|
|
|
dialogKnobChanged(self,
dialog,
knob)
Called whenever this flipbook is selected and one of the knobs added
in dialogKnobs was changed. |
source code
|
|
|
|
getExtraOptions(self,
flipbookDialog,
nodeToFlipbook)
Called whenever this flipbook is selected to retrieve extra options
from the node selected to flipbook and the flipbook dialog. |
source code
|
|
|
Inherited from object:
__delattr__,
__format__,
__getattribute__,
__hash__,
__new__,
__reduce__,
__reduce_ex__,
__repr__,
__setattr__,
__sizeof__,
__str__,
__subclasshook__
|