diff options
author | Damiano Galassi <[email protected]> | 2019-02-13 17:56:02 +0100 |
---|---|---|
committer | Damiano Galassi <[email protected]> | 2019-02-13 17:56:02 +0100 |
commit | 3f9a7051407be2562721471e2829bb2e73d391ed (patch) | |
tree | 59f51c88a97b41ee9d416495ae3a62005370332e /macosx/HBDockTextField.h | |
parent | d0e37ca0d75fbcef5bdf47aafe8543e262314ec5 (diff) |
MacGui: remove two old unused classes, remove some old compatibility hacks, and fix warnings.
Diffstat (limited to 'macosx/HBDockTextField.h')
-rw-r--r-- | macosx/HBDockTextField.h | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/macosx/HBDockTextField.h b/macosx/HBDockTextField.h new file mode 100644 index 000000000..bad413a9c --- /dev/null +++ b/macosx/HBDockTextField.h @@ -0,0 +1,17 @@ +/* HBDockTextField.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 HBDockTextField : NSTextField + +@property (nonatomic, copy) NSString *textToDisplay; +@property (nonatomic, copy) NSColor *startColor; +@property (nonatomic, copy) NSColor *endColor; + +- (void)changeGradientColors:(NSColor *)startColor endColor:(NSColor *)endColor; + +@end |