Class wmKeyMapDiffItem


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

    Class Documentation

    Blender Source Code

    Used instead of wmKeyMapItem for diff keymaps.

    • Field Detail

      • __DNA__SDNA_INDEX

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

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

        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:

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

        Metadata

        • Field: 'next'
        • Signature: 'wmKeyMapDiffItem*'
        • 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:

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

        Metadata

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

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

        Pointer Arithmetics

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

         wmKeyMapDiffItem wmkeymapdiffitem = ...;
         CPointer<Object> p = wmkeymapdiffitem.__dna__addressof(wmKeyMapDiffItem.__DNA__FIELD__remove_item);
         CPointer<CPointer<wmKeyMapItem>> p_remove_item = p.cast(new Class[]{CPointer.class, wmKeyMapItem.class});
         

        Metadata

        • Field: 'remove_item'
        • Signature: 'wmKeyMapItem*'
        • Actual Size (32bit/64bit): 4/8
      • __DNA__FIELD__add_item

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

        Pointer Arithmetics

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

         wmKeyMapDiffItem wmkeymapdiffitem = ...;
         CPointer<Object> p = wmkeymapdiffitem.__dna__addressof(wmKeyMapDiffItem.__DNA__FIELD__add_item);
         CPointer<CPointer<wmKeyMapItem>> p_add_item = p.cast(new Class[]{CPointer.class, wmKeyMapItem.class});
         

        Metadata

        • Field: 'add_item'
        • Signature: 'wmKeyMapItem*'
        • Actual Size (32bit/64bit): 4/8
    • Constructor Detail

      • wmKeyMapDiffItem

        public wmKeyMapDiffItem​(long __address,
                                Block __block,
                                BlockTable __blockTable)