2013-06-23 01:32:48 +00:00
|
|
|
/*
|
2014-02-01 22:54:30 +00:00
|
|
|
Copyright 2014 Hardcoded Software (http://www.hardcoded.net)
|
2013-06-23 01:32:48 +00:00
|
|
|
|
|
|
|
This software is licensed under the "BSD" License as described in the "LICENSE" file,
|
|
|
|
which should be included with this package. The terms are also available at
|
|
|
|
http://www.hardcoded.net/licenses/bsd_license
|
|
|
|
*/
|
|
|
|
|
|
|
|
#import <Cocoa/Cocoa.h>
|
|
|
|
#import "HSGUIController.h"
|
|
|
|
#import "HSOutlineView.h"
|
|
|
|
#import "PyOutline.h"
|
|
|
|
#import "NSIndexPathAdditions.h"
|
|
|
|
|
|
|
|
@interface HSOutline : HSGUIController <HSOutlineViewDelegate, NSOutlineViewDataSource> {
|
|
|
|
NSMutableDictionary *itemData;
|
|
|
|
NSMutableSet *itemRetainer;
|
|
|
|
}
|
|
|
|
- (id)initWithPyRef:(PyObject *)aPyRef wrapperClass:(Class)aWrapperClass callbackClassName:(NSString *)aCallbackClassName view:(HSOutlineView *)aView;
|
|
|
|
- (PyOutline *)model;
|
|
|
|
- (HSOutlineView *)view;
|
|
|
|
|
|
|
|
/* Public */
|
|
|
|
- (void)refresh;
|
|
|
|
- (NSIndexPath *)selectedIndexPath;
|
|
|
|
- (NSArray *)selectedIndexPaths;
|
|
|
|
- (NSString *)dataForCopyToPasteboard;
|
|
|
|
- (void)startEditing;
|
|
|
|
- (void)stopEditing;
|
|
|
|
- (void)updateSelection;
|
|
|
|
- (void)expandItem:(NSIndexPath *)item;
|
|
|
|
- (NSIndexPath *)internalizedPath:(NSIndexPath *)path;
|
|
|
|
|
|
|
|
/* Caching */
|
|
|
|
- (id)property:(NSString *)property valueAtPath:(NSIndexPath *)path;
|
|
|
|
- (void)setProperty:(NSString *)property value:(id)value atPath:(NSIndexPath *)path;
|
|
|
|
- (NSString *)stringProperty:(NSString *)property valueAtPath:(NSIndexPath *)path;
|
|
|
|
- (void)setStringProperty:(NSString *)property value:(NSString *)value atPath:(NSIndexPath *)path;
|
|
|
|
- (BOOL)boolProperty:(NSString *)property valueAtPath:(NSIndexPath *)path;
|
|
|
|
- (void)setBoolProperty:(NSString *)property value:(BOOL)value atPath:(NSIndexPath *)path;
|
|
|
|
- (NSInteger)intProperty:(NSString *)property valueAtPath:(NSIndexPath *)path;
|
|
|
|
- (void)setIntProperty:(NSString *)property value:(int)value atPath:(NSIndexPath *)path;
|
|
|
|
- (void)refreshItemAtPath:(NSIndexPath *)path;
|
|
|
|
@end
|