1 //  PXZoomTool.h
2 //  Pixen
3 //
4 //  Created by Joe Osborn on Mon Oct 13 2003.
5 //  Copyright (c) 2003 Open Sword Group. All rights reserved.
6 //
7 
8 #import <AppKit/AppKit.h>
9 #import "PXTool.h"
10 
11 typedef enum {
12     PXZoomIn = 0,
13     PXZoomOut
14 } PXZoomType;
15 
16 @interface PXZoomTool : PXTool {
17     PXZoomType zoomType;
18 }
19 //should implement 'drag to create rect and zoom to fit that rect'
20 
21 @end
22