- Added auto generation of DNAClass attributes on file generation - Regenerated all files
126 lines
4.8 KiB
C#
126 lines
4.8 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")]
|
|
public class SpaceText {
|
|
[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, "Text", "*text", 280)]
|
|
public Text ptr_text;
|
|
[DNAFieldAttribute(7, "int", "top", 4)]
|
|
public int top;
|
|
[DNAFieldAttribute(8, "int", "left", 4)]
|
|
public int left;
|
|
[DNAFieldAttribute(9, "char", "_pad1[4]", 1)]
|
|
public char[] _pad1 = new System.Char[4];
|
|
[DNAFieldAttribute(10, "short", "flags", 2)]
|
|
public short flags;
|
|
[DNAFieldAttribute(11, "short", "lheight", 2)]
|
|
public short lheight;
|
|
[DNAFieldAttribute(12, "int", "tabnumber", 4)]
|
|
public int tabnumber;
|
|
[DNAFieldAttribute(13, "char", "wordwrap", 1)]
|
|
public char wordwrap;
|
|
[DNAFieldAttribute(14, "char", "doplugins", 1)]
|
|
public char doplugins;
|
|
[DNAFieldAttribute(15, "char", "showlinenrs", 1)]
|
|
public char showlinenrs;
|
|
[DNAFieldAttribute(16, "char", "showsyntax", 1)]
|
|
public char showsyntax;
|
|
[DNAFieldAttribute(17, "char", "line_hlight", 1)]
|
|
public char line_hlight;
|
|
[DNAFieldAttribute(18, "char", "overwrite", 1)]
|
|
public char overwrite;
|
|
[DNAFieldAttribute(19, "char", "live_edit", 1)]
|
|
public char live_edit;
|
|
[DNAFieldAttribute(20, "char", "_pad2[1]", 1)]
|
|
public char[] _pad2 = new System.Char[1];
|
|
[DNAFieldAttribute(21, "char", "findstr[256]", 1)]
|
|
public char[] findstr = new System.Char[256];
|
|
[DNAFieldAttribute(22, "char", "replacestr[256]", 1)]
|
|
public char[] replacestr = new System.Char[256];
|
|
[DNAFieldAttribute(23, "short", "margin_column", 2)]
|
|
public short margin_column;
|
|
[DNAFieldAttribute(24, "char", "_pad3[2]", 1)]
|
|
public char[] _pad3 = new System.Char[2];
|
|
[DNAFieldAttribute(25, "SpaceText_Runtime", "*runtime", 0)]
|
|
public SpaceText_Runtime ptr_runtime;
|
|
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;
|
|
}
|
|
}
|
|
}
|