Files
BlenderSharp/BlendFile/DNA/ScrArea.cs
2025-03-04 18:48:04 +01:00

149 lines
6.0 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(863, "ScrArea", 184)]
public class ScrArea {
[DNAFieldAttribute(8, "ScrArea", 0, "*next", "ScrArea", true, 0)]
public ScrArea next;
[DNAFieldAttribute(8, "ScrArea", 1, "*prev", "ScrArea", true, 8)]
public ScrArea prev;
[DNAFieldAttribute(8, "ScrVert", 2, "*v1", "ScrVert", true, 16)]
public ScrVert v1;
[DNAFieldAttribute(8, "ScrVert", 3, "*v2", "ScrVert", true, 24)]
public ScrVert v2;
[DNAFieldAttribute(8, "ScrVert", 4, "*v3", "ScrVert", true, 32)]
public ScrVert v3;
[DNAFieldAttribute(8, "ScrVert", 5, "*v4", "ScrVert", true, 40)]
public ScrVert v4;
[DNAFieldAttribute(8, "bScreen", 6, "*full", "bScreen", true, 48)]
public bScreen full;
[DNAFieldAttribute(16, "rcti", 7, "totrct", "rcti", false, 56)]
public rcti totrct;
[DNAFieldAttribute(1, "char", 8, "spacetype", "char", false, 72)]
public char spacetype;
[DNAFieldAttribute(1, "char", 9, "butspacetype", "char", false, 73)]
public char butspacetype;
[DNAFieldAttribute(2, "short", 10, "butspacetype_subtype", "short", false, 74)]
public short butspacetype_subtype;
[DNAFieldAttribute(2, "short", 11, "winx", "short", false, 76)]
public short winx;
[DNAFieldAttribute(2, "short", 12, "winy", "short", false, 78)]
public short winy;
[DNAFieldAttribute(1, "char", 13, "headertype", "char", false, 80)]
public char headertype;
[DNAFieldAttribute(1, "char", 14, "do_refresh", "char", false, 81)]
public char do_refresh;
[DNAFieldAttribute(2, "short", 15, "flag", "short", false, 82)]
public short flag;
[DNAFieldAttribute(2, "short", 16, "region_active_win", "short", false, 84)]
public short region_active_win;
[DNAFieldAttribute(2, "char", 17, "_pad[2]", "System.Char[]", false, 86)]
public char[] _pad = new System.Char[2];
[DNAFieldAttribute(8, "SpaceType", 18, "*type", "SpaceType", true, 88)]
public SpaceType type;
[DNAFieldAttribute(8, "ScrGlobalAreaData", 19, "*global", "ScrGlobalAreaData", true, 96)]
public ScrGlobalAreaData global;
[DNAFieldAttribute(16, "ListBase", 20, "spacedata", "ListBase", false, 104)]
public ListBase spacedata;
[DNAFieldAttribute(16, "ListBase", 21, "regionbase", "ListBase", false, 120)]
public ListBase regionbase;
[DNAFieldAttribute(16, "ListBase", 22, "handlers", "ListBase", false, 136)]
public ListBase handlers;
[DNAFieldAttribute(16, "ListBase", 23, "actionzones", "ListBase", false, 152)]
public ListBase actionzones;
[DNAFieldAttribute(16, "ScrArea_Runtime", 24, "runtime", "ScrArea_Runtime", false, 168)]
public ScrArea_Runtime runtime;
public ScrArea() {
this.next = default;
this.prev = default;
this.v1 = default;
this.v2 = default;
this.v3 = default;
this.v4 = default;
this.full = default;
this.totrct = default;
this.spacetype = default;
this.butspacetype = default;
this.butspacetype_subtype = default;
this.winx = default;
this.winy = default;
this.headertype = default;
this.do_refresh = default;
this.flag = default;
this.region_active_win = default;
this._pad = default;
this.type = default;
this.global = default;
this.spacedata = default;
this.regionbase = default;
this.handlers = default;
this.actionzones = default;
this.runtime = default;
}
public ScrArea(
ScrArea next,
ScrArea prev,
ScrVert v1,
ScrVert v2,
ScrVert v3,
ScrVert v4,
bScreen full,
rcti totrct,
char spacetype,
char butspacetype,
short butspacetype_subtype,
short winx,
short winy,
char headertype,
char do_refresh,
short flag,
short region_active_win,
char[] _pad,
SpaceType type,
ScrGlobalAreaData global,
ListBase spacedata,
ListBase regionbase,
ListBase handlers,
ListBase actionzones,
ScrArea_Runtime runtime) {
this.next = next;
this.prev = prev;
this.v1 = v1;
this.v2 = v2;
this.v3 = v3;
this.v4 = v4;
this.full = full;
this.totrct = totrct;
this.spacetype = spacetype;
this.butspacetype = butspacetype;
this.butspacetype_subtype = butspacetype_subtype;
this.winx = winx;
this.winy = winy;
this.headertype = headertype;
this.do_refresh = do_refresh;
this.flag = flag;
this.region_active_win = region_active_win;
this._pad = _pad;
this.type = type;
this.global = global;
this.spacedata = spacedata;
this.regionbase = regionbase;
this.handlers = handlers;
this.actionzones = actionzones;
this.runtime = runtime;
}
}
}