You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: README.md
+218-61
Original file line number
Diff line number
Diff line change
@@ -19,18 +19,18 @@
19
19
20
20
## Table of contents
21
21
22
-
-[Table of contents](#Table-of-contents)
23
-
-[Introduction](#Introduction)
24
-
-[Features](#Features)
25
-
-[Missing features](#Missing-features)
26
-
-[Related Projects](#Related-Projects)
27
-
-[Documentation](#Documentation)
28
-
-[Building](#Building)
29
-
-[Prerequisites](#Prerequisites)
30
-
-[Building On Windows](#Building-On-Windows)
31
-
-[Bootstrap](#Bootstrap)
32
-
-[Contribution](#Contribution)
33
-
-[License](#License)
22
+
-[Introduction](#introduction)
23
+
-[Features](#features)
24
+
-[Missing features](#missing-features)
25
+
-[Related projects](#related-projects)
26
+
-[Design reference](#design-reference)
27
+
-[Quick start](#quick-start)
28
+
-[Windows](#windows)
29
+
-[Ubuntu](#ubuntu)
30
+
-[Contribution](#contribution)
31
+
-[Documentation](#documentation)
32
+
-[FAQ](#faq)
33
+
-[License](#license)
34
34
35
35
## Introduction
36
36
@@ -40,16 +40,11 @@ LCUI is a freely available software library for building user interfaces. It is
40
40
41
41
### Features
42
42
43
-
-**Written in C:** Suitable for small applications written primarily in C.
44
-
-**Trad language binding:**[Trad](https://github.com/lc-soft/trad) is a language designed for LCUI, it makes it easier to create interactive UIs.
43
+
-**Written in C:** Suitable for small applications written primarily in C.language designed for LCUI, it makes it easier to create interactive UIs.
45
44
-**Cross platform:** Support for Windows and Linux, you can write Windows Desktop apps and Universal Windows Platform apps, as well as Linux Desktop apps.
46
-
-**XML parsing:** Support for using XML markup language to describe the structure of the graphical user interface.
47
-
-**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](https://github.com/lc-soft/LCUI/blob/53e268251a53bf371ca7aaa7862ec69fb4d0015a/src/gui/css_parser.c#L550) for more details.
48
-
-**HTML-Like layout:** Support the **block**, **inline-block** and simple **flex** layout, If you have web page development experience, then LCUI will be familiar.
45
+
-**XML + CSS:** Support the use of XML and CSS to describe the GUI layout and style, saving interface development time and maintenance costs.
49
46
-**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.
50
-
-**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.
51
-
-**Font management:** Support for loading multiple font files and using fonts of different families, weights and styles.
52
-
-**Image processing:** Provide image read interfaces: support for reading jpg, png and bmp format images.
47
+
-**Simple image reading:** Provide jpg, png and bmp image read APIs.
53
48
-**Touch:** Supports multi-touch, but currently only on Windows platforms.
54
49
55
50
### Missing features
@@ -62,77 +57,239 @@ What is "simple"? It means fewer features, for example:
62
57
- Cannot select text and copy it on user interface.
63
58
- Cannot use CTRL+C to copy content, and cannot use CTRL+V to paste content to input boxes.
64
59
- Cannot use the Input Method Engine to input non-ASCII characters, like Chinese, Japanese, etc.
65
-
- Rounded corner borders are not supported in this version.
66
60
- Layout system is simple. Grid and table layouts are not supported.
67
61
- No English documentation, it is hard to use.
68
62
69
-
If you can solve any of the above problems, you can provide technical support to the author by submitting an issue or pull request.
63
+
There are many similar open source projects(E.g: [SDL](https://github.com/SDL-mirror/SDL), [imgui](https://github.com/ocornut/imgui)) that can be referenced today, most of the missing features in LCUI can find relevant implementations from these projects, so the development cost of LCUI is also reduced a lot. One of the reasons for open source this project is to conduct technical exchanges. If you have research experience in similar projects, please consider providing improvements to this project.
70
64
71
-
### Related Projects
65
+
### Related projects
72
66
73
67
Want to know what LCUI can do? You can view the following projects:
74
68
75
-
-[Trad](https://github.com/lc-soft/trad) - A lightweight and C based language for building user interfaces. it is a language designed for LCUI, with this language you can easily implement data binding and event binding in the UI.
76
-
-[LCUI.css](https://github.com/lc-ui/lcui.css) - A UI component framework for building LCUI application.
77
-
-[LCFinder](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.
69
+
-[LC Design](https://github.com/lc-ui/lc-design) - A UI component framework for building LCUI application.
70
+
-[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.
71
+
-[Trad](https://github.com/lc-soft/trad) - A language based on JavaScript syntax that can be compiled into C, it pre-built LCUI bindings, with its language features and JSX syntax support to easily create interactive graphical interfaces based on LCUI.
# Install C/C++ dependencies for x64 CPU architecture
98
+
lcpkg install --arch x64
83
99
84
-
The English version of the documentation is not available, please check the files in the [test](test) directory and the source code of the related projects above.
100
+
# Run the app with debug mode
101
+
lcpkg run start --mode debug
102
+
```
85
103
86
-
## Building
104
+
Want to write an LCUI application from scratch? you can use [lcpkg](https://github.com/lc-soft/lcpkg) to quick install LCUI in your project directory:
87
105
88
-
### Prerequisites
106
+
```shell
107
+
# Initialize the lcpkg configuration file to tell lcpkg about your project
108
+
lcpkg init
89
109
90
-
If you want to build full-featured LCUI, we suggest you install the following
91
-
dependent libraries:
110
+
# Download and install the compiled LCUI library from GitHub
After that, [Visual Studio](https://visualstudio.microsoft.com/) to open the `build/windows/LCUI.sln` file, and then build LCUI.
105
123
106
-
LCUI is mainly developed in the Windows environment, currently only Visual Studio solution file are available, you can use [Visual Studio](https://visualstudio.microsoft.com/) to open the file `build/windows/LCUI.sln` and build LCUI.
124
+
### Ubuntu
107
125
108
-
Installing a dependency library in windows is troublesome, but you can choose to use [vcpkg](https://github.com/Microsoft/vcpkg) to solve it:
To bootstrap the build you need to run `./configure` (in the root of the source tree).
136
+
# Generate automake configure script
137
+
./autogen.sh
115
138
116
-
In the simplest case you would run:
139
+
# Check the build environment and configure automake scripts
140
+
./configure
117
141
118
-
git clone https://github.com/lc-soft/LCUI.git
119
-
cd LCUI
120
-
./autogen.sh
121
-
./configure
122
-
make
123
-
make install
142
+
# Build
143
+
make
124
144
125
-
If you want to experience the demo, please run:
145
+
# If you wnat install LCUI
146
+
sudo make install
126
147
127
-
cd test
128
-
make
129
-
./helloworld
148
+
# Go into test directory
149
+
cdtest
130
150
131
-
If you want to use custom building options, please read the [INSTALL](INSTALL) file for more details.
151
+
# Run helloworld application
152
+
./helloworld
153
+
```
154
+
155
+
> **Note:** If you want to customize the compiler, compile flags, install location, and other configuration items, read the [INSTALL](INSTALL) file.
132
156
133
157
## Contribution
134
158
135
-
Please read through our [contributing guidelines](/.github/CONTRIBUTING.md). Included are directions for opening issues, coding standards, and notes on development.
159
+
There are many ways to [contribute](CONTRIBUTING.md) to LCUI.
160
+
161
+
-[Submit bugs](https://github.com/lc-soft/LCUI/issues) and help us verify fixes as they are checked in.
162
+
- Fund to you interested issue on [IssueHunt](https://issuehunt.io/r/lc-soft/LCUI) to attract other developers to contribute.
163
+
- Support this project on [OpenCollective](https://opencollective.com/LCUI).
164
+
- Review the [source code changes](https://github.com/lc-soft/LCUI/pulls).
165
+
-[Contribute bug fixes](CONTRIBUTING.md).
166
+
167
+
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).
168
+
169
+
## Documentation
170
+
171
+
- Tutorial: [https://docs.lcui.lc-soft.io/](https://docs.lcui.lc-soft.io/) (Chinese version only)
172
+
- Changelog: [docs/CHANGES.md](docs/CHANGES.md)
173
+
174
+
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.
175
+
176
+
## FAQ
177
+
178
+
1. Why develop it?
179
+
180
+
- To explore and experiment new GUI development way
181
+
- Get more good job and make more money
182
+
- Leave a mark on the world
183
+
- Pass the time
184
+
185
+
1. Is this a browser kernel? Or a development library like Electron that integrates the browser environment?
186
+
187
+
No, you can think of it as a traditional GUI development library that applied some Web technologies.
188
+
189
+
1. Why do I choose the LCUI instead of Electron?
190
+
191
+
In contrast to fully functional Electron, small file size and low memory usage doesn't matter, except for technical research and communication, there's no reason to use LCUI.
192
+
193
+
1. Is it the same as writing a web page?
194
+
195
+
Not exactly, there are the following differences need to be noted:
196
+
197
+
- The interface description file format is XML, slightly different from HTML.
198
+
- You need to implement all the features of your application in C code, which is much less development efficiency than JavaScript.
199
+
- No `<script>` tag, you can't embed JavaScript or C code like HTML.
200
+
- The widget is the basic layout element, not the text, and there is no `inline` display type.
201
+
- The scrollbar is a widget, and the `overflow: scroll;` style doesn't show scrollbars automatically, you need to create it and specify the container and scroll layer.
202
+
- All text is rendered by the TextView widget, which has a display type of `block` instead of `inline`.
203
+
- The widget does not overflow the bounding box of the parent widget, and the effect is similar to the applied style: `overflow: hidden;`.
204
+
- An absolutely positioned widget is always relative to its parent widget, not the first non-statically positioned widget of the parent.
205
+
- There are no tools like [Chrome Devtools](https://developers.google.com/web/tools/chrome-devtools) to debug graphical interfaces, you need to rely on your own imagination and development experience to verify that the bug is from your code or LCUI.。
206
+
207
+
1. How about CSS support?
208
+
209
+
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.
LCUI 主要是在 Windows 系统环境下开发的,目前只提供 Visual Studio 的解决方案文件(.sln),你可以使用 [Visual Studio](https://visualstudio.microsoft.com/) 打开 `/build/windows/LCUI.sln` 文件,然后编译生成 LCUI。如果你用的是其它 IDE,请尝试按该 IDE 的方式创建项目并将源文件添加至项目内,然后编译。
139
+
# 如果需要安装的话
140
+
sudo make install
125
141
126
-
上述的依赖库中除 Windows 系统用不到的 libx11 库外,都可以在 Windows 系统环境下编译生成,具体的编译方法你可以在教程中找到。如果你觉得编译这些依赖库很麻烦,可以使用 [vcpkg](https://github.com/Microsoft/vcpkg) 来安装它们,只需在命令行里输入如下命令:
0 commit comments