blob: 1529471ff1e52a32ff15d29787ad1f6ab5d61ddd (
plain) (
blame)
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
|
#import "NamedSlider.h"
@implementation NamedSlider
@synthesize pluginClass;
@synthesize strings;
- (NSString *)stringValue
{
NSInteger index = [self integerValue];
if (index >= 0 && index < [strings count])
return strings[index];
if (!pluginClass) {
return @"(Unknown)";
} else {
return [[NSBundle bundleForClass:pluginClass] localizedStringForKey:@"(Unknown)" value:@"" table:nil];
}
}
- (void)setIntValue:(int)value
{
[super setIntValue:value];
[self sendAction:[self action] to:[self target]];
}
- (void)setIntegerValue:(NSInteger)anInteger
{
[super setIntegerValue:anInteger];
[self sendAction:[self action] to:[self target]];
}
@end
|