Arma Reforger Explorer 1.7.0.54
Arma Reforger Code Explorer by Zeroy - Thanks to MisterOutofTime
Loading...
Searching...
No Matches
UIWidget.c
Go to the documentation of this file.
1/*
2===========================================
3Do not modify, this script is generated
4===========================================
5*/
6
11
12sealed class UIWidget: Widget
13{
14 proto external void SetStyle(string styleName);
15 proto external void SetDefaultStyle();
16 /*
17 float GetTextSize() const
18 SCR_METHOD("float GetTextSize()")
19 {
20 return m_FontPreset.m_Properties.m_fHeight;
21 }
22
23 void SetTextSize(float fontHeight)
24 SCR_METHOD("void SetTextSize(float fontHeight)")
25 {
26 m_FontPreset.m_Properties.m_fHeight = fontHeight;
27 }
28 */
29 proto external void SetTextColor(int color);
30 proto external int GetTextColor();
35 proto external void SetTextSharpness(float sharpness);
39 proto external float GetTextSharpness();
44 proto external void SetTextOutline(int outlineSize, int argb = 0xFF000000);
45 proto external int GetTextOutlineSize();
46 proto external int GetTextOutlineColor();
53 proto external void SetTextShadow(int shadowSize, int shadowARGB = 0xFF000000, float shadowOpacity = 1.0, float shadowOffsetX = 0.0, float shadowOffsetY = 0.0);
54 proto external int GetTextShadowSize();
58 proto external int GetTextShadowColor();
62 [Obsolete("Shadow opacity is redundant")]
63 proto external float GetTextShadowOpacity();
64 proto external float GetTextShadowOffsetX();
65 proto external float GetTextShadowOffsetY();
70 proto external void SetTextItalic(bool italic);
74 proto external bool GetTextItalic();
79 proto external void SetTextBold(bool bold);
83 proto external bool GetTextBold();
84}
85