SDL Wiki
[ front page | index | search | recent changes | git repo | offline html ]

SDL_NotificationEvent

Notification dialog event structure (event.notification.*)

Header File

Defined in <SDL3/SDL_events.h>

Syntax

typedef struct SDL_NotificationEvent
{
    SDL_EventType type; /**< SDL_EVENT_NOTIFICATION_ACTION_INVOKED */
    Uint32 reserved;
    Uint64 timestamp;         /**< In nanoseconds, populated using SDL_GetTicksNS() */
    SDL_NotificationID which; /**< The ID of the notification that generated this event. */
    const char *action_id;    /**< The identifier string of the action invoked in the notification dialog. */
} SDL_NotificationEvent;

Remarks

An action_id value of 'default' for an SDL_EVENT_NOTIFICATION_ACTION_INVOKED event indicates that the notification was interacted with without selecting a specific action (e.g. the body of the notification was clicked on).

Version

This struct is available since SDL 3.6.0.


CategoryAPI, CategoryAPIStruct, CategoryEvents


[ edit | delete | history | feedback | raw ]

All wiki content is licensed under Creative Commons Attribution 4.0 International (CC BY 4.0).
Wiki powered by ghwikipp.