The C library for build user interfaces
LCUI is a library written in C for building graphical user interfaces. Its goal is to explore and practice new ways of developing user interfaces, characterized by its small size, ease of use, and provision of convenient development tools to help developers quickly create desktop applications with graphical user interfaces.
LC originates from the initials of the author's name. The library was initially designed to help the author develop small projects and gain development experience. However, the author did not gain a competitive advantage in the job market, which is crowded with C/C++ experts, and thus had to work in web front-end development. As a result, LCUI now leans towards integrating technologies from the web front-end domain.
- Cross-platform: Supports Windows and Linux.
- Fully custom-drawn components: Ensures consistent appearance and behavior of components across platforms.
- DPI awareness: Automatically scales the UI on high-resolution screens to maintain a clear display.
- Built-in CSS engine: Enables the use of CSS for defining UI styles and layouts, making it easier for developers with web development experience to get started.
- Modern development tools: Includes tools that allow you to build user interfaces using TypeScript with JSX syntax, the React library, and other web frontend technologies.
You can get an overview of the development experience for LCUI applications from the following image:
- Component Development in React-like Style: Writing UI configuration files using TypeScript. With the combined advantages of TypeScript, JSX syntax, and the LCUI React library, you can succinctly describe interface structure, resource dependencies, component states, data binding, and event binding.
- Various Stylesheet Writing Methods: Tailwind CSS, CSS Modules, Sass, and global CSS.
- File-system based router: Organize application pages in directory form, with each page corresponding to a directory. The path of the directory serves as the route for that page. With the built-in application router, you can easily implement page switching and navigation without manual route configuration.
- User-friendly and Modern Icon Library: Icons are sourced from the fluentui-system-icons library, with partial customization to fit LCUI's characteristics, offering similar usage patterns.
- Command-line Development Tool: Run the
lcui build
command to preprocess configuration files within the app directory, then generate corresponding C source code and resource files.
Over time LCUI has been built up to be based on various libraries:
- lib/yutil: Utility library providing common data structures and functions.
- lib/pandagl: PandaGL (Panda Graphics Library), a graphics library offering font management, text layout, image processing, and rendering capabilities.
- lib/css: CSS parser and selector engine, enabling CSS parsing and selection functionalities.
- lib/ptk: Platform Toolkit library offering cross-platform unified system-related APIs, including message loops, window management, timers, worker threads, and input methods.
- lib/thread: Thread library offering cross-platform multithreading capabilities.
- lib/ui: Core UI library that manages UI components, event queues, style computation, drawing, and other essential UI functionalities.
- lib/ui-xml: XML parsing library enabling the creation of UI components from XML file content.
- lib/ui-cursor: Cursor library providing cursor rendering capabilities.
- lib/ui-server: UI server that maps UI components to system windows.
- lib/ui-router: Router manager offering routing and navigation functionalities.
- lib/ui-widgets: Predefined basic component library offering essential UI components such as text, buttons, and scrollbars.
- lib/worker: Worker thread library providing simple communication and management for worker threads.
Before you begin, you need to install the following software on your computer:
- Git: Version control tool used to download the source code of the example project.
- XMake: Build tool used to build the project.
- Node.js: JavaScript runtime environment used to run the LCUI command-line development tool.
Then, run the following commands in a command-line window:
# Install the LCUI command-line development tool
npm install -g @lcui/cli
# Create an LCUI application project
lcui create my-lcui-app
Follow the prompts provided by the commands afterward.
- Todo List: Learn the basic concepts and usage of LCUI, as well as how to use it to build interfaces and implement state management, interface updates, and interactions.
- Rendering Fabric Animation: Rewrite the existing fabric simulation program's JavaScript source code in C language, and use the cairo graphics library for fabric rendering. Then, apply LCUI to implement fabric animation playback and interaction.
- Browser: Referencing a web browser, use LCUI to implement similar interface structure, layout, style, and multi-tab management features. Utilize LCUI's routing management functionality to implement multi-tab page state management and navigation, as well as a simple file browsing page. (This tutorial is outdated, contributions to update it are welcome)
Some features of LCUI and related projects are inspired by other open-source projects. You can refer to their documentation to understand the basic concepts and usage.
- DirectXTK: Source code reference for the step timer.
- Vue Router: Reference for the router manager. Some functionalities also reference the source code of Vue Router.
- Next.js: Reference for route definition methods.
Below are the items for potential future development:
-
LCUI
- Improve API design.
- Enhance the CSS engine to support
inherit
and!important
. - Add an SDL backend to replace the lib/ptk library.
- Adapt other open-source graphics libraries to achieve better rendering performance.
- Optimize memory usage.
- Improve performance.
-
Command-Line Tools
lcui build --watch
: Continuously monitor file changes and automatically rebuild.lcui dev-server
: Similar to webpack-dev-server, build LCUI applications as websites to allow developers to preview interfaces in the browser.- Add build caching to rebuild only the modified files.
-
React Component Library
Develop a component library for LCUI applications using TypeScript + React, inspired by some web frontend component libraries (e.g., radix, shadcn/ui), and reuse components from the LC Design library. -
Documentation
- Tutorials
- Request for Comments (RFC)
Think LCUI is slow to update? there are many ways to contribute to LCUI.
- Submit bugs and help us verify fixes as they are checked in.
- Share some interesting ideas related to GUI development in the issues page.
- Search for FIXME comments in the source code and try to fix them.
- Fund the issues that interest you on IssueHunt to attract other developers to contribute.
- Review the source code changes.
- Contribute bug fixes.
LCUI has adopted the code of conduct defined by the Contributor Covenant. This document is used across many open source communities, and we think it articulates our values well. For more, see the Code of Conduct.
Is this a browser engine? Or a development library like Electron that integrates a browser environment?
No, you can think of it as a traditional GUI development library that incorporates some web technologies.
Why should I choose LCUI over other GUI libraries/frameworks?
It's recommended to prioritize other GUI libraries/frameworks, as LCUI currently lacks:
- A rich set of built-in components: You will need to build almost all the components in your interface from scratch, leading to higher development costs.
- Efficient graphics rendering performance: Interfaces with extensive and complex content may experience lag.
- An animation system: The lack of visual feedback affects the user interaction experience.
Given its current state, LCUI is best suited for fulfilling the author's personal needs or developing simple tools with minimal interface content and interactions.
Support development with TypeScript? If I know how to use it, why wouldn’t I just go with Electron?
Currently, TypeScript is primarily used to describe UI and resource dependencies, with only a few TypeScript features in use. You don’t need to study it in depth; in most cases, you can simply refer to example code for implementation.
If you have extensive web development experience and are willing to learn Electron, then Electron is clearly the better choice.
How about CSS support?
The following is a list of supported CSS features. Checked is supported (But does not mean full support). Unlisted properties are not supported by default.
CSS feature coverage
- at rules
-
@font-face
-
@keyframes
-
@media
-
- keywords
-
!important
-
- selectors
-
*
-
type
-
#id
-
.class
-
:hover
-
:focus
-
:active
-
:first-child
-
:last-child
-
[attr="value"]
-
:not()
-
:nth-child()
-
parent > child
-
a ~ b
-
::after
-
::before
- ...
-
- units
- px
- dp
- sp
- pt
- %
- rem
- vh
- vw
- properties
- top, right, bottom, left
- width, height
- visibility
- display
- none
- inline-block
- block
- flex
- inline-flex
- inline
- grid
- table
- table-cell
- table-row
- table-column
- ...
- position
- static
- relative
- absolute
- fixed
- box-sizing
- border-box
- content-box
- border
- border-radius
- background-color
- background-image
- background-position
- background-cover
- background
- pointer-events
- font-face
- font-family
- font-size
- font-style
- flex
- flex-shrink
- flex-grow
- flex-basis
- flex-wrap
- flex-direction
- justify-content
- flex-start
- center
- flex-end
- align-items
- flex-start
- center
- flex-end
- stretch
- float
- transition
- transform
- ...
The LCUI Project is released under the MIT License.