RustAudio / baseview

low-level window system interface for audio plugin UIs
Apache License 2.0
267 stars 57 forks source link

TODO list #101

Open BillyDM opened 2 years ago

BillyDM commented 2 years ago

Here I compiled a short TODO list for baseview:

Highest priority:

High priority:

Medium priority:

Lower priority:

robbert-vdh commented 2 years ago

Get keyboard modifiers from the OS (but not from keyboard inputs because some DAWs will capture this). For example, some OS's will send modifiers via mouse events. Modifier changes should be sent to the user as its own event.

117 I submitted a month a go adds this.

A way for the user to manually close a baseview window from their code.

Isn't that what WindowHandle::close() does?

BillyDM commented 2 years ago

Isn't that what WindowHandle::close() does?

Oh yes. I need to check that off the list.