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

114 lines
4.7 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(988, "uiStyle", 232)]
public class uiStyle {
[DNAFieldAttribute(8, "uiStyle", 0, "*next", "uiStyle", true, 0)]
public uiStyle next;
[DNAFieldAttribute(8, "uiStyle", 1, "*prev", "uiStyle", true, 8)]
public uiStyle prev;
[DNAFieldAttribute(64, "char", 2, "name[64]", "System.Char[]", false, 16)]
public char[] name = new System.Char[64];
[DNAFieldAttribute(32, "uiFontStyle", 3, "paneltitle", "uiFontStyle", false, 80)]
public uiFontStyle paneltitle;
[DNAFieldAttribute(32, "uiFontStyle", 4, "grouplabel", "uiFontStyle", false, 112)]
public uiFontStyle grouplabel;
[DNAFieldAttribute(32, "uiFontStyle", 5, "widget", "uiFontStyle", false, 144)]
public uiFontStyle widget;
[DNAFieldAttribute(32, "uiFontStyle", 6, "tooltip", "uiFontStyle", false, 176)]
public uiFontStyle tooltip;
[DNAFieldAttribute(4, "float", 7, "panelzoom", "float", false, 208)]
public float panelzoom;
[DNAFieldAttribute(2, "short", 8, "minlabelchars", "short", false, 212)]
public short minlabelchars;
[DNAFieldAttribute(2, "short", 9, "minwidgetchars", "short", false, 214)]
public short minwidgetchars;
[DNAFieldAttribute(2, "short", 10, "columnspace", "short", false, 216)]
public short columnspace;
[DNAFieldAttribute(2, "short", 11, "templatespace", "short", false, 218)]
public short templatespace;
[DNAFieldAttribute(2, "short", 12, "boxspace", "short", false, 220)]
public short boxspace;
[DNAFieldAttribute(2, "short", 13, "buttonspacex", "short", false, 222)]
public short buttonspacex;
[DNAFieldAttribute(2, "short", 14, "buttonspacey", "short", false, 224)]
public short buttonspacey;
[DNAFieldAttribute(2, "short", 15, "panelspace", "short", false, 226)]
public short panelspace;
[DNAFieldAttribute(2, "short", 16, "panelouter", "short", false, 228)]
public short panelouter;
[DNAFieldAttribute(2, "char", 17, "_pad0[2]", "System.Char[]", false, 230)]
public char[] _pad0 = new System.Char[2];
public uiStyle() {
this.next = default;
this.prev = default;
this.name = default;
this.paneltitle = default;
this.grouplabel = default;
this.widget = default;
this.tooltip = default;
this.panelzoom = default;
this.minlabelchars = default;
this.minwidgetchars = default;
this.columnspace = default;
this.templatespace = default;
this.boxspace = default;
this.buttonspacex = default;
this.buttonspacey = default;
this.panelspace = default;
this.panelouter = default;
this._pad0 = default;
}
public uiStyle(
uiStyle next,
uiStyle prev,
char[] name,
uiFontStyle paneltitle,
uiFontStyle grouplabel,
uiFontStyle widget,
uiFontStyle tooltip,
float panelzoom,
short minlabelchars,
short minwidgetchars,
short columnspace,
short templatespace,
short boxspace,
short buttonspacex,
short buttonspacey,
short panelspace,
short panelouter,
char[] _pad0) {
this.next = next;
this.prev = prev;
this.name = name;
this.paneltitle = paneltitle;
this.grouplabel = grouplabel;
this.widget = widget;
this.tooltip = tooltip;
this.panelzoom = panelzoom;
this.minlabelchars = minlabelchars;
this.minwidgetchars = minwidgetchars;
this.columnspace = columnspace;
this.templatespace = templatespace;
this.boxspace = boxspace;
this.buttonspacex = buttonspacex;
this.buttonspacey = buttonspacey;
this.panelspace = panelspace;
this.panelouter = panelouter;
this._pad0 = _pad0;
}
}
}