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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
use client::wl_proxy;
use std::os::raw::{c_char, c_int, c_uint};
pub enum wl_cursor_theme {}
#[repr(C)]
pub struct wl_cursor_image {
pub width: u32,
pub height: u32,
pub hotspot_x: u32,
pub hotspot_y: u32,
pub delay: u32,
}
#[repr(C)]
pub struct wl_cursor {
pub image_count: c_uint,
pub images: *mut *mut wl_cursor_image,
pub name: *mut c_char,
}
external_library!(WaylandCursor, "wayland-cursor",
functions:
fn wl_cursor_theme_load(*const c_char, c_int, *mut wl_proxy) -> *mut wl_cursor_theme,
fn wl_cursor_theme_destroy(*mut wl_cursor_theme) -> (),
fn wl_cursor_theme_get_cursor(*mut wl_cursor_theme, *const c_char) -> *mut wl_cursor,
fn wl_cursor_image_get_buffer(*mut wl_cursor_image) -> *mut wl_proxy,
fn wl_cursor_frame(*mut wl_cursor, u32) -> c_int,
fn wl_cursor_frame_and_duration(*mut wl_cursor, u32, *mut u32) -> c_int,
);
#[cfg(feature = "dlopen")]
lazy_static!(
pub static ref WAYLAND_CURSOR_OPTION: Option<WaylandCursor> = {
let versions = ["libwayland-cursor.so",
"libwayland-cursor.so.0"];
for ver in &versions {
match WaylandCursor::open(ver) {
Ok(h) => return Some(h),
Err(::dlib::DlError::NotFound) => continue,
Err(::dlib::DlError::MissingSymbol(s)) => {
if ::std::env::var_os("WAYLAND_RS_DEBUG").is_some() {
eprintln!("[wayland-client] Found library {} cannot be used: symbol {} is missing.", ver, s);
}
return None;
}
}
}
None
};
pub static ref WAYLAND_CURSOR_HANDLE: &'static WaylandCursor = {
WAYLAND_CURSOR_OPTION.as_ref().expect("Library libwayland-cursor.so could not be loaded.")
};
);
#[cfg(not(feature = "dlopen"))]
pub fn is_lib_available() -> bool {
true
}
#[cfg(feature = "dlopen")]
pub fn is_lib_available() -> bool {
WAYLAND_CURSOR_OPTION.is_some()
}