WinGui: Fix another instance of the Caliburn vs Json.net sillyness where objects...
[HandBrake.git] / macosx / HBImageAndTextCell.h
blob1cebae4be47a9f511fdf3fd705bc3eaa79f8cdf0
1 /* HBImageAndTextCell
3 This file is part of the HandBrake source code.
4 Homepage: <http://handbrake.fr/>.
5 It may be used under the terms of the GNU General Public License.
6 */
8 #import <Cocoa/Cocoa.h>
10 @interface HBImageAndTextCell : NSTextFieldCell
12 @property (strong) NSImage *image;
13 @property (nonatomic) NSImageAlignment imageAlignment;
14 @property (nonatomic) NSSize imageSpacing;
16 - (void) drawWithFrame:(NSRect)cellFrame inView:(NSView *)controlView;
17 @property (readonly) NSSize cellSize;
19 @end