mirror of
https://github.com/QuasarApp/macdependency.git
synced 2025-04-27 21:04:31 +00:00
- Applied all recommended XCode (8) settings. - Removed boost and replaced that code by standard functions. - Implemented name mangling via abi::__cxa_demangle instead of running an external process to use c++filt. - Enabled C++11. Min deployment target is now OSX 10.7. - Some code clean up (e.g. formatting, std namespace).
23 lines
521 B
Objective-C
23 lines
521 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 <NSSplitViewDelegate>
|
|
{
|
|
NSMutableDictionary *lengthsByViewIndex;
|
|
NSMutableDictionary *viewIndicesByPriority;
|
|
}
|
|
|
|
- (void)setMinimumLength:(CGFloat)minLength
|
|
forViewAtIndex:(NSInteger)viewIndex;
|
|
- (void)setPriority:(NSInteger)priorityIndex
|
|
forViewAtIndex:(NSInteger)viewIndex;
|
|
|
|
@end
|