idea4good/guilite

✔️The smallest header-only GUI library(4 KLOC) for all platforms

View on GitHub ↗Jump to charts ↓

Summary Information

Updated 12 minutes ago
Added to GitGenius on September 8th, 2026
Created on September 15th, 2017
Open Issues & Pull Requests: 18 (+0)
GitHub issues: Enabled
Number of forks: 834
Total Stargazers: 7,768 (+0)
Total Subscribers: 245 (+0)

Repository Insights (GitGenius)

Median issue/PR response: 459.5 days
Mean response time: 459.5 days
90th percentile: 459.5 days
Tracked items: 1

Most active contributors

Sign in to see contributor activity.

Related repositories by overlapping contributors

No overlapping-contributor repos identified yet.

Charts & Analytics

Fetching additional details & charts...

Issue Activity (beta)

Open issues: 2
New in 7 days: 0
Closed in 7 days: 0
Avg open age: 861 days
Stale 30+ days: 2
Stale 90+ days: 2

Recent activity

Opened in 7 days: 0
Closed in 7 days: 0
Comments in 7 days: 0
Events in 7 days: 0

Top labels

No label distribution available yet.

Most active issues this week

No issue events were indexed in the last 7 days.

Detailed Description

Guilite is a header-only GUI library for C++ that runs on all platforms from desktop operating systems to microcontrollers without an operating system.

The library solves the problem of building graphical interfaces on resource-constrained embedded systems and microcontrollers where traditional GUI frameworks are too large. It achieves this through an extremely compact codebase of approximately four thousand lines of C++, with zero external dependencies. The approach uses only basic C++ features like classes and virtual functions, keeping the implementation straightforward while maintaining high rendering performance even on devices with minimal hardware resources.

Guilite suits projects targeting embedded systems, IoT devices, and microcontrollers where memory and storage are severely limited, as well as desktop applications where a lightweight alternative to heavier frameworks is preferred. The tool works on Windows, Linux, macOS, iOS, Android, and bare-metal microcontrollers, and can integrate alongside existing frameworks like Qt, MFC, Winforms, and Cocoa rather than replacing them. It supports multiple programming languages including C, C++, Swift, Java, Javascript, C#, and Golang. The library includes features for multi-language support with UTF-8, video playback, real-time code telemetry, and web deployment options. A toolkit for building font and image resources and a WYSIWYG layout previewer are available separately.

The project maintains active documentation covering core concepts, widget layout, message dispatching, and resource building. Development follows a structured learning path from building the library through modifying demo code and widget implementations to building custom frameworks. The codebase uses only fundamental C++ constructs intentionally chosen to keep the implementation accessible to developers with basic language knowledge.