Files
BlenderSharp/BlendFile/DNA/SpaceText.cs
2025-02-19 18:48:50 +01:00

154 lines
6.2 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(951, "SpaceText", 600)]
public class SpaceText {
[DNAFieldAttribute(0, "SpaceLink", "*next", "SpaceLink", 8, true)]
public SpaceLink ptr_next;
[DNAFieldAttribute(1, "SpaceLink", "*prev", "SpaceLink", 8, true)]
public SpaceLink ptr_prev;
[DNAFieldAttribute(2, "ListBase", "regionbase", "ListBase", 16, false)]
public ListBase regionbase;
[DNAFieldAttribute(3, "char", "spacetype", "char", 1, false)]
public char spacetype;
[DNAFieldAttribute(4, "char", "link_flag", "char", 1, false)]
public char link_flag;
[DNAFieldAttribute(5, "char", "_pad0[6]", "System.Char[]", 6, false)]
public char[] _pad0 = new System.Char[6];
[DNAFieldAttribute(6, "Text", "*text", "Text", 8, true)]
public Text ptr_text;
[DNAFieldAttribute(7, "int", "top", "int", 4, false)]
public int top;
[DNAFieldAttribute(8, "int", "left", "int", 4, false)]
public int left;
[DNAFieldAttribute(9, "char", "_pad1[4]", "System.Char[]", 4, false)]
public char[] _pad1 = new System.Char[4];
[DNAFieldAttribute(10, "short", "flags", "short", 2, false)]
public short flags;
[DNAFieldAttribute(11, "short", "lheight", "short", 2, false)]
public short lheight;
[DNAFieldAttribute(12, "int", "tabnumber", "int", 4, false)]
public int tabnumber;
[DNAFieldAttribute(13, "char", "wordwrap", "char", 1, false)]
public char wordwrap;
[DNAFieldAttribute(14, "char", "doplugins", "char", 1, false)]
public char doplugins;
[DNAFieldAttribute(15, "char", "showlinenrs", "char", 1, false)]
public char showlinenrs;
[DNAFieldAttribute(16, "char", "showsyntax", "char", 1, false)]
public char showsyntax;
[DNAFieldAttribute(17, "char", "line_hlight", "char", 1, false)]
public char line_hlight;
[DNAFieldAttribute(18, "char", "overwrite", "char", 1, false)]
public char overwrite;
[DNAFieldAttribute(19, "char", "live_edit", "char", 1, false)]
public char live_edit;
[DNAFieldAttribute(20, "char", "_pad2[1]", "System.Char[]", 1, false)]
public char[] _pad2 = new System.Char[1];
[DNAFieldAttribute(21, "char", "findstr[256]", "System.Char[]", 256, false)]
public char[] findstr = new System.Char[256];
[DNAFieldAttribute(22, "char", "replacestr[256]", "System.Char[]", 256, false)]
public char[] replacestr = new System.Char[256];
[DNAFieldAttribute(23, "short", "margin_column", "short", 2, false)]
public short margin_column;
[DNAFieldAttribute(24, "char", "_pad3[2]", "System.Char[]", 2, false)]
public char[] _pad3 = new System.Char[2];
[DNAFieldAttribute(25, "SpaceText_Runtime", "*runtime", "SpaceText_Runtime", 8, true)]
public SpaceText_Runtime ptr_runtime;
public SpaceText() {
this.ptr_next = default;
this.ptr_prev = default;
this.regionbase = default;
this.spacetype = default;
this.link_flag = default;
this._pad0 = default;
this.ptr_text = default;
this.top = default;
this.left = default;
this._pad1 = default;
this.flags = default;
this.lheight = default;
this.tabnumber = default;
this.wordwrap = default;
this.doplugins = default;
this.showlinenrs = default;
this.showsyntax = default;
this.line_hlight = default;
this.overwrite = default;
this.live_edit = default;
this._pad2 = default;
this.findstr = default;
this.replacestr = default;
this.margin_column = default;
this._pad3 = default;
this.ptr_runtime = default;
}
public SpaceText(
SpaceLink ptr_next,
SpaceLink ptr_prev,
ListBase regionbase,
char spacetype,
char link_flag,
char[] _pad0,
Text ptr_text,
int top,
int left,
char[] _pad1,
short flags,
short lheight,
int tabnumber,
char wordwrap,
char doplugins,
char showlinenrs,
char showsyntax,
char line_hlight,
char overwrite,
char live_edit,
char[] _pad2,
char[] findstr,
char[] replacestr,
short margin_column,
char[] _pad3,
SpaceText_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.ptr_text = ptr_text;
this.top = top;
this.left = left;
this._pad1 = _pad1;
this.flags = flags;
this.lheight = lheight;
this.tabnumber = tabnumber;
this.wordwrap = wordwrap;
this.doplugins = doplugins;
this.showlinenrs = showlinenrs;
this.showsyntax = showsyntax;
this.line_hlight = line_hlight;
this.overwrite = overwrite;
this.live_edit = live_edit;
this._pad2 = _pad2;
this.findstr = findstr;
this.replacestr = replacestr;
this.margin_column = margin_column;
this._pad3 = _pad3;
this.ptr_runtime = ptr_runtime;
}
}
}