diff options
Diffstat (limited to 'macosx/DockTextField.h')
-rw-r--r-- | macosx/DockTextField.h | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/macosx/DockTextField.h b/macosx/DockTextField.h new file mode 100644 index 000000000..a269211c7 --- /dev/null +++ b/macosx/DockTextField.h @@ -0,0 +1,17 @@ +/* DockTextField.h $ + + This file is part of the HandBrake source code. + Homepage: <http://handbrake.fr/>. + It may be used under the terms of the GNU General Public License. */ + +#import <Cocoa/Cocoa.h> + +@interface DockTextField : NSTextField + +@property (nonatomic,retain) NSString *textToDisplay; +@property (nonatomic,retain) NSColor *startColor; +@property (nonatomic,retain) NSColor *endColor; + +- (void)changeGradientColors:(NSColor*)startColor withEndColor:(NSColor*)endColor; + +@end |