/usr/share/faust/iOSKeyboard/iOSKeyboard/Zone.h is in faust-common 0.9.95~repack1-2.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
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 | //
// Zone.h
// MultiXYTest
//
// Created by Romain Michon on 4/15/16.
// Copyright © 2016 CCRMA. All rights reserved.
//
#import <UIKit/UIKit.h>
@interface Zone : UIView{
@public
int status; // the status of the zone (0:off, 1:on)
bool keyboardMode;
}
- (void)setColorOff:(UIColor*)color; // sets the color when off
- (void)setColorOn:(UIColor*)color; // sets the color when on
- (void)setImageOff:(UIImage*)image; // sets the background image when off
- (void)setImageOn:(UIImage*)image; // sets the background image when on
- (void)setText:(NSString*)label;
- (void)setTextSize:(CGFloat)size;
- (void)setStatus:(int)s;
- (void)setNote:(int)note;
- (int)getStatus;
- (void)setKeyboardMode:(bool)mode;
@end
|