/* HBTreeNode.h $
This file is part of the HandBrake source code.
Homepage: .
It may be used under the terms of the GNU General Public License. */
#import
NS_ASSUME_NONNULL_BEGIN
/**
* Notify a delegate that something changed in the tree.
* KVO observing a tree looks complicated and expensive, so this is a lightweight
* way to track the changes we need to know.
*/
@protocol HBTreeNodeDelegate
- (void)nodeDidChange:(id)node;
@optional
- (void)treeDidRemoveNode:(id)node;
@end
/**
* HBTreeNode
*/
@interface HBTreeNode : NSObject
// NSTreeController required properties
@property (nonatomic, readonly) NSMutableArray *children;
@property (nonatomic) BOOL isLeaf;
@property (nonatomic, weak) id delegate;
/**
* Executes a given block using each object in the tree, starting with the root object and continuing through the tree to the last object.
*
* @param block The block to apply to elements in the tree.
*/
- (void)enumerateObjectsUsingBlock:(void (^)(id obj, NSIndexPath *idx, BOOL *stop))block;
/**
* Returns the index path of an object in the tree.
*
* @param obj the object of the wanted NSIndexPath
*
* @return The index path whose corresponding value is equal to the preset. Returns nil if not found.
*/
- (nullable NSIndexPath *)indexPathOfObject:(id)obj;
/**
* Removes the object at the specified index path.
*
* @param idx the NSIndexPath of the object to delete.
*/
- (void)removeObjectAtIndexPath:(NSIndexPath *)idx;
// KVC Accessor Methods
@property (nonatomic, readonly) NSUInteger countOfChildren;
- (id)objectInChildrenAtIndex:(NSUInteger)index;
- (void)insertObject:(HBTreeNode *)presetObject inChildrenAtIndex:(NSUInteger)index;
- (void)removeObjectFromChildrenAtIndex:(NSUInteger)index;
@end
NS_ASSUME_NONNULL_END