Skip to content
/ LCUI Public
forked from lc-soft/LCUI

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

License

Notifications You must be signed in to change notification settings

spacefan/LCUI

 
 

Repository files navigation

LCUI

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

Build Status Coverage Status License Github Release Github All Releases Repo size Code size

Table of contents

Introduction

LCUI is a freely available software library for building user interfaces. It is written in C, support the use XML and CSS to describe the graphical interface, you can use it to build simple desktop apps.

中文版说明文档

Features

  • written in C: Suitable for applications that are smaller and are primarily written in C.
  • 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 parsing: Support for using XML markup language to describe the structure of the graphical user interface.
  • CSS parsing: Support for using CSS language to describing the presentation of the graphical user interface, But the range of CSS support and browser is different, it is a simplified version, cannot support all the features of CSS, like transition, transform, animation, @media, @key-frames etc, you can read the file css_parser.c for more details.
  • HTML-Like layout: Support the block, inline-block and simple flex layout, If you have web page development experience, then the use of LCUI will be easier to get started.
  • Flexible: Support for adapting the interface to screens of different pixel densities by setting global scaling, And also support for using screen density related sp and dp units to describe position and size of the elements.
  • Text rendering: Support for the text to set the global font, line height, horizontal alignment, and also support to set the color, background color, bold, italic for some text blocks separately.
  • Font management: Support for loading multiple font files, and support to use font of different family, weight and style.
  • Image processing: Provide image read interfaces, support for reading jpg, png and bmp format images.
  • Touch: Support multi-touch, but currently only support Windows system.

Defects

LCUI is a personal project, its main purpose is to allow author to easily develop simple GUI applications, what is "simple"? it means fewer features, for example:

  • No hardware acceleration, graphics rendering inefficient.
  • Cannot select text and copy it on user interface.
  • Cannot use CTRL+C to copy content, and cannot use CTRL+V to paste content to input box.
  • Cannot use the Input Method Engine to input non-ASCII characters, like Chinese, Japanese, etc.
  • rounded corners border is not supported on this version.
  • Layout system is simple, grid and table layout is not supported.
  • No English documents, it is hard to use.

If you have the above problem solving experience, you can provide technical support to author by submitting issue or pull request.

Screenshots

Hello, World!

LCUI.css

LCFinder

Documentation

API reference documentation has not yet been prepared, you can refer to the header files, source code, and tests.

Building

Bootstrap

To bootstrap the build you need to run ./configure (in the root of the source tree).

In the simplest case you would run:

git clone https://github.com/lc-soft/LCUI.git
cd LCUI
./autogen.sh
./configure
make
make install

If you want to experience the effect of demo, please run:

cd test
make
./hellowrold

If you want to custom building options, please read the INSTALL file for more details.

Prerequisites

If you want to build full-featured LCUI, we suggest you install the following dependent libraries:

  • libpng — PNG image compression library
  • libjpeg — JPEG image compression library
  • libxml2 — The XML C parser and toolkit
  • libx11 — X11 client-side library
  • freetype — Font engine

If you system is Ubuntu, you can run following command to install dependencies:

apt-get install libpng-dev libjpeg-dev libxml2-dev libfreetype6-dev libx11-dev

Building On Windows

LCUI is mainly develop in the Windows environment, you can use VisualStudio to open file build/windows/LCUI.sln and compile LCUI.

Contribution

Please read through our contributing guidelines. Included are directions for opening issues, coding standards, and notes on development.

License

The LCUI Project is released under the MIT License.

Backers

Support us with a monthly donation and help us continue our activities. [Become a backer]

Sponsors

Become a sponsor and get your logo on our README on Github with a link to your site. [Become a sponsor]

About

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

Resources

License

Code of conduct

Stars

Watchers

Forks

Packages

No packages published

Languages

  • C 89.8%
  • C++ 6.5%
  • M4 2.5%
  • Makefile 0.6%
  • CSS 0.4%
  • Objective-C 0.1%
  • Shell 0.1%