mirror of
https://github.com/QuasarApp/macdependency.git
synced 2025-04-28 21:34:31 +00:00
23 lines
499 B
Objective-C
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
|