Add BSSourceViewTextView (again).
[macgdbp.git] / Source / BSSourceView.h
1 /*
2 * MacGDBp
3 * Copyright (c) 2007 - 2011, Blue Static <http://www.bluestatic.org>
4 *
5 * This program is free software; you can redistribute it and/or modify it under the terms of the GNU
6 * General Public License as published by the Free Software Foundation; either version 2 of the
7 * License, or (at your option) any later version.
8 *
9 * This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without
10 * even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
11 * General Public License for more details.
12 *
13 * You should have received a copy of the GNU General Public License along with this program; if not,
14 * write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA
15 */
16
17 #import <Cocoa/Cocoa.h>
18
19 @class BSLineNumberRulerView;
20 @protocol BSSourceViewDelegate;
21 @class BSSourceViewTextView;
22
23 // A BSSourceView is a view that contains an NSTextView that also has a line
24 // number ruler. This class wraps synchronization management between the text
25 // field and the line numbmering and marker drawing.
26 //
27 // Rather than setting the string of the text view directly, use the provided
28 // methods to load from a file path or to load a string as a virtual file.
29 @interface BSSourceView : NSView
30 {
31 @private
32 BSSourceViewTextView* textView_;
33 BSLineNumberRulerView* ruler_;
34 NSScrollView* scrollView_;
35
36 // Set of Breakpoint objects.
37 NSSet* markers_;
38
39 NSString* file;
40 int markedLine;
41
42 id<BSSourceViewDelegate> delegate;
43 }
44
45 @property (readonly) NSTextView* textView;
46 @property (readonly) NSScrollView* scrollView;
47 @property (retain) NSSet* markers;
48 @property (nonatomic, assign) NSString* file;
49 @property (assign) int markedLine;
50 @property (assign) id delegate;
51
52 - (void)setFile:(NSString*)f;
53 - (void)setString:(NSString*)source asFile:(NSString*)path;
54 - (void)scrollToLine:(int)line;
55
56 @end
57
58 // Delegate ////////////////////////////////////////////////////////////////////
59
60 @protocol BSSourceViewDelegate <NSObject>
61 @optional
62
63 // Notifies the delegate that the gutter was clicked at a certain line.
64 - (void)gutterClickedAtLine:(int)line forFile:(NSString*)file;
65
66 // Whether to accept a file drop.
67 - (BOOL)sourceView:(BSSourceView*)sv acceptsDropOfFile:(NSString*)fileName;
68 @end