I’m trying to make my AlertWindows show without the window appearing in the task bar.
For me it would be best to avoid subclassing AlertWindow, so things like ThreadWithProgressWindow will use this same behavior without further modifications.
I thought the thing to do would be to derive a class from LookAndFeel and re-implement getAlertBoxWindowFlags(), but AlertWindow only seems to call setUsingNativeTitleBar()/setDropShadowEnabled() based on this function, not change the flags used when calling addToDesktop() (which come from getDesktopWindowStyleFlags() instead).
Am I missing something obvious?
Thanks!