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
// Take a look at the license at the top of the repository in the LICENSE file.

//! # VTE4 bindings
//!
//! This library contains safe Rust bindings for vte4 Gtk-4.0.

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

pub use ffi;
pub use gtk;

// no runtime to initialize
macro_rules! assert_initialized_main_thread {
    () => {};
}

// No-op
macro_rules! skip_assert_initialized {
    () => {};
}

mod auto;
pub use auto::*;

pub mod prelude;
pub mod subclass;
pub use prelude::*;

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

mod pty;
mod terminal;