public class wmKeyConfigPref extends CFacade
This is similar to addon-preferences, however unlike add-ons key-config's aren't saved to disk.
wmKeyConfigPref
is written to DNA, #wmKeyConfigPrefType_Runtime has the RNA type.
Modifier and Type | Field and Description |
---|---|
static long[] |
__DNA__FIELD__idname
Field descriptor (offset) for struct member 'idname'.
|
static long[] |
__DNA__FIELD__next
Field descriptor (offset) for struct member 'next'.
|
static long[] |
__DNA__FIELD__prev
Field descriptor (offset) for struct member 'prev'.
|
static long[] |
__DNA__FIELD__prop
Field descriptor (offset) for struct member 'prop'.
|
static int |
__DNA__SDNA_INDEX
This is the sdna index of the struct wmKeyConfigPref.
|
__io__address, __io__arch_index, __io__block, __io__blockTable, __io__pointersize
Modifier | Constructor and Description |
---|---|
|
wmKeyConfigPref(long __address,
Block __block,
BlockTable __blockTable) |
protected |
wmKeyConfigPref(wmKeyConfigPref that) |
Modifier and Type | Method and Description |
---|---|
CPointer<wmKeyConfigPref> |
__io__addressof()
Instantiates a pointer on this instance.
|
CArrayFacade<java.lang.Byte> |
getIdname()
Get method for struct member 'idname'.
|
CPointer<wmKeyConfigPref> |
getNext()
Get method for struct member 'next'.
|
CPointer<wmKeyConfigPref> |
getPrev()
Get method for struct member 'prev'.
|
CPointer<IDProperty> |
getProp()
Get method for struct member 'prop'.
|
void |
setIdname(CArrayFacade<java.lang.Byte> idname)
Set method for struct member 'idname'.
|
void |
setNext(CPointer<wmKeyConfigPref> next)
Set method for struct member 'next'.
|
void |
setPrev(CPointer<wmKeyConfigPref> prev)
Set method for struct member 'prev'.
|
void |
setProp(CPointer<IDProperty> prop)
Set method for struct member 'prop'.
|
__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 wmKeyConfigPref.
org.cakelab.blender.io.dna.internal.StructDNA}
,
org.cakelab.blender.io.block.BlockTable#allocate}
,
Constant Field Valuespublic static final long[] __DNA__FIELD__next
This is how you get a reference on the corresponding field in the struct:
wmKeyConfigPref wmkeyconfigpref = ...; CPointer<Object> p = wmkeyconfigpref.__dna__addressof(wmKeyConfigPref.__DNA__FIELD__next); CPointer<CPointer<wmKeyConfigPref>> p_next = p.cast(new Class[]{CPointer.class, wmKeyConfigPref.class});
public static final long[] __DNA__FIELD__prev
This is how you get a reference on the corresponding field in the struct:
wmKeyConfigPref wmkeyconfigpref = ...; CPointer<Object> p = wmkeyconfigpref.__dna__addressof(wmKeyConfigPref.__DNA__FIELD__prev); CPointer<CPointer<wmKeyConfigPref>> p_prev = p.cast(new Class[]{CPointer.class, wmKeyConfigPref.class});
public static final long[] __DNA__FIELD__idname
Unique name.
This is how you get a reference on the corresponding field in the struct:
wmKeyConfigPref wmkeyconfigpref = ...; CPointer<Object> p = wmkeyconfigpref.__dna__addressof(wmKeyConfigPref.__DNA__FIELD__idname); CPointer<CArrayFacade<Byte>> p_idname = p.cast(new Class[]{CArrayFacade.class, Byte.class});
public static final long[] __DNA__FIELD__prop
This is how you get a reference on the corresponding field in the struct:
wmKeyConfigPref wmkeyconfigpref = ...; CPointer<Object> p = wmkeyconfigpref.__dna__addressof(wmKeyConfigPref.__DNA__FIELD__prop); CPointer<CPointer<IDProperty>> p_prop = p.cast(new Class[]{CPointer.class, IDProperty.class});
public wmKeyConfigPref(long __address, Block __block, BlockTable __blockTable)
protected wmKeyConfigPref(wmKeyConfigPref that)
public CPointer<wmKeyConfigPref> getNext() throws java.io.IOException
java.io.IOException
__DNA__FIELD__next
public void setNext(CPointer<wmKeyConfigPref> next) throws java.io.IOException
java.io.IOException
__DNA__FIELD__next
public CPointer<wmKeyConfigPref> getPrev() throws java.io.IOException
java.io.IOException
__DNA__FIELD__prev
public void setPrev(CPointer<wmKeyConfigPref> prev) throws java.io.IOException
java.io.IOException
__DNA__FIELD__prev
public CArrayFacade<java.lang.Byte> getIdname() throws java.io.IOException
Unique name.
java.io.IOException
__DNA__FIELD__idname
public void setIdname(CArrayFacade<java.lang.Byte> idname) throws java.io.IOException
Unique name.
java.io.IOException
__DNA__FIELD__idname
public CPointer<IDProperty> getProp() throws java.io.IOException
java.io.IOException
__DNA__FIELD__prop
public void setProp(CPointer<IDProperty> prop) throws java.io.IOException
java.io.IOException
__DNA__FIELD__prop
public CPointer<wmKeyConfigPref> __io__addressof()