Initial OGComboBox implementation.

Only support for text so far.
This commit is contained in:
Jonathan Schleifer 2011-12-28 20:23:01 +01:00
parent 73e7da5fb7
commit 45380da631
5 changed files with 148 additions and 1 deletions

12
headers/OGComboBoxItem.h Normal file
View file

@ -0,0 +1,12 @@
#import <ObjFW/OFString.h>
@interface OGComboBoxItem: OFObject
{
OFString *label;
}
@property (copy) OFString *label;
+ comboBoxItemWithLabel: (OFString*)label;
- initWithLabel: (OFString*)label;
@end