Arma Reforger Explorer 1.7.0.54
Arma Reforger Code Explorer by Zeroy - Thanks to MisterOutofTime
Loading...
Searching...
No Matches
DbgUI.c
Go to the documentation of this file.
1/*
2===========================================
3Do not modify, this script is generated
4===========================================
5*/
6
11
65sealed class DbgUI
66{
67 private void DbgUI();
68 private void ~DbgUI();
69
71 static proto void DoUnitTest();
72 static proto void Text(string label);
73 static proto void SameLine();
74 static proto void SameSpot();
75 static proto void AlignLeft(int width);
76 static proto void AlignCenter(int width);
77 static proto void AlignRight(int width);
78 static proto void PlotLive(string label, int sizeX, int sizeY, float val, int timeStep = 100, int historySize = 30, int color = 0xFFFFFFFF);
79 static proto void PlotLiveClamped(string label, int sizeX, int sizeY, float val, float yMin, float yMax, int timeStep = 100, int historySize = 30, int color = 0xFFFFFFFF);
80 static proto void Check(string label, out bool checked);
81 static proto void Combo(string label, out int selection, TStringArray elems);
82 static proto void List(string label, out int selection, TStringArray elems);
83 static proto void SliderFloat(string label, out float value, float min, float max, int pxWidth = 150);
84 static proto void Spacer(int height);
85 static proto void Panel(string label, int width, int height, int color = 0xaa555555);
86 static proto bool Button(string txt, int minWidth = 0);
87 static proto void Image(string label, ResourceName imgPath, int width, int height);
88 static proto void InputText(string txt, out string value, int pxWidth = 150);
89 static proto void InputInt(string txt, out int value, int pxWidth = 150);
90 static proto void InputFloat(string txt, out float value, int pxWidth = 150);
91 static proto void BeginCleanupScope();
92 static proto void EndCleanupScope();
93 static proto void Begin(string windowTitle, float x = 0, float y = 0);
94 static proto void End();
95 static proto void PushID(void id);
96 static proto void PopID();
97}
98
array< string > TStringArray
Definition Types.c:385