1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
//! # Migration to GTK4 api
//!
//! Upstream webkit2gtk project has a document to help with the migration to the GTK4 api:
//! <https://webkitgtk.org/reference/webkit2gtk/unstable/migrating-to-webkitgtk-6.0.html>

#![cfg_attr(docsrs, feature(doc_cfg))]

macro_rules! assert_initialized_main_thread {
    () => {};
}

macro_rules! skip_assert_initialized {
    () => {};
}

pub use ffi;
pub use gdk;
pub use gio;
pub use glib;
pub use gtk;
pub use javascriptcore;
pub use soup;

mod website_data_manager;

#[allow(unused_imports)]
mod auto;
pub use crate::auto::*;

pub mod prelude {
    #[doc(hidden)]
    pub use gtk::prelude::*;
    #[doc(hidden)]
    pub use soup::prelude::*;

    pub use super::auto::traits::*;
}

pub mod functions {
    pub use super::auto::functions::*;
}