@interface KABubbleWindowView : NSView { NSImage *_icon; NSString *_title; NSAttributedString *_text; SEL _action; id _target; } - (void) setIcon:(NSImage *) icon; - (void) setTitle:(NSString *) title; - (void) setAttributedText:(NSAttributedString *) text; - (void) setText:(NSString *) text; - (id) target; - (void) setTarget:(id) object; - (SEL) action; - (void) setAction:(SEL) selector; @end