Implementation of Nils' UI work for updated theming, functionality and style for the editors suite

This commit is contained in:
Areloch 2023-09-08 22:44:18 -05:00
parent dc1d6e7d9d
commit 33f35d35d4
908 changed files with 15381 additions and 3065 deletions

View file

@ -17,7 +17,7 @@ $guiContent = new GuiControl(SuperTooltipDlg) {
HorizSizing = "right";
VertSizing = "bottom";
position = "216 160";
Extent = "221 134";
Extent = "300 134";
MinExtent = "8 2";
canSave = "1";
Visible = "1";
@ -30,7 +30,7 @@ $guiContent = new GuiControl(SuperTooltipDlg) {
HorizSizing = "right";
VertSizing = "bottom";
position = "5 5";
Extent = "210 14";
Extent = "290 14";
MinExtent = "8 2";
canSave = "1";
Visible = "1";

View file

@ -80,9 +80,9 @@ function GuiInspectorEntityGroup::createAddComponentList(%this)
if(!isObject("componentTooltipTheme"))
{
%theme = createsupertooltiptheme("componentTooltipTheme");
%theme.addstyle("headerstyle", "<just:left><font:arial bold:16><color:000000>");
%theme.addstyle("headertwostyle", "<font:arial bold:14><color:000000>");
%theme.addstyle("basictextstyle", "<font:arial:14><color:000000>");
%theme.addstyle("headerstyle", "<just:left><font:" @ $Gui::fontTypeRegular @ " bold:16><color:cccccc>");
%theme.addstyle("headertwostyle", "<font:" @ $Gui::fontTypeBold @ ":16><color:cccccc>");
%theme.addstyle("basictextstyle", "<font:" @ $Gui::fontTypeBold @ ":16><color:cccccc>");
%theme.setdefaultstyle("title", "headerstyle");
%theme.setdefaultstyle("paramtitle", "headertwostyle");
%theme.setdefaultstyle("param", "basictextstyle");