Files
BlenderSharp/BlendFile/DNA/bTheme.cs

159 lines
6.9 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(997, "bTheme", 19320)]
public class bTheme {
[DNAFieldAttribute(0, "bTheme", "*next", "bTheme", 8, true, 0)]
public bTheme ptr_next;
[DNAFieldAttribute(1, "bTheme", "*prev", "bTheme", 8, true, 8)]
public bTheme ptr_prev;
[DNAFieldAttribute(2, "char", "name[64]", "System.Char[]", 64, false, 16)]
public char[] name = new System.Char[64];
[DNAFieldAttribute(3, "char", "filepath[1024]", "System.Char[]", 1024, false, 80)]
public char[] filepath = new System.Char[1024];
[DNAFieldAttribute(4, "ThemeUI", "tui", "ThemeUI", 976, false, 1104)]
public ThemeUI tui;
[DNAFieldAttribute(5, "ThemeSpace", "tbuts", "ThemeSpace", 936, false, 2080)]
public ThemeSpace tbuts;
[DNAFieldAttribute(6, "ThemeSpace", "tv3d", "ThemeSpace", 936, false, 3016)]
public ThemeSpace tv3d;
[DNAFieldAttribute(7, "ThemeSpace", "tfile", "ThemeSpace", 936, false, 3952)]
public ThemeSpace tfile;
[DNAFieldAttribute(8, "ThemeSpace", "tipo", "ThemeSpace", 936, false, 4888)]
public ThemeSpace tipo;
[DNAFieldAttribute(9, "ThemeSpace", "tinfo", "ThemeSpace", 936, false, 5824)]
public ThemeSpace tinfo;
[DNAFieldAttribute(10, "ThemeSpace", "tact", "ThemeSpace", 936, false, 6760)]
public ThemeSpace tact;
[DNAFieldAttribute(11, "ThemeSpace", "tnla", "ThemeSpace", 936, false, 7696)]
public ThemeSpace tnla;
[DNAFieldAttribute(12, "ThemeSpace", "tseq", "ThemeSpace", 936, false, 8632)]
public ThemeSpace tseq;
[DNAFieldAttribute(13, "ThemeSpace", "tima", "ThemeSpace", 936, false, 9568)]
public ThemeSpace tima;
[DNAFieldAttribute(14, "ThemeSpace", "text", "ThemeSpace", 936, false, 10504)]
public ThemeSpace text;
[DNAFieldAttribute(15, "ThemeSpace", "toops", "ThemeSpace", 936, false, 11440)]
public ThemeSpace toops;
[DNAFieldAttribute(16, "ThemeSpace", "tnode", "ThemeSpace", 936, false, 12376)]
public ThemeSpace tnode;
[DNAFieldAttribute(17, "ThemeSpace", "tuserpref", "ThemeSpace", 936, false, 13312)]
public ThemeSpace tuserpref;
[DNAFieldAttribute(18, "ThemeSpace", "tconsole", "ThemeSpace", 936, false, 14248)]
public ThemeSpace tconsole;
[DNAFieldAttribute(19, "ThemeSpace", "tclip", "ThemeSpace", 936, false, 15184)]
public ThemeSpace tclip;
[DNAFieldAttribute(20, "ThemeSpace", "ttopbar", "ThemeSpace", 936, false, 16120)]
public ThemeSpace ttopbar;
[DNAFieldAttribute(21, "ThemeSpace", "tstatusbar", "ThemeSpace", 936, false, 17056)]
public ThemeSpace tstatusbar;
[DNAFieldAttribute(22, "ThemeSpace", "space_spreadsheet", "ThemeSpace", 936, false, 17992)]
public ThemeSpace space_spreadsheet;
[DNAFieldAttribute(23, "ThemeWireColor", "tarm[20]", "ThemeWireColor[]", 320, false, 18928)]
public ThemeWireColor[] tarm = new ThemeWireColor[20];
[DNAFieldAttribute(24, "ThemeCollectionColor", "collection_color[8]", "ThemeCollectionColor[]", 32, false, 19248)]
public ThemeCollectionColor[] collection_color = new ThemeCollectionColor[8];
[DNAFieldAttribute(25, "ThemeStripColor", "strip_color[9]", "ThemeStripColor[]", 36, false, 19280)]
public ThemeStripColor[] strip_color = new ThemeStripColor[9];
[DNAFieldAttribute(26, "int", "active_theme_area", "int", 4, false, 19316)]
public int active_theme_area;
public bTheme() {
this.ptr_next = default;
this.ptr_prev = default;
this.name = default;
this.filepath = default;
this.tui = default;
this.tbuts = default;
this.tv3d = default;
this.tfile = default;
this.tipo = default;
this.tinfo = default;
this.tact = default;
this.tnla = default;
this.tseq = default;
this.tima = default;
this.text = default;
this.toops = default;
this.tnode = default;
this.tuserpref = default;
this.tconsole = default;
this.tclip = default;
this.ttopbar = default;
this.tstatusbar = default;
this.space_spreadsheet = default;
this.tarm = default;
this.collection_color = default;
this.strip_color = default;
this.active_theme_area = default;
}
public bTheme(
bTheme ptr_next,
bTheme ptr_prev,
char[] name,
char[] filepath,
ThemeUI tui,
ThemeSpace tbuts,
ThemeSpace tv3d,
ThemeSpace tfile,
ThemeSpace tipo,
ThemeSpace tinfo,
ThemeSpace tact,
ThemeSpace tnla,
ThemeSpace tseq,
ThemeSpace tima,
ThemeSpace text,
ThemeSpace toops,
ThemeSpace tnode,
ThemeSpace tuserpref,
ThemeSpace tconsole,
ThemeSpace tclip,
ThemeSpace ttopbar,
ThemeSpace tstatusbar,
ThemeSpace space_spreadsheet,
ThemeWireColor[] tarm,
ThemeCollectionColor[] collection_color,
ThemeStripColor[] strip_color,
int active_theme_area) {
this.ptr_next = ptr_next;
this.ptr_prev = ptr_prev;
this.name = name;
this.filepath = filepath;
this.tui = tui;
this.tbuts = tbuts;
this.tv3d = tv3d;
this.tfile = tfile;
this.tipo = tipo;
this.tinfo = tinfo;
this.tact = tact;
this.tnla = tnla;
this.tseq = tseq;
this.tima = tima;
this.text = text;
this.toops = toops;
this.tnode = tnode;
this.tuserpref = tuserpref;
this.tconsole = tconsole;
this.tclip = tclip;
this.ttopbar = ttopbar;
this.tstatusbar = tstatusbar;
this.space_spreadsheet = space_spreadsheet;
this.tarm = tarm;
this.collection_color = collection_color;
this.strip_color = strip_color;
this.active_theme_area = active_theme_area;
}
}
}