mirror of
https://github.com/cimgui/cimgui.git
synced 2025-08-10 20:08:31 +01:00

This called Dear ImGui by its correct name, and notes that it is an immediate mode GUI library rather than intermediate GUI library. It also uses more Markdown syntax to improve readability and correctly names the generated files. Also, it corrects the path for running the generator script.
44 lines
3.4 KiB
Markdown
44 lines
3.4 KiB
Markdown
# cimgui [](https://travis-ci.org/sonoro1234/cimgui)
|
|
|
|

|
|
|
|
This is a thin c-api wrapper programmatically generated for the excellent C++ immediate mode gui [Dear ImGui](https://github.com/ocornut/imgui).
|
|
All functions are programmatically wrapped except constructors, destructors and `ImVector`. (Unless someone find a use case for them)
|
|
Generated files are: `cimgui_auto.cpp`, `cimgui_auto.h` for C compilation. Also for helping in bindings creation, `definitions.lua` with function definition information and `structs_and_enums.lua`.
|
|
This library is intended as a intermediate layer to be able to use Dear ImGui from other languages that can interface with C (like D - see [D-binding](https://github.com/Extrawurst/DerelictImgui))
|
|
|
|
Notes:
|
|
* currently this wrapper is based on version [1.65 of Dear ImGui]
|
|
* overloaded function names try to be the most compatible with traditional cimgui names. So all naming is algorithmic except for those names that were in conflict with widely used cimgui names and were thus coded in a table (https://github.com/cimgui/cimgui/blob/master/generator/generator.lua#L41). Until the community finish with defining this table tag will be 1.62beta. Current overloaded function names can be found in (https://github.com/cimgui/cimgui/blob/master/generator/generated/overloads.txt)
|
|
|
|
# compilation
|
|
|
|
* clone
|
|
* make using makefile on linux/macOS/mingw (Or use CMake to generate project)
|
|
|
|
# auto binding generation
|
|
|
|
* update `imgui` folder to the version you desire.
|
|
* run `generator/generator.bat` (or make a .sh version and please PR) with gcc and LuaJIT or Lua5.1 on your PATH.
|
|
* as a result some files are generated: `cimgui_auto.cpp` and `cimgui_auto.h` for compiling and some lua/json files with information about the binding: `definitions.json` with function info, `structs_and_enums.json` with struct and enum info, `impl_definitions.json` with functions from the implementations info.
|
|
* build as shown in https://github.com/sonoro1234/LuaJIT-ImGui/tree/master_auto_implementations/build
|
|
* generate binding as done in https://github.com/sonoro1234/LuaJIT-ImGui/blob/master_auto_implementations/lua/build.bat
|
|
|
|
# usage
|
|
|
|
* use whatever method is in ImGui c++ namespace in the original [imgui.h](https://github.com/ocornut/imgui/blob/master/imgui.h) by prepending `ig`
|
|
* methods have the same parameter list and return values (where possible)
|
|
* functions that belong to a struct have an extra first argument with a pointer to the struct.
|
|
* where a function returns UDT (user defined type) by value some compilers complain so another function with the name `function_name_nonUDT` is generated accepting a pointer to the UDT type as the first argument. (or second argument if it is a struct function)
|
|
* also is generated `function_name_nonUDT2` which instead of returning the UDT type returns a simple version (without functions) called `UDTType_Simple` (`ImVec2_Simple` for `ImVec2`)
|
|
|
|
# example bindings based on cimgui
|
|
|
|
* [DerelictImgui](https://github.com/Extrawurst/DerelictImgui)
|
|
* [ImGui.NET](https://github.com/mellinoe/ImGui.NET)
|
|
* [ImGuiCS](https://github.com/conatuscreative/ImGuiCS)
|
|
* [imgui-rs](https://github.com/Gekkio/imgui-rs)
|
|
* [imgui-pas](https://github.com/dpethes/imgui-pas)
|
|
* [odin-dear_imgui](https://github.com/ThisDrunkDane/odin-dear_imgui)
|
|
* [LuaJIT-imgui](https://github.com/sonoro1234/LuaJIT-ImGui)
|