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
81
82
83
84
//! Contains methods for interacting with the pointer
//! and keyboard of wlc.

use libc::{size_t, uint32_t};
use super::types::{KeyboardModifiers, Point};

#[cfg_attr(feature = "static-wlc", link(name = "wlc", kind = "static"))]
#[cfg_attr(not(feature = "static-wlc"), link(name = "wlc"))]
extern "C" {
    fn wlc_keyboard_get_current_keys(out_memb: *const size_t) -> *const uint32_t;

    fn wlc_keyboard_get_keysym_for_key(key: uint32_t,
                                       modifiers: *const KeyboardModifiers) -> uint32_t;

    fn wlc_keyboard_get_utf32_for_key(key: uint32_t,
                                      modifiers: *const KeyboardModifiers) -> uint32_t;

    // Pointer functions
    fn wlc_pointer_get_position(out_position: *mut Point);

    fn wlc_pointer_set_position(position: *const Point);
}

pub mod pointer {
//! Methods for interacting with the mouse
    use super::super::types::{Point};

    /// Gets the current position of the mouse.
    pub fn get_position() -> Point {
        unsafe {
            let mut point = Point { x: 0, y: 0 };
            super::wlc_pointer_get_position(&mut point);
            return point;
        }
    }

    /// Sets the current mouse position. Required on mouse move callback.
    pub fn set_position(point: Point) {
        unsafe { super::wlc_pointer_set_position(&point); }
    }
}

pub mod keyboard {
    //! Methods for interacting with the keyboard

    use std::slice;
    use libc::size_t;
    use super::super::types::KeyboardModifiers;
    #[allow(deprecated)]
    use super::super::xkb::Keysym;

    /// Get currently held keys.
    /// # Panics
    /// All the time, this function hasn't been implemented yet
    pub fn get_current_keys<'a>() -> Option<&'a[u32]> {
        let mut size: size_t = 0;
        unsafe {
            let out_ptr = super::wlc_keyboard_get_current_keys(&mut size);
            if size == 0 || out_ptr.is_null() {
                None
            }
            else {
                Some(slice::from_raw_parts(out_ptr, size as usize))
            }
        }
    }

    /// Gets a keysym given a key and modifiers.
    ///
    /// In order to delay breaking backwards compatibility this method is _not_
    /// deprecated. Please use `Keysym::raw` on the Keysym returned from this
    /// function for now. **In version 0.6 this will return a u32**.
    #[allow(deprecated)]
    pub fn get_keysym_for_key(key: u32, modifiers: KeyboardModifiers) -> Keysym {
        unsafe {
            Keysym::from(super::wlc_keyboard_get_keysym_for_key(key, &modifiers) as u32)
        }
    }

    /// Gets a UTF32 value for a given key and modifiers.
    pub fn get_utf32_for_key(key: u32, modifiers: KeyboardModifiers) -> u32 {
        unsafe { super::wlc_keyboard_get_utf32_for_key(key, &modifiers) }
    }
}