Зеркало. Это набор инструментов графического интерфейса пользователя с минимальным состоянием и немедленным режимом работы, написанный на ANSI C
Go to file
vurtun 193f53ce6b fixed horizontal popup scrollbars + added font stack to zr_style 2015-11-24 14:36:28 +01:00
demo fixed zr_spacing 2015-11-23 12:52:21 +01:00
example changed window header API for less draw calls 2015-11-22 20:03:42 +01:00
LICENSE renamed LICENSE 2015-09-22 19:30:24 +02:00
Readme.md updated Readme example 2015-11-22 20:19:32 +01:00
stb_rect_pack.h added optional font handling 2015-09-15 18:13:43 +02:00
stb_truetype.h added optional font handling 2015-09-15 18:13:43 +02:00
zahnrad.c fixed horizontal popup scrollbars + added font stack to zr_style 2015-11-24 14:36:28 +01:00
zahnrad.h fixed horizontal popup scrollbars + added font stack to zr_style 2015-11-24 14:36:28 +01:00

Readme.md

Zahnrad

Coverity Status

This is a minimal state immediate mode graphical user interface toolkit written in ANSI C. It was designed as a simple embeddable user interface for 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 render backends it only focuses on the actual UI.

Features

  • Immediate mode graphical user interface toolkit
  • Written in C89 (ANSI C)
  • Small codebase (~8kLOC)
  • Focus on portability, efficiency, simplicity and minimal internal state
  • No global or hidden state
  • No direct dependencies
  • Configurable style and colors
  • UTF-8 support

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 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
  • stb_rect_pack.h (optional)
  • stb_truetype.h (optional)

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 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.

screenshot demo node

Example

enum {EASY, HARD};
zr_size option = EASY;
zr_float value = 0.6f;

struct zr_context context;
zr_begin(&context, &window, "Show");
{
    zr_layout_row_static(&context, 30, 80, 1);
    if (zr_button_text(&context, "button", ZR_BUTTON_DEFAULT)) {
        /* event handling */
    }
    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);
}
zr_end(&context, &window);

example

License

(The zlib License)