Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/raais/imstudio
Real-time GUI layout designer for Dear ImGui
https://github.com/raais/imstudio
dear-imgui dearimgui gui gui-builder gui-creator gui-maker imgui layout linux real-time windows
Last synced: 1 day ago
JSON representation
Real-time GUI layout designer for Dear ImGui
- Host: GitHub
- URL: https://github.com/raais/imstudio
- Owner: Raais
- License: mit
- Created: 2021-10-05T16:47:56.000Z (about 3 years ago)
- Default Branch: main
- Last Pushed: 2023-08-01T06:30:42.000Z (over 1 year ago)
- Last Synced: 2023-10-20T22:44:06.269Z (about 1 year ago)
- Topics: dear-imgui, dearimgui, gui, gui-builder, gui-creator, gui-maker, imgui, layout, linux, real-time, windows
- Language: C++
- Homepage: https://raais.github.io/ImStudio
- Size: 12.3 MB
- Stars: 458
- Watchers: 15
- Forks: 45
- Open Issues: 5
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# ImStudio
[![Linux Build Status](https://github.com/Raais/ImStudio/actions/workflows/linux.yml/badge.svg)](https://github.com/Raais/ImStudio/actions?workflow=linux)
[![Windows Build Status](https://github.com/Raais/ImStudio/actions/workflows/windows.yml/badge.svg)](https://github.com/Raais/ImStudio/actions?workflow=windows)
[![macOS Build Status](https://github.com/Raais/ImStudio/actions/workflows/macos.yml/badge.svg)](https://github.com/Raais/ImStudio/actions?workflow=macOS)Real-time GUI layout creator/editor for [Dear ImGui](https://github.com/ocornut/imgui)
### [Try Online](https://raais.github.io/ImStudio)
![Screenshot](https://user-images.githubusercontent.com/64605172/166310444-d7520e69-0d74-4dd8-a84e-2144504ab466.png)
Inspired by [Code-Building/ImGuiBuilder](https://github.com/Code-Building/ImGuiBuilder)
## Features
- Drag edit
- Property edit
- Covers most of the commonly used default widgets (primitives, data inputs, and other miscellaneous)
- Child windows
- Real-time generation
- Export to clipboard
- Useful tools (Style & Color export, Demo Window, etc.)
- Helpful resources (external)
## Installation### Build Dependencies
- [CMake](https://cmake.org/download)
- [GLFW](https://www.glfw.org/download) \
\*Downloaded during build on Windows and MacOS \
**Debian:** sudo apt-get install libglfw3 libglfw3-dev \
**Arch:** sudo pacman -S glfw \
**Fedora:** sudo dnf install glfw glfw-devel### Instructions
### Linux
#### Build
```bash
git clone --depth 1 https://github.com/Raais/ImStudio.git
cd ImStudio
./build.sh
```### Windows
#### Pre-Built
[Installer x64](https://github.com/Raais/ImStudio/releases)
#### Build
Make sure MSVC is in your environment (eg. x64 Native Tools Command Prompt)
```cmd
"C:\Program Files\Git\bin\git.exe" clone --depth 1 https://github.com/Raais/ImStudio.git
cd ImStudio
md build
cd build
"C:\Program Files\CMake\bin\cmake.exe" .. -DCMAKE_BUILD_TYPE=Release
"C:\Program Files\CMake\bin\cmake.exe" --build . --config Release
```## Credits
Thanks to [Omar](https://github.com/ocornut) for [Dear ImGui](https://github.com/ocornut/imgui).\
Thanks to [Code-Building](https://github.com/Code-Building) for the inspiration.