ObjGUI  Artifact [719e887149]

Artifact 719e88714905d9745c4014d0ce5b6357ed831ca869a093bb653c445021f7dc90:


#import "OGWidget.h"

@class OGButton;

@protocol OGButtonDelegate <OFObject>
@optional
- (void)buttonWasClicked: (OGButton*)button;
@end

@interface OGButton: OGWidget
{
	id <OGButtonDelegate> delegate;
}

@property (assign) id <OGButtonDelegate> delegate;
@property (copy) OFString *label;

+ button;
@end