]> Dogcows Code - chaz/thecheat/blob - TrackerScroller.h
update contact information and project URL
[chaz/thecheat] / TrackerScroller.h
1
2 /*
3 * The Cheat - The legendary universal game trainer for Mac OS X.
4 * http://www.brokenzipper.com/trac/wiki/TheCheat
5 *
6 * Copyright (c) 2003-2011, Charles McGarvey et al.
7 *
8 * Distributable under the terms and conditions of the 2-clause BSD
9 * license; see the file COPYING for the legal text of the license.
10 */
11
12
13 #import <Cocoa/Cocoa.h>
14
15
16 @interface TrackerScroller : NSScroller
17 {
18 id _delegate;
19 }
20
21 - (id)delegate;
22 - (void)setDelegate:(id)delegate;
23
24 @end
25
26
27 @interface NSObject ( TrackerScrollerDelegate )
28
29 - (void)scrollerDidStartScrolling:(TrackerScroller *)scroller;
30 - (void)scrollerDidStopScrolling:(TrackerScroller *)scroller;
31
32 @end
This page took 0.030206 seconds and 4 git commands to generate.