Event Changes Of Window Not Components
How would one get changes to the dimensions of the ui.window? This is not shown in any of the examples.
currently, I just use gg.window_size to set size during component's draw event. Although, I'm planning on adding a window resize event.
currently, I just use
gg.window_sizeto set size during component's draw event. Although, I'm planning on adding a window resize event.
Yes, window events look necessary and useful. Such as: . window width . window height . window x coordinate (relative to screen) . window y coordinate (relative to screen) . window state (minimize, maximize, restore) . mouse clicks on window (left click, right click, double click)
Possibly some others, but it appears at least those (or whatever can be done), because of their usual necessity and it would make it easier to work with.
Maybe also something to turn on or off DPI settings. As the window and proportion of components can be affected by the DPI, which can be good or bad.