2019-08-10 21:37:10 +02:00
|
|
|
using Microsoft.Xna.Framework;
|
|
|
|
using MLEM.Font;
|
|
|
|
using MLEM.Textures;
|
|
|
|
|
|
|
|
namespace MLEM.Ui.Style {
|
|
|
|
public class UiStyle {
|
|
|
|
|
2019-08-28 18:27:17 +02:00
|
|
|
public NinePatch SelectionIndicator;
|
2019-08-10 21:37:10 +02:00
|
|
|
public NinePatch ButtonTexture;
|
|
|
|
public NinePatch ButtonHoveredTexture;
|
|
|
|
public Color ButtonHoveredColor;
|
|
|
|
public NinePatch PanelTexture;
|
|
|
|
public NinePatch TextFieldTexture;
|
|
|
|
public NinePatch TextFieldHoveredTexture;
|
|
|
|
public Color TextFieldHoveredColor;
|
2019-08-12 19:44:16 +02:00
|
|
|
public NinePatch ScrollBarBackground;
|
|
|
|
public NinePatch ScrollBarScrollerTexture;
|
2019-08-13 21:23:20 +02:00
|
|
|
public NinePatch CheckboxTexture;
|
|
|
|
public NinePatch CheckboxHoveredTexture;
|
|
|
|
public Color CheckboxHoveredColor;
|
|
|
|
public TextureRegion CheckboxCheckmark;
|
|
|
|
public NinePatch RadioTexture;
|
|
|
|
public NinePatch RadioHoveredTexture;
|
|
|
|
public Color RadioHoveredColor;
|
|
|
|
public TextureRegion RadioCheckmark;
|
2019-08-13 23:54:29 +02:00
|
|
|
public NinePatch TooltipBackground;
|
|
|
|
public Color TooltipBackgroundColor;
|
2019-08-10 21:37:10 +02:00
|
|
|
public IGenericFont Font;
|
2019-08-24 00:07:54 +02:00
|
|
|
public IGenericFont BoldFont;
|
|
|
|
public IGenericFont ItalicFont;
|
2019-08-10 21:37:10 +02:00
|
|
|
public float TextScale = 1;
|
2019-08-28 18:27:17 +02:00
|
|
|
|
2019-08-10 21:37:10 +02:00
|
|
|
}
|
|
|
|
}
|