// // PSCustomScrollView.m // Perforce // // Created by Adam Czubernat on 02/01/2014. // Copyright (c) 2014 Perforce Software, Inc. All rights reserved. // #import "PSCustomScrollView.h" @implementation PSCustomScrollView @synthesize scrollDisabled, scrollHorizontalOnly, scrollVerticalOnly; - (void)scrollWheel:(NSEvent *)theEvent { if (scrollDisabled) [[self nextResponder] scrollWheel:theEvent]; else { if (scrollVerticalOnly ? theEvent.deltaX && !theEvent.deltaY : scrollHorizontalOnly ? !theEvent.deltaX && theEvent.deltaY : NO) [[self nextResponder] scrollWheel:theEvent]; [super scrollWheel:theEvent]; } } @end
# | Change | User | Description | Committed | |
---|---|---|---|---|---|
#1 | 9421 | tjuricek |
Copying //guest/perforce_software/piper/... to //guest/tjuricek/piper/... |
||
//guest/perforce_software/piper/Perforce/Classes/Views/PSCustomScrollView.m | |||||
#1 | 8919 | Matt Attaway | Initial add of Piper, a lightweight Perforce client for artists and designers. |