SDL_CreateTraySubmenu - Man Page

Create a submenu for a system tray entry.

Synopsis

#include <SDL3/SDL_tray.h>

SDL_TrayMenu * SDL_CreateTraySubmenu(SDL_TrayEntry *entry);

Description

This should be called at most once per tray entry.

This function does the same thing as SDL_CreateTrayMenu, 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.

Function Parameters

entry

the tray entry to bind the menu to.

Return Value

Returns the newly created menu.

Thread Safety

This function should be called on the thread that created the tray.

Availability

This function is available since SDL 3.2.0.

See Also

SDL_InsertTrayEntryAt(3), SDL_GetTraySubmenu(3), SDL_GetTrayMenuParentEntry(3)

Referenced By

SDL_GetTrayMenuParentEntry(3), SDL_GetTraySubmenu(3).

SDL 3.2.16 Simple Directmedia Layer SDL3 FUNCTIONS