Skip to content

Latest commit

 

History

History
25 lines (17 loc) · 811 Bytes

README.md

File metadata and controls

25 lines (17 loc) · 811 Bytes

raywui is a C++ library for writing widgets based gui designed especially for headless SO (like raspberry pi of without grafical desktop).

Based on top of Raygui and Raylib, this project aim to create an eco-system of C++ widget classes.

Can be used in 2 way:

  • Use DGuiApp event based login (preferred).
  • Instantiate a widget class and use Draw() method when you want to update it on screen but you need to handle app logic in classic raylib way.

Features:

  • DGuiApp to control event base and callback logic.
  • Each widget has its own class with properties stored inside.

Current widgets:

  • DGuiContainer
  • DGuiButton
  • DGuiEdit
  • DGuiLabel
  • DGuiStatusBar
  • DGuiImage
  • DGuiCheckBox

WARNING: this lib it is under development: no alpha release yet