CImGui

This package provides a Julia language wrapper for cimgui: a thin c-api wrapper programmatically generated for the excellent C++ immediate mode gui Dear ImGui. Dear ImGui is mainly for creating content creation tools and visualization / debug tools. You could browse Gallery to get an idea of its use cases.

Installation

pkg> add CImGui

Note that CImGui does not follow semantic versioning for the sake of matching upstream ImGui. Instead, we match the major and minor version and reserve the patch versions for ourselves. Typically ImGui doesn't make breaking changes within minor versions, so this means that your compat bounds for CImGui should only allow upgrading on patch versions with ~major.minor. For example:

[compat]
CImGui = "~1.89"

This will allow versions in the range [1.89.0 - 1.90), which should be safe.

How to start

1. Run demo/demo.jl to test whether the default backend works on your machine

julia> using CImGui
julia> include(joinpath(pathof(CImGui), "..", "..", "demo", "demo.jl"))

2. Run examples/demo.jl and browse demos in the examples folder to learn how to use the API

julia> using CImGui
julia> include(joinpath(pathof(CImGui), "..", "..", "examples", "demo.jl"))

All of these examples are one-to-one ported from Dear ImGui's C++ examples and there is an interactive manual for quickly locating the code. You could also run ? CImGui.xxx to retrieve docs:

help?> CImGui.Button
  Button(label) -> Bool
  Button(label, size) -> Bool

  Return true when the value has been changed or when pressed/selected.

3. The rendering loop

One thing that is necessary but the package doesn't provide is the rendering loop. Note that all ImGui widgets should run within CImGui.Begin()...CImGui.End(), if not, a crash is waiting for you. For example, directly running CImGui.Button("My button") in REPL will crash Julia.

An example rendering loop module is provided here for those users who don't bother to study those boilerplate code and eager to draw some widgets on the screen.

julia> using CImGui
julia> include(joinpath(pathof(CImGui), "..", "..", "examples", "Renderer.jl"))
Main.Renderer

julia> using .Renderer

julia> Renderer.render(width = 360, height = 480, title = "IMGUI Window") do
           CImGui.Begin("Hello ImGui")
           CImGui.Button("My Button") && @show "triggered"
           CImGui.End()
       end
Task (runnable) @0x00000001136bead0

Note that neither ImGui nor OpenGL are thread-safe, be aware of this if you start Julia with multiple threads using --threads. If you need to use multiple threads in an application, one option is to use the threadpools introduced in Julia 1.9:

# Have an arbitrary number in the default pool, and 1 thread in the :interactive pool
$ julia --threads=auto,1

Then start the render loop on the :interactive thread and ensure that none of the other threads call GUI functions.

Usage

The API provided in this package is as close as possible to the original C++ API. When translating C++ code to Julia, please follow the tips below:

  • Replace ImGui:: to CImGui.;
  • using LibCImGui to import all of the ImGuiXXX types into the current namespace;
  • Member function calling should be translated in Julia style: fonts.AddFont(cfg) => CImGui.AddFont(fonts, cfg);
  • [using CImGui.CSyntax] provides two useful macros: @c for translating C's & operator on immutables and @cstatic-block for emulating C's static keyword;

As mentioned before, this package aims to provide the same user experience as the original C++ API, so any high-level abstraction should go into a more high-level package. Redux.jl might be of interest to you if you're looking for state management frameworks.

LibCImGui

LibCImGui is a thin wrapper over cimgui. It's one-to-one mapped to the original cimgui APIs. By using CImGui.LibCImGui, all of the ImGui-prefixed types, enums and ig-prefixed functions will be imported into the current namespace. It's mainly for people who prefer to use original cimgui's interface.

Backend

The default backend is based on ModernGL and GLFW which are stable and under actively maintained. Other popular backends like SFML and SDL could be added in the future if someone should invest time to make these packages work in post Julia 1.0 era.