//! Constants determining the click method of a device.
//!
//! See the libinput documentation for details.
use ;
/// The click method of a device.
;
/// No click method handling
pub const CLICK_METHOD_NONE: ClickMethod = ClickMethod;
/// Button area
pub const CLICK_METHOD_BUTTON_AREAS: ClickMethod = ClickMethod;
/// Clickfinger
pub const CLICK_METHOD_CLICKFINGER: ClickMethod = ClickMethod;