mirror of
https://github.com/QuasarApp/macdependency.git
synced 2025-04-29 22:04:32 +00:00
23 lines
499 B
C
23 lines
499 B
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
|