Skip to content

Commit 4042661

Browse files
authored
macos: Switch from icrate to obj2 crates because it was split up into individual crates (#323)
1 parent 9400c64 commit 4042661

File tree

2 files changed

+17
-14
lines changed

2 files changed

+17
-14
lines changed

Cargo.toml

+2-3
Original file line numberDiff line numberDiff line change
@@ -54,10 +54,9 @@ windows = { version = "0.58", features = [
5454

5555
[target.'cfg(target_os = "macos")'.dependencies]
5656
core-graphics = { version = "0.24", features = ["highsierra"] }
57-
icrate = { version = "0.1", features = [
58-
"AppKit_all",
59-
] } # AppKit_NSGraphicsContext
6057
objc2 = { version = "0.5", features = ["relax-void-encoding"] }
58+
objc2-app-kit = { version = "0.2", features = ["NSEvent", "NSGraphicsContext"] }
59+
objc2-foundation = { version = "0.2", features = ["NSGeometry"] }
6160
foreign-types-shared = "0.3"
6261

6362
[target.'cfg(all(unix, not(target_os = "macos")))'.dependencies]

src/macos/macos_impl.rs

+15-11
Original file line numberDiff line numberDiff line change
@@ -13,9 +13,10 @@ use core_graphics::{
1313
event_source::{CGEventSource, CGEventSourceStateID},
1414
};
1515
use foreign_types_shared::ForeignTypeRef as _;
16-
use icrate::{AppKit, AppKit::NSEvent, Foundation::NSPoint};
1716
use log::{debug, error, info};
1817
use objc2::msg_send;
18+
use objc2_app_kit::{NSEvent, NSEventModifierFlags, NSEventType};
19+
use objc2_foundation::NSPoint;
1920

2021
use crate::{
2122
Axis, Button, Coordinate, Direction, InputError, InputResult, Key, Keyboard, Mouse,
@@ -226,7 +227,7 @@ impl Mouse for Enigo {
226227

227228
fn move_mouse(&mut self, x: i32, y: i32, coordinate: Coordinate) -> InputResult<()> {
228229
debug!("\x1b[93mmove_mouse(x: {x:?}, y: {y:?}, coordinate:{coordinate:?})\x1b[0m");
229-
let pressed = unsafe { AppKit::NSEvent::pressedMouseButtons() };
230+
let pressed = unsafe { NSEvent::pressedMouseButtons() };
230231
let (current_x, current_y) = self.location()?;
231232

232233
let (absolute, relative) = match coordinate {
@@ -309,7 +310,7 @@ impl Mouse for Enigo {
309310

310311
fn location(&self) -> InputResult<(i32, i32)> {
311312
debug!("\x1b[93mlocation()\x1b[0m");
312-
let pt = unsafe { AppKit::NSEvent::mouseLocation() };
313+
let pt = unsafe { NSEvent::mouseLocation() };
313314
let (x, y_inv) = (pt.x as i32, pt.y as i32);
314315
Ok((x, self.display.pixels_high() as i32 - y_inv))
315316
}
@@ -562,7 +563,7 @@ impl Enigo {
562563
let held = (Vec::new(), Vec::new());
563564

564565
let double_click_delay = Duration::from_secs(1);
565-
let double_click_delay_setting = unsafe { AppKit::NSEvent::doubleClickInterval() };
566+
let double_click_delay_setting = unsafe { NSEvent::doubleClickInterval() };
566567
// Returns the double click interval (https://developer.apple.com/documentation/appkit/nsevent/1528384-doubleclickinterval). This is a TimeInterval which is a f64 of the number of seconds
567568
let double_click_delay = double_click_delay.mul_f64(double_click_delay_setting);
568569

@@ -630,12 +631,14 @@ impl Enigo {
630631
}
631632

632633
fn special_keys(&self, code: isize, direction: Direction) -> InputResult<()> {
634+
let flags = NSEventModifierFlags::NSEventModifierFlagCapsLock
635+
.union(NSEventModifierFlags::NSEventModifierFlagOption);
633636
if direction == Direction::Press || direction == Direction::Click {
634637
let event = unsafe {
635-
AppKit::NSEvent::otherEventWithType_location_modifierFlags_timestamp_windowNumber_context_subtype_data1_data2(
636-
AppKit::NSEventTypeSystemDefined, // 14
638+
NSEvent::otherEventWithType_location_modifierFlags_timestamp_windowNumber_context_subtype_data1_data2(
639+
NSEventType::SystemDefined, // 14
637640
NSPoint::ZERO,
638-
0xa00, // NSEventModifierFlagCapsLock and NSEventModifierFlagOption
641+
flags,
639642
0.0,
640643
0,
641644
None,
@@ -660,11 +663,12 @@ impl Enigo {
660663
}
661664

662665
if direction == Direction::Release || direction == Direction::Click {
666+
let flags = flags.union(NSEventModifierFlags::NSEventModifierFlagShift);
663667
let event = unsafe {
664-
AppKit::NSEvent::otherEventWithType_location_modifierFlags_timestamp_windowNumber_context_subtype_data1_data2(
665-
AppKit::NSEventTypeSystemDefined, // 14
668+
NSEvent::otherEventWithType_location_modifierFlags_timestamp_windowNumber_context_subtype_data1_data2(
669+
NSEventType::SystemDefined, // 14
666670
NSPoint::ZERO,
667-
0xb00, // NSEventModifierFlagCapsLock, NSEventModifierFlagOptionNSEventModifier and FlagShift
671+
flags,
668672
0.0,
669673
0,
670674
None,
@@ -822,7 +826,7 @@ fn get_layoutdependent_keycode(string: &str) -> CGKeyCode {
822826
fn keycode_to_string(keycode: u16, modifier: u32) -> Option<String> {
823827
let cf_string = create_string_for_key(keycode, modifier);
824828
let buffer_size = unsafe { CFStringGetLength(cf_string) + 1 };
825-
let mut buffer: i8 = std::i8::MAX;
829+
let mut buffer: i8 = i8::MAX;
826830
let success =
827831
unsafe { CFStringGetCString(cf_string, &mut buffer, buffer_size, kCFStringEncodingUTF8) };
828832
if success == TRUE as u8 {

0 commit comments

Comments
 (0)