30 releases

0.3.0 Mar 31, 2023
0.2.16 Sep 15, 2022
0.2.14 Apr 17, 2022
0.2.13 Nov 10, 2021
0.1.12 Jul 16, 2021

#110 in GUI

Download history 98/week @ 2023-02-13 159/week @ 2023-02-20 47/week @ 2023-02-27 30/week @ 2023-03-06 35/week @ 2023-03-13 27/week @ 2023-03-20 48/week @ 2023-03-27 54/week @ 2023-04-03 77/week @ 2023-04-10 31/week @ 2023-04-17 31/week @ 2023-04-24 25/week @ 2023-05-01 87/week @ 2023-05-08 36/week @ 2023-05-15 28/week @ 2023-05-22 74/week @ 2023-05-29

228 downloads per month

MIT license

1MB
690 lines

fltk-webview

This provides webview functionality for embedded fltk windows. The webview bindings are based on the webview-official-sys crate, which was modified for use with FLTK and to use the static WebView2Loader library on Windows along with a newer version of webview.

Usage

Add fltk-webview to your fltk application's Cargo.toml file:

[dependencies]
fltk = "1"
fltk-webview = "0.2"

Then you can embed a webview using fltk_webview::Webview::create:

use fltk::{app, prelude::*, window};

fn main() {
    let app = app::App::default();
    let mut win = window::Window::default()
        .with_size(800, 600)
        .with_label("Webview");
    let mut wv_win = window::Window::default()
        .with_size(790, 590)
        .center_of_parent();
    win.end();
    win.make_resizable(true);
    win.show();

    let mut wv = fltk_webview::Webview::create(false, &mut wv_win);
    wv.navigate("https://google.com");
    
    app.run().unwrap();
}

Dependencies

  • fltk-rs's dependencies, which can be found here.
  • On Windows: No other dependencies.
  • On MacOS: No other dependencies.
  • On X11/wayland platforms, webkit2gtk:
    • Debian-based distros: sudo apt-get install libwebkit2gtk-4.0-dev.
    • RHEL-based distros: sudo dnf install webkit2gtk3-devel.

Known Issues

  • On windows, building using the gnu toolchain will still require deploying the dlls (webview.dll and WebView2Loader.dlls, which can be found in the target/<profile> directory.
  • On X11/wayland platforms:
    • Need help with Gnome's mutter window manager fighting for ownership of the webview window, causing flickering in text fields!
    • If running on Wayland, you need to pass the GDK_BACKEND=x11 environment variable for webkit2gtk to work properly.

alt_test

alt_test

Dependencies

~12MB
~280K SLoC