Nuklear/Readme.md

75 lines
2.9 KiB
Markdown
Raw Normal View History

2015-09-09 20:33:32 +03:00
# Zahnrad
2015-07-25 23:16:35 +03:00
[![Coverity Status](https://scan.coverity.com/projects/5863/badge.svg)](https://scan.coverity.com/projects/5863)
2015-11-19 23:02:36 +03:00
This is a minimal state immediate mode graphical user interface toolkit
2015-08-27 20:25:13 +03:00
written in ANSI C. It was designed as a simple embeddable user interface for
2015-09-17 18:31:43 +03:00
application and does not have any direct dependencies. It does not have
a default renderbackend, os window and input handling but instead provides a very modular
library approach by providing a simple input state storage for input and draw
commands describing primitive shapes as output. So instead of providing a
layered library that tries to abstract over a number of platform and
2015-11-19 23:02:36 +03:00
render backends it only focuses on the actual UI.
2015-03-11 16:00:59 +03:00
2015-03-14 19:05:30 +03:00
## Features
2015-04-16 17:20:00 +03:00
- Immediate mode graphical user interface toolkit
2015-03-14 19:05:30 +03:00
- Written in C89 (ANSI C)
2015-09-15 19:13:43 +03:00
- Small codebase (~8kLOC)
2015-05-17 15:39:02 +03:00
- Focus on portability, efficiency, simplicity and minimal internal state
- No global or hidden state
2015-09-15 19:13:43 +03:00
- No direct dependencies
2015-05-11 13:45:22 +03:00
- Configurable style and colors
2015-04-30 17:12:21 +03:00
- UTF-8 support
2015-03-24 15:08:42 +03:00
2015-11-19 23:02:36 +03:00
## Optional
- vertex buffer output
- font handling
## Building
The library is self-contained within four different files that only have to be
copied and compiled into your application. Files zahnrad.c and zahnrad.h make up
2015-09-17 18:31:43 +03:00
the core of the library, while stb_rect_pack.h and stb_truetype.h are
for a optional font handling implementation and can be removed if not needed.
- zahnrad.c
- zahnrad.h
2015-11-19 23:02:36 +03:00
- stb_rect_pack.h (optional)
- stb_truetype.h (optional)
2015-09-17 18:35:45 +03:00
There are no dependencies or a particular building process required. You just have
to compile the .c file and #include zahnrad.h into your project. To actually
2015-09-17 18:31:43 +03:00
run you have to provide the input state, configuration style and memory
for draw commands to the library. After the GUI was executed all draw commands
have to be either executed or optionally converted into a vertex buffer to
draw the GUI.
2015-05-09 16:22:23 +03:00
## Gallery
2015-11-19 23:02:36 +03:00
![demo](https://cloud.githubusercontent.com/assets/8057201/11282359/3325e3c6-8eff-11e5-86cb-cf02b0596087.png)
2015-09-19 18:59:10 +03:00
![node](https://cloud.githubusercontent.com/assets/8057201/9976995/e81ac04a-5ef7-11e5-872b-acd54fbeee03.gif)
2015-05-09 16:22:23 +03:00
2015-04-25 17:44:43 +03:00
## Example
```c
enum {EASY, HARD};
zr_size option = EASY;
2015-09-30 11:19:19 +03:00
zr_float value = 0.6f;
2015-06-28 11:09:53 +03:00
2015-11-19 23:02:36 +03:00
struct zr_context context;
zr_begin(&context, &window);
{
zr_header(&context, "Show", ZR_CLOSEABLE, 0, ZR_HEADER_LEFT);
zr_layout_row_static(&context, 30, 80, 1);
if (zr_button_text(&context, "button", ZR_BUTTON_DEFAULT)) {
/* event handling */
2015-04-25 17:44:43 +03:00
}
2015-11-19 23:02:36 +03:00
zr_layout_row_dynamic(&context, 30, 2);
if (zr_option(&context, "easy", option == EASY)) option = EASY;
if (zr_option(&context, "hard", option == HARD)) option = HARD;
zr_label(&context, "Volume:", ZR_TEXT_LEFT);
zr_slider_float(&context, 0, &value, 1.0f, 0.1f);
zr_layout_row_end(&context);
2015-04-25 17:44:43 +03:00
}
2015-11-19 23:02:36 +03:00
zr_end(&context, &window);
2015-04-25 17:44:43 +03:00
```
2015-09-30 11:23:45 +03:00
![example](https://cloud.githubusercontent.com/assets/8057201/10187981/584ecd68-675c-11e5-897c-822ef534a876.png)
2015-04-25 17:44:43 +03:00
2015-03-03 19:24:02 +03:00
# License
(The zlib License)