mirror of https://github.com/oxen-io/session-ios
				
				
				
			
			You cannot select more than 25 topics
			Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
		
		
		
		
		
			
		
			
				
	
	
		
			72 lines
		
	
	
		
			1.6 KiB
		
	
	
	
		
			Objective-C
		
	
			
		
		
	
	
			72 lines
		
	
	
		
			1.6 KiB
		
	
	
	
		
			Objective-C
		
	
//
 | 
						|
//  Copyright (c) 2018 Open Whisper Systems. All rights reserved.
 | 
						|
//
 | 
						|
 | 
						|
#import <AudioToolbox/AudioServices.h>
 | 
						|
 | 
						|
NS_ASSUME_NONNULL_BEGIN
 | 
						|
 | 
						|
typedef NS_ENUM(NSUInteger, OWSSound) {
 | 
						|
    OWSSound_Default = 0,
 | 
						|
 | 
						|
    // Notification Sounds
 | 
						|
    OWSSound_Aurora,
 | 
						|
    OWSSound_Bamboo,
 | 
						|
    OWSSound_Chord,
 | 
						|
    OWSSound_Circles,
 | 
						|
    OWSSound_Complete,
 | 
						|
    OWSSound_Hello,
 | 
						|
    OWSSound_Input,
 | 
						|
    OWSSound_Keys,
 | 
						|
    OWSSound_Note,
 | 
						|
    OWSSound_Popcorn,
 | 
						|
    OWSSound_Pulse,
 | 
						|
    OWSSound_Synth,
 | 
						|
    OWSSound_SignalClassic,
 | 
						|
 | 
						|
    // Ringtone Sounds
 | 
						|
    OWSSound_Opening,
 | 
						|
 | 
						|
    // Calls
 | 
						|
    OWSSound_CallConnecting,
 | 
						|
    OWSSound_CallOutboundRinging,
 | 
						|
    OWSSound_CallBusy,
 | 
						|
    OWSSound_CallFailure,
 | 
						|
 | 
						|
    // Other
 | 
						|
    OWSSound_None,
 | 
						|
    OWSSound_DefaultiOSIncomingRingtone = OWSSound_Opening,
 | 
						|
};
 | 
						|
 | 
						|
@class OWSAudioPlayer;
 | 
						|
@class TSThread;
 | 
						|
@class YapDatabaseReadWriteTransaction;
 | 
						|
 | 
						|
@interface OWSSounds : NSObject
 | 
						|
 | 
						|
- (instancetype)init NS_UNAVAILABLE;
 | 
						|
 | 
						|
+ (NSString *)displayNameForSound:(OWSSound)sound;
 | 
						|
 | 
						|
+ (nullable NSString *)filenameForSound:(OWSSound)sound;
 | 
						|
 | 
						|
#pragma mark - Notifications
 | 
						|
 | 
						|
+ (NSArray<NSNumber *> *)allNotificationSounds;
 | 
						|
 | 
						|
+ (OWSSound)globalNotificationSound;
 | 
						|
+ (void)setGlobalNotificationSound:(OWSSound)sound;
 | 
						|
+ (void)setGlobalNotificationSound:(OWSSound)sound transaction:(YapDatabaseReadWriteTransaction *)transaction;
 | 
						|
 | 
						|
+ (OWSSound)notificationSoundForThread:(TSThread *)thread;
 | 
						|
+ (SystemSoundID)systemSoundIDForSound:(OWSSound)sound quiet:(BOOL)quiet;
 | 
						|
+ (void)setNotificationSound:(OWSSound)sound forThread:(TSThread *)thread;
 | 
						|
 | 
						|
#pragma mark - AudioPlayer
 | 
						|
 | 
						|
+ (nullable OWSAudioPlayer *)audioPlayerForSound:(OWSSound)sound;
 | 
						|
 | 
						|
@end
 | 
						|
 | 
						|
NS_ASSUME_NONNULL_END
 |