2009-02-22 22:28:09 +00:00
|
|
|
//
|
|
|
|
// TimeField.h
|
|
|
|
// Cog
|
|
|
|
//
|
|
|
|
// Created by Vincent Spader on 2/22/09.
|
|
|
|
// Copyright 2009 __MyCompanyName__. All rights reserved.
|
|
|
|
//
|
|
|
|
|
|
|
|
#import <Cocoa/Cocoa.h>
|
|
|
|
|
|
|
|
|
2021-01-25 20:17:57 +00:00
|
|
|
@interface TimeField : NSTextField
|
2009-02-22 22:28:09 +00:00
|
|
|
|
2021-05-07 02:50:26 +00:00
|
|
|
@property (nonatomic) NSTimeInterval currentTime;
|
|
|
|
@property (nonatomic) NSTimeInterval duration;
|
2009-02-22 22:28:09 +00:00
|
|
|
|
|
|
|
@end
|