macdependency/MacDependency/PrioritySplitViewDelegate.h

23 lines
499 B
Objective-C

//
// PrioritySplitViewDelegate.h
// ColumnSplitView
//
// Created by Matt Gallagher on 2009/09/01.
// Copyright 2009 Matt Gallagher. All rights reserved.
//
#import <Cocoa/Cocoa.h>
@interface PrioritySplitViewDelegate : NSObject
{
NSMutableDictionary *lengthsByViewIndex;
NSMutableDictionary *viewIndicesByPriority;
}
- (void)setMinimumLength:(CGFloat)minLength
forViewAtIndex:(NSInteger)viewIndex;
- (void)setPriority:(NSInteger)priorityIndex
forViewAtIndex:(NSInteger)viewIndex;
@end