JUCE
Classes | Public Types | Public Attributes | List of all members
PushNotifications::Settings Struct Reference

Describes settings we want to use for current device. More...

Classes

struct  Category
 Describes a category of a notification. More...
 

Public Types

using Action = Notification::Action
 

Public Attributes

bool allowSound = false
 whether the app should play a sound upon notification More...
 
bool allowAlert = false
 whether the app should present an alert upon notification More...
 
bool allowBadge = false
 whether the app may badge its icon upon notification More...
 
Array< Categorycategories
 list of categories the app wants to support More...
 

Detailed Description

Describes settings we want to use for current device.

Note that at the moment this is only used on iOS and partially on OSX.

On OSX only allow* flags are used and they control remote notifications only. To control sound, alert and badge settings for local notifications on OSX, use Notifications settings in System Preferences.

To setup push notifications for current device, provide permissions required, as well as register categories of notifications you want to support. Each category needs to have a unique identifier and it can optionally have multiple actions. Each action also needs to have a unique identifier. The example setup may look as follows:

Action okAction;
okAction.identifier = "okAction";
okAction.title = "OK!";
okAction.style = Action::button;
okAction.triggerInBackground = true;
Action cancelAction;
cancelAction.identifier = "cancelAction";
cancelAction.title = "Cancel";
cancelAction.style = Action::button;
cancelAction.triggerInBackground = true;
cancelAction.destructive = true;
Action textAction;
textAction.identifier = "textAction";
textAction.title = "Enter text";
textAction.style = Action::text;
textAction.triggerInBackground = true;
textAction.destructive = false;
textAction.textInputButtonText = "Ok";
textAction.textInputPlaceholder = "Enter text...";
Category okCategory;
okCategory.identifier = "okCategory";
okCategory.actions = { okAction };
Category okCancelCategory;
okCancelCategory.identifier = "okCancelCategory";
okCancelCategory.actions = { okAction, cancelAction };
Category textCategory;
textCategory.identifier = "textCategory";
textCategory.actions = { textAction };
textCategory.sendDismissAction = true;
settings.allowAlert = true;
settings.allowBadge = true;
settings.allowSound = true;
settings.categories = { okCategory, okCancelCategory, textCategory };

Member Typedef Documentation

◆ Action

Member Data Documentation

◆ allowSound

bool PushNotifications::Settings::allowSound = false

whether the app should play a sound upon notification

◆ allowAlert

bool PushNotifications::Settings::allowAlert = false

whether the app should present an alert upon notification

◆ allowBadge

bool PushNotifications::Settings::allowBadge = false

whether the app may badge its icon upon notification

◆ categories

Array<Category> PushNotifications::Settings::categories

list of categories the app wants to support


The documentation for this struct was generated from the following file: