// // PSSplitView.m // Perforce // // Created by Adam Czubernat on 17.06.2013. // Copyright (c) 2013 Perforce Software, Inc. All rights reserved. // #import "PSSplitView.h" @implementation PSSplitView @synthesize dividerWidth, hidesDivider, drawingBlock; - (void)awakeFromNib { dividerWidth = 1.0f; } - (void)drawDividerInRect:(NSRect)rect { if (hidesDivider) return; // Custom drawing block if (drawingBlock) drawingBlock(self, rect); else [super drawDividerInRect:rect]; } - (CGFloat)dividerThickness { return dividerWidth; } - (void)insertFirstSubview:(NSView *)subview animated:(BOOL)animated { NSMutableArray *subviews = [self.subviews mutableCopy]; [subviews insertObject:subview atIndex:0]; [self setSubviews:subviews]; CGRect subviewRect = [subview frame]; CGRect rect = subviewRect; rect.size.height = 0.0f; [subview setFrame:rect]; [NSView animateWithDuration:0.1f animations:^{ [[subview animator] setFrame:subviewRect]; } completion:^{ [subview setFrame:subviewRect]; }]; } - (void)removeFirstSubviewAnimated:(BOOL)animated { NSView *subview = [self.subviews objectAtIndex:0]; CGRect subviewRect = [subview frame]; CGRect rect = subviewRect; rect.size.height = 0.0f; [NSView animateWithDuration:0.1f animations:^{ [[subview animator] setFrame:rect]; } completion:^{ [subview removeFromSuperview]; [subview setFrame:subviewRect]; }]; } @end
# | Change | User | Description | Committed | |
---|---|---|---|---|---|
#1 | 16507 | perforce_software | Move to main branch. | ||
//guest/perforce_software/piper/mac/R1.0/Perforce/Classes/Views/PSSplitView.m | |||||
#1 | 11254 | alan_petersen |
Populate //guest/perforce_software/piper/mac/R1.0/... from //guest/perforce_software/piper/mac/main/.... |
||
//guest/perforce_software/piper/mac/main/Perforce/Classes/Views/PSSplitView.m | |||||
#1 | 11252 | alan_petersen | Rename/move file(s) | ||
//guest/perforce_software/piper/mac/Perforce/Classes/Views/PSSplitView.m | |||||
#1 | 10744 | alan_petersen | Rename/move file(s) | ||
//guest/perforce_software/piper/Perforce/Classes/Views/PSSplitView.m | |||||
#1 | 8919 | Matt Attaway | Initial add of Piper, a lightweight Perforce client for artists and designers. |