Ryan McGrath

Results 135 comments of Ryan McGrath

Hmmm, any reason to not just implement support for e.g `canBecomeKey`? Seems like it would be more apparent in docs/etc if we went that route. (Is there a list of...

> but this would be a significant change from the Cocoa API where the method is not delegated to the controller This is something I'm fine with, personally. cacao is...

> Any conclusion here on what would be the best default implementation? I've not had time to sit down and figure out what the exact API should look like, but...

Appreciate the ping, unfortunately I'm juggling a lot at the moment so this might sit for a bit longer - and I want to get ahead and merge @madsmtm `objc2`...

You have a very good point here - `ObjcAccess` could probably be public with no issues. It's important that people be able to experiment without needing to extend the core...

So I'm musing about juggling pull requests here - I definitely do want these in cacao, however I _think_ the `objc2` PR might muck this PR up. Given that we're...

Possible? Yes. As easy as it should be? No. Documented? Ish. What I mean is this: you can absolutely use cacao to set up the application delegate cycle and write...

You probably need to call `[window makeFirstResponder:nil]` (which we need to add on the `Window` in `appkit`) or you could try programmatically calling `resignFirstResponder` to hack around it for now....

Can you provide a situation you're running into where this is causing friction? Truth be told, I've long considered `NSArray` and `NSMutableDictionary` to be more internal in nature and don't...

Ah, I see. So this is where the thought process differs. I always envisioned that cacao would have something akin to: ``` rust /// pseudocode~ pub struct Workspace(...); impl Workspace...