Giter Club home page Giter Club logo

lcui's Introduction

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 and supports the use of XML and CSS to describe the graphical interface of simple desktop apps.

中文版说明文档

Features

  • Written in C: Suitable for small applications written primarily 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 a simplified version of CSS to describe the presentation of the graphical user interface. The CSS version used does not 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 LCUI will be familiar.
  • 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.
  • 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 using fonts of different families, weights and styles.
  • Image processing: Provide image read interfaces: support for reading jpg, png and bmp format images.
  • Touch: Supports multi-touch, but currently only on Windows platforms.

Missing features

LCUI is a personal project, its main purpose is to allow the author to easily develop simple GUI applications.

What is "simple"? It means fewer features, for example:

  • No hardware acceleration, graphics rendering is 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 boxes.
  • Cannot use the Input Method Engine to input non-ASCII characters, like Chinese, Japanese, etc.
  • Rounded corner borders are not supported in this version.
  • Layout system is simple. Grid and table layouts are not supported.
  • No English documentation, it is hard to use.

If you can solve any of the above problems, you can provide technical support to the author by submitting an issue or pull request.

Related Projects

Want to know what LCUI can do? You can view the following projects:

  • LCUI.css - A UI component framework for building LCUI application.
  • LCFinder - 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.

Documentation

The English version of the documentation is not available, please check the files in the test directory and the source code of the related projects above.

Building

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
  • fontconfig — Font configuration & location

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

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

Building On Windows

LCUI is mainly developed in the Windows environment, currently only Visual Studio solution file are available, you can use Visual Studio to open the file build/windows/LCUI.sln and build LCUI.

Installing a dependency library in windows is troublesome, but you can choose to use vcpkg to solve it:

./vcpkg install freetype libxml2 libjpeg-turbo libpng

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 demo, please run:

cd test
make
./hellowrold

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

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.

lcui's People

Contributors

campbellowen avatar coderobe avatar fakeguru avatar frankhb avatar gitter-badger avatar lc-soft avatar odknt avatar piamancini avatar reinforce-ii avatar

Watchers

 avatar  avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.