Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/pardcode/illuxui

Future Home of illuxUI, C++ GUI Library/Framework
https://github.com/pardcode/illuxui

cpp cpp-gui cpp-library cpp11 gui gui-applications gui-framework gui-library

Last synced: about 1 month ago
JSON representation

Future Home of illuxUI, C++ GUI Library/Framework

Awesome Lists containing this project

README

        

illuxUI - C++ GUI Framework
==================================
![](Media/illuxui_screen.jpg)
![CPP11](https://img.shields.io/badge/C++->=11-blue)
[![Discord channel](https://img.shields.io/discord/622797245368238082?logo=discord)](https://discord.gg/RymBzwKPyZ)
[![Patreon](https://img.shields.io/badge/Patreon-Donate-orange)](https://www.patreon.com/pardcode)
[![YouTube](https://img.shields.io/badge/YouTube-Subscribe-red)](https://www.youtube.com/channel/UCs1ssVSR49YItKE7DZ3-Jcw)
[![Facebook](https://img.shields.io/badge/Facebook-Like-blue)](https://www.facebook.com/illuxui)
[![Twitter](https://img.shields.io/badge/Twitter-Follow-lightblue)](https://twitter.com/illuxui)

**illuxUI** is a **C++ GUI Framework** that has been designed and developed to make GUI Desktop Applications.
It allows to develop potentially any kind of GUI Applications, from a simple single window Calculator
to a complex multiple dockable windows Editor (e.g. Game Engine Editor, Graphics Editor, 3D/2D Editor of various nature)

illuxUI is **not an immediate mode gui** library,
that means the events processing and the rendering of the elements inside the various windows are all handled by the
GUI System under the hood, not
directly by the user.

In this way, **the developer can focus** mainly into the making of the **GUI Layout** with the various controls
(like Button, TextBox, TreeView, ListBox and so on)
and the **handling of the events triggered by the controls** when the user acts on them
(like the click on a button, the adding of text inside a textbox and so on).

It has been designed and developed originally with the purpose to make the GUI for
the editor of the game engine called **Pard Engine** and now, after many improvements,
illuxUI can be used to build many other kinds of application.

For these reasons, **illuxUI will be soon released as a standalone framework**.

**Rendering** is accomplished by the usage of the render sub-system of Pard Engine, that has been designed to support **multiple Graphics APIs** like **OpenGL, DirectX, Metal** and so on.

### Features ###
- Multiple Windows System
- Dockable Panels System
- Many types of controls already introduced: Buttons, TextBoxes, TreeViews, ScrollBars, MenuBar, Context Menu etc.