-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathFLView.h
More file actions
28 lines (22 loc) · 710 Bytes
/
FLView.h
File metadata and controls
28 lines (22 loc) · 710 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
/* Copyright (C) 1996 Dave Vasilevsky
* This file is licensed under the GNU General Public License,
* see the file Copying.txt for details. */
#import "FLRadialPainter.h"
#import "FLFile.h"
@interface FLView : NSView <FLHasDataSource> {
IBOutlet id locationDisplay;
IBOutlet id sizeDisplay;
IBOutlet id dataSource;
IBOutlet id controller;
IBOutlet id contextMenu;
FLRadialPainter *m_painter;
NSTrackingRectTag m_trackingRect;
BOOL m_wasAcceptingMouseEvents;
FLFile *m_context_target;
}
- (IBAction) zoom: (id) sender;
- (IBAction) open: (id) sender;
- (IBAction) reveal: (id) sender;
- (IBAction) trash: (id) sender;
- (IBAction) copyPath: (id) sender;
@end