Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/noxware/hframe
Show HTML content "inside" your egui rendered application
https://github.com/noxware/hframe
egui rust rust-lang wasm web webassembly webview
Last synced: about 2 months ago
JSON representation
Show HTML content "inside" your egui rendered application
- Host: GitHub
- URL: https://github.com/noxware/hframe
- Owner: noxware
- Created: 2024-02-25T17:28:12.000Z (10 months ago)
- Default Branch: master
- Last Pushed: 2024-10-17T02:59:04.000Z (2 months ago)
- Last Synced: 2024-10-19T05:23:15.384Z (2 months ago)
- Topics: egui, rust, rust-lang, wasm, web, webassembly, webview
- Language: Rust
- Homepage:
- Size: 877 KB
- Stars: 11
- Watchers: 1
- Forks: 2
- Open Issues: 7
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# hframe ![License](https://img.shields.io/badge/License-MIT%2FApache%202.0-blue) [![CI](https://github.com/noxware/hframe/actions/workflows/rust.yml/badge.svg)](https://github.com/noxware/hframe/actions/workflows/rust.yml) [![Crates.io Version](https://img.shields.io/crates/v/hframe)](https://crates.io/crates/hframe)
Show HTML content "inside" your [egui](https://github.com/emilk/egui) rendered application. "hframe" stands for "HTML Frame".
> **💡 Note:** `hframe` only works when the application is compiled to WebAssembly and run in a browser. But you can still make a desktop up by leveraging [Tauri](https://tauri.app/).
>
> [egui-tauri-template](https://github.com/noxware/egui-tauri-template)
> will serve as good foundation if you need to target both platforms.> **⚠️ Warning:**: If you experience type mismatches, please ensure hframe is
> using the same egui version you are using by checking your `Cargo.lock` file.
> This errors may happen if you try to upgrade your egui version while hframe
> is still using types from your older version.## Simple example
```rust
use hframe::Aware;const IFRAME: &str = r#"
"#;
pub struct App;
impl App {
pub fn new(cc: &eframe::CreationContext<'_>) -> Self {
Self
}
}impl eframe::App for App {
fn update(&mut self, ctx: &egui::Context, _frame: &mut eframe::Frame) {
egui::Window::new("Egui Rendered Window")
.show(ctx, |ui| {
ui.centered_and_justified(|ui| {
ui.label("This window can be shown on top of the iframe thanks to `.aware()`");
});
})
.aware();hframe::HtmlWindow::new("Iframe Window").content(IFRAME).show(ctx);
hframe::sync(ctx);
}
}
```For a more complete example see [demo's app.rs](https://github.com/noxware/hframe/blob/master/examples/demo/src/app.rs).
## Running the demo
> Ensure you have `trunk` installed with `cargo install --locked trunk`.
```
git clone https://github.com/noxware/hframe
cd hframe/examples/demo
trunk serve --open
```## Screenshot
![Screenshot](https://github.com/noxware/hframe/assets/7684329/bde21df4-697c-4255-b2c5-732d5b72ea0b)
## How does it work?
`hframe` renders the HTML content on top of the canvas where `egui` is rendering. Web content is absolute positioned following specifc areas of the canvas. To be
abale to show egui windows on top of the HTML content, `hframe` uses different set
of HTML masking/cliping techniques combined with other smart logic to produce the
illusion of the HTML content being "inside" the egui rendered application.This approach has been chosen after many experiments with alternative techniques
which were not able to provide the same level of integration and flexibility.Additionally, some tracking is performed to provide an immediate mode like public
API. HTML will only be re-rendered if you change the initially provided content. This
can be useful if you want to change the HTML content in a controlled and reactive
manner without giving up the immediate mode API.## Limitations
- The current implementation assumes that the canvas takes the whole screen and
it is not scaled. The default configuration of the [eframe_template](https://github.com/emilk/eframe_template) will work.
- Currently the API only provides a way to create egui windows with HTML "inside"
but doesn't provide a way to put bare HTML content in other places.