Files
cimgui/README.md
2015-06-28 13:03:35 +02:00

1.3 KiB

cimgui Build Status

![sample](https://raw.github.com/extrawurst/cimgui/master/Screen Shot 2015-04-09.png) new menus api

This is a thin c-api wrapper for the excellent C++ intermediate gui imgui. Most of the functions have wrapper counterparts now, missing stuff is added on a as-needed basis (PR welcome). This library is intended as a intermediate layer to be able to use imgui from other languages that can interface with C (like D - see D-binding)

Notes:

  • currently this wrapper is based on version 1.41 of imgui
  • does not compile with pure C compiler yet (for writing bindings in languages that are able to use C-ABI it is enough though, see D-bindings)

usage

  • clone
  • make using makefile on linux/osx (linux makefile not tested)
  • use whatever method is in ImGui c++ namespace in the original imgui.h by prepending ig_ (most of the time)
  • methods have the same parameter list and return values (where possible)