2004-11-13 01:55:00 +00:00
|
|
|
#ifndef __ruamoko_PropertyList_h
|
|
|
|
#define __ruamoko_PropertyList_h
|
|
|
|
|
|
|
|
#include "plist.h"
|
|
|
|
#include "Object.h"
|
|
|
|
|
|
|
|
@interface PLItem: Object
|
|
|
|
{
|
|
|
|
plitem_t item;
|
|
|
|
integer own;
|
|
|
|
}
|
|
|
|
+ (PLItem) newDictionary;
|
|
|
|
+ (PLItem) newArray;
|
|
|
|
+ (PLItem) newData:(void[]) data size:(integer) len;
|
|
|
|
+ (PLItem) newString:(string) str;
|
2010-11-22 05:05:48 +00:00
|
|
|
+ (PLItem) fromString:(string) str;
|
2010-11-24 04:12:41 +00:00
|
|
|
+ (PLItem) fromFile:(QFile) file;
|
2004-11-13 01:55:00 +00:00
|
|
|
|
2006-12-02 06:51:41 +00:00
|
|
|
- initWithItem:(plitem_t) item;
|
|
|
|
- initWithOwnItem:(plitem_t) item;
|
2004-11-13 01:55:00 +00:00
|
|
|
- (string) write;
|
|
|
|
- (pltype_t) type;
|
|
|
|
@end
|
|
|
|
|
|
|
|
@interface PLDictionary: PLItem
|
|
|
|
+ (PLDictionary) new;
|
|
|
|
|
|
|
|
- (integer) count;
|
|
|
|
- (integer) numKeys;
|
|
|
|
- (PLItem) getObjectForKey:(string) key;
|
|
|
|
- (PLItem) allKeys;
|
2006-12-09 06:00:36 +00:00
|
|
|
- addKey:(string) key value:(PLItem) value;
|
2004-11-13 01:55:00 +00:00
|
|
|
@end
|
|
|
|
|
|
|
|
@interface PLArray: PLItem
|
|
|
|
+ (PLArray) new;
|
|
|
|
|
|
|
|
- (integer) count;
|
|
|
|
- (integer) numObjects;
|
|
|
|
- (PLItem) getObjectAtIndex:(integer) index;
|
|
|
|
- addObject:(PLItem) object;
|
|
|
|
- insertObject:(PLItem) object atIndex:(integer) index;
|
|
|
|
@end
|
|
|
|
|
|
|
|
@interface PLData: PLItem
|
|
|
|
+ (PLData) new:(void[]) data size:(integer) len;
|
|
|
|
@end
|
|
|
|
|
|
|
|
@interface PLString: PLItem
|
|
|
|
+ (PLString) new:(string) str;
|
|
|
|
|
|
|
|
- (string) string;
|
|
|
|
@end
|
|
|
|
|
|
|
|
#endif//__ruamoko_PropertyList_h
|