LCUI
文件大小: unknow
源码售价: 5 个金币 积分规则     积分充值
资源说明:A small C library for building user interfaces with C, XML and CSS.

LCUI

A small C library for building user interfaces with C, XML and CSS.

GitHub Actions License Github Release Github All Releases Repo size Code size

## Table of contents - [Table of contents](#table-of-contents) - [Introduction](#introduction) - [Features](#features) - [Screenshots](#screenshots) - [Related projects](#related-projects) - [Design references](#design-references) - [Quick start](#quick-start) - [Use LCUI CLI](#use-lcui-cli) - [Manual compilation and installation](#manual-compilation-and-installation) - [Windows](#windows) - [Ubuntu](#ubuntu) - [Contribution](#contribution) - [Documentation](#documentation) - [FAQ](#faq) - [License](#license) ## Introduction LCUI (LC's UI Library) is a small C library for building user interfaces. [中文版说明文档](README.zh-cn.md) ### Features - **Written in C:** Suitable for small applications written primarily in C.language designed for LCUI, it makes it easier to create interactive UIs. - **Cross platform:** Support for Windows and Linux, you can write Windows Desktop apps and Universal Windows Platform apps, as well as Linux Desktop apps. - **XML + CSS:** Includes XML and CSS parsers, you can use XML and CSS to describe interface structure and style. - **Web-like development experience:** Since the design and implementation of LCUI's functions, including layout, CSS, and renderer, are mostly referenced from MDN documents and some popular web front-end development libraries, its development experience and interface effects will have some similarities to web pages. If you already have experience writing web pages with HTML and CSS, it will be easier to get started. - **Flexible:** Support for adapting the interface to screens of different pixel densities by setting global scaling. Support for using screen density related sp and dp units to describe position and size of the elements. ### Screenshots
Hello App LC Finder
LCUI Router App LC Design
### Related projects Want to know what LCUI can do? You can view the following projects: - [LCUI CLI](https://github.com/lc-ui/lcui-cli) - Command line interface for rapid LCUI development. - [LCUI Router](https://github.com/lc-soft/lcui-router) - The official router for LCUI. It provides a similar development experience to the [Vue Router](https://github.com/vuejs/vue-router) and make building multiple views applications with LCUI a breeze. - [LC Design](https://github.com/lc-ui/lc-design) - A UI component framework for building LCUI application. - [LC Finder](https://github.com/lc-soft/LC-Finder) - An image manager, it uses most of the features of LCUI, and you can use it as a reference to evaluate whether LCUI's performance and development complexity meets your needs. - [Trad](https://github.com/lc-soft/trad) - A language based on JavaScript syntax that can be compiled into C, it preset LCUI bindings, provides [React](https://reactjs.org/) like development experience, makes it painless to create interactive UIs based on LCUI. - [LCUI Quick Start](https://github.com/lc-ui/lcui-quick-start) - A minimal LCUI application. - [LCUI Router App](https://github.com/lc-ui/lcui-router-app) - A very simple browser-like application to show the LCUI and LCUI Router features. - [LC Design App](https://github.com/lc-ui/lc-design-app) - A minimal LCUI application for preview LC Design component library. ### Design references - [SDL](https://github.com/SDL-mirror/SDL/tree/master/src/video/x11) — X11 driver code reference - [FreeType](https://www.freetype.org/freetype2/docs/design/design-3.html#section-1) — Data structure naming style reference - [LevelDB](https://github.com/google/leveldb/blob/master/include/leveldb/c.h) — Function naming style reference - [jQuery](https://jquery.com/) — Widget operation method naming style reference - [MDN](https://developer.mozilla.org/zh-CN/docs/Web/CSS) — CSS standard reference ## Quick start ### Use LCUI CLI LCUI CLI is a command line tool, you need to install [Node.js](https://nodejs.org/) before using it, and then run the following command to quickly experience it: ```bash # Install lcui-cli and lcpkg npm install -g @lcui/cli lcpkg # Create an LCUI project named myapp lcui create myapp # Go into project directory cd myapp # set up the development environment for this project lcui setup # Build project lcui build # run project lcui run ``` ### Manual compilation and installation #### Windows 1. Open CMD window, and run following command in the LCUI source directory to install the dependency libraries: ```bash lcpkg install # If you want compile for x64 CPU architecture lcpkg install --arch x64 # If you want compile for Universal Windows Platform (UWP) lcpkg install --platform uwp lcpkg install --arch x64 --platform uwp ``` 1. Rename `config.win32.h.in` in the include directory to `config.h`. 1. Open the `build/windows/LCUI.sln` file with [Visual Studio](https://visualstudio.microsoft.com/), and then build LCUI. #### Ubuntu ```bash # Install the dependencies sudo apt-get install libpng-dev libjpeg-dev libxml2-dev libfreetype6-dev libx11-dev # Clone this repository git clone https://github.com/lc-soft/LCUI.git # Go into the repository cd LCUI # Generate automake configure script ./autogen.sh # Check the build environment and configure automake scripts ./configure # Build make # If you want to install LCUI sudo make install # Go into test directory cd test # Run helloworld application ./helloworld ``` > **Note:** If you want to customize the compiler, compile flags, install location, and other configuration items, read the [INSTALL](INSTALL) file. ## Contribution Think LCUI is slow to update? there are many ways to [contribute](.github/CONTRIBUTING.md) to LCUI. - [Submit bugs](https://github.com/lc-soft/LCUI/issues) and help us verify fixes as they are checked in. - Share some interesting ideas related to GUI development in the [issues page](https://github.com/lc-soft/LCUI/issues). - [Search for FIXME comments](https://github.com/lc-soft/LCUI/search?l=C&q=FIXME) in the source code and try to fix them. - Fund the issues that interest you on [IssueHunt](https://issuehunt.io/r/lc-soft/LCUI) to attract other developers to contribute. - Review the [source code changes](https://github.com/lc-soft/LCUI/pulls). - [Contribute bug fixes](CONTRIBUTING.md). 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](CODE_OF_CONDUCT.md). ## Documentation - Tutorial: [https://docs.lcui.lc-soft.io/](https://docs.lcui.lc-soft.io/) (Chinese version only) - Changelog: [docs/CHANGES.md](docs/CHANGES.md) The English version of the documentation is not available, because the author does not have time to write the English version, please read the files in the [test](test) directory and related projects to learn how to use LCUI. ## FAQ 1. **Why develop it?** - Explore and experiment new GUI development way - Let other developers share about how to write better code - Make it easier for me to find better jobs to make more money - Pass the time 1. **Is this a browser kernel? Or a development library like Electron that integrates the browser environment?** No, you can think of it as a traditional GUI development library that applied some Web technologies. 1. **What do I need to pay attention to if I'm going to use it?** We recommend that your project meet the following requirements: - The user interface is simple and does not require advanced features such as tables, animations, and transformations. - The code design is reasonable, and the core function code and UI logic code are independent of each other. Even if you find that the requirements are not met after using LCUI, you can easily migrate to other GUI libraries. 1. **Why do I choose the LCUI instead of Electron?** In contrast to fully functional Electron, these features of LCUI, such as small binary file size and low memory usage, are not worth mentioning, except for technical research and share, you have no reason to use LCUI. 1. **Is it the same as writing a web page?** Not exactly, there are the following differences need to be noted: - The interface description file format is XML, slightly different from HTML. - You need to implement all the features of your application in C code, which is much less development efficiency than JavaScript. - No `
本源码包内暂不包含可直接显示的源代码文件,请下载源码包。