#tabs #egui #immediate-mode #node #system #docking #applications

egui_dock

Docking system for egui - an immediate-mode GUI library for Rust

31 releases (11 breaking)

0.12.0 Apr 5, 2024
0.11.4 Mar 11, 2024
0.11.2 Feb 16, 2024
0.9.1 Dec 10, 2023
0.2.1 Sep 9, 2022

#40 in GUI

Download history 1671/week @ 2024-01-03 1643/week @ 2024-01-10 2663/week @ 2024-01-17 1853/week @ 2024-01-24 1735/week @ 2024-01-31 2110/week @ 2024-02-07 3311/week @ 2024-02-14 2869/week @ 2024-02-21 2506/week @ 2024-02-28 2707/week @ 2024-03-06 2193/week @ 2024-03-13 2265/week @ 2024-03-20 1810/week @ 2024-03-27 2407/week @ 2024-04-03 1934/week @ 2024-04-10 1489/week @ 2024-04-17

8,047 downloads per month
Used in 16 crates (7 directly)

MIT license

220KB
4K SLoC

egui_dock: docking system for egui

github Crates.io docs.rs egui_version

Originally created by @lain-dono, this library provides a docking system for egui.

Contributing

Before contributing, please read the contribution guide.

This library is a collaborative project developed with direct involvement of its users.

Please feel free to open new issues and pull requests, and participate in discussions! A lot of our discussions take place on egui's official Discord server, in the #egui_dock channel.

Features

  • Opening and closing tabs.
  • Moving tabs between nodes and resizing.
  • Dragging tabs out into new egui windows.
  • Highly customizable look and feel.
  • High degree of control over behaviour of the whole dock area and of individual tabs.
  • Manipulating tabs and dock layout from code.

Quick start

Add egui and egui_dock to your project's dependencies.

[dependencies]
egui = "0.26"
egui_dock = "0.12"

Then proceed by setting up egui, following its quick start guide. Once that's done, you can start using egui_dock – more details on that can be found in the documentation.

Examples

The Git repository of this crate contains some example applications demonstrating how to achieve certain effects. You can find all of them in the examples folder.

You can run them with Cargo from the crate's root directory, for example: cargo run --example hello.

Demo

demo

Alternatives

egui_tiles

It's a library aiming to achieve similar goals in addition to being more flexible and customizable.

One feature it supports that egui_dock does not at the moment is the ability to divide nodes into more than two children, enabling horizontal, vertical, and grid layouts.

[!NOTE] egui_tiles is much earlier in development than egui_dock and doesn't yet support a lot of features.

Dependencies

~4–11MB
~80K SLoC