SDL_GetTraySubmenu
Gets a previously created tray entry submenu.
- Provided by: libsdl3-doc (Version: 3.4.2+ds-1ubuntu1)
- Source: libsdl3
- Report a bug
Gets a previously created tray entry submenu.
#include <SDL3/SDL_tray.h>
SDL_TrayMenu * SDL_GetTraySubmenu(SDL_TrayEntry *entry);
You should have called SDL_CreateTraySubmenu() on the entry object. This function allows you to fetch it again later.
This function does the same thing as SDL_GetTrayMenu(), except that it takes a SDL_TrayEntry instead of a SDL_Tray.
A menu does not need to be destroyed; it will be destroyed with the tray.
Returns the newly created menu.
This function should be called on the thread that created the tray.
This function is available since SDL 3.2.0.