summaryrefslogtreecommitdiffstats
path: root/vendor/web-sys/src/features/gen_WheelEvent.rs
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2024-05-18 02:49:50 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2024-05-18 02:49:50 +0000
commit9835e2ae736235810b4ea1c162ca5e65c547e770 (patch)
tree3fcebf40ed70e581d776a8a4c65923e8ec20e026 /vendor/web-sys/src/features/gen_WheelEvent.rs
parentReleasing progress-linux version 1.70.0+dfsg2-1~progress7.99u1. (diff)
downloadrustc-9835e2ae736235810b4ea1c162ca5e65c547e770.tar.xz
rustc-9835e2ae736235810b4ea1c162ca5e65c547e770.zip
Merging upstream version 1.71.1+dfsg1.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'vendor/web-sys/src/features/gen_WheelEvent.rs')
-rw-r--r--vendor/web-sys/src/features/gen_WheelEvent.rs74
1 files changed, 74 insertions, 0 deletions
diff --git a/vendor/web-sys/src/features/gen_WheelEvent.rs b/vendor/web-sys/src/features/gen_WheelEvent.rs
new file mode 100644
index 000000000..cbf9365d2
--- /dev/null
+++ b/vendor/web-sys/src/features/gen_WheelEvent.rs
@@ -0,0 +1,74 @@
+#![allow(unused_imports)]
+use super::*;
+use wasm_bindgen::prelude::*;
+#[wasm_bindgen]
+extern "C" {
+ # [wasm_bindgen (extends = MouseEvent , extends = UiEvent , extends = Event , extends = :: js_sys :: Object , js_name = WheelEvent , typescript_type = "WheelEvent")]
+ #[derive(Debug, Clone, PartialEq, Eq)]
+ #[doc = "The `WheelEvent` class."]
+ #[doc = ""]
+ #[doc = "[MDN Documentation](https://developer.mozilla.org/en-US/docs/Web/API/WheelEvent)"]
+ #[doc = ""]
+ #[doc = "*This API requires the following crate features to be activated: `WheelEvent`*"]
+ pub type WheelEvent;
+ # [wasm_bindgen (structural , method , getter , js_class = "WheelEvent" , js_name = deltaX)]
+ #[doc = "Getter for the `deltaX` field of this object."]
+ #[doc = ""]
+ #[doc = "[MDN Documentation](https://developer.mozilla.org/en-US/docs/Web/API/WheelEvent/deltaX)"]
+ #[doc = ""]
+ #[doc = "*This API requires the following crate features to be activated: `WheelEvent`*"]
+ pub fn delta_x(this: &WheelEvent) -> f64;
+ # [wasm_bindgen (structural , method , getter , js_class = "WheelEvent" , js_name = deltaY)]
+ #[doc = "Getter for the `deltaY` field of this object."]
+ #[doc = ""]
+ #[doc = "[MDN Documentation](https://developer.mozilla.org/en-US/docs/Web/API/WheelEvent/deltaY)"]
+ #[doc = ""]
+ #[doc = "*This API requires the following crate features to be activated: `WheelEvent`*"]
+ pub fn delta_y(this: &WheelEvent) -> f64;
+ # [wasm_bindgen (structural , method , getter , js_class = "WheelEvent" , js_name = deltaZ)]
+ #[doc = "Getter for the `deltaZ` field of this object."]
+ #[doc = ""]
+ #[doc = "[MDN Documentation](https://developer.mozilla.org/en-US/docs/Web/API/WheelEvent/deltaZ)"]
+ #[doc = ""]
+ #[doc = "*This API requires the following crate features to be activated: `WheelEvent`*"]
+ pub fn delta_z(this: &WheelEvent) -> f64;
+ # [wasm_bindgen (structural , method , getter , js_class = "WheelEvent" , js_name = deltaMode)]
+ #[doc = "Getter for the `deltaMode` field of this object."]
+ #[doc = ""]
+ #[doc = "[MDN Documentation](https://developer.mozilla.org/en-US/docs/Web/API/WheelEvent/deltaMode)"]
+ #[doc = ""]
+ #[doc = "*This API requires the following crate features to be activated: `WheelEvent`*"]
+ pub fn delta_mode(this: &WheelEvent) -> u32;
+ #[wasm_bindgen(catch, constructor, js_class = "WheelEvent")]
+ #[doc = "The `new WheelEvent(..)` constructor, creating a new instance of `WheelEvent`."]
+ #[doc = ""]
+ #[doc = "[MDN Documentation](https://developer.mozilla.org/en-US/docs/Web/API/WheelEvent/WheelEvent)"]
+ #[doc = ""]
+ #[doc = "*This API requires the following crate features to be activated: `WheelEvent`*"]
+ pub fn new(type_: &str) -> Result<WheelEvent, JsValue>;
+ #[cfg(feature = "WheelEventInit")]
+ #[wasm_bindgen(catch, constructor, js_class = "WheelEvent")]
+ #[doc = "The `new WheelEvent(..)` constructor, creating a new instance of `WheelEvent`."]
+ #[doc = ""]
+ #[doc = "[MDN Documentation](https://developer.mozilla.org/en-US/docs/Web/API/WheelEvent/WheelEvent)"]
+ #[doc = ""]
+ #[doc = "*This API requires the following crate features to be activated: `WheelEvent`, `WheelEventInit`*"]
+ pub fn new_with_event_init_dict(
+ type_: &str,
+ event_init_dict: &WheelEventInit,
+ ) -> Result<WheelEvent, JsValue>;
+}
+impl WheelEvent {
+ #[doc = "The `WheelEvent.DOM_DELTA_PIXEL` const."]
+ #[doc = ""]
+ #[doc = "*This API requires the following crate features to be activated: `WheelEvent`*"]
+ pub const DOM_DELTA_PIXEL: u32 = 0u64 as u32;
+ #[doc = "The `WheelEvent.DOM_DELTA_LINE` const."]
+ #[doc = ""]
+ #[doc = "*This API requires the following crate features to be activated: `WheelEvent`*"]
+ pub const DOM_DELTA_LINE: u32 = 1u64 as u32;
+ #[doc = "The `WheelEvent.DOM_DELTA_PAGE` const."]
+ #[doc = ""]
+ #[doc = "*This API requires the following crate features to be activated: `WheelEvent`*"]
+ pub const DOM_DELTA_PAGE: u32 = 2u64 as u32;
+}