FOperatingSystemNotificationSettings
#include <OperatingSystemSimulator/Public/Core/OperatingSystem.h>Class detail
Section titled “Class detail”---
config:
class:
hideEmptyMembersBox: true
---
classDiagram
class FOperatingSystemNotificationSettings {
+bEnableNotifications : uint8
+bPlayNotificationSound : uint8
+ToastNotificationTime : uint8
+NotificationSoundDefault : TSoftObjectPtr< USoundBase >
+NotificationSoundWarning : TSoftObjectPtr< USoundBase >
+NotificationSoundError : TSoftObjectPtr< USoundBase >
+FOperatingSystemNotificationSettings()
}
struct FOperatingSystemNotificationSettingsDefined in OperatingSystem.h:36 Structure representing the settings for operating system notifications.
Public Attributes
Section titled “Public Attributes”| Return | Name | Description |
|---|---|---|
uint8 | bEnableNotifications | Enable notifications in Operating System. |
uint8 | bPlayNotificationSound | Should we play a sound when a notification is received? |
uint8 | ToastNotificationTime | How long the toast notification should display on screen. Toast notifications are implemented in UMG and this has no effect if you have not done that. |
TSoftObjectPtr< USoundBase > | NotificationSoundDefault | Default sound to play. |
TSoftObjectPtr< USoundBase > | NotificationSoundWarning | Warning sound to play if notification is a warning. |
TSoftObjectPtr< USoundBase > | NotificationSoundError | Error sound to play if notification is an error. |
bEnableNotifications
Section titled “bEnableNotifications”uint8 bEnableNotificationsDefined in OperatingSystem.h:42 Enable notifications in Operating System.
Referenced by
Section titled “Referenced by”bPlayNotificationSound
Section titled “bPlayNotificationSound”uint8 bPlayNotificationSoundDefined in OperatingSystem.h:46 Should we play a sound when a notification is received?
Referenced by
Section titled “Referenced by”ToastNotificationTime
Section titled “ToastNotificationTime”uint8 ToastNotificationTimeDefined in OperatingSystem.h:50 How long the toast notification should display on screen. Toast notifications are implemented in UMG and this has no effect if you have not done that.
Referenced by
Section titled “Referenced by”NotificationSoundDefault
Section titled “NotificationSoundDefault”TSoftObjectPtr< USoundBase > NotificationSoundDefaultDefined in OperatingSystem.h:54 Default sound to play.
Referenced by
Section titled “Referenced by”NotificationSoundWarning
Section titled “NotificationSoundWarning”TSoftObjectPtr< USoundBase > NotificationSoundWarningDefined in OperatingSystem.h:58 Warning sound to play if notification is a warning.
Referenced by
Section titled “Referenced by”NotificationSoundError
Section titled “NotificationSoundError”TSoftObjectPtr< USoundBase > NotificationSoundErrorDefined in OperatingSystem.h:62 Error sound to play if notification is an error.
Referenced by
Section titled “Referenced by”Public Methods
Section titled “Public Methods”| Return | Name | Description |
|---|---|---|
FOperatingSystemNotificationSettings inline | Default constructor |
FOperatingSystemNotificationSettings
Section titled “FOperatingSystemNotificationSettings”inline
inline FOperatingSystemNotificationSettings()Defined in OperatingSystem.h:65 Default constructor