With the Timeline functions, you can return values for layers and frames in the Timeline window.
More...
#include <timelineUI.h>
With the Timeline functions, you can return values for layers and frames in the Timeline window.
There are two main groups of Timeline functions:
- selToXX: the selection functions work with a selection using the selIdx parameter.
- layerToXX: the layer functions work with Timeline layers using the layerIdx parameter.
The layerIdx and selIdx parameters are used in many of the functions:
- layerIdx: this is an integer that represents the layer in the Timeline. The first layer in the Timeline is considered 0 (zero).
- selIdx: this is an integer that represents the selection in the Timeline. It is a number from 0 to the number of layers selected minus 1.
function printTimelineLayerInformation()
{
{
}
for ( var i = 0; i < numSelLayers; i++ )
{
}
}
int Timeline::firstFrameSel |
( |
| ) |
|
return the first frame selected.
bool Timeline::isAncestorOf |
( |
int |
parentLayerIdx, |
|
|
int |
layerIdx |
|
) |
| |
|
slot |
return true if the parent layer index is an ancestor of the layer index
bool Timeline::layerIsColumn |
( |
int |
layerIdx | ) |
|
|
slot |
return true if the layer index is a column
bool Timeline::layerIsNode |
( |
int |
layerIdx | ) |
|
|
slot |
return true if the layer is a node.
String Timeline::layerToColumn |
( |
int |
layerIdx | ) |
|
|
slot |
return the layer as a column, or the empty string if this layer is not a column.
String Timeline::layerToNode |
( |
int |
layerIdx | ) |
|
|
slot |
return node associated to the layer, or the empty string if this layer is not a node..
int Timeline::numFrameSel |
( |
| ) |
|
return the number of the selected frame, if only one frame is selected. It will return zero (0) if no frames are selected.
int Timeline::numLayers |
( |
| ) |
|
return the number of layers in the timeline.
int Timeline::numLayerSel |
( |
| ) |
|
return the number of layer selected.
int Timeline::parentNodeIndex |
( |
int |
layerIdx | ) |
|
|
slot |
return the layer index of the parent node
bool Timeline::selIsColumn |
( |
int |
selIdx | ) |
|
|
slot |
return true if the selIdx points to a column
bool Timeline::selIsNode |
( |
int |
selIdx | ) |
|
|
slot |
return true if the selected index is a node
String Timeline::selToColumn |
( |
int |
selIdx | ) |
|
|
slot |
Convert the selected index to a column.
int Timeline::selToLayer |
( |
int |
selIdx | ) |
|
|
slot |
convert a selection index to a layer index
String Timeline::selToNode |
( |
int |
selIdx | ) |
|
|
slot |
Convert the selected index to a node.
bool Timeline::setDisplayToUnconnected |
( |
| ) |
|
|
slot |
return true if display was set to unconnected
int Timeline::firstFrameSel |
|
readprivate |
return the first selected frame number.
int Timeline::numFrameSel |
|
readprivate |
return the number of selected frame. If only 1 frame is selected.
Return the number of layers in the timeline.
int Timeline::numLayerSel |
|
readprivate |
Return the number of selected layers.
The documentation for this class was generated from the following file: