Class wmKeyConfig


  • public class wmKeyConfig
    extends CFacade
    Generated facet for DNA struct type 'wmKeyConfig'.

    Class Documentation

    • Field Detail

      • __DNA__SDNA_INDEX

        public static final int __DNA__SDNA_INDEX
        This is the sdna index of the struct wmKeyConfig.

        It is required when allocating a new block to store data for wmKeyConfig.

        See Also:
        StructDNA, BlockTable, Constant Field Values
      • __DNA__FIELD__next

        public static final long[] __DNA__FIELD__next
        Field descriptor (offset) for struct member 'next'.

        Pointer Arithmetics

        This is how you get a reference on the corresponding field in the struct:

         wmKeyConfig wmkeyconfig = ...;
         CPointer<Object> p = wmkeyconfig.__dna__addressof(wmKeyConfig.__DNA__FIELD__next);
         CPointer<CPointer<wmKeyConfig>> p_next = p.cast(new Class[]{CPointer.class, wmKeyConfig.class});
         

        Metadata

        • Field: 'next'
        • Signature: 'wmKeyConfig*'
        • Actual Size (32bit/64bit): 4/8
      • __DNA__FIELD__prev

        public static final long[] __DNA__FIELD__prev
        Field descriptor (offset) for struct member 'prev'.

        Pointer Arithmetics

        This is how you get a reference on the corresponding field in the struct:

         wmKeyConfig wmkeyconfig = ...;
         CPointer<Object> p = wmkeyconfig.__dna__addressof(wmKeyConfig.__DNA__FIELD__prev);
         CPointer<CPointer<wmKeyConfig>> p_prev = p.cast(new Class[]{CPointer.class, wmKeyConfig.class});
         

        Metadata

        • Field: 'prev'
        • Signature: 'wmKeyConfig*'
        • Actual Size (32bit/64bit): 4/8
      • __DNA__FIELD__idname

        public static final long[] __DNA__FIELD__idname
        Field descriptor (offset) for struct member 'idname'.

        Field Documentation

        Blender Source Code

        Unique name.

        Pointer Arithmetics

        This is how you get a reference on the corresponding field in the struct:

         wmKeyConfig wmkeyconfig = ...;
         CPointer<Object> p = wmkeyconfig.__dna__addressof(wmKeyConfig.__DNA__FIELD__idname);
         CPointer<CArrayFacade<Byte>> p_idname = p.cast(new Class[]{CArrayFacade.class, Byte.class});
         

        Metadata

        • Field: 'idname'
        • Signature: 'char[64]'
        • Actual Size (32bit/64bit): 64/64
      • __DNA__FIELD__basename

        public static final long[] __DNA__FIELD__basename
        Field descriptor (offset) for struct member 'basename'.

        Field Documentation

        Blender Source Code

        Idname of configuration this is derives from, "" if none.

        Pointer Arithmetics

        This is how you get a reference on the corresponding field in the struct:

         wmKeyConfig wmkeyconfig = ...;
         CPointer<Object> p = wmkeyconfig.__dna__addressof(wmKeyConfig.__DNA__FIELD__basename);
         CPointer<CArrayFacade<Byte>> p_basename = p.cast(new Class[]{CArrayFacade.class, Byte.class});
         

        Metadata

        • Field: 'basename'
        • Signature: 'char[64]'
        • Actual Size (32bit/64bit): 64/64
      • __DNA__FIELD__keymaps

        public static final long[] __DNA__FIELD__keymaps
        Field descriptor (offset) for struct member 'keymaps'.

        Pointer Arithmetics

        This is how you get a reference on the corresponding field in the struct:

         wmKeyConfig wmkeyconfig = ...;
         CPointer<Object> p = wmkeyconfig.__dna__addressof(wmKeyConfig.__DNA__FIELD__keymaps);
         CPointer<ListBase> p_keymaps = p.cast(new Class[]{ListBase.class});
         

        Metadata

        • Field: 'keymaps'
        • Signature: 'ListBase'
        • Actual Size (32bit/64bit): 8/16
      • __DNA__FIELD__actkeymap

        public static final long[] __DNA__FIELD__actkeymap
        Field descriptor (offset) for struct member 'actkeymap'.

        Pointer Arithmetics

        This is how you get a reference on the corresponding field in the struct:

         wmKeyConfig wmkeyconfig = ...;
         CPointer<Object> p = wmkeyconfig.__dna__addressof(wmKeyConfig.__DNA__FIELD__actkeymap);
         CPointer<Integer> p_actkeymap = p.cast(new Class[]{Integer.class});
         

        Metadata

        • Field: 'actkeymap'
        • Signature: 'int'
        • Actual Size (32bit/64bit): 4/4
      • __DNA__FIELD__flag

        public static final long[] __DNA__FIELD__flag
        Field descriptor (offset) for struct member 'flag'.

        Pointer Arithmetics

        This is how you get a reference on the corresponding field in the struct:

         wmKeyConfig wmkeyconfig = ...;
         CPointer<Object> p = wmkeyconfig.__dna__addressof(wmKeyConfig.__DNA__FIELD__flag);
         CPointer<Short> p_flag = p.cast(new Class[]{Short.class});
         

        Metadata

        • Field: 'flag'
        • Signature: 'short'
        • Actual Size (32bit/64bit): 2/2
      • __DNA__FIELD___pad0

        public static final long[] __DNA__FIELD___pad0
        Field descriptor (offset) for struct member '_pad0'.

        Pointer Arithmetics

        This is how you get a reference on the corresponding field in the struct:

         wmKeyConfig wmkeyconfig = ...;
         CPointer<Object> p = wmkeyconfig.__dna__addressof(wmKeyConfig.__DNA__FIELD___pad0);
         CPointer<CArrayFacade<Byte>> p__pad0 = p.cast(new Class[]{CArrayFacade.class, Byte.class});
         

        Metadata

        • Field: '_pad0'
        • Signature: 'char[2]'
        • Actual Size (32bit/64bit): 2/2
    • Constructor Detail

      • wmKeyConfig

        public wmKeyConfig​(long __address,
                           Block __block,
                           BlockTable __blockTable)
      • wmKeyConfig

        protected wmKeyConfig​(wmKeyConfig that)
    • Method Detail

      • getIdname

        public CArrayFacade<java.lang.Byte> getIdname()
                                               throws java.io.IOException
        Get method for struct member 'idname'.

        Field Documentation

        Blender Source Code

        Unique name.

        Throws:
        java.io.IOException
        See Also:
        __DNA__FIELD__idname
      • setIdname

        public void setIdname​(CArrayFacade<java.lang.Byte> idname)
                       throws java.io.IOException
        Set method for struct member 'idname'.

        Field Documentation

        Blender Source Code

        Unique name.

        Throws:
        java.io.IOException
        See Also:
        __DNA__FIELD__idname
      • getBasename

        public CArrayFacade<java.lang.Byte> getBasename()
                                                 throws java.io.IOException
        Get method for struct member 'basename'.

        Field Documentation

        Blender Source Code

        Idname of configuration this is derives from, "" if none.

        Throws:
        java.io.IOException
        See Also:
        __DNA__FIELD__basename
      • setBasename

        public void setBasename​(CArrayFacade<java.lang.Byte> basename)
                         throws java.io.IOException
        Set method for struct member 'basename'.

        Field Documentation

        Blender Source Code

        Idname of configuration this is derives from, "" if none.

        Throws:
        java.io.IOException
        See Also:
        __DNA__FIELD__basename
      • getKeymaps

        public ListBase getKeymaps()
                            throws java.io.IOException
        Get method for struct member 'keymaps'.
        Throws:
        java.io.IOException
        See Also:
        __DNA__FIELD__keymaps
      • setKeymaps

        public void setKeymaps​(ListBase keymaps)
                        throws java.io.IOException
        Set method for struct member 'keymaps'.
        Throws:
        java.io.IOException
        See Also:
        __DNA__FIELD__keymaps
      • getActkeymap

        public int getActkeymap()
                         throws java.io.IOException
        Get method for struct member 'actkeymap'.
        Throws:
        java.io.IOException
        See Also:
        __DNA__FIELD__actkeymap
      • setActkeymap

        public void setActkeymap​(int actkeymap)
                          throws java.io.IOException
        Set method for struct member 'actkeymap'.
        Throws:
        java.io.IOException
        See Also:
        __DNA__FIELD__actkeymap
      • getFlag

        public short getFlag()
                      throws java.io.IOException
        Get method for struct member 'flag'.
        Throws:
        java.io.IOException
        See Also:
        __DNA__FIELD__flag
      • setFlag

        public void setFlag​(short flag)
                     throws java.io.IOException
        Set method for struct member 'flag'.
        Throws:
        java.io.IOException
        See Also:
        __DNA__FIELD__flag
      • get_pad0

        public CArrayFacade<java.lang.Byte> get_pad0()
                                              throws java.io.IOException
        Get method for struct member '_pad0'.
        Throws:
        java.io.IOException
        See Also:
        __DNA__FIELD___pad0
      • set_pad0

        public void set_pad0​(CArrayFacade<java.lang.Byte> _pad0)
                      throws java.io.IOException
        Set method for struct member '_pad0'.
        Throws:
        java.io.IOException
        See Also:
        __DNA__FIELD___pad0
      • __io__addressof

        public CPointer<wmKeyConfig> __io__addressof()
        Instantiates a pointer on this instance.