-
Notifications
You must be signed in to change notification settings - Fork 0
/
LaunchPadKeyPadCore.h
41 lines (27 loc) · 957 Bytes
/
LaunchPadKeyPadCore.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
//
// LaunchPadKeyBoardCore.h
// iLaunchPad
//
// Created by Max on 11/29/13.
// Copyright (c) 2013 GIST. All rights reserved.
//
#import <Foundation/Foundation.h>
#import "LaunchPadKeyCore.h"
#import "LaunchPadKeyView.h"
#import "SoundsManager.h"
@interface LaunchPadKeyPadCore : NSObject<NSCoding>
// Properties
@property (nonatomic, strong) SoundsManager *soundsManager;
@property (nonatomic, readwrite) int numberOfKeys;
// Methods
- (instancetype) initWithNumberOfKeys:(int) numberOfKeys;
- (void) assignKeyToViewWithTag: (NSInteger) tag;
- (void) setKeyForViewWithTag: (NSInteger) tag looping: (BOOL) looping;
//- (void) playKeyForViewWithTag: (NSInteger) tag;
//- (void) stopKeyForViewWithTag: (NSInteger) tag;
- (NSArray *) getTagsOfInitializedPlayers;
- (void) setCurrentProfile: (NSString *) profileName;
- (NSString *) getCurrentProfile;
- (void) archive;
+ (NSString *) getArchivePathForProfile: (NSString *) profileName;
@end