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/headers/OGComboBox.h
2011-12-28 20:23:01 +01:00

27 lines
602 B
Objective-C

#import "OGWidget.h"
#import "OGComboBoxItem.h"
@class OGComboBox;
@protocol OGComboBoxDelegate <OFObject>
@optional
- (void)comboBoxWasChanged: (OGComboBox*)comboBox;
@end
@protocol OGComboBoxDataSource <OFObject>
- (size_t)numberOfItemsInComboBox: (OGComboBox*)comboBox;
- (OGComboBoxItem*)comboBox: (OGComboBox*)comboBox
itemAtIndex: (size_t)index;
@end
@interface OGComboBox: OGWidget
{
id <OGComboBoxDelegate> delegate;
id <OGComboBoxDataSource> dataSource;
}
@property (assign) id <OGComboBoxDelegate> delegate;
@property (assign) id <OGComboBoxDataSource> dataSource;
+ comboBox;
@end