134 lines
5.3 KiB
C#
134 lines
5.3 KiB
C#
//------------------------------------------------------------------------------
|
|
// <auto-generated>
|
|
// This code was generated by a tool.
|
|
//
|
|
// Changes to this file may cause incorrect behavior and will be lost if
|
|
// the code is regenerated.
|
|
// </auto-generated>
|
|
//------------------------------------------------------------------------------
|
|
|
|
using System;
|
|
|
|
|
|
namespace BlendFile.DNA {
|
|
using BlendFile;
|
|
|
|
[DNAClassAttribute(929, "SpaceOops")]
|
|
public class SpaceOops {
|
|
[DNAFieldAttribute(0, "SpaceLink", "*next", 40)]
|
|
public SpaceLink ptr_next;
|
|
[DNAFieldAttribute(1, "SpaceLink", "*prev", 40)]
|
|
public SpaceLink ptr_prev;
|
|
[DNAFieldAttribute(2, "ListBase", "regionbase", 16)]
|
|
public ListBase regionbase;
|
|
[DNAFieldAttribute(3, "char", "spacetype", 1)]
|
|
public char spacetype;
|
|
[DNAFieldAttribute(4, "char", "link_flag", 1)]
|
|
public char link_flag;
|
|
[DNAFieldAttribute(5, "char", "_pad0[6]", 1)]
|
|
public char[] _pad0 = new System.Char[6];
|
|
[DNAFieldAttribute(6, "View2D", "v2d", 152)]
|
|
public View2D v2d;
|
|
[DNAFieldAttribute(7, "ListBase", "tree", 16)]
|
|
public ListBase tree;
|
|
[DNAFieldAttribute(8, "BLI_mempool", "*treestore", 0)]
|
|
public BLI_mempool ptr_treestore;
|
|
[DNAFieldAttribute(9, "char", "search_string[64]", 1)]
|
|
public char[] search_string = new System.Char[64];
|
|
[DNAFieldAttribute(10, "short", "flag", 2)]
|
|
public short flag;
|
|
[DNAFieldAttribute(11, "short", "outlinevis", 2)]
|
|
public short outlinevis;
|
|
[DNAFieldAttribute(12, "short", "lib_override_view_mode", 2)]
|
|
public short lib_override_view_mode;
|
|
[DNAFieldAttribute(13, "short", "storeflag", 2)]
|
|
public short storeflag;
|
|
[DNAFieldAttribute(14, "char", "search_flags", 1)]
|
|
public char search_flags;
|
|
[DNAFieldAttribute(15, "char", "_pad[6]", 1)]
|
|
public char[] _pad = new System.Char[6];
|
|
[DNAFieldAttribute(16, "char", "sync_select_dirty", 1)]
|
|
public char sync_select_dirty;
|
|
[DNAFieldAttribute(17, "int", "filter", 4)]
|
|
public int filter;
|
|
[DNAFieldAttribute(18, "char", "filter_state", 1)]
|
|
public char filter_state;
|
|
[DNAFieldAttribute(19, "char", "show_restrict_flags", 1)]
|
|
public char show_restrict_flags;
|
|
[DNAFieldAttribute(20, "short", "filter_id_type", 2)]
|
|
public short filter_id_type;
|
|
[DNAFieldAttribute(21, "SpaceOutliner_Runtime", "*runtime", 0)]
|
|
public SpaceOutliner_Runtime ptr_runtime;
|
|
public SpaceOops() {
|
|
this.ptr_next = default;
|
|
this.ptr_prev = default;
|
|
this.regionbase = default;
|
|
this.spacetype = default;
|
|
this.link_flag = default;
|
|
this._pad0 = default;
|
|
this.v2d = default;
|
|
this.tree = default;
|
|
this.ptr_treestore = default;
|
|
this.search_string = default;
|
|
this.flag = default;
|
|
this.outlinevis = default;
|
|
this.lib_override_view_mode = default;
|
|
this.storeflag = default;
|
|
this.search_flags = default;
|
|
this._pad = default;
|
|
this.sync_select_dirty = default;
|
|
this.filter = default;
|
|
this.filter_state = default;
|
|
this.show_restrict_flags = default;
|
|
this.filter_id_type = default;
|
|
this.ptr_runtime = default;
|
|
}
|
|
public SpaceOops(
|
|
SpaceLink ptr_next,
|
|
SpaceLink ptr_prev,
|
|
ListBase regionbase,
|
|
char spacetype,
|
|
char link_flag,
|
|
char[] _pad0,
|
|
View2D v2d,
|
|
ListBase tree,
|
|
BLI_mempool ptr_treestore,
|
|
char[] search_string,
|
|
short flag,
|
|
short outlinevis,
|
|
short lib_override_view_mode,
|
|
short storeflag,
|
|
char search_flags,
|
|
char[] _pad,
|
|
char sync_select_dirty,
|
|
int filter,
|
|
char filter_state,
|
|
char show_restrict_flags,
|
|
short filter_id_type,
|
|
SpaceOutliner_Runtime ptr_runtime) {
|
|
this.ptr_next = ptr_next;
|
|
this.ptr_prev = ptr_prev;
|
|
this.regionbase = regionbase;
|
|
this.spacetype = spacetype;
|
|
this.link_flag = link_flag;
|
|
this._pad0 = _pad0;
|
|
this.v2d = v2d;
|
|
this.tree = tree;
|
|
this.ptr_treestore = ptr_treestore;
|
|
this.search_string = search_string;
|
|
this.flag = flag;
|
|
this.outlinevis = outlinevis;
|
|
this.lib_override_view_mode = lib_override_view_mode;
|
|
this.storeflag = storeflag;
|
|
this.search_flags = search_flags;
|
|
this._pad = _pad;
|
|
this.sync_select_dirty = sync_select_dirty;
|
|
this.filter = filter;
|
|
this.filter_state = filter_state;
|
|
this.show_restrict_flags = show_restrict_flags;
|
|
this.filter_id_type = filter_id_type;
|
|
this.ptr_runtime = ptr_runtime;
|
|
}
|
|
}
|
|
}
|