2016-04-20 01:44:11 +03:00
|
|
|
[![Build Status](https://travis-ci.org/vurtun/nuklear.png)](https://travis-ci.org/vurtun/nuklear)
|
2016-04-11 02:34:59 +03:00
|
|
|
# Nuklear
|
2015-11-19 23:02:36 +03:00
|
|
|
This is a minimal state immediate mode graphical user interface toolkit
|
2016-04-11 02:34:59 +03:00
|
|
|
written in ANSI C and licensed under public domain. It was designed as a simple
|
|
|
|
embeddable user interface for application and does not have any dependencies,
|
2015-12-11 02:04:17 +03:00
|
|
|
a default renderbackend or OS window and input handling but instead provides a very modular
|
|
|
|
library approach by using simple input state for input and draw
|
2015-09-17 18:31:43 +03:00
|
|
|
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
|
2016-04-11 02:34:59 +03:00
|
|
|
- Single header library
|
2015-03-14 19:05:30 +03:00
|
|
|
- Written in C89 (ANSI C)
|
2016-04-11 02:34:59 +03:00
|
|
|
- Small codebase (~15kLOC)
|
2016-01-26 16:52:00 +03:00
|
|
|
- Focus on portability, efficiency and simplicity
|
2016-04-11 02:34:59 +03:00
|
|
|
- No dependencies (not even the standard library if not wanted)
|
2016-03-26 18:05:19 +03:00
|
|
|
- Fully skinnable and customizable
|
2016-04-11 02:34:59 +03:00
|
|
|
- Low memory footprint with total memory control if needed or wanted
|
2015-04-30 17:12:21 +03:00
|
|
|
- UTF-8 support
|
2016-04-11 02:34:59 +03:00
|
|
|
- No global or hidden state
|
2016-04-19 11:23:33 +03:00
|
|
|
- Customizable library modules (you can compile and use only what you need)
|
2016-04-11 02:34:59 +03:00
|
|
|
- Optional font baker and vertex buffer output
|
2015-11-19 23:02:36 +03:00
|
|
|
|
|
|
|
## Building
|
2016-04-11 02:34:59 +03:00
|
|
|
This library is self contained in one single header file and can be used either
|
|
|
|
in header only mode or in implementation mode. The header only mode is used
|
|
|
|
by default when included and allows including this header in other headers
|
|
|
|
and does not contain the actual implementation.
|
|
|
|
|
|
|
|
The implementation mode requires to define the preprocessor macro
|
|
|
|
`NK_IMPLEMENTATION` in *one* .c/.cpp file before #includeing this file, e.g.:
|
|
|
|
```c
|
|
|
|
#define NK_IMPLEMENTATION
|
|
|
|
#include "nuklear.h"
|
|
|
|
```
|
2015-09-17 18:31:43 +03:00
|
|
|
|
2015-05-09 16:22:23 +03:00
|
|
|
## Gallery
|
2015-12-12 13:53:15 +03:00
|
|
|
![screenshot](https://cloud.githubusercontent.com/assets/8057201/11761525/ae06f0ca-a0c6-11e5-819d-5610b25f6ef4.gif)
|
2016-03-04 22:46:45 +03:00
|
|
|
![screen](https://cloud.githubusercontent.com/assets/8057201/13538240/acd96876-e249-11e5-9547-5ac0b19667a0.png)
|
|
|
|
![screen2](https://cloud.githubusercontent.com/assets/8057201/13538243/b04acd4c-e249-11e5-8fd2-ad7744a5b446.png)
|
2015-09-19 18:59:10 +03:00
|
|
|
![node](https://cloud.githubusercontent.com/assets/8057201/9976995/e81ac04a-5ef7-11e5-872b-acd54fbeee03.gif)
|
2016-03-30 21:09:20 +03:00
|
|
|
![skinning](https://cloud.githubusercontent.com/assets/8057201/14152357/25df939e-f6b3-11e5-8587-b19e863e0d1b.png)
|
2015-05-09 16:22:23 +03:00
|
|
|
|
2015-04-25 17:44:43 +03:00
|
|
|
## Example
|
|
|
|
```c
|
2015-12-30 18:31:08 +03:00
|
|
|
/* init gui state */
|
2016-04-11 02:34:59 +03:00
|
|
|
struct nk_context ctx;
|
|
|
|
nk_init_fixed(&ctx, calloc(1, MAX_MEMORY), MAX_MEMORY, &font);
|
2015-12-30 18:31:08 +03:00
|
|
|
|
2015-08-05 13:48:01 +03:00
|
|
|
enum {EASY, HARD};
|
2015-12-30 18:31:08 +03:00
|
|
|
int op = EASY;
|
2015-12-01 12:50:12 +03:00
|
|
|
float value = 0.6f;
|
2015-12-30 18:31:08 +03:00
|
|
|
int i = 20;
|
|
|
|
|
2016-04-11 02:34:59 +03:00
|
|
|
struct nk_panel layout;
|
|
|
|
nk_begin(&ctx, &layout, "Show", nk_rect(50, 50, 220, 220),
|
2016-04-19 11:23:33 +03:00
|
|
|
NK_WINDOW_BORDER|NK_WINDOW_MOVABLE|NK_WINDOW_CLOSABLE);
|
2016-01-04 23:34:48 +03:00
|
|
|
{
|
|
|
|
/* fixed widget pixel width */
|
2016-04-11 02:34:59 +03:00
|
|
|
nk_layout_row_static(&ctx, 30, 80, 1);
|
|
|
|
if (nk_button_text(&ctx, "button", NK_BUTTON_DEFAULT)) {
|
2016-01-04 23:34:48 +03:00
|
|
|
/* event handling */
|
2015-12-30 18:31:08 +03:00
|
|
|
}
|
2015-06-28 11:09:53 +03:00
|
|
|
|
2016-01-04 23:34:48 +03:00
|
|
|
/* fixed widget window ratio width */
|
2016-04-11 02:34:59 +03:00
|
|
|
nk_layout_row_dynamic(&ctx, 30, 2);
|
|
|
|
if (nk_option(&ctx, "easy", op == EASY)) op = EASY;
|
|
|
|
if (nk_option(&ctx, "hard", op == HARD)) op = HARD;
|
2016-01-04 23:34:48 +03:00
|
|
|
|
|
|
|
/* custom widget pixel width */
|
2016-04-11 02:34:59 +03:00
|
|
|
nk_layout_row_begin(&ctx, NK_STATIC, 30, 2);
|
2016-01-04 23:34:48 +03:00
|
|
|
{
|
2016-04-11 02:34:59 +03:00
|
|
|
nk_layout_row_push(&ctx, 50);
|
|
|
|
nk_label(&ctx, "Volume:", NK_TEXT_LEFT);
|
|
|
|
nk_layout_row_push(&ctx, 110);
|
|
|
|
nk_slider_float(&ctx, 0, &value, 1.0f, 0.1f);
|
2015-04-25 17:44:43 +03:00
|
|
|
}
|
2016-04-11 02:34:59 +03:00
|
|
|
nk_layout_row_end(&ctx);
|
2015-04-25 17:44:43 +03:00
|
|
|
}
|
2016-04-11 02:34:59 +03:00
|
|
|
nk_end(ctx);
|
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
|
|
|
|
2016-04-11 02:34:59 +03:00
|
|
|
##CREDITS:
|
|
|
|
Developed by Micha Mettke and every direct or indirect contributor to the GitHub.
|
|
|
|
|
|
|
|
|
|
|
|
Embeds stb_texedit, stb_truetype and stb_rectpack by Sean Barret (public domain)
|
|
|
|
Embeds ProggyClean.ttf font by Tristan Grimmer (MIT license).
|
|
|
|
|
|
|
|
|
|
|
|
Big thank you to Omar Cornut (ocornut@github) for his imgui library and
|
|
|
|
giving me the inspiration for this library, Casey Muratori for handmade hero
|
|
|
|
and his original immediate mode graphical user interface idea and Sean
|
2016-04-19 18:01:41 +03:00
|
|
|
Barret for his amazing single header libraries which restored my faith
|
2016-04-11 02:34:59 +03:00
|
|
|
in libraries and brought me to create some of my own.
|
|
|
|
|
|
|
|
##LICENSE:
|
|
|
|
This software is dual-licensed to the public domain and under the following
|
|
|
|
license: you are granted a perpetual, irrevocable license to copy, modify,
|
|
|
|
publish and distribute this file as you see fit.
|
|
|
|
|