JUCE  v6.1.6 (6.0.8-1114)
JUCE API
Looking for a senior C++ dev?
I'm looking for work. Hire me!
juce::PushNotifications::Settings Struct Reference

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

#include <juce_PushNotifications.h>

Collaboration diagram for juce::PushNotifications::Settings:

Classes

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

Public Types

using Action = Notification::Action
 

Public Attributes

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...
 
bool allowSound = false
 whether the app should play a sound 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:

using Category = PushNotifications::Settings::Category;
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;
PushNotifications::Settings settings;
settings.allowAlert = true;
settings.allowBadge = true;
settings.allowSound = true;
settings.categories = { okCategory, okCancelCategory, textCategory };

Member Typedef Documentation

◆ Action

Member Data Documentation

◆ allowAlert

bool juce::PushNotifications::Settings::allowAlert = false

whether the app should present an alert upon notification

◆ allowBadge

bool juce::PushNotifications::Settings::allowBadge = false

whether the app may badge its icon upon notification

◆ allowSound

bool juce::PushNotifications::Settings::allowSound = false

whether the app should play a sound upon notification

◆ categories

Array<Category> juce::PushNotifications::Settings::categories

list of categories the app wants to support


The documentation for this struct was generated from the following file:
juce::PushNotifications::Notification::Action::text
@ text
Show this action as a text input field (on Android API 20 or higher is required).
Definition: juce_PushNotifications.h:72
juce::PushNotifications::Notification::Action::button
@ button
Show this action as a button.
Definition: juce_PushNotifications.h:71
juce::PushNotifications::Settings::Action
Notification::Action Action
Definition: juce_PushNotifications.h:389
juce::PushNotifications::Notification::Action::identifier
String identifier
Required: unique identifier.
Definition: juce_PushNotifications.h:86