123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354 |
- function AssetImageLayersHeaderRow::onAdd(%this)
- {
- %this.imageBox = new GuiControl()
- {
- HorizSizing="width";
- VertSizing="height";
- Position="20 0";
- Extent="200 25";
- Text = "Layer Image";
- vAlign = "Bottom";
- };
- ThemeManager.setProfile(%this.imageBox, "LabelProfile");
- %this.add(%this.imageBox);
- %this.offsetXBox = new GuiControl()
- {
- HorizSizing="width";
- VertSizing="height";
- Position="224 0";
- Extent="80 25";
- Text = "X";
- Align = "Center";
- vAlign = "Bottom";
- };
- ThemeManager.setProfile(%this.offsetXBox, "LabelProfile");
- %this.add(%this.offsetXBox);
- %this.offsetYBox = new GuiControl()
- {
- HorizSizing="width";
- VertSizing="height";
- Position="308 0";
- Extent="80 25";
- Text = "Y";
- Align = "Center";
- vAlign = "Bottom";
- };
- ThemeManager.setProfile(%this.offsetYBox, "LabelProfile");
- %this.add(%this.offsetYBox);
- %this.colorBox = new GuiControl()
- {
- HorizSizing="width";
- VertSizing="height";
- Position="392 0";
- Extent="164 25";
- Text = "Color";
- Align = "Center";
- vAlign = "Bottom";
- };
- ThemeManager.setProfile(%this.colorBox, "LabelProfile");
- %this.add(%this.colorBox);
- }
|