2009-09-17 13:06:04 +00:00
|
|
|
//
|
|
|
|
// PrioritySplitViewDelegate.h
|
|
|
|
// ColumnSplitView
|
|
|
|
//
|
|
|
|
// Created by Matt Gallagher on 2009/09/01.
|
|
|
|
// Copyright 2009 Matt Gallagher. All rights reserved.
|
|
|
|
//
|
|
|
|
|
|
|
|
#import <Cocoa/Cocoa.h>
|
|
|
|
|
2016-11-19 16:23:39 +01:00
|
|
|
@interface PrioritySplitViewDelegate : NSObject <NSSplitViewDelegate>
|
2009-09-17 13:06:04 +00:00
|
|
|
{
|
|
|
|
NSMutableDictionary *lengthsByViewIndex;
|
|
|
|
NSMutableDictionary *viewIndicesByPriority;
|
|
|
|
}
|
|
|
|
|
|
|
|
- (void)setMinimumLength:(CGFloat)minLength
|
|
|
|
forViewAtIndex:(NSInteger)viewIndex;
|
|
|
|
- (void)setPriority:(NSInteger)priorityIndex
|
|
|
|
forViewAtIndex:(NSInteger)viewIndex;
|
|
|
|
|
|
|
|
@end
|