public class bDopeSheet extends CFacade
Modifier and Type | Field and Description |
---|---|
static long[] |
__DNA__FIELD__chanbase
Field descriptor (offset) for struct member 'chanbase'.
|
static long[] |
__DNA__FIELD__filter_grp
Field descriptor (offset) for struct member 'filter_grp'.
|
static long[] |
__DNA__FIELD__filterflag
Field descriptor (offset) for struct member 'filterflag'.
|
static long[] |
__DNA__FIELD__filterflag2
Field descriptor (offset) for struct member 'filterflag2'.
|
static long[] |
__DNA__FIELD__flag
Field descriptor (offset) for struct member 'flag'.
|
static long[] |
__DNA__FIELD__renameIndex
Field descriptor (offset) for struct member 'renameIndex'.
|
static long[] |
__DNA__FIELD__searchstr
Field descriptor (offset) for struct member 'searchstr'.
|
static long[] |
__DNA__FIELD__source
Field descriptor (offset) for struct member 'source'.
|
static int |
__DNA__SDNA_INDEX
This is the sdna index of the struct bDopeSheet.
|
__io__address, __io__arch_index, __io__block, __io__blockTable, __io__pointersize
Modifier | Constructor and Description |
---|---|
protected |
bDopeSheet(bDopeSheet that) |
|
bDopeSheet(long __address,
Block __block,
BlockTable __blockTable) |
Modifier and Type | Method and Description |
---|---|
CPointer<bDopeSheet> |
__io__addressof()
Instantiates a pointer on this instance.
|
ListBase |
getChanbase()
Get method for struct member 'chanbase'.
|
CPointer<Collection> |
getFilter_grp()
Get method for struct member 'filter_grp'.
|
int |
getFilterflag()
Get method for struct member 'filterflag'.
|
int |
getFilterflag2()
Get method for struct member 'filterflag2'.
|
int |
getFlag()
Get method for struct member 'flag'.
|
int |
getRenameIndex()
Get method for struct member 'renameIndex'.
|
CArrayFacade<java.lang.Byte> |
getSearchstr()
Get method for struct member 'searchstr'.
|
CPointer<ID> |
getSource()
Get method for struct member 'source'.
|
void |
setChanbase(ListBase chanbase)
Set method for struct member 'chanbase'.
|
void |
setFilter_grp(CPointer<Collection> filter_grp)
Set method for struct member 'filter_grp'.
|
void |
setFilterflag(int filterflag)
Set method for struct member 'filterflag'.
|
void |
setFilterflag2(int filterflag2)
Set method for struct member 'filterflag2'.
|
void |
setFlag(int flag)
Set method for struct member 'flag'.
|
void |
setRenameIndex(int renameIndex)
Set method for struct member 'renameIndex'.
|
void |
setSearchstr(CArrayFacade<java.lang.Byte> searchstr)
Set method for struct member 'searchstr'.
|
void |
setSource(CPointer<ID> source)
Set method for struct member 'source'.
|
__io__addressof, __io__addressof, __io__equals, __io__generic__copy, __io__generic__copy, __io__instanceof, __io__native__copy, __io__newInstance, __io__same__encoding, __io__sizeof, __io__sizeof, __io__subclassof
public static final int __DNA__SDNA_INDEX
It is required when allocating a new block to store data for bDopeSheet.
org.cakelab.blender.io.dna.internal.StructDNA}
,
org.cakelab.blender.io.block.BlockTable#allocate}
,
Constant Field Valuespublic static final long[] __DNA__FIELD__source
Currently ID_SCE (for Dopesheet), and ID_SC (for Grease Pencil).
This is how you get a reference on the corresponding field in the struct:
bDopeSheet bdopesheet = ...; CPointer<Object> p = bdopesheet.__dna__addressof(bDopeSheet.__DNA__FIELD__source); CPointer<CPointer<ID>> p_source = p.cast(new Class[]{CPointer.class, ID.class});
public static final long[] __DNA__FIELD__chanbase
XXX not used!
Cache for channels (only initialized when pinned).
This is how you get a reference on the corresponding field in the struct:
bDopeSheet bdopesheet = ...; CPointer<Object> p = bdopesheet.__dna__addressof(bDopeSheet.__DNA__FIELD__chanbase); CPointer<ListBase> p_chanbase = p.cast(new Class[]{ListBase.class});
public static final long[] __DNA__FIELD__filter_grp
Object
group for option to only include objects that belong to this Collection
.
This is how you get a reference on the corresponding field in the struct:
bDopeSheet bdopesheet = ...; CPointer<Object> p = bdopesheet.__dna__addressof(bDopeSheet.__DNA__FIELD__filter_grp); CPointer<CPointer<Collection>> p_filter_grp = p.cast(new Class[]{CPointer.class, Collection.class});
public static final long[] __DNA__FIELD__searchstr
String to search for in displayed names of F-Curves, or NlaTracks/GP Layers/etc.
This is how you get a reference on the corresponding field in the struct:
bDopeSheet bdopesheet = ...; CPointer<Object> p = bdopesheet.__dna__addressof(bDopeSheet.__DNA__FIELD__searchstr); CPointer<CArrayFacade<Byte>> p_searchstr = p.cast(new Class[]{CArrayFacade.class, Byte.class});
public static final long[] __DNA__FIELD__filterflag
Flags to use for filtering data.
This is how you get a reference on the corresponding field in the struct:
bDopeSheet bdopesheet = ...; CPointer<Object> p = bdopesheet.__dna__addressof(bDopeSheet.__DNA__FIELD__filterflag); CPointer<Integer> p_filterflag = p.cast(new Class[]{Integer.class});
public static final long[] __DNA__FIELD__filterflag2
This is how you get a reference on the corresponding field in the struct:
bDopeSheet bdopesheet = ...; CPointer<Object> p = bdopesheet.__dna__addressof(bDopeSheet.__DNA__FIELD__filterflag2); CPointer<Integer> p_filterflag2 = p.cast(new Class[]{Integer.class});
public static final long[] __DNA__FIELD__flag
Standard flags.
This is how you get a reference on the corresponding field in the struct:
bDopeSheet bdopesheet = ...; CPointer<Object> p = bdopesheet.__dna__addressof(bDopeSheet.__DNA__FIELD__flag); CPointer<Integer> p_flag = p.cast(new Class[]{Integer.class});
public static final long[] __DNA__FIELD__renameIndex
of channel to rename - only gets set by renaming operator.
This is how you get a reference on the corresponding field in the struct:
bDopeSheet bdopesheet = ...; CPointer<Object> p = bdopesheet.__dna__addressof(bDopeSheet.__DNA__FIELD__renameIndex); CPointer<Integer> p_renameIndex = p.cast(new Class[]{Integer.class});
public bDopeSheet(long __address, Block __block, BlockTable __blockTable)
protected bDopeSheet(bDopeSheet that)
public CPointer<ID> getSource() throws java.io.IOException
Currently ID_SCE (for Dopesheet), and ID_SC (for Grease Pencil).
java.io.IOException
__DNA__FIELD__source
public void setSource(CPointer<ID> source) throws java.io.IOException
Currently ID_SCE (for Dopesheet), and ID_SC (for Grease Pencil).
java.io.IOException
__DNA__FIELD__source
public ListBase getChanbase() throws java.io.IOException
XXX not used!
Cache for channels (only initialized when pinned).
java.io.IOException
__DNA__FIELD__chanbase
public void setChanbase(ListBase chanbase) throws java.io.IOException
XXX not used!
Cache for channels (only initialized when pinned).
java.io.IOException
__DNA__FIELD__chanbase
public CPointer<Collection> getFilter_grp() throws java.io.IOException
Object
group for option to only include objects that belong to this Collection
.
java.io.IOException
__DNA__FIELD__filter_grp
public void setFilter_grp(CPointer<Collection> filter_grp) throws java.io.IOException
Object
group for option to only include objects that belong to this Collection
.
java.io.IOException
__DNA__FIELD__filter_grp
public CArrayFacade<java.lang.Byte> getSearchstr() throws java.io.IOException
String to search for in displayed names of F-Curves, or NlaTracks/GP Layers/etc.
java.io.IOException
__DNA__FIELD__searchstr
public void setSearchstr(CArrayFacade<java.lang.Byte> searchstr) throws java.io.IOException
String to search for in displayed names of F-Curves, or NlaTracks/GP Layers/etc.
java.io.IOException
__DNA__FIELD__searchstr
public int getFilterflag() throws java.io.IOException
Flags to use for filtering data.
java.io.IOException
__DNA__FIELD__filterflag
public void setFilterflag(int filterflag) throws java.io.IOException
Flags to use for filtering data.
java.io.IOException
__DNA__FIELD__filterflag
public int getFilterflag2() throws java.io.IOException
java.io.IOException
__DNA__FIELD__filterflag2
public void setFilterflag2(int filterflag2) throws java.io.IOException
java.io.IOException
__DNA__FIELD__filterflag2
public int getFlag() throws java.io.IOException
Standard flags.
java.io.IOException
__DNA__FIELD__flag
public void setFlag(int flag) throws java.io.IOException
Standard flags.
java.io.IOException
__DNA__FIELD__flag
public int getRenameIndex() throws java.io.IOException
of channel to rename - only gets set by renaming operator.
java.io.IOException
__DNA__FIELD__renameIndex
public void setRenameIndex(int renameIndex) throws java.io.IOException
of channel to rename - only gets set by renaming operator.
java.io.IOException
__DNA__FIELD__renameIndex
public CPointer<bDopeSheet> __io__addressof()