Scroll to navigation

SDL_CreateTraySubmenu(3) SDL3 FUNCTIONS SDL_CreateTraySubmenu(3)

NAME

SDL_CreateTraySubmenu - 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

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)

SDL 3.2.14 Simple Directmedia Layer