//
//  logosxBezelView.h
//  LOGOSX
//
//  Created by micah aci on Sun Nov 14 2004.
//  Copyright (c) 2004 __MyCompanyName__. All rights reserved.
// bezel code taken from growl http://growl.info/

#import <AppKit/AppKit.h>


@interface logosxBezelView : NSView 
{
	NSString			*_title;
	NSString			*_text;
	float				_textHeight;
	SEL					_action;
	id					_target;
}

- (void)setTitle:(NSString *)title;
- (void)setText:(NSString *)text;

- (float)descriptionHeight:(NSAttributedString *)text inRect:(NSRect)theRect;
- (int)descriptionRowCount:(NSAttributedString *)text inRect:(NSRect)theRect;

- (id)target;
- (void)setTarget:(id)object;

- (SEL)action;
- (void)setAction:(SEL)selector;

@end
