Prevent sending 0-byte files. Fixes #8711.
[adiumx.git] / Source / AIHoveringPopUpButtonCell.h
blob15339b8fe56d82e12fb2ca30a7dcbf42bf0433be
1 //
2 // AIHoveringPopUpButtonCell.h
3 // Adium
4 //
5 // Created by Evan Schoenberg on 12/16/05.
6 //
8 @interface AIHoveringPopUpButtonCell : NSButtonCell {
9 NSMutableAttributedString *title;
10 NSSize textSize;
12 NSImage *currentImage;
13 NSSize imageSize;
15 NSMutableDictionary *statusAttributes;
16 NSMutableParagraphStyle *statusParagraphStyle;
18 BOOL hovered;
19 float hoveredFraction;
22 - (void)setTitle:(NSString *)inTitle;
23 - (void)setImage:(NSImage *)inImage;
25 - (void)setHovered:(BOOL)inHovered animate:(BOOL)animate;
26 - (BOOL)hovered;
27 - (float)trackingWidth;
29 @end