voidwindowDidResizeNSNotification
voidwindowDidR... appears to be a concatenation of a C-style void return type with a likely window-related callback name. It is not a standard, widely recognized API by itself, but it illustrates a common pattern in event-driven GUI programming: a function that returns no value and handles a window event.
In GUI frameworks, window event callbacks are used to respond to changes in window state or user
Naming and signatures for these callbacks vary by language and framework. A typical convention is to include
Usage generally involves registering the callback with a window object or event dispatcher, either by implementing