36 lines
596 B
Matlab
36 lines
596 B
Matlab
|
//
|
||
|
// PositionSlider.m
|
||
|
// Cog
|
||
|
//
|
||
|
// Created by Vincent Spader on 2/22/09.
|
||
|
// Copyright 2009 __MyCompanyName__. All rights reserved.
|
||
|
//
|
||
|
|
||
|
#import "PositionSlider.h"
|
||
|
#import "TimeField.h"
|
||
|
|
||
|
@implementation PositionSlider
|
||
|
|
||
|
- (void)setDoubleValue:(double)value
|
||
|
{
|
||
|
[positionTextField setDoubleValue:value];
|
||
|
|
||
|
[super setDoubleValue:value];
|
||
|
}
|
||
|
|
||
|
- (void)setMaxValue:(double)value
|
||
|
{
|
||
|
[positionTextField setMaxDoubleValue:value];
|
||
|
|
||
|
[super setMaxValue:value];
|
||
|
}
|
||
|
|
||
|
- (void)mouseDragged:(NSEvent *)theEvent
|
||
|
{
|
||
|
[positionTextField setDoubleValue:[self doubleValue]];
|
||
|
|
||
|
[super mouseDragged:theEvent];
|
||
|
}
|
||
|
|
||
|
@end
|