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
//! # bindings for gtk part of libdbusmenu
//!
//! Rust bindings for the gtk part of [libdbusmenu] that work with the [gtk-rs ecosystem].
//!
//! If you are looking to expose a menu over DBus (e.g. for a system tray icon), see [`mod@dbusmenu_glib`].
//! This crate provides [`Menu`], a GTK widget which will show the contents of a menu exposed over DBus.
//!
//! [libdbusmenu]: https://github.com/AyatanaIndicators/libdbusmenu
//! [gtk-rs ecosystem]: https://gtk-rs.org
// for links in docs
use dbusmenu_glib;
use gtk;
pub use *;
pub use ffi;