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::Notification::Action Struct Reference

Represents an action on a notification that can be presented as a button or a text input. More...

#include <juce_PushNotifications.h>

Collaboration diagram for juce::PushNotifications::Notification::Action:

Public Types

enum  Style {
  button,
  text
}
 Controls the appearance of this action. More...
 

Public Attributes

Common fields
Style style = button
 Required. More...
 
String title
 Required. More...
 
String textInputPlaceholder
 Optional: placeholder text for text input notification. More...
 
var parameters
 Optional: additional parameters that can be passed. More...
 
iOS only fields
String identifier
 Required: unique identifier. More...
 
bool triggerInBackground = false
 Whether the app can process the action in background. More...
 
bool destructive = false
 Whether to display the action as destructive. More...
 
String textInputButtonText
 Optional: Text displayed on text input notification button (from iOS 10 only). More...
 
Android only fields
String icon
 Optional: name of an icon file (without an extension) to be used for this action. More...
 
StringArray allowedResponses
 Optional: a list of possible answers if the answer set is limited. More...
 

Detailed Description

Represents an action on a notification that can be presented as a button or a text input.

On Android, each notification has its action specified explicitly, on iOS you configure an allowed set of actions on startup and pack them into categories (see Settings).

Member Enumeration Documentation

◆ Style

Controls the appearance of this action.

Enumerator
button 

Show this action as a button.

text 

Show this action as a text input field (on Android API 20 or higher is required).

Member Data Documentation

◆ allowedResponses

StringArray juce::PushNotifications::Notification::Action::allowedResponses

Optional: a list of possible answers if the answer set is limited.

When left empty, then the user will be able to input any text.

◆ destructive

bool juce::PushNotifications::Notification::Action::destructive = false

Whether to display the action as destructive.

◆ icon

String juce::PushNotifications::Notification::Action::icon

Optional: name of an icon file (without an extension) to be used for this action.

This must be the name of one of the image files included into resources when exporting an Android project (see "Extra Android Raw Resources" setting in Projucer). Note that not all Android versions support an icon for an action, though it is recommended to provide it nevertheless.

◆ identifier

String juce::PushNotifications::Notification::Action::identifier

Required: unique identifier.

This should be one of the identifiers set with requestPermissionsWithSettings().

◆ parameters

var juce::PushNotifications::Notification::Action::parameters

Optional: additional parameters that can be passed.

◆ style

Style juce::PushNotifications::Notification::Action::style = button

Required.

the name of the action displayed to the user.

◆ textInputButtonText

String juce::PushNotifications::Notification::Action::textInputButtonText

Optional: Text displayed on text input notification button (from iOS 10 only).

Note that it will be ignored if style is set to Style::button.

◆ textInputPlaceholder

String juce::PushNotifications::Notification::Action::textInputPlaceholder

Optional: placeholder text for text input notification.

Note that it will be ignored if button style is used.

◆ title

String juce::PushNotifications::Notification::Action::title

Required.

the name of the action displayed to the user.

◆ triggerInBackground

bool juce::PushNotifications::Notification::Action::triggerInBackground = false

Whether the app can process the action in background.


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