2020-03-31 19:32:36 +00:00
|
|
|
void GuiEnable(void)
|
|
|
|
void GuiDisable(void)
|
|
|
|
void GuiLock(void)
|
|
|
|
void GuiUnlock(void)
|
2021-10-02 17:03:57 +00:00
|
|
|
bool GuiIsLocked(void)
|
2020-03-31 19:32:36 +00:00
|
|
|
void GuiFade(float alpha)
|
|
|
|
void GuiSetState(int state)
|
|
|
|
int GuiGetState(void)
|
|
|
|
void GuiSetFont(Font font)
|
|
|
|
Font GuiGetFont(void)
|
|
|
|
void GuiSetStyle(int control, int property, int value)
|
|
|
|
int GuiGetStyle(int control, int property)
|
|
|
|
bool GuiWindowBox(Rectangle bounds, const char *title)
|
|
|
|
void GuiGroupBox(Rectangle bounds, const char *text)
|
|
|
|
void GuiLine(Rectangle bounds, const char *text)
|
2022-03-12 13:06:03 +00:00
|
|
|
void GuiPanel(Rectangle bounds, const char *text)
|
|
|
|
Rectangle GuiScrollPanel(Rectangle bounds, const char *text, Rectangle content, Vector2 *scroll)
|
2020-03-31 19:32:36 +00:00
|
|
|
void GuiLabel(Rectangle bounds, const char *text)
|
|
|
|
bool GuiButton(Rectangle bounds, const char *text)
|
|
|
|
bool GuiLabelButton(Rectangle bounds, const char *text)
|
|
|
|
bool GuiToggle(Rectangle bounds, const char *text, bool active)
|
|
|
|
int GuiToggleGroup(Rectangle bounds, const char *text, int active)
|
|
|
|
bool GuiCheckBox(Rectangle bounds, const char *text, bool checked)
|
|
|
|
int GuiComboBox(Rectangle bounds, const char *text, int active)
|
|
|
|
bool GuiDropdownBox(Rectangle bounds, const char *text, int *active, bool editMode)
|
|
|
|
bool GuiSpinner(Rectangle bounds, const char *text, int *value, int minValue, int maxValue, bool editMode)
|
|
|
|
bool GuiValueBox(Rectangle bounds, const char *text, int *value, int minValue, int maxValue, bool editMode)
|
|
|
|
bool GuiTextBox(Rectangle bounds, char *text, int textSize, bool editMode)
|
|
|
|
bool GuiTextBoxMulti(Rectangle bounds, char *text, int textSize, bool editMode)
|
|
|
|
float GuiSlider(Rectangle bounds, const char *textLeft, const char *textRight, float value, float minValue, float maxValue)
|
|
|
|
float GuiSliderBar(Rectangle bounds, const char *textLeft, const char *textRight, float value, float minValue, float maxValue)
|
|
|
|
float GuiProgressBar(Rectangle bounds, const char *textLeft, const char *textRight, float value, float minValue, float maxValue)
|
|
|
|
void GuiStatusBar(Rectangle bounds, const char *text)
|
|
|
|
void GuiDummyRec(Rectangle bounds, const char *text)
|
2022-03-12 13:06:03 +00:00
|
|
|
Vector2 GuiGrid(Rectangle bounds, const char *text, float spacing, int subdivs)
|
2020-03-31 19:32:36 +00:00
|
|
|
int GuiListView(Rectangle bounds, const char *text, int *scrollIndex, int active)
|
|
|
|
int GuiListViewEx(Rectangle bounds, const char **text, int count, int *focus, int *scrollIndex, int active)
|
|
|
|
int GuiMessageBox(Rectangle bounds, const char *title, const char *message, const char *buttons)
|
2022-03-12 13:06:03 +00:00
|
|
|
int GuiTextInputBox(Rectangle bounds, const char *title, const char *message, const char *buttons, char *text, int textMaxSize, int *secretViewActive)
|
|
|
|
Color GuiColorPicker(Rectangle bounds, const char *text, Color color)
|
|
|
|
Color GuiColorPanel(Rectangle bounds, const char *text, Color color)
|
|
|
|
float GuiColorBarAlpha(Rectangle bounds, const char *text, float alpha)
|
|
|
|
float GuiColorBarHue(Rectangle bounds, const char *text, float value)
|
2020-03-31 19:32:36 +00:00
|
|
|
void GuiLoadStyle(const char *fileName)
|
|
|
|
void GuiLoadStyleDefault(void)
|
|
|
|
const char *GuiIconText(int iconId, const char *text)
|
2021-12-29 12:21:32 +00:00
|
|
|
void GuiDrawIcon(int iconId, int posX, int posY, int pixelSize, Color color)
|
2020-03-31 19:32:36 +00:00
|
|
|
unsigned int *GuiGetIcons(void)
|
|
|
|
unsigned int *GuiGetIconData(int iconId)
|
|
|
|
void GuiSetIconData(int iconId, unsigned int *data)
|
|
|
|
void GuiSetIconPixel(int iconId, int x, int y)
|
|
|
|
void GuiClearIconPixel(int iconId, int x, int y)
|
2021-05-01 18:21:00 +00:00
|
|
|
bool GuiCheckIconPixel(int iconId, int x, int y)
|