diff options
Diffstat (limited to 'src/utils/mac/SkSampleNSView.mm')
-rw-r--r-- | src/utils/mac/SkSampleNSView.mm | 36 |
1 files changed, 0 insertions, 36 deletions
diff --git a/src/utils/mac/SkSampleNSView.mm b/src/utils/mac/SkSampleNSView.mm deleted file mode 100644 index 242544fa69..0000000000 --- a/src/utils/mac/SkSampleNSView.mm +++ /dev/null @@ -1,36 +0,0 @@ - -/* - * Copyright 2011 Google Inc. - * - * Use of this source code is governed by a BSD-style license that can be - * found in the LICENSE file. - */ - -#import "SkSampleNSView.h" -#include "SampleApp.h" -#include <crt_externs.h> -@implementation SkSampleNSView - -- (id)initWithDefaults { - if (self = [super initWithDefaults]) { - fWind = new SampleWindow(self, *_NSGetArgc(), *_NSGetArgv(), NULL); - } - return self; -} - -- (void)dealloc { - delete fWind; - [super dealloc]; -} - -- (void)swipeWithEvent:(NSEvent *)event { - CGFloat x = [event deltaX]; - if (x < 0) - ((SampleWindow*)fWind)->previousSample(); - else if (x > 0) - ((SampleWindow*)fWind)->nextSample(); - else - ((SampleWindow*)fWind)->showOverview(); -} - -@end |