This repository has been archived on 2025-06-24. You can view files and clone it, but you cannot make any changes to it's state, such as pushing and creating new issues, pull requests or comments.
ObjGUI.old/OGButton.h

19 lines
308 B
Objective-C

#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